From 61c77c09a3691fbcb77de35cc0026dde04ca114a Mon Sep 17 00:00:00 2001 From: Dave Earley Date: Wed, 29 Jul 2026 08:17:18 +0100 Subject: [PATCH] Feature: Make occurrence selection async --- .../Commands/BootstrapDevDataCommand.php | 4 +- .../GenerateOccurrencesAction.php | 17 +- .../GetOccurrenceGenerationStatusAction.php | 33 ++ .../Occurrence/GenerateOccurrencesJob.php | 71 +++ .../GenerateOccurrencesFromRuleHandler.php | 43 +- .../StartOccurrenceGenerationHandler.php | 45 ++ .../Event/EventOccurrenceGeneratorService.php | 69 ++- .../Infrastructure/Jobs/JobPollingService.php | 14 +- backend/routes/api.php | 2 + .../GenerateOccurrencesActionTest.php | 197 +++++++ .../EventOccurrenceGeneratorServiceTest.php | 37 ++ .../Occurrence/GenerateOccurrencesJobTest.php | 62 ++ ...GenerateOccurrencesFromRuleHandlerTest.php | 135 +++-- .../StartOccurrenceGenerationHandlerTest.php | 116 ++++ .../EventOccurrenceGeneratorServiceTest.php | 535 ++++++------------ .../Jobs/JobPollingServiceTest.php | 81 +++ e2e/api/api-client.ts | 36 +- e2e/pages/occurrence.page.ts | 2 + frontend/src/api/event-occurrence.client.ts | 10 +- .../OccurrencesTab/OccurrencesTab.module.scss | 11 + .../RecurrenceScheduleModal/index.tsx | 26 +- .../routes/event/OccurrencesTab/index.tsx | 12 +- .../hooks/useOccurrenceGenerationPolling.ts | 56 ++ frontend/src/locales/de.js | 2 +- frontend/src/locales/de.po | 275 ++++----- frontend/src/locales/el.js | 2 +- frontend/src/locales/el.po | 275 ++++----- frontend/src/locales/en.js | 2 +- frontend/src/locales/en.po | 275 ++++----- frontend/src/locales/es.js | 2 +- frontend/src/locales/es.po | 275 ++++----- frontend/src/locales/fr.js | 2 +- frontend/src/locales/fr.po | 275 ++++----- frontend/src/locales/hu.js | 2 +- frontend/src/locales/hu.po | 275 ++++----- frontend/src/locales/it.js | 2 +- frontend/src/locales/it.po | 275 ++++----- frontend/src/locales/nl.js | 2 +- frontend/src/locales/nl.po | 275 ++++----- frontend/src/locales/pl.js | 2 +- frontend/src/locales/pl.po | 275 ++++----- frontend/src/locales/pt-br.js | 2 +- frontend/src/locales/pt-br.po | 275 ++++----- frontend/src/locales/pt.js | 2 +- frontend/src/locales/pt.po | 275 ++++----- frontend/src/locales/ru.js | 2 +- frontend/src/locales/ru.po | 275 ++++----- frontend/src/locales/se.js | 2 +- frontend/src/locales/se.po | 275 ++++----- frontend/src/locales/sk.js | 2 +- frontend/src/locales/sk.po | 275 ++++----- frontend/src/locales/tr.js | 2 +- frontend/src/locales/tr.po | 275 ++++----- frontend/src/locales/vi.js | 2 +- frontend/src/locales/vi.po | 275 ++++----- frontend/src/locales/zh-cn.js | 2 +- frontend/src/locales/zh-cn.po | 275 ++++----- frontend/src/locales/zh-hk.js | 2 +- frontend/src/locales/zh-hk.po | 275 ++++----- .../src/mutations/useGenerateOccurrences.ts | 11 +- frontend/src/types.ts | 6 + 61 files changed, 3728 insertions(+), 2889 deletions(-) create mode 100644 backend/app/Http/Actions/EventOccurrences/GetOccurrenceGenerationStatusAction.php create mode 100644 backend/app/Jobs/Occurrence/GenerateOccurrencesJob.php create mode 100644 backend/app/Services/Application/Handlers/EventOccurrence/StartOccurrenceGenerationHandler.php create mode 100644 backend/tests/Feature/Http/Actions/EventOccurrences/GenerateOccurrencesActionTest.php create mode 100644 backend/tests/Unit/Jobs/Occurrence/GenerateOccurrencesJobTest.php create mode 100644 backend/tests/Unit/Services/Application/Handlers/EventOccurrence/StartOccurrenceGenerationHandlerTest.php create mode 100644 backend/tests/Unit/Services/Infrastructure/Jobs/JobPollingServiceTest.php create mode 100644 frontend/src/hooks/useOccurrenceGenerationPolling.ts diff --git a/backend/app/Console/Commands/BootstrapDevDataCommand.php b/backend/app/Console/Commands/BootstrapDevDataCommand.php index 2e68bb8286..90c38ed654 100644 --- a/backend/app/Console/Commands/BootstrapDevDataCommand.php +++ b/backend/app/Console/Commands/BootstrapDevDataCommand.php @@ -109,7 +109,7 @@ public function handle( type: EventType::RECURRING, )); - $occurrences = $generateOccurrencesHandler->handle(new GenerateOccurrencesDTO( + $generateOccurrencesHandler->handle(new GenerateOccurrencesDTO( event_id: $recurringEvent->getId(), recurrence_rule: [ 'range' => ['type' => 'count', 'count' => 4, 'start' => now()->addDays(7)->toDateString()], @@ -161,7 +161,7 @@ public function handle( ['free_product_id / price_id', $freeProduct['product_id'].' / '.$freeProduct['price_id']], ['paid_product_id / price_id (waitlist on)', $paidProduct['product_id'].' / '.$paidProduct['price_id']], ['recurring_event_id (LIVE)', $recurringEvent->getId()], - ['recurring_occurrence_ids', $occurrences->map(fn ($o) => $o->getId())->implode(', ')], + ['recurring_occurrence_ids', DB::table('event_occurrences')->where('event_id', $recurringEvent->getId())->pluck('id')->implode(', ')], ['recurring_product_id / price_id', $recurringProduct['product_id'].' / '.$recurringProduct['price_id']], ['promo_code', $promoCode->getCode()], ['affiliate_code', $affiliate->getCode()], diff --git a/backend/app/Http/Actions/EventOccurrences/GenerateOccurrencesAction.php b/backend/app/Http/Actions/EventOccurrences/GenerateOccurrencesAction.php index 0099f4aa6a..7716a0568f 100644 --- a/backend/app/Http/Actions/EventOccurrences/GenerateOccurrencesAction.php +++ b/backend/app/Http/Actions/EventOccurrences/GenerateOccurrencesAction.php @@ -6,16 +6,16 @@ use HiEvents\Exceptions\InvalidRecurrenceRuleException; use HiEvents\Http\Actions\BaseAction; use HiEvents\Http\Request\EventOccurrence\GenerateOccurrencesRequest; -use HiEvents\Resources\EventOccurrence\EventOccurrenceResource; +use HiEvents\Http\ResponseCodes; use HiEvents\Services\Application\Handlers\EventOccurrence\DTO\GenerateOccurrencesDTO; -use HiEvents\Services\Application\Handlers\EventOccurrence\GenerateOccurrencesFromRuleHandler; +use HiEvents\Services\Application\Handlers\EventOccurrence\StartOccurrenceGenerationHandler; use Illuminate\Http\JsonResponse; use Illuminate\Validation\ValidationException; class GenerateOccurrencesAction extends BaseAction { public function __construct( - private readonly GenerateOccurrencesFromRuleHandler $handler, + private readonly StartOccurrenceGenerationHandler $handler, ) {} public function __invoke(int $eventId, GenerateOccurrencesRequest $request): JsonResponse @@ -23,7 +23,7 @@ public function __invoke(int $eventId, GenerateOccurrencesRequest $request): Jso $this->isActionAuthorized($eventId, EventDomainObject::class); try { - $occurrences = $this->handler->handle( + $jobStatus = $this->handler->handle( new GenerateOccurrencesDTO( event_id: $eventId, recurrence_rule: $request->validated('recurrence_rule'), @@ -35,9 +35,10 @@ public function __invoke(int $eventId, GenerateOccurrencesRequest $request): Jso ]); } - return $this->resourceResponse( - resource: EventOccurrenceResource::class, - data: $occurrences, - ); + return $this->jsonResponse([ + 'message' => $jobStatus->message, + 'status' => $jobStatus->status->name, + 'job_uuid' => $jobStatus->jobUuid, + ], ResponseCodes::HTTP_ACCEPTED); } } diff --git a/backend/app/Http/Actions/EventOccurrences/GetOccurrenceGenerationStatusAction.php b/backend/app/Http/Actions/EventOccurrences/GetOccurrenceGenerationStatusAction.php new file mode 100644 index 0000000000..67f24cde9a --- /dev/null +++ b/backend/app/Http/Actions/EventOccurrences/GetOccurrenceGenerationStatusAction.php @@ -0,0 +1,33 @@ +isActionAuthorized($eventId, EventDomainObject::class); + + $jobStatus = $this->jobPollingService->checkJobStatus( + jobUuid: (string) $request->query('job_uuid'), + expectedName: GenerateOccurrencesJob::batchName($eventId), + ); + + return $this->jsonResponse([ + 'message' => $jobStatus->message, + 'status' => $jobStatus->status->name, + 'job_uuid' => $jobStatus->jobUuid, + ]); + } +} diff --git a/backend/app/Jobs/Occurrence/GenerateOccurrencesJob.php b/backend/app/Jobs/Occurrence/GenerateOccurrencesJob.php new file mode 100644 index 0000000000..f60b29536d --- /dev/null +++ b/backend/app/Jobs/Occurrence/GenerateOccurrencesJob.php @@ -0,0 +1,71 @@ +onQueue(config('queue.occurrences_queue_name')); + } + } + + public static function batchName(int $eventId): string + { + return "Generate occurrences for Event #$eventId"; + } + + /** + * @throws Throwable + */ + public function handle(GenerateOccurrencesFromRuleHandler $handler): void + { + if ($this->batch()?->cancelled()) { + return; + } + + try { + $handler->handle( + new GenerateOccurrencesDTO( + event_id: $this->eventId, + recurrence_rule: $this->recurrenceRule, + ) + ); + } catch (InvalidRecurrenceRuleException $e) { + $this->fail($e); + } + } + + public function failed(Throwable $exception): void + { + Log::critical('GenerateOccurrencesJob permanently failed after retries', [ + 'event_id' => $this->eventId, + 'error' => $exception->getMessage(), + ]); + } +} diff --git a/backend/app/Services/Application/Handlers/EventOccurrence/GenerateOccurrencesFromRuleHandler.php b/backend/app/Services/Application/Handlers/EventOccurrence/GenerateOccurrencesFromRuleHandler.php index 25481a918d..da193428b1 100644 --- a/backend/app/Services/Application/Handlers/EventOccurrence/GenerateOccurrencesFromRuleHandler.php +++ b/backend/app/Services/Application/Handlers/EventOccurrence/GenerateOccurrencesFromRuleHandler.php @@ -9,10 +9,7 @@ use HiEvents\Repository\Interfaces\EventRepositoryInterface; use HiEvents\Services\Application\Handlers\EventOccurrence\DTO\GenerateOccurrencesDTO; use HiEvents\Services\Domain\Event\EventOccurrenceGeneratorService; -use HiEvents\Services\Domain\Event\RecurrenceRuleParserService; use Illuminate\Database\DatabaseManager; -use Illuminate\Support\Collection; -use Illuminate\Validation\ValidationException; use Throwable; class GenerateOccurrencesFromRuleHandler @@ -20,40 +17,48 @@ class GenerateOccurrencesFromRuleHandler public function __construct( private readonly EventOccurrenceGeneratorService $generatorService, private readonly EventRepositoryInterface $eventRepository, - private readonly RecurrenceRuleParserService $ruleParserService, private readonly DatabaseManager $databaseManager, ) {} /** * @throws Throwable */ - public function handle(GenerateOccurrencesDTO $dto): Collection + public function handle(GenerateOccurrencesDTO $dto): void { - $event = $this->eventRepository->findById($dto->event_id); - $timezone = $event->getTimezone() ?? 'UTC'; + $this->databaseManager->transaction(function () use ($dto) { + $this->databaseManager->statement('SELECT pg_advisory_xact_lock(?)', [$dto->event_id]); - $previewCount = $this->ruleParserService->parse($dto->recurrence_rule, $timezone)->count(); + $event = $this->eventRepository->findByIdLocked($dto->event_id); - if ($previewCount > RecurrenceRuleParserService::MAX_OCCURRENCES) { - throw ValidationException::withMessages([ - 'recurrence_rule' => [ - __('This rule would generate too many occurrences. Please reduce the date range or frequency, or contact support.'), - ], - ]); - } + $rule = $this->mergeLiveExclusions($dto->recurrence_rule, $event->getRecurrenceRule() ?? []); - return $this->databaseManager->transaction(function () use ($dto, $event) { $this->eventRepository->updateFromArray( id: $event->getId(), attributes: [ - EventDomainObjectAbstract::RECURRENCE_RULE => $dto->recurrence_rule, + EventDomainObjectAbstract::RECURRENCE_RULE => $rule, EventDomainObjectAbstract::TYPE => EventType::RECURRING->name, ], ); - $event->setRecurrenceRule($dto->recurrence_rule); + $event->setRecurrenceRule($rule); - return $this->generatorService->generate($event, $dto->recurrence_rule); + $this->generatorService->generate($event, $rule); }); } + + private function mergeLiveExclusions(array $submittedRule, array $liveRule): array + { + foreach (['excluded_occurrences', 'excluded_dates', 'additional_dates'] as $key) { + $merged = array_values(array_unique(array_merge( + $liveRule[$key] ?? [], + $submittedRule[$key] ?? [], + ), SORT_REGULAR)); + + if ($merged !== []) { + $submittedRule[$key] = $merged; + } + } + + return $submittedRule; + } } diff --git a/backend/app/Services/Application/Handlers/EventOccurrence/StartOccurrenceGenerationHandler.php b/backend/app/Services/Application/Handlers/EventOccurrence/StartOccurrenceGenerationHandler.php new file mode 100644 index 0000000000..975fa0f9fa --- /dev/null +++ b/backend/app/Services/Application/Handlers/EventOccurrence/StartOccurrenceGenerationHandler.php @@ -0,0 +1,45 @@ +eventRepository->findById($dto->event_id); + $timezone = $event->getTimezone() ?? 'UTC'; + + $previewCount = $this->ruleParserService->parse($dto->recurrence_rule, $timezone)->count(); + + if ($previewCount > RecurrenceRuleParserService::MAX_OCCURRENCES) { + throw ValidationException::withMessages([ + 'recurrence_rule' => [ + __('This rule would generate too many occurrences. Please reduce the date range or frequency, or contact support.'), + ], + ]); + } + + $startResult = $this->jobPollingService->startJob( + jobName: GenerateOccurrencesJob::batchName($dto->event_id), + jobs: [new GenerateOccurrencesJob($dto->event_id, $dto->recurrence_rule)], + ); + + return $this->jobPollingService->checkJobStatus($startResult->jobUuid); + } +} diff --git a/backend/app/Services/Domain/Event/EventOccurrenceGeneratorService.php b/backend/app/Services/Domain/Event/EventOccurrenceGeneratorService.php index b3a19d9939..61a8c8be1b 100644 --- a/backend/app/Services/Domain/Event/EventOccurrenceGeneratorService.php +++ b/backend/app/Services/Domain/Event/EventOccurrenceGeneratorService.php @@ -18,13 +18,15 @@ class EventOccurrenceGeneratorService { + private const INSERT_CHUNK_SIZE = 500; + public function __construct( private readonly RecurrenceRuleParserService $ruleParser, private readonly EventOccurrenceRepositoryInterface $occurrenceRepository, private readonly WaitlistEntryRepositoryInterface $waitlistEntryRepository, ) {} - public function generate(EventDomainObject $event, array $recurrenceRule): Collection + public function generate(EventDomainObject $event, array $recurrenceRule): void { $candidates = $this->ruleParser->parse($recurrenceRule, $event->getTimezone() ?? 'UTC'); @@ -41,8 +43,8 @@ public function generate(EventDomainObject $event, array $recurrenceRule): Colle ->all(); $occurrenceIdsInUse = $this->getOccurrenceIdsInUse($existingIds); - $result = collect(); $matchedExistingIds = []; + $rowsToInsert = []; foreach ($candidates as $candidate) { $startDateKey = $candidate['start']->copy()->utc()->toDateTimeString(); @@ -53,25 +55,22 @@ public function generate(EventDomainObject $event, array $recurrenceRule): Colle $matchedExistingIds[] = $existing->getId(); if ($occurrenceIdsInUse->contains($existing->getId()) || $existing->getIsOverridden()) { - $result->push($existing); - continue; } - $this->occurrenceRepository->updateWhere( - attributes: [ - EventOccurrenceDomainObjectAbstract::START_DATE => $candidate['start']->toDateTimeString(), - EventOccurrenceDomainObjectAbstract::END_DATE => $candidate['end']?->toDateTimeString(), - EventOccurrenceDomainObjectAbstract::CAPACITY => $candidate['capacity'], - EventOccurrenceDomainObjectAbstract::LABEL => $candidate['label'] ?? null, - ], - where: [EventOccurrenceDomainObjectAbstract::ID => $existing->getId()] - ); - - $updated = $this->occurrenceRepository->findById($existing->getId()); - $result->push($updated); + if (! $this->candidateMatchesExisting($candidate, $existing)) { + $this->occurrenceRepository->updateWhere( + attributes: [ + EventOccurrenceDomainObjectAbstract::START_DATE => $candidate['start']->toDateTimeString(), + EventOccurrenceDomainObjectAbstract::END_DATE => $candidate['end']?->toDateTimeString(), + EventOccurrenceDomainObjectAbstract::CAPACITY => $candidate['capacity'], + EventOccurrenceDomainObjectAbstract::LABEL => $candidate['label'] ?? null, + ], + where: [EventOccurrenceDomainObjectAbstract::ID => $existing->getId()] + ); + } } else { - $newOccurrence = $this->occurrenceRepository->create([ + $rowsToInsert[] = [ EventOccurrenceDomainObjectAbstract::EVENT_ID => $event->getId(), EventOccurrenceDomainObjectAbstract::SHORT_ID => IdHelper::shortId(IdHelper::OCCURRENCE_PREFIX), EventOccurrenceDomainObjectAbstract::START_DATE => $candidate['start']->toDateTimeString(), @@ -81,15 +80,26 @@ public function generate(EventDomainObject $event, array $recurrenceRule): Colle EventOccurrenceDomainObjectAbstract::USED_CAPACITY => 0, EventOccurrenceDomainObjectAbstract::IS_OVERRIDDEN => false, EventOccurrenceDomainObjectAbstract::LABEL => $candidate['label'] ?? null, - ]); - - $result->push($newOccurrence); + ]; } } + foreach (array_chunk($rowsToInsert, self::INSERT_CHUNK_SIZE) as $chunk) { + $this->occurrenceRepository->insert($chunk); + } + $this->removeStaleOccurrences($existingOccurrences, $matchedExistingIds, $occurrenceIdsInUse); + } + + private function candidateMatchesExisting(array $candidate, EventOccurrenceDomainObject $existing): bool + { + $existingEnd = $existing->getEndDate() !== null + ? Carbon::parse($existing->getEndDate())->utc()->toDateTimeString() + : null; - return $result; + return $existingEnd === $candidate['end']?->copy()->utc()->toDateTimeString() + && $existing->getCapacity() === $candidate['capacity'] + && $existing->getLabel() === ($candidate['label'] ?? null); } private function removeStaleOccurrences( @@ -99,6 +109,7 @@ private function removeStaleOccurrences( ): void { $idsToDelete = []; $eventIdsToDelete = []; + $idsToMarkOverridden = []; foreach ($existingOccurrences as $existing) { if (in_array($existing->getId(), $matchedExistingIds, true)) { @@ -110,12 +121,7 @@ private function removeStaleOccurrences( } if ($occurrenceIdsInUse->contains($existing->getId())) { - $this->occurrenceRepository->updateWhere( - attributes: [ - EventOccurrenceDomainObjectAbstract::IS_OVERRIDDEN => true, - ], - where: [EventOccurrenceDomainObjectAbstract::ID => $existing->getId()] - ); + $idsToMarkOverridden[] = $existing->getId(); continue; } @@ -128,6 +134,15 @@ private function removeStaleOccurrences( $eventIdsToDelete[$existing->getEventId()] = true; } + if ($idsToMarkOverridden !== []) { + $this->occurrenceRepository->updateWhere( + attributes: [ + EventOccurrenceDomainObjectAbstract::IS_OVERRIDDEN => true, + ], + where: [[EventOccurrenceDomainObjectAbstract::ID, 'in', $idsToMarkOverridden]] + ); + } + if ($idsToDelete === []) { return; } diff --git a/backend/app/Services/Infrastructure/Jobs/JobPollingService.php b/backend/app/Services/Infrastructure/Jobs/JobPollingService.php index f0076bfdcd..6339724b32 100644 --- a/backend/app/Services/Infrastructure/Jobs/JobPollingService.php +++ b/backend/app/Services/Infrastructure/Jobs/JobPollingService.php @@ -24,10 +24,14 @@ public function startJob(string $jobName, array $jobs): JobPollingResultDTO ); } - public function checkJobStatus(string $jobUuid, ?string $filePath = null): JobPollingResultDTO + public function checkJobStatus(string $jobUuid, ?string $filePath = null, ?string $expectedName = null): JobPollingResultDTO { $batch = Bus::findBatch($jobUuid); + if ($batch && $expectedName !== null && $batch->name !== $expectedName) { + $batch = null; + } + if (! $batch) { return new JobPollingResultDTO( status: JobStatusEnum::NOT_FOUND, @@ -36,6 +40,14 @@ public function checkJobStatus(string $jobUuid, ?string $filePath = null): JobPo ); } + if ($batch->cancelled() || $batch->failedJobs > 0) { + return new JobPollingResultDTO( + status: JobStatusEnum::FAILED, + message: __('Job failed'), + jobUuid: $jobUuid, + ); + } + if ($batch->finished()) { if ($filePath && ! Storage::disk(self::STORAGE_DISK)->exists($filePath)) { return new JobPollingResultDTO( diff --git a/backend/routes/api.php b/backend/routes/api.php index 660d1a015d..b116c2f601 100644 --- a/backend/routes/api.php +++ b/backend/routes/api.php @@ -91,6 +91,7 @@ use HiEvents\Http\Actions\EventOccurrences\DeleteEventOccurrenceAction; use HiEvents\Http\Actions\EventOccurrences\DeletePriceOverrideAction; use HiEvents\Http\Actions\EventOccurrences\GenerateOccurrencesAction; +use HiEvents\Http\Actions\EventOccurrences\GetOccurrenceGenerationStatusAction; use HiEvents\Http\Actions\EventOccurrences\GetEventOccurrenceAction; use HiEvents\Http\Actions\EventOccurrences\GetEventOccurrencesAction; use HiEvents\Http\Actions\EventOccurrences\GetEventOccurrencesPublicAction; @@ -488,6 +489,7 @@ function (Router $router): void { // Event Occurrences $router->post('/events/{event_id}/occurrences/generate', GenerateOccurrencesAction::class); + $router->get('/events/{event_id}/occurrences/generate/status', GetOccurrenceGenerationStatusAction::class); $router->post('/events/{event_id}/occurrences/bulk-update', BulkUpdateOccurrencesAction::class); $router->post('/events/{event_id}/occurrences', CreateEventOccurrenceAction::class); $router->get('/events/{event_id}/occurrences', GetEventOccurrencesAction::class); diff --git a/backend/tests/Feature/Http/Actions/EventOccurrences/GenerateOccurrencesActionTest.php b/backend/tests/Feature/Http/Actions/EventOccurrences/GenerateOccurrencesActionTest.php new file mode 100644 index 0000000000..0d4f2f43ce --- /dev/null +++ b/backend/tests/Feature/Http/Actions/EventOccurrences/GenerateOccurrencesActionTest.php @@ -0,0 +1,197 @@ +user, $this->authToken, $this->accountId] = $this->makeAuthenticatedUser(); + $this->organizerId = $this->makeOrganizer($this->accountId); + $this->eventId = $this->makeEvent(); + } + + public function test_generate_dispatches_batch_and_returns_accepted(): void + { + Bus::fake(); + + $response = $this->postJson( + "/events/{$this->eventId}/occurrences/generate", + ['recurrence_rule' => $this->weeklyRule()], + $this->authHeaders(), + ); + + $response->assertStatus(ResponseCodes::HTTP_ACCEPTED); + $this->assertSame('IN_PROGRESS', $response->json('status')); + $this->assertNotEmpty($response->json('job_uuid')); + + Bus::assertBatched(function ($batch) { + return $batch->jobs->count() === 1 + && $batch->jobs->first() instanceof GenerateOccurrencesJob + && $batch->jobs->first()->eventId === $this->eventId; + }); + } + + public function test_generate_with_sync_queue_creates_occurrences_and_status_reports_finished(): void + { + config(['queue.default' => 'sync']); + + $response = $this->postJson( + "/events/{$this->eventId}/occurrences/generate", + ['recurrence_rule' => $this->weeklyRule()], + $this->authHeaders(), + ); + + $response->assertStatus(ResponseCodes::HTTP_ACCEPTED); + $this->assertSame('FINISHED', $response->json('status')); + $jobUuid = $response->json('job_uuid'); + + $this->assertSame( + 3, + DB::table('event_occurrences')->where('event_id', $this->eventId)->whereNull('deleted_at')->count(), + ); + $this->assertSame( + 'RECURRING', + DB::table('events')->where('id', $this->eventId)->value('type'), + ); + + $status = $this->getJson( + "/events/{$this->eventId}/occurrences/generate/status?job_uuid=$jobUuid", + $this->authHeaders(), + ); + + $status->assertStatus(ResponseCodes::HTTP_OK); + $this->assertSame('FINISHED', $status->json('status')); + } + + public function test_generate_rejects_over_limit_rule_without_dispatching(): void + { + Bus::fake(); + + $response = $this->postJson( + "/events/{$this->eventId}/occurrences/generate", + [ + 'recurrence_rule' => [ + 'frequency' => 'daily', + 'interval' => 1, + 'range' => ['type' => 'count', 'count' => 1200, 'start' => '2030-06-03'], + 'times_of_day' => ['09:00', '12:00'], + ], + ], + $this->authHeaders(), + ); + + $response->assertStatus(ResponseCodes::HTTP_UNPROCESSABLE_ENTITY); + Bus::assertNothingBatched(); + } + + public function test_status_endpoint_returns_not_found_for_unknown_job(): void + { + $status = $this->getJson( + "/events/{$this->eventId}/occurrences/generate/status?job_uuid=nonexistent", + $this->authHeaders(), + ); + + $status->assertStatus(ResponseCodes::HTTP_OK); + $this->assertSame('NOT_FOUND', $status->json('status')); + } + + public function test_status_endpoint_rejects_job_uuid_from_another_event(): void + { + $response = $this->postJson( + "/events/{$this->eventId}/occurrences/generate", + ['recurrence_rule' => $this->weeklyRule()], + $this->authHeaders(), + ); + $jobUuid = $response->json('job_uuid'); + + $otherEventId = $this->makeEvent(); + + $status = $this->getJson( + "/events/$otherEventId/occurrences/generate/status?job_uuid=$jobUuid", + $this->authHeaders(), + ); + + $status->assertStatus(ResponseCodes::HTTP_OK); + $this->assertSame('NOT_FOUND', $status->json('status')); + } + + private function weeklyRule(): array + { + return [ + 'frequency' => 'weekly', + 'interval' => 1, + 'days_of_week' => ['monday'], + 'range' => ['type' => 'count', 'count' => 3, 'start' => '2030-06-03'], + 'times_of_day' => ['19:00'], + ]; + } + + private function makeAuthenticatedUser(): array + { + $user = User::factory()->withAccount()->create(); + $accountId = $user->accounts()->first()->id; + + $token = JWTAuth::claims(['account_id' => $accountId])->fromUser($user); + + return [$user, $token, $accountId]; + } + + private function makeOrganizer(int $accountId): int + { + return DB::table('organizers')->insertGetId([ + 'account_id' => $accountId, + 'name' => 'Occurrence Organizer', + 'email' => 'organizer-'.uniqid().'@test.com', + 'currency' => 'USD', + 'timezone' => 'UTC', + 'created_at' => now(), + 'updated_at' => now(), + ]); + } + + private function makeEvent(): int + { + return DB::table('events')->insertGetId([ + 'title' => 'Occurrence Test Event', + 'account_id' => $this->accountId, + 'user_id' => $this->user->id, + 'organizer_id' => $this->organizerId, + 'currency' => 'USD', + 'timezone' => 'UTC', + 'short_id' => 'ev_'.uniqid(), + 'created_at' => now(), + 'updated_at' => now(), + ]); + } + + private function authHeaders(): array + { + $this->app['auth']->forgetGuards(); + + return ['Authorization' => 'Bearer '.$this->authToken]; + } +} diff --git a/backend/tests/Feature/Services/Domain/Event/EventOccurrenceGeneratorServiceTest.php b/backend/tests/Feature/Services/Domain/Event/EventOccurrenceGeneratorServiceTest.php index d5982e73cb..e233aea904 100644 --- a/backend/tests/Feature/Services/Domain/Event/EventOccurrenceGeneratorServiceTest.php +++ b/backend/tests/Feature/Services/Domain/Event/EventOccurrenceGeneratorServiceTest.php @@ -60,6 +60,7 @@ private function weeklyRule(int $count = 3): array 'days_of_week' => ['monday'], 'range' => ['type' => 'count', 'count' => $count, 'start' => '2030-06-03'], 'times_of_day' => ['19:00'], + 'duration_minutes' => 120, ]; } @@ -102,6 +103,42 @@ public function test_regenerating_the_same_rule_is_idempotent(): void ); } + public function test_generated_occurrences_have_unique_short_ids_and_expected_columns(): void + { + $this->generator->generate($this->event(), $this->weeklyRule(count: 3)); + $occurrences = $this->liveOccurrences(); + + $this->assertCount(3, $occurrences); + + $shortIds = array_column($occurrences, 'short_id'); + $this->assertCount(3, array_unique($shortIds)); + + foreach ($occurrences as $occurrence) { + $this->assertStringStartsWith('oc_', $occurrence->short_id); + $this->assertSame('ACTIVE', $occurrence->status); + $this->assertSame(0, $occurrence->used_capacity); + $this->assertFalse((bool) $occurrence->is_overridden); + $this->assertNotNull($occurrence->end_date); + $this->assertNotNull($occurrence->created_at); + } + } + + public function test_regenerating_the_same_rule_issues_no_occurrence_updates(): void + { + $this->generator->generate($this->event(), $this->weeklyRule()); + + $occurrenceWrites = []; + DB::listen(function ($query) use (&$occurrenceWrites) { + if (preg_match('/^(update|insert into|delete from) "?event_occurrences"?/i', $query->sql)) { + $occurrenceWrites[] = $query->sql; + } + }); + + $this->generator->generate($this->event(), $this->weeklyRule()); + + $this->assertSame([], $occurrenceWrites, 'An identical rule must not write to event_occurrences'); + } + public function test_extending_a_rule_keeps_matching_occurrences_and_appends_new_ones(): void { $this->generator->generate($this->event(), $this->weeklyRule(count: 3)); diff --git a/backend/tests/Unit/Jobs/Occurrence/GenerateOccurrencesJobTest.php b/backend/tests/Unit/Jobs/Occurrence/GenerateOccurrencesJobTest.php new file mode 100644 index 0000000000..59be6116d5 --- /dev/null +++ b/backend/tests/Unit/Jobs/Occurrence/GenerateOccurrencesJobTest.php @@ -0,0 +1,62 @@ + 'weekly']; + $job = new GenerateOccurrencesJob(1, $rule); + + $handler = Mockery::mock(GenerateOccurrencesFromRuleHandler::class); + $handler->shouldReceive('handle') + ->once() + ->withArgs(function (GenerateOccurrencesDTO $dto) use ($rule) { + return $dto->event_id === 1 && $dto->recurrence_rule === $rule; + }); + + $job->handle($handler); + } + + public function test_handle_fails_immediately_on_invalid_rule(): void + { + $job = Mockery::mock(GenerateOccurrencesJob::class.'[fail]', [1, ['frequency' => 'weekly']]); + $job->shouldReceive('fail')->once()->with(Mockery::type(InvalidRecurrenceRuleException::class)); + + $handler = Mockery::mock(GenerateOccurrencesFromRuleHandler::class); + $handler->shouldReceive('handle') + ->once() + ->andThrow(new InvalidRecurrenceRuleException('bad rule')); + + $job->handle($handler); + } + + public function test_handle_bails_when_batch_is_cancelled(): void + { + $batch = Mockery::mock(Batch::class); + $batch->shouldReceive('cancelled')->andReturn(true); + + $job = Mockery::mock(GenerateOccurrencesJob::class.'[batch]', [1, ['frequency' => 'weekly']]); + $job->shouldReceive('batch')->andReturn($batch); + + $handler = Mockery::mock(GenerateOccurrencesFromRuleHandler::class); + $handler->shouldNotReceive('handle'); + + $job->handle($handler); + } + + protected function tearDown(): void + { + Mockery::close(); + parent::tearDown(); + } +} diff --git a/backend/tests/Unit/Services/Application/Handlers/EventOccurrence/GenerateOccurrencesFromRuleHandlerTest.php b/backend/tests/Unit/Services/Application/Handlers/EventOccurrence/GenerateOccurrencesFromRuleHandlerTest.php index 7ad40b9af0..ac1a5b564c 100644 --- a/backend/tests/Unit/Services/Application/Handlers/EventOccurrence/GenerateOccurrencesFromRuleHandlerTest.php +++ b/backend/tests/Unit/Services/Application/Handlers/EventOccurrence/GenerateOccurrencesFromRuleHandlerTest.php @@ -9,10 +9,7 @@ use HiEvents\Services\Application\Handlers\EventOccurrence\DTO\GenerateOccurrencesDTO; use HiEvents\Services\Application\Handlers\EventOccurrence\GenerateOccurrencesFromRuleHandler; use HiEvents\Services\Domain\Event\EventOccurrenceGeneratorService; -use HiEvents\Services\Domain\Event\RecurrenceRuleParserService; use Illuminate\Database\DatabaseManager; -use Illuminate\Support\Collection; -use Illuminate\Validation\ValidationException; use Mockery; use Tests\TestCase; @@ -22,8 +19,6 @@ class GenerateOccurrencesFromRuleHandlerTest extends TestCase private EventRepositoryInterface|Mockery\MockInterface $eventRepository; - private RecurrenceRuleParserService|Mockery\MockInterface $ruleParserService; - private DatabaseManager|Mockery\MockInterface $databaseManager; private GenerateOccurrencesFromRuleHandler $handler; @@ -34,16 +29,17 @@ protected function setUp(): void $this->generatorService = Mockery::mock(EventOccurrenceGeneratorService::class); $this->eventRepository = Mockery::mock(EventRepositoryInterface::class); - $this->ruleParserService = Mockery::mock(RecurrenceRuleParserService::class); $this->databaseManager = Mockery::mock(DatabaseManager::class); $this->databaseManager->shouldReceive('transaction') ->andReturnUsing(fn ($callback) => $callback()); + $this->databaseManager->shouldReceive('statement') + ->with('SELECT pg_advisory_xact_lock(?)', [1]) + ->byDefault(); $this->handler = new GenerateOccurrencesFromRuleHandler( $this->generatorService, $this->eventRepository, - $this->ruleParserService, $this->databaseManager, ); } @@ -54,16 +50,11 @@ public function test_handle_generates_occurrences_and_updates_event_type(): void $dto = new GenerateOccurrencesDTO(event_id: 1, recurrence_rule: $rule); $event = Mockery::mock(EventDomainObject::class); - $event->shouldReceive('getTimezone')->andReturn('America/New_York'); $event->shouldReceive('getId')->andReturn(1); + $event->shouldReceive('getRecurrenceRule')->andReturn(null); $event->shouldReceive('setRecurrenceRule')->once()->with($rule); - $this->eventRepository->shouldReceive('findById')->with(1)->once()->andReturn($event); - - $this->ruleParserService->shouldReceive('parse') - ->with($rule, 'America/New_York') - ->once() - ->andReturn(collect(range(1, 10))); + $this->eventRepository->shouldReceive('findByIdLocked')->with(1)->once()->andReturn($event); $this->eventRepository->shouldReceive('updateFromArray') ->once() @@ -72,62 +63,118 @@ public function test_handle_generates_occurrences_and_updates_event_type(): void EventDomainObjectAbstract::TYPE => EventType::RECURRING->name, ]); - $generatedOccurrences = collect(['occ1', 'occ2']); $this->generatorService->shouldReceive('generate') ->once() - ->with($event, $rule) - ->andReturn($generatedOccurrences); + ->with($event, $rule); - $result = $this->handler->handle($dto); - - $this->assertSame($generatedOccurrences, $result); + $this->handler->handle($dto); } - public function test_handle_throws_validation_exception_when_too_many_occurrences(): void + public function test_handle_takes_event_advisory_lock(): void { - $rule = ['frequency' => 'daily', 'range' => ['type' => 'count', 'count' => 2000]]; + $rule = ['frequency' => 'weekly']; $dto = new GenerateOccurrencesDTO(event_id: 1, recurrence_rule: $rule); $event = Mockery::mock(EventDomainObject::class); - $event->shouldReceive('getTimezone')->andReturn('UTC'); - - $this->eventRepository->shouldReceive('findById')->with(1)->once()->andReturn($event); + $event->shouldReceive('getId')->andReturn(1); + $event->shouldReceive('getRecurrenceRule')->andReturn(null); + $event->shouldReceive('setRecurrenceRule')->once(); - $this->ruleParserService->shouldReceive('parse') - ->with($rule, 'UTC') + $this->databaseManager->shouldReceive('statement') ->once() - ->andReturn(collect(range(1, RecurrenceRuleParserService::MAX_OCCURRENCES + 1))); - - $this->generatorService->shouldNotReceive('generate'); + ->with('SELECT pg_advisory_xact_lock(?)', [1]); - $this->expectException(ValidationException::class); + $this->eventRepository->shouldReceive('findByIdLocked')->once()->andReturn($event); + $this->eventRepository->shouldReceive('updateFromArray')->once(); + $this->generatorService->shouldReceive('generate')->once(); $this->handler->handle($dto); } - public function test_handle_uses_utc_when_event_has_no_timezone(): void + public function test_handle_merges_live_exclusions_into_submitted_rule(): void { - $rule = ['frequency' => 'weekly']; - $dto = new GenerateOccurrencesDTO(event_id: 1, recurrence_rule: $rule); + $submittedRule = [ + 'frequency' => 'weekly', + 'excluded_occurrences' => ['2026-08-01 19:00'], + ]; + $liveRule = [ + 'frequency' => 'weekly', + 'excluded_occurrences' => ['2026-08-08 19:00'], + 'excluded_dates' => ['2026-09-01'], + ]; + $expectedRule = [ + 'frequency' => 'weekly', + 'excluded_occurrences' => ['2026-08-08 19:00', '2026-08-01 19:00'], + 'excluded_dates' => ['2026-09-01'], + ]; + $dto = new GenerateOccurrencesDTO(event_id: 1, recurrence_rule: $submittedRule); $event = Mockery::mock(EventDomainObject::class); - $event->shouldReceive('getTimezone')->andReturn(null); $event->shouldReceive('getId')->andReturn(1); - $event->shouldReceive('setRecurrenceRule')->once(); + $event->shouldReceive('getRecurrenceRule')->andReturn($liveRule); + $event->shouldReceive('setRecurrenceRule')->once()->with($expectedRule); - $this->eventRepository->shouldReceive('findById')->once()->andReturn($event); + $this->eventRepository->shouldReceive('findByIdLocked')->with(1)->once()->andReturn($event); - $this->ruleParserService->shouldReceive('parse') - ->with($rule, 'UTC') + $this->eventRepository->shouldReceive('updateFromArray') ->once() - ->andReturn(collect(range(1, 5))); + ->with(1, [ + EventDomainObjectAbstract::RECURRENCE_RULE => $expectedRule, + EventDomainObjectAbstract::TYPE => EventType::RECURRING->name, + ]); - $this->eventRepository->shouldReceive('updateFromArray')->once(); - $this->generatorService->shouldReceive('generate')->once()->andReturn(collect()); + $this->generatorService->shouldReceive('generate') + ->once() + ->with($event, $expectedRule); + + $this->handler->handle($dto); + } + + public function test_handle_merges_additional_dates_without_collapsing_them(): void + { + $submittedRule = [ + 'frequency' => 'weekly', + 'additional_dates' => [ + ['date' => '2026-08-01', 'time' => '10:00'], + ['date' => '2026-08-02', 'time' => '10:00'], + ], + ]; + $liveRule = [ + 'frequency' => 'weekly', + 'additional_dates' => [ + ['date' => '2026-08-02', 'time' => '10:00'], + ['date' => '2026-08-03'], + ], + ]; + $expectedRule = [ + 'frequency' => 'weekly', + 'additional_dates' => [ + ['date' => '2026-08-02', 'time' => '10:00'], + ['date' => '2026-08-03'], + ['date' => '2026-08-01', 'time' => '10:00'], + ], + ]; + $dto = new GenerateOccurrencesDTO(event_id: 1, recurrence_rule: $submittedRule); - $result = $this->handler->handle($dto); + $event = Mockery::mock(EventDomainObject::class); + $event->shouldReceive('getId')->andReturn(1); + $event->shouldReceive('getRecurrenceRule')->andReturn($liveRule); + $event->shouldReceive('setRecurrenceRule')->once()->with($expectedRule); - $this->assertInstanceOf(Collection::class, $result); + $this->eventRepository->shouldReceive('findByIdLocked')->with(1)->once()->andReturn($event); + + $this->eventRepository->shouldReceive('updateFromArray') + ->once() + ->with(1, [ + EventDomainObjectAbstract::RECURRENCE_RULE => $expectedRule, + EventDomainObjectAbstract::TYPE => EventType::RECURRING->name, + ]); + + $this->generatorService->shouldReceive('generate') + ->once() + ->with($event, $expectedRule); + + $this->handler->handle($dto); } protected function tearDown(): void diff --git a/backend/tests/Unit/Services/Application/Handlers/EventOccurrence/StartOccurrenceGenerationHandlerTest.php b/backend/tests/Unit/Services/Application/Handlers/EventOccurrence/StartOccurrenceGenerationHandlerTest.php new file mode 100644 index 0000000000..3aaf1c754e --- /dev/null +++ b/backend/tests/Unit/Services/Application/Handlers/EventOccurrence/StartOccurrenceGenerationHandlerTest.php @@ -0,0 +1,116 @@ +eventRepository = Mockery::mock(EventRepositoryInterface::class); + $this->ruleParserService = Mockery::mock(RecurrenceRuleParserService::class); + $this->jobPollingService = Mockery::mock(JobPollingService::class); + + $this->handler = new StartOccurrenceGenerationHandler( + $this->eventRepository, + $this->ruleParserService, + $this->jobPollingService, + ); + } + + public function test_handle_starts_generation_job(): void + { + $rule = ['frequency' => 'weekly', 'range' => ['type' => 'count', 'count' => 10]]; + $dto = new GenerateOccurrencesDTO(event_id: 1, recurrence_rule: $rule); + + $event = Mockery::mock(EventDomainObject::class); + $event->shouldReceive('getTimezone')->andReturn('America/New_York'); + + $this->eventRepository->shouldReceive('findById')->with(1)->once()->andReturn($event); + + $this->ruleParserService->shouldReceive('parse') + ->with($rule, 'America/New_York') + ->once() + ->andReturn(collect(range(1, 10))); + + $startResult = new JobPollingResultDTO( + status: JobStatusEnum::IN_PROGRESS, + message: 'Job started successfully', + jobUuid: 'uuid-123', + ); + $checkedResult = new JobPollingResultDTO( + status: JobStatusEnum::FINISHED, + message: 'Job completed successfully', + jobUuid: 'uuid-123', + ); + + $this->jobPollingService->shouldReceive('startJob') + ->once() + ->withArgs(function (string $jobName, array $jobs) { + return $jobName === 'Generate occurrences for Event #1' + && count($jobs) === 1 + && $jobs[0] instanceof GenerateOccurrencesJob + && $jobs[0]->eventId === 1; + }) + ->andReturn($startResult); + + $this->jobPollingService->shouldReceive('checkJobStatus') + ->once() + ->with('uuid-123') + ->andReturn($checkedResult); + + $result = $this->handler->handle($dto); + + $this->assertSame($checkedResult, $result); + } + + public function test_handle_throws_validation_exception_when_too_many_occurrences(): void + { + $rule = ['frequency' => 'daily', 'range' => ['type' => 'count', 'count' => 2000]]; + $dto = new GenerateOccurrencesDTO(event_id: 1, recurrence_rule: $rule); + + $event = Mockery::mock(EventDomainObject::class); + $event->shouldReceive('getTimezone')->andReturn('UTC'); + + $this->eventRepository->shouldReceive('findById')->with(1)->once()->andReturn($event); + + $this->ruleParserService->shouldReceive('parse') + ->with($rule, 'UTC') + ->once() + ->andReturn(collect(range(1, RecurrenceRuleParserService::MAX_OCCURRENCES + 1))); + + $this->jobPollingService->shouldNotReceive('startJob'); + + $this->expectException(ValidationException::class); + + $this->handler->handle($dto); + } + + protected function tearDown(): void + { + Mockery::close(); + parent::tearDown(); + } +} diff --git a/backend/tests/Unit/Services/Domain/Event/EventOccurrenceGeneratorServiceTest.php b/backend/tests/Unit/Services/Domain/Event/EventOccurrenceGeneratorServiceTest.php index 6f49e3476a..c66216b413 100644 --- a/backend/tests/Unit/Services/Domain/Event/EventOccurrenceGeneratorServiceTest.php +++ b/backend/tests/Unit/Services/Domain/Event/EventOccurrenceGeneratorServiceTest.php @@ -74,20 +74,21 @@ private function mockDbBatchQuery( ->andReturn($attendeesBuilder); } - public function test_new_occurrences_are_created_when_none_exist(): void + public function test_new_occurrences_are_bulk_inserted_when_none_exist(): void { $event = $this->createMockEvent(); $recurrenceRule = ['frequency' => 'daily']; - $candidateStart = CarbonImmutable::parse('2025-03-01 10:00:00'); - $candidateEnd = CarbonImmutable::parse('2025-03-01 11:00:00'); - $this->ruleParser ->shouldReceive('parse') ->with($recurrenceRule, 'UTC') ->once() ->andReturn(collect([ - ['start' => $candidateStart, 'end' => $candidateEnd, 'capacity' => 100], + [ + 'start' => CarbonImmutable::parse('2025-03-01 10:00:00'), + 'end' => CarbonImmutable::parse('2025-03-01 11:00:00'), + 'capacity' => 100, + ], ])); $this->occurrenceRepository @@ -96,98 +97,85 @@ public function test_new_occurrences_are_created_when_none_exist(): void ->once() ->andReturn(collect()); - $createdOccurrence = $this->createOccurrenceDomainObject( - id: 10, - startDate: '2025-03-01 10:00:00', - endDate: '2025-03-01 11:00:00', - ); - $this->occurrenceRepository - ->shouldReceive('create') - ->with(Mockery::on(function ($arg) { - return $arg[EventOccurrenceDomainObjectAbstract::EVENT_ID] === 1 - && $arg[EventOccurrenceDomainObjectAbstract::START_DATE] === '2025-03-01 10:00:00' - && $arg[EventOccurrenceDomainObjectAbstract::END_DATE] === '2025-03-01 11:00:00' - && $arg[EventOccurrenceDomainObjectAbstract::STATUS] === EventOccurrenceStatus::ACTIVE->name - && $arg[EventOccurrenceDomainObjectAbstract::CAPACITY] === 100 - && $arg[EventOccurrenceDomainObjectAbstract::USED_CAPACITY] === 0 - && $arg[EventOccurrenceDomainObjectAbstract::IS_OVERRIDDEN] === false; + ->shouldReceive('insert') + ->with(Mockery::on(function ($rows) { + return count($rows) === 1 + && $rows[0][EventOccurrenceDomainObjectAbstract::EVENT_ID] === 1 + && $rows[0][EventOccurrenceDomainObjectAbstract::START_DATE] === '2025-03-01 10:00:00' + && $rows[0][EventOccurrenceDomainObjectAbstract::END_DATE] === '2025-03-01 11:00:00' + && $rows[0][EventOccurrenceDomainObjectAbstract::STATUS] === EventOccurrenceStatus::ACTIVE->name + && $rows[0][EventOccurrenceDomainObjectAbstract::CAPACITY] === 100 + && $rows[0][EventOccurrenceDomainObjectAbstract::USED_CAPACITY] === 0 + && $rows[0][EventOccurrenceDomainObjectAbstract::IS_OVERRIDDEN] === false + && $rows[0][EventOccurrenceDomainObjectAbstract::SHORT_ID] !== ''; })) ->once() - ->andReturn($createdOccurrence); + ->andReturn(true); $this->occurrenceRepository->shouldNotReceive('deleteWhere'); + $this->occurrenceRepository->shouldNotReceive('updateWhere'); - $result = $this->service->generate($event, $recurrenceRule); - - $this->assertCount(1, $result); - $this->assertEquals(10, $result->first()->getId()); + $this->service->generate($event, $recurrenceRule); } - public function test_multiple_new_occurrences_created(): void + public function test_inserts_are_chunked(): void { $event = $this->createMockEvent(); $recurrenceRule = ['frequency' => 'daily']; - $candidates = collect([ - [ - 'start' => CarbonImmutable::parse('2025-03-01 10:00:00'), - 'end' => CarbonImmutable::parse('2025-03-01 11:00:00'), - 'capacity' => 50, - ], - [ - 'start' => CarbonImmutable::parse('2025-03-02 10:00:00'), - 'end' => CarbonImmutable::parse('2025-03-02 11:00:00'), - 'capacity' => 50, - ], + $candidates = collect(range(0, 500))->map(fn (int $i) => [ + 'start' => CarbonImmutable::parse('2025-03-01 10:00:00')->addDays($i), + 'end' => null, + 'capacity' => null, ]); $this->ruleParser ->shouldReceive('parse') - ->with($recurrenceRule, 'UTC') ->once() ->andReturn($candidates); $this->occurrenceRepository ->shouldReceive('findWhere') - ->with([EventOccurrenceDomainObjectAbstract::EVENT_ID => 1]) ->once() ->andReturn(collect()); - $occ1 = $this->createOccurrenceDomainObject(id: 10, startDate: '2025-03-01 10:00:00'); - $occ2 = $this->createOccurrenceDomainObject(id: 11, startDate: '2025-03-02 10:00:00'); - + $insertedCounts = []; $this->occurrenceRepository - ->shouldReceive('create') + ->shouldReceive('insert') ->twice() - ->andReturn($occ1, $occ2); + ->andReturnUsing(function (array $rows) use (&$insertedCounts) { + $insertedCounts[] = count($rows); + + return true; + }); - $result = $this->service->generate($event, $recurrenceRule); + $this->service->generate($event, $recurrenceRule); - $this->assertCount(2, $result); + $this->assertSame([500, 1], $insertedCounts); } - public function test_existing_occurrence_without_orders_and_not_overridden_is_updated_in_place(): void + public function test_changed_existing_occurrence_is_updated_without_refetch(): void { $event = $this->createMockEvent(); $recurrenceRule = ['frequency' => 'daily']; - $candidateStart = CarbonImmutable::parse('2025-03-01 10:00:00'); - $candidateEnd = CarbonImmutable::parse('2025-03-01 12:00:00'); - $this->ruleParser ->shouldReceive('parse') ->with($recurrenceRule, 'UTC') ->once() ->andReturn(collect([ - ['start' => $candidateStart, 'end' => $candidateEnd, 'capacity' => 200], + [ + 'start' => CarbonImmutable::parse('2025-03-01 10:00:00'), + 'end' => CarbonImmutable::parse('2025-03-01 12:00:00'), + 'capacity' => 200, + ], ])); $existingOccurrence = $this->createOccurrenceDomainObject( id: 5, startDate: '2025-03-01 10:00:00', endDate: '2025-03-01 11:00:00', - isOverridden: false, ); $this->occurrenceRepository @@ -210,49 +198,37 @@ public function test_existing_occurrence_without_orders_and_not_overridden_is_up ) ->once(); - $updatedOccurrence = $this->createOccurrenceDomainObject( - id: 5, - startDate: '2025-03-01 10:00:00', - endDate: '2025-03-01 12:00:00', - ); - - $this->occurrenceRepository - ->shouldReceive('findById') - ->with(5) - ->once() - ->andReturn($updatedOccurrence); - - $this->occurrenceRepository->shouldNotReceive('create'); + $this->occurrenceRepository->shouldNotReceive('findById'); + $this->occurrenceRepository->shouldNotReceive('insert'); $this->occurrenceRepository->shouldNotReceive('deleteWhere'); - $result = $this->service->generate($event, $recurrenceRule); - - $this->assertCount(1, $result); - $this->assertEquals(5, $result->first()->getId()); - $this->assertEquals('2025-03-01 12:00:00', $result->first()->getEndDate()); + $this->service->generate($event, $recurrenceRule); } - public function test_existing_occurrence_with_orders_is_not_modified(): void + public function test_unchanged_existing_occurrence_is_not_updated(): void { $event = $this->createMockEvent(); $recurrenceRule = ['frequency' => 'daily']; - $candidateStart = CarbonImmutable::parse('2025-03-01 10:00:00'); - $candidateEnd = CarbonImmutable::parse('2025-03-01 12:00:00'); - $this->ruleParser ->shouldReceive('parse') ->with($recurrenceRule, 'UTC') ->once() ->andReturn(collect([ - ['start' => $candidateStart, 'end' => $candidateEnd, 'capacity' => 200], + [ + 'start' => CarbonImmutable::parse('2025-03-01 10:00:00'), + 'end' => CarbonImmutable::parse('2025-03-01 11:00:00'), + 'capacity' => 100, + 'label' => 'Morning', + ], ])); $existingOccurrence = $this->createOccurrenceDomainObject( id: 5, startDate: '2025-03-01 10:00:00', endDate: '2025-03-01 11:00:00', - isOverridden: false, + capacity: 100, + label: 'Morning', ); $this->occurrenceRepository @@ -261,41 +237,36 @@ public function test_existing_occurrence_with_orders_is_not_modified(): void ->once() ->andReturn(collect([$existingOccurrence])); - $this->mockDbBatchQuery([5]); + $this->mockDbBatchQuery([]); $this->occurrenceRepository->shouldNotReceive('updateWhere'); - $this->occurrenceRepository->shouldNotReceive('findById'); - $this->occurrenceRepository->shouldNotReceive('create'); + $this->occurrenceRepository->shouldNotReceive('insert'); $this->occurrenceRepository->shouldNotReceive('deleteWhere'); - $result = $this->service->generate($event, $recurrenceRule); - - $this->assertCount(1, $result); - $this->assertEquals(5, $result->first()->getId()); - $this->assertEquals('2025-03-01 11:00:00', $result->first()->getEndDate()); + $this->service->generate($event, $recurrenceRule); } - public function test_existing_overridden_occurrence_is_not_modified(): void + public function test_unchanged_occurrence_with_iso8601_hydrated_dates_is_not_updated(): void { $event = $this->createMockEvent(); $recurrenceRule = ['frequency' => 'daily']; - $candidateStart = CarbonImmutable::parse('2025-03-01 10:00:00'); - $candidateEnd = CarbonImmutable::parse('2025-03-01 12:00:00'); - $this->ruleParser ->shouldReceive('parse') ->with($recurrenceRule, 'UTC') ->once() ->andReturn(collect([ - ['start' => $candidateStart, 'end' => $candidateEnd, 'capacity' => 200], + [ + 'start' => CarbonImmutable::parse('2025-03-01 10:00:00'), + 'end' => CarbonImmutable::parse('2025-03-01 11:00:00'), + 'capacity' => null, + ], ])); $existingOccurrence = $this->createOccurrenceDomainObject( id: 5, - startDate: '2025-03-01 10:00:00', - endDate: '2025-03-01 11:00:00', - isOverridden: true, + startDate: '2025-03-01T10:00:00.000000Z', + endDate: '2025-03-01T11:00:00.000000Z', ); $this->occurrenceRepository @@ -307,18 +278,13 @@ public function test_existing_overridden_occurrence_is_not_modified(): void $this->mockDbBatchQuery([]); $this->occurrenceRepository->shouldNotReceive('updateWhere'); - $this->occurrenceRepository->shouldNotReceive('findById'); - $this->occurrenceRepository->shouldNotReceive('create'); + $this->occurrenceRepository->shouldNotReceive('insert'); $this->occurrenceRepository->shouldNotReceive('deleteWhere'); - $result = $this->service->generate($event, $recurrenceRule); - - $this->assertCount(1, $result); - $this->assertEquals(5, $result->first()->getId()); - $this->assertEquals('2025-03-01 11:00:00', $result->first()->getEndDate()); + $this->service->generate($event, $recurrenceRule); } - public function test_stale_occurrence_with_no_orders_and_not_overridden_is_soft_deleted(): void + public function test_existing_occurrence_with_orders_is_not_modified(): void { $event = $this->createMockEvent(); $recurrenceRule = ['frequency' => 'daily']; @@ -329,50 +295,34 @@ public function test_stale_occurrence_with_no_orders_and_not_overridden_is_soft_ ->once() ->andReturn(collect([ [ - 'start' => CarbonImmutable::parse('2025-03-02 10:00:00'), - 'end' => CarbonImmutable::parse('2025-03-02 11:00:00'), - 'capacity' => 100, + 'start' => CarbonImmutable::parse('2025-03-01 10:00:00'), + 'end' => CarbonImmutable::parse('2025-03-01 12:00:00'), + 'capacity' => 200, ], ])); - $staleOccurrence = $this->createOccurrenceDomainObject( + $existingOccurrence = $this->createOccurrenceDomainObject( id: 5, startDate: '2025-03-01 10:00:00', endDate: '2025-03-01 11:00:00', - isOverridden: false, ); $this->occurrenceRepository ->shouldReceive('findWhere') ->with([EventOccurrenceDomainObjectAbstract::EVENT_ID => 1]) ->once() - ->andReturn(collect([$staleOccurrence])); - - $this->mockDbBatchQuery([]); - - $newOccurrence = $this->createOccurrenceDomainObject( - id: 10, - startDate: '2025-03-02 10:00:00', - endDate: '2025-03-02 11:00:00', - ); - - $this->occurrenceRepository - ->shouldReceive('create') - ->once() - ->andReturn($newOccurrence); + ->andReturn(collect([$existingOccurrence])); - $this->occurrenceRepository - ->shouldReceive('deleteWhere') - ->with([[EventOccurrenceDomainObjectAbstract::ID, 'in', [5]]]) - ->once(); + $this->mockDbBatchQuery([5]); - $result = $this->service->generate($event, $recurrenceRule); + $this->occurrenceRepository->shouldNotReceive('updateWhere'); + $this->occurrenceRepository->shouldNotReceive('insert'); + $this->occurrenceRepository->shouldNotReceive('deleteWhere'); - $this->assertCount(1, $result); - $this->assertEquals(10, $result->first()->getId()); + $this->service->generate($event, $recurrenceRule); } - public function test_stale_occurrence_with_orders_is_marked_overridden_and_not_deleted(): void + public function test_existing_overridden_occurrence_is_not_modified(): void { $event = $this->createMockEvent(); $recurrenceRule = ['frequency' => 'daily']; @@ -383,55 +333,35 @@ public function test_stale_occurrence_with_orders_is_marked_overridden_and_not_d ->once() ->andReturn(collect([ [ - 'start' => CarbonImmutable::parse('2025-03-02 10:00:00'), - 'end' => CarbonImmutable::parse('2025-03-02 11:00:00'), - 'capacity' => 100, + 'start' => CarbonImmutable::parse('2025-03-01 10:00:00'), + 'end' => CarbonImmutable::parse('2025-03-01 12:00:00'), + 'capacity' => 200, ], ])); - $staleWithOrders = $this->createOccurrenceDomainObject( + $existingOccurrence = $this->createOccurrenceDomainObject( id: 5, startDate: '2025-03-01 10:00:00', endDate: '2025-03-01 11:00:00', - isOverridden: false, + isOverridden: true, ); $this->occurrenceRepository ->shouldReceive('findWhere') ->with([EventOccurrenceDomainObjectAbstract::EVENT_ID => 1]) ->once() - ->andReturn(collect([$staleWithOrders])); - - $this->mockDbBatchQuery([5]); - - $newOccurrence = $this->createOccurrenceDomainObject( - id: 10, - startDate: '2025-03-02 10:00:00', - endDate: '2025-03-02 11:00:00', - ); + ->andReturn(collect([$existingOccurrence])); - $this->occurrenceRepository - ->shouldReceive('create') - ->once() - ->andReturn($newOccurrence); + $this->mockDbBatchQuery([]); + $this->occurrenceRepository->shouldNotReceive('updateWhere'); + $this->occurrenceRepository->shouldNotReceive('insert'); $this->occurrenceRepository->shouldNotReceive('deleteWhere'); - $this->occurrenceRepository - ->shouldReceive('updateWhere') - ->once() - ->with( - [EventOccurrenceDomainObjectAbstract::IS_OVERRIDDEN => true], - [EventOccurrenceDomainObjectAbstract::ID => 5], - ); - - $result = $this->service->generate($event, $recurrenceRule); - - $this->assertCount(1, $result); - $this->assertEquals(10, $result->first()->getId()); + $this->service->generate($event, $recurrenceRule); } - public function test_stale_occurrence_with_attendees_but_no_order_items_is_marked_overridden_and_not_deleted(): void + public function test_stale_occurrence_with_no_orders_and_not_overridden_is_deleted(): void { $event = $this->createMockEvent(); $recurrenceRule = ['frequency' => 'daily']; @@ -448,46 +378,73 @@ public function test_stale_occurrence_with_attendees_but_no_order_items_is_marke ], ])); - $staleWithAttendees = $this->createOccurrenceDomainObject( + $staleOccurrence = $this->createOccurrenceDomainObject( id: 5, startDate: '2025-03-01 10:00:00', endDate: '2025-03-01 11:00:00', - isOverridden: false, ); $this->occurrenceRepository ->shouldReceive('findWhere') ->with([EventOccurrenceDomainObjectAbstract::EVENT_ID => 1]) ->once() - ->andReturn(collect([$staleWithAttendees])); + ->andReturn(collect([$staleOccurrence])); + + $this->mockDbBatchQuery([]); + + $this->occurrenceRepository + ->shouldReceive('insert') + ->once() + ->andReturn(true); + + $this->occurrenceRepository + ->shouldReceive('deleteWhere') + ->with([[EventOccurrenceDomainObjectAbstract::ID, 'in', [5]]]) + ->once(); + + $this->service->generate($event, $recurrenceRule); + } + + public function test_stale_occurrences_in_use_are_marked_overridden_in_one_update(): void + { + $event = $this->createMockEvent(); + $recurrenceRule = ['frequency' => 'daily']; - $this->mockDbBatchQuery(occurrenceIdsWithOrders: [], occurrenceIdsWithAttendees: [5]); + $this->ruleParser + ->shouldReceive('parse') + ->with($recurrenceRule, 'UTC') + ->once() + ->andReturn(collect()); - $newOccurrence = $this->createOccurrenceDomainObject( - id: 10, + $staleWithOrders = $this->createOccurrenceDomainObject( + id: 5, + startDate: '2025-03-01 10:00:00', + ); + $staleWithAttendees = $this->createOccurrenceDomainObject( + id: 6, startDate: '2025-03-02 10:00:00', - endDate: '2025-03-02 11:00:00', ); $this->occurrenceRepository - ->shouldReceive('create') + ->shouldReceive('findWhere') + ->with([EventOccurrenceDomainObjectAbstract::EVENT_ID => 1]) ->once() - ->andReturn($newOccurrence); + ->andReturn(collect([$staleWithOrders, $staleWithAttendees])); - $this->occurrenceRepository->shouldNotReceive('deleteWhere'); + $this->mockDbBatchQuery(occurrenceIdsWithOrders: [5], occurrenceIdsWithAttendees: [6]); $this->occurrenceRepository ->shouldReceive('updateWhere') ->once() ->with( [EventOccurrenceDomainObjectAbstract::IS_OVERRIDDEN => true], - [EventOccurrenceDomainObjectAbstract::ID => 5], + [[EventOccurrenceDomainObjectAbstract::ID, 'in', [5, 6]]], ); - $result = $this->service->generate($event, $recurrenceRule); + $this->occurrenceRepository->shouldNotReceive('deleteWhere'); + $this->occurrenceRepository->shouldNotReceive('insert'); - $this->assertCount(1, $result); - $this->assertEquals(10, $result->first()->getId()); + $this->service->generate($event, $recurrenceRule); } public function test_stale_overridden_occurrence_is_not_deleted(): void @@ -499,45 +456,55 @@ public function test_stale_overridden_occurrence_is_not_deleted(): void ->shouldReceive('parse') ->with($recurrenceRule, 'UTC') ->once() - ->andReturn(collect([ - [ - 'start' => CarbonImmutable::parse('2025-03-02 10:00:00'), - 'end' => CarbonImmutable::parse('2025-03-02 11:00:00'), - 'capacity' => 100, - ], - ])); + ->andReturn(collect()); $staleOverridden = $this->createOccurrenceDomainObject( id: 5, startDate: '2025-03-01 10:00:00', - endDate: '2025-03-01 11:00:00', isOverridden: true, ); $this->occurrenceRepository ->shouldReceive('findWhere') - ->with([EventOccurrenceDomainObjectAbstract::EVENT_ID => 1]) ->once() ->andReturn(collect([$staleOverridden])); $this->mockDbBatchQuery([]); - $newOccurrence = $this->createOccurrenceDomainObject( - id: 10, - startDate: '2025-03-02 10:00:00', - endDate: '2025-03-02 11:00:00', + $this->occurrenceRepository->shouldNotReceive('deleteWhere'); + $this->occurrenceRepository->shouldNotReceive('updateWhere'); + + $this->service->generate($event, $recurrenceRule); + } + + public function test_stale_cancelled_occurrence_is_kept(): void + { + $event = $this->createMockEvent(); + $recurrenceRule = ['frequency' => 'daily']; + + $this->ruleParser + ->shouldReceive('parse') + ->with($recurrenceRule, 'UTC') + ->once() + ->andReturn(collect()); + + $staleCancelled = $this->createOccurrenceDomainObject( + id: 5, + startDate: '2025-03-01 10:00:00', + status: EventOccurrenceStatus::CANCELLED->name, ); $this->occurrenceRepository - ->shouldReceive('create') + ->shouldReceive('findWhere') ->once() - ->andReturn($newOccurrence); + ->andReturn(collect([$staleCancelled])); - $this->occurrenceRepository->shouldNotReceive('deleteWhere'); + $this->mockDbBatchQuery([]); - $result = $this->service->generate($event, $recurrenceRule); + $this->occurrenceRepository->shouldNotReceive('deleteWhere'); + $this->occurrenceRepository->shouldNotReceive('updateWhere'); - $this->assertCount(1, $result); + $this->service->generate($event, $recurrenceRule); } public function test_mixed_scenario_with_new_updated_skipped_and_stale_occurrences(): void @@ -575,16 +542,16 @@ public function test_mixed_scenario_with_new_updated_skipped_and_stale_occurrenc ->andReturn($candidates); $existingUpdatable = $this->createOccurrenceDomainObject( - id: 1, startDate: '2025-03-01 10:00:00', endDate: '2025-03-01 10:30:00', isOverridden: false, + id: 1, startDate: '2025-03-01 10:00:00', endDate: '2025-03-01 10:30:00', ); $existingWithOrders = $this->createOccurrenceDomainObject( - id: 2, startDate: '2025-03-02 10:00:00', endDate: '2025-03-02 10:30:00', isOverridden: false, + id: 2, startDate: '2025-03-02 10:00:00', endDate: '2025-03-02 10:30:00', ); $existingOverridden = $this->createOccurrenceDomainObject( id: 3, startDate: '2025-03-03 10:00:00', endDate: '2025-03-03 10:30:00', isOverridden: true, ); $existingStale = $this->createOccurrenceDomainObject( - id: 4, startDate: '2025-03-04 10:00:00', endDate: '2025-03-04 10:30:00', isOverridden: false, + id: 4, startDate: '2025-03-04 10:00:00', endDate: '2025-03-04 10:30:00', ); $this->occurrenceRepository @@ -599,48 +566,30 @@ public function test_mixed_scenario_with_new_updated_skipped_and_stale_occurrenc ->shouldReceive('updateWhere') ->with( Mockery::on(function ($attributes) { - return $attributes[EventOccurrenceDomainObjectAbstract::START_DATE] === '2025-03-01 10:00:00' - && $attributes[EventOccurrenceDomainObjectAbstract::END_DATE] === '2025-03-01 11:00:00' + return $attributes[EventOccurrenceDomainObjectAbstract::END_DATE] === '2025-03-01 11:00:00' && $attributes[EventOccurrenceDomainObjectAbstract::CAPACITY] === 100; }), [EventOccurrenceDomainObjectAbstract::ID => 1] ) ->once(); - $updatedOcc1 = $this->createOccurrenceDomainObject( - id: 1, startDate: '2025-03-01 10:00:00', endDate: '2025-03-01 11:00:00', - ); - $this->occurrenceRepository - ->shouldReceive('findById') - ->with(1) - ->once() - ->andReturn($updatedOcc1); - - $newOcc = $this->createOccurrenceDomainObject( - id: 20, startDate: '2025-03-05 10:00:00', endDate: '2025-03-05 11:00:00', - ); - - $this->occurrenceRepository - ->shouldReceive('create') + ->shouldReceive('insert') + ->with(Mockery::on(function ($rows) { + return count($rows) === 1 + && $rows[0][EventOccurrenceDomainObjectAbstract::START_DATE] === '2025-03-05 10:00:00'; + })) ->once() - ->andReturn($newOcc); + ->andReturn(true); $this->occurrenceRepository ->shouldReceive('deleteWhere') ->with([[EventOccurrenceDomainObjectAbstract::ID, 'in', [4]]]) ->once(); - $result = $this->service->generate($event, $recurrenceRule); - - $this->assertCount(4, $result); + $this->occurrenceRepository->shouldNotReceive('findById'); - $ids = $result->map(fn ($occ) => $occ->getId())->toArray(); - $this->assertContains(1, $ids); - $this->assertContains(2, $ids); - $this->assertContains(3, $ids); - $this->assertContains(20, $ids); - $this->assertNotContains(4, $ids); + $this->service->generate($event, $recurrenceRule); } public function test_event_timezone_is_passed_to_parser(): void @@ -659,9 +608,7 @@ public function test_event_timezone_is_passed_to_parser(): void ->once() ->andReturn(collect()); - $result = $this->service->generate($event, $recurrenceRule); - - $this->assertCount(0, $result); + $this->service->generate($event, $recurrenceRule); } public function test_null_timezone_defaults_to_utc(): void @@ -680,9 +627,7 @@ public function test_null_timezone_defaults_to_utc(): void ->once() ->andReturn(collect()); - $result = $this->service->generate($event, $recurrenceRule); - - $this->assertCount(0, $result); + $this->service->generate($event, $recurrenceRule); } public function test_new_occurrence_with_null_end_date(): void @@ -690,14 +635,12 @@ public function test_new_occurrence_with_null_end_date(): void $event = $this->createMockEvent(); $recurrenceRule = ['frequency' => 'daily']; - $candidateStart = CarbonImmutable::parse('2025-03-01 10:00:00'); - $this->ruleParser ->shouldReceive('parse') ->with($recurrenceRule, 'UTC') ->once() ->andReturn(collect([ - ['start' => $candidateStart, 'end' => null, 'capacity' => null], + ['start' => CarbonImmutable::parse('2025-03-01 10:00:00'), 'end' => null, 'capacity' => null], ])); $this->occurrenceRepository @@ -705,59 +648,16 @@ public function test_new_occurrence_with_null_end_date(): void ->once() ->andReturn(collect()); - $createdOccurrence = $this->createOccurrenceDomainObject( - id: 10, - startDate: '2025-03-01 10:00:00', - endDate: null, - ); - $this->occurrenceRepository - ->shouldReceive('create') - ->with(Mockery::on(function ($arg) { - return $arg[EventOccurrenceDomainObjectAbstract::END_DATE] === null - && $arg[EventOccurrenceDomainObjectAbstract::CAPACITY] === null; + ->shouldReceive('insert') + ->with(Mockery::on(function ($rows) { + return $rows[0][EventOccurrenceDomainObjectAbstract::END_DATE] === null + && $rows[0][EventOccurrenceDomainObjectAbstract::CAPACITY] === null; })) ->once() - ->andReturn($createdOccurrence); - - $result = $this->service->generate($event, $recurrenceRule); + ->andReturn(true); - $this->assertCount(1, $result); - $this->assertNull($result->first()->getEndDate()); - } - - public function test_empty_candidates_with_existing_occurrences_deletes_stale(): void - { - $event = $this->createMockEvent(); - $recurrenceRule = ['frequency' => 'daily']; - - $this->ruleParser - ->shouldReceive('parse') - ->with($recurrenceRule, 'UTC') - ->once() - ->andReturn(collect()); - - $staleOccurrence = $this->createOccurrenceDomainObject( - id: 5, - startDate: '2025-03-01 10:00:00', - isOverridden: false, - ); - - $this->occurrenceRepository - ->shouldReceive('findWhere') - ->once() - ->andReturn(collect([$staleOccurrence])); - - $this->mockDbBatchQuery([]); - - $this->occurrenceRepository - ->shouldReceive('deleteWhere') - ->with([[EventOccurrenceDomainObjectAbstract::ID, 'in', [5]]]) - ->once(); - - $result = $this->service->generate($event, $recurrenceRule); - - $this->assertCount(0, $result); + $this->service->generate($event, $recurrenceRule); } public function test_stale_occurrence_waitlist_entries_are_cancelled_before_deletion(): void @@ -774,7 +674,6 @@ public function test_stale_occurrence_waitlist_entries_are_cancelled_before_dele $stale = $this->createOccurrenceDomainObject( id: 5, startDate: '2025-03-01 10:00:00', - isOverridden: false, ); $this->occurrenceRepository @@ -811,79 +710,7 @@ public function test_stale_occurrence_waitlist_entries_are_cancelled_before_dele ->with([[EventOccurrenceDomainObjectAbstract::ID, 'in', [5]]]) ->once(); - $result = $this->service->generate($event, $recurrenceRule); - - $this->assertCount(0, $result); - } - - public function test_empty_candidates_with_overridden_existing_occurrence_keeps_it(): void - { - $event = $this->createMockEvent(); - $recurrenceRule = ['frequency' => 'daily']; - - $this->ruleParser - ->shouldReceive('parse') - ->with($recurrenceRule, 'UTC') - ->once() - ->andReturn(collect()); - - $overriddenOccurrence = $this->createOccurrenceDomainObject( - id: 5, - startDate: '2025-03-01 10:00:00', - isOverridden: true, - ); - - $this->occurrenceRepository - ->shouldReceive('findWhere') - ->once() - ->andReturn(collect([$overriddenOccurrence])); - - $this->mockDbBatchQuery([]); - - $this->occurrenceRepository->shouldNotReceive('deleteWhere'); - - $result = $this->service->generate($event, $recurrenceRule); - - $this->assertCount(0, $result); - } - - public function test_existing_occurrence_with_orders_and_overridden_is_skipped(): void - { - $event = $this->createMockEvent(); - $recurrenceRule = ['frequency' => 'daily']; - - $candidateStart = CarbonImmutable::parse('2025-03-01 10:00:00'); - $candidateEnd = CarbonImmutable::parse('2025-03-01 12:00:00'); - - $this->ruleParser - ->shouldReceive('parse') - ->with($recurrenceRule, 'UTC') - ->once() - ->andReturn(collect([ - ['start' => $candidateStart, 'end' => $candidateEnd, 'capacity' => 200], - ])); - - $existingOccurrence = $this->createOccurrenceDomainObject( - id: 5, - startDate: '2025-03-01 10:00:00', - endDate: '2025-03-01 11:00:00', - isOverridden: true, - ); - - $this->occurrenceRepository - ->shouldReceive('findWhere') - ->once() - ->andReturn(collect([$existingOccurrence])); - - $this->mockDbBatchQuery([5]); - - $this->occurrenceRepository->shouldNotReceive('updateWhere'); - $this->occurrenceRepository->shouldNotReceive('findById'); - - $result = $this->service->generate($event, $recurrenceRule); - - $this->assertCount(1, $result); - $this->assertSame($existingOccurrence, $result->first()); + $this->service->generate($event, $recurrenceRule); } private function createMockEvent(int $id = 1, ?string $timezone = 'UTC'): EventDomainObject @@ -901,6 +728,8 @@ private function createOccurrenceDomainObject( ?string $endDate = null, bool $isOverridden = false, ?int $capacity = null, + ?string $label = null, + ?string $status = null, int $eventId = 1, ): EventOccurrenceDomainObject { $occ = new EventOccurrenceDomainObject; @@ -911,6 +740,8 @@ private function createOccurrenceDomainObject( $occ->setEndDate($endDate); $occ->setIsOverridden($isOverridden); $occ->setCapacity($capacity); + $occ->setLabel($label); + $occ->setStatus($status ?? EventOccurrenceStatus::ACTIVE->name); return $occ; } diff --git a/backend/tests/Unit/Services/Infrastructure/Jobs/JobPollingServiceTest.php b/backend/tests/Unit/Services/Infrastructure/Jobs/JobPollingServiceTest.php new file mode 100644 index 0000000000..7449c8f4dd --- /dev/null +++ b/backend/tests/Unit/Services/Infrastructure/Jobs/JobPollingServiceTest.php @@ -0,0 +1,81 @@ +with('missing-uuid')->andReturn(null); + + $result = (new JobPollingService)->checkJobStatus('missing-uuid'); + + $this->assertSame(JobStatusEnum::NOT_FOUND, $result->status); + } + + public function test_check_job_status_returns_failed_when_batch_cancelled(): void + { + $batch = Mockery::mock(Batch::class); + $batch->shouldReceive('cancelled')->andReturn(true); + + Bus::shouldReceive('findBatch')->with('uuid-1')->andReturn($batch); + + $result = (new JobPollingService)->checkJobStatus('uuid-1'); + + $this->assertSame(JobStatusEnum::FAILED, $result->status); + } + + public function test_check_job_status_returns_failed_when_batch_has_failed_jobs(): void + { + $batch = Mockery::mock(Batch::class); + $batch->shouldReceive('cancelled')->andReturn(false); + $batch->failedJobs = 1; + + Bus::shouldReceive('findBatch')->with('uuid-2')->andReturn($batch); + + $result = (new JobPollingService)->checkJobStatus('uuid-2'); + + $this->assertSame(JobStatusEnum::FAILED, $result->status); + } + + public function test_check_job_status_returns_finished_when_batch_finished(): void + { + $batch = Mockery::mock(Batch::class); + $batch->shouldReceive('cancelled')->andReturn(false); + $batch->failedJobs = 0; + $batch->shouldReceive('finished')->andReturn(true); + + Bus::shouldReceive('findBatch')->with('uuid-3')->andReturn($batch); + + $result = (new JobPollingService)->checkJobStatus('uuid-3'); + + $this->assertSame(JobStatusEnum::FINISHED, $result->status); + } + + public function test_check_job_status_returns_in_progress_when_batch_running(): void + { + $batch = Mockery::mock(Batch::class); + $batch->shouldReceive('cancelled')->andReturn(false); + $batch->failedJobs = 0; + $batch->shouldReceive('finished')->andReturn(false); + + Bus::shouldReceive('findBatch')->with('uuid-4')->andReturn($batch); + + $result = (new JobPollingService)->checkJobStatus('uuid-4'); + + $this->assertSame(JobStatusEnum::IN_PROGRESS, $result->status); + } + + protected function tearDown(): void + { + Mockery::close(); + parent::tearDown(); + } +} diff --git a/e2e/api/api-client.ts b/e2e/api/api-client.ts index 7af2598e7f..b84d5d690d 100644 --- a/e2e/api/api-client.ts +++ b/e2e/api/api-client.ts @@ -247,13 +247,35 @@ export class ApiClient { return check(this.request.post(`events/${eventId}/orders/${orderId}/cancel`, { headers: jsonHeaders })); } - generateOccurrences(eventId: number, recurrenceRule: RecurrenceRule): Promise { - return unwrap( - this.request.post(`events/${eventId}/occurrences/generate`, { - headers: jsonHeaders, - data: { recurrence_rule: recurrenceRule }, - }), - ); + async generateOccurrences(eventId: number, recurrenceRule: RecurrenceRule): Promise { + const response = await this.request.post(`events/${eventId}/occurrences/generate`, { + headers: jsonHeaders, + data: { recurrence_rule: recurrenceRule }, + }); + if (!response.ok()) { + throw new Error(`API ${response.url()} → ${response.status()}: ${await response.text()}`); + } + const { status, job_uuid: jobUuid } = (await response.json()) as { status: string; job_uuid: string }; + let currentStatus = status; + const deadline = Date.now() + 60_000; + while (currentStatus === 'IN_PROGRESS') { + if (Date.now() > deadline) { + throw new Error(`Occurrence generation for event ${eventId} timed out`); + } + await new Promise((resolve) => setTimeout(resolve, 500)); + const pollResponse = await this.request.get( + `events/${eventId}/occurrences/generate/status?job_uuid=${jobUuid}`, + { headers: jsonHeaders }, + ); + if (!pollResponse.ok()) { + throw new Error(`API ${pollResponse.url()} → ${pollResponse.status()}: ${await pollResponse.text()}`); + } + const poll = (await pollResponse.json()) as { status: string }; + currentStatus = poll.status; + } + if (currentStatus !== 'FINISHED') { + throw new Error(`Occurrence generation for event ${eventId} ended with status ${currentStatus}`); + } } listOccurrences(eventId: number): Promise { diff --git a/e2e/pages/occurrence.page.ts b/e2e/pages/occurrence.page.ts index 35c868323d..8f01556183 100644 --- a/e2e/pages/occurrence.page.ts +++ b/e2e/pages/occurrence.page.ts @@ -27,6 +27,8 @@ export class OccurrencePage { async submitSchedule(): Promise { await this.dialog().getByRole('button', { name: 'Create Schedule' }).click(); + await this.dialog().waitFor({ state: 'hidden' }); + await this.page.getByTestId('occurrence-generation-progress').waitFor({ state: 'detached', timeout: 60_000 }); } occurrenceRows(): Locator { diff --git a/frontend/src/api/event-occurrence.client.ts b/frontend/src/api/event-occurrence.client.ts index 650349fdf5..badcd15385 100644 --- a/frontend/src/api/event-occurrence.client.ts +++ b/frontend/src/api/event-occurrence.client.ts @@ -7,6 +7,7 @@ import { GenericDataResponse, GenericPaginatedResponse, IdParam, + OccurrenceGenerationStatus, ProductOccurrenceVisibility, ProductPriceOccurrenceOverride, QueryFilters, @@ -72,13 +73,20 @@ export const eventOccurrenceClient = { }, generate: async (eventId: IdParam, data: GenerateOccurrencesRequest) => { - const response = await api.post>( + const response = await api.post( `events/${eventId}/occurrences/generate`, data ); return response.data; }, + getGenerationStatus: async (eventId: IdParam, jobUuid: string) => { + const response = await api.get( + `events/${eventId}/occurrences/generate/status?job_uuid=${jobUuid}` + ); + return response.data; + }, + bulkUpdate: async (eventId: IdParam, data: BulkUpdateOccurrencesRequest) => { const response = await api.post<{ updated_count: number; updated_ids: number[] }>( `events/${eventId}/occurrences/bulk-update`, diff --git a/frontend/src/components/routes/event/OccurrencesTab/OccurrencesTab.module.scss b/frontend/src/components/routes/event/OccurrencesTab/OccurrencesTab.module.scss index 1792ff3588..bc711925d6 100644 --- a/frontend/src/components/routes/event/OccurrencesTab/OccurrencesTab.module.scss +++ b/frontend/src/components/routes/event/OccurrencesTab/OccurrencesTab.module.scss @@ -208,6 +208,17 @@ min-height: 720px; } +.generationBanner { + display: flex; + flex-direction: column; + gap: 8px; + padding: 12px 16px; + margin-bottom: 12px; + border: 1px solid var(--mantine-color-blue-2); + border-radius: 8px; + background: var(--mantine-color-blue-0); +} + .countText { font-size: 13px; color: var(--mantine-color-dimmed); diff --git a/frontend/src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx b/frontend/src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx index e1047db56d..6288ffafc3 100644 --- a/frontend/src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx +++ b/frontend/src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx @@ -34,7 +34,9 @@ import {Callout} from "../../../../common/Callout"; import {GenericModalProps, RecurrenceRule, RecurrenceTimeSlot} from "../../../../../types.ts"; import {useGenerateOccurrences} from "../../../../../mutations/useGenerateOccurrences.ts"; -import {useGetEvent} from "../../../../../queries/useGetEvent.ts"; +import {useGetEvent, GET_EVENT_QUERY_KEY} from "../../../../../queries/useGetEvent.ts"; +import {GET_EVENT_OCCURRENCES_QUERY_KEY} from "../../../../../queries/useGetEventOccurrences.ts"; +import {useQueryClient} from "@tanstack/react-query"; import {showSuccess, showError} from "../../../../../utilites/notifications.tsx"; import {useFormErrorResponseHandler} from "../../../../../hooks/useFormErrorResponseHandler.tsx"; import {useEffect, useMemo} from "react"; @@ -313,10 +315,15 @@ const formatLocalDate = (date: Date): string => { const todayLocalDate = (): string => formatLocalDate(new Date()); -export const RecurrenceScheduleModal = ({onClose}: GenericModalProps) => { +interface RecurrenceScheduleModalProps extends GenericModalProps { + onGenerationStarted: (jobUuid: string, totalCount: number) => void; +} + +export const RecurrenceScheduleModal = ({onClose, onGenerationStarted}: RecurrenceScheduleModalProps) => { const {eventId} = useParams(); const {data: event} = useGetEvent(eventId); const generateMutation = useGenerateOccurrences(); + const queryClient = useQueryClient(); const errorHandler = useFormErrorResponseHandler(); const hasExistingRule = !!event?.recurrence_rule; @@ -516,9 +523,18 @@ export const RecurrenceScheduleModal = ({onClose}: GenericModalProps) => { } generateMutation.mutate({eventId, data: {recurrence_rule: rule}}, { - onSuccess: () => { - showSuccess(t`Schedule created successfully`); - onClose(); + onSuccess: (response) => { + if (response.status === 'IN_PROGRESS' && response.job_uuid) { + onGenerationStarted(response.job_uuid, totalOccurrences); + onClose(); + } else if (response.status === 'FINISHED') { + showSuccess(t`Schedule created successfully`); + queryClient.invalidateQueries({queryKey: [GET_EVENT_OCCURRENCES_QUERY_KEY]}); + queryClient.invalidateQueries({queryKey: [GET_EVENT_QUERY_KEY, eventId]}); + onClose(); + } else { + showError(t`Failed to create schedule. Please try again.`); + } }, onError: (error: any) => { const errors = error?.response?.data?.errors; diff --git a/frontend/src/components/routes/event/OccurrencesTab/index.tsx b/frontend/src/components/routes/event/OccurrencesTab/index.tsx index 01b5e5294d..309b3e2893 100644 --- a/frontend/src/components/routes/event/OccurrencesTab/index.tsx +++ b/frontend/src/components/routes/event/OccurrencesTab/index.tsx @@ -41,6 +41,7 @@ import {GroupedOccurrenceTable, GroupedTableColumn} from "./GroupedOccurrenceTab import {OccurrenceMenuItems, OccurrenceMenuActions, statusLabel, StatusIcon} from "./OccurrenceMenu"; import {openCancelOccurrenceDialog} from "./cancelOccurrenceDialog"; import {useOccurrenceCheckIn} from "../../../../hooks/useOccurrenceCheckIn.tsx"; +import {useOccurrenceGenerationPolling} from "../../../../hooks/useOccurrenceGenerationPolling.ts"; import {ManageOccurrenceModal} from "../../../modals/ManageOccurrenceModal"; import {SendMessageModal} from "../../../modals/SendMessageModal"; import {ShareModal} from "../../../modals/ShareModal"; @@ -129,6 +130,7 @@ const OccurrencesTab = () => { const [shareOccurrence, setShareOccurrence] = useState(); const {launchCheckIn, checkInModals} = useOccurrenceCheckIn(eventId); + const generationPolling = useOccurrenceGenerationPolling(eventId); const cancelMutation = useCancelOccurrence(); const deleteMutation = useDeleteEventOccurrence(); const bulkUpdateMutation = useBulkUpdateOccurrences(); @@ -528,6 +530,7 @@ const OccurrencesTab = () => { } onClick={openGenerate} + disabled={generationPolling.isGenerating} > {t`Set Up Schedule`} @@ -541,6 +544,13 @@ const OccurrencesTab = () => { + {generationPolling.isGenerating && ( +
+ {t`Creating ${generationPolling.totalCount} dates. This may take a moment.`} + +
+ )} + {occurrences && occurrencesQuery.isFetching && !occurrencesQuery.isLoading && !occurrencesQuery.isPlaceholderData && ( )} @@ -653,7 +663,7 @@ const OccurrencesTab = () => { )} {generateOpen && ( - + )} {slideoutOccurrenceId && ( diff --git a/frontend/src/hooks/useOccurrenceGenerationPolling.ts b/frontend/src/hooks/useOccurrenceGenerationPolling.ts new file mode 100644 index 0000000000..853294156d --- /dev/null +++ b/frontend/src/hooks/useOccurrenceGenerationPolling.ts @@ -0,0 +1,56 @@ +import {useQuery, useQueryClient} from "@tanstack/react-query"; +import {useEffect, useRef, useState} from "react"; +import {t} from "@lingui/macro"; +import {eventOccurrenceClient} from "../api/event-occurrence.client.ts"; +import {GET_EVENT_OCCURRENCES_QUERY_KEY} from "../queries/useGetEventOccurrences.ts"; +import {GET_EVENT_QUERY_KEY} from "../queries/useGetEvent.ts"; +import {showError, showSuccess} from "../utilites/notifications.tsx"; +import {IdParam} from "../types.ts"; + +export const useOccurrenceGenerationPolling = (eventId: IdParam) => { + const queryClient = useQueryClient(); + const [jobUuid, setJobUuid] = useState(null); + const [totalCount, setTotalCount] = useState(0); + const handledRef = useRef(null); + + const query = useQuery({ + queryKey: ["occurrenceGenerationStatus", eventId, jobUuid], + queryFn: () => eventOccurrenceClient.getGenerationStatus(eventId, jobUuid as string), + enabled: !!jobUuid, + refetchInterval: (query) => { + const status = query.state.data?.status; + return status && status !== "IN_PROGRESS" ? false : 2000; + }, + }); + + const status = query.data?.status; + + useEffect(() => { + if (!jobUuid || handledRef.current === jobUuid) { + return; + } + + if (status === "FINISHED") { + handledRef.current = jobUuid; + setJobUuid(null); + showSuccess(t`Schedule created successfully`); + queryClient.invalidateQueries({queryKey: [GET_EVENT_OCCURRENCES_QUERY_KEY]}); + queryClient.invalidateQueries({queryKey: [GET_EVENT_QUERY_KEY, eventId?.toString()]}); + } else if (status === "FAILED" || status === "NOT_FOUND") { + handledRef.current = jobUuid; + setJobUuid(null); + showError(t`Failed to create schedule. Please try again.`); + } + }, [status, jobUuid]); + + const start = (newJobUuid: string, count: number) => { + setTotalCount(count); + setJobUuid(newJobUuid); + }; + + return { + start, + isGenerating: !!jobUuid, + totalCount, + }; +}; diff --git a/frontend/src/locales/de.js b/frontend/src/locales/de.js index bc8668d301..b4c9ea160f 100644 --- a/frontend/src/locales/de.js +++ b/frontend/src/locales/de.js @@ -1 +1 @@ -/*eslint-disable*/module.exports={messages:JSON.parse("{\"f8qS7T\":\"'Es gibt noch nichts anzuzeigen'\",\"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\":\"123 Main Street\",\"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\":\"Are you sure you want to make this event public? This will make the event visible to the public\",\"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\":\"Attendee Notes\",\"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\":\"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\":\"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\":\"Passen Sie Ihre Veranstaltungsseite an\",\"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\":\"Dismiss\",\"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\":\"Event 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\":\"No attendees have been added to this order.\",\"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\":\"No product associated with this attendee.\",\"Ya1JhR\":\"Keine Produkte in dieser Kategorie verfügbar.\",\"FTfObB\":\"Noch keine Produkte\",\"+Y976X\":\"Keine Promo-Codes anzuzeigen\",\"MAavyl\":\"No questions answered by this attendee.\",\"SnlQeq\":\"No questions have been asked for this order.\",\"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 event\",\"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\":\"Order #\",\"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\":\"Order Notes\",\"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\":\"Bereitgestellt von\",\"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 für diese 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\":\"View\",\"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\":\"(none)\",\"xYxQCZ\":[[\"0\"],\" \",[\"1\"]],\"lAOy2r\":[[\"0\"],\" \",[\"1\"],\" ist bereits eingecheckt\"],\"3beCx0\":[[\"0\"],\" <0>checked in\"],\"S4PqS9\":[[\"0\"],\" aktive Webhooks\"],\"6MIiOI\":[[\"0\"],\" übrig\"],\"COnw8D\":[[\"0\"],\" Logo\"],\"xG9N0H\":[[\"0\"],\" of \",[\"1\"],\" seats are taken.\"],\"B7pZfX\":[[\"0\"],\" Veranstalter\"],\"/HkCs4\":[[\"0\"],\" Tickets\"],\"30bTiU\":[[\"activeCount\"],\" enabled\"],\"jTs4am\":[[\"appName\"],\" logo\"],\"gbJOk9\":[[\"attendeeCount\"],\" attendees are registered for this session.\"],\"TjbIUI\":[[\"availableCount\"],\" von \",[\"totalCount\"],\" verfügbar\"],\"PSChHo\":[[\"capacity\"],\" Plätze frei\"],\"lzQ8/M\":[[\"checkedIn\"],\" / \",[\"total\"],\" checked in\"],\"RZ0JX3\":[[\"chipTime\"],\", ausverkauft\"],\"M4KnFs\":[[\"chipTime\"],\", Ausverkauft, Warteliste verfügbar\"],\"SeyN12\":[[\"completedCount\"],\" of \",[\"totalCount\"],\" steps complete\"],\"f2rhaD\":[[\"diffHr\"],\"h ago\"],\"NRSLBe\":[[\"diffMin\"],\"m ago\"],\"iYfwJE\":[[\"diffSec\"],\"s ago\"],\"OJnhhX\":[[\"eventCount\"],\" Ereignisse\"],\"mhZbzw\":[[\"loadedAffectedAttendees\"],\" attendees are registered across the affected sessions.\"],\"RBuxIl\":[[\"productCount\"],\" ticket types configured\"],\"VFLd0I\":[[\"slotCount\"],\" times available\"],\"3IEF7U\":[[\"totalCount\"],\" Ticketarten\"],\"0cLzoF\":[[\"totalOccurrences\"],\" dates\"],\"AEGc4t\":[[\"totalOccurrences\"],\" sessions across \",[\"0\"],\" dates (\",[\"1\",\"plural\",{\"one\":[\"#\",\" session\"],\"other\":[\"#\",\" sessions\"]}],\" per day)\"],\"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.\",\"Il5Uid\":\"<0>Dies ist die insgesamt verfügbare Menge über alle Termine Ihres Zeitplans zusammen – kein Limit pro Termin. Um die Teilnehmerzahl pro Termin zu begrenzen, legen Sie auf der <1>Terminplan-Seite eine Kapazität fest.\",\"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 attendee is registered across the affected sessions.\",\"qOyE2U\":\"1 attendee is registered for this session.\",\"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\",\"y2Jh0m\":\"1 time available\",\"cGtUz6\":\"1 Woche vor der Veranstaltung\",\"HR/cvw\":\"Musterstraße 123\",\"dgKxZ5\":\"135+ currencies & 40+ payment methods\",\"kMU5aM\":\"Eine Stornierungsbenachrichtigung wurde gesendet an\",\"o++0qa\":\"a change in duration\",\"WuWSX5\":\"A few quick steps and you're ready to start selling.\",\"RQ5kDd\":\"Eine Nachricht, die angezeigt wird, wenn diese Kategorie keine Produkte enthält.\",\"V53XzQ\":\"Ein neuer Bestätigungscode wurde an Ihre E-Mail gesendet\",\"sr2Je0\":\"a shift in start/end times\",\"/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\":[\"Account · \",[\"0\"],\" · \",[\"1\"]],\"vOuxvL\":\"Kontoinformationen\",\"EHNORh\":\"Konto nicht gefunden\",\"bPwFdf\":\"Konten\",\"AhwTa1\":\"Handlung erforderlich: Umsatzsteuerinformationen benötigt\",\"APyAR/\":\"Aktive 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\":\"Fügen Sie benutzerdefinierte Fragen hinzu, um während des Bezahlvorgangs zusätzliche Informationen zu erfassen\",\"Z/dcxc\":\"Add Date\",\"QeupRg\":\"Termine hinzufügen\",\"Q219NT\":\"Add Dates\",\"yjB5VC\":\"Add dates and times for your recurring event\",\"Z8idyM\":\"Add details\",\"wpirGs\":\"Add event details\",\"VX6WUv\":\"Standort hinzufügen\",\"GCQlV2\":\"Add multiple times if you run several sessions per day.\",\"7JF9w9\":\"Frage hinzufügen\",\"NLbIb6\":\"Add this attendee anyway (override capacity)\",\"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 Organisator-Homepage hinzu. Ein Cookie-Zustimmungsbanner wird Besuchern 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\":\"Affiliate program\",\"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.\",\"3e31kI\":\"After your event is created, you can choose how often it repeats from the dashboard.\",\"z7GAMJ\":\"all\",\"N40H+G\":\"All\",\"7rLTkE\":\"Alle archivierten Veranstaltungen\",\"gKq1fa\":\"Alle Teilnehmer\",\"63gRoO\":\"All attendees of the selected sessions\",\"uWxIoH\":\"All attendees of this occurrence\",\"pMLul+\":\"Alle Währungen\",\"sgUdRZ\":\"All dates\",\"e4q4uO\":\"All Dates\",\"ZS/D7f\":\"Alle beendeten Veranstaltungen\",\"QsYjci\":\"Alle Veranstaltungen\",\"31KB8w\":\"Alle fehlgeschlagenen Jobs gelöscht\",\"D2g7C7\":\"Alle Jobs zur Wiederholung eingereiht\",\"B4RFBk\":\"All matching dates\",\"F1/VgK\":\"All occurrences\",\"OpWjMq\":\"All Occurrences\",\"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.\",\"VZdky1\":\"Käufern erlauben, ihre Angaben für alle Teilnehmer zu übernehmen\",\"F3mW5G\":\"Kunden erlauben, sich auf eine Warteliste zu setzen, wenn dieses Produkt ausverkauft ist\",\"4CMO/q\":\"Kunden erlauben, sich auf eine Warteliste zu setzen, wenn dieses Produkt ausverkauft ist. Kunden treten der Warteliste für einen bestimmten Termin bei.\",\"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\":\"Already in\",\"/H326L\":\"Bereits erstattet\",\"USEpOK\":\"Already use Stripe on another organizer? Reuse that connection.\",\"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.\",\"OPFdAM\":\"Eine optionale Beschreibung dieser Kategorie, die auf der Veranstaltungsseite angezeigt wird.\",\"eusccx\":\"Eine optionale Nachricht, die beim hervorgehobenen Produkt angezeigt wird, z.B. \\\"Verkauft sich schnell 🔥\\\" oder \\\"Bester Wert\\\"\",\"5GJuNp\":[\"and \",[\"0\"],\" more...\"],\"QNrkms\":\"Antwort erfolgreich aktualisiert.\",\"+qygei\":\"Answers\",\"GK7Lnt\":\"Answers provided at checkout (e.g. meal choice)\",\"lE8PgT\":\"Any dates you've manually customized will be kept.\",\"jVoYha\":[\"angewendet — \",[\"0\"],\" Rabatt auf Ihre Bestellung\"],\"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\":\"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\":[\"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\":\"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/\":\"Are you sure you want to delete this date? This action cannot be undone.\",\"RiF/yT\":\"Are you sure you want to delete this image?\",\"b3+Qku\":\"Are you sure you want to delete this tax or fee? It will no longer be applied to new orders.\",\"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\":\"Are you sure you want to permanently delete this date? This cannot be undone.\",\"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?\",\"b7tkGp\":\"Are you sure you want to revoke this invitation?\",\"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\":\"Assign plan\",\"xdiER7\":\"Zugewiesene Stufe\",\"F2rX0R\":\"Mindestens ein Ereignistyp muss ausgewählt werden\",\"Z44eZS\":\"At least one product must stay available for this date. To make the date inaccessible, cancel it from the schedule instead.\",\"BCmibk\":\"Versuche\",\"6PecK3\":\"Anwesenheit und Check-in-Raten für alle Veranstaltungen\",\"K2tp3v\":\"attendee\",\"AJ4rvK\":\"Teilnehmer storniert\",\"qvylEK\":\"Teilnehmer erstellt\",\"Aspq3b\":\"Erfassung von Teilnehmerdetails\",\"fpb0rX\":\"Teilnehmerdetails aus Bestellung kopiert\",\"94aQMU\":\"Teilnehmerinformationen\",\"KkrBiR\":\"Erfassung von Teilnehmerinformationen\",\"sjPjOg\":\"Attendee notes\",\"cosfD8\":\"Teilnehmerstatus\",\"D2qlBU\":\"Teilnehmer aktualisiert\",\"22BOve\":\"Teilnehmer erfolgreich aktualisiert\",\"x8Vnvf\":\"Ticket des Teilnehmers nicht in dieser Liste enthalten\",\"/Ywywr\":\"attendees\",\"zLRobu\":\"attendees checked in\",\"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\":\"Automatisch Tickets der nächsten Person anbieten, wenn Kapazität verfügbar wird. Wenn deaktiviert, können Sie die Warteliste manuell von der Wartelisten-Seite aus bearbeiten.\",\"csDS2L\":\"Verfügbar\",\"Xp+ywP\":\"Verfügbar, sobald die Zahlung abgeschlossen ist\",\"dwDH1K\":[\"Available times on \",[\"dayName\"]],\"clF06r\":\"Zur Erstattung verfügbar\",\"NB5+UG\":\"Verfügbare Token\",\"L+wGOG\":\"Awaiting\",\"qcw2OD\":\"Awaiting pay\",\"kNmmvE\":\"Awesome Events GmbH\",\"TeSaQO\":\"Zurück zu Konten\",\"kYqM1A\":\"Zurück zum Event\",\"s5QRF3\":\"Zurück zu Nachrichten\",\"td/bh+\":\"Zurück zu Berichten\",\"nsm7BA\":\"Zurück zur Suche\",\"imjKVx\":\"Bank account connected\",\"D9LTCH\":\"Base Price\",\"hviJef\":\"Based on the global sale period above, not per date\",\"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\":\"Built-in fraud protection\",\"cr7kGH\":\"Bulk Edit\",\"1Fbd6n\":\"Bulk Edit Dates\",\"Eq6Tu9\":\"Bulk update failed.\",\"9N+p+g\":\"Geschäftlich\",\"SWnN1L\":\"Business address\",\"kQekXw\":\"Business name\",\"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\":\"Durch das Hinzufügen von Tracking-Pixeln bestätigen Sie, dass Sie und diese Plattform gemeinsam Verantwortliche für die erhobenen Daten sind. Sie sind dafür verantwortlich, eine rechtmäßige Grundlage für diese Verarbeitung gemäß den geltenden Datenschutzgesetzen (DSGVO, CCPA usw.) sicherzustellen.\",\"DFqasq\":[\"Durch Fortfahren stimmen Sie den <0>\",[\"0\"],\" Nutzungsbedingungen zu\"],\"wVSa+U\":\"By day of month\",\"0MnNgi\":\"By day of week\",\"CetOZE\":\"By ticket type\",\"lFdbRS\":\"Anwendungsgebühren umgehen\",\"AjVXBS\":\"Calendar\",\"2VLZwd\":\"Aktionsschaltfläche\",\"rT2cV+\":\"Camera\",\"7hYa9y\":\"Camera permission was denied. <0>Request permission again, or grant this page camera access in your browser settings.\",\"D02dD9\":\"Kampagne\",\"RRPA79\":\"Can't check in\",\"OcVwAd\":[\"Cancel \",[\"count\"],\" date(s)\"],\"H4nE+E\":\"Alle Produkte stornieren und in den Pool zurückgeben\",\"Py78q9\":\"Cancel Date\",\"tOXAdc\":\"Das Stornieren wird alle mit dieser Bestellung verbundenen Teilnehmer stornieren und die Tickets in den verfügbaren Pool zurückgeben.\",\"FPpqc7\":[\"Cancelling \",[\"0\"],\" date(s). This may take a moment to complete.\"],\"01sEfm\":\"Die Standardkonfiguration des Systems kann nicht gelöscht werden\",\"VsM1HH\":\"Kapazitätszuweisungen\",\"9bIMVF\":\"Capacity management\",\"H7K8og\":\"Capacity must be 0 or greater\",\"nzao08\":\"capacity updates\",\"4cp9NP\":\"Capacity Used\",\"K7tIrx\":\"Kategorie\",\"DRK3Bq\":\"Category deleted successfully\",\"o+XJ9D\":\"Ändern\",\"kJkjoB\":\"Change duration\",\"J0KExZ\":\"Change the attendee limit\",\"ssospy\":\"Change time\",\"CIHJJf\":\"Wartelisten-Einstellungen ändern\",\"B5icLR\":[\"Changed duration for \",[\"count\"],\" date(s)\"],\"Kb+0BT\":\"Charges\",\"2tbLdK\":\"Wohltätigkeit\",\"BPWGKn\":\"Check in\",\"6uFFoY\":\"Check out\",\"FjAlwK\":[\"Check out this event: \",[\"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 for \",[\"0\"],\" was undone\"],\"9s/wrQ\":\"Check-in history\",\"Wwztk4\":\"Check-In List\",\"9gPPUY\":\"Check-In-Liste erstellt!\",\"dwjiJt\":\"Check-in list info\",\"7od0PV\":\"check-in lists\",\"f2vU9t\":\"Check-in-Listen\",\"XprdTn\":\"Check-in navigation\",\"5tV1in\":\"Check-in progress\",\"SHJwyq\":\"Check-in-Rate\",\"qCqdg6\":\"Check-In-Status\",\"cKj6OE\":\"Check-in-Übersicht\",\"7B5M35\":\"Check-Ins\",\"VrmydS\":\"Checked in\",\"DM4gBB\":\"Chinesisch (Traditionell)\",\"p8Jvp4\":\"Choose a configuration\",\"ElShBO\":\"Choose a different action\",\"pHEhf+\":\"Wählen Sie eine Schriftart, die zu Ihrer Marke passt. Schriften werden selbst über Bunny Fonts gehostet.\",\"Zok1Gx\":\"Choose an organizer\",\"pkk46Q\":\"Wählen Sie einen Veranstalter\",\"Ag32+c\":\"Choose another date\",\"Crr3pG\":\"Kalender auswählen\",\"Z38ZJu\":\"Wählen Sie, wie das Veranstaltungsdatum auf dem Ticket angezeigt wird\",\"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\":\"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\":\"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\":\"complete\",\"bUQMpb\":\"Complete Stripe setup\",\"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\":\"Configuration assigned\",\"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\":\"Configure which products are available for this occurrence and optionally adjust pricing.\",\"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\",\"/K4Vqr\":\"Verbinden Sie Stripe, um Zahlungen zu akzeptieren\",\"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\":\"Für Online-Veranstaltungen sind Verbindungsdetails erforderlich\",\"jfC/xh\":\"Kontakt\",\"LOFgda\":[\"Kontakt \",[\"0\"]],\"41BQ3k\":\"Kontakt-E-Mail\",\"m8WD6t\":\"Einrichtung fortsetzen\",\"0GwUT4\":\"Weiter zur Kasse\",\"sBV87H\":\"Weiter zur Veranstaltungserstellung\",\"nKtyYu\":\"Weiter zum nächsten Schritt\",\"F3/nus\":\"Weiter zur Zahlung\",\"s30OcA\":\"Steuern Sie, wie Termine und Uhrzeiten auf der Veranstaltungsseite angezeigt werden\",\"p2FRHj\":\"Steuern Sie, wie Plattformgebühren für diese Veranstaltung gehandhabt werden\",\"NqfabH\":\"Control who gets in for this date\",\"fmYxZx\":\"Control who gets in, and when\",\"1JnTgU\":\"Von oben kopiert\",\"FxVG/l\":\"In die Zwischenablage kopiert\",\"PiH3UR\":\"Kopiert!\",\"4i7smN\":\"Copy account ID\",\"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\":\"Could not prepare the bulk update.\",\"KOavaU\":\"Adressdetails konnten nicht abgerufen werden\",\"/lq4oO\":\"Could not save date\",\"mHu0az\":\"Couldn't send verification email. Please try again.\",\"QOIm+S\":\"Die Zahlen umfassen alle bevorstehenden Termine. Jeder Person wird ein Platz für den Termin angeboten, für den sie sich angemeldet hat.\",\"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\":\"Covers every ticket\",\"zg4oSu\":[[\"0\"],\"-Vorlage erstellen\"],\"RKKhnW\":\"Erstellen Sie ein individuelles Widget, um Tickets auf Ihrer Website zu verkaufen.\",\"6sk7PP\":\"Create a fixed number\",\"jqhTmw\":\"Create a list for this date\",\"PhioFp\":\"Create a new check-in list for an active session, or contact the organizer if you think this is a mistake.\",\"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\":\"Create Date\",\"Nc3l/D\":\"Erstellen Sie Rabatte, Zugangscodes für versteckte Tickets und Sonderangebote.\",\"PybJS2\":\"Create event\",\"eWEV9G\":\"Neues Passwort erstellen\",\"wl2iai\":\"Create Schedule\",\"8AiKIu\":\"Ticket oder Produkt erstellen\",\"/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\":\"Erstellen Sie Ihre erste Veranstaltung, um Tickets zu verkaufen und Teilnehmer zu verwalten.\",\"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\":\"Currently assigned\",\"iTvh6I\":\"Derzeit zum Kauf verfügbar\",\"A42Dqn\":\"Custom branding\",\"Guo0lU\":\"Benutzerdefiniertes Datum und Uhrzeit\",\"WDMdn8\":\"Custom questions\",\"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\",\"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\":\"Daily\",\"/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\":\"Dance\",\"pvnfJD\":\"Dunkel\",\"MaB9wW\":\"Date Cancellation\",\"e6cAxJ\":\"Date cancelled\",\"81jBnC\":\"Date cancelled successfully\",\"a/C/6R\":\"Date created successfully\",\"IW7Q+u\":\"Date deleted\",\"rngCAz\":\"Date deleted successfully\",\"vHbfoQ\":\"Date reactivated\",\"hvah+S\":\"Date reopened for new sales\",\"Ez0YsD\":\"Date updated successfully\",\"Te33mU\":\"Dates are managed per occurrence\",\"91zCxb\":\"Dates with sessions\",\"/ITcnz\":\"day\",\"H7OUPr\":\"Day\",\"JtHrX9\":\"Day of Month\",\"J/Upwb\":\"days\",\"vDVA2I\":\"Days of Month\",\"rDLvlL\":\"Days of Week\",\"r6zgGo\":\"December\",\"jbq7j2\":\"Ablehnen\",\"ovBPCi\":\"Standard\",\"JtI4vj\":\"Standard-Erfassung von Teilnehmerinformationen\",\"ULjv90\":\"Default capacity per date\",\"3R/Tu2\":\"Standard-Gebührenbehandlung\",\"1bZAZA\":\"Standardvorlage wird verwendet\",\"HNlEFZ\":\"löschen\",\"KpnwJK\":[\"\\\"\",[\"0\"],\"\\\" löschen?\"],\"BlII4o\":[\"Delete \",[\"count\"],\" selected date(s)? Dates with orders will be skipped. This cannot be undone.\"],\"vu7gDm\":\"Partner löschen\",\"KZN4Lc\":\"Alle löschen\",\"6EkaOO\":\"Delete Date\",\"io0G93\":\"Veranstaltung löschen\",\"+jw/c1\":\"Bild löschen\",\"hdyeZ0\":\"Job löschen\",\"xxjZeP\":\"Standort löschen\",\"sY3tIw\":\"Veranstalter löschen\",\"UBv8UK\":\"Delete Permanently\",\"dPyJ15\":\"Vorlage löschen\",\"IQTR34\":\"Delete this category? Any products in it will also be deleted. This cannot be undone.\",\"/1wMxk\":\"Delete this product? This cannot be undone.\",\"mxsm1o\":\"Diese Frage löschen? Dies kann nicht rückgängig gemacht werden.\",\"snMaH4\":\"Webhook löschen\",\"LIZZLY\":[\"Deleted \",[\"0\"],\" date(s)\"],\"7w0Wev\":\"Description and venue added\",\"vYgeDk\":\"Alle abwählen\",\"NvuEhl\":\"Designelemente\",\"H8kMHT\":\"Code nicht erhalten?\",\"G8KNgd\":\"Different location\",\"E/QGRL\":\"Disabled\",\"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.\",\"HtaSQp\":\"Zeigt an, wie viele Plätze an jedem Termin im Ticket-Widget noch frei sind. Sie können dies für einzelne Termine überschreiben.\",\"pfa8F0\":\"Anzeigename\",\"Kdpf90\":\"Nicht vergessen!\",\"352VU2\":\"Haben Sie noch kein Konto? <0>Registrieren\",\"AXXqG+\":\"Spende\",\"DPfwMq\":\"Fertig\",\"JoPiZ2\":\"Door staff instructions\",\"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\":\"Duplicate Date\",\"KRmTkx\":\"Produkt duplizieren\",\"Jd3ymG\":\"Duration must be at least 1 minute.\",\"KIjvtr\":\"Niederländisch\",\"22xieU\":\"z.B. 180 (3 Stunden)\",\"/zajIE\":\"e.g. Morning Session\",\"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.\",\"Xfsjel\":\"Jedes Produkt\",\"5oD9f/\":\"Earlier\",\"LTzmgK\":[[\"0\"],\"-Vorlage bearbeiten\"],\"v4+lcZ\":\"Partner bearbeiten\",\"2iZEz7\":\"Antwort bearbeiten\",\"t2bbp8\":\"Teilnehmer bearbeiten\",\"etaWtB\":\"Teilnehmerdetails bearbeiten\",\"+guao5\":\"Konfiguration bearbeiten\",\"1Mp/A4\":\"Edit Date\",\"m0ZqOT\":\"Standort bearbeiten\",\"8oivFT\":\"Standort bearbeiten\",\"vRWOrM\":\"Bestelldetails bearbeiten\",\"fW5sSv\":\"Webhook bearbeiten\",\"nP7CdQ\":\"Webhook bearbeiten\",\"MRZxAn\":\"Edited\",\"uBAxNB\":\"Editor\",\"aqxYLv\":\"Bildung\",\"iiWXDL\":\"Berechtigungsfehler\",\"zPiC+q\":\"Berechtigte Check-In-Listen\",\"SiVstt\":\"Email & scheduled messages\",\"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\":\"Embeddable 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\":\"End\",\"sGjBEq\":\"Enddatum & -zeit (optional)\",\"PKXt9R\":\"Das Enddatum muss nach dem Startdatum liegen\",\"ZayGC7\":\"End on a date\",\"48Y16Q\":\"Endzeit (optional)\",\"TbaYrr\":[\"Ended \",[\"0\"]],\"CFgwiw\":[\"Ends \",[\"0\"]],\"SqOIQU\":\"Enter a capacity value or choose unlimited.\",\"h37gRz\":\"Enter a label or choose to remove it.\",\"7YZofi\":\"Geben Sie einen Betreff und Inhalt ein, um die Vorschau zu sehen\",\"khyScF\":\"Enter a time to shift by.\",\"SKx/0u\":\"Geben Sie einen Veranstaltungsortnamen oder eine Adresse ein\",\"ppwojw\":\"Geben Sie für Präsenzveranstaltungen einen Veranstaltungsort oder eine Adresse ein\",\"j+eCIq\":\"Adresse manuell eingeben\",\"3bR1r4\":\"Partner-E-Mail eingeben (optional)\",\"ARkzso\":\"Partnername eingeben\",\"ej4L8b\":\"Enter capacity\",\"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)\",\"RRlWVA\":\"Gesamte Bestellung\",\"o21Y+P\":\"entries\",\"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\",\"+v+GW0\":\"Anzeige des Veranstaltungsdatums\",\"7u9/DO\":\"Veranstaltung erfolgreich gelöscht\",\"imgKgl\":\"Veranstaltungsbeschreibung\",\"IzR/Fc\":\"Event lifetime\",\"PYs3rP\":\"Veranstaltungsname\",\"HhwcTQ\":\"Veranstaltungsname\",\"WZZzB6\":\"Veranstaltungsname ist erforderlich\",\"Wd5CDM\":\"Der Veranstaltungsname sollte weniger als 150 Zeichen lang sein\",\"4JzCvP\":\"Veranstaltung nicht verfügbar\",\"mImacG\":\"Veranstaltungsseite\",\"Hk9Ki/\":\"Veranstaltung erfolgreich wiederhergestellt\",\"JyD0LH\":\"Veranstaltungseinstellungen\",\"XVLu2v\":\"Veranstaltungstitel\",\"OfmsI9\":\"Event zu neu\",\"4SILkp\":\"Event totals\",\"YDVUVl\":\"Ereignistypen\",\"+HeiVx\":\"Veranstaltung aktualisiert\",\"19j6uh\":\"Veranstaltungsleistung\",\"PC3/fk\":\"Veranstaltungen, die in den nächsten 24 Stunden beginnen\",\"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\":\"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\":\"Failed to cancel date\",\"YUX+f+\":\"Failed to cancel dates\",\"SIHgVQ\":\"Nachricht konnte nicht abgebrochen werden\",\"cEFg3R\":\"Partner konnte nicht erstellt werden\",\"dVgNF1\":\"Konfiguration konnte nicht erstellt werden\",\"fAoRRJ\":\"Failed to create schedule\",\"U66oUa\":\"Vorlage konnte nicht erstellt werden\",\"aFk48v\":\"Konfiguration konnte nicht gelöscht werden\",\"n1CYMH\":\"Failed to delete date\",\"KXv+Qn\":\"Failed to delete date. It may have existing orders.\",\"JJ0uRo\":\"Failed to delete dates\",\"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\",\"5E23qd\":\"Failed to delete product. Please try again.\",\"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\":\"Failed to reactivate date\",\"7zyx8a\":\"Entfernen von der Warteliste fehlgeschlagen\",\"A/P7PX\":\"Failed to remove override\",\"ogWc1z\":\"Failed to reopen date\",\"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\":\"Failed to save override\",\"sj/eZA\":\"Failed to save price override\",\"780n8A\":\"Failed to save product settings\",\"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\":\"Umsatzsteuer-Einstellungen 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\":\"Family\",\"5LO38w\":\"Fast payouts to your bank\",\"4lgLew\":\"February\",\"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\":\"Filter attendees\",\"8OvVZZ\":\"Teilnehmer filtern\",\"N/H3++\":\"Filter by date\",\"mvrlBO\":\"Nach Veranstaltung filtern\",\"g+xRXP\":\"Finish setting up Stripe\",\"LHH461\":\"Finish setup\",\"syyeb9\":\"First\",\"Vj6wk9\":\"First 30 days\",\"/bpZYb\":\"First 7 days\",\"ziEnjY\":\"First 90 days\",\"1vBhpG\":\"Ersten Teilnehmer\",\"4pwejF\":\"Vorname ist erforderlich\",\"rVogsf\":\"Beheben Sie die Probleme, um zu veröffentlichen\",\"3lkYdQ\":\"Fixed fee\",\"6bBh3/\":\"Feste Gebühr\",\"zWqUyJ\":\"Feste Gebühr pro Transaktion\",\"LWL3Bs\":\"Feste Gebühr muss 0 oder größer sein\",\"0RI8m4\":\"Flash off\",\"q0923e\":\"Flash on\",\"X+U6/w\":\"Schriftart\",\"lWxAUo\":\"Essen & Trinken\",\"nFm+5u\":\"Fußzeilentext\",\"a8nooQ\":\"Fourth\",\"wtuVU4\":\"Frequency\",\"xVhQZV\":\"Fri\",\"39y5bn\":\"Friday\",\"f5UbZ0\":\"Full data ownership\",\"cfvx/y\":\"Full event\",\"MY2SVM\":\"Vollständige Erstattung\",\"PGQLdy\":\"future\",\"8N/j1s\":\"Future dates only\",\"yRx/6K\":\"Future dates will be copied with capacity reset to zero\",\"T02gNN\":\"Allgemeiner Eintritt\",\"3ep0Gx\":\"Allgemeine Informationen über Ihren Veranstalter\",\"ziAjHi\":\"Generieren\",\"exy8uo\":\"Code generieren\",\"4CETZY\":\"Wegbeschreibung\",\"pjkEcB\":\"Get Paid\",\"lGYzP6\":\"Get paid with Stripe\",\"ZDIydz\":\"Erste Schritte\",\"u6FPxT\":\"Tickets erhalten\",\"8KDgYV\":\"Bereiten Sie Ihre Veranstaltung vor\",\"RkXlPZ\":\"GitHub\",\"sr0UJD\":\"Go Back\",\"oNL5vN\":\"Zur Eventseite\",\"gHSuV/\":\"Zur Startseite gehen\",\"8+Cj55\":\"Go to Schedule\",\"6nDzTl\":\"Gute Lesbarkeit\",\"76gPWk\":\"Got it\",\"CZXzs4\":\"Griechisch\",\"aGWZUr\":\"Bruttoeinnahmen\",\"n8IUs7\":\"Bruttoeinnahmen\",\"O1wAlQ\":\"Guest\",\"LIYoRQ\":\"Gästeverwaltung\",\"NUsTc4\":\"Happening now\",\"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\":\"Hi,\",\"/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\":\"Hide details\",\"FmogyU\":\"Optionen ausblenden\",\"uXNYjR\":\"Ausverkaufte Termine und Uhrzeiten ausblenden\",\"g9RcYX\":\"Datum ausblenden\",\"uMwTx7\":\"Diese Kategorie 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\":\"Hobbies\",\"yY8wAv\":\"Hours\",\"49Tkiw\":\"Wie wird der Rabatt angewendet?\",\"sy9anN\":\"Wie lange ein Kunde nach Erhalt eines Angebots Zeit hat, den Kauf abzuschließen. Leer lassen für kein Zeitlimit.\",\"n2ilNh\":\"How long does the schedule run?\",\"DMr2XN\":\"How often?\",\"cceMns\":\"How VAT is applied to the platform fees we charge you.\",\"FONsLE\":\"https://awesome-events.com\",\"htoh8N\":\"https://webhook-domain.com/webhook\",\"mkWad2\":\"Ungarisch\",\"8Wgd41\":\"Ich bestätige meine Verantwortung als Datenverantwortlicher\",\"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\",\"CY3yHL\":\"Wenn aktiviert, wird diese Kategorie öffentlich nicht angezeigt.\",\"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 last \",[\"0\"],\" min\"],\"u7r0G5\":\"In person — set a venue\",\"/LCAwL\":\"Läuft gerade\",\"F1Xp97\":\"Einzelne Teilnehmer\",\"85e6zs\":\"Liquid-Token einfügen\",\"CTWsuc\":\"Instagram\",\"VopR6B\":\"Instant Stripe payouts\",\"nbfdhU\":\"Integrationen\",\"I8eJ6/\":\"Internal notes on the attendee's ticket\",\"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\",\"Dn4OyV\":\"Eingeladen\",\"IuMGvq\":\"Rechnung\",\"a/bUcL\":\"It happens on more than one date\",\"d+Oe9r\":\"It may have been unpublished or removed. Please check the link and try again.\",\"Lj7sBL\":\"Italienisch\",\"F5/CBH\":\"Artikel\",\"BzfzPK\":\"Artikel\",\"rjyWPb\":\"January\",\"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\":[\"Warteliste beitreten für \",[\"productDisplayName\"]],\"2gMuHR\":\"Beigetreten\",\"u4ex5r\":\"July\",\"zeEQd/\":\"June\",\"MxjCqk\":\"Suchen Sie nur nach Ihren Tickets?\",\"xOTzt5\":\"just now\",\"0RihU9\":\"Just wrapped\",\"lB2hSG\":[\"Halte mich über Neuigkeiten und Veranstaltungen von \",[\"0\"],\" auf dem Laufenden\"],\"ioFA9i\":\"Keep the profit.\",\"o66QSP\":\"label updates\",\"RtKKbA\":\"Last\",\"DruLRc\":\"Letzte 14 Tage\",\"ve9JTU\":\"Nachname ist erforderlich\",\"h0Q9Iw\":\"Letzte Antwort\",\"gw3Ur5\":\"Zuletzt ausgelöst\",\"FIq1Ba\":\"Later\",\"xvnLMP\":\"Latest check-ins\",\"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\":\"Hell\",\"1qY5Ue\":\"Link abgelaufen oder ungültig\",\"gggTBm\":\"LinkedIn\",\"nvOPBA\":\"Links erlaubt\",\"2BBAbc\":\"List\",\"dF6vP6\":\"Live\",\"fpMs2Z\":\"LIVE\",\"D9zTjx\":\"Live-Veranstaltungen\",\"C33p4q\":\"Loaded dates\",\"WdmJIX\":\"Vorschau wird geladen...\",\"IoDI2o\":\"Token werden geladen...\",\"G3Ge9Z\":\"Webhook-Protokolle werden geladen...\",\"NFxlHW\":\"Webhooks werden geladen\",\"E0DoRM\":\"Standort gelöscht\",\"7w8lJU\":\"Standort gespeichert\",\"YsRXDD\":\"Standort aktualisiert\",\"A/kIva\":\"location updates\",\"iyZPPR\":\"Standorte\",\"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\",\"PSRm6/\":\"Meine Tickets nachschlagen\",\"yJFu/X\":\"Hauptbüro\",\"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\":\"Verwalten Sie die Warteliste Ihrer Veranstaltung, sehen Sie Statistiken ein und bieten Sie Teilnehmern Tickets an.\",\"g2npA5\":\"Manuelles Angebot\",\"hg6l4j\":\"March\",\"pqRBOz\":\"Mark as validated (admin override)\",\"2L3vle\":\"Max. Nachrichten / 24h\",\"Qp4HWD\":\"Max. Empfänger / Nachricht\",\"3JzsDb\":\"May\",\"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\":\"Minutes\",\"zz/Wd/\":\"Mode\",\"fpMgHS\":\"Mon\",\"hty0d5\":\"Monday\",\"JbIgPz\":\"Geldbeträge sind ungefähre Summen über alle Währungen\",\"qvF+MT\":\"Überwachen und verwalten Sie fehlgeschlagene Hintergrundprozesse\",\"kY2ll9\":\"month\",\"HajiZl\":\"Monat\",\"+8Nek/\":\"Monthly\",\"1LkxnU\":\"Monthly Pattern\",\"6jefe3\":\"months\",\"f8jrkd\":\"more\",\"JcD7qf\":\"More actions\",\"w36OkR\":\"Meistgesehene Events (Letzte 14 Tage)\",\"+Y/na7\":\"Move all dates earlier or later\",\"3DIpY0\":\"Multiple locations\",\"g9cQCP\":\"Multiple ticket types\",\"GfaxEk\":\"Musik\",\"oVGCGh\":\"Meine Tickets\",\"8/brI5\":\"Name ist erforderlich\",\"sFFArG\":\"Name muss weniger als 255 Zeichen haben\",\"xxU3NX\":\"Nettoeinnahmen\",\"7I8LlL\":\"New capacity\",\"n1GRql\":\"New label\",\"y0Fcpd\":\"Neuer Standort\",\"ArHT/C\":\"Neue Anmeldungen\",\"uK7xWf\":\"New time:\",\"veT5Br\":\"Next occurrence\",\"WXtl5X\":[\"Next: \",[\"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\":\"No attendees to show\",\"PKySlW\":\"No attendees yet for this date.\",\"/UC6qk\":\"Keine Attributionsdaten gefunden\",\"E2vYsO\":\"No capabilities reported by Stripe yet.\",\"amMkpL\":\"Keine Kapazität\",\"d2Jf1f\":\"No change\",\"99ntUF\":\"Keine Check-In-Listen für diese Veranstaltung verfügbar.\",\"wG+knX\":\"No check-ins yet\",\"+dAKxg\":\"Keine Konfigurationen gefunden\",\"LiLk8u\":\"No connections available\",\"eb47T5\":\"Keine Daten für die ausgewählten Filter gefunden. Versuchen Sie, den Datumsbereich oder die Währung anzupassen.\",\"Zc216S\":\"No date added\",\"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\",\"OtJSnL\":\"Keine Termine geplant\",\"gEdNe8\":\"No dates scheduled yet\",\"pZNOT9\":\"Kein Enddatum\",\"dW40Uz\":\"Keine Events gefunden\",\"8pQ3NJ\":\"Keine Veranstaltungen, die in den nächsten 24 Stunden beginnen\",\"8zCZQf\":\"Noch keine Veranstaltungen\",\"Yc5YW6\":\"Keine fehlgeschlagenen Jobs\",\"EpvBAp\":\"Keine Rechnung\",\"XZkeaI\":\"Keine Protokolle gefunden\",\"IcAC6J\":\"Keine passenden Schriften\",\"nrSs2u\":\"Keine Nachrichten gefunden\",\"Rj99yx\":\"No occurrences available\",\"IFU1IG\":\"No occurrences on this date\",\"OVFwlg\":\"Noch keine Bestellfragen\",\"EJ7bVz\":\"Keine Bestellungen gefunden\",\"NEmyqy\":\"Noch keine Bestellungen\",\"a77B6w\":\"No orders yet for this date.\",\"wUv5xQ\":\"Keine Veranstalteraktivität in den letzten 14 Tagen\",\"vLd1tV\":\"No organizer context available.\",\"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\":\"No products configured for this event.\",\"kY7XDn\":\"Keine Produkte haben Wartelisteneinträge\",\"8mw4tm\":\"Nachricht bei fehlenden Produkten\",\"wYiAtV\":\"Keine neuen Kontoanmeldungen\",\"UW90md\":\"Keine Empfänger gefunden\",\"QoAi8D\":\"Keine Antwort\",\"JeO7SI\":\"Keine Antwort\",\"EK/G11\":\"Noch keine Antworten\",\"59OWd3\":\"Keine gespeicherten Standorte\",\"mPdY6W\":\"Keine Vorschläge\",\"3sRuiW\":\"Keine Tickets gefunden\",\"debCrL\":\"Keine Tickets zum Verkauf\",\"k2C0ZR\":\"No upcoming dates\",\"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\":\"non-edited\",\"Itw24Q\":\"Not checked in\",\"x5+Lcz\":\"Nicht Eingecheckt\",\"8n10sz\":\"Nicht Berechtigt\",\"kLvU3F\":\"Notify attendees and stop sales\",\"t9QlBd\":\"November\",\"kAREMN\":\"Number of dates to create\",\"6u1B3O\":\"Occurrence\",\"mmoE62\":\"Occurrence Cancelled\",\"V9flmL\":\"Occurrence Schedule\",\"Kh3WO8\":\"Occurrence Summary\",\"byXCTu\":\"Occurrences\",\"KATw3p\":\"Occurrences (future only)\",\"85rTR2\":\"Occurrences can be configured after creation\",\"dzQfDY\":\"October\",\"BwJKBw\":\"von\",\"9h7RDh\":\"Anbieten\",\"EfK2O6\":\"Platz anbieten\",\"3sVRey\":\"Tickets anbieten\",\"2O7Ybb\":\"Angebots-Zeitlimit\",\"1jUg5D\":\"Angeboten\",\"l+/HS6\":[\"Angebote verfallen nach \",[\"timeoutHours\"],\" Stunden.\"],\"6Aih4U\":\"Offline\",\"nO3VbP\":[\"Im Angebot \",[\"0\"]],\"oXOSPE\":\"Online\",\"aqmy5k\":\"Online — provide connection details\",\"LuZBbx\":\"Online & in-person\",\"IXuOqt\":\"Online & in-person — see schedule\",\"WjSpu5\":\"Online-Veranstaltung\",\"scPxI/\":[\"Nur noch \",[\"capacity\"],\" verfügbar\"],\"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\",\"wkpaqp\":\"Nur Startdatum und -uhrzeit anzeigen\",\"DMk8F0\":\"Only tickets count toward capacity\",\"M2w1ni\":\"Nur mit Promo-Code sichtbar\",\"y8Bm7C\":\"Open check-in\",\"RLz7P+\":\"Open occurrence\",\"cDSdPb\":\"Optionaler Name für die Auswahl, z. B. \\\"HQ-Konferenzraum\\\"\",\"HXMJxH\":\"Optionaler Text für Haftungsausschlüsse, Kontaktinformationen oder Dankesnachrichten (nur einzeilig)\",\"L565X2\":\"Optionen\",\"8m9emP\":\"or add a single date\",\"eBskDE\":\"Oder aktivieren Sie Offline-Zahlungen und deaktivieren Sie Stripe\",\"dSeVIm\":\"order\",\"c/TIyD\":\"Bestellung & Ticket\",\"H5qWhm\":\"Bestellung storniert\",\"b6+Y+n\":\"Bestellung abgeschlossen\",\"x4MLWE\":\"Bestellbestätigung\",\"CsTTH0\":\"Bestellbestätigung erfolgreich erneut gesendet\",\"ppuQR4\":\"Bestellung erstellt\",\"xtQzag\":\"Order details\",\"vrSW9M\":\"Die Bestellung wurde storniert und erstattet. Der Bestellinhaber wurde benachrichtigt.\",\"rzw+wS\":\"Bestellinhaber\",\"oI/hGR\":\"Bestellnummer\",\"RQCXz6\":\"Bestelllimits\",\"SO9AEF\":\"Bestelllimits festgelegt\",\"vu6Arl\":\"Bestellung als bezahlt markiert\",\"sLbJQz\":\"Bestellung nicht gefunden\",\"kvYpYu\":\"Bestellung nicht gefunden\",\"eJ8SvM\":\"Order number, purchase date, purchaser email\",\"FaPYw+\":\"Bestelleigentümer\",\"eB5vce\":\"Bestelleigentümer mit einem bestimmten Produkt\",\"CxLoxM\":\"Bestelleigentümer mit Produkten\",\"UkHo4c\":\"Bestellref.\",\"EZy55F\":\"Bestellung erstattet\",\"6eSHqs\":\"Bestellstatus\",\"oW5877\":\"Bestellsumme\",\"e7eZuA\":\"Bestellung aktualisiert\",\"1SQRYo\":\"Bestellung erfolgreich aktualisiert\",\"3NT0Ck\":\"Bestellung wurde storniert\",\"V5khLm\":\"orders\",\"sd5IMt\":\"Abgeschlossene Bestellungen\",\"5It1cQ\":\"Bestellungen exportiert\",\"UQ0ACV\":\"Bestellungen Gesamt\",\"B/EBQv\":\"Bestellungen:\",\"qtGTNu\":\"Organische Konten\",\"P/JHA4\":\"Veranstalter erfolgreich archiviert\",\"S3CZ5M\":\"Veranstalter-Dashboard\",\"GzjTd0\":\"Veranstalter erfolgreich gelöscht\",\"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\":\"Organizers\",\"/IX/7x\":\"Sonstiges\",\"RsiDDQ\":\"Andere Listen (Ticket Nicht Enthalten)\",\"aDfajK\":\"Outdoors\",\"qMASRF\":\"Ausgehende Nachrichten\",\"iCOVQO\":\"Override\",\"GpFTEc\":\"Override fees on this organizer\",\"M9ZhMP\":\"Override price\",\"cnVIpl\":\"Override removed\",\"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\":\"Past due\",\"xTPjSy\":\"Vergangene Veranstaltungen\",\"/l/ckQ\":\"URL einfügen\",\"URAE3q\":\"Pausiert\",\"4fL/V7\":\"Bezahlen\",\"c2/9VE\":\"Nutzlast\",\"5cxUwd\":\"Zahlungsdatum\",\"ENEPLY\":\"Zahlungsmethode\",\"8Lx2X7\":\"Zahlung erhalten\",\"fx8BTd\":\"Zahlungen nicht verfügbar\",\"C+ylwF\":\"Payouts\",\"UbRKMZ\":\"Pending\",\"UkM20g\":\"Überprüfung ausstehend\",\"dPYu1F\":\"Pro Teilnehmer\",\"mQV/nJ\":\"per min\",\"+kvxv+\":\"pro Bestellung\",\"VlXNyK\":\"Pro Bestellung\",\"NhuGd7\":\"pro Produkt\",\"hauDFf\":\"Pro Ticket\",\"mnF83a\":\"Prozentuale Gebühr\",\"TNLuRD\":\"Percentage fee (%)\",\"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\":\"Permanently remove this date\",\"6kPk3+\":\"Persönliche Daten\",\"zmwvG2\":\"Telefon\",\"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\":\"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\":\"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\":\"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\":\"Please select a date and time\",\"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\",\"OESu7I\":\"Verhindern Sie Überverkäufe durch gemeinsame Nutzung des Bestands über mehrere Tickettypen.\",\"NgVUL2\":\"Vorschau des Bestellformulars\",\"cs5muu\":\"Vorschau der Veranstaltungsseite\",\"Jm2AC3\":\"Price Tier\",\"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\":\"Product settings cannot be edited for cancelled dates.\",\"2339ej\":\"Product settings saved successfully\",\"ldVIlB\":\"Produkt aktualisiert\",\"CP3D8G\":\"Progress\",\"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\",\"W0ETyY\":\"Geben Sie mindestens ein Adressfeld an (Veranstaltungsort, Straße, Stadt oder Land).\",\"2W/7Gz\":\"Provide the following before Stripe's next review to keep payouts flowing.\",\"EEYbdt\":\"Veröffentlichen\",\"JcgJKc\":\"Trotzdem veröffentlichen\",\"evDBV8\":\"Veranstaltung veröffentlichen\",\"2zEfOd\":\"Publish your event\",\"L7nrC8\":\"Mit der Veröffentlichung wird Ihre Veranstaltungsseite öffentlich und Anmeldungen werden möglich.\",\"dsFmM+\":\"Gekauft\",\"JunetL\":\"Purchaser\",\"phmeUH\":\"Purchaser email\",\"ywR4ZL\":\"QR code check-in\",\"oWXNE5\":\"Anz.\",\"biEyJ4\":\"Question answers\",\"k/bJj0\":\"Fragen neu sortiert\",\"b24kPi\":\"Warteschlange\",\"lTPqpM\":\"Quick Tip\",\"fqDzSu\":\"Rate\",\"mnUGVC\":\"Ratenlimit überschritten. Bitte versuchen Sie es später erneut.\",\"t41hVI\":\"Platz erneut anbieten\",\"TNclgc\":\"Reactivate this date? It will be reopened for future sales.\",\"RENQ6j\":\"Bereit, live zu gehen?\",\"uqoRbb\":\"Real-time analytics\",\"xzRvs4\":[\"Produktupdates von \",[\"0\"],\" erhalten.\"],\"pLXbi8\":\"Letzte Kontoanmeldungen\",\"M1HGuR\":\"Recent activity\",\"3kJ0gv\":\"Recent Attendees\",\"qhfiwV\":\"Recent 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\",\"WEYdDv\":\"Recommended\",\"wuhHPE\":\"Recurring\",\"asLqwt\":\"Wiederkehrende Veranstaltung\",\"s3uzsK\":\"Einstellungen für wiederkehrende Veranstaltungen\",\"D0tAMe\":\"Recurring events\",\"JjMIKU\":\"Reddit\",\"HiGkFu\":\"Weiterleitung zu Stripe...\",\"pnoTN5\":\"Empfehlungskonten\",\"ACKu03\":\"Vorschau aktualisieren\",\"vuFYA6\":\"Refund all orders for these dates\",\"4cRUK3\":\"Refund all orders for this date\",\"fKn/k6\":\"Erstattungsbetrag\",\"qY4rpA\":\"Erstattung fehlgeschlagen\",\"FaK/8G\":[\"Bestellung \",[\"0\"],\" erstatten\"],\"MGbi9P\":\"Erstattung ausstehend\",\"BDSRuX\":[\"Erstattet: \",[\"0\"]],\"bU4bS1\":\"Rückerstattungen\",\"rYXfOA\":\"Regionale Einstellungen\",\"5tl0Bp\":\"Registrierungsfragen\",\"ZNo5k1\":\"Remaining\",\"Bjh87R\":\"Remove label from all dates\",\"IVZaEo\":\"Entfernt ausverkaufte Termine und Uhrzeiten vollständig von der Veranstaltungsseite. Wenn deaktiviert, bleiben sie sichtbar und werden als ausverkauft gekennzeichnet.\",\"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\":\"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\":\"Reset to base price\",\"kCn6wb\":\"Wird zurückgesetzt...\",\"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\":\"results\",\"6gRgw8\":\"Wiederholen\",\"1BG8ga\":\"Alle wiederholen\",\"rDC+T6\":\"Job wiederholen\",\"CbnrWb\":\"Zurück zum Event\",\"Lf7TCn\":\"Wiederverwendbare Veranstaltungsorte erscheinen hier automatisch, wenn Sie Veranstaltungen mit Adressen erstellen. Sie können auch eigene hinzufügen.\",\"mdQ0zb\":\"Wiederverwendbare Veranstaltungsorte für Ihre Veranstaltungen. Standorte aus der Autovervollständigung werden hier automatisch gespeichert.\",\"XFOPle\":\"Reuse\",\"1Zehp4\":\"Reuse a Stripe connection from another organizer in this account.\",\"Oo/PLb\":\"Umsatzübersicht\",\"CfuueU\":\"Angebot widerrufen\",\"RIgKv+\":\"Run until a specific date\",\"dFFW9L\":[\"Verkauf endete \",[\"0\"]],\"loCKGB\":[\"Verkauf endet \",[\"0\"]],\"wlfBad\":\"Verkaufszeitraum\",\"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\":\"Verkaufszeitraum festgelegt\",\"ftzaMf\":\"Verkaufszeitraum, Bestelllimits, Sichtbarkeit\",\"zpekWp\":[\"Verkauf beginnt \",[\"0\"]],\"mUv9U4\":\"Verkauf\",\"9KnRdL\":\"Verkauf pausiert\",\"JC3J0k\":\"Sales, attendance, and check-in breakdown per occurrence\",\"3VnlS9\":\"Verkäufe, Bestellungen und Leistungskennzahlen für alle Veranstaltungen\",\"3Q1AWe\":\"Verkäufe:\",\"LeuERW\":\"Same as event\",\"B4nE3N\":\"Beispiel-Ticketpreis\",\"8BRPoH\":\"Beispielort\",\"PiK6Ld\":\"Sat\",\"+5kO8P\":\"Saturday\",\"zJiuDn\":\"Save fee override\",\"NB8Uxt\":\"Save Schedule\",\"KZrfYJ\":\"Social-Media-Links speichern\",\"9Y3hAT\":\"Vorlage speichern\",\"C8ne4X\":\"Ticketdesign speichern\",\"cTI8IK\":\"Save VAT settings\",\"6/TNCd\":\"Umsatzsteuereinstellungen speichern\",\"4RvD9q\":\"Gespeicherter Standort\",\"cgw0cL\":\"Gespeicherte Standorte\",\"Fbqm/I\":\"Saving an override creates a dedicated configuration for this organizer if it's currently on the system default.\",\"I+FvbD\":\"Scannen\",\"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\":\"Für später planen\",\"NAzVVw\":\"Nachricht planen\",\"Fz09JP\":\"Schedule starts on\",\"4ba0NE\":\"Geplant\",\"qcP/8K\":\"Geplante Zeit\",\"A1taO8\":\"Search\",\"ftNXma\":\"Partner suchen...\",\"VMU+zM\":\"Search attendees\",\"VY+Bdn\":\"Nach Kontoname oder E-Mail suchen...\",\"VX+B3I\":\"Suche nach Veranstaltungstitel oder Veranstalter...\",\"R0wEyA\":\"Nach Jobname oder Ausnahme suchen...\",\"YnMfsK\":\"Suche nach Name oder Adresse...\",\"VT+urE\":\"Nach Name oder E-Mail suchen...\",\"GHdjuo\":\"Nach Name, E-Mail oder Konto suchen...\",\"4mBFO7\":\"Search by name, order #, ticket # or email\",\"20ce0U\":\"Nach Bestellnummer, Kundenname oder E-Mail suchen...\",\"4DSz7Z\":\"Nach Betreff, Veranstaltung oder Konto suchen...\",\"nQC7Z9\":\"Search dates...\",\"iRtEpV\":\"Search dates…\",\"JRM7ao\":\"Search for an address\",\"BWF1kC\":\"Nachrichten suchen...\",\"5WYZKZ\":\"Suchergebnisse\",\"IG85fV\":\"Gespeicherte Standorte durchsuchen oder eine Adresse finden...\",\"3aD3GF\":\"Seasonal\",\"ku//5b\":\"Second\",\"Mck5ht\":\"Sichere Kasse\",\"s7tXqF\":\"See schedule\",\"JFap6u\":\"See what Stripe still needs\",\"p7xUrt\":\"Kategorie auswählen\",\"hTKQwS\":\"Select a Date & Time\",\"Ps6Xtf\":\"Select a date to see available times\",\"e4L7bF\":\"Wählen Sie eine Nachricht aus, um ihren Inhalt anzuzeigen\",\"zPRPMf\":\"Stufe auswählen\",\"BFRSTT\":\"Konto auswählen\",\"wgNoIs\":\"Select all\",\"mCB6Je\":\"Alle auswählen\",\"aCEysm\":[\"Select all on \",[\"0\"]],\"a6+167\":\"Veranstaltung auswählen\",\"CFbaPk\":\"Teilnehmergruppe auswählen\",\"88a49s\":\"Select camera\",\"tVW/yo\":\"Währung auswählen\",\"SJQM1I\":\"Select date\",\"n9ZhRa\":\"Enddatum und -zeit auswählen\",\"gTN6Ws\":\"Endzeit auswählen\",\"0U6E9W\":\"Veranstaltungskategorie auswählen\",\"j9cPeF\":\"Ereignistypen auswählen\",\"ypTjHL\":\"Select occurrence\",\"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\":\"selected\",\"ylXj1N\":\"Ausgewählt\",\"uq3CXQ\":\"Sell out your event.\",\"oBXbO4\":\"Selling a physical product? Cap its quantity on the <0>products page instead.\",\"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\":\"Send to all occurrences, or choose a specific one\",\"QEQlnV\":\"Senden Sie Ihre erste Nachricht\",\"IoAuJG\":\"Wird gesendet...\",\"h69WC6\":\"Gesendet\",\"BVu2Hz\":\"Gesendet von\",\"ZFa8wv\":\"Sent to attendees when a scheduled date is cancelled\",\"SPdzrs\":\"An Kunden gesendet, wenn sie eine Bestellung aufgeben\",\"LxSN5F\":\"An jeden Teilnehmer mit seinen Ticketdetails gesendet\",\"hgvbYY\":\"September\",\"5sN96e\":\"Session cancelled\",\"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\":\"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\":\"Richten Sie Check-in-Listen für verschiedene Eingänge, Sitzungen oder Tage ein.\",\"TaWVGe\":\"Set up payouts\",\"JA//e6\":\"Set up schedule\",\"gzXY7l\":\"Set Up Schedule\",\"0Ls9qe\":\"Set up the tickets you'll sell and their prices\",\"xMO+Ao\":\"Richten Sie Ihre Organisation ein\",\"5pEFnq\":\"Set up your schedule\",\"h/9JiC\":\"Set Up Your Schedule\",\"zRRuUD\":\"Set up your schedule in the next steps\",\"ETC76A\":\"Set, change, or remove the date's location or online details\",\"C3htzi\":\"Einstellung aktualisiert\",\"Ohn74G\":\"Einrichtung & 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\":\"Partnerlink teilen\",\"hL7sDJ\":\"Veranstalterseite teilen\",\"jy6QDF\":\"Gemeinsame Kapazitätsverwaltung\",\"jDNHW4\":\"Shift times\",\"tPfIaW\":[\"Shifted times for \",[\"count\"],\" date(s)\"],\"WwlM8F\":\"Erweiterte Optionen anzeigen\",\"cMW+gm\":[\"Alle Plattformen anzeigen (\",[\"0\"],\" weitere mit Werten)\"],\"wXi9pZ\":\"Show attendee notes to non-logged-in staff\",\"4LZFir\":\"Gesamten Datumsbereich anzeigen\",\"UVPI5D\":\"Weniger Plattformen anzeigen\",\"Eu/N/d\":\"Marketing-Opt-in-Kontrollkästchen anzeigen\",\"SXzpzO\":\"Marketing-Opt-in-Kontrollkästchen standardmäßig anzeigen\",\"b33PL9\":\"Mehr Plattformen anzeigen\",\"Eut7p9\":\"Show order details to non-logged-in staff\",\"+RoWKN\":\"Show question answers to non-logged-in staff\",\"jbcx6L\":\"Show remaining capacity on event dates\",\"rXxBOx\":\"Show remaining capacity to buyers\",\"t1LIQW\":[\"Zeige \",[\"0\"],\" von \",[\"totalRows\"],\" Einträgen\"],\"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\":\"Angemeldet\",\"5C7J+P\":\"Single Event\",\"E//btK\":\"Skip manually edited dates\",\"paESr6\":\"Slowakisch\",\"9wu8nm\":\"Snapchat\",\"kIKb9e\":\"Soziales\",\"d0rUsW\":\"Social-Media-Links\",\"j/TOB3\":\"Social-Media-Links & Website\",\"s9KGXU\":\"Verkauft\",\"yp+0jj\":\"sold out\",\"1hupow\":\"Ausverkauft, Warteliste verfügbar\",\"iACSrw\":\"Some details are hidden from public access. Log in to view everything.\",\"Dia6iz\":\"Something went wrong while deleting the image. Please try again.\",\"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\":\"Spirituality\",\"oPaRES\":\"Split check-in across days, areas, or ticket types. Share the link with staff — no account needed on their end.\",\"7JFNej\":\"Sport\",\"/bfV1Y\":\"Staff instructions\",\"tXkhj/\":\"Start\",\"StWUH4\":\"Start check-in\",\"JcQp9p\":\"Startdatum & -zeit\",\"0m/ekX\":\"Startdatum & -zeit\",\"izRfYP\":\"Startdatum ist erforderlich\",\"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/\":\"Statistiken\",\"GVUxAX\":\"Statistiken basieren auf dem Erstellungsdatum des Kontos\",\"29Hx9U\":\"Stats\",\"5ia+r6\":\"Still needed\",\"wuV0bK\":\"Identitätswechsel beenden\",\"s/KaDb\":\"Stripe connected\",\"Bk06QI\":\"Stripe verbunden\",\"akZMv8\":[\"Stripe connection copied from \",[\"0\"],\".\"],\"v0aRY1\":\"Stripe didn't return a setup link. Please try again.\",\"aKtF0O\":\"Stripe nicht verbunden\",\"9i0++A\":\"Stripe Zahlungs-ID\",\"R1lIMV\":\"Stripe will need a few more details soon\",\"FzcCHA\":\"Stripe will walk you through a few quick questions to finish setup.\",\"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\",\"kRWc2g\":\"Einstellungen für wiederkehrende Veranstaltungen 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\":\"Sun\",\"DBC3t5\":\"Sunday\",\"UaISq3\":\"Schwedisch\",\"JZTQI0\":\"Veranstalter wechseln\",\"9YHrNC\":\"Systemstandard\",\"lruQkA\":\"Tap this screen to resume scanning\",\"TJUrME\":[\"Targeting attendees across \",[\"0\"],\" selected sessions.\"],\"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 collaboration\",\"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\":\"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\":\"Vorlage aktiv\",\"QHhZeE\":\"Vorlage erfolgreich erstellt\",\"xrWdPR\":\"Vorlage erfolgreich gelöscht\",\"G04Zjt\":\"Vorlage erfolgreich gespeichert\",\"xowcRf\":\"Nutzungsbedingungen\",\"6K0GjX\":\"Text könnte schwer lesbar sein\",\"nm3Iz/\":\"Danke für Ihre Teilnahme!\",\"pYwj0k\":\"Thanks,\",\"k3IitN\":\"That's a wrap\",\"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.\",\"7oksH+\":[\"Der Rabatt wird von jedem berechtigten Produkt abgezogen. Z. B. \",[\"currencySymbol\"],\"10 Rabatt × 3 Tickets = \",[\"currencySymbol\"],\"30 Rabatt.\"],\"sKL8k2\":\"Der Rabatt wird einmalig vom Bestellwert abgezogen.\",\"cDHM1d\":\"Die E-Mail-Adresse wurde geändert. Der Teilnehmer erhält ein neues Ticket an der aktualisierten E-Mail-Adresse.\",\"tXadb0\":\"Die gesuchte Veranstaltung ist derzeit nicht verfügbar. Sie wurde möglicherweise entfernt, ist abgelaufen oder die URL ist falsch.\",\"5fPdZe\":\"The first date this schedule will generate from.\",\"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.\",\"Np4eLs\":[\"The maximum is \",[\"MAX_PREVIEW\"],\" sessions. Please reduce the date range, frequency, or number of sessions per day.\"],\"sYLeDq\":\"Der gesuchte Veranstalter konnte nicht gefunden werden. Die Seite wurde möglicherweise verschoben oder gelöscht, oder die URL ist falsch.\",\"PCr4zw\":\"The override is recorded in the order audit log.\",\"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\",\"OVSkIF\":\"Der schnelle braune Fuchs springt über den faulen Hund.\",\"z0KrIG\":\"Die geplante Zeit ist erforderlich\",\"EWErQh\":\"Die geplante Zeit muss in der Zukunft liegen\",\"UNd0OU\":[\"The session for \\\"\",[\"title\"],\"\\\" originally scheduled for \",[\"0\"],\" has been rescheduled.\"],\"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\",\"ybBP2H\":\"There are no products available for this date. Please choose another date.\",\"O7g4eR\":\"There are no upcoming dates for this event\",\"062KsE\":\"These details are shown on the attendee's ticket and order summary for this date only.\",\"5Eu+tn\":\"Diese Details werden nur angezeigt, wenn die Bestellung erfolgreich abgeschlossen wurde.\",\"jQjwR+\":\"These details will replace any existing location on the affected dates and show on attendee tickets.\",\"6eaLu/\":\"Diese Preise gelten für alle Termine Ihres Zeitplans, und die Mengen der Stufen begrenzen die Gesamtverkäufe über alle Termine zusammen. Verkaufszeiträume der Stufen gelten global. Preise für einzelne Termine können Sie auf der <0>Terminplan-Seite überschreiben.\",\"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\":\"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\":\"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/\":[\"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.\",\"E9BqZw\":\"This date only\",\"RzEvf5\":\"Diese Veranstaltung ist beendet\",\"kc4bIA\":\"Diese Veranstaltung hat noch keine Tickets oder Produkte, daher können sich Teilnehmer nicht anmelden.\",\"eMaNd0\":\"This event is not available\",\"YClrdK\":\"Diese Veranstaltung ist noch nicht veröffentlicht\",\"GL6z+k\":\"Diese Veranstaltung ist ausverkauft\",\"pIwDhS\":\"This event's dates and times are set on the occurrence schedule.\",\"ny5rgr\":\"This is a recurring event\",\"tc64Zz\":\"Dies ist der Name der Kategorie, der auf der Veranstaltungsseite angezeigt wird.\",\"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.\",\"5DpZrC\":\"Dies begrenzt die Gesamtverkäufe über alle Termine Ihres Zeitplans zusammen – es ist kein Limit pro Termin. Um die Teilnehmerzahl pro Termin zu begrenzen, legen Sie auf der <0>Terminplan-Seite eine Kapazität fest.\",\"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\":\"This occurrence is at capacity\",\"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\",\"qEGn8I\":\"Diese wiederkehrende Veranstaltung hat noch keine Termine, daher gibt es für Teilnehmer nichts zu buchen.\",\"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.\",\"1LuJNw\":\"Dieses Ticket ist nicht mehr gültig\",\"0Ew0uk\":\"Dieses Ticket wurde gerade gescannt. Bitte warten Sie, bevor Sie erneut scannen.\",\"FYXq7k\":[\"This will affect \",[\"loadedAffectedCount\"],\" date(s).\"],\"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\":\"Throughput\",\"+FjWgX\":\"Thu\",\"kkDQ8m\":\"Thursday\",\"0GSPnc\":\"Ticketdesign\",\"EZC/Cu\":\"Ticketdesign erfolgreich gespeichert\",\"bbslmb\":\"Ticket-Designer\",\"1BPctx\":\"Ticket für\",\"HGuXjF\":\"Ticketinhaber\",\"CMUt3Y\":\"Ticketinhaber\",\"awHmAT\":\"Ticket-ID\",\"6czJik\":\"Ticket-Logo\",\"t79rDv\":\"Ticket nicht gefunden\",\"6tmWch\":\"Ticket oder Produkt\",\"1tfWrD\":\"Ticket-Vorschau für\",\"KnjoUA\":\"Ticketpreis\",\"pGZOcL\":\"Ticket erfolgreich erneut gesendet\",\"o02GZM\":\"Ticket sales have ended for this event\",\"8jLPgH\":\"Tickettyp\",\"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\":\"Time\",\"fXf2r5\":[\"Times shown in \",[\"timezoneAbbr\"]],\"dMtLDE\":\"to\",\"/jQctM\":\"An\",\"tiI71C\":\"Um Ihre Limits zu erhöhen, kontaktieren Sie uns unter\",\"ecUA8p\":\"Today\",\"W428WC\":\"Spalten umschalten\",\"BRMXj0\":\"Tomorrow\",\"UBSG1X\":\"Top Veranstalter (Letzte 14 Tage)\",\"3sZ0xx\":\"Gesamtkonten\",\"SMDzqJ\":\"Teilnehmer gesamt\",\"orBECM\":\"Insgesamt eingesammelt\",\"k5CU8c\":\"Einträge gesamt\",\"4B7oCp\":\"Gesamtgebühr\",\"sMMlTX\":\"Total fees\",\"mlvCEl\":\"Total orders\",\"2AW/k5\":\"Gesamtmenge über alle Termine\",\"dp8BCb\":\"Total tax\",\"vb0Q0/\":\"Gesamtbenutzer\",\"oJjplO\":\"Aufrufe Gesamt\",\"rBZ9pz\":\"Tours\",\"orluER\":\"Verfolgen Sie das Kontowachstum und die Leistung nach Attributionsquelle\",\"YwKzpH\":\"Tracking & Analytik\",\"GUA0Jy\":\"Try a different search term or filter\",\"2P/OWN\":\"Try adjusting your filters to see more dates.\",\"ouM5IM\":\"Andere E-Mail versuchen\",\"3DZvE7\":\"Hi.Events kostenlos testen\",\"vq2WxD\":\"Tue\",\"G3myU+\":\"Tuesday\",\"Kz91g/\":\"Türkisch\",\"GdOhw6\":\"Ton ausschalten\",\"KUOhTy\":\"Ton einschalten\",\"dBeuY2\":\"Twitch\",\"QytzQr\":\"Geben Sie \\\"löschen\\\" ein, um zu bestätigen\",\"nWRfmt\":\"Typografie\",\"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\":\"Unable to load attendee details.\",\"GlnD5Y\":\"Unable to load products for this date. Please try again.\",\"17VbmV\":\"Unable to undo check-in\",\"n57zCW\":\"Nicht zugeordnete Konten\",\"9uI/rE\":\"Undo\",\"Ef7StM\":\"Unbekannt\",\"ZBAScj\":\"Unbekannter Teilnehmer\",\"MEIAzV\":\"Unbenannt\",\"K6L5Mx\":\"Unbenannter Standort\",\"7yiFvZ\":\"Unbezahlt\",\"X13xGn\":\"Nicht vertrauenswürdig\",\"gyXpQN\":\"Upcoming events\",\"Pp1sWX\":\"Partner aktualisieren\",\"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\":\"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 listening\",\"dyTklH\":\"USB scanner paused\",\"OHJXlK\":\"Verwenden Sie <0>Liquid-Templating, um Ihre E-Mails zu personalisieren\",\"/rsy72\":\"Use event default\",\"0k4cdb\":\"Verwenden Sie Bestelldetails für alle Teilnehmer. Teilnehmernamen und E-Mails entsprechen den Informationen des Käufers.\",\"bA31T4\":\"Verwenden Sie die Käuferdaten für alle Teilnehmer\",\"PpgtnC\":\"Diese Adresse verwenden\",\"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\":\"VAT number\",\"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\":\"VAT registered\",\"Nfbg76\":\"Umsatzsteuereinstellungen erfolgreich gespeichert\",\"UvYql/\":\"Umsatzsteuer-Einstellungen gespeichert. Wir validieren Ihre Umsatzsteuer-Identifikationsnummer im Hintergrund.\",\"bXn1Jz\":\"VAT settings updated\",\"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\":\"VAT: not registered\",\"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\":\"View All\",\"yA/6BX\":\"View all →\",\"6CQ7/B\":\"View all capabilities\",\"YSE15b\":\"View all check-in lists\",\"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\":[\"View details for \",[\"0\"],\" \",[\"1\"]],\"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\":\"Waiting for scan…\",\"u0n+wz\":\"Warteliste\",\"3RXFtE\":\"Warteliste aktiviert\",\"TwnTPy\":\"Wartelisten-Angebot abgelaufen\",\"aUi/Dz\":\"Warnung: Dies ist die Systemstandardkonfiguration. Änderungen wirken sich auf alle Konten aus, denen keine spezifische Konfiguration zugewiesen ist.\",\"aT/44s\":\"We couldn't copy that Stripe connection. Please try again.\",\"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.\",\"Fjj/5/\":\"We couldn't load the check-in lists. Please try again.\",\"ADsQ23\":\"We couldn't reach Stripe just now. Please try again in a moment.\",\"HJKdzP\":\"Beim Laden dieser Seite ist ein Fehler aufgetreten. Bitte versuchen Sie es erneut.\",\"jegrvW\":\"We partner with Stripe to send payouts straight to your bank account.\",\"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 Ihr Erlebnis 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.\",\"mfM/HJ\":[\"Wir benachrichtigen Sie per E-Mail, wenn ein Platz für \",[\"productDisplayName\"],\" am \",[\"occurrenceDate\"],\" verfügbar wird.\"],\"iy+M+c\":[\"Wir benachrichtigen Sie per E-Mail, wenn ein Platz für \",[\"productDisplayName\"],\" verfügbar wird.\"],\"McuGND\":\"We'll open a message composer with a pre-filled template after saving. You review and send it — nothing is sent automatically.\",\"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\":[\"We've made changes to the schedule for \\\"\",[\"title\"],\"\\\" — \",[\"description\"],\" affecting \",[\"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 integrations\",\"CThMKa\":\"Webhook-Protokolle\",\"I0adYQ\":\"Webhook-Signaturgeheimnis\",\"nuh/Wq\":\"Webhook-URL\",\"8BMPMe\":\"Webhook sendet keine Benachrichtigungen\",\"FSaY52\":\"Webhook sendet Benachrichtigungen\",\"v1kQyJ\":\"Webhooks\",\"On0aF2\":\"Website\",\"0f7U0k\":\"Wed\",\"VAcXNz\":\"Wednesday\",\"64X6l4\":\"week\",\"4XSc4l\":\"Weekly\",\"IAUiSh\":\"weeks\",\"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\":\"What time?\",\"FaSXqR\":\"Welche Art von Veranstaltung?\",\"0WyYF4\":\"What unauthenticated staff can see\",\"2+ExvJ\":\"WhatsApp\",\"cxsKvw\":\"Wenn ein Check-in gelöscht wird\",\"RPe6bE\":\"When a date is cancelled on a recurring event\",\"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, wenn Plätze verfügbar werden.\",\"OIkHj+\":\"Wenn ein Produkt ausverkauft ist, können Kunden einer Warteliste beitreten, um benachrichtigt zu werden, wenn Plätze verfügbar werden. Kunden treten der Warteliste für einen bestimmten Termin bei, und Angebote erfolgen pro Termin.\",\"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\":\"Wenn Kunden Tickets kaufen, erscheinen deren Bestellungen hier.\",\"pm9tpn\":\"Wenn aktiviert, können Käufer ihren Namen und ihre E-Mail-Adresse auf einmal für alle Teilnehmer übernehmen. Deaktivieren Sie diese Option, um die Option \\\"Alle Teilnehmer\\\" zu entfernen; Käufer können ihre Angaben weiterhin für den ersten Teilnehmer übernehmen, die übrigen müssen einzeln eingegeben werden.\",\"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.\",\"uchB0M\":\"Widget-Vorschau\",\"uvIqcj\":\"Workshop\",\"EpknJA\":\"Schreiben Sie Ihre Nachricht hier...\",\"nhtR6Y\":\"X (Twitter)\",\"7qI8sJ\":\"year\",\"zkWmBh\":\"Yearly\",\"+BGee5\":\"years\",\"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+\":\"You can override this for individual dates later.\",\"paWwQ0\":\"Sie können Tickets bei Bedarf weiterhin manuell anbieten.\",\"jTDzpA\":\"Sie können den letzten aktiven Veranstalter Ihres Kontos nicht archivieren.\",\"D8baxD\":\"Sie haben kostenpflichtige Tickets, aber Stripe ist noch nicht verbunden, daher können Sie keine Zahlungen entgegennehmen.\",\"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\",\"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/\":\"You need to create at least one occurrence before you can add attendees to this recurring event.\",\"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\":\"You'll be able to set up dates, schedules, and recurrence rules in the next step.\",\"zKAheG\":\"You're changing session times\",\"MNFIxz\":[\"Sie gehen zu \",[\"0\"],\"!\"],\"ZlLcht\":[\"Sie melden sich für die Warteliste für den \",[\"occurrenceDate\"],\" an.\"],\"qGZz0m\":\"Sie stehen auf der Warteliste!\",\"/5HL6k\":\"Ihnen wurde ein Platz angeboten!\",\"gbjFFH\":\"You've changed the session time\",\"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\":\"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\":\"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 Wartelisten-Angebot ist abgelaufen und wir konnten Ihre Bestellung nicht abschließen. Bitte treten Sie der Warteliste erneut bei, um benachrichtigt zu werden, wenn weitere Plätze verfügbar werden.\",\"9Q6UKX\":\"YouTube\"}")}; \ No newline at end of file +/*eslint-disable*/module.exports={messages:JSON.parse("{\"f8qS7T\":\"'Es gibt noch nichts anzuzeigen'\",\"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\":\"123 Main Street\",\"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\":\"Are you sure you want to make this event public? This will make the event visible to the public\",\"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\":\"Attendee Notes\",\"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\":\"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\":\"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\":\"Passen Sie Ihre Veranstaltungsseite an\",\"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\":\"Dismiss\",\"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\":\"Event 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\":\"No attendees have been added to this order.\",\"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\":\"No product associated with this attendee.\",\"Ya1JhR\":\"Keine Produkte in dieser Kategorie verfügbar.\",\"FTfObB\":\"Noch keine Produkte\",\"+Y976X\":\"Keine Promo-Codes anzuzeigen\",\"MAavyl\":\"No questions answered by this attendee.\",\"SnlQeq\":\"No questions have been asked for this order.\",\"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 event\",\"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\":\"Order #\",\"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\":\"Order Notes\",\"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\":\"Bereitgestellt von\",\"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 für diese 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\":\"View\",\"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\":\"(none)\",\"xYxQCZ\":[[\"0\"],\" \",[\"1\"]],\"lAOy2r\":[[\"0\"],\" \",[\"1\"],\" ist bereits eingecheckt\"],\"3beCx0\":[[\"0\"],\" <0>checked in\"],\"S4PqS9\":[[\"0\"],\" aktive Webhooks\"],\"6MIiOI\":[[\"0\"],\" übrig\"],\"COnw8D\":[[\"0\"],\" Logo\"],\"xG9N0H\":[[\"0\"],\" of \",[\"1\"],\" seats are taken.\"],\"B7pZfX\":[[\"0\"],\" Veranstalter\"],\"/HkCs4\":[[\"0\"],\" Tickets\"],\"30bTiU\":[[\"activeCount\"],\" enabled\"],\"jTs4am\":[[\"appName\"],\" logo\"],\"gbJOk9\":[[\"attendeeCount\"],\" attendees are registered for this session.\"],\"TjbIUI\":[[\"availableCount\"],\" von \",[\"totalCount\"],\" verfügbar\"],\"PSChHo\":[[\"capacity\"],\" Plätze frei\"],\"lzQ8/M\":[[\"checkedIn\"],\" / \",[\"total\"],\" checked in\"],\"RZ0JX3\":[[\"chipTime\"],\", ausverkauft\"],\"M4KnFs\":[[\"chipTime\"],\", Ausverkauft, Warteliste verfügbar\"],\"SeyN12\":[[\"completedCount\"],\" of \",[\"totalCount\"],\" steps complete\"],\"f2rhaD\":[[\"diffHr\"],\"h ago\"],\"NRSLBe\":[[\"diffMin\"],\"m ago\"],\"iYfwJE\":[[\"diffSec\"],\"s ago\"],\"OJnhhX\":[[\"eventCount\"],\" Ereignisse\"],\"mhZbzw\":[[\"loadedAffectedAttendees\"],\" attendees are registered across the affected sessions.\"],\"RBuxIl\":[[\"productCount\"],\" ticket types configured\"],\"VFLd0I\":[[\"slotCount\"],\" times available\"],\"3IEF7U\":[[\"totalCount\"],\" Ticketarten\"],\"0cLzoF\":[[\"totalOccurrences\"],\" dates\"],\"AEGc4t\":[[\"totalOccurrences\"],\" sessions across \",[\"0\"],\" dates (\",[\"1\",\"plural\",{\"one\":[\"#\",\" session\"],\"other\":[\"#\",\" sessions\"]}],\" per day)\"],\"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.\",\"Il5Uid\":\"<0>Dies ist die insgesamt verfügbare Menge über alle Termine Ihres Zeitplans zusammen – kein Limit pro Termin. Um die Teilnehmerzahl pro Termin zu begrenzen, legen Sie auf der <1>Terminplan-Seite eine Kapazität fest.\",\"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 attendee is registered across the affected sessions.\",\"qOyE2U\":\"1 attendee is registered for this session.\",\"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\",\"y2Jh0m\":\"1 time available\",\"cGtUz6\":\"1 Woche vor der Veranstaltung\",\"HR/cvw\":\"Musterstraße 123\",\"dgKxZ5\":\"135+ currencies & 40+ payment methods\",\"kMU5aM\":\"Eine Stornierungsbenachrichtigung wurde gesendet an\",\"o++0qa\":\"a change in duration\",\"WuWSX5\":\"A few quick steps and you're ready to start selling.\",\"RQ5kDd\":\"Eine Nachricht, die angezeigt wird, wenn diese Kategorie keine Produkte enthält.\",\"V53XzQ\":\"Ein neuer Bestätigungscode wurde an Ihre E-Mail gesendet\",\"sr2Je0\":\"a shift in start/end times\",\"/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\":[\"Account · \",[\"0\"],\" · \",[\"1\"]],\"vOuxvL\":\"Kontoinformationen\",\"EHNORh\":\"Konto nicht gefunden\",\"bPwFdf\":\"Konten\",\"AhwTa1\":\"Handlung erforderlich: Umsatzsteuerinformationen benötigt\",\"APyAR/\":\"Aktive 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\":\"Fügen Sie benutzerdefinierte Fragen hinzu, um während des Bezahlvorgangs zusätzliche Informationen zu erfassen\",\"Z/dcxc\":\"Add Date\",\"QeupRg\":\"Termine hinzufügen\",\"Q219NT\":\"Add Dates\",\"yjB5VC\":\"Add dates and times for your recurring event\",\"Z8idyM\":\"Add details\",\"wpirGs\":\"Add event details\",\"VX6WUv\":\"Standort hinzufügen\",\"GCQlV2\":\"Add multiple times if you run several sessions per day.\",\"7JF9w9\":\"Frage hinzufügen\",\"NLbIb6\":\"Add this attendee anyway (override capacity)\",\"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 Organisator-Homepage hinzu. Ein Cookie-Zustimmungsbanner wird Besuchern 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\":\"Affiliate program\",\"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.\",\"3e31kI\":\"After your event is created, you can choose how often it repeats from the dashboard.\",\"z7GAMJ\":\"all\",\"N40H+G\":\"All\",\"7rLTkE\":\"Alle archivierten Veranstaltungen\",\"gKq1fa\":\"Alle Teilnehmer\",\"63gRoO\":\"All attendees of the selected sessions\",\"uWxIoH\":\"All attendees of this occurrence\",\"pMLul+\":\"Alle Währungen\",\"sgUdRZ\":\"All dates\",\"e4q4uO\":\"All Dates\",\"ZS/D7f\":\"Alle beendeten Veranstaltungen\",\"QsYjci\":\"Alle Veranstaltungen\",\"31KB8w\":\"Alle fehlgeschlagenen Jobs gelöscht\",\"D2g7C7\":\"Alle Jobs zur Wiederholung eingereiht\",\"B4RFBk\":\"All matching dates\",\"F1/VgK\":\"All occurrences\",\"OpWjMq\":\"All Occurrences\",\"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.\",\"VZdky1\":\"Käufern erlauben, ihre Angaben für alle Teilnehmer zu übernehmen\",\"F3mW5G\":\"Kunden erlauben, sich auf eine Warteliste zu setzen, wenn dieses Produkt ausverkauft ist\",\"4CMO/q\":\"Kunden erlauben, sich auf eine Warteliste zu setzen, wenn dieses Produkt ausverkauft ist. Kunden treten der Warteliste für einen bestimmten Termin bei.\",\"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\":\"Already in\",\"/H326L\":\"Bereits erstattet\",\"USEpOK\":\"Already use Stripe on another organizer? Reuse that connection.\",\"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.\",\"OPFdAM\":\"Eine optionale Beschreibung dieser Kategorie, die auf der Veranstaltungsseite angezeigt wird.\",\"eusccx\":\"Eine optionale Nachricht, die beim hervorgehobenen Produkt angezeigt wird, z.B. \\\"Verkauft sich schnell 🔥\\\" oder \\\"Bester Wert\\\"\",\"5GJuNp\":[\"and \",[\"0\"],\" more...\"],\"QNrkms\":\"Antwort erfolgreich aktualisiert.\",\"+qygei\":\"Answers\",\"GK7Lnt\":\"Answers provided at checkout (e.g. meal choice)\",\"lE8PgT\":\"Any dates you've manually customized will be kept.\",\"jVoYha\":[\"angewendet — \",[\"0\"],\" Rabatt auf Ihre Bestellung\"],\"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\":\"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\":[\"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\":\"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/\":\"Are you sure you want to delete this date? This action cannot be undone.\",\"RiF/yT\":\"Are you sure you want to delete this image?\",\"b3+Qku\":\"Are you sure you want to delete this tax or fee? It will no longer be applied to new orders.\",\"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\":\"Are you sure you want to permanently delete this date? This cannot be undone.\",\"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?\",\"b7tkGp\":\"Are you sure you want to revoke this invitation?\",\"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\":\"Assign plan\",\"xdiER7\":\"Zugewiesene Stufe\",\"F2rX0R\":\"Mindestens ein Ereignistyp muss ausgewählt werden\",\"Z44eZS\":\"At least one product must stay available for this date. To make the date inaccessible, cancel it from the schedule instead.\",\"BCmibk\":\"Versuche\",\"6PecK3\":\"Anwesenheit und Check-in-Raten für alle Veranstaltungen\",\"K2tp3v\":\"attendee\",\"AJ4rvK\":\"Teilnehmer storniert\",\"qvylEK\":\"Teilnehmer erstellt\",\"Aspq3b\":\"Erfassung von Teilnehmerdetails\",\"fpb0rX\":\"Teilnehmerdetails aus Bestellung kopiert\",\"94aQMU\":\"Teilnehmerinformationen\",\"KkrBiR\":\"Erfassung von Teilnehmerinformationen\",\"sjPjOg\":\"Attendee notes\",\"cosfD8\":\"Teilnehmerstatus\",\"D2qlBU\":\"Teilnehmer aktualisiert\",\"22BOve\":\"Teilnehmer erfolgreich aktualisiert\",\"x8Vnvf\":\"Ticket des Teilnehmers nicht in dieser Liste enthalten\",\"/Ywywr\":\"attendees\",\"zLRobu\":\"attendees checked in\",\"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\":\"Automatisch Tickets der nächsten Person anbieten, wenn Kapazität verfügbar wird. Wenn deaktiviert, können Sie die Warteliste manuell von der Wartelisten-Seite aus bearbeiten.\",\"csDS2L\":\"Verfügbar\",\"Xp+ywP\":\"Verfügbar, sobald die Zahlung abgeschlossen ist\",\"dwDH1K\":[\"Available times on \",[\"dayName\"]],\"clF06r\":\"Zur Erstattung verfügbar\",\"NB5+UG\":\"Verfügbare Token\",\"L+wGOG\":\"Awaiting\",\"qcw2OD\":\"Awaiting pay\",\"kNmmvE\":\"Awesome Events GmbH\",\"TeSaQO\":\"Zurück zu Konten\",\"kYqM1A\":\"Zurück zum Event\",\"s5QRF3\":\"Zurück zu Nachrichten\",\"td/bh+\":\"Zurück zu Berichten\",\"nsm7BA\":\"Zurück zur Suche\",\"imjKVx\":\"Bank account connected\",\"D9LTCH\":\"Base Price\",\"hviJef\":\"Based on the global sale period above, not per date\",\"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\":\"Built-in fraud protection\",\"cr7kGH\":\"Bulk Edit\",\"1Fbd6n\":\"Bulk Edit Dates\",\"Eq6Tu9\":\"Bulk update failed.\",\"9N+p+g\":\"Geschäftlich\",\"SWnN1L\":\"Business address\",\"kQekXw\":\"Business name\",\"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\":\"Durch das Hinzufügen von Tracking-Pixeln bestätigen Sie, dass Sie und diese Plattform gemeinsam Verantwortliche für die erhobenen Daten sind. Sie sind dafür verantwortlich, eine rechtmäßige Grundlage für diese Verarbeitung gemäß den geltenden Datenschutzgesetzen (DSGVO, CCPA usw.) sicherzustellen.\",\"DFqasq\":[\"Durch Fortfahren stimmen Sie den <0>\",[\"0\"],\" Nutzungsbedingungen zu\"],\"wVSa+U\":\"By day of month\",\"0MnNgi\":\"By day of week\",\"CetOZE\":\"By ticket type\",\"lFdbRS\":\"Anwendungsgebühren umgehen\",\"AjVXBS\":\"Calendar\",\"2VLZwd\":\"Aktionsschaltfläche\",\"rT2cV+\":\"Camera\",\"7hYa9y\":\"Camera permission was denied. <0>Request permission again, or grant this page camera access in your browser settings.\",\"D02dD9\":\"Kampagne\",\"RRPA79\":\"Can't check in\",\"OcVwAd\":[\"Cancel \",[\"count\"],\" date(s)\"],\"H4nE+E\":\"Alle Produkte stornieren und in den Pool zurückgeben\",\"Py78q9\":\"Cancel Date\",\"tOXAdc\":\"Das Stornieren wird alle mit dieser Bestellung verbundenen Teilnehmer stornieren und die Tickets in den verfügbaren Pool zurückgeben.\",\"FPpqc7\":[\"Cancelling \",[\"0\"],\" date(s). This may take a moment to complete.\"],\"01sEfm\":\"Die Standardkonfiguration des Systems kann nicht gelöscht werden\",\"VsM1HH\":\"Kapazitätszuweisungen\",\"9bIMVF\":\"Capacity management\",\"H7K8og\":\"Capacity must be 0 or greater\",\"nzao08\":\"capacity updates\",\"4cp9NP\":\"Capacity Used\",\"K7tIrx\":\"Kategorie\",\"DRK3Bq\":\"Category deleted successfully\",\"o+XJ9D\":\"Ändern\",\"kJkjoB\":\"Change duration\",\"J0KExZ\":\"Change the attendee limit\",\"ssospy\":\"Change time\",\"CIHJJf\":\"Wartelisten-Einstellungen ändern\",\"B5icLR\":[\"Changed duration for \",[\"count\"],\" date(s)\"],\"Kb+0BT\":\"Charges\",\"2tbLdK\":\"Wohltätigkeit\",\"BPWGKn\":\"Check in\",\"6uFFoY\":\"Check out\",\"FjAlwK\":[\"Check out this event: \",[\"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 for \",[\"0\"],\" was undone\"],\"9s/wrQ\":\"Check-in history\",\"Wwztk4\":\"Check-In List\",\"9gPPUY\":\"Check-In-Liste erstellt!\",\"dwjiJt\":\"Check-in list info\",\"7od0PV\":\"check-in lists\",\"f2vU9t\":\"Check-in-Listen\",\"XprdTn\":\"Check-in navigation\",\"5tV1in\":\"Check-in progress\",\"SHJwyq\":\"Check-in-Rate\",\"qCqdg6\":\"Check-In-Status\",\"cKj6OE\":\"Check-in-Übersicht\",\"7B5M35\":\"Check-Ins\",\"VrmydS\":\"Checked in\",\"DM4gBB\":\"Chinesisch (Traditionell)\",\"p8Jvp4\":\"Choose a configuration\",\"ElShBO\":\"Choose a different action\",\"pHEhf+\":\"Wählen Sie eine Schriftart, die zu Ihrer Marke passt. Schriften werden selbst über Bunny Fonts gehostet.\",\"Zok1Gx\":\"Choose an organizer\",\"pkk46Q\":\"Wählen Sie einen Veranstalter\",\"Ag32+c\":\"Choose another date\",\"Crr3pG\":\"Kalender auswählen\",\"Z38ZJu\":\"Wählen Sie, wie das Veranstaltungsdatum auf dem Ticket angezeigt wird\",\"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\":\"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\":\"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\":\"complete\",\"bUQMpb\":\"Complete Stripe setup\",\"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\":\"Configuration assigned\",\"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\":\"Configure which products are available for this occurrence and optionally adjust pricing.\",\"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\",\"/K4Vqr\":\"Verbinden Sie Stripe, um Zahlungen zu akzeptieren\",\"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\":\"Für Online-Veranstaltungen sind Verbindungsdetails erforderlich\",\"jfC/xh\":\"Kontakt\",\"LOFgda\":[\"Kontakt \",[\"0\"]],\"41BQ3k\":\"Kontakt-E-Mail\",\"m8WD6t\":\"Einrichtung fortsetzen\",\"0GwUT4\":\"Weiter zur Kasse\",\"sBV87H\":\"Weiter zur Veranstaltungserstellung\",\"nKtyYu\":\"Weiter zum nächsten Schritt\",\"F3/nus\":\"Weiter zur Zahlung\",\"s30OcA\":\"Steuern Sie, wie Termine und Uhrzeiten auf der Veranstaltungsseite angezeigt werden\",\"p2FRHj\":\"Steuern Sie, wie Plattformgebühren für diese Veranstaltung gehandhabt werden\",\"NqfabH\":\"Control who gets in for this date\",\"fmYxZx\":\"Control who gets in, and when\",\"1JnTgU\":\"Von oben kopiert\",\"FxVG/l\":\"In die Zwischenablage kopiert\",\"PiH3UR\":\"Kopiert!\",\"4i7smN\":\"Copy account ID\",\"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\":\"Could not prepare the bulk update.\",\"KOavaU\":\"Adressdetails konnten nicht abgerufen werden\",\"/lq4oO\":\"Could not save date\",\"mHu0az\":\"Couldn't send verification email. Please try again.\",\"QOIm+S\":\"Die Zahlen umfassen alle bevorstehenden Termine. Jeder Person wird ein Platz für den Termin angeboten, für den sie sich angemeldet hat.\",\"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\":\"Covers every ticket\",\"zg4oSu\":[[\"0\"],\"-Vorlage erstellen\"],\"RKKhnW\":\"Erstellen Sie ein individuelles Widget, um Tickets auf Ihrer Website zu verkaufen.\",\"6sk7PP\":\"Create a fixed number\",\"jqhTmw\":\"Create a list for this date\",\"PhioFp\":\"Create a new check-in list for an active session, or contact the organizer if you think this is a mistake.\",\"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\":\"Create Date\",\"Nc3l/D\":\"Erstellen Sie Rabatte, Zugangscodes für versteckte Tickets und Sonderangebote.\",\"PybJS2\":\"Create event\",\"eWEV9G\":\"Neues Passwort erstellen\",\"wl2iai\":\"Create Schedule\",\"8AiKIu\":\"Ticket oder Produkt erstellen\",\"/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\":\"Erstellen Sie Ihre erste Veranstaltung, um Tickets zu verkaufen und Teilnehmer zu verwalten.\",\"ZCSSd+\":\"Erstellen Sie Ihre eigene Veranstaltung\",\"qdv10s\":[[\"0\"],\" Termine werden erstellt. Dies kann einen Moment dauern.\"],\"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\":\"Currently assigned\",\"iTvh6I\":\"Derzeit zum Kauf verfügbar\",\"A42Dqn\":\"Custom branding\",\"Guo0lU\":\"Benutzerdefiniertes Datum und Uhrzeit\",\"WDMdn8\":\"Custom questions\",\"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\",\"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\":\"Daily\",\"/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\":\"Dance\",\"pvnfJD\":\"Dunkel\",\"MaB9wW\":\"Date Cancellation\",\"e6cAxJ\":\"Date cancelled\",\"81jBnC\":\"Date cancelled successfully\",\"a/C/6R\":\"Date created successfully\",\"IW7Q+u\":\"Date deleted\",\"rngCAz\":\"Date deleted successfully\",\"vHbfoQ\":\"Date reactivated\",\"hvah+S\":\"Date reopened for new sales\",\"Ez0YsD\":\"Date updated successfully\",\"Te33mU\":\"Dates are managed per occurrence\",\"91zCxb\":\"Dates with sessions\",\"/ITcnz\":\"day\",\"H7OUPr\":\"Day\",\"JtHrX9\":\"Day of Month\",\"J/Upwb\":\"days\",\"vDVA2I\":\"Days of Month\",\"rDLvlL\":\"Days of Week\",\"r6zgGo\":\"December\",\"jbq7j2\":\"Ablehnen\",\"ovBPCi\":\"Standard\",\"JtI4vj\":\"Standard-Erfassung von Teilnehmerinformationen\",\"ULjv90\":\"Default capacity per date\",\"3R/Tu2\":\"Standard-Gebührenbehandlung\",\"1bZAZA\":\"Standardvorlage wird verwendet\",\"HNlEFZ\":\"löschen\",\"KpnwJK\":[\"\\\"\",[\"0\"],\"\\\" löschen?\"],\"BlII4o\":[\"Delete \",[\"count\"],\" selected date(s)? Dates with orders will be skipped. This cannot be undone.\"],\"vu7gDm\":\"Partner löschen\",\"KZN4Lc\":\"Alle löschen\",\"6EkaOO\":\"Delete Date\",\"io0G93\":\"Veranstaltung löschen\",\"+jw/c1\":\"Bild löschen\",\"hdyeZ0\":\"Job löschen\",\"xxjZeP\":\"Standort löschen\",\"sY3tIw\":\"Veranstalter löschen\",\"UBv8UK\":\"Delete Permanently\",\"dPyJ15\":\"Vorlage löschen\",\"IQTR34\":\"Delete this category? Any products in it will also be deleted. This cannot be undone.\",\"/1wMxk\":\"Delete this product? This cannot be undone.\",\"mxsm1o\":\"Diese Frage löschen? Dies kann nicht rückgängig gemacht werden.\",\"snMaH4\":\"Webhook löschen\",\"LIZZLY\":[\"Deleted \",[\"0\"],\" date(s)\"],\"7w0Wev\":\"Description and venue added\",\"vYgeDk\":\"Alle abwählen\",\"NvuEhl\":\"Designelemente\",\"H8kMHT\":\"Code nicht erhalten?\",\"G8KNgd\":\"Different location\",\"E/QGRL\":\"Disabled\",\"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.\",\"HtaSQp\":\"Zeigt an, wie viele Plätze an jedem Termin im Ticket-Widget noch frei sind. Sie können dies für einzelne Termine überschreiben.\",\"pfa8F0\":\"Anzeigename\",\"Kdpf90\":\"Nicht vergessen!\",\"352VU2\":\"Haben Sie noch kein Konto? <0>Registrieren\",\"AXXqG+\":\"Spende\",\"DPfwMq\":\"Fertig\",\"JoPiZ2\":\"Door staff instructions\",\"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\":\"Duplicate Date\",\"KRmTkx\":\"Produkt duplizieren\",\"Jd3ymG\":\"Duration must be at least 1 minute.\",\"KIjvtr\":\"Niederländisch\",\"22xieU\":\"z.B. 180 (3 Stunden)\",\"/zajIE\":\"e.g. Morning Session\",\"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.\",\"Xfsjel\":\"Jedes Produkt\",\"5oD9f/\":\"Earlier\",\"LTzmgK\":[[\"0\"],\"-Vorlage bearbeiten\"],\"v4+lcZ\":\"Partner bearbeiten\",\"2iZEz7\":\"Antwort bearbeiten\",\"t2bbp8\":\"Teilnehmer bearbeiten\",\"etaWtB\":\"Teilnehmerdetails bearbeiten\",\"+guao5\":\"Konfiguration bearbeiten\",\"1Mp/A4\":\"Edit Date\",\"m0ZqOT\":\"Standort bearbeiten\",\"8oivFT\":\"Standort bearbeiten\",\"vRWOrM\":\"Bestelldetails bearbeiten\",\"fW5sSv\":\"Webhook bearbeiten\",\"nP7CdQ\":\"Webhook bearbeiten\",\"MRZxAn\":\"Edited\",\"uBAxNB\":\"Editor\",\"aqxYLv\":\"Bildung\",\"iiWXDL\":\"Berechtigungsfehler\",\"zPiC+q\":\"Berechtigte Check-In-Listen\",\"SiVstt\":\"Email & scheduled messages\",\"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\":\"Embeddable 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\":\"End\",\"sGjBEq\":\"Enddatum & -zeit (optional)\",\"PKXt9R\":\"Das Enddatum muss nach dem Startdatum liegen\",\"ZayGC7\":\"End on a date\",\"48Y16Q\":\"Endzeit (optional)\",\"TbaYrr\":[\"Ended \",[\"0\"]],\"CFgwiw\":[\"Ends \",[\"0\"]],\"SqOIQU\":\"Enter a capacity value or choose unlimited.\",\"h37gRz\":\"Enter a label or choose to remove it.\",\"7YZofi\":\"Geben Sie einen Betreff und Inhalt ein, um die Vorschau zu sehen\",\"khyScF\":\"Enter a time to shift by.\",\"SKx/0u\":\"Geben Sie einen Veranstaltungsortnamen oder eine Adresse ein\",\"ppwojw\":\"Geben Sie für Präsenzveranstaltungen einen Veranstaltungsort oder eine Adresse ein\",\"j+eCIq\":\"Adresse manuell eingeben\",\"3bR1r4\":\"Partner-E-Mail eingeben (optional)\",\"ARkzso\":\"Partnername eingeben\",\"ej4L8b\":\"Enter capacity\",\"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)\",\"RRlWVA\":\"Gesamte Bestellung\",\"o21Y+P\":\"entries\",\"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\",\"+v+GW0\":\"Anzeige des Veranstaltungsdatums\",\"7u9/DO\":\"Veranstaltung erfolgreich gelöscht\",\"imgKgl\":\"Veranstaltungsbeschreibung\",\"IzR/Fc\":\"Event lifetime\",\"PYs3rP\":\"Veranstaltungsname\",\"HhwcTQ\":\"Veranstaltungsname\",\"WZZzB6\":\"Veranstaltungsname ist erforderlich\",\"Wd5CDM\":\"Der Veranstaltungsname sollte weniger als 150 Zeichen lang sein\",\"4JzCvP\":\"Veranstaltung nicht verfügbar\",\"mImacG\":\"Veranstaltungsseite\",\"Hk9Ki/\":\"Veranstaltung erfolgreich wiederhergestellt\",\"JyD0LH\":\"Veranstaltungseinstellungen\",\"XVLu2v\":\"Veranstaltungstitel\",\"OfmsI9\":\"Event zu neu\",\"4SILkp\":\"Event totals\",\"YDVUVl\":\"Ereignistypen\",\"+HeiVx\":\"Veranstaltung aktualisiert\",\"19j6uh\":\"Veranstaltungsleistung\",\"PC3/fk\":\"Veranstaltungen, die in den nächsten 24 Stunden beginnen\",\"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\":\"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\":\"Failed to cancel date\",\"YUX+f+\":\"Failed to cancel dates\",\"SIHgVQ\":\"Nachricht konnte nicht abgebrochen werden\",\"cEFg3R\":\"Partner konnte nicht erstellt werden\",\"dVgNF1\":\"Konfiguration konnte nicht erstellt werden\",\"fAoRRJ\":\"Failed to create schedule\",\"4yLYTb\":\"Der Zeitplan konnte nicht erstellt werden. Bitte versuchen Sie es erneut.\",\"U66oUa\":\"Vorlage konnte nicht erstellt werden\",\"aFk48v\":\"Konfiguration konnte nicht gelöscht werden\",\"n1CYMH\":\"Failed to delete date\",\"KXv+Qn\":\"Failed to delete date. It may have existing orders.\",\"JJ0uRo\":\"Failed to delete dates\",\"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\",\"5E23qd\":\"Failed to delete product. Please try again.\",\"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\":\"Failed to reactivate date\",\"7zyx8a\":\"Entfernen von der Warteliste fehlgeschlagen\",\"A/P7PX\":\"Failed to remove override\",\"ogWc1z\":\"Failed to reopen date\",\"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\":\"Failed to save override\",\"sj/eZA\":\"Failed to save price override\",\"780n8A\":\"Failed to save product settings\",\"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\":\"Umsatzsteuer-Einstellungen 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\":\"Family\",\"5LO38w\":\"Fast payouts to your bank\",\"4lgLew\":\"February\",\"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\":\"Filter attendees\",\"8OvVZZ\":\"Teilnehmer filtern\",\"N/H3++\":\"Filter by date\",\"mvrlBO\":\"Nach Veranstaltung filtern\",\"g+xRXP\":\"Finish setting up Stripe\",\"LHH461\":\"Finish setup\",\"syyeb9\":\"First\",\"Vj6wk9\":\"First 30 days\",\"/bpZYb\":\"First 7 days\",\"ziEnjY\":\"First 90 days\",\"1vBhpG\":\"Ersten Teilnehmer\",\"4pwejF\":\"Vorname ist erforderlich\",\"rVogsf\":\"Beheben Sie die Probleme, um zu veröffentlichen\",\"3lkYdQ\":\"Fixed fee\",\"6bBh3/\":\"Feste Gebühr\",\"zWqUyJ\":\"Feste Gebühr pro Transaktion\",\"LWL3Bs\":\"Feste Gebühr muss 0 oder größer sein\",\"0RI8m4\":\"Flash off\",\"q0923e\":\"Flash on\",\"X+U6/w\":\"Schriftart\",\"lWxAUo\":\"Essen & Trinken\",\"nFm+5u\":\"Fußzeilentext\",\"a8nooQ\":\"Fourth\",\"wtuVU4\":\"Frequency\",\"xVhQZV\":\"Fri\",\"39y5bn\":\"Friday\",\"f5UbZ0\":\"Full data ownership\",\"cfvx/y\":\"Full event\",\"MY2SVM\":\"Vollständige Erstattung\",\"PGQLdy\":\"future\",\"8N/j1s\":\"Future dates only\",\"yRx/6K\":\"Future dates will be copied with capacity reset to zero\",\"T02gNN\":\"Allgemeiner Eintritt\",\"3ep0Gx\":\"Allgemeine Informationen über Ihren Veranstalter\",\"ziAjHi\":\"Generieren\",\"exy8uo\":\"Code generieren\",\"4CETZY\":\"Wegbeschreibung\",\"pjkEcB\":\"Get Paid\",\"lGYzP6\":\"Get paid with Stripe\",\"ZDIydz\":\"Erste Schritte\",\"u6FPxT\":\"Tickets erhalten\",\"8KDgYV\":\"Bereiten Sie Ihre Veranstaltung vor\",\"RkXlPZ\":\"GitHub\",\"sr0UJD\":\"Go Back\",\"oNL5vN\":\"Zur Eventseite\",\"gHSuV/\":\"Zur Startseite gehen\",\"8+Cj55\":\"Go to Schedule\",\"6nDzTl\":\"Gute Lesbarkeit\",\"76gPWk\":\"Got it\",\"CZXzs4\":\"Griechisch\",\"aGWZUr\":\"Bruttoeinnahmen\",\"n8IUs7\":\"Bruttoeinnahmen\",\"O1wAlQ\":\"Guest\",\"LIYoRQ\":\"Gästeverwaltung\",\"NUsTc4\":\"Happening now\",\"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\":\"Hi,\",\"/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\":\"Hide details\",\"FmogyU\":\"Optionen ausblenden\",\"uXNYjR\":\"Ausverkaufte Termine und Uhrzeiten ausblenden\",\"g9RcYX\":\"Datum ausblenden\",\"uMwTx7\":\"Diese Kategorie 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\":\"Hobbies\",\"yY8wAv\":\"Hours\",\"49Tkiw\":\"Wie wird der Rabatt angewendet?\",\"sy9anN\":\"Wie lange ein Kunde nach Erhalt eines Angebots Zeit hat, den Kauf abzuschließen. Leer lassen für kein Zeitlimit.\",\"n2ilNh\":\"How long does the schedule run?\",\"DMr2XN\":\"How often?\",\"cceMns\":\"How VAT is applied to the platform fees we charge you.\",\"FONsLE\":\"https://awesome-events.com\",\"htoh8N\":\"https://webhook-domain.com/webhook\",\"mkWad2\":\"Ungarisch\",\"8Wgd41\":\"Ich bestätige meine Verantwortung als Datenverantwortlicher\",\"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\",\"CY3yHL\":\"Wenn aktiviert, wird diese Kategorie öffentlich nicht angezeigt.\",\"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 last \",[\"0\"],\" min\"],\"u7r0G5\":\"In person — set a venue\",\"/LCAwL\":\"Läuft gerade\",\"F1Xp97\":\"Einzelne Teilnehmer\",\"85e6zs\":\"Liquid-Token einfügen\",\"CTWsuc\":\"Instagram\",\"VopR6B\":\"Instant Stripe payouts\",\"nbfdhU\":\"Integrationen\",\"I8eJ6/\":\"Internal notes on the attendee's ticket\",\"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\",\"Dn4OyV\":\"Eingeladen\",\"IuMGvq\":\"Rechnung\",\"a/bUcL\":\"It happens on more than one date\",\"d+Oe9r\":\"It may have been unpublished or removed. Please check the link and try again.\",\"Lj7sBL\":\"Italienisch\",\"F5/CBH\":\"Artikel\",\"BzfzPK\":\"Artikel\",\"rjyWPb\":\"January\",\"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\":[\"Warteliste beitreten für \",[\"productDisplayName\"]],\"2gMuHR\":\"Beigetreten\",\"u4ex5r\":\"July\",\"zeEQd/\":\"June\",\"MxjCqk\":\"Suchen Sie nur nach Ihren Tickets?\",\"xOTzt5\":\"just now\",\"0RihU9\":\"Just wrapped\",\"lB2hSG\":[\"Halte mich über Neuigkeiten und Veranstaltungen von \",[\"0\"],\" auf dem Laufenden\"],\"ioFA9i\":\"Keep the profit.\",\"o66QSP\":\"label updates\",\"RtKKbA\":\"Last\",\"DruLRc\":\"Letzte 14 Tage\",\"ve9JTU\":\"Nachname ist erforderlich\",\"h0Q9Iw\":\"Letzte Antwort\",\"gw3Ur5\":\"Zuletzt ausgelöst\",\"FIq1Ba\":\"Later\",\"xvnLMP\":\"Latest check-ins\",\"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\":\"Hell\",\"1qY5Ue\":\"Link abgelaufen oder ungültig\",\"gggTBm\":\"LinkedIn\",\"nvOPBA\":\"Links erlaubt\",\"2BBAbc\":\"List\",\"dF6vP6\":\"Live\",\"fpMs2Z\":\"LIVE\",\"D9zTjx\":\"Live-Veranstaltungen\",\"C33p4q\":\"Loaded dates\",\"WdmJIX\":\"Vorschau wird geladen...\",\"IoDI2o\":\"Token werden geladen...\",\"G3Ge9Z\":\"Webhook-Protokolle werden geladen...\",\"NFxlHW\":\"Webhooks werden geladen\",\"E0DoRM\":\"Standort gelöscht\",\"7w8lJU\":\"Standort gespeichert\",\"YsRXDD\":\"Standort aktualisiert\",\"A/kIva\":\"location updates\",\"iyZPPR\":\"Standorte\",\"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\",\"PSRm6/\":\"Meine Tickets nachschlagen\",\"yJFu/X\":\"Hauptbüro\",\"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\":\"Verwalten Sie die Warteliste Ihrer Veranstaltung, sehen Sie Statistiken ein und bieten Sie Teilnehmern Tickets an.\",\"g2npA5\":\"Manuelles Angebot\",\"hg6l4j\":\"March\",\"pqRBOz\":\"Mark as validated (admin override)\",\"2L3vle\":\"Max. Nachrichten / 24h\",\"Qp4HWD\":\"Max. Empfänger / Nachricht\",\"3JzsDb\":\"May\",\"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\":\"Minutes\",\"zz/Wd/\":\"Mode\",\"fpMgHS\":\"Mon\",\"hty0d5\":\"Monday\",\"JbIgPz\":\"Geldbeträge sind ungefähre Summen über alle Währungen\",\"qvF+MT\":\"Überwachen und verwalten Sie fehlgeschlagene Hintergrundprozesse\",\"kY2ll9\":\"month\",\"HajiZl\":\"Monat\",\"+8Nek/\":\"Monthly\",\"1LkxnU\":\"Monthly Pattern\",\"6jefe3\":\"months\",\"f8jrkd\":\"more\",\"JcD7qf\":\"More actions\",\"w36OkR\":\"Meistgesehene Events (Letzte 14 Tage)\",\"+Y/na7\":\"Move all dates earlier or later\",\"3DIpY0\":\"Multiple locations\",\"g9cQCP\":\"Multiple ticket types\",\"GfaxEk\":\"Musik\",\"oVGCGh\":\"Meine Tickets\",\"8/brI5\":\"Name ist erforderlich\",\"sFFArG\":\"Name muss weniger als 255 Zeichen haben\",\"xxU3NX\":\"Nettoeinnahmen\",\"7I8LlL\":\"New capacity\",\"n1GRql\":\"New label\",\"y0Fcpd\":\"Neuer Standort\",\"ArHT/C\":\"Neue Anmeldungen\",\"uK7xWf\":\"New time:\",\"veT5Br\":\"Next occurrence\",\"WXtl5X\":[\"Next: \",[\"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\":\"No attendees to show\",\"PKySlW\":\"No attendees yet for this date.\",\"/UC6qk\":\"Keine Attributionsdaten gefunden\",\"E2vYsO\":\"No capabilities reported by Stripe yet.\",\"amMkpL\":\"Keine Kapazität\",\"d2Jf1f\":\"No change\",\"99ntUF\":\"Keine Check-In-Listen für diese Veranstaltung verfügbar.\",\"wG+knX\":\"No check-ins yet\",\"+dAKxg\":\"Keine Konfigurationen gefunden\",\"LiLk8u\":\"No connections available\",\"eb47T5\":\"Keine Daten für die ausgewählten Filter gefunden. Versuchen Sie, den Datumsbereich oder die Währung anzupassen.\",\"Zc216S\":\"No date added\",\"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\",\"OtJSnL\":\"Keine Termine geplant\",\"gEdNe8\":\"No dates scheduled yet\",\"pZNOT9\":\"Kein Enddatum\",\"dW40Uz\":\"Keine Events gefunden\",\"8pQ3NJ\":\"Keine Veranstaltungen, die in den nächsten 24 Stunden beginnen\",\"8zCZQf\":\"Noch keine Veranstaltungen\",\"Yc5YW6\":\"Keine fehlgeschlagenen Jobs\",\"EpvBAp\":\"Keine Rechnung\",\"XZkeaI\":\"Keine Protokolle gefunden\",\"IcAC6J\":\"Keine passenden Schriften\",\"nrSs2u\":\"Keine Nachrichten gefunden\",\"Rj99yx\":\"No occurrences available\",\"IFU1IG\":\"No occurrences on this date\",\"OVFwlg\":\"Noch keine Bestellfragen\",\"EJ7bVz\":\"Keine Bestellungen gefunden\",\"NEmyqy\":\"Noch keine Bestellungen\",\"a77B6w\":\"No orders yet for this date.\",\"wUv5xQ\":\"Keine Veranstalteraktivität in den letzten 14 Tagen\",\"vLd1tV\":\"No organizer context available.\",\"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\":\"No products configured for this event.\",\"kY7XDn\":\"Keine Produkte haben Wartelisteneinträge\",\"8mw4tm\":\"Nachricht bei fehlenden Produkten\",\"wYiAtV\":\"Keine neuen Kontoanmeldungen\",\"UW90md\":\"Keine Empfänger gefunden\",\"QoAi8D\":\"Keine Antwort\",\"JeO7SI\":\"Keine Antwort\",\"EK/G11\":\"Noch keine Antworten\",\"59OWd3\":\"Keine gespeicherten Standorte\",\"mPdY6W\":\"Keine Vorschläge\",\"3sRuiW\":\"Keine Tickets gefunden\",\"debCrL\":\"Keine Tickets zum Verkauf\",\"k2C0ZR\":\"No upcoming dates\",\"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\":\"non-edited\",\"Itw24Q\":\"Not checked in\",\"x5+Lcz\":\"Nicht Eingecheckt\",\"8n10sz\":\"Nicht Berechtigt\",\"kLvU3F\":\"Notify attendees and stop sales\",\"t9QlBd\":\"November\",\"kAREMN\":\"Number of dates to create\",\"6u1B3O\":\"Occurrence\",\"mmoE62\":\"Occurrence Cancelled\",\"V9flmL\":\"Occurrence Schedule\",\"Kh3WO8\":\"Occurrence Summary\",\"byXCTu\":\"Occurrences\",\"KATw3p\":\"Occurrences (future only)\",\"85rTR2\":\"Occurrences can be configured after creation\",\"dzQfDY\":\"October\",\"BwJKBw\":\"von\",\"9h7RDh\":\"Anbieten\",\"EfK2O6\":\"Platz anbieten\",\"3sVRey\":\"Tickets anbieten\",\"2O7Ybb\":\"Angebots-Zeitlimit\",\"1jUg5D\":\"Angeboten\",\"l+/HS6\":[\"Angebote verfallen nach \",[\"timeoutHours\"],\" Stunden.\"],\"6Aih4U\":\"Offline\",\"nO3VbP\":[\"Im Angebot \",[\"0\"]],\"oXOSPE\":\"Online\",\"aqmy5k\":\"Online — provide connection details\",\"LuZBbx\":\"Online & in-person\",\"IXuOqt\":\"Online & in-person — see schedule\",\"WjSpu5\":\"Online-Veranstaltung\",\"scPxI/\":[\"Nur noch \",[\"capacity\"],\" verfügbar\"],\"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\",\"wkpaqp\":\"Nur Startdatum und -uhrzeit anzeigen\",\"DMk8F0\":\"Only tickets count toward capacity\",\"M2w1ni\":\"Nur mit Promo-Code sichtbar\",\"y8Bm7C\":\"Open check-in\",\"RLz7P+\":\"Open occurrence\",\"cDSdPb\":\"Optionaler Name für die Auswahl, z. B. \\\"HQ-Konferenzraum\\\"\",\"HXMJxH\":\"Optionaler Text für Haftungsausschlüsse, Kontaktinformationen oder Dankesnachrichten (nur einzeilig)\",\"L565X2\":\"Optionen\",\"8m9emP\":\"or add a single date\",\"eBskDE\":\"Oder aktivieren Sie Offline-Zahlungen und deaktivieren Sie Stripe\",\"dSeVIm\":\"order\",\"c/TIyD\":\"Bestellung & Ticket\",\"H5qWhm\":\"Bestellung storniert\",\"b6+Y+n\":\"Bestellung abgeschlossen\",\"x4MLWE\":\"Bestellbestätigung\",\"CsTTH0\":\"Bestellbestätigung erfolgreich erneut gesendet\",\"ppuQR4\":\"Bestellung erstellt\",\"xtQzag\":\"Order details\",\"vrSW9M\":\"Die Bestellung wurde storniert und erstattet. Der Bestellinhaber wurde benachrichtigt.\",\"rzw+wS\":\"Bestellinhaber\",\"oI/hGR\":\"Bestellnummer\",\"RQCXz6\":\"Bestelllimits\",\"SO9AEF\":\"Bestelllimits festgelegt\",\"vu6Arl\":\"Bestellung als bezahlt markiert\",\"sLbJQz\":\"Bestellung nicht gefunden\",\"kvYpYu\":\"Bestellung nicht gefunden\",\"eJ8SvM\":\"Order number, purchase date, purchaser email\",\"FaPYw+\":\"Bestelleigentümer\",\"eB5vce\":\"Bestelleigentümer mit einem bestimmten Produkt\",\"CxLoxM\":\"Bestelleigentümer mit Produkten\",\"UkHo4c\":\"Bestellref.\",\"EZy55F\":\"Bestellung erstattet\",\"6eSHqs\":\"Bestellstatus\",\"oW5877\":\"Bestellsumme\",\"e7eZuA\":\"Bestellung aktualisiert\",\"1SQRYo\":\"Bestellung erfolgreich aktualisiert\",\"3NT0Ck\":\"Bestellung wurde storniert\",\"V5khLm\":\"orders\",\"sd5IMt\":\"Abgeschlossene Bestellungen\",\"5It1cQ\":\"Bestellungen exportiert\",\"UQ0ACV\":\"Bestellungen Gesamt\",\"B/EBQv\":\"Bestellungen:\",\"qtGTNu\":\"Organische Konten\",\"P/JHA4\":\"Veranstalter erfolgreich archiviert\",\"S3CZ5M\":\"Veranstalter-Dashboard\",\"GzjTd0\":\"Veranstalter erfolgreich gelöscht\",\"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\":\"Organizers\",\"/IX/7x\":\"Sonstiges\",\"RsiDDQ\":\"Andere Listen (Ticket Nicht Enthalten)\",\"aDfajK\":\"Outdoors\",\"qMASRF\":\"Ausgehende Nachrichten\",\"iCOVQO\":\"Override\",\"GpFTEc\":\"Override fees on this organizer\",\"M9ZhMP\":\"Override price\",\"cnVIpl\":\"Override removed\",\"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\":\"Past due\",\"xTPjSy\":\"Vergangene Veranstaltungen\",\"/l/ckQ\":\"URL einfügen\",\"URAE3q\":\"Pausiert\",\"4fL/V7\":\"Bezahlen\",\"c2/9VE\":\"Nutzlast\",\"5cxUwd\":\"Zahlungsdatum\",\"ENEPLY\":\"Zahlungsmethode\",\"8Lx2X7\":\"Zahlung erhalten\",\"fx8BTd\":\"Zahlungen nicht verfügbar\",\"C+ylwF\":\"Payouts\",\"UbRKMZ\":\"Pending\",\"UkM20g\":\"Überprüfung ausstehend\",\"dPYu1F\":\"Pro Teilnehmer\",\"mQV/nJ\":\"per min\",\"+kvxv+\":\"pro Bestellung\",\"VlXNyK\":\"Pro Bestellung\",\"NhuGd7\":\"pro Produkt\",\"hauDFf\":\"Pro Ticket\",\"mnF83a\":\"Prozentuale Gebühr\",\"TNLuRD\":\"Percentage fee (%)\",\"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\":\"Permanently remove this date\",\"6kPk3+\":\"Persönliche Daten\",\"zmwvG2\":\"Telefon\",\"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\":\"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\":\"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\":\"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\":\"Please select a date and time\",\"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\",\"OESu7I\":\"Verhindern Sie Überverkäufe durch gemeinsame Nutzung des Bestands über mehrere Tickettypen.\",\"NgVUL2\":\"Vorschau des Bestellformulars\",\"cs5muu\":\"Vorschau der Veranstaltungsseite\",\"Jm2AC3\":\"Price Tier\",\"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\":\"Product settings cannot be edited for cancelled dates.\",\"2339ej\":\"Product settings saved successfully\",\"ldVIlB\":\"Produkt aktualisiert\",\"CP3D8G\":\"Progress\",\"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\",\"W0ETyY\":\"Geben Sie mindestens ein Adressfeld an (Veranstaltungsort, Straße, Stadt oder Land).\",\"2W/7Gz\":\"Provide the following before Stripe's next review to keep payouts flowing.\",\"EEYbdt\":\"Veröffentlichen\",\"JcgJKc\":\"Trotzdem veröffentlichen\",\"evDBV8\":\"Veranstaltung veröffentlichen\",\"2zEfOd\":\"Publish your event\",\"L7nrC8\":\"Mit der Veröffentlichung wird Ihre Veranstaltungsseite öffentlich und Anmeldungen werden möglich.\",\"dsFmM+\":\"Gekauft\",\"JunetL\":\"Purchaser\",\"phmeUH\":\"Purchaser email\",\"ywR4ZL\":\"QR code check-in\",\"oWXNE5\":\"Anz.\",\"biEyJ4\":\"Question answers\",\"k/bJj0\":\"Fragen neu sortiert\",\"b24kPi\":\"Warteschlange\",\"lTPqpM\":\"Quick Tip\",\"fqDzSu\":\"Rate\",\"mnUGVC\":\"Ratenlimit überschritten. Bitte versuchen Sie es später erneut.\",\"t41hVI\":\"Platz erneut anbieten\",\"TNclgc\":\"Reactivate this date? It will be reopened for future sales.\",\"RENQ6j\":\"Bereit, live zu gehen?\",\"uqoRbb\":\"Real-time analytics\",\"xzRvs4\":[\"Produktupdates von \",[\"0\"],\" erhalten.\"],\"pLXbi8\":\"Letzte Kontoanmeldungen\",\"M1HGuR\":\"Recent activity\",\"3kJ0gv\":\"Recent Attendees\",\"qhfiwV\":\"Recent 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\",\"WEYdDv\":\"Recommended\",\"wuhHPE\":\"Recurring\",\"asLqwt\":\"Wiederkehrende Veranstaltung\",\"s3uzsK\":\"Einstellungen für wiederkehrende Veranstaltungen\",\"D0tAMe\":\"Recurring events\",\"JjMIKU\":\"Reddit\",\"HiGkFu\":\"Weiterleitung zu Stripe...\",\"pnoTN5\":\"Empfehlungskonten\",\"ACKu03\":\"Vorschau aktualisieren\",\"vuFYA6\":\"Refund all orders for these dates\",\"4cRUK3\":\"Refund all orders for this date\",\"fKn/k6\":\"Erstattungsbetrag\",\"qY4rpA\":\"Erstattung fehlgeschlagen\",\"FaK/8G\":[\"Bestellung \",[\"0\"],\" erstatten\"],\"MGbi9P\":\"Erstattung ausstehend\",\"BDSRuX\":[\"Erstattet: \",[\"0\"]],\"bU4bS1\":\"Rückerstattungen\",\"rYXfOA\":\"Regionale Einstellungen\",\"5tl0Bp\":\"Registrierungsfragen\",\"ZNo5k1\":\"Remaining\",\"Bjh87R\":\"Remove label from all dates\",\"IVZaEo\":\"Entfernt ausverkaufte Termine und Uhrzeiten vollständig von der Veranstaltungsseite. Wenn deaktiviert, bleiben sie sichtbar und werden als ausverkauft gekennzeichnet.\",\"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\":\"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\":\"Reset to base price\",\"kCn6wb\":\"Wird zurückgesetzt...\",\"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\":\"results\",\"6gRgw8\":\"Wiederholen\",\"1BG8ga\":\"Alle wiederholen\",\"rDC+T6\":\"Job wiederholen\",\"CbnrWb\":\"Zurück zum Event\",\"Lf7TCn\":\"Wiederverwendbare Veranstaltungsorte erscheinen hier automatisch, wenn Sie Veranstaltungen mit Adressen erstellen. Sie können auch eigene hinzufügen.\",\"mdQ0zb\":\"Wiederverwendbare Veranstaltungsorte für Ihre Veranstaltungen. Standorte aus der Autovervollständigung werden hier automatisch gespeichert.\",\"XFOPle\":\"Reuse\",\"1Zehp4\":\"Reuse a Stripe connection from another organizer in this account.\",\"Oo/PLb\":\"Umsatzübersicht\",\"CfuueU\":\"Angebot widerrufen\",\"RIgKv+\":\"Run until a specific date\",\"dFFW9L\":[\"Verkauf endete \",[\"0\"]],\"loCKGB\":[\"Verkauf endet \",[\"0\"]],\"wlfBad\":\"Verkaufszeitraum\",\"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\":\"Verkaufszeitraum festgelegt\",\"ftzaMf\":\"Verkaufszeitraum, Bestelllimits, Sichtbarkeit\",\"zpekWp\":[\"Verkauf beginnt \",[\"0\"]],\"mUv9U4\":\"Verkauf\",\"9KnRdL\":\"Verkauf pausiert\",\"JC3J0k\":\"Sales, attendance, and check-in breakdown per occurrence\",\"3VnlS9\":\"Verkäufe, Bestellungen und Leistungskennzahlen für alle Veranstaltungen\",\"3Q1AWe\":\"Verkäufe:\",\"LeuERW\":\"Same as event\",\"B4nE3N\":\"Beispiel-Ticketpreis\",\"8BRPoH\":\"Beispielort\",\"PiK6Ld\":\"Sat\",\"+5kO8P\":\"Saturday\",\"zJiuDn\":\"Save fee override\",\"NB8Uxt\":\"Save Schedule\",\"KZrfYJ\":\"Social-Media-Links speichern\",\"9Y3hAT\":\"Vorlage speichern\",\"C8ne4X\":\"Ticketdesign speichern\",\"cTI8IK\":\"Save VAT settings\",\"6/TNCd\":\"Umsatzsteuereinstellungen speichern\",\"4RvD9q\":\"Gespeicherter Standort\",\"cgw0cL\":\"Gespeicherte Standorte\",\"Fbqm/I\":\"Saving an override creates a dedicated configuration for this organizer if it's currently on the system default.\",\"I+FvbD\":\"Scannen\",\"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\":\"Für später planen\",\"NAzVVw\":\"Nachricht planen\",\"Fz09JP\":\"Schedule starts on\",\"4ba0NE\":\"Geplant\",\"qcP/8K\":\"Geplante Zeit\",\"A1taO8\":\"Search\",\"ftNXma\":\"Partner suchen...\",\"VMU+zM\":\"Search attendees\",\"VY+Bdn\":\"Nach Kontoname oder E-Mail suchen...\",\"VX+B3I\":\"Suche nach Veranstaltungstitel oder Veranstalter...\",\"R0wEyA\":\"Nach Jobname oder Ausnahme suchen...\",\"YnMfsK\":\"Suche nach Name oder Adresse...\",\"VT+urE\":\"Nach Name oder E-Mail suchen...\",\"GHdjuo\":\"Nach Name, E-Mail oder Konto suchen...\",\"4mBFO7\":\"Search by name, order #, ticket # or email\",\"20ce0U\":\"Nach Bestellnummer, Kundenname oder E-Mail suchen...\",\"4DSz7Z\":\"Nach Betreff, Veranstaltung oder Konto suchen...\",\"nQC7Z9\":\"Search dates...\",\"iRtEpV\":\"Search dates…\",\"JRM7ao\":\"Search for an address\",\"BWF1kC\":\"Nachrichten suchen...\",\"5WYZKZ\":\"Suchergebnisse\",\"IG85fV\":\"Gespeicherte Standorte durchsuchen oder eine Adresse finden...\",\"3aD3GF\":\"Seasonal\",\"ku//5b\":\"Second\",\"Mck5ht\":\"Sichere Kasse\",\"s7tXqF\":\"See schedule\",\"JFap6u\":\"See what Stripe still needs\",\"p7xUrt\":\"Kategorie auswählen\",\"hTKQwS\":\"Select a Date & Time\",\"Ps6Xtf\":\"Select a date to see available times\",\"e4L7bF\":\"Wählen Sie eine Nachricht aus, um ihren Inhalt anzuzeigen\",\"zPRPMf\":\"Stufe auswählen\",\"BFRSTT\":\"Konto auswählen\",\"wgNoIs\":\"Select all\",\"mCB6Je\":\"Alle auswählen\",\"aCEysm\":[\"Select all on \",[\"0\"]],\"a6+167\":\"Veranstaltung auswählen\",\"CFbaPk\":\"Teilnehmergruppe auswählen\",\"88a49s\":\"Select camera\",\"tVW/yo\":\"Währung auswählen\",\"SJQM1I\":\"Select date\",\"n9ZhRa\":\"Enddatum und -zeit auswählen\",\"gTN6Ws\":\"Endzeit auswählen\",\"0U6E9W\":\"Veranstaltungskategorie auswählen\",\"j9cPeF\":\"Ereignistypen auswählen\",\"ypTjHL\":\"Select occurrence\",\"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\":\"selected\",\"ylXj1N\":\"Ausgewählt\",\"uq3CXQ\":\"Sell out your event.\",\"oBXbO4\":\"Selling a physical product? Cap its quantity on the <0>products page instead.\",\"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\":\"Send to all occurrences, or choose a specific one\",\"QEQlnV\":\"Senden Sie Ihre erste Nachricht\",\"IoAuJG\":\"Wird gesendet...\",\"h69WC6\":\"Gesendet\",\"BVu2Hz\":\"Gesendet von\",\"ZFa8wv\":\"Sent to attendees when a scheduled date is cancelled\",\"SPdzrs\":\"An Kunden gesendet, wenn sie eine Bestellung aufgeben\",\"LxSN5F\":\"An jeden Teilnehmer mit seinen Ticketdetails gesendet\",\"hgvbYY\":\"September\",\"5sN96e\":\"Session cancelled\",\"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\":\"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\":\"Richten Sie Check-in-Listen für verschiedene Eingänge, Sitzungen oder Tage ein.\",\"TaWVGe\":\"Set up payouts\",\"JA//e6\":\"Set up schedule\",\"gzXY7l\":\"Set Up Schedule\",\"0Ls9qe\":\"Set up the tickets you'll sell and their prices\",\"xMO+Ao\":\"Richten Sie Ihre Organisation ein\",\"5pEFnq\":\"Set up your schedule\",\"h/9JiC\":\"Set Up Your Schedule\",\"zRRuUD\":\"Set up your schedule in the next steps\",\"ETC76A\":\"Set, change, or remove the date's location or online details\",\"C3htzi\":\"Einstellung aktualisiert\",\"Ohn74G\":\"Einrichtung & 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\":\"Partnerlink teilen\",\"hL7sDJ\":\"Veranstalterseite teilen\",\"jy6QDF\":\"Gemeinsame Kapazitätsverwaltung\",\"jDNHW4\":\"Shift times\",\"tPfIaW\":[\"Shifted times for \",[\"count\"],\" date(s)\"],\"WwlM8F\":\"Erweiterte Optionen anzeigen\",\"cMW+gm\":[\"Alle Plattformen anzeigen (\",[\"0\"],\" weitere mit Werten)\"],\"wXi9pZ\":\"Show attendee notes to non-logged-in staff\",\"4LZFir\":\"Gesamten Datumsbereich anzeigen\",\"UVPI5D\":\"Weniger Plattformen anzeigen\",\"Eu/N/d\":\"Marketing-Opt-in-Kontrollkästchen anzeigen\",\"SXzpzO\":\"Marketing-Opt-in-Kontrollkästchen standardmäßig anzeigen\",\"b33PL9\":\"Mehr Plattformen anzeigen\",\"Eut7p9\":\"Show order details to non-logged-in staff\",\"+RoWKN\":\"Show question answers to non-logged-in staff\",\"jbcx6L\":\"Show remaining capacity on event dates\",\"rXxBOx\":\"Show remaining capacity to buyers\",\"t1LIQW\":[\"Zeige \",[\"0\"],\" von \",[\"totalRows\"],\" Einträgen\"],\"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\":\"Angemeldet\",\"5C7J+P\":\"Single Event\",\"E//btK\":\"Skip manually edited dates\",\"paESr6\":\"Slowakisch\",\"9wu8nm\":\"Snapchat\",\"kIKb9e\":\"Soziales\",\"d0rUsW\":\"Social-Media-Links\",\"j/TOB3\":\"Social-Media-Links & Website\",\"s9KGXU\":\"Verkauft\",\"yp+0jj\":\"sold out\",\"1hupow\":\"Ausverkauft, Warteliste verfügbar\",\"iACSrw\":\"Some details are hidden from public access. Log in to view everything.\",\"Dia6iz\":\"Something went wrong while deleting the image. Please try again.\",\"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\":\"Spirituality\",\"oPaRES\":\"Split check-in across days, areas, or ticket types. Share the link with staff — no account needed on their end.\",\"7JFNej\":\"Sport\",\"/bfV1Y\":\"Staff instructions\",\"tXkhj/\":\"Start\",\"StWUH4\":\"Start check-in\",\"JcQp9p\":\"Startdatum & -zeit\",\"0m/ekX\":\"Startdatum & -zeit\",\"izRfYP\":\"Startdatum ist erforderlich\",\"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/\":\"Statistiken\",\"GVUxAX\":\"Statistiken basieren auf dem Erstellungsdatum des Kontos\",\"29Hx9U\":\"Stats\",\"5ia+r6\":\"Still needed\",\"wuV0bK\":\"Identitätswechsel beenden\",\"s/KaDb\":\"Stripe connected\",\"Bk06QI\":\"Stripe verbunden\",\"akZMv8\":[\"Stripe connection copied from \",[\"0\"],\".\"],\"v0aRY1\":\"Stripe didn't return a setup link. Please try again.\",\"aKtF0O\":\"Stripe nicht verbunden\",\"9i0++A\":\"Stripe Zahlungs-ID\",\"R1lIMV\":\"Stripe will need a few more details soon\",\"FzcCHA\":\"Stripe will walk you through a few quick questions to finish setup.\",\"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\",\"kRWc2g\":\"Einstellungen für wiederkehrende Veranstaltungen 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\":\"Sun\",\"DBC3t5\":\"Sunday\",\"UaISq3\":\"Schwedisch\",\"JZTQI0\":\"Veranstalter wechseln\",\"9YHrNC\":\"Systemstandard\",\"lruQkA\":\"Tap this screen to resume scanning\",\"TJUrME\":[\"Targeting attendees across \",[\"0\"],\" selected sessions.\"],\"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 collaboration\",\"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\":\"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\":\"Vorlage aktiv\",\"QHhZeE\":\"Vorlage erfolgreich erstellt\",\"xrWdPR\":\"Vorlage erfolgreich gelöscht\",\"G04Zjt\":\"Vorlage erfolgreich gespeichert\",\"xowcRf\":\"Nutzungsbedingungen\",\"6K0GjX\":\"Text könnte schwer lesbar sein\",\"nm3Iz/\":\"Danke für Ihre Teilnahme!\",\"pYwj0k\":\"Thanks,\",\"k3IitN\":\"That's a wrap\",\"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.\",\"7oksH+\":[\"Der Rabatt wird von jedem berechtigten Produkt abgezogen. Z. B. \",[\"currencySymbol\"],\"10 Rabatt × 3 Tickets = \",[\"currencySymbol\"],\"30 Rabatt.\"],\"sKL8k2\":\"Der Rabatt wird einmalig vom Bestellwert abgezogen.\",\"cDHM1d\":\"Die E-Mail-Adresse wurde geändert. Der Teilnehmer erhält ein neues Ticket an der aktualisierten E-Mail-Adresse.\",\"tXadb0\":\"Die gesuchte Veranstaltung ist derzeit nicht verfügbar. Sie wurde möglicherweise entfernt, ist abgelaufen oder die URL ist falsch.\",\"5fPdZe\":\"The first date this schedule will generate from.\",\"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.\",\"Np4eLs\":[\"The maximum is \",[\"MAX_PREVIEW\"],\" sessions. Please reduce the date range, frequency, or number of sessions per day.\"],\"sYLeDq\":\"Der gesuchte Veranstalter konnte nicht gefunden werden. Die Seite wurde möglicherweise verschoben oder gelöscht, oder die URL ist falsch.\",\"PCr4zw\":\"The override is recorded in the order audit log.\",\"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\",\"OVSkIF\":\"Der schnelle braune Fuchs springt über den faulen Hund.\",\"z0KrIG\":\"Die geplante Zeit ist erforderlich\",\"EWErQh\":\"Die geplante Zeit muss in der Zukunft liegen\",\"UNd0OU\":[\"The session for \\\"\",[\"title\"],\"\\\" originally scheduled for \",[\"0\"],\" has been rescheduled.\"],\"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\",\"ybBP2H\":\"There are no products available for this date. Please choose another date.\",\"O7g4eR\":\"There are no upcoming dates for this event\",\"062KsE\":\"These details are shown on the attendee's ticket and order summary for this date only.\",\"5Eu+tn\":\"Diese Details werden nur angezeigt, wenn die Bestellung erfolgreich abgeschlossen wurde.\",\"jQjwR+\":\"These details will replace any existing location on the affected dates and show on attendee tickets.\",\"6eaLu/\":\"Diese Preise gelten für alle Termine Ihres Zeitplans, und die Mengen der Stufen begrenzen die Gesamtverkäufe über alle Termine zusammen. Verkaufszeiträume der Stufen gelten global. Preise für einzelne Termine können Sie auf der <0>Terminplan-Seite überschreiben.\",\"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\":\"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\":\"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/\":[\"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.\",\"E9BqZw\":\"This date only\",\"RzEvf5\":\"Diese Veranstaltung ist beendet\",\"kc4bIA\":\"Diese Veranstaltung hat noch keine Tickets oder Produkte, daher können sich Teilnehmer nicht anmelden.\",\"eMaNd0\":\"This event is not available\",\"YClrdK\":\"Diese Veranstaltung ist noch nicht veröffentlicht\",\"GL6z+k\":\"Diese Veranstaltung ist ausverkauft\",\"pIwDhS\":\"This event's dates and times are set on the occurrence schedule.\",\"ny5rgr\":\"This is a recurring event\",\"tc64Zz\":\"Dies ist der Name der Kategorie, der auf der Veranstaltungsseite angezeigt wird.\",\"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.\",\"5DpZrC\":\"Dies begrenzt die Gesamtverkäufe über alle Termine Ihres Zeitplans zusammen – es ist kein Limit pro Termin. Um die Teilnehmerzahl pro Termin zu begrenzen, legen Sie auf der <0>Terminplan-Seite eine Kapazität fest.\",\"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\":\"This occurrence is at capacity\",\"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\",\"qEGn8I\":\"Diese wiederkehrende Veranstaltung hat noch keine Termine, daher gibt es für Teilnehmer nichts zu buchen.\",\"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.\",\"1LuJNw\":\"Dieses Ticket ist nicht mehr gültig\",\"0Ew0uk\":\"Dieses Ticket wurde gerade gescannt. Bitte warten Sie, bevor Sie erneut scannen.\",\"FYXq7k\":[\"This will affect \",[\"loadedAffectedCount\"],\" date(s).\"],\"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\":\"Throughput\",\"+FjWgX\":\"Thu\",\"kkDQ8m\":\"Thursday\",\"0GSPnc\":\"Ticketdesign\",\"EZC/Cu\":\"Ticketdesign erfolgreich gespeichert\",\"bbslmb\":\"Ticket-Designer\",\"1BPctx\":\"Ticket für\",\"HGuXjF\":\"Ticketinhaber\",\"CMUt3Y\":\"Ticketinhaber\",\"awHmAT\":\"Ticket-ID\",\"6czJik\":\"Ticket-Logo\",\"t79rDv\":\"Ticket nicht gefunden\",\"6tmWch\":\"Ticket oder Produkt\",\"1tfWrD\":\"Ticket-Vorschau für\",\"KnjoUA\":\"Ticketpreis\",\"pGZOcL\":\"Ticket erfolgreich erneut gesendet\",\"o02GZM\":\"Ticket sales have ended for this event\",\"8jLPgH\":\"Tickettyp\",\"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\":\"Time\",\"fXf2r5\":[\"Times shown in \",[\"timezoneAbbr\"]],\"dMtLDE\":\"to\",\"/jQctM\":\"An\",\"tiI71C\":\"Um Ihre Limits zu erhöhen, kontaktieren Sie uns unter\",\"ecUA8p\":\"Today\",\"W428WC\":\"Spalten umschalten\",\"BRMXj0\":\"Tomorrow\",\"UBSG1X\":\"Top Veranstalter (Letzte 14 Tage)\",\"3sZ0xx\":\"Gesamtkonten\",\"SMDzqJ\":\"Teilnehmer gesamt\",\"orBECM\":\"Insgesamt eingesammelt\",\"k5CU8c\":\"Einträge gesamt\",\"4B7oCp\":\"Gesamtgebühr\",\"sMMlTX\":\"Total fees\",\"mlvCEl\":\"Total orders\",\"2AW/k5\":\"Gesamtmenge über alle Termine\",\"dp8BCb\":\"Total tax\",\"vb0Q0/\":\"Gesamtbenutzer\",\"oJjplO\":\"Aufrufe Gesamt\",\"rBZ9pz\":\"Tours\",\"orluER\":\"Verfolgen Sie das Kontowachstum und die Leistung nach Attributionsquelle\",\"YwKzpH\":\"Tracking & Analytik\",\"GUA0Jy\":\"Try a different search term or filter\",\"2P/OWN\":\"Try adjusting your filters to see more dates.\",\"ouM5IM\":\"Andere E-Mail versuchen\",\"3DZvE7\":\"Hi.Events kostenlos testen\",\"vq2WxD\":\"Tue\",\"G3myU+\":\"Tuesday\",\"Kz91g/\":\"Türkisch\",\"GdOhw6\":\"Ton ausschalten\",\"KUOhTy\":\"Ton einschalten\",\"dBeuY2\":\"Twitch\",\"QytzQr\":\"Geben Sie \\\"löschen\\\" ein, um zu bestätigen\",\"nWRfmt\":\"Typografie\",\"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\":\"Unable to load attendee details.\",\"GlnD5Y\":\"Unable to load products for this date. Please try again.\",\"17VbmV\":\"Unable to undo check-in\",\"n57zCW\":\"Nicht zugeordnete Konten\",\"9uI/rE\":\"Undo\",\"Ef7StM\":\"Unbekannt\",\"ZBAScj\":\"Unbekannter Teilnehmer\",\"MEIAzV\":\"Unbenannt\",\"K6L5Mx\":\"Unbenannter Standort\",\"7yiFvZ\":\"Unbezahlt\",\"X13xGn\":\"Nicht vertrauenswürdig\",\"gyXpQN\":\"Upcoming events\",\"Pp1sWX\":\"Partner aktualisieren\",\"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\":\"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 listening\",\"dyTklH\":\"USB scanner paused\",\"OHJXlK\":\"Verwenden Sie <0>Liquid-Templating, um Ihre E-Mails zu personalisieren\",\"/rsy72\":\"Use event default\",\"0k4cdb\":\"Verwenden Sie Bestelldetails für alle Teilnehmer. Teilnehmernamen und E-Mails entsprechen den Informationen des Käufers.\",\"bA31T4\":\"Verwenden Sie die Käuferdaten für alle Teilnehmer\",\"PpgtnC\":\"Diese Adresse verwenden\",\"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\":\"VAT number\",\"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\":\"VAT registered\",\"Nfbg76\":\"Umsatzsteuereinstellungen erfolgreich gespeichert\",\"UvYql/\":\"Umsatzsteuer-Einstellungen gespeichert. Wir validieren Ihre Umsatzsteuer-Identifikationsnummer im Hintergrund.\",\"bXn1Jz\":\"VAT settings updated\",\"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\":\"VAT: not registered\",\"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\":\"View All\",\"yA/6BX\":\"View all →\",\"6CQ7/B\":\"View all capabilities\",\"YSE15b\":\"View all check-in lists\",\"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\":[\"View details for \",[\"0\"],\" \",[\"1\"]],\"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\":\"Waiting for scan…\",\"u0n+wz\":\"Warteliste\",\"3RXFtE\":\"Warteliste aktiviert\",\"TwnTPy\":\"Wartelisten-Angebot abgelaufen\",\"aUi/Dz\":\"Warnung: Dies ist die Systemstandardkonfiguration. Änderungen wirken sich auf alle Konten aus, denen keine spezifische Konfiguration zugewiesen ist.\",\"aT/44s\":\"We couldn't copy that Stripe connection. Please try again.\",\"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.\",\"Fjj/5/\":\"We couldn't load the check-in lists. Please try again.\",\"ADsQ23\":\"We couldn't reach Stripe just now. Please try again in a moment.\",\"HJKdzP\":\"Beim Laden dieser Seite ist ein Fehler aufgetreten. Bitte versuchen Sie es erneut.\",\"jegrvW\":\"We partner with Stripe to send payouts straight to your bank account.\",\"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 Ihr Erlebnis 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.\",\"mfM/HJ\":[\"Wir benachrichtigen Sie per E-Mail, wenn ein Platz für \",[\"productDisplayName\"],\" am \",[\"occurrenceDate\"],\" verfügbar wird.\"],\"iy+M+c\":[\"Wir benachrichtigen Sie per E-Mail, wenn ein Platz für \",[\"productDisplayName\"],\" verfügbar wird.\"],\"McuGND\":\"We'll open a message composer with a pre-filled template after saving. You review and send it — nothing is sent automatically.\",\"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\":[\"We've made changes to the schedule for \\\"\",[\"title\"],\"\\\" — \",[\"description\"],\" affecting \",[\"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 integrations\",\"CThMKa\":\"Webhook-Protokolle\",\"I0adYQ\":\"Webhook-Signaturgeheimnis\",\"nuh/Wq\":\"Webhook-URL\",\"8BMPMe\":\"Webhook sendet keine Benachrichtigungen\",\"FSaY52\":\"Webhook sendet Benachrichtigungen\",\"v1kQyJ\":\"Webhooks\",\"On0aF2\":\"Website\",\"0f7U0k\":\"Wed\",\"VAcXNz\":\"Wednesday\",\"64X6l4\":\"week\",\"4XSc4l\":\"Weekly\",\"IAUiSh\":\"weeks\",\"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\":\"What time?\",\"FaSXqR\":\"Welche Art von Veranstaltung?\",\"0WyYF4\":\"What unauthenticated staff can see\",\"2+ExvJ\":\"WhatsApp\",\"cxsKvw\":\"Wenn ein Check-in gelöscht wird\",\"RPe6bE\":\"When a date is cancelled on a recurring event\",\"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, wenn Plätze verfügbar werden.\",\"OIkHj+\":\"Wenn ein Produkt ausverkauft ist, können Kunden einer Warteliste beitreten, um benachrichtigt zu werden, wenn Plätze verfügbar werden. Kunden treten der Warteliste für einen bestimmten Termin bei, und Angebote erfolgen pro Termin.\",\"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\":\"Wenn Kunden Tickets kaufen, erscheinen deren Bestellungen hier.\",\"pm9tpn\":\"Wenn aktiviert, können Käufer ihren Namen und ihre E-Mail-Adresse auf einmal für alle Teilnehmer übernehmen. Deaktivieren Sie diese Option, um die Option \\\"Alle Teilnehmer\\\" zu entfernen; Käufer können ihre Angaben weiterhin für den ersten Teilnehmer übernehmen, die übrigen müssen einzeln eingegeben werden.\",\"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.\",\"uchB0M\":\"Widget-Vorschau\",\"uvIqcj\":\"Workshop\",\"EpknJA\":\"Schreiben Sie Ihre Nachricht hier...\",\"nhtR6Y\":\"X (Twitter)\",\"7qI8sJ\":\"year\",\"zkWmBh\":\"Yearly\",\"+BGee5\":\"years\",\"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+\":\"You can override this for individual dates later.\",\"paWwQ0\":\"Sie können Tickets bei Bedarf weiterhin manuell anbieten.\",\"jTDzpA\":\"Sie können den letzten aktiven Veranstalter Ihres Kontos nicht archivieren.\",\"D8baxD\":\"Sie haben kostenpflichtige Tickets, aber Stripe ist noch nicht verbunden, daher können Sie keine Zahlungen entgegennehmen.\",\"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\",\"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/\":\"You need to create at least one occurrence before you can add attendees to this recurring event.\",\"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\":\"You'll be able to set up dates, schedules, and recurrence rules in the next step.\",\"zKAheG\":\"You're changing session times\",\"MNFIxz\":[\"Sie gehen zu \",[\"0\"],\"!\"],\"ZlLcht\":[\"Sie melden sich für die Warteliste für den \",[\"occurrenceDate\"],\" an.\"],\"qGZz0m\":\"Sie stehen auf der Warteliste!\",\"/5HL6k\":\"Ihnen wurde ein Platz angeboten!\",\"gbjFFH\":\"You've changed the session time\",\"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\":\"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\":\"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 Wartelisten-Angebot ist abgelaufen und wir konnten Ihre Bestellung nicht abschließen. Bitte treten Sie der Warteliste erneut bei, um benachrichtigt zu werden, wenn 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 10d3c83be2..561205e496 100644 --- a/frontend/src/locales/de.po +++ b/frontend/src/locales/de.po @@ -179,11 +179,11 @@ msgstr "" msgid "{totalCount} ticket types" msgstr "{totalCount} Ticketarten" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:554 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:567 msgid "{totalOccurrences} dates" msgstr "" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:547 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:560 msgid "{totalOccurrences} sessions across {0} dates ({1, plural, one {# session} other {# sessions}} per day)" msgstr "" @@ -516,7 +516,7 @@ msgstr "Aktive Events" msgid "Active payment methods" msgstr "" -#: src/components/routes/event/OccurrencesTab/index.tsx:400 +#: src/components/routes/event/OccurrencesTab/index.tsx:402 msgid "Activity" msgstr "" @@ -536,11 +536,11 @@ msgstr "" msgid "Add a description for this check-in list" msgstr "Fügen Sie eine Beschreibung für diese Eincheckliste hinzu" -#: src/components/routes/event/OccurrencesTab/index.tsx:538 +#: src/components/routes/event/OccurrencesTab/index.tsx:541 msgid "Add a Single Date" msgstr "" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:739 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:752 msgid "Add another time" msgstr "" @@ -560,7 +560,7 @@ msgstr "Fügen Sie Notizen zur Bestellung hinzu. Diese sind für den Kunden nich msgid "Add any notes about the order..." msgstr "Fügen Sie Notizen zur Bestellung hinzu..." -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:375 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:382 msgid "Add at least one time" msgstr "" @@ -580,7 +580,7 @@ msgstr "" msgid "Add dates" msgstr "Termine hinzufügen" -#: src/components/routes/event/OccurrencesTab/index.tsx:524 +#: src/components/routes/event/OccurrencesTab/index.tsx:526 msgid "Add Dates" msgstr "" @@ -611,7 +611,7 @@ msgstr "Fügen Sie Anweisungen für Offline-Zahlungen hinzu (z. B. Überweisungs msgid "Add Location" msgstr "Standort hinzufügen" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:743 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:756 msgid "Add multiple times if you run several sessions per day." msgstr "" @@ -796,7 +796,7 @@ msgid "all" msgstr "" #: src/components/layouts/CheckIn/tabs/SearchTab.tsx:133 -#: src/components/routes/event/OccurrencesTab/index.tsx:485 +#: src/components/routes/event/OccurrencesTab/index.tsx:487 msgid "All" msgstr "" @@ -987,7 +987,7 @@ msgstr "Ein unerwarteter Fehler ist aufgetreten." msgid "An unexpected error occurred. Please try again." msgstr "Ein unerwarteter Fehler ist aufgetreten. Bitte versuchen Sie es erneut." -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:849 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:862 msgid "and {0} more..." msgstr "" @@ -1003,7 +1003,7 @@ msgstr "" msgid "Answers provided at checkout (e.g. meal choice)" msgstr "" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:564 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:577 msgid "Any dates you've manually customized will be kept." msgstr "" @@ -1071,7 +1071,7 @@ msgstr "" msgid "Approve Message" msgstr "Nachricht genehmigen" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:74 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:76 msgid "April" msgstr "" @@ -1127,7 +1127,7 @@ msgstr "Sind Sie sicher, dass Sie diese Veranstaltung archivieren möchten? Sie 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." -#: src/components/routes/event/OccurrencesTab/index.tsx:213 +#: src/components/routes/event/OccurrencesTab/index.tsx:215 msgid "Are you sure you want to cancel {count} date(s)? Affected attendees will be notified by email." msgstr "" @@ -1159,7 +1159,7 @@ msgstr "Sind Sie sicher, dass Sie diese Konfiguration löschen möchten? Dies ka #: src/components/modals/ManageOccurrenceModal/index.tsx:58 #: src/components/routes/event/OccurrenceDetail/index.tsx:84 -#: src/components/routes/event/OccurrencesTab/index.tsx:182 +#: src/components/routes/event/OccurrencesTab/index.tsx:184 msgid "Are you sure you want to delete this date? This action cannot be undone." msgstr "" @@ -1446,7 +1446,7 @@ msgstr "Attributionsaufschlüsselung" msgid "Attribution Value" msgstr "Attributionswert" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:78 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:80 msgid "August" msgstr "" @@ -1625,7 +1625,7 @@ msgstr "Brasilianisches Portugiesisch" msgid "Built-in fraud protection" msgstr "" -#: src/components/routes/event/OccurrencesTab/index.tsx:515 +#: src/components/routes/event/OccurrencesTab/index.tsx:517 msgid "Bulk Edit" msgstr "" @@ -1674,11 +1674,11 @@ msgstr "Durch das Hinzufügen von Tracking-Pixeln bestätigen Sie, dass Sie und msgid "By continuing, you agree to the <0>{0} Terms of Service" msgstr "Durch Fortfahren stimmen Sie den <0>{0} Nutzungsbedingungen zu" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:628 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:641 msgid "By day of month" msgstr "" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:629 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:642 msgid "By day of week" msgstr "" @@ -1698,7 +1698,7 @@ msgstr "Anwendungsgebühren umgehen" msgid "Calculation Type" msgstr "Berechnungstyp" -#: src/components/routes/event/OccurrencesTab/index.tsx:471 +#: src/components/routes/event/OccurrencesTab/index.tsx:473 msgid "Calendar" msgstr "" @@ -1735,7 +1735,7 @@ msgstr "" #: src/components/modals/ManageOrderModal/index.tsx:209 #: src/components/modals/PublishEventModal/index.tsx:208 #: src/components/routes/event/messages.tsx:80 -#: src/components/routes/event/OccurrencesTab/index.tsx:497 +#: src/components/routes/event/OccurrencesTab/index.tsx:499 #: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:272 #: src/components/routes/event/OccurrencesTab/OccurrenceEditModal/index.tsx:306 #: src/components/routes/event/OccurrencesTab/OccurrenceMenu.tsx:61 @@ -1748,8 +1748,8 @@ msgstr "" msgid "Cancel" msgstr "Abbrechen" -#: src/components/routes/event/OccurrencesTab/index.tsx:209 -#: src/components/routes/event/OccurrencesTab/index.tsx:221 +#: src/components/routes/event/OccurrencesTab/index.tsx:211 +#: src/components/routes/event/OccurrencesTab/index.tsx:223 msgid "Cancel {count} date(s)" msgstr "" @@ -1809,7 +1809,7 @@ msgstr "Das Stornieren wird alle mit dieser Bestellung verbundenen Teilnehmer st msgid "Cancelled" msgstr "Abgesagt" -#: src/components/routes/event/OccurrencesTab/index.tsx:235 +#: src/components/routes/event/OccurrencesTab/index.tsx:237 msgid "Cancelling {0} date(s). This may take a moment to complete." msgstr "" @@ -1819,7 +1819,7 @@ msgstr "Die Standardkonfiguration des Systems kann nicht gelöscht werden" #: src/components/forms/CapaciyAssigmentForm/index.tsx:42 #: src/components/routes/event/OccurrencesTab/OccurrenceEditModal/index.tsx:503 -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:811 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:824 msgid "Capacity" msgstr "Kapazität" @@ -2154,7 +2154,7 @@ msgid "City" msgstr "Stadt" #: src/components/common/OccurrenceSelect/index.tsx:133 -#: src/components/routes/event/OccurrencesTab/index.tsx:503 +#: src/components/routes/event/OccurrencesTab/index.tsx:505 msgid "Clear" msgstr "" @@ -2174,7 +2174,7 @@ msgstr "Suchtext löschen" msgid "Clearing removes any per-date override. Affected dates will fall back to the event's default location." msgstr "" -#: src/components/routes/event/OccurrencesTab/index.tsx:331 +#: src/components/routes/event/OccurrencesTab/index.tsx:333 msgid "Click to cancel" msgstr "" @@ -2182,7 +2182,7 @@ msgstr "" msgid "Click to copy" msgstr "Zum Kopieren klicken" -#: src/components/routes/event/OccurrencesTab/index.tsx:333 +#: src/components/routes/event/OccurrencesTab/index.tsx:335 msgid "Click to reopen for new sales" msgstr "" @@ -2743,7 +2743,7 @@ msgstr "{0}-Vorlage erstellen" msgid "Create a custom widget to sell tickets on your site." msgstr "Erstellen Sie ein individuelles Widget, um Tickets auf Ihrer Website zu verkaufen." -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:785 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:798 msgid "Create a fixed number" msgstr "" @@ -2879,7 +2879,7 @@ msgstr "Promo-Code erstellen" msgid "Create Question" msgstr "Frage erstellen" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:864 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:877 msgid "Create Schedule" msgstr "" @@ -2927,6 +2927,10 @@ msgstr "Erstellen Sie Ihre eigene Veranstaltung" msgid "Created" msgstr "Erstellt" +#: src/components/routes/event/OccurrencesTab/index.tsx:549 +msgid "Creating {0} dates. This may take a moment." +msgstr "{0} Termine werden erstellt. Dies kann einen Moment dauern." + #: src/components/routes/welcome/index.tsx:472 msgid "Creating Event..." msgstr "Veranstaltung wird erstellt..." @@ -3066,7 +3070,7 @@ msgstr "Passen Sie Ihre Veranstaltungsseite an" msgid "Customize your organizer page appearance" msgstr "Passen Sie das Erscheinungsbild Ihrer Veranstalterseite an" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:56 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:58 #: src/components/routes/product-widget/OccurrenceSelector/index.tsx:32 msgid "Daily" msgstr "" @@ -3155,7 +3159,7 @@ msgstr "" #: src/components/modals/ManageOccurrenceModal/index.tsx:61 #: src/components/routes/event/OccurrenceDetail/index.tsx:87 -#: src/components/routes/event/OccurrencesTab/index.tsx:184 +#: src/components/routes/event/OccurrencesTab/index.tsx:186 msgid "Date deleted" msgstr "" @@ -3168,7 +3172,7 @@ msgstr "" msgid "Date reactivated" msgstr "" -#: src/components/routes/event/OccurrencesTab/index.tsx:198 +#: src/components/routes/event/OccurrencesTab/index.tsx:200 msgid "Date reopened for new sales" msgstr "" @@ -3184,15 +3188,15 @@ msgstr "" msgid "Dates with sessions" msgstr "" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:93 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:95 msgid "day" msgstr "" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:659 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:672 msgid "Day" msgstr "" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:676 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:689 msgid "Day of Month" msgstr "" @@ -3200,19 +3204,19 @@ msgstr "" msgid "Day one capacity" msgstr "Kapazität am ersten Tag" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:101 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:103 msgid "days" msgstr "" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:635 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:648 msgid "Days of Month" msgstr "" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:605 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:618 msgid "Days of Week" msgstr "" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:82 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:84 msgid "December" msgstr "" @@ -3230,7 +3234,7 @@ msgstr "Standard" msgid "Default attendee information collection" msgstr "Standard-Erfassung von Teilnehmerinformationen" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:815 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:828 msgid "Default capacity per date" msgstr "" @@ -3253,7 +3257,7 @@ msgstr "löschen" #: src/components/common/QuestionsTable/index.tsx:150 #: src/components/common/TaxAndFeeList/index.tsx:81 #: src/components/routes/admin/FailedJobs/index.tsx:209 -#: src/components/routes/event/OccurrencesTab/index.tsx:500 +#: src/components/routes/event/OccurrencesTab/index.tsx:502 #: src/components/routes/event/OccurrencesTab/OccurrenceMenu.tsx:62 msgid "Delete" msgstr "Löschen" @@ -3262,7 +3266,7 @@ msgstr "Löschen" msgid "Delete \"{0}\"?" msgstr "\"{0}\" löschen?" -#: src/components/routes/event/OccurrencesTab/index.tsx:247 +#: src/components/routes/event/OccurrencesTab/index.tsx:249 msgid "Delete {count} selected date(s)? Dates with orders will be skipped. This cannot be undone." msgstr "" @@ -3344,7 +3348,7 @@ msgstr "Diese Frage löschen? Dies kann nicht rückgängig gemacht werden." msgid "Delete webhook" msgstr "Webhook löschen" -#: src/components/routes/event/OccurrencesTab/index.tsx:253 +#: src/components/routes/event/OccurrencesTab/index.tsx:255 msgid "Deleted {0} date(s)" msgstr "" @@ -3565,7 +3569,7 @@ msgstr "z.B. 180 (3 Stunden)" #: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:452 #: src/components/routes/event/OccurrencesTab/OccurrenceEditModal/index.tsx:450 -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:714 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:727 msgid "e.g. Morning Session" msgstr "" @@ -3724,7 +3728,7 @@ msgstr "Webhook bearbeiten" msgid "Edit Webhook" msgstr "Webhook bearbeiten" -#: src/components/routes/event/OccurrencesTab/index.tsx:306 +#: src/components/routes/event/OccurrencesTab/index.tsx:308 msgid "Edited" msgstr "" @@ -3913,7 +3917,7 @@ msgstr "Warteliste aktivieren" msgid "Enabled" msgstr "Aktiviert" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:704 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:717 msgid "End" msgstr "" @@ -3934,7 +3938,7 @@ msgstr "Enddatum & -zeit (optional)" msgid "End date must be after start date" msgstr "Das Enddatum muss nach dem Startdatum liegen" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:771 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:784 msgid "End on a date" msgstr "" @@ -4409,7 +4413,7 @@ msgstr "Teilnehmer konnte nicht abgesagt werden" msgid "Failed to cancel date" msgstr "" -#: src/components/routes/event/OccurrencesTab/index.tsx:239 +#: src/components/routes/event/OccurrencesTab/index.tsx:241 msgid "Failed to cancel dates" msgstr "" @@ -4429,10 +4433,14 @@ msgstr "Partner konnte nicht erstellt werden" msgid "Failed to create configuration" msgstr "Konfiguration konnte nicht erstellt werden" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:530 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:543 msgid "Failed to create schedule" msgstr "" +#: src/hooks/useOccurrenceGenerationPolling.ts:44 +msgid "Failed to create schedule. Please try again." +msgstr "Der Zeitplan konnte nicht erstellt werden. Bitte versuchen Sie es erneut." + #: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:192 #: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:195 msgid "Failed to create template" @@ -4444,7 +4452,7 @@ msgstr "Konfiguration konnte nicht gelöscht werden" #: src/components/modals/ManageOccurrenceModal/index.tsx:64 #: src/components/routes/event/OccurrenceDetail/index.tsx:90 -#: src/components/routes/event/OccurrencesTab/index.tsx:185 +#: src/components/routes/event/OccurrencesTab/index.tsx:187 msgid "Failed to delete date" msgstr "" @@ -4452,7 +4460,7 @@ msgstr "" msgid "Failed to delete date. It may have existing orders." msgstr "" -#: src/components/routes/event/OccurrencesTab/index.tsx:256 +#: src/components/routes/event/OccurrencesTab/index.tsx:258 msgid "Failed to delete dates" msgstr "" @@ -4540,7 +4548,7 @@ msgstr "Entfernen von der Warteliste fehlgeschlagen" msgid "Failed to remove override" msgstr "" -#: src/components/routes/event/OccurrencesTab/index.tsx:199 +#: src/components/routes/event/OccurrencesTab/index.tsx:201 msgid "Failed to reopen date" msgstr "" @@ -4677,7 +4685,7 @@ msgstr "" msgid "Fast payouts to your bank" msgstr "" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:72 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:74 msgid "February" msgstr "" @@ -4769,7 +4777,7 @@ msgstr "" msgid "Finish setup" msgstr "" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:63 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:65 msgid "First" msgstr "" @@ -4882,7 +4890,7 @@ msgstr "Fußzeilentext" msgid "Forgot password?" msgstr "Passwort vergessen?" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:66 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:68 msgid "Fourth" msgstr "" @@ -4909,11 +4917,11 @@ msgstr "Kostenloses Produkt, keine Zahlungsinformationen erforderlich" msgid "French" msgstr "Französisch" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:586 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:599 msgid "Frequency" msgstr "" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:50 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:52 msgid "Fri" msgstr "" @@ -5004,7 +5012,7 @@ msgstr "GitHub" #: src/components/routes/event/OccurrenceDetail/index.tsx:72 #: src/components/routes/event/OccurrencesTab/cancelOccurrenceDialog.tsx:49 -#: src/components/routes/event/OccurrencesTab/index.tsx:221 +#: src/components/routes/event/OccurrencesTab/index.tsx:223 #: src/components/routes/event/OccurrencesTab/OccurrenceEditModal/index.tsx:339 #: src/components/routes/event/OccurrencesTab/OccurrenceEditModal/index.tsx:363 msgid "Go Back" @@ -5271,7 +5279,7 @@ msgstr "Wie wird der Rabatt angewendet?" msgid "How long a customer has to complete their purchase after receiving an offer. Leave empty for no timeout." msgstr "Wie lange ein Kunde nach Erhalt eines Angebots Zeit hat, den Kauf abzuschließen. Leer lassen für kein Zeitlimit." -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:750 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:763 msgid "How long does the schedule run?" msgstr "" @@ -5283,7 +5291,7 @@ msgstr "Wie viele Minuten hat der Kunde Zeit, um seine Bestellung abzuschließen msgid "How many times can this code be used?" msgstr "Wie oft kann dieser Code verwendet werden?" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:581 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:594 msgid "How often?" msgstr "" @@ -5589,7 +5597,7 @@ msgstr "Artikel" msgid "Items" msgstr "Artikel" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:71 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:73 msgid "January" msgstr "" @@ -5640,11 +5648,11 @@ msgstr "Warteliste beitreten für {productDisplayName}" msgid "Joined" msgstr "Beigetreten" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:77 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:79 msgid "July" msgstr "" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:76 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:78 msgid "June" msgstr "" @@ -5670,7 +5678,7 @@ msgstr "" #: src/components/forms/ProductForm/index.tsx:108 #: src/components/routes/event/OccurrencesTab/OccurrenceEditModal/index.tsx:449 -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:711 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:724 #: src/components/routes/event/Reports/OccurrenceSummaryReport/index.tsx:45 msgid "Label" msgstr "Etikett" @@ -5685,7 +5693,7 @@ msgstr "" msgid "Language" msgstr "Sprache" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:67 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:69 msgid "Last" msgstr "" @@ -5794,7 +5802,7 @@ msgid "Leave blank to use the default word \"Invoice\"" msgstr "Leer lassen, um das Standardwort \"Rechnung\" zu verwenden" #: src/components/routes/event/OccurrencesTab/OccurrenceEditModal/index.tsx:507 -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:816 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:829 msgid "Leave empty for unlimited" msgstr "" @@ -5834,7 +5842,7 @@ msgstr "LinkedIn" msgid "Links Allowed" msgstr "Links erlaubt" -#: src/components/routes/event/OccurrencesTab/index.tsx:470 +#: src/components/routes/event/OccurrencesTab/index.tsx:472 msgid "List" msgstr "" @@ -6003,7 +6011,7 @@ msgstr "" msgid "Manage attendee" msgstr "Teilnehmer verwalten" -#: src/components/routes/event/OccurrencesTab/index.tsx:460 +#: src/components/routes/event/OccurrencesTab/index.tsx:462 msgid "Manage dates and times for your recurring event" msgstr "" @@ -6074,7 +6082,7 @@ msgstr "Einen Teilnehmer manuell hinzufügen" msgid "Manually Add Attendee" msgstr "Teilnehmer manuell hinzufügen" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:73 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:75 msgid "March" msgstr "" @@ -6098,7 +6106,7 @@ msgstr "Max. Empfänger / Nachricht" msgid "Maximum Per Order" msgstr "Maximal pro Bestellung" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:75 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:77 msgid "May" msgstr "" @@ -6214,7 +6222,7 @@ msgstr "Verschiedene Einstellungen" msgid "Mode" msgstr "" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:46 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:48 msgid "Mon" msgstr "" @@ -6230,24 +6238,24 @@ msgstr "Geldbeträge sind ungefähre Summen über alle Währungen" msgid "Monitor and manage failed background jobs" msgstr "Überwachen und verwalten Sie fehlgeschlagene Hintergrundprozesse" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:95 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:97 msgid "month" msgstr "" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:671 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:684 msgid "Month" msgstr "Monat" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:58 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:60 #: src/components/routes/product-widget/OccurrenceSelector/index.tsx:41 msgid "Monthly" msgstr "" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:624 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:637 msgid "Monthly Pattern" msgstr "" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:103 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:105 msgid "months" msgstr "" @@ -6516,7 +6524,7 @@ msgstr "" msgid "No dates match the current filters." msgstr "" -#: src/components/routes/event/OccurrencesTab/index.tsx:570 +#: src/components/routes/event/OccurrencesTab/index.tsx:580 msgid "No dates match your filters" msgstr "" @@ -6529,7 +6537,7 @@ msgstr "" msgid "No dates scheduled" msgstr "Keine Termine geplant" -#: src/components/routes/event/OccurrencesTab/index.tsx:570 +#: src/components/routes/event/OccurrencesTab/index.tsx:580 msgid "No dates scheduled yet" msgstr "" @@ -6820,11 +6828,11 @@ msgstr "" msgid "Notify organizer of new orders" msgstr "Veranstalter über neue Bestellungen benachrichtigen" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:81 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:83 msgid "November" msgstr "" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:800 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:813 msgid "Number of dates to create" msgstr "" @@ -6849,7 +6857,7 @@ msgid "Occurrence Cancelled" msgstr "" #: src/components/layouts/Event/index.tsx:113 -#: src/components/routes/event/OccurrencesTab/index.tsx:461 +#: src/components/routes/event/OccurrencesTab/index.tsx:463 msgid "Occurrence Schedule" msgstr "" @@ -6871,7 +6879,7 @@ msgstr "" msgid "Occurrences can be configured after creation" msgstr "" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:80 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:82 msgid "October" msgstr "" @@ -6965,7 +6973,7 @@ msgstr "Laufend" #: src/components/common/EventCard/index.tsx:103 #: src/components/layouts/OrganizerHomepage/EventCard/index.tsx:49 -#: src/components/routes/event/OccurrencesTab/index.tsx:316 +#: src/components/routes/event/OccurrencesTab/index.tsx:318 #: src/components/routes/event/OccurrencesTab/OccurrenceEditModal/index.tsx:473 #: src/components/routes/my-tickets/index.tsx:56 #: src/components/routes/product-widget/OccurrenceSelector/index.tsx:122 @@ -7080,7 +7088,7 @@ msgstr "Optionen" msgid "or" msgstr "oder" -#: src/components/routes/event/OccurrencesTab/index.tsx:593 +#: src/components/routes/event/OccurrencesTab/index.tsx:603 msgid "or add a single date" msgstr "" @@ -7088,7 +7096,7 @@ msgstr "" msgid "Or enable offline payments and disable Stripe" msgstr "Oder aktivieren Sie Offline-Zahlungen und deaktivieren Sie Stripe" -#: src/components/routes/event/OccurrencesTab/index.tsx:413 +#: src/components/routes/event/OccurrencesTab/index.tsx:415 msgid "order" msgstr "" @@ -7250,7 +7258,7 @@ msgstr "Bestellung erfolgreich aktualisiert" msgid "Order was cancelled" msgstr "Bestellung wurde storniert" -#: src/components/routes/event/OccurrencesTab/index.tsx:413 +#: src/components/routes/event/OccurrencesTab/index.tsx:415 #: src/components/routes/event/orders.tsx:197 msgid "orders" msgstr "" @@ -7503,7 +7511,7 @@ msgid "Passwords are not the same" msgstr "Passwörter sind nicht gleich" #: src/components/layouts/OrganizerHomepage/index.tsx:291 -#: src/components/routes/event/OccurrencesTab/index.tsx:484 +#: src/components/routes/event/OccurrencesTab/index.tsx:486 #: src/components/routes/organizer/Reports/EventsPerformanceReport/index.tsx:30 msgid "Past" msgstr "Vergangenheit" @@ -7707,15 +7715,15 @@ msgstr "Persönliche Daten" msgid "Phone" msgstr "Telefon" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:372 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:379 msgid "Pick an end date" msgstr "" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:380 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:387 msgid "Pick at least one day of the month" msgstr "" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:369 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:376 msgid "Pick at least one day of the week" msgstr "" @@ -7765,7 +7773,7 @@ msgstr "Plattformumsatz" msgid "Please add at least one option" msgstr "Bitte fügen Sie mindestens eine Option hinzu" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:527 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:540 #: src/hooks/useFormErrorResponseHandler.tsx:18 msgid "Please check the provided information is correct" msgstr "Bitte überprüfen Sie, ob die angegebenen Informationen korrekt sind" @@ -7895,7 +7903,7 @@ msgstr "Beliebte Events (Letzte 14 Tage)" msgid "Portuguese" msgstr "Portugiesisch" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:654 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:667 msgid "Position" msgstr "" @@ -8385,7 +8393,7 @@ msgstr "Empfehlungskonten" msgid "Refresh Preview" msgstr "Vorschau aktualisieren" -#: src/components/routes/event/OccurrencesTab/index.tsx:216 +#: src/components/routes/event/OccurrencesTab/index.tsx:218 msgid "Refund all orders for these dates" msgstr "" @@ -8494,11 +8502,11 @@ msgstr "Entfernt ausverkaufte Termine und Uhrzeiten vollständig von der Veranst msgid "Reopen for new sales" msgstr "" -#: src/components/routes/event/OccurrencesTab/index.tsx:192 +#: src/components/routes/event/OccurrencesTab/index.tsx:194 msgid "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." msgstr "" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:591 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:604 msgid "Repeat every" msgstr "" @@ -8699,7 +8707,7 @@ msgstr "Angebot widerrufen" msgid "Role" msgstr "Rolle" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:772 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:785 msgid "Run until a specific date" msgstr "" @@ -8786,7 +8794,7 @@ msgstr "Beispiel-Ticketpreis" msgid "Sample Venue" msgstr "Beispielort" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:51 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:53 msgid "Sat" msgstr "" @@ -8836,7 +8844,7 @@ msgstr "" msgid "Save Organizer" msgstr "Organizer speichern" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:864 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:877 msgid "Save Schedule" msgstr "" @@ -8900,11 +8908,12 @@ msgstr "" msgid "Schedule added" msgstr "" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:520 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:530 +#: src/hooks/useOccurrenceGenerationPolling.ts:36 msgid "Schedule created successfully" msgstr "" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:793 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:806 msgid "Schedule ends on" msgstr "" @@ -8916,7 +8925,7 @@ msgstr "Für später planen" msgid "Schedule Message" msgstr "Nachricht planen" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:755 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:768 msgid "Schedule starts on" msgstr "" @@ -9039,7 +9048,7 @@ msgstr "Suchen..." msgid "Seasonal" msgstr "" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:64 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:66 msgid "Second" msgstr "" @@ -9215,7 +9224,7 @@ msgstr "Wählen Sie aus, welche Ereignisse diesen Webhook auslösen" msgid "Select..." msgstr "Wählen..." -#: src/components/routes/event/OccurrencesTab/index.tsx:495 +#: src/components/routes/event/OccurrencesTab/index.tsx:497 msgid "selected" msgstr "" @@ -9345,7 +9354,7 @@ msgstr "SEO-Einstellungen" msgid "SEO Title" msgstr "SEO-Titel" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:79 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:81 msgid "September" msgstr "" @@ -9373,7 +9382,7 @@ msgstr "Legen Sie Standardeinstellungen für neue Veranstaltungen fest, die unte msgid "Set how long each date lasts" msgstr "" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:784 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:797 msgid "Set number of dates" msgstr "" @@ -9393,7 +9402,7 @@ msgstr "Legen Sie die Startnummer für die Rechnungsnummerierung fest. Dies kann msgid "Set to unlimited (remove limit)" msgstr "" -#: src/components/routes/event/OccurrencesTab/index.tsx:575 +#: src/components/routes/event/OccurrencesTab/index.tsx:585 msgid "Set up a recurring schedule to automatically create dates, or add them one at a time." msgstr "" @@ -9410,8 +9419,8 @@ msgstr "" msgid "Set up schedule" msgstr "" -#: src/components/routes/event/OccurrencesTab/index.tsx:532 -#: src/components/routes/event/OccurrencesTab/index.tsx:586 +#: src/components/routes/event/OccurrencesTab/index.tsx:535 +#: src/components/routes/event/OccurrencesTab/index.tsx:596 msgid "Set Up Schedule" msgstr "" @@ -9427,7 +9436,7 @@ msgstr "Richten Sie Ihre Organisation ein" msgid "Set up your schedule" msgstr "" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:569 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:582 msgid "Set Up Your Schedule" msgstr "" @@ -9564,7 +9573,7 @@ msgstr "Steuern und Gebühren separat ausweisen" msgid "Showing {0} of {totalRows} records" msgstr "Zeige {0} von {totalRows} Einträgen" -#: src/components/routes/event/OccurrencesTab/index.tsx:614 +#: src/components/routes/event/OccurrencesTab/index.tsx:624 msgid "Showing {0}–{1} of {2}" msgstr "" @@ -9645,7 +9654,7 @@ msgstr "Social-Media-Links & Website" #: src/components/common/ProductsTable/SortableProduct/index.tsx:387 #: src/components/modals/ManageOccurrenceModal/index.tsx:186 -#: src/components/routes/event/OccurrencesTab/index.tsx:369 +#: src/components/routes/event/OccurrencesTab/index.tsx:371 msgid "Sold" msgstr "Verkauft" @@ -9753,7 +9762,7 @@ msgstr "" msgid "Standard product with a fixed price" msgstr "Standardprodukt mit festem Preis" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:696 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:709 msgid "Start" msgstr "" @@ -9846,7 +9855,7 @@ msgstr "" #: src/components/routes/admin/Messages/index.tsx:120 #: src/components/routes/admin/Messages/index.tsx:167 #: src/components/routes/admin/Messages/index.tsx:294 -#: src/components/routes/event/OccurrencesTab/index.tsx:326 +#: src/components/routes/event/OccurrencesTab/index.tsx:328 #: src/components/routes/event/Reports/OccurrenceSummaryReport/index.tsx:51 #: src/components/routes/event/Reports/PromoCodesReport/index.tsx:88 #: src/components/routes/organizer/Reports/EventsPerformanceReport/index.tsx:62 @@ -10104,7 +10113,7 @@ msgstr "Sommermusikfestival {0}" msgid "Summer Music Festival 2025" msgstr "Sommer Musik Festival 2025" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:52 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:54 msgid "Sun" msgstr "" @@ -10231,7 +10240,7 @@ msgstr "Erzählen Sie uns von Ihrer Veranstaltung" msgid "Tell us about your organization. This information will be displayed on your event pages." msgstr "Erzählen Sie uns von Ihrer Organisation. Diese Informationen werden auf Ihren Veranstaltungsseiten angezeigt." -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:573 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:586 msgid "Tell us how often your event repeats and we'll create all the dates for you." msgstr "" @@ -10325,7 +10334,7 @@ msgstr "Die E-Mail-Adresse wurde geändert. Der Teilnehmer erhält ein neues Tic msgid "The event you're looking for is not available at the moment. It may have been removed, expired, or the URL might be incorrect." msgstr "Die gesuchte Veranstaltung ist derzeit nicht verfügbar. Sie wurde möglicherweise entfernt, ist abgelaufen oder die URL ist falsch." -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:756 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:769 msgid "The first date this schedule will generate from." msgstr "" @@ -10345,7 +10354,7 @@ msgstr "Der Link, auf den Sie zugreifen möchten, ist abgelaufen oder nicht mehr msgid "The link you clicked is invalid." msgstr "Der Link, auf den Sie geklickt haben, ist ungültig." -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:840 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:853 msgid "The maximum is {MAX_PREVIEW} sessions. Please reduce the date range, frequency, or number of sessions per day." msgstr "" @@ -10481,7 +10490,7 @@ msgstr "Diese Vorlagen werden als Standards für alle Veranstaltungen in Ihrer O 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." -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:65 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:67 msgid "Third" msgstr "" @@ -10744,7 +10753,7 @@ msgstr "Dies ist für Kunden nicht sichtbar, hilft Ihnen aber, den Partner zu id msgid "Throughput" msgstr "" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:49 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:51 msgid "Thu" msgstr "" @@ -10881,7 +10890,7 @@ msgstr "Gestufte Produkte ermöglichen es Ihnen, mehrere Preisoptionen für dass msgid "TikTok" msgstr "TikTok" -#: src/components/routes/event/OccurrencesTab/index.tsx:290 +#: src/components/routes/event/OccurrencesTab/index.tsx:292 msgid "Time" msgstr "" @@ -10912,7 +10921,7 @@ msgstr "Anzahl der Verwendungen" msgid "Timezone" msgstr "Zeitzone" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:702 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:715 msgid "to" msgstr "" @@ -11056,7 +11065,7 @@ msgstr "Tracking & Analytik" msgid "Try a different search term or filter" msgstr "" -#: src/components/routes/event/OccurrencesTab/index.tsx:574 +#: src/components/routes/event/OccurrencesTab/index.tsx:584 msgid "Try adjusting your filters to see more dates." msgstr "" @@ -11069,7 +11078,7 @@ msgstr "Andere E-Mail versuchen" msgid "Try Hi.Events Free" msgstr "Hi.Events kostenlos testen" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:47 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:49 msgid "Tue" msgstr "" @@ -11232,7 +11241,7 @@ msgstr "Nicht vertrauenswürdig" #: src/components/common/EventsDashboardStatusButtons/index.tsx:20 #: src/components/common/EventStatusBadge/index.tsx:16 #: src/components/layouts/OrganizerHomepage/index.tsx:285 -#: src/components/routes/event/OccurrencesTab/index.tsx:483 +#: src/components/routes/event/OccurrencesTab/index.tsx:485 #: src/components/routes/organizer/Reports/EventsPerformanceReport/index.tsx:33 msgid "Upcoming" msgstr "Bevorstehende" @@ -11880,7 +11889,7 @@ msgstr "Webhooks" msgid "Website" msgstr "Website" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:48 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:50 msgid "Wed" msgstr "" @@ -11888,16 +11897,16 @@ msgstr "" msgid "Wednesday" msgstr "" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:94 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:96 msgid "week" msgstr "" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:57 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:59 #: src/components/routes/product-widget/OccurrenceSelector/index.tsx:35 msgid "Weekly" msgstr "" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:102 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:104 msgid "weeks" msgstr "" @@ -11953,7 +11962,7 @@ msgstr "Für welche Produkte soll diese Kapazität gelten?" msgid "What time will you be arriving?" msgstr "Um wie viel Uhr werden Sie ankommen?" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:688 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:701 msgid "What time?" msgstr "" @@ -12140,7 +12149,7 @@ msgstr "Schreiben Sie Ihre Nachricht hier..." msgid "X (Twitter)" msgstr "X (Twitter)" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:96 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:98 msgid "year" msgstr "" @@ -12150,12 +12159,12 @@ msgstr "" msgid "Year to date" msgstr "Seit Jahresbeginn" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:59 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:61 #: src/components/routes/product-widget/OccurrenceSelector/index.tsx:43 msgid "Yearly" msgstr "" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:104 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:106 msgid "years" msgstr "" @@ -12200,7 +12209,7 @@ msgstr "Sie können zusätzliche Servicegebühren und Steuern in Ihren Kontoeins msgid "You can create a promo code which targets this product on the" msgstr "Sie können einen Promo-Code erstellen, der sich auf dieses Produkt richtet auf der" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:823 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:836 msgid "You can override this for individual dates later." msgstr "" diff --git a/frontend/src/locales/el.js b/frontend/src/locales/el.js index 4510ac0507..0c638976e4 100644 --- a/frontend/src/locales/el.js +++ b/frontend/src/locales/el.js @@ -1 +1 @@ -/*eslint-disable*/module.exports={messages:JSON.parse("{\"f8qS7T\":\"Δεν υπάρχει τίποτα να εμφανιστεί ακόμα\",\"J/hVSQ\":[[\"0\"]],\"Jv22kr\":[[\"0\"],\" <0>checked in successfully\"],\"yxhYRZ\":[[\"0\"],\" <0>έκανε check-out επιτυχώς\"],\"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\":[[\"minutes\"],\" λεπτά και \",[\"seconds\"],\" δευτερόλεπτα\"],\"NlQ0cx\":[\"Πρώτη εκδήλωση του \",[\"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://η-ιστοσελίδα-σας.gr\",\"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 Main Street\",\"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\":\"Μια επιλογή τύπου Radio έχει πολλαπλές επιλογές αλλά μόνο μία μπορεί να επιλεγεί.\",\"h179TP\":\"Μια σύντομη περιγραφή της εκδήλωσης που θα εμφανίζεται στα αποτελέσματα αναζήτησης και κατά την κοινοποίηση στα κοινωνικά δίκτυα. Εξ ορισμού χρησιμοποιείται η περιγραφή της εκδήλωσης\",\"WKMnh4\":\"Πεδίο κειμένου μίας γραμμής\",\"BHZbFy\":\"Μία ερώτηση ανά παραγγελία. Π.χ., Ποια είναι η διεύθυνση αποστολής σας;\",\"Fuh+dI\":\"Μία ερώτηση ανά προϊόν. Π.χ., Ποιο είναι το μέγεθος μπλούζας σας;\",\"RlJmQg\":\"Ένας τυπικός φόρος, όπως ΦΠΑ ή GST\",\"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\":\"Να επιτρέπεται το check-in σε συμμετέχοντες με μη πληρωμένες παραγγελίες\",\"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\":\"Τυχόν ερωτήματα από κατόχους προϊόντων θα αποστέλλονται σε αυτή τη διεύθυνση. Θα χρησιμοποιηθεί επίσης ως διεύθυνση \\\"απάντηση προς\\\" για όλα τα email αυτής της εκδήλωσης\",\"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\":\"Are you sure you want to make this event public? This will make the event visible to the public\",\"s4JozW\":\"Είστε σίγουροι ότι θέλετε να επαναφέρετε αυτή την εκδήλωση; Θα αποκατασταθεί ως πρόχειρη εκδήλωση.\",\"vJuISq\":\"Είστε σίγουροι ότι θέλετε να διαγράψετε αυτή την Ανάθεση Χωρητικότητας;\",\"baHeCz\":\"Είστε σίγουροι ότι θέλετε να διαγράψετε αυτή τη Λίστα Ελέγχου;\",\"LBLOqH\":\"Μία φορά ανά παραγγελία\",\"wu98dY\":\"Μία φορά ανά προϊόν\",\"ss9PbX\":\"Συμμετέχων\",\"m0CFV2\":\"Στοιχεία Συμμετέχοντα\",\"QKim6l\":\"Ο συμμετέχων δεν βρέθηκε\",\"R5IT/I\":\"Attendee Notes\",\"lXcSD2\":\"Attendee questions\",\"HT/08n\":\"Εισιτήριο Συμμετέχοντα\",\"9SZT4E\":\"Συμμετέχοντες\",\"iPBfZP\":\"Εγγεγραμμένοι Συμμετέχοντες\",\"7KxcHR\":\"Attendees with a specific product\",\"IMJ6rh\":\"Αυτόματη Αλλαγή Μεγέθους\",\"vZ5qKF\":\"Αυτόματη αλλαγή ύψους widget βάσει περιεχομένου. Όταν απενεργοποιηθεί, το widget θα γεμίζει το ύψος του container.\",\"4lVaWA\":\"Αναμονή πληρωμής εκτός σύνδεσης\",\"2rHwhl\":\"Αναμονή Πληρωμής Εκτός Σύνδεσης\",\"3wF4Q/\":\"Αναμονή πληρωμής\",\"ioG+xt\":\"Αναμονή Πληρωμής\",\"3PmQfI\":\"Awesome Event\",\"Yrbm6T\":\"Διοργανωτής Α.Ε.\",\"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\":\"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\":\"Ακύρωση\",\"Gjt/py\":\"Ακύρωση αλλαγής email\",\"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\":[\"Check-in \",[\"0\"],\" \",[\"1\"]],\"D6+U20\":\"Check-in και σήμανση παραγγελίας ως πληρωμένη\",\"QYLpB4\":\"Μόνο check-in\",\"/Ta1d4\":\"Check Out\",\"5LDT6f\":\"Δείτε αυτή την εκδήλωση!\",\"gXcPxc\":\"Check-in\",\"fVUbUy\":\"Check-In List created successfully\",\"+CeSxK\":\"Η λίστα check-in διαγράφηκε επιτυχώς\",\"+hBhWk\":\"Η λίστα check-in έχει λήξει\",\"mBsBHq\":\"Η λίστα check-in δεν είναι ενεργή\",\"vPqpQG\":\"Η λίστα check-in δεν βρέθηκε\",\"tejfAy\":\"Λίστες Check-In\",\"hD1ocH\":\"Το URL Check-In αντιγράφηκε στο πρόχειρο\",\"CNafaC\":\"Οι επιλογές τύπου Checkbox επιτρέπουν πολλαπλές επιλογές\",\"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\":\"Το χρώμα πρέπει να είναι έγκυρος κωδικός hex. Παράδειγμα: #ffffff\",\"1HfW/F\":\"Χρώματα\",\"VZeG/A\":\"Έρχεται Σύντομα\",\"yPI7n9\":\"Λέξεις-κλειδιά χωρισμένες με κόμμα που περιγράφουν την εκδήλωση. Θα χρησιμοποιηθούν από μηχανές αναζήτησης για κατηγοριοποίηση και ευρετηρίαση\",\"NPZqBL\":\"Ολοκλήρωση Παραγγελίας\",\"guBeyC\":\"Complete payment\",\"C8HNV2\":\"Ολοκλήρωση Πληρωμής\",\"qqWcBV\":\"Ολοκληρωμένο\",\"6HK5Ct\":\"Ολοκληρωμένες παραγγελίες\",\"NWVRtl\":\"Ολοκληρωμένες Παραγγελίες\",\"DwF9eH\":\"Κωδικός Στοιχείου\",\"Tf55h7\":\"Ρυθμισμένη Έκπτωση\",\"7VpPHA\":\"Επιβεβαίωση\",\"ZaEJZM\":\"Επιβεβαίωση Αλλαγής Email\",\"yjkELF\":\"Επιβεβαίωση Νέου Κωδικού\",\"xnWESi\":\"Επιβεβαίωση κωδικού\",\"p2/GCq\":\"Επιβεβαίωση Κωδικού\",\"wnDgGj\":\"Επιβεβαίωση διεύθυνσης email...\",\"pbAk7a\":\"Σύνδεση Stripe\",\"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\":\"Αντιγραφή URL Check-In\",\"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\":\"Δημιουργία Λίστας Check-In\",\"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\":\"Προσαρμογή ρυθμίσεων email και ειδοποιήσεων για αυτή την εκδήλωση\",\"Y9Z/vP\":\"Προσαρμογή της αρχικής σελίδας εκδήλωσης και των μηνυμάτων checkout\",\"2E2O5H\":\"Προσαρμογή διαφόρων ρυθμίσεων για αυτή την εκδήλωση\",\"iJhSxe\":\"Προσαρμογή ρυθμίσεων SEO για αυτή την εκδήλωση\",\"KIhhpi\":\"Προσαρμόστε τη σελίδα εκδήλωσης\",\"nrGWUv\":\"Customize your event page to match your brand and style.\",\"Zz6Cxn\":\"Επικίνδυνη ζώνη\",\"ZQKLI1\":\"Επικίνδυνη Ζώνη\",\"7p5kLi\":\"Πίνακας Ελέγχου\",\"mYGY3B\":\"Ημερομηνία\",\"JvUngl\":\"Ημερομηνία & Ώρα\",\"JJhRbH\":\"Χωρητικότητα πρώτης ημέρας\",\"cnGeoo\":\"Διαγραφή\",\"jRJZxD\":\"Διαγραφή Χωρητικότητας\",\"VskHIx\":\"Διαγραφή κατηγορίας\",\"Qrc8RZ\":\"Διαγραφή Λίστας Check-In\",\"WHf154\":\"Διαγραφή κωδικού\",\"heJllm\":\"Delete Cover\",\"KWa0gi\":\"Delete Image\",\"1l14WA\":\"Delete product\",\"IatsLx\":\"Delete question\",\"Nu4oKW\":\"Περιγραφή\",\"YC3oXa\":\"Περιγραφή για το προσωπικό check-in\",\"URmyfc\":\"Λεπτομέρειες\",\"1lRT3t\":\"Απενεργοποίηση αυτής της χωρητικότητας θα παρακολουθεί τις πωλήσεις αλλά δεν θα τις σταματά όταν φτάσει στο όριο\",\"H6Ma8Z\":\"Έκπτωση\",\"ypJ62C\":\"Έκπτωση %\",\"3LtiBI\":[\"Έκπτωση σε \",[\"0\"]],\"C8JLas\":\"Τύπος Έκπτωσης\",\"1QfxQT\":\"Dismiss\",\"DZlSLn\":\"Ετικέτα Εγγράφου\",\"cVq+ga\":\"Don't have an account? <0>Sign Up\",\"3F1nBX\":\"Δωρεά / Πληρώστε όσο θέλετε\",\"OvNbls\":\"Λήψη .ics\",\"kodV18\":\"Λήψη CSV\",\"CELKku\":\"Λήψη τιμολογίου\",\"LQrXcu\":\"Λήψη Τιμολογίου\",\"QIodqd\":\"Λήψη QR Code\",\"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\":\"Επεξεργασία Λίστας Check-In\",\"iFgaVN\":\"Επεξεργασία Κωδικού\",\"jrBSO1\":\"Επεξεργασία Διοργανωτή\",\"tdD/QN\":\"Επεξεργασία Προϊόντος\",\"n143Tq\":\"Επεξεργασία Κατηγορίας Προϊόντος\",\"9BdS63\":\"Επεξεργασία Κωδικού Προσφοράς\",\"O0CE67\":\"Edit question\",\"EzwCw7\":\"Επεξεργασία Ερώτησης\",\"poTr35\":\"Επεξεργασία χρήστη\",\"GTOcxw\":\"Επεξεργασία Χρήστη\",\"pqFrv2\":\"π.χ. 2.50 για 2,50€\",\"3yiej1\":\"π.χ. 23.5 για 23,5%\",\"O3oNi5\":\"Email\",\"VxYKoK\":\"Ρυθμίσεις Email & Ειδοποιήσεων\",\"ATGYL1\":\"Διεύθυνση email\",\"hzKQCy\":\"Διεύθυνση Email\",\"HqP6Qf\":\"Η αλλαγή email ακυρώθηκε επιτυχώς\",\"mISwW1\":\"Αλλαγή email σε εκκρεμότητα\",\"APuxIE\":\"Επαναποστολή επιβεβαίωσης email\",\"YaCgdO\":\"Η επιβεβαίωση email εστάλη ξανά επιτυχώς\",\"jyt+cx\":\"Μήνυμα υποσέλιδου email\",\"I6F3cp\":\"Το email δεν έχει επαληθευτεί\",\"NTZ/NX\":\"Κωδικός Ενσωμάτωσης\",\"4rnJq4\":\"Script Ενσωμάτωσης\",\"8oPbg1\":\"Ενεργοποίηση Τιμολόγησης\",\"j6w7d/\":\"Ενεργοποίηση αυτής της χωρητικότητας για διακοπή πωλήσεων όταν φτάσει το όριο\",\"VFv2ZC\":\"Ημερομηνία Λήξης\",\"237hSL\":\"Τελείωσε\",\"nt4UkP\":\"Ended Events\",\"lYGfRP\":\"Αγγλικά\",\"MhVoma\":\"Εισάγετε ποσό χωρίς φόρους και τέλη.\",\"SlfejT\":\"Σφάλμα\",\"3Z223G\":\"Σφάλμα επιβεβαίωσης διεύθυνσης email\",\"a6gga1\":\"Σφάλμα επιβεβαίωσης αλλαγής email\",\"5/63nR\":\"EUR\",\"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\":\"Event URL\",\"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\":\"Αποτυχία φόρτωσης Λίστας Check-In\",\"ZQ15eN\":\"Αποτυχία επαναποστολής email εισιτηρίου\",\"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\":\"Google Calendar\",\"RUz8o/\":\"gross sales\",\"IgcAGN\":\"Μεικτές πωλήσεις\",\"yRg26W\":\"Μεικτές Πωλήσεις\",\"R4r4XO\":\"Επισκέπτες\",\"26pGvx\":\"Έχετε κωδικό προσφοράς;\",\"V7yhws\":\"info@ekdiloseis.gr\",\"6K/IHl\":\"Εδώ είναι ένα παράδειγμα χρήσης του στοιχείου στην εφαρμογή σας.\",\"Y1SSqh\":\"Εδώ είναι το React component που μπορείτε να χρησιμοποιήσετε για ενσωμάτωση του widget στην εφαρμογή σας.\",\"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://maps.google.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\":\"Εάν είναι ενεργό, το προσωπικό check-in μπορεί να επισημάνει τους συμμετέχοντες ως παρόντες ή να επισημάνει την παραγγελία ως πληρωμένη. Εάν είναι απενεργοποιημένο, οι συμμετέχοντες με μη πληρωμένες παραγγελίες δεν μπορούν να κάνουν check-in.\",\"muXhGi\":\"Εάν είναι ενεργό, ο διοργανωτής θα λάβει ειδοποίηση email όταν υποβάλλεται νέα παραγγελία\",\"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\":\"URL Εικόνας\",\"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\":\"Παράδειγμα κειμένου...\",\"NJahlc\":\"Υποχρεωτική διεύθυνση χρέωσης κατά το checkout\",\"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\":\"Παράδειγμα κειμένου...\",\"6YtxFj\":\"Όνομα\",\"hVuv90\":\"Name should be less than 150 characters\",\"AIUkyF\":\"Πλοήγηση σε Συμμετέχοντα\",\"qqeAJM\":\"Ποτέ\",\"7vhWI8\":\"Νέος Κωδικός\",\"1UzENP\":\"Όχι\",\"eRblWH\":[\"No \",[\"0\"],\" available.\"],\"LNWHXb\":\"Δεν υπάρχουν αρχειοθετημένες εκδηλώσεις για εμφάνιση.\",\"q2LEDV\":\"Δεν βρέθηκαν συμμετέχοντες για αυτή την παραγγελία.\",\"zlHa5R\":\"No attendees have been added to this order.\",\"Wjz5KP\":\"Δεν υπάρχουν Συμμετέχοντες για εμφάνιση\",\"Razen5\":\"No attendees will be able to check in before this date using this list\",\"XUfgCI\":\"Δεν υπάρχουν Αναθέσεις Χωρητικότητας\",\"a/gMx2\":\"Δεν υπάρχουν Λίστες Check-In\",\"tMFDem\":\"Δεν υπάρχουν διαθέσιμα δεδομένα\",\"6Z/F61\":\"Δεν υπάρχουν δεδομένα για εμφάνιση. Επιλέξτε εύρος ημερομηνιών\",\"fFeCKc\":\"Χωρίς Έκπτωση\",\"HFucK5\":\"Δεν υπάρχουν τελειωμένες εκδηλώσεις για εμφάνιση.\",\"yAlJXG\":\"Δεν υπάρχουν εκδηλώσεις για εμφάνιση\",\"GqvPcv\":\"Δεν υπάρχουν διαθέσιμα φίλτρα\",\"KPWxKD\":\"Δεν υπάρχουν μηνύματα για εμφάνιση\",\"J2LkP8\":\"Δεν υπάρχουν παραγγελίες για εμφάνιση\",\"RBXXtB\":\"Δεν υπάρχουν διαθέσιμες μέθοδοι πληρωμής αυτή τη στιγμή. Επικοινωνήστε με τον διοργανωτή για βοήθεια.\",\"ZWEfBE\":\"Δεν Απαιτείται Πληρωμή\",\"ZPoHOn\":\"No product associated with this attendee.\",\"Ya1JhR\":\"Δεν υπάρχουν διαθέσιμα προϊόντα σε αυτή την κατηγορία.\",\"FTfObB\":\"Δεν υπάρχουν Προϊόντα ακόμα\",\"+Y976X\":\"Δεν υπάρχουν Κωδικοί Προσφοράς για εμφάνιση\",\"MAavyl\":\"No questions answered by this attendee.\",\"SnlQeq\":\"No questions have been asked for this order.\",\"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\":\"Online event\",\"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\":\"Άνοιγμα Σελίδας Check-In\",\"OdnLE4\":\"Άνοιγμα πλαϊνής μπάρας\",\"ZZEYpT\":[\"Επιλογή \",[\"i\"]],\"oPknTP\":\"Προαιρετικές πρόσθετες πληροφορίες για εμφάνιση σε όλα τα τιμολόγια (π.χ., όροι πληρωμής, τέλη καθυστέρησης, πολιτική επιστροφής)\",\"OrXJBY\":\"Προαιρετικό πρόθεμα αριθμών τιμολογίου (π.χ., ΤΙΜ-)\",\"0zpgxV\":\"Επιλογές\",\"BzEFor\":\"ή\",\"UYUgdb\":\"Παραγγελία\",\"mm+eaX\":\"Order #\",\"B3gPuX\":\"Παραγγελία Ακυρώθηκε\",\"SIbded\":\"Order Completed\",\"q/CcwE\":\"Ημερομηνία Παραγγελίας\",\"Tol4BF\":\"Λεπτομέρειες Παραγγελίας\",\"WbImlQ\":\"Η παραγγελία ακυρώθηκε και ο κάτοχος ειδοποιήθηκε.\",\"nAn4Oe\":\"Η παραγγελία επισημάνθηκε ως πληρωμένη\",\"uzEfRz\":\"Order Notes\",\"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\":\"Επικολλήστε αυτό εκεί που θέλετε να εμφανίζεται το widget.\",\"+23bI/\":\"Παναγιώτης\",\"iAS9f2\":\"panagiotis@papademos.gr\",\"621rYf\":\"Πληρωμή\",\"Lg+ewC\":\"Πληρωμή & Τιμολόγηση\",\"DZjk8u\":\"Ρυθμίσεις Πληρωμής & Τιμολόγησης\",\"lflimf\":\"Περίοδος Πληρωμής\",\"JhtZAK\":\"Η Πληρωμή Απέτυχε\",\"JEdsvQ\":\"Οδηγίες Πληρωμής\",\"bLB3MJ\":\"Μέθοδοι Πληρωμής\",\"QzmQBG\":\"Πάροχος πληρωμής\",\"lsxOPC\":\"Πληρωμή Ελήφθη\",\"wJTzyi\":\"Κατάσταση Πληρωμής\",\"xgav5v\":\"Η πληρωμή επιτεύχθηκε!\",\"R29lO5\":\"Όροι Πληρωμής\",\"/roQKz\":\"Ποσοστό\",\"vPJ1FI\":\"Ποσοστό\",\"xdA9ud\":\"Τοποθετήστε αυτό στο της ιστοσελίδας σας.\",\"blK94r\":\"Παρακαλώ προσθέστε τουλάχιστον μία επιλογή\",\"FJ9Yat\":\"Παρακαλώ ελέγξτε ότι οι παρεχόμενες πληροφορίες είναι σωστές\",\"TkQVup\":\"Παρακαλώ ελέγξτε το email και τον κωδικό σας και δοκιμάστε ξανά\",\"sMiGXD\":\"Παρακαλώ ελέγξτε ότι το email είναι έγκυρο\",\"Ajavq0\":\"Παρακαλώ ελέγξτε το email σας για επιβεβαίωση της διεύθυνσης\",\"MdfrBE\":\"Please complete the form below to accept your invitation\",\"b1Jvg+\":\"Παρακαλώ συνεχίστε στη νέα καρτέλα\",\"hcX103\":\"Παρακαλώ δημιουργήστε ένα προϊόν\",\"cdR8d6\":\"Παρακαλώ δημιουργήστε ένα εισιτήριο\",\"x2mjl4\":\"Παρακαλώ εισάγετε έγκυρο URL εικόνας που να δείχνει σε εικόνα.\",\"HnNept\":\"Please enter your new password\",\"5FSIzj\":\"Σημειώστε\",\"C63rRe\":\"Παρακαλώ επιστρέψτε στη σελίδα εκδήλωσης για να ξεκινήσετε από την αρχή.\",\"pJLvdS\":\"Please select\",\"Ewir4O\":\"Παρακαλώ επιλέξτε τουλάχιστον ένα προϊόν\",\"igBrCH\":\"Παρακαλώ επαληθεύστε τη διεύθυνση email σας για πρόσβαση σε όλες τις λειτουργίες\",\"/IzmnP\":\"Παρακαλώ περιμένετε ενώ προετοιμάζουμε το τιμολόγιό σας...\",\"MOERNx\":\"Πορτογαλικά\",\"qCJyMx\":\"Μήνυμα Μετά το Checkout\",\"g2UNkE\":\"Με την υποστήριξη του\",\"Rs7IQv\":\"Μήνυμα Πριν το Checkout\",\"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\":\"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\":\"Διαθέσιμη Ποσότητα\",\"oCLG0M\":\"Quantity Sold\",\"XKJuAX\":\"Η ερώτηση διαγράφηκε\",\"avf0gk\":\"Περιγραφή Ερώτησης\",\"oQvMPn\":\"Τίτλος Ερώτησης\",\"enzGAL\":\"Ερωτήσεις\",\"ROv2ZT\":\"Ερωτήσεις & Απαντήσεις\",\"K885Eq\":\"Questions sorted successfully\",\"OMJ035\":\"Επιλογή Τύπου Radio\",\"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\":\"Επαναποστολή επιβεβαίωσης email\",\"wIa8Qe\":\"Επαναποστολή πρόσκλησης\",\"VeKsnD\":\"Επαναποστολή email παραγγελίας\",\"dFuEhO\":\"Επαναποστολή email εισιτηρίου\",\"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\":\"San Francisco\",\"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\":\"Αναζήτηση ανά όνομα συμμετέχοντα, email ή αριθμό παραγγελίας...\",\"+pr/FY\":\"Αναζήτηση ανά όνομα εκδήλωσης...\",\"3zRbWw\":\"Αναζήτηση ανά όνομα, email ή αριθμό παραγγελίας...\",\"L22Tdf\":\"Search by name, order #, attendee # or email...\",\"BiYOdA\":\"Αναζήτηση ανά όνομα...\",\"YEjitp\":\"Search by subject or content...\",\"Pjsch9\":\"Αναζήτηση αναθέσεων χωρητικότητας...\",\"r9M1hc\":\"Αναζήτηση λιστών check-in...\",\"+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\":\"Αποστολή email επιβεβαίωσης παραγγελίας και εισιτηρίου\",\"v1rRtW\":\"Αποστολή Δοκιμαστικού\",\"4Ml90q\":\"SEO\",\"j1VfcT\":\"Περιγραφή SEO\",\"/SIY6o\":\"Λέξεις-κλειδιά SEO\",\"GfWoKv\":\"Ρυθμίσεις SEO\",\"rXngLf\":\"Τίτλος SEO\",\"/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\":\"Εμφανίζεται στον πελάτη μετά το checkout, στη σελίδα σύνοψης παραγγελίας.\",\"YfHZv0\":\"Εμφανίζεται στον πελάτη πριν το checkout\",\"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\"],\" θα λάβει email σύντομα.\"],\"BJIEiF\":[\"Επιτυχής \",[\"0\"],\" συμμετέχοντα\"],\"OtgNFx\":\"Επιτυχής επιβεβαίωση διεύθυνσης email\",\"IKwyaF\":\"Επιτυχής επιβεβαίωση αλλαγής email\",\"zLmvhE\":\"Επιτυχής δημιουργία συμμετέχοντα\",\"gP22tw\":\"Επιτυχής Δημιουργία Προϊόντος\",\"9mZEgt\":\"Επιτυχής Δημιουργία Κωδικού Προσφοράς\",\"aIA9C4\":\"Επιτυχής Δημιουργία Ερώτησης\",\"J3RJSZ\":\"Επιτυχής ενημέρωση συμμετέχοντα\",\"3suLF0\":\"Επιτυχής ενημέρωση Ανάθεσης Χωρητικότητας\",\"Z+rnth\":\"Επιτυχής ενημέρωση Λίστας Check-In\",\"vzJenu\":\"Επιτυχής Ενημέρωση Ρυθμίσεων Email\",\"7kOMfV\":\"Επιτυχής Ενημέρωση Εκδήλωσης\",\"G0KW+e\":\"Επιτυχής Ενημέρωση Σχεδιασμού Αρχικής\",\"k9m6/E\":\"Επιτυχής Ενημέρωση Ρυθμίσεων Αρχικής\",\"y/NR6s\":\"Επιτυχής Ενημέρωση Τοποθεσίας\",\"73nxDO\":\"Επιτυχής Ενημέρωση Διαφόρων Ρυθμίσεων\",\"4H80qv\":\"Επιτυχής ενημέρωση παραγγελίας\",\"6xCBVN\":\"Επιτυχής Ενημέρωση Ρυθμίσεων Πληρωμής & Τιμολόγησης\",\"1Ycaad\":\"Επιτυχής ενημέρωση προϊόντος\",\"70dYC8\":\"Επιτυχής Ενημέρωση Κωδικού Προσφοράς\",\"F+pJnL\":\"Επιτυχής Ενημέρωση Ρυθμίσεων SEO\",\"DXZRk5\":\"Suite 100\",\"GNcfRk\":\"Email Υποστήριξης\",\"uRfugr\":\"Μπλούζα\",\"JpohL9\":\"Φόρος\",\"geUFpZ\":\"Φόρος & Τέλη\",\"dFHcIn\":\"Λεπτομέρειες Φόρου\",\"wQzCPX\":\"Πληροφορίες φόρου για εμφάνιση στο κάτω μέρος όλων των τιμολογίων (π.χ., αριθμός ΦΠΑ, φορολογική εγγραφή)\",\"0RXCDo\":\"Ο φόρος ή τέλος διαγράφηκε επιτυχώς\",\"ZowkxF\":\"Φόροι\",\"qu6/03\":\"Φόροι και Τέλη\",\"gypigA\":\"Αυτός ο κωδικός προσφοράς δεν είναι έγκυρος\",\"5ShqeM\":\"Η λίστα check-in που αναζητάτε δεν υπάρχει.\",\"QXlz+n\":\"Το προεπιλεγμένο νόμισμα για τις εκδηλώσεις σας.\",\"mnafgQ\":\"Η προεπιλεγμένη ζώνη ώρας για τις εκδηλώσεις σας.\",\"o7s5FA\":\"Η γλώσσα στην οποία θα λαμβάνει email ο συμμετέχων.\",\"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\":\"Αυτή η λίστα check-in έχει λήξει\",\"Sa7w7S\":\"Αυτή η λίστα check-in έχει λήξει και δεν είναι πλέον διαθέσιμη.\",\"Uicx2U\":\"Αυτή η λίστα check-in είναι ενεργή\",\"1k0Mp4\":\"Αυτή η λίστα check-in δεν είναι ακόμα ενεργή\",\"K6fmBI\":\"Αυτή η λίστα 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\":\"Αυτές οι πληροφορίες θα εμφανίζονται στη σελίδα πληρωμής, στη σύνοψη παραγγελίας και στο email επιβεβαίωσης.\",\"XAHqAg\":\"Πρόκειται για γενικό προϊόν, όπως μπλούζα ή κούπα. Δεν θα εκδοθεί εισιτήριο\",\"CNk/ro\":\"Πρόκειται για διαδικτυακή εκδήλωση\",\"FwXnJd\":\"This list will no longer be available for check-ins after this date\",\"cHO4ec\":\"Αυτό το μήνυμα θα συμπεριληφθεί στο υποσέλιδο όλων των email αυτής της εκδήλωσης\",\"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\":\"Το email εισιτηρίου εστάλη ξανά στον συμμετέχοντα\",\"54q0zp\":\"Εισιτήρια για\",\"xN9AhL\":[\"Βαθμίδα \",[\"0\"]],\"jZj9y9\":\"Προϊόν με Βαθμίδες\",\"8wITQA\":\"Τα προϊόντα με βαθμίδες σας επιτρέπουν να προσφέρετε πολλαπλές επιλογές τιμής για το ίδιο προϊόν. Ιδανικό για πρώιμες αγορές ή διαφορετικές τιμές για διαφορετικές ομάδες.\",\"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\":\"Αδύνατο check-in συμμετέχοντα\",\"bPWBLL\":\"Αδύνατο check-out συμμετέχοντα\",\"9+P7zk\":\"Αδύνατη δημιουργία προϊόντος. Ελέγξτε τα στοιχεία σας\",\"WLxtFC\":\"Αδύνατη δημιουργία προϊόντος. Ελέγξτε τα στοιχεία σας\",\"/cSMqv\":\"Αδύνατη δημιουργία ερώτησης. Ελέγξτε τα στοιχεία σας\",\"MH/lj8\":\"Αδύνατη ενημέρωση ερώτησης. Ελέγξτε τα στοιχεία σας\",\"nnfSdK\":\"Μοναδικοί Πελάτες\",\"Mqy/Zy\":\"Ηνωμένες Πολιτείες\",\"NIuIk1\":\"Απεριόριστο\",\"/p9Fhq\":\"Απεριόριστα διαθέσιμα\",\"E0q9qH\":\"Επιτρέπονται απεριόριστες χρήσεις\",\"h10Wm5\":\"Μη Πληρωμένη Παραγγελία\",\"ia8YsC\":\"Επερχόμενες\",\"TlEeFv\":\"Επερχόμενες Εκδηλώσεις\",\"L/gNNk\":[\"Ενημέρωση \",[\"0\"]],\"+qqX74\":\"Ενημέρωση ονόματος εκδήλωσης, περιγραφής και ημερομηνιών\",\"vXPSuB\":\"Ενημέρωση προφίλ\",\"BNBfrU\":\"Upload Cover\",\"IagCbF\":\"URL\",\"UtDm3q\":\"Το URL αντιγράφηκε στο πρόχειρο\",\"e5lF64\":\"Παράδειγμα Χρήσης\",\"fiV0xj\":\"Όριο Χρήσης\",\"sGEOe4\":\"Χρήση θολής εκδοχής εικόνας εξωφύλλου ως φόντο\",\"OadMRm\":\"Χρήση εικόνας εξωφύλλου\",\"7PzzBU\":\"Χρήστης\",\"yDOdwQ\":\"Διαχείριση Χρηστών\",\"Sxm8rQ\":\"Χρήστες\",\"VEsDvU\":\"Οι χρήστες μπορούν να αλλάξουν email στις <0>Ρυθμίσεις Προφίλ\",\"vgwVkd\":\"UTC\",\"khBZkl\":\"ΦΠΑ\",\"E/9LUk\":\"Όνομα Χώρου\",\"jpctdh\":\"View\",\"Pte1Hv\":\"Προβολή Στοιχείων Συμμετέχοντα\",\"/5PEQz\":\"Προβολή σελίδας εκδήλωσης\",\"fFornT\":\"View full message\",\"YIsEhQ\":\"View map\",\"Ep3VfY\":\"Προβολή στο Google Maps\",\"Y8s4f6\":\"View order details\",\"QIWCnW\":\"Λίστα check-in VIP\",\"tF+VVr\":\"Εισιτήριο VIP\",\"2q/Q7x\":\"Ορατότητα\",\"vmOFL/\":\"Δεν μπορέσαμε να επεξεργαστούμε την πληρωμή σας. Δοκιμάστε ξανά ή επικοινωνήστε με την υποστήριξη.\",\"45Srzt\":\"Δεν μπορέσαμε να διαγράψουμε την κατηγορία. Παρακαλώ δοκιμάστε ξανά.\",\"/DNy62\":[\"Δεν βρέθηκαν εισιτήρια που να αντιστοιχούν στο \",[\"0\"]],\"1E0vyy\":\"Δεν μπορέσαμε να φορτώσουμε τα δεδομένα. Παρακαλώ δοκιμάστε ξανά.\",\"NmpGKr\":\"Δεν μπορέσαμε να αναδιατάξουμε τις κατηγορίες. Παρακαλώ δοκιμάστε ξανά.\",\"BJtMTd\":\"Προτείνουμε διαστάσεις 1950px x 650px, αναλογία 3:1, μέγιστο μέγεθος 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\":\"Όταν είναι ενεργό, θα δημιουργούνται τιμολόγια για παραγγελίες εισιτηρίων. Τα τιμολόγια αποστέλλονται με το email επιβεβαίωσης.\",\"D3opg4\":\"Όταν οι πληρωμές εκτός σύνδεσης είναι ενεργές, οι χρήστες μπορούν να ολοκληρώσουν παραγγελίες και να λάβουν εισιτήρια με ένδειξη μη πληρωμένης παραγγελίας.\",\"D7C6XV\":\"When should this check-in list expire?\",\"FVetkT\":\"Ποια εισιτήρια πρέπει να σχετίζονται με αυτή τη λίστα check-in;\",\"S+OdxP\":\"Ποιος διοργανώνει αυτή την εκδήλωση;\",\"LINr2M\":\"Who is this message to?\",\"nWhye/\":\"Σε ποιον πρέπει να τεθεί αυτή η ερώτηση;\",\"VxFvXQ\":\"Ενσωμάτωση Widget\",\"v1P7Gm\":\"Ρυθμίσεις Widget\",\"b4itZn\":\"Εργασία\",\"hqmXmc\":\"Επεξεργασία...\",\"+G/XiQ\":\"Από αρχής έτους\",\"l75CjT\":\"Ναι\",\"QcwyCh\":\"Ναι, αφαίρεσέ τα\",\"ySeBKv\":\"You already scanned this ticket\",\"P+Sty0\":[\"Αλλάζετε το email σας σε <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\":\"Δεν μπορείτε να κάνετε check-in σε συμμετέχοντες με μη πληρωμένες παραγγελίες.\",\"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\":\"Δεν έχετε εκκρεμή αλλαγή email.\",\"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\":\"Πρέπει να αναγνωρίσετε ότι αυτό το email δεν είναι προωθητικό\",\"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\":\"Χρειάζεστε εισιτήριο πριν δημιουργήσετε λίστα check-in.\",\"Djl45M\":\"Χρειάζεστε προϊόν πριν δημιουργήσετε ανάθεση χωρητικότητας.\",\"y3qNri\":\"Χρειάζεστε τουλάχιστον ένα προϊόν για να ξεκινήσετε. Δωρεάν, επί πληρωμή ή αφήστε τον χρήστη να αποφασίσει.\",\"9HcibB\":[\"You're going to \",[\"0\"],\"! 🎉\"],\"ROR8QD\":\"Το όνομα λογαριασμού χρησιμοποιείται σε σελίδες εκδηλώσεων και σε email.\",\"veessc\":\"Οι συμμετέχοντές σας θα εμφανίζονται εδώ μόλις εγγραφούν. Μπορείτε επίσης να τους προσθέσετε χειροκίνητα.\",\"Eh5Wrd\":\"Η ιστοσελίδα σας 🎉\",\"lkMK2r\":\"Τα Στοιχεία σας\",\"3ENYTQ\":[\"Το αίτημα αλλαγής email σε <0>\",[\"0\"],\" εκκρεμεί. Ελέγξτε το email σας για επιβεβαίωση\"],\"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\":\"(none)\",\"xYxQCZ\":[[\"0\"],\" \",[\"1\"]],\"lAOy2r\":[[\"0\"],\" \",[\"1\"],\" έχει ήδη κάνει check-in\"],\"3beCx0\":[[\"0\"],\" <0>checked in\"],\"S4PqS9\":[[\"0\"],\" Ενεργά Webhooks\"],\"6MIiOI\":[[\"0\"],\" απομένουν\"],\"COnw8D\":[\"Λογότυπο \",[\"0\"]],\"xG9N0H\":[[\"0\"],\" of \",[\"1\"],\" seats are taken.\"],\"B7pZfX\":[[\"0\"],\" διοργανωτές\"],\"/HkCs4\":[[\"0\"],\" εισιτήρια\"],\"30bTiU\":[[\"activeCount\"],\" enabled\"],\"jTs4am\":[[\"appName\"],\" logo\"],\"gbJOk9\":[[\"attendeeCount\"],\" attendees are registered for this session.\"],\"TjbIUI\":[[\"availableCount\"],\" από \",[\"totalCount\"],\" διαθέσιμα\"],\"PSChHo\":[\"Απομένουν \",[\"capacity\"],\" θέσεις\"],\"lzQ8/M\":[[\"checkedIn\"],\" / \",[\"total\"],\" checked in\"],\"RZ0JX3\":[[\"chipTime\"],\", εξαντλήθηκε\"],\"M4KnFs\":[[\"chipTime\"],\", Εξαντλημένο, διαθέσιμη λίστα αναμονής\"],\"SeyN12\":[[\"completedCount\"],\" of \",[\"totalCount\"],\" steps complete\"],\"f2rhaD\":[[\"diffHr\"],\"h ago\"],\"NRSLBe\":[[\"diffMin\"],\"m ago\"],\"iYfwJE\":[[\"diffSec\"],\"s ago\"],\"OJnhhX\":[[\"eventCount\"],\" εκδηλώσεις\"],\"mhZbzw\":[[\"loadedAffectedAttendees\"],\" attendees are registered across the affected sessions.\"],\"RBuxIl\":[[\"productCount\"],\" ticket types configured\"],\"VFLd0I\":[[\"slotCount\"],\" times available\"],\"3IEF7U\":[[\"totalCount\"],\" τύποι εισιτηρίων\"],\"0cLzoF\":[[\"totalOccurrences\"],\" dates\"],\"AEGc4t\":[[\"totalOccurrences\"],\" sessions across \",[\"0\"],\" dates (\",[\"1\",\"plural\",{\"one\":[\"#\",\" session\"],\"other\":[\"#\",\" sessions\"]}],\" per day)\"],\"zGiMDM\":\"+30 210 1234567\",\"1d6kks\":\"+Φόρος/Χρεώσεις\",\"B1St2O\":\"<0>Οι λίστες ελέγχου σας βοηθούν να διαχειριστείτε την είσοδο στην εκδήλωση ανά ημέρα, περιοχή ή τύπο εισιτηρίου. Μπορείτε να συνδέσετε εισιτήρια σε συγκεκριμένες λίστες όπως VIP zones ή εισιτήρια Ημέρας 1 και να μοιραστείτε έναν ασφαλή σύνδεσμο check-in με το προσωπικό. Δεν απαιτείται λογαριασμός. Το check-in λειτουργεί σε κινητό, υπολογιστή ή tablet, χρησιμοποιώντας κάμερα συσκευής ή HID USB σαρωτή. \",\"v9VSIS\":\"<0>Ορίστε ένα ενιαίο συνολικό όριο παρακολούθησης που ισχύει για πολλαπλούς τύπους εισιτηρίων ταυτόχρονα.<1>Για παράδειγμα, αν συνδέσετε ένα εισιτήριο <2>Ημερήσιο και ένα <3>Πλήρους Σαββατοκύριακου, και τα δύο θα αντλούν από την ίδια δεξαμενή θέσεων. Όταν το όριο επιτευχθεί, όλα τα συνδεδεμένα εισιτήρια σταματούν αυτόματα να πωλούνται.\",\"Il5Uid\":\"<0>Αυτή είναι η συνολική διαθέσιμη ποσότητα για όλες τις ημερομηνίες του προγράμματός σας συνολικά — δεν είναι όριο ανά ημερομηνία. Για να περιορίσετε τη συμμετοχή ανά ημερομηνία, ορίστε χωρητικότητα στη <1>σελίδα Προγράμματος ημερομηνιών.\",\"ZnVt5v\":\"<0>Τα Webhooks ειδοποιούν αμέσως εξωτερικές υπηρεσίες όταν συμβαίνουν γεγονότα, όπως η προσθήκη νέου συμμετέχοντα στο CRM ή στη λίστα email κατά την εγγραφή, διασφαλίζοντας απρόσκοπτη αυτοματοποίηση.<1>Χρησιμοποιήστε υπηρεσίες τρίτων όπως <2>Zapier, <3>IFTTT ή <4>Make για να δημιουργήσετε προσαρμοσμένες ροές εργασίας και να αυτοματοποιήσετε εργασίες.\",\"xFTHZ5\":[\"≈ \",[\"0\"],\" με τρέχουσα ισοτιμία\"],\"M2DyLc\":\"1 Ενεργό 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 εισιτήριο\",\"nz96Ue\":\"1 τύπος εισιτηρίου\",\"InX5ad\":\"1 ticket type configured\",\"y2Jh0m\":\"1 time available\",\"cGtUz6\":\"1 εβδομάδα πριν την εκδήλωση\",\"HR/cvw\":\"Παράδειγμα Οδού 123\",\"dgKxZ5\":\"135+ currencies & 40+ payment methods\",\"kMU5aM\":\"Μια ειδοποίηση ακύρωσης εστάλη στο\",\"o++0qa\":\"a change in duration\",\"WuWSX5\":\"A few quick steps and you're ready to start selling.\",\"RQ5kDd\":\"Ένα μήνυμα που εμφανίζεται όταν δεν υπάρχουν προϊόντα σε αυτήν την κατηγορία.\",\"V53XzQ\":\"Νέος κωδικός επαλήθευσης στάλθηκε στο email σας\",\"sr2Je0\":\"a shift in start/end times\",\"/z/bH1\":\"Μια σύντομη περιγραφή του διοργανωτή που θα εμφανίζεται στους χρήστες.\",\"aS0jtz\":\"Εγκαταλειμμένο\",\"uyJsf6\":\"Σχετικά\",\"JvuLls\":\"Απορρόφηση χρέωσης\",\"lk74+I\":\"Απορρόφηση Χρέωσης\",\"1uJlG9\":\"Χρώμα Τόνου\",\"g3UF2V\":\"Αποδοχή\",\"K5+3xg\":\"Αποδοχή πρόσκλησης\",\"jzb4Ep\":[\"Account · \",[\"0\"]],\"UqH1Q6\":[\"Account · \",[\"0\"],\" · \",[\"1\"]],\"vOuxvL\":\"Πληροφορίες Λογαριασμού\",\"EHNORh\":\"Ο λογαριασμός δεν βρέθηκε\",\"bPwFdf\":\"Λογαριασμοί\",\"AhwTa1\":\"Απαιτείται Ενέργεια: Χρειάζονται Στοιχεία ΦΠΑ\",\"APyAR/\":\"Ενεργές Εκδηλώσεις\",\"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\":\"Προσθήκη προσαρμοσμένων ερωτήσεων για συλλογή πρόσθετων πληροφοριών κατά το checkout\",\"Z/dcxc\":\"Add Date\",\"QeupRg\":\"Προσθήκη ημερομηνιών\",\"Q219NT\":\"Add Dates\",\"yjB5VC\":\"Add dates and times for your recurring event\",\"Z8idyM\":\"Add details\",\"wpirGs\":\"Add event details\",\"VX6WUv\":\"Προσθήκη τοποθεσίας\",\"GCQlV2\":\"Add multiple times if you run several sessions per day.\",\"7JF9w9\":\"Προσθήκη Ερώτησης\",\"NLbIb6\":\"Add this attendee anyway (override capacity)\",\"6PNlRV\":\"Προσθήκη αυτής της εκδήλωσης στο ημερολόγιό σας\",\"BGD9Yt\":\"Προσθήκη εισιτηρίων\",\"uIv4Op\":\"Προσθέστε pixels παρακολούθησης στις δημόσιες σελίδες εκδηλώσεων και στην αρχική σελίδα διοργανωτή. Εμφανίζεται banner συγκατάθεσης cookies όταν η παρακολούθηση είναι ενεργή.\",\"QN2F+7\":\"Προσθήκη Webhook\",\"NsWqSP\":\"Προσθέστε τα στοιχεία κοινωνικής δικτύωσης και την ιστοσελίδα σας. Θα εμφανιστούν στη δημόσια σελίδα του διοργανωτή.\",\"bVjDs9\":\"Πρόσθετα Τέλη\",\"MKqSg4\":\"Απαιτείται Πρόσβαση Διαχειριστή\",\"0Zypnp\":\"Πίνακας Διαχείρισης\",\"YAV57v\":\"Συνεργάτης\",\"I+utEq\":\"Ο κωδικός συνεργάτη δεν μπορεί να αλλαχθεί\",\"/jHBj5\":\"Ο συνεργάτης δημιουργήθηκε επιτυχώς\",\"uCFbG2\":\"Ο συνεργάτης διαγράφηκε επιτυχώς\",\"ld8I+f\":\"Affiliate program\",\"a41PKA\":\"Οι πωλήσεις συνεργατών θα παρακολουθούνται\",\"mJJh2s\":\"Οι πωλήσεις συνεργατών δεν θα παρακολουθούνται. Αυτό θα απενεργοποιήσει τον συνεργάτη.\",\"jabmnm\":\"Ο συνεργάτης ενημερώθηκε επιτυχώς\",\"CPXP5Z\":\"Συνεργάτες\",\"9Wh+ug\":\"Οι συνεργάτες εξήχθησαν\",\"3cqmut\":\"Οι συνεργάτες σας βοηθούν να παρακολουθείτε τις πωλήσεις από εταίρους και influencers. Δημιουργήστε κωδικούς και μοιραστείτε τους για παρακολούθηση της απόδοσης.\",\"3e31kI\":\"After your event is created, you can choose how often it repeats from the dashboard.\",\"z7GAMJ\":\"all\",\"N40H+G\":\"All\",\"7rLTkE\":\"Όλες οι Αρχειοθετημένες Εκδηλώσεις\",\"gKq1fa\":\"Όλοι οι συμμετέχοντες\",\"63gRoO\":\"All attendees of the selected sessions\",\"uWxIoH\":\"All attendees of this occurrence\",\"pMLul+\":\"Όλα τα Νομίσματα\",\"sgUdRZ\":\"All dates\",\"e4q4uO\":\"All Dates\",\"ZS/D7f\":\"Όλες οι Τελειωμένες Εκδηλώσεις\",\"QsYjci\":\"Όλες οι Εκδηλώσεις\",\"31KB8w\":\"Όλες οι αποτυχημένες εργασίες διαγράφηκαν\",\"D2g7C7\":\"Όλες οι εργασίες τέθηκαν σε ουρά για επανάληψη\",\"B4RFBk\":\"All matching dates\",\"F1/VgK\":\"All occurrences\",\"OpWjMq\":\"All Occurrences\",\"Sxm1lO\":\"Όλες οι Καταστάσεις\",\"dr7CWq\":\"Όλες οι Επερχόμενες Εκδηλώσεις\",\"GpT6Uf\":\"Να επιτρέπεται στους συμμετέχοντες να ενημερώνουν τα στοιχεία εισιτηρίου (όνομα, email) μέσω ασφαλούς συνδέσμου που αποστέλλεται με την επιβεβαίωση παραγγελίας.\",\"VZdky1\":\"Επιτρέψτε στους αγοραστές να αντιγράφουν τα στοιχεία τους σε όλους τους συμμετέχοντες\",\"F3mW5G\":\"Να επιτρέπεται στους πελάτες να εγγράφονται στη λίστα αναμονής όταν αυτό το προϊόν εξαντληθεί\",\"4CMO/q\":\"Να επιτρέπεται στους πελάτες να εγγράφονται στη λίστα αναμονής όταν αυτό το προϊόν εξαντληθεί. Οι πελάτες εγγράφονται στη λίστα αναμονής για συγκεκριμένη ημερομηνία.\",\"c4uJfc\":\"Σχεδόν έτοιμο! Αναμένουμε την επεξεργασία της πληρωμής σας. Αυτό θα διαρκέσει μόνο λίγα δευτερόλεπτα.\",\"ocS8eq\":[\"Έχετε ήδη λογαριασμό; <0>\",[\"0\"],\"\"],\"uCuEqI\":\"Already in\",\"/H326L\":\"Ήδη Επιστράφηκε\",\"USEpOK\":\"Already use Stripe on another organizer? Reuse that connection.\",\"RtxQTF\":\"Επίσης ακύρωση αυτής της παραγγελίας\",\"jkNgQR\":\"Επίσης επιστροφή αυτής της παραγγελίας\",\"xYqsHg\":\"Πάντα διαθέσιμο\",\"Wvrz79\":\"Ποσό που Καταβλήθηκε\",\"Zkymb9\":\"Ένα email για συσχέτιση με αυτόν τον συνεργάτη. Ο συνεργάτης δεν θα ειδοποιηθεί.\",\"vRznIT\":\"Παρουσιάστηκε σφάλμα κατά τον έλεγχο της κατάστασης εξαγωγής.\",\"OPFdAM\":\"Μια προαιρετική περιγραφή αυτής της κατηγορίας που θα εμφανίζεται στη σελίδα της εκδήλωσης.\",\"eusccx\":\"Προαιρετικό μήνυμα για το προτεινόμενο προϊόν, π.χ. \\\"Πωλείται γρήγορα 🔥\\\" ή \\\"Καλύτερη αξία\\\"\",\"5GJuNp\":[\"and \",[\"0\"],\" more...\"],\"QNrkms\":\"Η απάντηση ενημερώθηκε επιτυχώς.\",\"+qygei\":\"Answers\",\"GK7Lnt\":\"Answers provided at checkout (e.g. meal choice)\",\"lE8PgT\":\"Any dates you've manually customized will be kept.\",\"jVoYha\":[\"εφαρμόστηκε — έκπτωση \",[\"0\"],\" στην παραγγελία σας\"],\"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\":\"Έγκριση Μηνύματος\",\"naCW6Z\":\"April\",\"B495Gs\":\"Αρχειοθέτηση\",\"5sNliy\":\"Αρχειοθέτηση Εκδήλωσης\",\"BrwnrJ\":\"Αρχειοθέτηση Διοργανωτή\",\"E5eghW\":\"Αρχειοθέτηση αυτής της εκδήλωσης για απόκρυψη από το κοινό. Μπορείτε να την επαναφέρετε αργότερα.\",\"eqFkeI\":\"Αρχειοθέτηση αυτού του διοργανωτή. Αυτό θα αρχειοθετήσει και όλες τις εκδηλώσεις του.\",\"BzcxWv\":\"Αρχειοθετημένοι Διοργανωτές\",\"9cQBd6\":\"Είστε σίγουροι ότι θέλετε να αρχειοθετήσετε αυτή την εκδήλωση; Δεν θα είναι πλέον ορατή στο κοινό.\",\"Trnl3E\":\"Είστε σίγουροι ότι θέλετε να αρχειοθετήσετε αυτόν τον διοργανωτή; Αυτό θα αρχειοθετήσει και όλες τις εκδηλώσεις του.\",\"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\":\"Είστε σίγουροι ότι θέλετε να διαγράψετε όλες τις αποτυχημένες εργασίες;\",\"LchiNd\":\"Είστε σίγουροι ότι θέλετε να διαγράψετε αυτόν τον συνεργάτη; Αυτή η ενέργεια δεν μπορεί να αναιρεθεί.\",\"vPeW/6\":\"Είστε σίγουροι ότι θέλετε να διαγράψετε αυτή τη ρύθμιση; Αυτό μπορεί να επηρεάσει λογαριασμούς που τη χρησιμοποιούν.\",\"h42Hc/\":\"Are you sure you want to delete this date? This action cannot be undone.\",\"RiF/yT\":\"Are you sure you want to delete this image?\",\"b3+Qku\":\"Are you sure you want to delete this tax or fee? It will no longer be applied to new orders.\",\"JmVITJ\":\"Είστε σίγουροι ότι θέλετε να διαγράψετε αυτό το πρότυπο; Αυτή η ενέργεια δεν μπορεί να αναιρεθεί και τα email θα επιστρέψουν στο προεπιλεγμένο πρότυπο.\",\"aLS+A6\":\"Είστε σίγουροι ότι θέλετε να διαγράψετε αυτό το πρότυπο; Δεν μπορεί να αναιρεθεί και τα email θα επιστρέψουν στο πρότυπο του διοργανωτή ή στο προεπιλεγμένο.\",\"5H3Z78\":\"Είστε σίγουροι ότι θέλετε να διαγράψετε αυτό το webhook;\",\"147G4h\":\"Είστε σίγουροι ότι θέλετε να φύγετε;\",\"VDWChT\":\"Είστε σίγουροι ότι θέλετε να κάνετε αυτόν τον διοργανωτή πρόχειρο; Αυτό θα κάνει τη σελίδα του αόρατη στο κοινό\",\"pWtQJM\":\"Είστε σίγουροι ότι θέλετε να δημοσιεύσετε αυτόν τον διοργανωτή; Αυτό θα κάνει τη σελίδα του ορατή στο κοινό\",\"EOqL/A\":\"Είστε σίγουροι ότι θέλετε να προσφέρετε θέση σε αυτό το άτομο; Θα λάβει ειδοποίηση μέσω email.\",\"yAXqWW\":\"Are you sure you want to permanently delete this date? This cannot be undone.\",\"WFHOlF\":\"Είστε σίγουροι ότι θέλετε να δημοσιεύσετε αυτή την εκδήλωση; Μόλις δημοσιευτεί, θα είναι ορατή στο κοινό.\",\"4TNVdy\":\"Είστε σίγουροι ότι θέλετε να δημοσιεύσετε αυτό το προφίλ διοργανωτή; Μόλις δημοσιευτεί, θα είναι ορατό στο κοινό.\",\"8x0pUg\":\"Είστε σίγουροι ότι θέλετε να αφαιρέσετε αυτή την εγγραφή από τη λίστα αναμονής;\",\"cDtoWq\":[\"Είστε σίγουροι ότι θέλετε να αποστείλετε ξανά την επιβεβαίωση παραγγελίας στο \",[\"0\"],\";\"],\"xeIaKw\":[\"Είστε σίγουροι ότι θέλετε να αποστείλετε ξανά το εισιτήριο στο \",[\"0\"],\";\"],\"BjbocR\":\"Είστε σίγουροι ότι θέλετε να επαναφέρετε αυτή την εκδήλωση;\",\"7MjfcR\":\"Είστε σίγουροι ότι θέλετε να επαναφέρετε αυτόν τον διοργανωτή;\",\"b7tkGp\":\"Are you sure you want to revoke this invitation?\",\"ExDt3P\":\"Είστε σίγουροι ότι θέλετε να αποσύρετε αυτή την εκδήλωση; Δεν θα είναι πλέον ορατή στο κοινό.\",\"5Qmxo/\":\"Είστε σίγουροι ότι θέλετε να αποσύρετε αυτό το προφίλ διοργανωτή; Δεν θα είναι πλέον ορατό στο κοινό.\",\"Uqefyd\":\"Είστε εγγεγραμμένοι για ΦΠΑ στην ΕΕ;\",\"+QARA4\":\"Τέχνη\",\"tLf3yJ\":\"Καθώς η επιχείρησή σας εδρεύει στην Ιρλανδία, ο ιρλανδικός ΦΠΑ 23% εφαρμόζεται αυτόματα σε όλα τα τέλη πλατφόρμας.\",\"tMeVa/\":\"Ζήτηση ονόματος και email για κάθε εισιτήριο που αγοράζεται\",\"ui5ln+\":\"Assign a different plan\",\"9Jxliv\":\"Assign plan\",\"xdiER7\":\"Ανατεθειμένη Βαθμίδα\",\"F2rX0R\":\"Πρέπει να επιλεγεί τουλάχιστον ένας τύπος εκδήλωσης\",\"Z44eZS\":\"At least one product must stay available for this date. To make the date inaccessible, cancel it from the schedule instead.\",\"BCmibk\":\"Απόπειρες\",\"6PecK3\":\"Αριθμός παρουσιών και ρυθμοί check-in σε όλες τις εκδηλώσεις\",\"K2tp3v\":\"attendee\",\"AJ4rvK\":\"Ακύρωση Συμμετέχοντα\",\"qvylEK\":\"Δημιουργία Συμμετέχοντα\",\"Aspq3b\":\"Συλλογή στοιχείων συμμετέχοντα\",\"fpb0rX\":\"Τα στοιχεία συμμετέχοντα αντιγράφηκαν από την παραγγελία\",\"94aQMU\":\"Πληροφορίες Συμμετέχοντα\",\"KkrBiR\":\"Συλλογή πληροφοριών συμμετέχοντα\",\"sjPjOg\":\"Attendee notes\",\"cosfD8\":\"Κατάσταση Συμμετέχοντα\",\"D2qlBU\":\"Ενημέρωση Συμμετέχοντα\",\"22BOve\":\"Ο συμμετέχων ενημερώθηκε επιτυχώς\",\"x8Vnvf\":\"Το εισιτήριο του συμμετέχοντα δεν περιλαμβάνεται σε αυτή τη λίστα\",\"/Ywywr\":\"attendees\",\"zLRobu\":\"attendees checked in\",\"k3Tngl\":\"Οι συμμετέχοντες εξήχθησαν\",\"UoIRW8\":\"Εγγεγραμμένοι συμμετέχοντες\",\"5UbY+B\":\"Συμμετέχοντες με συγκεκριμένο εισιτήριο\",\"4HVzhV\":\"Συμμετέχοντες:\",\"HVkhy2\":\"Αναλυτικά Απόδοσης\",\"dMMjeD\":\"Ανάλυση Απόδοσης\",\"1oPDuj\":\"Αξία Απόδοσης\",\"DBHTm/\":\"August\",\"JgREph\":\"Η αυτόματη προσφορά είναι ενεργή\",\"V7Tejz\":\"Αυτόματη Επεξεργασία Λίστας Αναμονής\",\"PZ7FTW\":\"Ανιχνεύεται αυτόματα βάσει χρώματος φόντου, αλλά μπορεί να παρακαμφθεί\",\"zlnTuI\":\"Αυτόματη προσφορά εισιτηρίων στο επόμενο άτομο όταν η χωρητικότητα είναι διαθέσιμη. Εάν απενεργοποιηθεί, μπορείτε να επεξεργαστείτε χειροκίνητα τη λίστα αναμονής.\",\"csDS2L\":\"Διαθέσιμο\",\"Xp+ywP\":\"Διαθέσιμο μόλις ολοκληρωθεί η πληρωμή\",\"dwDH1K\":[\"Available times on \",[\"dayName\"]],\"clF06r\":\"Διαθέσιμο για Επιστροφή\",\"NB5+UG\":\"Διαθέσιμα Tokens\",\"L+wGOG\":\"Awaiting\",\"qcw2OD\":\"Awaiting pay\",\"kNmmvE\":\"Εκδηλώσεις Α.Ε.\",\"TeSaQO\":\"Επιστροφή στους Λογαριασμούς\",\"kYqM1A\":\"Επιστροφή στην Εκδήλωση\",\"s5QRF3\":\"Επιστροφή στα μηνύματα\",\"td/bh+\":\"Επιστροφή στις Αναφορές\",\"nsm7BA\":\"Πίσω στην αναζήτηση\",\"imjKVx\":\"Bank account connected\",\"D9LTCH\":\"Base Price\",\"hviJef\":\"Based on the global sale period above, not per date\",\"jIPNJG\":\"Βασικές Πληροφορίες\",\"UabgBd\":\"Το σώμα του μηνύματος είναι υποχρεωτικό\",\"HWXuQK\":\"Αποθηκεύστε αυτή τη σελίδα για να διαχειρίζεστε την παραγγελία σας ανά πάσα στιγμή.\",\"CUKVDt\":\"Δώστε στα εισιτήριά σας ταυτότητα με προσαρμοσμένο λογότυπο, χρώματα και μήνυμα υποσέλιδου.\",\"4BZj5p\":\"Built-in fraud protection\",\"cr7kGH\":\"Bulk Edit\",\"1Fbd6n\":\"Bulk Edit Dates\",\"Eq6Tu9\":\"Bulk update failed.\",\"9N+p+g\":\"Επιχείρηση\",\"SWnN1L\":\"Business address\",\"kQekXw\":\"Business name\",\"bv6RXK\":\"Ετικέτα Κουμπιού\",\"ChDLlO\":\"Κείμενο Κουμπιού\",\"BUe8Wj\":\"Ο αγοραστής πληρώνει\",\"qF1qbA\":\"Οι αγοραστές βλέπουν καθαρή τιμή. Το τέλος πλατφόρμας αφαιρείται από την πληρωμή σας.\",\"dg05rc\":\"Με την προσθήκη pixels παρακολούθησης, αναγνωρίζετε ότι εσείς και αυτή η πλατφόρμα είστε από κοινού υπεύθυνοι επεξεργασίας των δεδομένων που συλλέγονται. Είστε υπεύθυνοι για τη διασφάλιση ότι έχετε νόμιμη βάση για αυτή την επεξεργασία βάσει των ισχυόντων νόμων περί απορρήτου (ΓΚΠΔ, CCPA κ.λπ.).\",\"DFqasq\":[\"Συνεχίζοντας, αποδέχεστε τους <0>Όρους Χρήσης \",[\"0\"],\"\"],\"wVSa+U\":\"By day of month\",\"0MnNgi\":\"By day of week\",\"CetOZE\":\"By ticket type\",\"lFdbRS\":\"Παράκαμψη Χρεώσεων Εφαρμογής\",\"AjVXBS\":\"Calendar\",\"2VLZwd\":\"Κουμπί Κλήσης για Δράση\",\"rT2cV+\":\"Camera\",\"7hYa9y\":\"Camera permission was denied. <0>Request permission again, or grant this page camera access in your browser settings.\",\"D02dD9\":\"Καμπάνια\",\"RRPA79\":\"Can't check in\",\"OcVwAd\":[\"Cancel \",[\"count\"],\" date(s)\"],\"H4nE+E\":\"Ακύρωση όλων των προϊόντων και επιστροφή τους στη δεξαμενή\",\"Py78q9\":\"Cancel Date\",\"tOXAdc\":\"Η ακύρωση θα ακυρώσει όλους τους συμμετέχοντες που σχετίζονται με αυτή την παραγγελία και θα ελευθερώσει τα εισιτήρια στη διαθέσιμη δεξαμενή.\",\"FPpqc7\":[\"Cancelling \",[\"0\"],\" date(s). This may take a moment to complete.\"],\"01sEfm\":\"Δεν είναι δυνατή η διαγραφή της προεπιλεγμένης ρύθμισης συστήματος\",\"VsM1HH\":\"Αναθέσεις Χωρητικότητας\",\"9bIMVF\":\"Capacity management\",\"H7K8og\":\"Capacity must be 0 or greater\",\"nzao08\":\"capacity updates\",\"4cp9NP\":\"Capacity Used\",\"K7tIrx\":\"Κατηγορία\",\"DRK3Bq\":\"Category deleted successfully\",\"o+XJ9D\":\"Αλλαγή\",\"kJkjoB\":\"Change duration\",\"J0KExZ\":\"Change the attendee limit\",\"ssospy\":\"Change time\",\"CIHJJf\":\"Αλλαγή ρυθμίσεων λίστας αναμονής\",\"B5icLR\":[\"Changed duration for \",[\"count\"],\" date(s)\"],\"Kb+0BT\":\"Charges\",\"2tbLdK\":\"Φιλανθρωπία\",\"BPWGKn\":\"Check in\",\"6uFFoY\":\"Check out\",\"FjAlwK\":[\"Check out this event: \",[\"0\"]],\"v4fiSg\":\"Ελέγξτε το email σας\",\"51AsAN\":\"Ελέγξτε τα εισερχόμενά σας! Εάν υπάρχουν εισιτήρια συνδεδεμένα με αυτό το email, θα λάβετε σύνδεσμο για προβολή.\",\"Y3FYXy\":\"Check-In\",\"udRwQs\":\"Δημιουργία Check-in\",\"F4SRy3\":\"Διαγραφή Check-in\",\"as6XfO\":[\"Check-in for \",[\"0\"],\" was undone\"],\"9s/wrQ\":\"Check-in history\",\"Wwztk4\":\"Check-In List\",\"9gPPUY\":\"Δημιουργία Λίστας Check-In\",\"dwjiJt\":\"Check-in list info\",\"7od0PV\":\"check-in lists\",\"f2vU9t\":\"Λίστες Check-in\",\"XprdTn\":\"Check-in navigation\",\"5tV1in\":\"Check-in progress\",\"SHJwyq\":\"Ρυθμός Check-in\",\"qCqdg6\":\"Κατάσταση Check-In\",\"cKj6OE\":\"Σύνοψη Check-in\",\"7B5M35\":\"Check-Ins\",\"VrmydS\":\"Checked in\",\"DM4gBB\":\"Κινεζικά (Παραδοσιακά)\",\"p8Jvp4\":\"Choose a configuration\",\"ElShBO\":\"Choose a different action\",\"pHEhf+\":\"Επιλέξτε γραμματοσειρά που ταιριάζει στη μάρκα σας. Οι γραμματοσειρές φιλοξενούνται αυτόνομα μέσω Bunny Fonts.\",\"Zok1Gx\":\"Choose an organizer\",\"pkk46Q\":\"Επιλέξτε Διοργανωτή\",\"Ag32+c\":\"Choose another date\",\"Crr3pG\":\"Επιλογή ημερολογίου\",\"Z38ZJu\":\"Επιλέξτε πώς εμφανίζεται η ημερομηνία της εκδήλωσης στο εισιτήριο\",\"LAW8Vb\":\"Επιλέξτε την προεπιλεγμένη ρύθμιση για νέες εκδηλώσεις. Μπορεί να παρακαμφθεί για μεμονωμένες εκδηλώσεις.\",\"pjp2n5\":\"Επιλέξτε ποιος πληρώνει το τέλος πλατφόρμας. Αυτό δεν επηρεάζει πρόσθετα τέλη που έχετε ρυθμίσει στις ρυθμίσεις λογαριασμού.\",\"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\":\"Κλικ για προβολή σημειώσεων\",\"RG3szS\":\"κλείσιμο\",\"RWw9Lg\":\"Κλείσιμο παραθύρου\",\"XwdMMg\":\"Ο κωδικός μπορεί να περιέχει μόνο γράμματα, αριθμούς, παύλες και κάτω παύλες\",\"+yMJb7\":\"Ο κωδικός είναι υποχρεωτικός\",\"m9SD3V\":\"Ο κωδικός πρέπει να έχει τουλάχιστον 3 χαρακτήρες\",\"V1krgP\":\"Ο κωδικός δεν μπορεί να υπερβαίνει τους 20 χαρακτήρες\",\"psqIm5\":\"Συνεργαστείτε με την ομάδα σας για να δημιουργήσετε εκπληκτικές εκδηλώσεις μαζί.\",\"4bUH9i\":\"Συλλογή στοιχείων συμμετέχοντα για κάθε αγορασμένο εισιτήριο.\",\"TkfG8v\":\"Συλλογή στοιχείων ανά παραγγελία\",\"96ryID\":\"Συλλογή στοιχείων ανά εισιτήριο\",\"FpsvqB\":\"Λειτουργία Χρώματος\",\"jEu4bB\":\"Στήλες\",\"CWk59I\":\"Κωμωδία\",\"rPA+Gc\":\"Προτιμήσεις Επικοινωνίας\",\"zFT5rr\":\"complete\",\"bUQMpb\":\"Complete Stripe setup\",\"744BMm\":\"Ολοκληρώστε την παραγγελία σας για να εξασφαλίσετε τα εισιτήριά σας. Αυτή η προσφορά είναι χρονικά περιορισμένη, μην αναβάλλετε.\",\"5YrKW7\":\"Ολοκληρώστε την πληρωμή σας για να εξασφαλίσετε τα εισιτήριά σας.\",\"xGU92i\":\"Ολοκληρώστε το προφίλ σας για να συμμετάσχετε στην ομάδα.\",\"QOhkyl\":\"Σύνταξη\",\"ih35UP\":\"Συνεδριακό Κέντρο\",\"ywFj2D\":\"Configuration\",\"WTw0bB\":\"Configuration assigned\",\"X1zdE7\":\"Η ρύθμιση δημιουργήθηκε επιτυχώς\",\"mLBUMQ\":\"Η ρύθμιση διαγράφηκε επιτυχώς\",\"UIENhw\":\"Τα ονόματα ρυθμίσεων είναι ορατά στους τελικούς χρήστες. Τα σταθερά τέλη θα μετατραπούν στο νόμισμα παραγγελίας με την τρέχουσα ισοτιμία.\",\"eeZdaB\":\"Η ρύθμιση ενημερώθηκε επιτυχώς\",\"3cKoxx\":\"Ρυθμίσεις\",\"8v2LRU\":\"Ρύθμιση λεπτομερειών εκδήλωσης, τοποθεσίας, επιλογών ολοκλήρωσης αγοράς και ειδοποιήσεων email.\",\"raw09+\":\"Ρύθμιση τρόπου συλλογής στοιχείων συμμετεχόντων κατά το checkout\",\"FI60XC\":\"Ρύθμιση Φόρων & Τελών\",\"av6ukY\":\"Configure which products are available for this occurrence and optionally adjust pricing.\",\"NGXKG/\":\"Επιβεβαίωση Διεύθυνσης Email\",\"JRQitQ\":\"Επιβεβαίωση νέου κωδικού\",\"Auz0Mz\":\"Επιβεβαιώστε το email σας για πρόσβαση σε όλες τις λειτουργίες.\",\"7+grte\":\"Στάλθηκε email επιβεβαίωσης! Παρακαλώ ελέγξτε τα εισερχόμενά σας.\",\"n/7+7Q\":\"Επιβεβαίωση εστάλη στο\",\"x3wVFc\":\"Συγχαρητήρια! Η εκδήλωσή σας είναι τώρα ορατή στο κοινό.\",\"0W2NQP\":\"Connect bank\",\"/K4Vqr\":\"Συνδέστε το Stripe για να δέχεστε πληρωμές\",\"nQI4H5\":\"Συνδέστε το Stripe για να ενεργοποιήσετε την επεξεργασία προτύπων email\",\"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\":\"Για διαδικτυακές εκδηλώσεις απαιτούνται στοιχεία σύνδεσης\",\"jfC/xh\":\"Επικοινωνία\",\"LOFgda\":[\"Επικοινωνία με \",[\"0\"]],\"41BQ3k\":\"Email Επικοινωνίας\",\"m8WD6t\":\"Συνέχεια Ρύθμισης\",\"0GwUT4\":\"Συνέχεια στην Ολοκλήρωση Αγοράς\",\"sBV87H\":\"Συνέχεια στη δημιουργία εκδήλωσης\",\"nKtyYu\":\"Συνέχεια στο επόμενο βήμα\",\"F3/nus\":\"Συνέχεια στην Πληρωμή\",\"s30OcA\":\"Ελέγξτε πώς εμφανίζονται οι ημερομηνίες και οι ώρες στη σελίδα της εκδήλωσης\",\"p2FRHj\":\"Έλεγχος τρόπου διαχείρισης τελών πλατφόρμας για αυτή την εκδήλωση\",\"NqfabH\":\"Control who gets in for this date\",\"fmYxZx\":\"Control who gets in, and when\",\"1JnTgU\":\"Αντιγράφηκε από παραπάνω\",\"FxVG/l\":\"Αντιγράφηκε στο πρόχειρο\",\"PiH3UR\":\"Αντιγράφηκε!\",\"4i7smN\":\"Copy account ID\",\"uUPbPg\":\"Αντιγραφή Συνδέσμου Συνεργάτη\",\"iVm46+\":\"Αντιγραφή Κωδικού\",\"cF2ICc\":\"Αντιγραφή συνδέσμου πελάτη\",\"+2ZJ7N\":\"Αντιγραφή στοιχείων στον πρώτο συμμετέχοντα\",\"ZN1WLO\":\"Αντιγραφή Email\",\"y1eoq1\":\"Αντιγραφή συνδέσμου\",\"tUGbi8\":\"Αντιγραφή στοιχείων μου σε:\",\"y22tv0\":\"Αντιγράψτε αυτό τον σύνδεσμο για κοινοποίηση οπουδήποτε\",\"/4gGIX\":\"Αντιγραφή στο πρόχειρο\",\"e0f4yB\":\"Δεν ήταν δυνατή η διαγραφή της τοποθεσίας\",\"vkiDx2\":\"Could not prepare the bulk update.\",\"KOavaU\":\"Δεν ήταν δυνατή η ανάκτηση των στοιχείων της διεύθυνσης\",\"/lq4oO\":\"Could not save date\",\"mHu0az\":\"Couldn't send verification email. Please try again.\",\"QOIm+S\":\"Οι αριθμοί περιλαμβάνουν όλες τις επερχόμενες ημερομηνίες. Σε κάθε άτομο προσφέρεται θέση για την ημερομηνία για την οποία εγγράφηκε.\",\"P0rbCt\":\"Εικόνα Εξωφύλλου\",\"p4kqHr\":\"Cover image added\",\"60u+dQ\":\"Η εικόνα εξωφύλλου θα εμφανίζεται στην κορυφή της σελίδας εκδήλωσης\",\"2NLjA6\":\"Η εικόνα εξωφύλλου θα εμφανίζεται στην κορυφή της σελίδας διοργανωτή\",\"GkrqoY\":\"Covers every ticket\",\"zg4oSu\":[\"Δημιουργία Προτύπου \",[\"0\"]],\"RKKhnW\":\"Δημιουργήστε προσαρμοσμένο widget για πώληση εισιτηρίων στον ιστότοπό σας.\",\"6sk7PP\":\"Create a fixed number\",\"jqhTmw\":\"Create a list for this date\",\"PhioFp\":\"Create a new check-in list for an active session, or contact the organizer if you think this is a mistake.\",\"yIRev4\":\"Δημιουργία κωδικού\",\"j7xZ7J\":\"Δημιουργήστε πρόσθετους διοργανωτές για τη διαχείριση ξεχωριστών επωνυμιών, τμημάτων ή σειρών εκδηλώσεων υπό έναν λογαριασμό.\",\"xfKgwv\":\"Δημιουργία Συνεργάτη\",\"tudG8q\":\"Δημιουργία και ρύθμιση εισιτηρίων και εμπορευμάτων προς πώληση.\",\"YAl9Hg\":\"Δημιουργία Ρύθμισης\",\"BTne9e\":\"Δημιουργία προσαρμοσμένων προτύπων email για αυτή την εκδήλωση που παρακάμπτουν τις προεπιλογές του διοργανωτή\",\"YIDzi/\":\"Δημιουργία Προσαρμοσμένου Προτύπου\",\"tsGqx5\":\"Create Date\",\"Nc3l/D\":\"Δημιουργία εκπτώσεων, κωδικών πρόσβασης για κρυφά εισιτήρια και ειδικές προσφορές.\",\"PybJS2\":\"Create event\",\"eWEV9G\":\"Δημιουργία νέου κωδικού\",\"wl2iai\":\"Create Schedule\",\"8AiKIu\":\"Δημιουργία Εισιτηρίου ή Προϊόντος\",\"/HGmW9\":\"Δημιουργήστε παρακολουθήσιμους συνδέσμους για να ανταμείψετε εταίρους που προωθούν την εκδήλωσή σας.\",\"dkAPxi\":\"Δημιουργία Webhook\",\"5slqwZ\":\"Δημιουργήστε την Εκδήλωσή σας\",\"JQNMrj\":\"Δημιουργήστε την πρώτη σας εκδήλωση\",\"CCjxOC\":\"Δημιουργήστε την πρώτη σας εκδήλωση για να ξεκινήσετε να πουλάτε εισιτήρια και να διαχειρίζεστε συμμετέχοντες.\",\"ZCSSd+\":\"Δημιουργήστε τη δική σας εκδήλωση\",\"67NsZP\":\"Δημιουργία Εκδήλωσης...\",\"H34qcM\":\"Δημιουργία Διοργανωτή...\",\"1YMS+X\":\"Δημιουργία εκδήλωσης, παρακαλώ περιμένετε\",\"yiy8Jt\":\"Δημιουργία προφίλ διοργανωτή, παρακαλώ περιμένετε\",\"lfLHNz\":\"Η ετικέτα CTA είναι υποχρεωτική\",\"0xLR6W\":\"Currently assigned\",\"iTvh6I\":\"Διαθέσιμο για αγορά αυτή τη στιγμή\",\"A42Dqn\":\"Custom branding\",\"Guo0lU\":\"Προσαρμοσμένη ημερομηνία και ώρα\",\"WDMdn8\":\"Custom questions\",\"O6mra8\":\"Προσαρμοσμένες Ερωτήσεις\",\"axv/Mi\":\"Προσαρμοσμένο πρότυπο\",\"2YeVGY\":\"Ο σύνδεσμος πελάτη αντιγράφηκε στο πρόχειρο\",\"QMHSMS\":\"Ο πελάτης θα λάβει email επιβεβαίωσης επιστροφής\",\"NihQNk\":\"Πελάτες\",\"hINN++\":\"Customize page\",\"7gsjkI\":\"Προσαρμόστε τα email που αποστέλλονται στους πελάτες σας χρησιμοποιώντας Liquid templating. Αυτά τα πρότυπα θα χρησιμοποιούνται ως προεπιλογές για όλες τις εκδηλώσεις στον οργανισμό σας.\",\"xJaTUK\":\"Προσαρμογή διάταξης, χρωμάτων και επωνυμίας της αρχικής σελίδας εκδήλωσης.\",\"MXZfGN\":\"Προσαρμογή των ερωτήσεων κατά το checkout για συλλογή σημαντικών πληροφοριών από τους συμμετέχοντες.\",\"iX6SLo\":\"Προσαρμογή κειμένου στο κουμπί συνέχεια\",\"pxNIxa\":\"Προσαρμόστε το πρότυπο email χρησιμοποιώντας Liquid templating\",\"3trPKm\":\"Προσαρμογή εμφάνισης σελίδας διοργανωτή\",\"U0sC6H\":\"Daily\",\"/gWrVZ\":\"Καθημερινά έσοδα, φόροι, τέλη και επιστροφές σε όλες τις εκδηλώσεις\",\"zgCHnE\":\"Καθημερινή Αναφορά Πωλήσεων\",\"nHm0AI\":\"Ανάλυση καθημερινών πωλήσεων, φόρων και τελών\",\"1aPnDT\":\"Dance\",\"pvnfJD\":\"Σκοτεινό\",\"MaB9wW\":\"Date Cancellation\",\"e6cAxJ\":\"Date cancelled\",\"81jBnC\":\"Date cancelled successfully\",\"a/C/6R\":\"Date created successfully\",\"IW7Q+u\":\"Date deleted\",\"rngCAz\":\"Date deleted successfully\",\"vHbfoQ\":\"Date reactivated\",\"hvah+S\":\"Date reopened for new sales\",\"Ez0YsD\":\"Date updated successfully\",\"Te33mU\":\"Dates are managed per occurrence\",\"91zCxb\":\"Dates with sessions\",\"/ITcnz\":\"day\",\"H7OUPr\":\"Day\",\"JtHrX9\":\"Day of Month\",\"J/Upwb\":\"days\",\"vDVA2I\":\"Days of Month\",\"rDLvlL\":\"Days of Week\",\"r6zgGo\":\"December\",\"jbq7j2\":\"Απόρριψη\",\"ovBPCi\":\"Προεπιλογή\",\"JtI4vj\":\"Προεπιλεγμένη συλλογή πληροφοριών συμμετέχοντα\",\"ULjv90\":\"Default capacity per date\",\"3R/Tu2\":\"Προεπιλεγμένη Διαχείριση Τελών\",\"1bZAZA\":\"Θα χρησιμοποιηθεί το προεπιλεγμένο πρότυπο\",\"HNlEFZ\":\"διαγραφή\",\"KpnwJK\":[\"Διαγραφή \\\"\",[\"0\"],\"\\\";\"],\"BlII4o\":[\"Delete \",[\"count\"],\" selected date(s)? Dates with orders will be skipped. This cannot be undone.\"],\"vu7gDm\":\"Διαγραφή Συνεργάτη\",\"KZN4Lc\":\"Διαγραφή Όλων\",\"6EkaOO\":\"Delete Date\",\"io0G93\":\"Διαγραφή Εκδήλωσης\",\"+jw/c1\":\"Διαγραφή εικόνας\",\"hdyeZ0\":\"Διαγραφή Εργασίας\",\"xxjZeP\":\"Διαγραφή τοποθεσίας\",\"sY3tIw\":\"Διαγραφή Διοργανωτή\",\"UBv8UK\":\"Delete Permanently\",\"dPyJ15\":\"Διαγραφή Προτύπου\",\"IQTR34\":\"Delete this category? Any products in it will also be deleted. This cannot be undone.\",\"/1wMxk\":\"Delete this product? This cannot be undone.\",\"mxsm1o\":\"Διαγραφή αυτής της ερώτησης; Δεν μπορεί να αναιρεθεί.\",\"snMaH4\":\"Διαγραφή webhook\",\"LIZZLY\":[\"Deleted \",[\"0\"],\" date(s)\"],\"7w0Wev\":\"Description and venue added\",\"vYgeDk\":\"Αποεπιλογή Όλων\",\"NvuEhl\":\"Στοιχεία Σχεδιασμού\",\"H8kMHT\":\"Δεν λάβατε τον κωδικό;\",\"G8KNgd\":\"Different location\",\"E/QGRL\":\"Disabled\",\"OdPOhy\":\"Discord\",\"nZJ8tu\":\"Dismiss setup checklist\",\"QotGhf\":\"Απόρριψη αυτού του μηνύματος\",\"BREO0S\":\"Εμφάνιση πλαισίου ελέγχου που επιτρέπει στους πελάτες να επιλέξουν λήψη μηνυμάτων μάρκετινγκ από αυτόν τον διοργανωτή.\",\"HtaSQp\":\"Εμφανίζει πόσες θέσεις απομένουν για κάθε ημερομηνία στο widget εισιτηρίων. Μπορείτε να το παρακάμψετε για μεμονωμένες ημερομηνίες.\",\"pfa8F0\":\"Εμφανιζόμενο όνομα\",\"Kdpf90\":\"Μην ξεχάσετε!\",\"352VU2\":\"Δεν έχετε λογαριασμό; <0>Εγγραφείτε\",\"AXXqG+\":\"Δωρεά\",\"DPfwMq\":\"Ολοκληρώθηκε\",\"JoPiZ2\":\"Door staff instructions\",\"2+O9st\":\"Λήψη αναφορών πωλήσεων, συμμετεχόντων και οικονομικών για όλες τις ολοκληρωμένες παραγγελίες.\",\"eneWvv\":\"Πρόχειρο\",\"Ts8hhq\":\"Λόγω υψηλού κινδύνου spam, πρέπει να συνδέσετε λογαριασμό Stripe πριν τροποποιήσετε πρότυπα email. Αυτό διασφαλίζει ότι όλοι οι διοργανωτές είναι επαληθευμένοι.\",\"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\":\"Αντιγραφή\",\"YueC+F\":\"Duplicate Date\",\"KRmTkx\":\"Αντιγραφή Προϊόντος\",\"Jd3ymG\":\"Duration must be at least 1 minute.\",\"KIjvtr\":\"Ολλανδικά\",\"22xieU\":\"π.χ. 180 (3 ώρες)\",\"/zajIE\":\"e.g. Morning Session\",\"SPKbfM\":\"π.χ., Αγορά Εισιτηρίων, Εγγραφή Τώρα\",\"fc7wGW\":\"π.χ., Σημαντική ενημέρωση για τα εισιτήριά σας\",\"54MPqC\":\"π.χ., Βασικό, Premium, Enterprise\",\"3RQ81z\":\"Κάθε άτομο θα λάβει email με μια δεσμευμένη θέση για να ολοκληρώσει την αγορά του.\",\"Xfsjel\":\"Κάθε προϊόν\",\"5oD9f/\":\"Earlier\",\"LTzmgK\":[\"Επεξεργασία Προτύπου \",[\"0\"]],\"v4+lcZ\":\"Επεξεργασία Συνεργάτη\",\"2iZEz7\":\"Επεξεργασία Απάντησης\",\"t2bbp8\":\"Επεξεργασία Συμμετέχοντα\",\"etaWtB\":\"Επεξεργασία Στοιχείων Συμμετέχοντα\",\"+guao5\":\"Επεξεργασία Ρύθμισης\",\"1Mp/A4\":\"Edit Date\",\"m0ZqOT\":\"Επεξεργασία τοποθεσίας\",\"8oivFT\":\"Επεξεργασία τοποθεσίας\",\"vRWOrM\":\"Επεξεργασία Λεπτομερειών Παραγγελίας\",\"fW5sSv\":\"Επεξεργασία webhook\",\"nP7CdQ\":\"Επεξεργασία Webhook\",\"MRZxAn\":\"Edited\",\"uBAxNB\":\"Επεξεργαστής\",\"aqxYLv\":\"Εκπαίδευση\",\"iiWXDL\":\"Αποτυχίες Επιλεξιμότητας\",\"zPiC+q\":\"Επιλέξιμες Λίστες Check-In\",\"SiVstt\":\"Email & scheduled messages\",\"V2sk3H\":\"Email & Πρότυπα\",\"hbwCKE\":\"Η διεύθυνση email αντιγράφηκε στο πρόχειρο\",\"dSyJj6\":\"Οι διευθύνσεις email δεν ταιριάζουν\",\"elW7Tn\":\"Σώμα Email\",\"ZsZeV2\":\"Το email είναι υποχρεωτικό\",\"Be4gD+\":\"Προεπισκόπηση Email\",\"6IwNUc\":\"Πρότυπα Email\",\"H/UMUG\":\"Απαιτείται Επαλήθευση Email\",\"PLEl94\":\"Email verified\",\"L86zy2\":\"Το email επαληθεύτηκε επιτυχώς!\",\"FSN4TS\":\"Ενσωμάτωση Widget\",\"z9NkYY\":\"Embeddable widget\",\"Qj0GKe\":\"Ενεργοποίηση αυτοεξυπηρέτησης συμμετέχοντα\",\"hEtQsg\":\"Ενεργοποίηση αυτοεξυπηρέτησης συμμετέχοντα ως προεπιλογή\",\"Upeg/u\":\"Ενεργοποίηση αυτού του προτύπου για αποστολή email\",\"7dSOhU\":\"Ενεργοποίηση Λίστας Αναμονής\",\"RxzN1M\":\"Ενεργοποιημένο\",\"xDr/ct\":\"End\",\"sGjBEq\":\"Ημερομηνία & Ώρα Λήξης (προαιρετικό)\",\"PKXt9R\":\"Η ημερομηνία λήξης πρέπει να είναι μετά την ημερομηνία έναρξης\",\"ZayGC7\":\"End on a date\",\"48Y16Q\":\"Ώρα λήξης (προαιρετικό)\",\"TbaYrr\":[\"Ended \",[\"0\"]],\"CFgwiw\":[\"Ends \",[\"0\"]],\"SqOIQU\":\"Enter a capacity value or choose unlimited.\",\"h37gRz\":\"Enter a label or choose to remove it.\",\"7YZofi\":\"Εισάγετε θέμα και σώμα για προεπισκόπηση\",\"khyScF\":\"Enter a time to shift by.\",\"SKx/0u\":\"Εισαγάγετε όνομα χώρου ή διεύθυνση\",\"ppwojw\":\"Εισαγάγετε όνομα χώρου ή διεύθυνση για δια ζώσης εκδηλώσεις\",\"j+eCIq\":\"Χειροκίνητη εισαγωγή διεύθυνσης\",\"3bR1r4\":\"Εισάγετε email συνεργάτη (προαιρετικό)\",\"ARkzso\":\"Εισάγετε όνομα συνεργάτη\",\"ej4L8b\":\"Enter capacity\",\"6KnyG0\":\"Εισάγετε email\",\"INDKM9\":\"Εισάγετε θέμα email...\",\"xUgUTh\":\"Εισάγετε όνομα\",\"9/1YKL\":\"Εισάγετε επώνυμο\",\"VpwcSk\":\"Εισάγετε νέο κωδικό\",\"kWg31j\":\"Εισάγετε μοναδικό κωδικό συνεργάτη\",\"C3nD/1\":\"Εισάγετε το email σας\",\"VmXiz4\":\"Εισάγετε το email σας και θα σας στείλουμε οδηγίες επαναφοράς κωδικού.\",\"n9V+ps\":\"Εισάγετε το όνομά σας\",\"IdULhL\":\"Εισάγετε τον αριθμό ΦΠΑ με τον κωδικό χώρας, χωρίς κενά (π.χ., GR123456789)\",\"RRlWVA\":\"Ολόκληρη η παραγγελία\",\"o21Y+P\":\"entries\",\"X88/6w\":\"Οι εγγραφές θα εμφανίζονται εδώ όταν οι πελάτες εγγράφονται στη λίστα αναμονής για εξαντλημένα προϊόντα.\",\"LslKhj\":\"Σφάλμα φόρτωσης αρχείων καταγραφής\",\"VCNHvW\":\"Εκδήλωση Αρχειοθετήθηκε\",\"ZD0XSb\":\"Η εκδήλωση αρχειοθετήθηκε επιτυχώς\",\"WgD6rb\":\"Κατηγορία Εκδήλωσης\",\"b46pt5\":\"Εικόνα Εξωφύλλου Εκδήλωσης\",\"NAUIJ7\":\"Event created\",\"1b77ID\":\"Εκδήλωση Δημιουργήθηκε\",\"1Hzev4\":\"Προσαρμοσμένο πρότυπο εκδήλωσης\",\"+v+GW0\":\"Εμφάνιση ημερομηνίας εκδήλωσης\",\"7u9/DO\":\"Η εκδήλωση διαγράφηκε επιτυχώς\",\"imgKgl\":\"Περιγραφή Εκδήλωσης\",\"IzR/Fc\":\"Event lifetime\",\"PYs3rP\":\"Όνομα εκδήλωσης\",\"HhwcTQ\":\"Όνομα Εκδήλωσης\",\"WZZzB6\":\"Το όνομα εκδήλωσης είναι υποχρεωτικό\",\"Wd5CDM\":\"Το όνομα εκδήλωσης πρέπει να έχει λιγότερους από 150 χαρακτήρες\",\"4JzCvP\":\"Η Εκδήλωση Δεν Είναι Διαθέσιμη\",\"mImacG\":\"Σελίδα Εκδήλωσης\",\"Hk9Ki/\":\"Η εκδήλωση αποκαταστάθηκε επιτυχώς\",\"JyD0LH\":\"Ρυθμίσεις Εκδήλωσης\",\"XVLu2v\":\"Τίτλος Εκδήλωσης\",\"OfmsI9\":\"Εκδήλωση Πολύ Νέα\",\"4SILkp\":\"Event totals\",\"YDVUVl\":\"Τύποι Εκδηλώσεων\",\"+HeiVx\":\"Εκδήλωση Ενημερώθηκε\",\"19j6uh\":\"Απόδοση Εκδηλώσεων\",\"PC3/fk\":\"Εκδηλώσεις που Ξεκινούν τις Επόμενες 24 Ώρες\",\"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\":\"Κάθε πρότυπο email πρέπει να περιλαμβάνει κουμπί κλήσης για δράση που συνδέεται στην κατάλληλη σελίδα\",\"BVinvJ\":\"Παραδείγματα: \\\"Πώς μάθατε για εμάς;\\\", \\\"Επωνυμία εταιρείας για τιμολόγιο\\\"\",\"2hGPQG\":\"Παραδείγματα: \\\"Μέγεθος μπλούζας\\\", \\\"Προτίμηση γεύματος\\\", \\\"Επαγγελματικός τίτλος\\\"\",\"qNuTh3\":\"Εξαίρεση\",\"M1RnFv\":\"Ληγμένο\",\"kF8HQ7\":\"Εξαγωγή Απαντήσεων\",\"2KAI4N\":\"Εξαγωγή CSV\",\"JKfSAv\":\"Η εξαγωγή απέτυχε. Παρακαλώ δοκιμάστε ξανά.\",\"SVOEsu\":\"Η εξαγωγή ξεκίνησε. Προετοιμασία αρχείου...\",\"wuyaZh\":\"Επιτυχής εξαγωγή\",\"9bpUSo\":\"Εξαγωγή Συνεργατών\",\"jtrqH9\":\"Εξαγωγή Συμμετεχόντων\",\"R4Oqr8\":\"Εξαγωγή ολοκληρώθηκε. Λήψη αρχείου...\",\"UlAK8E\":\"Εξαγωγή Παραγγελιών\",\"DwuoH0\":\"Facebook\",\"7Bj3x9\":\"Απέτυχε\",\"8uOlgz\":\"Απέτυχε στο\",\"tKcbYd\":\"Αποτυχημένες Εργασίες\",\"SsI9v/\":\"Αποτυχία εγκατάλειψης παραγγελίας. Παρακαλώ δοκιμάστε ξανά.\",\"LdPKPR\":\"Αποτυχία ανάθεσης ρύθμισης\",\"PO0cfn\":\"Failed to cancel date\",\"YUX+f+\":\"Failed to cancel dates\",\"SIHgVQ\":\"Αποτυχία ακύρωσης μηνύματος\",\"cEFg3R\":\"Αποτυχία δημιουργίας συνεργάτη\",\"dVgNF1\":\"Αποτυχία δημιουργίας ρύθμισης\",\"fAoRRJ\":\"Failed to create schedule\",\"U66oUa\":\"Αποτυχία δημιουργίας προτύπου\",\"aFk48v\":\"Αποτυχία διαγραφής ρύθμισης\",\"n1CYMH\":\"Failed to delete date\",\"KXv+Qn\":\"Failed to delete date. It may have existing orders.\",\"JJ0uRo\":\"Failed to delete dates\",\"rgoBnv\":\"Αποτυχία διαγραφής εκδήλωσης\",\"Zw6LWb\":\"Αποτυχία διαγραφής εργασίας\",\"tq0abZ\":\"Αποτυχία διαγραφής εργασιών\",\"2mkc3c\":\"Αποτυχία διαγραφής διοργανωτή\",\"5E23qd\":\"Failed to delete product. Please try again.\",\"vKMKnu\":\"Αποτυχία διαγραφής ερώτησης\",\"xFj7Yj\":\"Αποτυχία διαγραφής προτύπου\",\"jo3Gm6\":\"Αποτυχία εξαγωγής συνεργατών\",\"Jjw03p\":\"Αποτυχία εξαγωγής συμμετεχόντων\",\"ZPwFnN\":\"Αποτυχία εξαγωγής παραγγελιών\",\"zGE3CH\":\"Αποτυχία εξαγωγής αναφοράς. Παρακαλώ δοκιμάστε ξανά.\",\"lS9/aZ\":\"Αποτυχία φόρτωσης παραληπτών\",\"X4o0MX\":\"Αποτυχία φόρτωσης Webhook\",\"ETcU7q\":\"Αποτυχία προσφοράς θέσης\",\"5670b9\":\"Αποτυχία προσφοράς εισιτηρίων\",\"e5KIbI\":\"Failed to reactivate date\",\"7zyx8a\":\"Αποτυχία αφαίρεσης από λίστα αναμονής\",\"A/P7PX\":\"Failed to remove override\",\"ogWc1z\":\"Failed to reopen date\",\"0+iwE5\":\"Αποτυχία αναδιάταξης ερωτήσεων\",\"EJPAcd\":\"Αποτυχία επαναποστολής επιβεβαίωσης παραγγελίας\",\"DjSbj3\":\"Αποτυχία επαναποστολής εισιτηρίου\",\"YQ3QSS\":\"Αποτυχία επαναποστολής κωδικού επαλήθευσης\",\"wDioLj\":\"Αποτυχία επανάληψης εργασίας\",\"DKYTWG\":\"Αποτυχία επανάληψης εργασιών\",\"WRREqF\":\"Failed to save override\",\"sj/eZA\":\"Failed to save price override\",\"780n8A\":\"Failed to save product settings\",\"zTkTF3\":\"Αποτυχία αποθήκευσης προτύπου\",\"l6acRV\":\"Αποτυχία αποθήκευσης ρυθμίσεων ΦΠΑ. Παρακαλώ δοκιμάστε ξανά.\",\"T6B2gk\":\"Αποτυχία αποστολής μηνύματος. Παρακαλώ δοκιμάστε ξανά.\",\"lKh069\":\"Αποτυχία εκκίνησης εργασίας εξαγωγής\",\"t/KVOk\":\"Αποτυχία εκκίνησης υποκατάστασης. Παρακαλώ δοκιμάστε ξανά.\",\"QXgjH0\":\"Αποτυχία διακοπής υποκατάστασης. Παρακαλώ δοκιμάστε ξανά.\",\"i0QKrm\":\"Αποτυχία ενημέρωσης συνεργάτη\",\"NNc33d\":\"Αποτυχία ενημέρωσης απάντησης.\",\"E9jY+o\":\"Αποτυχία ενημέρωσης συμμετέχοντα\",\"uQynyf\":\"Αποτυχία ενημέρωσης ρύθμισης\",\"i2PFQJ\":\"Αποτυχία ενημέρωσης κατάστασης εκδήλωσης\",\"EhlbcI\":\"Αποτυχία ενημέρωσης βαθμίδας μηνυμάτων\",\"rpGMzC\":\"Αποτυχία ενημέρωσης παραγγελίας\",\"T2aCOV\":\"Αποτυχία ενημέρωσης κατάστασης διοργανωτή\",\"Eeo/Gy\":\"Αποτυχία ενημέρωσης ρύθμισης\",\"kqA9lY\":\"Αποτυχία ενημέρωσης ρυθμίσεων ΦΠΑ\",\"7/9RFs\":\"Αποτυχία μεταφόρτωσης εικόνας.\",\"nkNfWu\":\"Αποτυχία μεταφόρτωσης εικόνας. Παρακαλώ δοκιμάστε ξανά.\",\"rxy0tG\":\"Αποτυχία επαλήθευσης email\",\"QRUpCk\":\"Family\",\"5LO38w\":\"Fast payouts to your bank\",\"4lgLew\":\"February\",\"9bHCo2\":\"Νόμισμα Τέλους\",\"/sV91a\":\"Διαχείριση Τελών\",\"K4dKSP\":\"Fee override saved\",\"LyUWXA\":\"Τέλη Παρακαμφθέντα\",\"cf35MA\":\"Φεστιβάλ\",\"pAey+4\":\"Το αρχείο είναι πολύ μεγάλο. Μέγιστο μέγεθος 5MB.\",\"VejKUM\":\"Συμπληρώστε πρώτα τα στοιχεία σας παραπάνω\",\"/n6q8B\":\"Film\",\"L1qbUx\":\"Filter attendees\",\"8OvVZZ\":\"Φιλτράρισμα Συμμετεχόντων\",\"N/H3++\":\"Filter by date\",\"mvrlBO\":\"Φιλτράρισμα ανά Εκδήλωση\",\"g+xRXP\":\"Finish setting up Stripe\",\"LHH461\":\"Finish setup\",\"syyeb9\":\"First\",\"Vj6wk9\":\"First 30 days\",\"/bpZYb\":\"First 7 days\",\"ziEnjY\":\"First 90 days\",\"1vBhpG\":\"Πρώτος συμμετέχων\",\"4pwejF\":\"Το όνομα είναι υποχρεωτικό\",\"rVogsf\":\"Διορθώστε τα προβλήματα για να δημοσιεύσετε\",\"3lkYdQ\":\"Fixed fee\",\"6bBh3/\":\"Σταθερό Τέλος\",\"zWqUyJ\":\"Σταθερό τέλος που χρεώνεται ανά συναλλαγή\",\"LWL3Bs\":\"Το σταθερό τέλος πρέπει να είναι 0 ή μεγαλύτερο\",\"0RI8m4\":\"Flash off\",\"q0923e\":\"Flash on\",\"X+U6/w\":\"Οικογένεια Γραμματοσειράς\",\"lWxAUo\":\"Φαγητό & Ποτό\",\"nFm+5u\":\"Κείμενο Υποσέλιδου\",\"a8nooQ\":\"Fourth\",\"wtuVU4\":\"Frequency\",\"xVhQZV\":\"Fri\",\"39y5bn\":\"Friday\",\"f5UbZ0\":\"Full data ownership\",\"cfvx/y\":\"Full event\",\"MY2SVM\":\"Πλήρης επιστροφή\",\"PGQLdy\":\"future\",\"8N/j1s\":\"Future dates only\",\"yRx/6K\":\"Future dates will be copied with capacity reset to zero\",\"T02gNN\":\"Γενική Είσοδος\",\"3ep0Gx\":\"Γενικές πληροφορίες για τον διοργανωτή σας\",\"ziAjHi\":\"Δημιουργία\",\"exy8uo\":\"Δημιουργία κωδικού\",\"4CETZY\":\"Οδηγίες\",\"pjkEcB\":\"Get Paid\",\"lGYzP6\":\"Get paid with Stripe\",\"ZDIydz\":\"Ξεκινήστε\",\"u6FPxT\":\"Αγορά Εισιτηρίων\",\"8KDgYV\":\"Ετοιμάστε την εκδήλωσή σας\",\"RkXlPZ\":\"GitHub\",\"sr0UJD\":\"Go Back\",\"oNL5vN\":\"Μετάβαση στη Σελίδα Εκδήλωσης\",\"gHSuV/\":\"Μετάβαση στην αρχική σελίδα\",\"8+Cj55\":\"Go to Schedule\",\"6nDzTl\":\"Καλή αναγνωσιμότητα\",\"76gPWk\":\"Got it\",\"CZXzs4\":\"Ελληνικά\",\"aGWZUr\":\"Μεικτά έσοδα\",\"n8IUs7\":\"Μεικτά Έσοδα\",\"O1wAlQ\":\"Guest\",\"LIYoRQ\":\"Διαχείριση Επισκεπτών\",\"NUsTc4\":\"Happening now\",\"kTSQej\":[\"Γεια σας \",[\"0\"],\", διαχειριστείτε την πλατφόρμα σας από εδώ.\"],\"dORAcs\":\"Εδώ είναι όλα τα εισιτήρια που σχετίζονται με τη διεύθυνση email σας.\",\"g+2103\":\"Εδώ είναι ο σύνδεσμός σας ως συνεργάτης\",\"bVsnqU\":\"Hi,\",\"/iE8xx\":\"Χρέωση Hi.Events\",\"zppscQ\":\"Χρεώσεις πλατφόρμας Hi.Events και ανάλυση ΦΠΑ ανά συναλλαγή\",\"D+zLDD\":\"Κρυφό\",\"DRErHC\":\"Κρυφό από συμμετέχοντες - ορατό μόνο στους διοργανωτές\",\"NNnsM0\":\"Απόκρυψη σύνθετων επιλογών\",\"P+5Pbo\":\"Απόκρυψη Απαντήσεων\",\"VMlRqi\":\"Hide details\",\"FmogyU\":\"Απόκρυψη Επιλογών\",\"uXNYjR\":\"Απόκρυψη ημερομηνιών και ωρών που έχουν εξαντληθεί\",\"g9RcYX\":\"Απόκρυψη ημερομηνίας\",\"uMwTx7\":\"Απόκρυψη αυτής της κατηγορίας;\",\"gtEbeW\":\"Ανάδειξη\",\"NF8sdv\":\"Μήνυμα Ανάδειξης\",\"MXSqmS\":\"Ανάδειξη αυτού του προϊόντος\",\"7ER2sc\":\"Αναδειγμένο\",\"sq7vjE\":\"Τα αναδειγμένα προϊόντα θα έχουν διαφορετικό χρώμα φόντου για να ξεχωρίζουν στη σελίδα εκδήλωσης.\",\"1+WSY1\":\"Hobbies\",\"yY8wAv\":\"Hours\",\"49Tkiw\":\"Πώς εφαρμόζεται η έκπτωση;\",\"sy9anN\":\"Πόσο χρόνο έχει ένας πελάτης να ολοκληρώσει την αγορά του μετά από μια προσφορά. Αφήστε κενό για χωρίς χρονικό όριο.\",\"n2ilNh\":\"How long does the schedule run?\",\"DMr2XN\":\"How often?\",\"cceMns\":\"How VAT is applied to the platform fees we charge you.\",\"FONsLE\":\"https://events.haroldpoi.click\",\"htoh8N\":\"https://ο-τομεας-σας.gr/webhook\",\"mkWad2\":\"Ουγγρικά\",\"8Wgd41\":\"Αναγνωρίζω τις ευθύνες μου ως υπεύθυνος επεξεργασίας δεδομένων\",\"O8m7VA\":\"Συμφωνώ να λαμβάνω ειδοποιήσεις email σχετικά με αυτή την εκδήλωση\",\"YLgdk5\":\"Επιβεβαιώνω ότι πρόκειται για συναλλακτικό μήνυμα σχετικό με αυτή την εκδήλωση\",\"4/kP5a\":\"Εάν δεν άνοιξε αυτόματα νέα καρτέλα, κάντε κλικ στο κουμπί παρακάτω για να συνεχίσετε στην ολοκλήρωση αγοράς.\",\"W/eN+G\":\"Εάν είναι κενό, η διεύθυνση θα χρησιμοποιηθεί για τη δημιουργία συνδέσμου Google Maps\",\"CY3yHL\":\"Εάν επιλεγεί, αυτή η κατηγορία θα είναι κρυφή από το κοινό.\",\"iIEaNB\":\"Εάν έχετε λογαριασμό σε εμάς, θα λάβετε email με οδηγίες για την επαναφορά του κωδικού σας.\",\"an5hVd\":\"Εικόνες\",\"tSVr6t\":\"Υποκατάσταση\",\"TWXU0c\":\"Υποκατάσταση Χρήστη\",\"5LAZwq\":\"Η υποκατάσταση ξεκίνησε\",\"IMwcdR\":\"Η υποκατάσταση σταμάτησε\",\"0I0Hac\":\"Σημαντική Ειδοποίηση\",\"yD3avI\":\"Σημαντικό: Η αλλαγή διεύθυνσης email θα ενημερώσει τον σύνδεσμο πρόσβασης σε αυτή την παραγγελία. Θα ανακατευθυνθείτε στον νέο σύνδεσμο μετά την αποθήκευση.\",\"jT142F\":[\"Σε \",[\"diffHours\"],\" ώρες\"],\"OoSyqO\":[\"Σε \",[\"diffMinutes\"],\" λεπτά\"],\"PdMhEx\":[\"in last \",[\"0\"],\" min\"],\"u7r0G5\":\"In person — set a venue\",\"/LCAwL\":\"Σε εξέλιξη\",\"F1Xp97\":\"Μεμονωμένοι συμμετέχοντες\",\"85e6zs\":\"Εισαγωγή Token Liquid\",\"CTWsuc\":\"Instagram\",\"VopR6B\":\"Instant Stripe payouts\",\"nbfdhU\":\"Ενσωματώσεις\",\"I8eJ6/\":\"Internal notes on the attendee's ticket\",\"B2Tpo0\":\"Μη έγκυρο email\",\"5tT0+u\":\"Μη έγκυρη μορφή email\",\"f9WRpE\":\"Μη έγκυρος τύπος αρχείου. Παρακαλώ μεταφορτώστε εικόνα.\",\"tnL+GP\":\"Μη έγκυρη σύνταξη Liquid. Παρακαλώ διορθώστε και δοκιμάστε ξανά.\",\"N9JsFT\":\"Μη έγκυρη μορφή αριθμού ΦΠΑ\",\"g+lLS9\":\"Πρόσκληση μέλους ομάδας\",\"1z26sk\":\"Πρόσκληση Μέλους Ομάδας\",\"KR0679\":\"Πρόσκληση Μελών Ομάδας\",\"aH6ZIb\":\"Προσκαλέστε την Ομάδα σας\",\"Dn4OyV\":\"Προσκεκλημένος\",\"IuMGvq\":\"Τιμολόγιο\",\"a/bUcL\":\"It happens on more than one date\",\"d+Oe9r\":\"It may have been unpublished or removed. Please check the link and try again.\",\"Lj7sBL\":\"Ιταλικά\",\"F5/CBH\":\"στοιχείο(-α)\",\"BzfzPK\":\"Στοιχεία\",\"rjyWPb\":\"January\",\"KmWyx0\":\"Εργασία\",\"o5r6b2\":\"Η εργασία διαγράφηκε\",\"cd0jIM\":\"Λεπτομέρειες Εργασίας\",\"ruJO57\":\"Όνομα Εργασίας\",\"YZi+Hu\":\"Η εργασία τέθηκε σε ουρά για επανάληψη\",\"nCywLA\":\"Συμμετοχή από οπουδήποτε\",\"SNzppu\":\"Εγγραφή στη Λίστα Αναμονής\",\"dLouFI\":[\"Εγγραφή στη Λίστα Αναμονής για \",[\"productDisplayName\"]],\"2gMuHR\":\"Εντάχθηκε\",\"u4ex5r\":\"July\",\"zeEQd/\":\"June\",\"MxjCqk\":\"Αναζητάτε μόνο τα εισιτήριά σας;\",\"xOTzt5\":\"just now\",\"0RihU9\":\"Just wrapped\",\"lB2hSG\":[\"Ενημερώστε με για νέα και εκδηλώσεις από \",[\"0\"]],\"ioFA9i\":\"Keep the profit.\",\"o66QSP\":\"label updates\",\"RtKKbA\":\"Last\",\"DruLRc\":\"Τελευταίες 14 Ημέρες\",\"ve9JTU\":\"Το επώνυμο είναι υποχρεωτικό\",\"h0Q9Iw\":\"Τελευταία Απάντηση\",\"gw3Ur5\":\"Τελευταία Ενεργοποίηση\",\"FIq1Ba\":\"Later\",\"xvnLMP\":\"Latest check-ins\",\"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\":\"Φωτεινό\",\"1qY5Ue\":\"Ο Σύνδεσμος Έληξε ή Δεν Είναι Έγκυρος\",\"gggTBm\":\"LinkedIn\",\"nvOPBA\":\"Επιτρέπονται Σύνδεσμοι\",\"2BBAbc\":\"List\",\"dF6vP6\":\"Δημοσιευμένο\",\"fpMs2Z\":\"ΔΗΜΟΣΙΕΥΜΕΝΟ\",\"D9zTjx\":\"Δημοσιευμένες Εκδηλώσεις\",\"C33p4q\":\"Loaded dates\",\"WdmJIX\":\"Φόρτωση προεπισκόπησης...\",\"IoDI2o\":\"Φόρτωση tokens...\",\"G3Ge9Z\":\"Φόρτωση αρχείων webhook...\",\"NFxlHW\":\"Φόρτωση Webhooks\",\"E0DoRM\":\"Η τοποθεσία διαγράφηκε\",\"7w8lJU\":\"Η τοποθεσία αποθηκεύτηκε\",\"YsRXDD\":\"Η τοποθεσία ενημερώθηκε\",\"A/kIva\":\"location updates\",\"iyZPPR\":\"τοποθεσίες\",\"VppBoU\":\"Τοποθεσίες\",\"iG7KNr\":\"Λογότυπο\",\"vu7ZGG\":\"Λογότυπο & Εξώφυλλο\",\"gddQe0\":\"Λογότυπο και εικόνα εξωφύλλου για τον διοργανωτή\",\"TBEnp1\":\"Το λογότυπο θα εμφανίζεται στην κεφαλίδα\",\"Jzu30R\":\"Το λογότυπο θα εμφανίζεται στο εισιτήριο\",\"PSRm6/\":\"Αναζήτηση Εισιτηρίων μου\",\"yJFu/X\":\"Κεντρικό γραφείο\",\"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\":\"Διαχείριση λίστας αναμονής εκδήλωσης, προβολή στατιστικών και προσφορά εισιτηρίων σε συμμετέχοντες.\",\"g2npA5\":\"Χειροκίνητη προσφορά\",\"hg6l4j\":\"March\",\"pqRBOz\":\"Mark as validated (admin override)\",\"2L3vle\":\"Μέγ. Μηνύματα / 24ω\",\"Qp4HWD\":\"Μέγ. Παραλήπτες / Μήνυμα\",\"3JzsDb\":\"May\",\"agPptk\":\"Μεσαίο\",\"xDAtGP\":\"Μήνυμα\",\"bECJqy\":\"Το μήνυμα εγκρίθηκε επιτυχώς\",\"1jRD0v\":\"Αποστολή μηνύματος σε συμμετέχοντες με συγκεκριμένα εισιτήρια\",\"uQLXbS\":\"Το μήνυμα ακυρώθηκε\",\"48rf3i\":\"Το μήνυμα δεν μπορεί να υπερβαίνει τους 5000 χαρακτήρες\",\"ZPj0Q8\":\"Λεπτομέρειες Μηνύματος\",\"Vjat/X\":\"Το μήνυμα είναι υποχρεωτικό\",\"0/yJtP\":\"Αποστολή μηνύματος σε κατόχους παραγγελιών με συγκεκριμένα προϊόντα\",\"saG4At\":\"Μήνυμα Προγραμματίστηκε\",\"mFdA+i\":\"Βαθμίδα Μηνυμάτων\",\"v7xKtM\":\"Η βαθμίδα μηνυμάτων ενημερώθηκε επιτυχώς\",\"H9HlDe\":\"λεπτά\",\"agRWc1\":\"Minutes\",\"zz/Wd/\":\"Mode\",\"fpMgHS\":\"Mon\",\"hty0d5\":\"Monday\",\"JbIgPz\":\"Τα χρηματικά ποσά είναι κατά προσέγγιση σύνολα σε όλα τα νομίσματα\",\"qvF+MT\":\"Παρακολούθηση και διαχείριση αποτυχημένων εργασιών παρασκηνίου\",\"kY2ll9\":\"month\",\"HajiZl\":\"Μήνας\",\"+8Nek/\":\"Monthly\",\"1LkxnU\":\"Monthly Pattern\",\"6jefe3\":\"months\",\"f8jrkd\":\"more\",\"JcD7qf\":\"More actions\",\"w36OkR\":\"Εκδηλώσεις με Περισσότερες Προβολές (Τελευταίες 14 Ημέρες)\",\"+Y/na7\":\"Move all dates earlier or later\",\"3DIpY0\":\"Multiple locations\",\"g9cQCP\":\"Multiple ticket types\",\"GfaxEk\":\"Μουσική\",\"oVGCGh\":\"Τα Εισιτήριά μου\",\"8/brI5\":\"Το όνομα είναι υποχρεωτικό\",\"sFFArG\":\"Το όνομα πρέπει να έχει λιγότερους από 255 χαρακτήρες\",\"xxU3NX\":\"Καθαρά Έσοδα\",\"7I8LlL\":\"New capacity\",\"n1GRql\":\"New label\",\"y0Fcpd\":\"Νέα τοποθεσία\",\"ArHT/C\":\"Νέες Εγγραφές\",\"uK7xWf\":\"New time:\",\"veT5Br\":\"Next occurrence\",\"WXtl5X\":[\"Next: \",[\"nextFormatted\"]],\"eWRECP\":\"Νυχτερινή Ζωή\",\"HSw5l3\":\"Όχι - Είμαι ιδιώτης ή επιχείρηση μη εγγεγραμμένη για ΦΠΑ\",\"VHfLAW\":\"Δεν υπάρχουν λογαριασμοί\",\"+jIeoh\":\"Δεν βρέθηκαν λογαριασμοί\",\"074+X8\":\"Δεν υπάρχουν Ενεργά Webhooks\",\"zxnup4\":\"Δεν υπάρχουν Συνεργάτες για εμφάνιση\",\"Dwf4dR\":\"Δεν υπάρχουν ακόμα ερωτήσεις συμμετέχοντα\",\"th7rdT\":\"No attendees to show\",\"PKySlW\":\"No attendees yet for this date.\",\"/UC6qk\":\"Δεν βρέθηκαν δεδομένα απόδοσης\",\"E2vYsO\":\"No capabilities reported by Stripe yet.\",\"amMkpL\":\"Χωρίς χωρητικότητα\",\"d2Jf1f\":\"No change\",\"99ntUF\":\"Δεν υπάρχουν διαθέσιμες λίστες check-in για αυτή την εκδήλωση.\",\"wG+knX\":\"No check-ins yet\",\"+dAKxg\":\"Δεν βρέθηκαν ρυθμίσεις\",\"LiLk8u\":\"No connections available\",\"eb47T5\":\"Δεν βρέθηκαν δεδομένα για τα επιλεγμένα φίλτρα. Δοκιμάστε να αλλάξετε το εύρος ημερομηνιών ή το νόμισμα.\",\"Zc216S\":\"No date added\",\"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\",\"OtJSnL\":\"Δεν έχουν προγραμματιστεί ημερομηνίες\",\"gEdNe8\":\"No dates scheduled yet\",\"pZNOT9\":\"Χωρίς ημερομηνία λήξης\",\"dW40Uz\":\"Δεν βρέθηκαν εκδηλώσεις\",\"8pQ3NJ\":\"Δεν υπάρχουν εκδηλώσεις που ξεκινούν τις επόμενες 24 ώρες\",\"8zCZQf\":\"Δεν υπάρχουν εκδηλώσεις ακόμα\",\"Yc5YW6\":\"Δεν υπάρχουν αποτυχημένες εργασίες\",\"EpvBAp\":\"Χωρίς τιμολόγιο\",\"XZkeaI\":\"Δεν βρέθηκαν αρχεία καταγραφής\",\"IcAC6J\":\"Δεν βρέθηκαν αντίστοιχες γραμματοσειρές\",\"nrSs2u\":\"Δεν βρέθηκαν μηνύματα\",\"Rj99yx\":\"No occurrences available\",\"IFU1IG\":\"No occurrences on this date\",\"OVFwlg\":\"Δεν υπάρχουν ερωτήσεις παραγγελίας ακόμα\",\"EJ7bVz\":\"Δεν βρέθηκαν παραγγελίες\",\"NEmyqy\":\"Δεν υπάρχουν παραγγελίες ακόμα\",\"a77B6w\":\"No orders yet for this date.\",\"wUv5xQ\":\"Δεν υπάρχει δραστηριότητα διοργανωτή τις τελευταίες 14 ημέρες\",\"vLd1tV\":\"No organizer context available.\",\"B7w4KY\":\"Δεν υπάρχουν άλλοι διαθέσιμοι διοργανωτές\",\"PChXMe\":\"Δεν υπάρχουν Πληρωμένες Παραγγελίες\",\"6jYQGG\":\"Δεν υπάρχουν παλαιότερες εκδηλώσεις\",\"CHzaTD\":\"Δεν υπάρχουν δημοφιλείς εκδηλώσεις τις τελευταίες 14 ημέρες\",\"zK/+ef\":\"Δεν υπάρχουν διαθέσιμα προϊόντα για επιλογή\",\"M1/lXs\":\"No products configured for this event.\",\"kY7XDn\":\"Δεν υπάρχουν προϊόντα με εγγραφές αναμονής\",\"8mw4tm\":\"Μήνυμα απουσίας προϊόντων\",\"wYiAtV\":\"Δεν υπάρχουν πρόσφατες εγγραφές λογαριασμού\",\"UW90md\":\"Δεν βρέθηκαν παραλήπτες\",\"QoAi8D\":\"Χωρίς απάντηση\",\"JeO7SI\":\"Χωρίς Απάντηση\",\"EK/G11\":\"Δεν υπάρχουν απαντήσεις ακόμα\",\"59OWd3\":\"Καμία αποθηκευμένη τοποθεσία\",\"mPdY6W\":\"Καμία πρόταση\",\"3sRuiW\":\"Δεν Βρέθηκαν Εισιτήρια\",\"debCrL\":\"Δεν υπάρχουν εισιτήρια προς πώληση\",\"k2C0ZR\":\"No upcoming dates\",\"yM5c0q\":\"Δεν υπάρχουν επερχόμενες εκδηλώσεις\",\"qpC74J\":\"Δεν βρέθηκαν χρήστες\",\"8wgkoi\":\"Δεν υπάρχουν εκδηλώσεις που προβλήθηκαν τις τελευταίες 14 ημέρες\",\"Arzxc1\":\"Δεν υπάρχουν εγγραφές λίστας αναμονής\",\"n5vdm2\":\"Δεν έχουν καταγραφεί ακόμα γεγονότα webhook για αυτό το endpoint. Θα εμφανίζονται εδώ μόλις ενεργοποιηθούν.\",\"4GhX3c\":\"Δεν υπάρχουν Webhooks\",\"4+am6b\":\"Όχι, μείνετε εδώ\",\"4JVMUi\":\"non-edited\",\"Itw24Q\":\"Not checked in\",\"x5+Lcz\":\"Δεν Εισήλθε\",\"8n10sz\":\"Μη Επιλέξιμο\",\"kLvU3F\":\"Notify attendees and stop sales\",\"t9QlBd\":\"November\",\"kAREMN\":\"Number of dates to create\",\"6u1B3O\":\"Occurrence\",\"mmoE62\":\"Occurrence Cancelled\",\"V9flmL\":\"Occurrence Schedule\",\"Kh3WO8\":\"Occurrence Summary\",\"byXCTu\":\"Occurrences\",\"KATw3p\":\"Occurrences (future only)\",\"85rTR2\":\"Occurrences can be configured after creation\",\"dzQfDY\":\"October\",\"BwJKBw\":\"από\",\"9h7RDh\":\"Προσφορά\",\"EfK2O6\":\"Προσφορά Θέσης\",\"3sVRey\":\"Προσφορά Εισιτηρίων\",\"2O7Ybb\":\"Χρονικό Όριο Προσφοράς\",\"1jUg5D\":\"Προσφέρθηκε\",\"l+/HS6\":[\"Οι προσφορές λήγουν μετά από \",[\"timeoutHours\"],\" ώρες.\"],\"6Aih4U\":\"Εκτός Σύνδεσης\",\"nO3VbP\":[\"Σε πώληση \",[\"0\"]],\"oXOSPE\":\"Διαδικτυακό\",\"aqmy5k\":\"Online — provide connection details\",\"LuZBbx\":\"Online & in-person\",\"IXuOqt\":\"Online & in-person — see schedule\",\"WjSpu5\":\"Διαδικτυακή Εκδήλωση\",\"scPxI/\":[\"Μόνο \",[\"capacity\"],\" απομένουν\"],\"NdOxqr\":\"Μόνο διαχειριστές λογαριασμού μπορούν να διαγράφουν ή να αρχειοθετούν εκδηλώσεις. Επικοινωνήστε με τον διαχειριστή σας για βοήθεια.\",\"rnoDMF\":\"Μόνο διαχειριστές λογαριασμού μπορούν να διαγράφουν ή να αρχειοθετούν διοργανωτές. Επικοινωνήστε με τον διαχειριστή σας για βοήθεια.\",\"bU7oUm\":\"Αποστολή μόνο σε παραγγελίες με αυτές τις καταστάσεις\",\"wkpaqp\":\"Εμφάνιση μόνο ημερομηνίας και ώρας έναρξης\",\"DMk8F0\":\"Only tickets count toward capacity\",\"M2w1ni\":\"Ορατό μόνο με κωδικό προσφοράς\",\"y8Bm7C\":\"Open check-in\",\"RLz7P+\":\"Open occurrence\",\"cDSdPb\":\"Προαιρετικό όνομα που εμφανίζεται στους επιλογείς, π.χ. \\\"Αίθουσα συνεδριάσεων\\\"\",\"HXMJxH\":\"Προαιρετικό κείμενο για αποποιήσεις, στοιχεία επικοινωνίας ή σημειώσεις ευχαριστίας (μόνο μία γραμμή)\",\"L565X2\":\"επιλογές\",\"8m9emP\":\"or add a single date\",\"eBskDE\":\"Ή ενεργοποιήστε τις πληρωμές εκτός σύνδεσης και απενεργοποιήστε το Stripe\",\"dSeVIm\":\"order\",\"c/TIyD\":\"Παραγγελία & Εισιτήριο\",\"H5qWhm\":\"Παραγγελία ακυρώθηκε\",\"b6+Y+n\":\"Παραγγελία ολοκληρώθηκε\",\"x4MLWE\":\"Επιβεβαίωση Παραγγελίας\",\"CsTTH0\":\"Η επιβεβαίωση παραγγελίας εστάλη ξανά επιτυχώς\",\"ppuQR4\":\"Παραγγελία Δημιουργήθηκε\",\"xtQzag\":\"Order details\",\"vrSW9M\":\"Η παραγγελία ακυρώθηκε και επιστράφηκε. Ο κάτοχος παραγγελίας ειδοποιήθηκε.\",\"rzw+wS\":\"Κάτοχοι Παραγγελίας\",\"oI/hGR\":\"ID Παραγγελίας\",\"RQCXz6\":\"Όρια Παραγγελίας\",\"SO9AEF\":\"Τα όρια παραγγελίας ορίστηκαν\",\"vu6Arl\":\"Παραγγελία Επισημάνθηκε ως Πληρωμένη\",\"sLbJQz\":\"Η παραγγελία δεν βρέθηκε\",\"kvYpYu\":\"Παραγγελία Δεν Βρέθηκε\",\"eJ8SvM\":\"Order number, purchase date, purchaser email\",\"FaPYw+\":\"Κάτοχος παραγγελίας\",\"eB5vce\":\"Κάτοχοι παραγγελίας με συγκεκριμένο προϊόν\",\"CxLoxM\":\"Κάτοχοι παραγγελίας με προϊόντα\",\"UkHo4c\":\"Αναφ. Παραγγελίας\",\"EZy55F\":\"Παραγγελία Επιστράφηκε\",\"6eSHqs\":\"Καταστάσεις παραγγελίας\",\"oW5877\":\"Σύνολο Παραγγελίας\",\"e7eZuA\":\"Παραγγελία Ενημερώθηκε\",\"1SQRYo\":\"Η παραγγελία ενημερώθηκε επιτυχώς\",\"3NT0Ck\":\"Η παραγγελία ακυρώθηκε\",\"V5khLm\":\"orders\",\"sd5IMt\":\"Παραγγελίες Ολοκληρώθηκαν\",\"5It1cQ\":\"Παραγγελίες Εξήχθησαν\",\"UQ0ACV\":\"Σύνολο Παραγγελιών\",\"B/EBQv\":\"Παραγγελίες:\",\"qtGTNu\":\"Οργανικοί Λογαριασμοί\",\"P/JHA4\":\"Ο διοργανωτής αρχειοθετήθηκε επιτυχώς\",\"S3CZ5M\":\"Πίνακας Διοργανωτή\",\"GzjTd0\":\"Ο διοργανωτής διαγράφηκε επιτυχώς\",\"SQqJd8\":\"Διοργανωτής Δεν Βρέθηκε\",\"HF8Bxa\":\"Ο διοργανωτής αποκαταστάθηκε επιτυχώς\",\"wpj63n\":\"Ρυθμίσεις Διοργανωτή\",\"o1my93\":\"Η ενημέρωση κατάστασης διοργανωτή απέτυχε. Δοκιμάστε ξανά αργότερα\",\"rLHma1\":\"Η κατάσταση διοργανωτή ενημερώθηκε\",\"LqBITi\":\"Θα χρησιμοποιηθεί το πρότυπο διοργανωτή/προεπιλογής\",\"q4zH+l\":\"Organizers\",\"/IX/7x\":\"Άλλο\",\"RsiDDQ\":\"Άλλες Λίστες (Εισιτήριο Μη Συμπεριλαμβανόμενο)\",\"aDfajK\":\"Outdoors\",\"qMASRF\":\"Εξερχόμενα Μηνύματα\",\"iCOVQO\":\"Override\",\"GpFTEc\":\"Override fees on this organizer\",\"M9ZhMP\":\"Override price\",\"cnVIpl\":\"Override removed\",\"6/dCYd\":\"Επισκόπηση\",\"6WdDG7\":\"Σελίδα\",\"8uqsE5\":\"Η σελίδα δεν είναι πλέον διαθέσιμη\",\"QkLf4H\":\"URL Σελίδας\",\"sF+Xp9\":\"Προβολές Σελίδας\",\"v4nCHK\":\"Paid\",\"c+suC6\":\"Πληρωμένοι Λογαριασμοί\",\"5F7SYw\":\"Μερική επιστροφή\",\"fFYotW\":[\"Μερική επιστροφή: \",[\"0\"]],\"i8day5\":\"Μεταβίβαση τέλους στον αγοραστή\",\"k4FLBQ\":\"Μεταβίβαση στον Αγοραστή\",\"Ff0Dor\":\"Προηγούμενες\",\"BFjW8X\":\"Past due\",\"xTPjSy\":\"Παλαιότερες Εκδηλώσεις\",\"/l/ckQ\":\"Επικόλληση URL\",\"URAE3q\":\"Σε Παύση\",\"4fL/V7\":\"Πληρωμή\",\"c2/9VE\":\"Ωφέλιμο Φορτίο\",\"5cxUwd\":\"Ημερομηνία Πληρωμής\",\"ENEPLY\":\"Μέθοδος πληρωμής\",\"8Lx2X7\":\"Πληρωμή ελήφθη\",\"fx8BTd\":\"Οι πληρωμές δεν είναι διαθέσιμες\",\"C+ylwF\":\"Payouts\",\"UbRKMZ\":\"Pending\",\"UkM20g\":\"Σε Αναμονή Ελέγχου\",\"dPYu1F\":\"Ανά Συμμετέχοντα\",\"mQV/nJ\":\"per min\",\"+kvxv+\":\"ανά παραγγελία\",\"VlXNyK\":\"Ανά παραγγελία\",\"NhuGd7\":\"ανά προϊόν\",\"hauDFf\":\"Ανά εισιτήριο\",\"mnF83a\":\"Τέλος Ποσοστού\",\"TNLuRD\":\"Percentage fee (%)\",\"MixU2P\":\"Το ποσοστό πρέπει να είναι μεταξύ 0 και 100\",\"MkuVAZ\":\"Ποσοστό ποσού συναλλαγής\",\"/Bh+7r\":\"Απόδοση\",\"fIp56F\":\"Οριστική διαγραφή αυτής της εκδήλωσης και όλων των σχετικών δεδομένων.\",\"nJeeX7\":\"Οριστική διαγραφή αυτού του διοργανωτή και όλων των εκδηλώσεων του.\",\"wfCTgK\":\"Permanently remove this date\",\"6kPk3+\":\"Προσωπικές Πληροφορίες\",\"zmwvG2\":\"Τηλέφωνο\",\"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\":\"Σχεδιάζετε εκδήλωση;\",\"J3lhKT\":\"Τέλος πλατφόρμας\",\"RD51+P\":[\"Τέλος πλατφόρμας \",[\"0\"],\" αφαιρείται από την πληρωμή σας\"],\"br3Y/y\":\"Τέλη Πλατφόρμας\",\"3buiaw\":\"Αναφορά Τελών Πλατφόρμας\",\"kv9dM4\":\"Έσοδα Πλατφόρμας\",\"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\":\"Παρακαλώ εισάγετε έγκυρη διεύθυνση email\",\"jEw0Mr\":\"Παρακαλώ εισάγετε έγκυρο URL\",\"n8+Ng/\":\"Παρακαλώ εισάγετε τον 5ψήφιο κωδικό\",\"r+lQXT\":\"Παρακαλώ εισάγετε τον αριθμό ΦΠΑ σας\",\"Dvq0wf\":\"Παρακαλώ παρέχετε εικόνα.\",\"2cUopP\":\"Παρακαλώ επανεκκινήστε τη διαδικασία αγοράς.\",\"GoXxOA\":\"Please select a date and time\",\"8KmsFa\":\"Παρακαλώ επιλέξτε εύρος ημερομηνιών\",\"EFq6EG\":\"Παρακαλώ επιλέξτε εικόνα.\",\"fuwKpE\":\"Παρακαλώ δοκιμάστε ξανά.\",\"klWBeI\":\"Παρακαλώ περιμένετε πριν ζητήσετε άλλον κωδικό\",\"hfHhaa\":\"Παρακαλώ περιμένετε ενώ προετοιμάζουμε τους συνεργάτες σας για εξαγωγή...\",\"o+tJN/\":\"Παρακαλώ περιμένετε ενώ προετοιμάζουμε τους συμμετέχοντες σας για εξαγωγή...\",\"+5Mlle\":\"Παρακαλώ περιμένετε ενώ προετοιμάζουμε τις παραγγελίες σας για εξαγωγή...\",\"trnWaw\":\"Πολωνικά\",\"luHAJY\":\"Δημοφιλείς Εκδηλώσεις (Τελευταίες 14 Ημέρες)\",\"p/78dY\":\"Position\",\"OESu7I\":\"Αποτροπή υπερπώλησης με κοινό απόθεμα σε πολλαπλούς τύπους εισιτηρίων.\",\"NgVUL2\":\"Προεπισκόπηση φόρμας checkout\",\"cs5muu\":\"Προεπισκόπηση σελίδας εκδήλωσης\",\"Jm2AC3\":\"Price Tier\",\"a5jvSX\":\"Βαθμίδες Τιμής\",\"ReihZ7\":\"Προεπισκόπηση Εκτύπωσης\",\"JnuPvH\":\"Εκτύπωση Εισιτηρίου\",\"tYF4Zq\":\"Εκτύπωση σε PDF\",\"LcET2C\":\"Πολιτική Απορρήτου\",\"8z6Y5D\":\"Επεξεργασία Επιστροφής\",\"JcejNJ\":\"Επεξεργασία παραγγελίας\",\"EWCLpZ\":\"Προϊόν Δημιουργήθηκε\",\"XkFYVB\":\"Προϊόν Διαγράφηκε\",\"YMwcbR\":\"Πωλήσεις προϊόντων, έσοδα και ανάλυση φόρων\",\"ls0mTC\":\"Product settings cannot be edited for cancelled dates.\",\"2339ej\":\"Product settings saved successfully\",\"ldVIlB\":\"Προϊόν Ενημερώθηκε\",\"CP3D8G\":\"Progress\",\"JoKGiJ\":\"Κωδικός προσφοράς\",\"k3wH7i\":\"Χρήση κωδικού προσφοράς και ανάλυση εκπτώσεων\",\"tZqL0q\":\"promo codes\",\"oCHiz3\":\"Promo codes\",\"uEhdRh\":\"Μόνο με Κωδικό\",\"dLm8V5\":\"Τα προωθητικά email ενδέχεται να οδηγήσουν σε αναστολή λογαριασμού\",\"W0ETyY\":\"Συμπληρώστε τουλάχιστον ένα πεδίο διεύθυνσης (χώρος, οδός, πόλη ή χώρα).\",\"2W/7Gz\":\"Provide the following before Stripe's next review to keep payouts flowing.\",\"EEYbdt\":\"Δημοσίευση\",\"JcgJKc\":\"Δημοσίευση ούτως ή άλλως\",\"evDBV8\":\"Δημοσίευση εκδήλωσης\",\"2zEfOd\":\"Publish your event\",\"L7nrC8\":\"Με τη δημοσίευση, η σελίδα της εκδήλωσής σας γίνεται δημόσια και ανοίγουν οι εγγραφές.\",\"dsFmM+\":\"Αγοράστηκε\",\"JunetL\":\"Purchaser\",\"phmeUH\":\"Purchaser email\",\"ywR4ZL\":\"QR code check-in\",\"oWXNE5\":\"Ποσ.\",\"biEyJ4\":\"Question answers\",\"k/bJj0\":\"Οι ερωτήσεις αναδιατάχθηκαν\",\"b24kPi\":\"Ουρά\",\"lTPqpM\":\"Quick Tip\",\"fqDzSu\":\"Ρυθμός\",\"mnUGVC\":\"Υπερβάθηκε το όριο αιτημάτων. Δοκιμάστε ξανά αργότερα.\",\"t41hVI\":\"Νέα Προσφορά Θέσης\",\"TNclgc\":\"Reactivate this date? It will be reopened for future sales.\",\"RENQ6j\":\"Έτοιμοι να δημοσιεύσετε;\",\"uqoRbb\":\"Real-time analytics\",\"xzRvs4\":[\"Λήψη ενημερώσεων προϊόντων από \",[\"0\"],\".\"],\"pLXbi8\":\"Πρόσφατες Εγγραφές Λογαριασμού\",\"M1HGuR\":\"Recent activity\",\"3kJ0gv\":\"Recent Attendees\",\"qhfiwV\":\"Recent check-ins\",\"S+0XMX\":\"Recent orders\",\"Fi3b48\":\"Πρόσφατες Παραγγελίες\",\"7hPBBn\":\"παραλήπτης\",\"jp5bq8\":\"παραλήπτες\",\"yPrbsy\":\"Παραλήπτες\",\"E1F5Ji\":\"Οι παραλήπτες είναι διαθέσιμοι αφού αποσταλεί το μήνυμα\",\"WEYdDv\":\"Recommended\",\"wuhHPE\":\"Recurring\",\"asLqwt\":\"Επαναλαμβανόμενη εκδήλωση\",\"s3uzsK\":\"Ρυθμίσεις επαναλαμβανόμενης εκδήλωσης\",\"D0tAMe\":\"Recurring events\",\"JjMIKU\":\"Reddit\",\"HiGkFu\":\"Ανακατεύθυνση στο Stripe...\",\"pnoTN5\":\"Λογαριασμοί Παραπομπής\",\"ACKu03\":\"Ανανέωση Προεπισκόπησης\",\"vuFYA6\":\"Refund all orders for these dates\",\"4cRUK3\":\"Refund all orders for this date\",\"fKn/k6\":\"Ποσό επιστροφής\",\"qY4rpA\":\"Η επιστροφή απέτυχε\",\"FaK/8G\":[\"Επιστροφή Παραγγελίας \",[\"0\"]],\"MGbi9P\":\"Επιστροφή σε εκκρεμότητα\",\"BDSRuX\":[\"Επιστράφηκε: \",[\"0\"]],\"bU4bS1\":\"Επιστροφές\",\"rYXfOA\":\"Περιφερειακές Ρυθμίσεις\",\"5tl0Bp\":\"Ερωτήσεις Εγγραφής\",\"ZNo5k1\":\"Remaining\",\"Bjh87R\":\"Remove label from all dates\",\"IVZaEo\":\"Αφαιρεί εντελώς τις εξαντλημένες ημερομηνίες και ώρες από τη σελίδα της εκδήλωσης. Όταν είναι απενεργοποιημένο, παραμένουν ορατές και επισημαίνονται ως εξαντλημένες.\",\"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\":\"Η αναφορά δεν βρέθηκε\",\"JEPMXN\":\"Αίτημα νέου συνδέσμου\",\"TMLAx2\":\"Υποχρεωτικό\",\"mdeIOH\":\"Επαναποστολή κωδικού\",\"sQxe68\":\"Επαναποστολή Επιβεβαίωσης\",\"bxoWpz\":\"Επαναποστολή Email Επιβεβαίωσης\",\"G42SNI\":\"Επαναποστολή email\",\"TTpXL3\":[\"Επαναποστολή σε \",[\"resendCooldown\"],\"δ\"],\"5CiNPm\":\"Επαναποστολή Εισιτηρίου\",\"Uwsg2F\":\"Δεσμευμένο\",\"8wUjGl\":\"Δεσμευμένο μέχρι\",\"a5z8mb\":\"Reset to base price\",\"kCn6wb\":\"Επαναφορά...\",\"ZlCDf+\":\"Απάντηση\",\"bsydMp\":\"Λεπτομέρειες Απάντησης\",\"yKu/3Y\":\"Επαναφορά\",\"RokrZf\":\"Επαναφορά Εκδήλωσης\",\"/JyMGh\":\"Επαναφορά Διοργανωτή\",\"HFvFRb\":\"Επαναφορά αυτής της εκδήλωσης για να γίνει ξανά ορατή.\",\"DDIcqy\":\"Επαναφορά αυτού του διοργανωτή για να γίνει ξανά ενεργός.\",\"mO8KLE\":\"results\",\"6gRgw8\":\"Επανάληψη\",\"1BG8ga\":\"Επανάληψη Όλων\",\"rDC+T6\":\"Επανάληψη Εργασίας\",\"CbnrWb\":\"Επιστροφή στην Εκδήλωση\",\"Lf7TCn\":\"Οι επαναχρησιμοποιήσιμοι χώροι εμφανίζονται εδώ αυτόματα όταν δημιουργείτε εκδηλώσεις με διευθύνσεις, και μπορείτε να προσθέσετε και δικούς σας.\",\"mdQ0zb\":\"Επαναχρησιμοποιήσιμοι χώροι για τις εκδηλώσεις σας. Οι τοποθεσίες που δημιουργούνται από την αυτόματη συμπλήρωση αποθηκεύονται εδώ αυτόματα.\",\"XFOPle\":\"Reuse\",\"1Zehp4\":\"Reuse a Stripe connection from another organizer in this account.\",\"Oo/PLb\":\"Σύνοψη Εσόδων\",\"CfuueU\":\"Ανάκληση Προσφοράς\",\"RIgKv+\":\"Run until a specific date\",\"dFFW9L\":[\"Η πώληση έληξε \",[\"0\"]],\"loCKGB\":[\"Η πώληση λήγει \",[\"0\"]],\"wlfBad\":\"Περίοδος Πώλησης\",\"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\":\"Η περίοδος πώλησης ορίστηκε\",\"ftzaMf\":\"Περίοδος πώλησης, όρια παραγγελίας, ορατότητα\",\"zpekWp\":[\"Η πώληση ξεκινά \",[\"0\"]],\"mUv9U4\":\"Πωλήσεις\",\"9KnRdL\":\"Οι πωλήσεις είναι σε παύση\",\"JC3J0k\":\"Sales, attendance, and check-in breakdown per occurrence\",\"3VnlS9\":\"Πωλήσεις, παραγγελίες και μετρήσεις απόδοσης για όλες τις εκδηλώσεις\",\"3Q1AWe\":\"Πωλήσεις:\",\"LeuERW\":\"Same as event\",\"B4nE3N\":\"Δείγμα τιμής εισιτηρίου\",\"8BRPoH\":\"Δείγμα Χώρου\",\"PiK6Ld\":\"Sat\",\"+5kO8P\":\"Saturday\",\"zJiuDn\":\"Save fee override\",\"NB8Uxt\":\"Save Schedule\",\"KZrfYJ\":\"Αποθήκευση Κοινωνικών Συνδέσμων\",\"9Y3hAT\":\"Αποθήκευση Προτύπου\",\"C8ne4X\":\"Αποθήκευση Σχεδιασμού Εισιτηρίου\",\"cTI8IK\":\"Save VAT settings\",\"6/TNCd\":\"Αποθήκευση Ρυθμίσεων ΦΠΑ\",\"4RvD9q\":\"Αποθηκευμένη τοποθεσία\",\"cgw0cL\":\"Αποθηκευμένες τοποθεσίες\",\"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\":\"Προγραμματισμένο\",\"qcP/8K\":\"Προγραμματισμένη ώρα\",\"A1taO8\":\"Search\",\"ftNXma\":\"Αναζήτηση συνεργατών...\",\"VMU+zM\":\"Search attendees\",\"VY+Bdn\":\"Αναζήτηση ανά όνομα λογαριασμού ή email...\",\"VX+B3I\":\"Αναζήτηση ανά τίτλο εκδήλωσης ή διοργανωτή...\",\"R0wEyA\":\"Αναζήτηση ανά όνομα εργασίας ή εξαίρεση...\",\"YnMfsK\":\"Αναζήτηση με όνομα ή διεύθυνση...\",\"VT+urE\":\"Αναζήτηση ανά όνομα ή email...\",\"GHdjuo\":\"Αναζήτηση ανά όνομα, email ή λογαριασμό...\",\"4mBFO7\":\"Search by name, order #, ticket # or email\",\"20ce0U\":\"Αναζήτηση ανά ID παραγγελίας, όνομα πελάτη ή email...\",\"4DSz7Z\":\"Αναζήτηση ανά θέμα, εκδήλωση ή λογαριασμό...\",\"nQC7Z9\":\"Search dates...\",\"iRtEpV\":\"Search dates…\",\"JRM7ao\":\"Search for an address\",\"BWF1kC\":\"Αναζήτηση μηνυμάτων...\",\"5WYZKZ\":\"Αποτελέσματα αναζήτησης\",\"IG85fV\":\"Αναζητήστε αποθηκευμένες τοποθεσίες ή βρείτε μια διεύθυνση...\",\"3aD3GF\":\"Seasonal\",\"ku//5b\":\"Second\",\"Mck5ht\":\"Ασφαλής Ολοκλήρωση Αγοράς\",\"s7tXqF\":\"See schedule\",\"JFap6u\":\"See what Stripe still needs\",\"p7xUrt\":\"Επιλογή κατηγορίας\",\"hTKQwS\":\"Select a Date & Time\",\"Ps6Xtf\":\"Select a date to see available times\",\"e4L7bF\":\"Επιλέξτε μήνυμα για προβολή περιεχομένου\",\"zPRPMf\":\"Επιλογή βαθμίδας\",\"BFRSTT\":\"Επιλογή Λογαριασμού\",\"wgNoIs\":\"Select all\",\"mCB6Je\":\"Επιλογή Όλων\",\"aCEysm\":[\"Select all on \",[\"0\"]],\"a6+167\":\"Επιλογή εκδήλωσης\",\"CFbaPk\":\"Επιλογή ομάδας συμμετεχόντων\",\"88a49s\":\"Select camera\",\"tVW/yo\":\"Επιλογή νομίσματος\",\"SJQM1I\":\"Select date\",\"n9ZhRa\":\"Επιλογή ημερομηνίας και ώρας λήξης\",\"gTN6Ws\":\"Επιλογή ώρας λήξης\",\"0U6E9W\":\"Επιλογή κατηγορίας εκδήλωσης\",\"j9cPeF\":\"Επιλογή τύπων εκδήλωσης\",\"ypTjHL\":\"Select occurrence\",\"KizCK7\":\"Επιλογή ημερομηνίας και ώρας έναρξης\",\"dJZTv2\":\"Επιλογή ώρας έναρξης\",\"x8XMsJ\":\"Επιλέξτε τη βαθμίδα μηνυμάτων για αυτό τον λογαριασμό. Ελέγχει τα όρια μηνυμάτων και τα δικαιώματα συνδέσμων.\",\"aT3jZX\":\"Επιλογή ζώνης ώρας\",\"TxfvH2\":\"Επιλέξτε ποιοι συμμετέχοντες πρέπει να λάβουν αυτό το μήνυμα\",\"Ropvj0\":\"Επιλέξτε ποια γεγονότα θα ενεργοποιήσουν αυτό το webhook\",\"+6YAwo\":\"selected\",\"ylXj1N\":\"Επιλεγμένο\",\"uq3CXQ\":\"Sell out your event.\",\"oBXbO4\":\"Selling a physical product? Cap its quantity on the <0>products page instead.\",\"j9b/iy\":\"Πωλείται γρήγορα 🔥\",\"73qYgo\":\"Αποστολή ως δοκιμαστικό\",\"HMAqFK\":\"Αποστολή email σε συμμετέχοντες, κατόχους εισιτηρίων ή κατόχους παραγγελιών. Τα μηνύματα μπορούν να αποσταλούν αμέσως ή να προγραμματιστούν.\",\"22Itl6\":\"Αποστολή αντιγράφου σε εμένα\",\"NpEm3p\":\"Αποστολή τώρα\",\"nOBvex\":\"Αποστολή δεδομένων παραγγελίας και συμμετεχόντων σε πραγματικό χρόνο στα εξωτερικά συστήματα.\",\"1lNPhX\":\"Αποστολή email ειδοποίησης επιστροφής\",\"eaUTwS\":\"Αποστολή συνδέσμου επαναφοράς\",\"5cV4PY\":\"Send to all occurrences, or choose a specific one\",\"QEQlnV\":\"Στείλτε το πρώτο σας μήνυμα\",\"IoAuJG\":\"Αποστολή...\",\"h69WC6\":\"Εστάλη\",\"BVu2Hz\":\"Εστάλη Από\",\"ZFa8wv\":\"Sent to attendees when a scheduled date is cancelled\",\"SPdzrs\":\"Αποστέλλεται στους πελάτες όταν κάνουν παραγγελία\",\"LxSN5F\":\"Αποστέλλεται σε κάθε συμμετέχοντα με τα στοιχεία εισιτηρίου\",\"hgvbYY\":\"September\",\"5sN96e\":\"Session cancelled\",\"89xaFU\":\"Ορίστε προεπιλεγμένες ρυθμίσεις τελών πλατφόρμας για νέες εκδηλώσεις αυτού του διοργανωτή.\",\"eXssj5\":\"Ορίστε προεπιλεγμένες ρυθμίσεις για νέες εκδηλώσεις αυτού του διοργανωτή.\",\"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\":\"Ρυθμίστε λίστες check-in για διαφορετικές εισόδους, συνεδρίες ή ημέρες.\",\"TaWVGe\":\"Set up payouts\",\"JA//e6\":\"Set up schedule\",\"gzXY7l\":\"Set Up Schedule\",\"0Ls9qe\":\"Set up the tickets you'll sell and their prices\",\"xMO+Ao\":\"Ρυθμίστε τον οργανισμό σας\",\"5pEFnq\":\"Set up your schedule\",\"h/9JiC\":\"Set Up Your Schedule\",\"zRRuUD\":\"Set up your schedule in the next steps\",\"ETC76A\":\"Set, change, or remove the date's location or online details\",\"C3htzi\":\"Η ρύθμιση ενημερώθηκε\",\"Ohn74G\":\"Ρύθμιση & Σχεδιασμός\",\"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\":\"Κοινοποίηση Συνδέσμου Συνεργάτη\",\"hL7sDJ\":\"Κοινοποίηση Σελίδας Διοργανωτή\",\"jy6QDF\":\"Διαχείριση Κοινής Χωρητικότητας\",\"jDNHW4\":\"Shift times\",\"tPfIaW\":[\"Shifted times for \",[\"count\"],\" date(s)\"],\"WwlM8F\":\"Εμφάνιση σύνθετων επιλογών\",\"cMW+gm\":[\"Εμφάνιση όλων των πλατφορμών (\",[\"0\"],\" περισσότερες με τιμές)\"],\"wXi9pZ\":\"Show attendee notes to non-logged-in staff\",\"4LZFir\":\"Εμφάνιση ολόκληρου του εύρους ημερομηνιών\",\"UVPI5D\":\"Εμφάνιση λιγότερων πλατφορμών\",\"Eu/N/d\":\"Εμφάνιση πλαισίου εξουσιοδότησης μάρκετινγκ\",\"SXzpzO\":\"Εμφάνιση πλαισίου εξουσιοδότησης μάρκετινγκ ως προεπιλογή\",\"b33PL9\":\"Εμφάνιση περισσότερων πλατφορμών\",\"Eut7p9\":\"Show order details to non-logged-in staff\",\"+RoWKN\":\"Show question answers to non-logged-in staff\",\"jbcx6L\":\"Show remaining capacity on event dates\",\"rXxBOx\":\"Show remaining capacity to buyers\",\"t1LIQW\":[\"Εμφάνιση \",[\"0\"],\" από \",[\"totalRows\"],\" εγγραφές\"],\"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\":\"Εγγράφηκε\",\"5C7J+P\":\"Single Event\",\"E//btK\":\"Skip manually edited dates\",\"paESr6\":\"Σλοβακικά\",\"9wu8nm\":\"Snapchat\",\"kIKb9e\":\"Κοινωνικά\",\"d0rUsW\":\"Κοινωνικοί Σύνδεσμοι\",\"j/TOB3\":\"Κοινωνικοί Σύνδεσμοι & Ιστοσελίδα\",\"s9KGXU\":\"Πωλήθηκε\",\"yp+0jj\":\"sold out\",\"1hupow\":\"Εξαντλημένο, διαθέσιμη λίστα αναμονής\",\"iACSrw\":\"Some details are hidden from public access. Log in to view everything.\",\"Dia6iz\":\"Something went wrong while deleting the image. Please try again.\",\"KTxc6k\":\"Κάτι πήγε στραβά, δοκιμάστε ξανά ή επικοινωνήστε με την υποστήριξη εάν το πρόβλημα επιμένει\",\"lkE00/\":\"Κάτι πήγε στραβά. Παρακαλώ δοκιμάστε ξανά αργότερα.\",\"wdxz7K\":\"Πηγή\",\"fDG2by\":\"Spirituality\",\"oPaRES\":\"Split check-in across days, areas, or ticket types. Share the link with staff — no account needed on their end.\",\"7JFNej\":\"Αθλητισμός\",\"/bfV1Y\":\"Staff instructions\",\"tXkhj/\":\"Start\",\"StWUH4\":\"Start check-in\",\"JcQp9p\":\"Ημερομηνία & ώρα έναρξης\",\"0m/ekX\":\"Ημερομηνία & Ώρα Έναρξης\",\"izRfYP\":\"Η ημερομηνία έναρξης είναι υποχρεωτική\",\"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/\":\"Στατιστικά\",\"GVUxAX\":\"Τα στατιστικά βασίζονται στην ημερομηνία δημιουργίας λογαριασμού\",\"29Hx9U\":\"Stats\",\"5ia+r6\":\"Still needed\",\"wuV0bK\":\"Διακοπή Υποκατάστασης\",\"s/KaDb\":\"Stripe connected\",\"Bk06QI\":\"Stripe Συνδεδεμένο\",\"akZMv8\":[\"Stripe connection copied from \",[\"0\"],\".\"],\"v0aRY1\":\"Stripe didn't return a setup link. Please try again.\",\"aKtF0O\":\"Stripe Μη Συνδεδεμένο\",\"9i0++A\":\"ID Πληρωμής Stripe\",\"R1lIMV\":\"Stripe will need a few more details soon\",\"FzcCHA\":\"Stripe will walk you through a few quick questions to finish setup.\",\"ii0qn/\":\"Το θέμα είναι υποχρεωτικό\",\"M7Uapz\":\"Το θέμα θα εμφανιστεί εδώ\",\"6aXq+t\":\"Θέμα:\",\"JwTmB6\":\"Επιτυχής Αντιγραφή Προϊόντος\",\"WUOCgI\":\"Επιτυχής προσφορά θέσης\",\"IvxA4G\":[\"Επιτυχής προσφορά εισιτηρίων σε \",[\"count\"],\" άτομα\"],\"kKpkzy\":\"Επιτυχής προσφορά εισιτηρίου σε 1 άτομο\",\"Zi3Sbw\":\"Επιτυχής αφαίρεση από λίστα αναμονής\",\"RuaKfn\":\"Επιτυχής Ενημέρωση Διεύθυνσης\",\"kzx0uD\":\"Επιτυχής Ενημέρωση Προεπιλογών Εκδήλωσης\",\"5n+Wwp\":\"Επιτυχής Ενημέρωση Διοργανωτή\",\"DMCX/I\":\"Επιτυχής Ενημέρωση Προεπιλογών Τελών Πλατφόρμας\",\"URUYHc\":\"Επιτυχής Ενημέρωση Ρυθμίσεων Τελών Πλατφόρμας\",\"kRWc2g\":\"Οι ρυθμίσεις επαναλαμβανόμενης εκδήλωσης ενημερώθηκαν με επιτυχία\",\"0Dk/l8\":\"Επιτυχής Ενημέρωση Ρυθμίσεων SEO\",\"S8Tua9\":\"Επιτυχής Ενημέρωση Ρυθμίσεων\",\"MhOoLQ\":\"Επιτυχής Ενημέρωση Κοινωνικών Συνδέσμων\",\"CNSSfp\":\"Επιτυχής Ενημέρωση Ρυθμίσεων Παρακολούθησης\",\"kj7zYe\":\"Επιτυχής ενημέρωση Webhook\",\"dXoieq\":\"Σύνοψη\",\"/RfJXt\":[\"Καλοκαιρινό Μουσικό Φεστιβάλ \",[\"0\"]],\"CWOPIK\":\"Καλοκαιρινό Μουσικό Φεστιβάλ 2025\",\"D89zck\":\"Sun\",\"DBC3t5\":\"Sunday\",\"UaISq3\":\"Σουηδικά\",\"JZTQI0\":\"Εναλλαγή Διοργανωτή\",\"9YHrNC\":\"Προεπιλογή Συστήματος\",\"lruQkA\":\"Tap this screen to resume scanning\",\"TJUrME\":[\"Targeting attendees across \",[\"0\"],\" selected sessions.\"],\"yT6dQ8\":\"Φόρος που συλλέχθηκε ανά τύπο φόρου και εκδήλωση\",\"Ye321X\":\"Όνομα Φόρου\",\"WyCBRt\":\"Σύνοψη Φόρου\",\"GkH0Pq\":\"Εφαρμόστηκαν φόροι & τέλη\",\"Rwiyt2\":\"Οι φόροι ρυθμίστηκαν\",\"iQZff7\":\"Φόροι, Τέλη, Ορατότητα, Περίοδος Πώλησης, Ανάδειξη Προϊόντος & Όρια Παραγγελίας\",\"SXvRWU\":\"Team collaboration\",\"vlf/In\":\"Τεχνολογία\",\"SchpMp\":\"Telegram\",\"iWa9cY\":\"Πείτε στους ανθρώπους τι να περιμένουν στην εκδήλωσή σας\",\"NiIUyb\":\"Πείτε μας για την εκδήλωσή σας\",\"DovcfC\":\"Πείτε μας για τον οργανισμό σας. Αυτές οι πληροφορίες θα εμφανίζονται στις σελίδες εκδηλώσεων.\",\"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\":\"Πρότυπο Ενεργό\",\"QHhZeE\":\"Το πρότυπο δημιουργήθηκε επιτυχώς\",\"xrWdPR\":\"Το πρότυπο διαγράφηκε επιτυχώς\",\"G04Zjt\":\"Το πρότυπο αποθηκεύτηκε επιτυχώς\",\"xowcRf\":\"Όροι Χρήσης\",\"6K0GjX\":\"Το κείμενο μπορεί να είναι δύσκολο να διαβαστεί\",\"nm3Iz/\":\"Σας ευχαριστούμε για τη συμμετοχή σας!\",\"pYwj0k\":\"Thanks,\",\"k3IitN\":\"That's a wrap\",\"KfmPRW\":\"Το χρώμα φόντου της σελίδας. Όταν χρησιμοποιείται εικόνα εξωφύλλου, εφαρμόζεται ως επικάλυψη.\",\"MDNyJz\":\"Ο κωδικός θα λήξει σε 10 λεπτά. Ελέγξτε τον φάκελο spam εάν δεν βλέπετε το email.\",\"AIF7J2\":\"Το νόμισμα στο οποίο ορίζεται το σταθερό τέλος. Θα μετατραπεί στο νόμισμα παραγγελίας κατά το checkout.\",\"7oksH+\":[\"Η έκπτωση αφαιρείται από κάθε επιλέξιμο προϊόν. Π.χ. έκπτωση \",[\"currencySymbol\"],\"10 × 3 εισιτήρια = έκπτωση \",[\"currencySymbol\"],\"30.\"],\"sKL8k2\":\"Η έκπτωση αφαιρείται μία φορά από το σύνολο της παραγγελίας.\",\"cDHM1d\":\"Η διεύθυνση email άλλαξε. Ο συμμετέχων θα λάβει νέο εισιτήριο στην ενημερωμένη διεύθυνση.\",\"tXadb0\":\"Η εκδήλωση που αναζητάτε δεν είναι διαθέσιμη αυτή τη στιγμή. Μπορεί να αφαιρέθηκε, να έληξε ή το URL μπορεί να είναι λανθασμένο.\",\"5fPdZe\":\"The first date this schedule will generate from.\",\"sxKqBm\":\"Το πλήρες ποσό παραγγελίας θα επιστραφεί στην αρχική μέθοδο πληρωμής του πελάτη.\",\"KgDp6G\":\"Ο σύνδεσμος που προσπαθείτε να αποκτήσετε πρόσβαση έχει λήξει ή δεν είναι πλέον έγκυρος. Ελέγξτε το email σας για ενημερωμένο σύνδεσμο.\",\"Np4eLs\":[\"The maximum is \",[\"MAX_PREVIEW\"],\" sessions. Please reduce the date range, frequency, or number of sessions per day.\"],\"sYLeDq\":\"Ο διοργανωτής που αναζητάτε δεν βρέθηκε. Η σελίδα μπορεί να μετακινήθηκε, διαγράφηκε ή το URL μπορεί να είναι λανθασμένο.\",\"PCr4zw\":\"The override is recorded in the order audit log.\",\"C4nQe5\":\"Το τέλος πλατφόρμας προστίθεται στην τιμή εισιτηρίου. Οι αγοραστές πληρώνουν περισσότερο, αλλά λαμβάνετε την πλήρη τιμή εισιτηρίου.\",\"HxxXZO\":\"Το κύριο χρώμα επωνυμίας για κουμπιά και ανάδειξη\",\"OVSkIF\":\"Η γρήγορη καφέ αλεπού πηδά πάνω από τον τεμπέλη σκύλο.\",\"z0KrIG\":\"Η προγραμματισμένη ώρα είναι υποχρεωτική\",\"EWErQh\":\"Η προγραμματισμένη ώρα πρέπει να είναι στο μέλλον\",\"UNd0OU\":[\"The session for \\\"\",[\"title\"],\"\\\" originally scheduled for \",[\"0\"],\" has been rescheduled.\"],\"DEcpfp\":\"Το σώμα προτύπου περιέχει μη έγκυρη σύνταξη Liquid. Παρακαλώ διορθώστε και δοκιμάστε ξανά.\",\"injXD7\":\"Ο αριθμός ΦΠΑ δεν μπόρεσε να επαληθευτεί. Παρακαλώ ελέγξτε τον αριθμό και δοκιμάστε ξανά.\",\"A4UmDy\":\"Θέατρο\",\"tDwYhx\":\"Θέμα & Χρώματα\",\"ybBP2H\":\"There are no products available for this date. Please choose another date.\",\"O7g4eR\":\"There are no upcoming dates for this event\",\"062KsE\":\"These details are shown on the attendee's ticket and order summary for this date only.\",\"5Eu+tn\":\"Αυτά τα στοιχεία θα εμφανιστούν μόνο εάν η παραγγελία ολοκληρωθεί με επιτυχία.\",\"jQjwR+\":\"These details will replace any existing location on the affected dates and show on attendee tickets.\",\"6eaLu/\":\"Αυτές οι τιμές ισχύουν για όλες τις ημερομηνίες του προγράμματός σας και οι ποσότητες των επιπέδων περιορίζουν τις συνολικές πωλήσεις για όλες τις ημερομηνίες συνολικά. Οι ημερομηνίες πώλησης των επιπέδων ισχύουν καθολικά. Μπορείτε να παρακάμψετε τις τιμές για μεμονωμένες ημερομηνίες στη <0>σελίδα Προγράμματος ημερομηνιών.\",\"QP3gP+\":\"Αυτές οι ρυθμίσεις ισχύουν μόνο για τον αντιγραμμένο κώδικα ενσωμάτωσης και δεν θα αποθηκευτούν.\",\"HirZe8\":\"Αυτά τα πρότυπα θα χρησιμοποιούνται ως προεπιλογές για όλες τις εκδηλώσεις στον οργανισμό σας. Μεμονωμένες εκδηλώσεις μπορούν να τα παρακάμψουν.\",\"lzAaG5\":\"Αυτά τα πρότυπα θα παρακάμψουν τις προεπιλογές διοργανωτή μόνο για αυτή την εκδήλωση. Εάν δεν έχει οριστεί προσαρμοσμένο πρότυπο, θα χρησιμοποιηθεί το πρότυπο διοργανωτή.\",\"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\":\"Αυτός ο κωδικός θα χρησιμοποιηθεί για παρακολούθηση πωλήσεων. Επιτρέπονται μόνο γράμματα, αριθμοί, παύλες και κάτω παύλες.\",\"AaP0M+\":\"Αυτός ο συνδυασμός χρωμάτων μπορεί να είναι δύσκολο να διαβαστεί από ορισμένους χρήστες\",\"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.\",\"E9BqZw\":\"This date only\",\"RzEvf5\":\"Αυτή η εκδήλωση έχει τελειώσει\",\"kc4bIA\":\"Αυτή η εκδήλωση δεν έχει ακόμα εισιτήρια ή προϊόντα, οπότε οι συμμετέχοντες δεν θα μπορούν να εγγραφούν.\",\"eMaNd0\":\"This event is not available\",\"YClrdK\":\"Αυτή η εκδήλωση δεν έχει δημοσιευτεί ακόμα\",\"GL6z+k\":\"Αυτή η εκδήλωση έχει εξαντληθεί\",\"pIwDhS\":\"This event's dates and times are set on the occurrence schedule.\",\"ny5rgr\":\"This is a recurring event\",\"tc64Zz\":\"Αυτό είναι το όνομα της κατηγορίας που θα εμφανίζεται στη σελίδα της εκδήλωσης.\",\"dFJnia\":\"Αυτό είναι το όνομα διοργανωτή που θα εμφανίζεται στους χρήστες σας.\",\"vt7jiq\":\"Αυτή είναι η μοναδική φορά που θα εμφανιστεί το signing secret. Αντιγράψτε το τώρα και φυλάξτε το ασφαλώς.\",\"5DpZrC\":\"Αυτό περιορίζει τις συνολικές πωλήσεις για όλες τις ημερομηνίες του προγράμματός σας συνολικά — δεν είναι όριο ανά ημερομηνία. Για να περιορίσετε τη συμμετοχή ανά ημερομηνία, ορίστε χωρητικότητα στη <0>σελίδα Προγράμματος ημερομηνιών.\",\"L7dIM7\":\"Αυτός ο σύνδεσμος δεν είναι έγκυρος ή έχει λήξει.\",\"MR5ygV\":\"Αυτός ο σύνδεσμος δεν είναι πλέον έγκυρος\",\"9LEqK0\":\"Αυτό το όνομα είναι ορατό στους τελικούς χρήστες\",\"QdUMM9\":\"This occurrence is at capacity\",\"j5FdeA\":\"Αυτή η παραγγελία επεξεργάζεται.\",\"sjNPMw\":\"Αυτή η παραγγελία εγκαταλείφθηκε. Μπορείτε να ξεκινήσετε νέα παραγγελία ανά πάσα στιγμή.\",\"OhCesD\":\"Αυτή η παραγγελία ακυρώθηκε. Μπορείτε να ξεκινήσετε νέα παραγγελία ανά πάσα στιγμή.\",\"lyD7rQ\":\"Αυτό το προφίλ διοργανωτή δεν έχει δημοσιευτεί ακόμα\",\"9b5956\":\"Αυτή η προεπισκόπηση δείχνει πώς θα φαίνεται το email με δείγμα δεδομένων. Τα πραγματικά email θα χρησιμοποιούν πραγματικές τιμές.\",\"uM9Alj\":\"Αυτό το προϊόν αναδεικνύεται στη σελίδα εκδήλωσης\",\"RqSKdX\":\"Αυτό το προϊόν έχει εξαντληθεί\",\"qEGn8I\":\"Αυτή η επαναλαμβανόμενη εκδήλωση δεν έχει ακόμα ημερομηνίες, οπότε οι συμμετέχοντες δεν έχουν τίποτα να κρατήσουν.\",\"W12OdJ\":\"Αυτή η αναφορά είναι μόνο για ενημερωτικούς σκοπούς. Πάντα συμβουλευτείτε φορολογικό σύμβουλο πριν χρησιμοποιήσετε αυτά τα δεδομένα.\",\"1LuJNw\":\"Αυτό το εισιτήριο δεν ισχύει πλέον\",\"0Ew0uk\":\"Αυτό το εισιτήριο σαρώθηκε μόλις τώρα. Παρακαλώ περιμένετε πριν σαρώσετε ξανά.\",\"FYXq7k\":[\"This will affect \",[\"loadedAffectedCount\"],\" date(s).\"],\"kvpxIU\":\"Αυτό θα χρησιμοποιηθεί για ειδοποιήσεις και επικοινωνία με τους χρήστες σας.\",\"rhsath\":\"Αυτό δεν θα είναι ορατό στους πελάτες, αλλά σας βοηθά να αναγνωρίσετε τον συνεργάτη.\",\"hV6FeJ\":\"Throughput\",\"+FjWgX\":\"Thu\",\"kkDQ8m\":\"Thursday\",\"0GSPnc\":\"Σχεδιασμός Εισιτηρίου\",\"EZC/Cu\":\"Ο σχεδιασμός εισιτηρίου αποθηκεύτηκε επιτυχώς\",\"bbslmb\":\"Σχεδιαστής Εισιτηρίου\",\"1BPctx\":\"Εισιτήριο για\",\"HGuXjF\":\"Κάτοχοι εισιτηρίων\",\"CMUt3Y\":\"Κάτοχοι Εισιτηρίων\",\"awHmAT\":\"ID Εισιτηρίου\",\"6czJik\":\"Λογότυπο Εισιτηρίου\",\"t79rDv\":\"Εισιτήριο Δεν Βρέθηκε\",\"6tmWch\":\"Εισιτήριο ή Προϊόν\",\"1tfWrD\":\"Προεπισκόπηση Εισιτηρίου για\",\"KnjoUA\":\"Τιμή εισιτηρίου\",\"pGZOcL\":\"Το εισιτήριο εστάλη ξανά επιτυχώς\",\"o02GZM\":\"Ticket sales have ended for this event\",\"8jLPgH\":\"Τύπος Εισιτηρίου\",\"8qsbZ5\":\"Εισιτήρια & Πωλήσεις\",\"zNECqg\":\"εισιτήρια\",\"6GQNLE\":\"Εισιτήρια\",\"NRhrIB\":\"Εισιτήρια & Προϊόντα\",\"OrWHoZ\":\"Τα εισιτήρια προσφέρονται αυτόματα σε πελάτες λίστας αναμονής όταν διατίθεται χωρητικότητα.\",\"EUnesn\":\"Διαθέσιμα Εισιτήρια\",\"AGRilS\":\"Εισιτήρια που Πωλήθηκαν\",\"zyUxcw\":\"TikTok\",\"LhMjLm\":\"Time\",\"fXf2r5\":[\"Times shown in \",[\"timezoneAbbr\"]],\"dMtLDE\":\"to\",\"/jQctM\":\"Προς\",\"tiI71C\":\"Για να αυξήσετε τα όριά σας, επικοινωνήστε μαζί μας στο\",\"ecUA8p\":\"Today\",\"W428WC\":\"Εναλλαγή στηλών\",\"BRMXj0\":\"Tomorrow\",\"UBSG1X\":\"Κορυφαίοι Διοργανωτές (Τελευταίες 14 Ημέρες)\",\"3sZ0xx\":\"Σύνολο Λογαριασμών\",\"SMDzqJ\":\"Σύνολο Συμμετεχόντων\",\"orBECM\":\"Σύνολο Εισπράχθηκε\",\"k5CU8c\":\"Σύνολο Εγγραφών\",\"4B7oCp\":\"Συνολικό Τέλος\",\"sMMlTX\":\"Total fees\",\"mlvCEl\":\"Total orders\",\"2AW/k5\":\"Συνολική ποσότητα για όλες τις ημερομηνίες\",\"dp8BCb\":\"Total tax\",\"vb0Q0/\":\"Σύνολο Χρηστών\",\"oJjplO\":\"Σύνολο Προβολών\",\"rBZ9pz\":\"Tours\",\"orluER\":\"Παρακολούθηση ανάπτυξης λογαριασμού και απόδοσης ανά πηγή\",\"YwKzpH\":\"Παρακολούθηση & Αναλυτικά\",\"GUA0Jy\":\"Try a different search term or filter\",\"2P/OWN\":\"Try adjusting your filters to see more dates.\",\"ouM5IM\":\"Δοκιμάστε άλλο email\",\"3DZvE7\":\"Δοκιμάστε το Hi.Events Δωρεάν\",\"vq2WxD\":\"Tue\",\"G3myU+\":\"Tuesday\",\"Kz91g/\":\"Τουρκικά\",\"GdOhw6\":\"Απενεργοποίηση ήχου\",\"KUOhTy\":\"Ενεργοποίηση ήχου\",\"dBeuY2\":\"Twitch\",\"QytzQr\":\"Πληκτρολογήστε \\\"delete\\\" για επιβεβαίωση\",\"nWRfmt\":\"Τυπογραφία\",\"IrVSu+\":\"Αδύνατη αντιγραφή προϊόντος. Ελέγξτε τα στοιχεία σας\",\"Vx2J6x\":\"Αδύνατη φόρτωση συμμετέχοντα\",\"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\":\"Μη Αποδιδόμενοι Λογαριασμοί\",\"9uI/rE\":\"Undo\",\"Ef7StM\":\"Άγνωστο\",\"ZBAScj\":\"Άγνωστος Συμμετέχων\",\"MEIAzV\":\"Χωρίς όνομα\",\"K6L5Mx\":\"Τοποθεσία χωρίς όνομα\",\"7yiFvZ\":\"Απλήρωτο\",\"X13xGn\":\"Μη Αξιόπιστο\",\"gyXpQN\":\"Upcoming events\",\"Pp1sWX\":\"Ενημέρωση Συνεργάτη\",\"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\":\"Μεταφόρτωση εικόνας εξωφύλλου για τον διοργανωτή\",\"4kEGqW\":\"Μεταφόρτωση λογότυπου για τον διοργανωτή\",\"lnCMdg\":\"Μεταφόρτωση Εικόνας\",\"29w7p6\":\"Μεταφόρτωση εικόνας...\",\"HtrFfw\":\"Το URL είναι υποχρεωτικό\",\"vzWC39\":\"USB\",\"td5pxI\":\"USB scanner listening\",\"dyTklH\":\"USB scanner paused\",\"OHJXlK\":\"Χρησιμοποιήστε <0>Liquid templating για εξατομίκευση email\",\"/rsy72\":\"Use event default\",\"0k4cdb\":\"Χρήση στοιχείων παραγγελίας για όλους τους συμμετέχοντες. Τα ονόματα και email θα αντιστοιχούν στον αγοραστή.\",\"bA31T4\":\"Χρήση στοιχείων αγοραστή για όλους τους συμμετέχοντες\",\"PpgtnC\":\"Χρήση αυτής της διεύθυνσης\",\"rnoQsz\":\"Χρησιμοποιείται για περιγράμματα, ανάδειξη και στυλιζάρισμα QR code\",\"BV4L/Q\":\"Αναλυτικά UTM\",\"l5ackE\":\"UUID\",\"imLQ9Y\":\"Επαλήθευση αριθμού ΦΠΑ...\",\"t7caBM\":\"VAT country code\",\"WLkfqH\":\"VAT number\",\"pnVh83\":\"Αριθμός ΦΠΑ\",\"CabI04\":\"Ο αριθμός ΦΠΑ δεν πρέπει να περιέχει κενά\",\"PMhxAR\":\"Ο αριθμός ΦΠΑ πρέπει να ξεκινά με κωδικό χώρας 2 γραμμάτων ακολουθούμενο από 8-15 αλφαριθμητικούς χαρακτήρες (π.χ. DE123456789)\",\"gPgdNV\":\"Ο αριθμός ΦΠΑ επικυρώθηκε με επιτυχία\",\"RUMiLy\":\"Η επαλήθευση αριθμού ΦΠΑ απέτυχε\",\"vqji3Y\":\"Η επαλήθευση αριθμού ΦΠΑ απέτυχε. Παρακαλώ ελέγξτε τον αριθμό ΦΠΑ σας.\",\"8dENF9\":\"ΦΠΑ στο Τέλος\",\"ZutOKU\":\"Συντελεστής ΦΠΑ\",\"+KJZt3\":\"VAT registered\",\"Nfbg76\":\"Οι ρυθμίσεις ΦΠΑ αποθηκεύτηκαν επιτυχώς\",\"UvYql/\":\"Οι ρυθμίσεις ΦΠΑ αποθηκεύτηκαν. Επαληθεύουμε τον αριθμό ΦΠΑ σε παρασκήνιο.\",\"bXn1Jz\":\"VAT settings updated\",\"tJylUv\":\"Αντιμετώπιση ΦΠΑ για Τέλη Πλατφόρμας\",\"FlGprQ\":\"Αντιμετώπιση ΦΠΑ για τέλη πλατφόρμας: Επιχειρήσεις εγγεγραμμένες για ΦΠΑ στην ΕΕ μπορούν να χρησιμοποιήσουν τον μηχανισμό αντίστροφης χρέωσης (0%). Μη εγγεγραμμένες χρεώνονται με ιρλανδικό ΦΠΑ 23%.\",\"516oLj\":\"Η υπηρεσία επαλήθευσης ΦΠΑ δεν είναι προσωρινά διαθέσιμη\",\"p6QQLa\":[\"VAT: \",[\"0\"]],\"5q87Y9\":\"VAT: not registered\",\"AdWhjZ\":\"Κωδικός επαλήθευσης\",\"kUAumu\":\"Verification email sent. Check your inbox.\",\"QDEWii\":\"Επαληθευμένο\",\"wCKkSr\":\"Επαλήθευση Email\",\"/IBv6X\":\"Επαληθεύστε το email σας\",\"u8nB38\":\"Verify your email so attendees can receive tickets\",\"e/cvV1\":\"Επαλήθευση...\",\"fROFIL\":\"Βιετναμεζικά\",\"p5nYkr\":\"View All\",\"yA/6BX\":\"View all →\",\"6CQ7/B\":\"View all capabilities\",\"YSE15b\":\"View all check-in lists\",\"RnvnDc\":\"Προβολή όλων των μηνυμάτων που εστάλησαν στην πλατφόρμα\",\"+WFMis\":\"Προβολή και λήψη αναφορών για όλες τις εκδηλώσεις. Περιλαμβάνονται μόνο ολοκληρωμένες παραγγελίες.\",\"c7VN/A\":\"Προβολή Απαντήσεων\",\"SZw9tS\":\"Προβολή Λεπτομερειών\",\"9+84uW\":[\"View details for \",[\"0\"],\" \",[\"1\"]],\"FCVmuU\":\"Προβολή Εκδήλωσης\",\"c6SXHN\":\"Προβολή Σελίδας Εκδήλωσης\",\"n6EaWL\":\"Προβολή αρχείων καταγραφής\",\"OaKTzt\":\"Προβολή Χάρτη\",\"zNZNMs\":\"Προβολή Μηνύματος\",\"67OJ7t\":\"Προβολή Παραγγελίας\",\"tKKZn0\":\"Προβολή Λεπτομερειών Παραγγελίας\",\"KeCXJu\":\"Προβολή λεπτομερειών παραγγελίας, έκδοση επιστροφών και επαναποστολή επιβεβαιώσεων.\",\"9jnAcN\":\"Προβολή Αρχικής Διοργανωτή\",\"1J/AWD\":\"Προβολή Εισιτηρίου\",\"N9FyyW\":\"Προβολή, επεξεργασία και εξαγωγή εγγεγραμμένων συμμετεχόντων.\",\"6dp/Hz\":\"Vimeo\",\"SS4mGB\":\"VK\",\"uUehLT\":\"Αναμονή\",\"quR8Qp\":\"Αναμονή πληρωμής\",\"KrurBH\":\"Waiting for scan…\",\"u0n+wz\":\"Λίστα Αναμονής\",\"3RXFtE\":\"Λίστα Αναμονής Ενεργή\",\"TwnTPy\":\"Η προσφορά λίστας αναμονής έληξε\",\"aUi/Dz\":\"Προειδοποίηση: Αυτή είναι η προεπιλεγμένη ρύθμιση συστήματος. Οι αλλαγές θα επηρεάσουν όλους τους λογαριασμούς.\",\"aT/44s\":\"We couldn't copy that Stripe connection. Please try again.\",\"RRZDED\":\"Δεν βρέθηκαν παραγγελίες συνδεδεμένες με αυτή τη διεύθυνση email.\",\"2RZK9x\":\"Δεν βρέθηκε η παραγγελία. Ο σύνδεσμος μπορεί να έχει λήξει ή τα στοιχεία να άλλαξαν.\",\"nefMIK\":\"Δεν βρέθηκε το εισιτήριο. Ο σύνδεσμος μπορεί να έχει λήξει ή τα στοιχεία να άλλαξαν.\",\"miysJh\":\"Δεν βρέθηκε αυτή η παραγγελία. Μπορεί να έχει αφαιρεθεί.\",\"Fjj/5/\":\"We couldn't load the check-in lists. Please try again.\",\"ADsQ23\":\"We couldn't reach Stripe just now. Please try again in a moment.\",\"HJKdzP\":\"Παρουσιάστηκε πρόβλημα κατά τη φόρτωση αυτής της σελίδας. Παρακαλώ δοκιμάστε ξανά.\",\"jegrvW\":\"We partner with Stripe to send payouts straight to your bank account.\",\"IfN2Qo\":\"Προτείνουμε τετράγωνο λογότυπο με ελάχιστες διαστάσεις 200x200px\",\"wJzo/w\":\"Προτείνουμε διαστάσεις 400px x 400px, μέγιστο μέγεθος 5MB\",\"L/KlAh\":[\"We sent a verification link to \",[\"0\"]],\"KRCDqH\":\"Χρησιμοποιούμε cookies για να κατανοήσουμε πώς χρησιμοποιείται ο ιστότοπος και να βελτιώσουμε την εμπειρία σας.\",\"x8rEDQ\":\"Δεν μπορέσαμε να επαληθεύσουμε τον αριθμό ΦΠΑ μετά από πολλές προσπάθειες. Θα συνεχίσουμε σε παρασκήνιο.\",\"mfM/HJ\":[\"Θα σας ειδοποιήσουμε μέσω email εάν διατεθεί θέση για \",[\"productDisplayName\"],\" στις \",[\"occurrenceDate\"],\".\"],\"iy+M+c\":[\"Θα σας ειδοποιήσουμε μέσω email εάν διατεθεί θέση για \",[\"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\":\"Θα σας στείλουμε τα εισιτήρια σε αυτό το email\",\"ZOmUYW\":\"Θα επαληθεύσουμε τον αριθμό ΦΠΑ σε παρασκήνιο. Εάν υπάρχουν προβλήματα, θα σας ενημερώσουμε.\",\"LKjHr4\":[\"We've made changes to the schedule for \\\"\",[\"title\"],\"\\\" — \",[\"description\"],\" affecting \",[\"affectedCount\"],\" session(s).\"],\"Fq/Nx7\":\"Στείλαμε κωδικό επαλήθευσης 5 ψηφίων στο:\",\"GdWB+V\":\"Το webhook δημιουργήθηκε επιτυχώς\",\"2X4ecw\":\"Το webhook διαγράφηκε επιτυχώς\",\"ndBv0v\":\"Webhook integrations\",\"CThMKa\":\"Αρχεία Webhook\",\"I0adYQ\":\"Signing Secret Webhook\",\"nuh/Wq\":\"URL Webhook\",\"8BMPMe\":\"Το webhook δεν θα στέλνει ειδοποιήσεις\",\"FSaY52\":\"Το webhook θα στέλνει ειδοποιήσεις\",\"v1kQyJ\":\"Webhooks\",\"On0aF2\":\"Ιστότοπος\",\"0f7U0k\":\"Wed\",\"VAcXNz\":\"Wednesday\",\"64X6l4\":\"week\",\"4XSc4l\":\"Weekly\",\"IAUiSh\":\"weeks\",\"vKLEXy\":\"Weibo\",\"9eF5oV\":\"Καλώς ήρθατε ξανά\",\"QDWsl9\":[\"Καλώς ήρθατε στο \",[\"0\"],\", \",[\"1\"],\" 👋\"],\"LETnBR\":[\"Καλώς ήρθατε στο \",[\"0\"],\", εδώ είναι η λίστα όλων των εκδηλώσεών σας\"],\"DDbx7K\":\"Wellness\",\"ywRaYa\":\"What time?\",\"FaSXqR\":\"Τι τύπος εκδήλωσης;\",\"0WyYF4\":\"What unauthenticated staff can see\",\"2+ExvJ\":\"WhatsApp\",\"cxsKvw\":\"Όταν διαγράφεται ένα check-in\",\"RPe6bE\":\"When a date is cancelled on a recurring event\",\"Gmd0hv\":\"Όταν δημιουργείται νέος συμμετέχων\",\"zyIyPe\":\"Όταν δημιουργείται νέα εκδήλωση\",\"Lc18qn\":\"Όταν δημιουργείται νέα παραγγελία\",\"dfkQIO\":\"Όταν δημιουργείται νέο προϊόν\",\"8OhzyY\":\"Όταν διαγράφεται ένα προϊόν\",\"tRXdQ9\":\"Όταν ενημερώνεται ένα προϊόν\",\"9L9/28\":\"Όταν ένα προϊόν εξαντληθεί, οι πελάτες μπορούν να εγγραφούν σε λίστα αναμονής.\",\"OIkHj+\":\"Όταν ένα προϊόν εξαντληθεί, οι πελάτες μπορούν να εγγραφούν σε λίστα αναμονής για να ειδοποιηθούν όταν διατεθούν θέσεις. Οι πελάτες εγγράφονται στη λίστα αναμονής για συγκεκριμένη ημερομηνία και οι προσφορές γίνονται ανά ημερομηνία.\",\"Q7CWxp\":\"Όταν ακυρωθεί συμμετέχων\",\"IuUoyV\":\"Όταν γίνει check-in συμμετέχοντα\",\"nBVOd7\":\"Όταν ενημερωθεί συμμετέχων\",\"t7cuMp\":\"Όταν αρχειοθετηθεί εκδήλωση\",\"gtoSzE\":\"Όταν ενημερωθεί εκδήλωση\",\"ny2r8d\":\"Όταν ακυρωθεί παραγγελία\",\"c9RYbv\":\"Όταν επισημανθεί παραγγελία ως πληρωμένη\",\"ejMDw1\":\"Όταν επιστραφεί παραγγελία\",\"fVPt0F\":\"Όταν ενημερωθεί παραγγελία\",\"bcYlvb\":\"Όταν κλείσει το check-in\",\"XIG669\":\"Όταν ανοίξει το check-in\",\"de6HLN\":\"Όταν οι πελάτες αγοράζουν εισιτήρια, οι παραγγελίες θα εμφανίζονται εδώ.\",\"pm9tpn\":\"Όταν είναι ενεργοποιημένο, οι αγοραστές μπορούν να αντιγράψουν το όνομα και το email τους σε όλους τους συμμετέχοντες ταυτόχρονα. Απενεργοποιήστε το για να αφαιρέσετε την επιλογή \\\"Όλοι οι συμμετέχοντες\\\"· οι αγοραστές μπορούν ακόμα να αντιγράψουν τα στοιχεία στον πρώτο συμμετέχοντα, ενώ οι υπόλοιποι πρέπει να εισαχθούν μεμονωμένα.\",\"403wpZ\":\"Όταν είναι ενεργό, νέες εκδηλώσεις θα επιτρέπουν στους συμμετέχοντες να διαχειρίζονται τα στοιχεία εισιτηρίου μέσω ασφαλούς συνδέσμου.\",\"blXLKj\":\"Όταν είναι ενεργό, νέες εκδηλώσεις θα εμφανίζουν πλαίσιο εξουσιοδότησης μάρκετινγκ κατά το checkout.\",\"Kj0Txn\":\"Όταν είναι ενεργό, δεν θα χρεώνονται χρεώσεις εφαρμογής σε συναλλαγές Stripe Connect.\",\"uchB0M\":\"Προεπισκόπηση Widget\",\"uvIqcj\":\"Εργαστήριο\",\"EpknJA\":\"Γράψτε το μήνυμά σας εδώ...\",\"nhtR6Y\":\"X (Twitter)\",\"7qI8sJ\":\"year\",\"zkWmBh\":\"Yearly\",\"+BGee5\":\"years\",\"X/azM1\":\"Ναι - Έχω έγκυρο αριθμό εγγραφής ΦΠΑ ΕΕ\",\"Tz5oXG\":\"Ναι, ακύρωση παραγγελίας\",\"QlSZU0\":[\"Υποκαθιστάτε τον <0>\",[\"0\"],\" (\",[\"1\"],\")\"],\"s14PLh\":[\"Εκδίδετε μερική επιστροφή. Ο πελάτης θα επιστραφεί \",[\"0\"],\" \",[\"1\"],\".\"],\"o7LgX6\":\"Μπορείτε να ρυθμίσετε πρόσθετα τέλη υπηρεσιών και φόρους στις ρυθμίσεις λογαριασμού.\",\"rj3A7+\":\"You can override this for individual dates later.\",\"paWwQ0\":\"Μπορείτε ακόμα να προσφέρετε εισιτήρια χειροκίνητα εάν χρειάζεται.\",\"jTDzpA\":\"Δεν μπορείτε να αρχειοθετήσετε τον τελευταίο ενεργό διοργανωτή στον λογαριασμό σας.\",\"D8baxD\":\"Έχετε εισιτήρια επί πληρωμή, αλλά το Stripe δεν έχει συνδεθεί ακόμα, οπότε δεν μπορείτε να δέχεστε πληρωμές.\",\"5VGIlq\":\"Έχετε φτάσει το όριο μηνυμάτων σας.\",\"casL1O\":\"Έχετε φόρους και τέλη σε Δωρεάν Προϊόν. Θέλετε να τα αφαιρέσετε;\",\"9jJNZY\":\"Πρέπει να αναγνωρίσετε τις ευθύνες σας πριν αποθηκεύσετε\",\"pCLes8\":\"Πρέπει να συμφωνήσετε να λαμβάνετε μηνύματα\",\"FVTVBy\":\"Πρέπει να επαληθεύσετε τη διεύθυνση email πριν ενημερώσετε την κατάσταση διοργανωτή.\",\"ze4bi/\":\"You need to create at least one occurrence before you can add attendees to this recurring event.\",\"w65ZgF\":\"Πρέπει να επαληθεύσετε το email λογαριασμού πριν τροποποιήσετε πρότυπα email.\",\"FRl8Jv\":\"Πρέπει να επαληθεύσετε το email λογαριασμού πριν στείλετε μηνύματα.\",\"88cUW+\":\"Λαμβάνετε\",\"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\":[\"Θα πάτε στο \",[\"0\"],\"!\"],\"ZlLcht\":[\"Εγγράφεστε στη λίστα αναμονής για τις \",[\"occurrenceDate\"],\".\"],\"qGZz0m\":\"Είστε στη λίστα αναμονής!\",\"/5HL6k\":\"Σας προσφέρθηκε μια θέση!\",\"gbjFFH\":\"You've changed the session time\",\"p/Sa0j\":\"Ο λογαριασμός σας έχει όρια μηνυμάτων. Για αύξηση ορίων, επικοινωνήστε μαζί μας στο\",\"x/xjzn\":\"Οι συνεργάτες σας εξήχθησαν επιτυχώς.\",\"TF37u6\":\"Οι συμμετέχοντές σας εξήχθησαν επιτυχώς.\",\"79lXGw\":\"Η λίστα check-in δημιουργήθηκε επιτυχώς. Μοιραστείτε τον παρακάτω σύνδεσμο με το προσωπικό.\",\"BnlG9U\":\"Η τρέχουσα παραγγελία σας θα χαθεί.\",\"nBqgQb\":\"Το Email σας\",\"GG1fRP\":\"Η εκδήλωσή σας είναι δημοσιευμένη!\",\"ifRqmm\":\"Το μήνυμά σας εστάλη επιτυχώς!\",\"0/+Nn9\":\"Τα μηνύματά σας θα εμφανίζονται εδώ\",\"/Rj5P4\":\"Το Όνομά σας\",\"PFjJxY\":\"Ο νέος κωδικός πρέπει να έχει τουλάχιστον 8 χαρακτήρες.\",\"gzrCuN\":\"Τα στοιχεία παραγγελίας ενημερώθηκαν. Στάλθηκε email επιβεβαίωσης στη νέα διεύθυνση.\",\"naQW82\":\"Η παραγγελία σας ακυρώθηκε.\",\"bhlHm/\":\"Η παραγγελία σας αναμένει πληρωμή\",\"XeNum6\":\"Οι παραγγελίες σας εξήχθησαν επιτυχώς.\",\"Xd1R1a\":\"Η διεύθυνση του διοργανωτή σας\",\"WWYHKD\":\"Η πληρωμή σας προστατεύεται με κρυπτογράφηση τραπεζικού επιπέδου\",\"5b3QLi\":\"Το Πλάνο σας\",\"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\":\"Τα εισιτήριά σας επιβεβαιώθηκαν.\",\"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>έκανε check-out επιτυχώς\"],\"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\":[[\"minutes\"],\" λεπτά και \",[\"seconds\"],\" δευτερόλεπτα\"],\"NlQ0cx\":[\"Πρώτη εκδήλωση του \",[\"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://η-ιστοσελίδα-σας.gr\",\"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 Main Street\",\"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\":\"Μια επιλογή τύπου Radio έχει πολλαπλές επιλογές αλλά μόνο μία μπορεί να επιλεγεί.\",\"h179TP\":\"Μια σύντομη περιγραφή της εκδήλωσης που θα εμφανίζεται στα αποτελέσματα αναζήτησης και κατά την κοινοποίηση στα κοινωνικά δίκτυα. Εξ ορισμού χρησιμοποιείται η περιγραφή της εκδήλωσης\",\"WKMnh4\":\"Πεδίο κειμένου μίας γραμμής\",\"BHZbFy\":\"Μία ερώτηση ανά παραγγελία. Π.χ., Ποια είναι η διεύθυνση αποστολής σας;\",\"Fuh+dI\":\"Μία ερώτηση ανά προϊόν. Π.χ., Ποιο είναι το μέγεθος μπλούζας σας;\",\"RlJmQg\":\"Ένας τυπικός φόρος, όπως ΦΠΑ ή GST\",\"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\":\"Να επιτρέπεται το check-in σε συμμετέχοντες με μη πληρωμένες παραγγελίες\",\"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\":\"Τυχόν ερωτήματα από κατόχους προϊόντων θα αποστέλλονται σε αυτή τη διεύθυνση. Θα χρησιμοποιηθεί επίσης ως διεύθυνση \\\"απάντηση προς\\\" για όλα τα email αυτής της εκδήλωσης\",\"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\":\"Are you sure you want to make this event public? This will make the event visible to the public\",\"s4JozW\":\"Είστε σίγουροι ότι θέλετε να επαναφέρετε αυτή την εκδήλωση; Θα αποκατασταθεί ως πρόχειρη εκδήλωση.\",\"vJuISq\":\"Είστε σίγουροι ότι θέλετε να διαγράψετε αυτή την Ανάθεση Χωρητικότητας;\",\"baHeCz\":\"Είστε σίγουροι ότι θέλετε να διαγράψετε αυτή τη Λίστα Ελέγχου;\",\"LBLOqH\":\"Μία φορά ανά παραγγελία\",\"wu98dY\":\"Μία φορά ανά προϊόν\",\"ss9PbX\":\"Συμμετέχων\",\"m0CFV2\":\"Στοιχεία Συμμετέχοντα\",\"QKim6l\":\"Ο συμμετέχων δεν βρέθηκε\",\"R5IT/I\":\"Attendee Notes\",\"lXcSD2\":\"Attendee questions\",\"HT/08n\":\"Εισιτήριο Συμμετέχοντα\",\"9SZT4E\":\"Συμμετέχοντες\",\"iPBfZP\":\"Εγγεγραμμένοι Συμμετέχοντες\",\"7KxcHR\":\"Attendees with a specific product\",\"IMJ6rh\":\"Αυτόματη Αλλαγή Μεγέθους\",\"vZ5qKF\":\"Αυτόματη αλλαγή ύψους widget βάσει περιεχομένου. Όταν απενεργοποιηθεί, το widget θα γεμίζει το ύψος του container.\",\"4lVaWA\":\"Αναμονή πληρωμής εκτός σύνδεσης\",\"2rHwhl\":\"Αναμονή Πληρωμής Εκτός Σύνδεσης\",\"3wF4Q/\":\"Αναμονή πληρωμής\",\"ioG+xt\":\"Αναμονή Πληρωμής\",\"3PmQfI\":\"Awesome Event\",\"Yrbm6T\":\"Διοργανωτής Α.Ε.\",\"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\":\"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\":\"Ακύρωση\",\"Gjt/py\":\"Ακύρωση αλλαγής email\",\"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\":[\"Check-in \",[\"0\"],\" \",[\"1\"]],\"D6+U20\":\"Check-in και σήμανση παραγγελίας ως πληρωμένη\",\"QYLpB4\":\"Μόνο check-in\",\"/Ta1d4\":\"Check Out\",\"5LDT6f\":\"Δείτε αυτή την εκδήλωση!\",\"gXcPxc\":\"Check-in\",\"fVUbUy\":\"Check-In List created successfully\",\"+CeSxK\":\"Η λίστα check-in διαγράφηκε επιτυχώς\",\"+hBhWk\":\"Η λίστα check-in έχει λήξει\",\"mBsBHq\":\"Η λίστα check-in δεν είναι ενεργή\",\"vPqpQG\":\"Η λίστα check-in δεν βρέθηκε\",\"tejfAy\":\"Λίστες Check-In\",\"hD1ocH\":\"Το URL Check-In αντιγράφηκε στο πρόχειρο\",\"CNafaC\":\"Οι επιλογές τύπου Checkbox επιτρέπουν πολλαπλές επιλογές\",\"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\":\"Το χρώμα πρέπει να είναι έγκυρος κωδικός hex. Παράδειγμα: #ffffff\",\"1HfW/F\":\"Χρώματα\",\"VZeG/A\":\"Έρχεται Σύντομα\",\"yPI7n9\":\"Λέξεις-κλειδιά χωρισμένες με κόμμα που περιγράφουν την εκδήλωση. Θα χρησιμοποιηθούν από μηχανές αναζήτησης για κατηγοριοποίηση και ευρετηρίαση\",\"NPZqBL\":\"Ολοκλήρωση Παραγγελίας\",\"guBeyC\":\"Complete payment\",\"C8HNV2\":\"Ολοκλήρωση Πληρωμής\",\"qqWcBV\":\"Ολοκληρωμένο\",\"6HK5Ct\":\"Ολοκληρωμένες παραγγελίες\",\"NWVRtl\":\"Ολοκληρωμένες Παραγγελίες\",\"DwF9eH\":\"Κωδικός Στοιχείου\",\"Tf55h7\":\"Ρυθμισμένη Έκπτωση\",\"7VpPHA\":\"Επιβεβαίωση\",\"ZaEJZM\":\"Επιβεβαίωση Αλλαγής Email\",\"yjkELF\":\"Επιβεβαίωση Νέου Κωδικού\",\"xnWESi\":\"Επιβεβαίωση κωδικού\",\"p2/GCq\":\"Επιβεβαίωση Κωδικού\",\"wnDgGj\":\"Επιβεβαίωση διεύθυνσης email...\",\"pbAk7a\":\"Σύνδεση Stripe\",\"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\":\"Αντιγραφή URL Check-In\",\"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\":\"Δημιουργία Λίστας Check-In\",\"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\":\"Προσαρμογή ρυθμίσεων email και ειδοποιήσεων για αυτή την εκδήλωση\",\"Y9Z/vP\":\"Προσαρμογή της αρχικής σελίδας εκδήλωσης και των μηνυμάτων checkout\",\"2E2O5H\":\"Προσαρμογή διαφόρων ρυθμίσεων για αυτή την εκδήλωση\",\"iJhSxe\":\"Προσαρμογή ρυθμίσεων SEO για αυτή την εκδήλωση\",\"KIhhpi\":\"Προσαρμόστε τη σελίδα εκδήλωσης\",\"nrGWUv\":\"Customize your event page to match your brand and style.\",\"Zz6Cxn\":\"Επικίνδυνη ζώνη\",\"ZQKLI1\":\"Επικίνδυνη Ζώνη\",\"7p5kLi\":\"Πίνακας Ελέγχου\",\"mYGY3B\":\"Ημερομηνία\",\"JvUngl\":\"Ημερομηνία & Ώρα\",\"JJhRbH\":\"Χωρητικότητα πρώτης ημέρας\",\"cnGeoo\":\"Διαγραφή\",\"jRJZxD\":\"Διαγραφή Χωρητικότητας\",\"VskHIx\":\"Διαγραφή κατηγορίας\",\"Qrc8RZ\":\"Διαγραφή Λίστας Check-In\",\"WHf154\":\"Διαγραφή κωδικού\",\"heJllm\":\"Delete Cover\",\"KWa0gi\":\"Delete Image\",\"1l14WA\":\"Delete product\",\"IatsLx\":\"Delete question\",\"Nu4oKW\":\"Περιγραφή\",\"YC3oXa\":\"Περιγραφή για το προσωπικό check-in\",\"URmyfc\":\"Λεπτομέρειες\",\"1lRT3t\":\"Απενεργοποίηση αυτής της χωρητικότητας θα παρακολουθεί τις πωλήσεις αλλά δεν θα τις σταματά όταν φτάσει στο όριο\",\"H6Ma8Z\":\"Έκπτωση\",\"ypJ62C\":\"Έκπτωση %\",\"3LtiBI\":[\"Έκπτωση σε \",[\"0\"]],\"C8JLas\":\"Τύπος Έκπτωσης\",\"1QfxQT\":\"Dismiss\",\"DZlSLn\":\"Ετικέτα Εγγράφου\",\"cVq+ga\":\"Don't have an account? <0>Sign Up\",\"3F1nBX\":\"Δωρεά / Πληρώστε όσο θέλετε\",\"OvNbls\":\"Λήψη .ics\",\"kodV18\":\"Λήψη CSV\",\"CELKku\":\"Λήψη τιμολογίου\",\"LQrXcu\":\"Λήψη Τιμολογίου\",\"QIodqd\":\"Λήψη QR Code\",\"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\":\"Επεξεργασία Λίστας Check-In\",\"iFgaVN\":\"Επεξεργασία Κωδικού\",\"jrBSO1\":\"Επεξεργασία Διοργανωτή\",\"tdD/QN\":\"Επεξεργασία Προϊόντος\",\"n143Tq\":\"Επεξεργασία Κατηγορίας Προϊόντος\",\"9BdS63\":\"Επεξεργασία Κωδικού Προσφοράς\",\"O0CE67\":\"Edit question\",\"EzwCw7\":\"Επεξεργασία Ερώτησης\",\"poTr35\":\"Επεξεργασία χρήστη\",\"GTOcxw\":\"Επεξεργασία Χρήστη\",\"pqFrv2\":\"π.χ. 2.50 για 2,50€\",\"3yiej1\":\"π.χ. 23.5 για 23,5%\",\"O3oNi5\":\"Email\",\"VxYKoK\":\"Ρυθμίσεις Email & Ειδοποιήσεων\",\"ATGYL1\":\"Διεύθυνση email\",\"hzKQCy\":\"Διεύθυνση Email\",\"HqP6Qf\":\"Η αλλαγή email ακυρώθηκε επιτυχώς\",\"mISwW1\":\"Αλλαγή email σε εκκρεμότητα\",\"APuxIE\":\"Επαναποστολή επιβεβαίωσης email\",\"YaCgdO\":\"Η επιβεβαίωση email εστάλη ξανά επιτυχώς\",\"jyt+cx\":\"Μήνυμα υποσέλιδου email\",\"I6F3cp\":\"Το email δεν έχει επαληθευτεί\",\"NTZ/NX\":\"Κωδικός Ενσωμάτωσης\",\"4rnJq4\":\"Script Ενσωμάτωσης\",\"8oPbg1\":\"Ενεργοποίηση Τιμολόγησης\",\"j6w7d/\":\"Ενεργοποίηση αυτής της χωρητικότητας για διακοπή πωλήσεων όταν φτάσει το όριο\",\"VFv2ZC\":\"Ημερομηνία Λήξης\",\"237hSL\":\"Τελείωσε\",\"nt4UkP\":\"Ended Events\",\"lYGfRP\":\"Αγγλικά\",\"MhVoma\":\"Εισάγετε ποσό χωρίς φόρους και τέλη.\",\"SlfejT\":\"Σφάλμα\",\"3Z223G\":\"Σφάλμα επιβεβαίωσης διεύθυνσης email\",\"a6gga1\":\"Σφάλμα επιβεβαίωσης αλλαγής email\",\"5/63nR\":\"EUR\",\"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\":\"Event URL\",\"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\":\"Αποτυχία φόρτωσης Λίστας Check-In\",\"ZQ15eN\":\"Αποτυχία επαναποστολής email εισιτηρίου\",\"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\":\"Google Calendar\",\"RUz8o/\":\"gross sales\",\"IgcAGN\":\"Μεικτές πωλήσεις\",\"yRg26W\":\"Μεικτές Πωλήσεις\",\"R4r4XO\":\"Επισκέπτες\",\"26pGvx\":\"Έχετε κωδικό προσφοράς;\",\"V7yhws\":\"info@ekdiloseis.gr\",\"6K/IHl\":\"Εδώ είναι ένα παράδειγμα χρήσης του στοιχείου στην εφαρμογή σας.\",\"Y1SSqh\":\"Εδώ είναι το React component που μπορείτε να χρησιμοποιήσετε για ενσωμάτωση του widget στην εφαρμογή σας.\",\"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://maps.google.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\":\"Εάν είναι ενεργό, το προσωπικό check-in μπορεί να επισημάνει τους συμμετέχοντες ως παρόντες ή να επισημάνει την παραγγελία ως πληρωμένη. Εάν είναι απενεργοποιημένο, οι συμμετέχοντες με μη πληρωμένες παραγγελίες δεν μπορούν να κάνουν check-in.\",\"muXhGi\":\"Εάν είναι ενεργό, ο διοργανωτής θα λάβει ειδοποίηση email όταν υποβάλλεται νέα παραγγελία\",\"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\":\"URL Εικόνας\",\"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\":\"Παράδειγμα κειμένου...\",\"NJahlc\":\"Υποχρεωτική διεύθυνση χρέωσης κατά το checkout\",\"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\":\"Παράδειγμα κειμένου...\",\"6YtxFj\":\"Όνομα\",\"hVuv90\":\"Name should be less than 150 characters\",\"AIUkyF\":\"Πλοήγηση σε Συμμετέχοντα\",\"qqeAJM\":\"Ποτέ\",\"7vhWI8\":\"Νέος Κωδικός\",\"1UzENP\":\"Όχι\",\"eRblWH\":[\"No \",[\"0\"],\" available.\"],\"LNWHXb\":\"Δεν υπάρχουν αρχειοθετημένες εκδηλώσεις για εμφάνιση.\",\"q2LEDV\":\"Δεν βρέθηκαν συμμετέχοντες για αυτή την παραγγελία.\",\"zlHa5R\":\"No attendees have been added to this order.\",\"Wjz5KP\":\"Δεν υπάρχουν Συμμετέχοντες για εμφάνιση\",\"Razen5\":\"No attendees will be able to check in before this date using this list\",\"XUfgCI\":\"Δεν υπάρχουν Αναθέσεις Χωρητικότητας\",\"a/gMx2\":\"Δεν υπάρχουν Λίστες Check-In\",\"tMFDem\":\"Δεν υπάρχουν διαθέσιμα δεδομένα\",\"6Z/F61\":\"Δεν υπάρχουν δεδομένα για εμφάνιση. Επιλέξτε εύρος ημερομηνιών\",\"fFeCKc\":\"Χωρίς Έκπτωση\",\"HFucK5\":\"Δεν υπάρχουν τελειωμένες εκδηλώσεις για εμφάνιση.\",\"yAlJXG\":\"Δεν υπάρχουν εκδηλώσεις για εμφάνιση\",\"GqvPcv\":\"Δεν υπάρχουν διαθέσιμα φίλτρα\",\"KPWxKD\":\"Δεν υπάρχουν μηνύματα για εμφάνιση\",\"J2LkP8\":\"Δεν υπάρχουν παραγγελίες για εμφάνιση\",\"RBXXtB\":\"Δεν υπάρχουν διαθέσιμες μέθοδοι πληρωμής αυτή τη στιγμή. Επικοινωνήστε με τον διοργανωτή για βοήθεια.\",\"ZWEfBE\":\"Δεν Απαιτείται Πληρωμή\",\"ZPoHOn\":\"No product associated with this attendee.\",\"Ya1JhR\":\"Δεν υπάρχουν διαθέσιμα προϊόντα σε αυτή την κατηγορία.\",\"FTfObB\":\"Δεν υπάρχουν Προϊόντα ακόμα\",\"+Y976X\":\"Δεν υπάρχουν Κωδικοί Προσφοράς για εμφάνιση\",\"MAavyl\":\"No questions answered by this attendee.\",\"SnlQeq\":\"No questions have been asked for this order.\",\"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\":\"Online event\",\"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\":\"Άνοιγμα Σελίδας Check-In\",\"OdnLE4\":\"Άνοιγμα πλαϊνής μπάρας\",\"ZZEYpT\":[\"Επιλογή \",[\"i\"]],\"oPknTP\":\"Προαιρετικές πρόσθετες πληροφορίες για εμφάνιση σε όλα τα τιμολόγια (π.χ., όροι πληρωμής, τέλη καθυστέρησης, πολιτική επιστροφής)\",\"OrXJBY\":\"Προαιρετικό πρόθεμα αριθμών τιμολογίου (π.χ., ΤΙΜ-)\",\"0zpgxV\":\"Επιλογές\",\"BzEFor\":\"ή\",\"UYUgdb\":\"Παραγγελία\",\"mm+eaX\":\"Order #\",\"B3gPuX\":\"Παραγγελία Ακυρώθηκε\",\"SIbded\":\"Order Completed\",\"q/CcwE\":\"Ημερομηνία Παραγγελίας\",\"Tol4BF\":\"Λεπτομέρειες Παραγγελίας\",\"WbImlQ\":\"Η παραγγελία ακυρώθηκε και ο κάτοχος ειδοποιήθηκε.\",\"nAn4Oe\":\"Η παραγγελία επισημάνθηκε ως πληρωμένη\",\"uzEfRz\":\"Order Notes\",\"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\":\"Επικολλήστε αυτό εκεί που θέλετε να εμφανίζεται το widget.\",\"+23bI/\":\"Παναγιώτης\",\"iAS9f2\":\"panagiotis@papademos.gr\",\"621rYf\":\"Πληρωμή\",\"Lg+ewC\":\"Πληρωμή & Τιμολόγηση\",\"DZjk8u\":\"Ρυθμίσεις Πληρωμής & Τιμολόγησης\",\"lflimf\":\"Περίοδος Πληρωμής\",\"JhtZAK\":\"Η Πληρωμή Απέτυχε\",\"JEdsvQ\":\"Οδηγίες Πληρωμής\",\"bLB3MJ\":\"Μέθοδοι Πληρωμής\",\"QzmQBG\":\"Πάροχος πληρωμής\",\"lsxOPC\":\"Πληρωμή Ελήφθη\",\"wJTzyi\":\"Κατάσταση Πληρωμής\",\"xgav5v\":\"Η πληρωμή επιτεύχθηκε!\",\"R29lO5\":\"Όροι Πληρωμής\",\"/roQKz\":\"Ποσοστό\",\"vPJ1FI\":\"Ποσοστό\",\"xdA9ud\":\"Τοποθετήστε αυτό στο της ιστοσελίδας σας.\",\"blK94r\":\"Παρακαλώ προσθέστε τουλάχιστον μία επιλογή\",\"FJ9Yat\":\"Παρακαλώ ελέγξτε ότι οι παρεχόμενες πληροφορίες είναι σωστές\",\"TkQVup\":\"Παρακαλώ ελέγξτε το email και τον κωδικό σας και δοκιμάστε ξανά\",\"sMiGXD\":\"Παρακαλώ ελέγξτε ότι το email είναι έγκυρο\",\"Ajavq0\":\"Παρακαλώ ελέγξτε το email σας για επιβεβαίωση της διεύθυνσης\",\"MdfrBE\":\"Please complete the form below to accept your invitation\",\"b1Jvg+\":\"Παρακαλώ συνεχίστε στη νέα καρτέλα\",\"hcX103\":\"Παρακαλώ δημιουργήστε ένα προϊόν\",\"cdR8d6\":\"Παρακαλώ δημιουργήστε ένα εισιτήριο\",\"x2mjl4\":\"Παρακαλώ εισάγετε έγκυρο URL εικόνας που να δείχνει σε εικόνα.\",\"HnNept\":\"Please enter your new password\",\"5FSIzj\":\"Σημειώστε\",\"C63rRe\":\"Παρακαλώ επιστρέψτε στη σελίδα εκδήλωσης για να ξεκινήσετε από την αρχή.\",\"pJLvdS\":\"Please select\",\"Ewir4O\":\"Παρακαλώ επιλέξτε τουλάχιστον ένα προϊόν\",\"igBrCH\":\"Παρακαλώ επαληθεύστε τη διεύθυνση email σας για πρόσβαση σε όλες τις λειτουργίες\",\"/IzmnP\":\"Παρακαλώ περιμένετε ενώ προετοιμάζουμε το τιμολόγιό σας...\",\"MOERNx\":\"Πορτογαλικά\",\"qCJyMx\":\"Μήνυμα Μετά το Checkout\",\"g2UNkE\":\"Με την υποστήριξη του\",\"Rs7IQv\":\"Μήνυμα Πριν το Checkout\",\"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\":\"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\":\"Διαθέσιμη Ποσότητα\",\"oCLG0M\":\"Quantity Sold\",\"XKJuAX\":\"Η ερώτηση διαγράφηκε\",\"avf0gk\":\"Περιγραφή Ερώτησης\",\"oQvMPn\":\"Τίτλος Ερώτησης\",\"enzGAL\":\"Ερωτήσεις\",\"ROv2ZT\":\"Ερωτήσεις & Απαντήσεις\",\"K885Eq\":\"Questions sorted successfully\",\"OMJ035\":\"Επιλογή Τύπου Radio\",\"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\":\"Επαναποστολή επιβεβαίωσης email\",\"wIa8Qe\":\"Επαναποστολή πρόσκλησης\",\"VeKsnD\":\"Επαναποστολή email παραγγελίας\",\"dFuEhO\":\"Επαναποστολή email εισιτηρίου\",\"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\":\"San Francisco\",\"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\":\"Αναζήτηση ανά όνομα συμμετέχοντα, email ή αριθμό παραγγελίας...\",\"+pr/FY\":\"Αναζήτηση ανά όνομα εκδήλωσης...\",\"3zRbWw\":\"Αναζήτηση ανά όνομα, email ή αριθμό παραγγελίας...\",\"L22Tdf\":\"Search by name, order #, attendee # or email...\",\"BiYOdA\":\"Αναζήτηση ανά όνομα...\",\"YEjitp\":\"Search by subject or content...\",\"Pjsch9\":\"Αναζήτηση αναθέσεων χωρητικότητας...\",\"r9M1hc\":\"Αναζήτηση λιστών check-in...\",\"+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\":\"Αποστολή email επιβεβαίωσης παραγγελίας και εισιτηρίου\",\"v1rRtW\":\"Αποστολή Δοκιμαστικού\",\"4Ml90q\":\"SEO\",\"j1VfcT\":\"Περιγραφή SEO\",\"/SIY6o\":\"Λέξεις-κλειδιά SEO\",\"GfWoKv\":\"Ρυθμίσεις SEO\",\"rXngLf\":\"Τίτλος SEO\",\"/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\":\"Εμφανίζεται στον πελάτη μετά το checkout, στη σελίδα σύνοψης παραγγελίας.\",\"YfHZv0\":\"Εμφανίζεται στον πελάτη πριν το checkout\",\"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\"],\" θα λάβει email σύντομα.\"],\"BJIEiF\":[\"Επιτυχής \",[\"0\"],\" συμμετέχοντα\"],\"OtgNFx\":\"Επιτυχής επιβεβαίωση διεύθυνσης email\",\"IKwyaF\":\"Επιτυχής επιβεβαίωση αλλαγής email\",\"zLmvhE\":\"Επιτυχής δημιουργία συμμετέχοντα\",\"gP22tw\":\"Επιτυχής Δημιουργία Προϊόντος\",\"9mZEgt\":\"Επιτυχής Δημιουργία Κωδικού Προσφοράς\",\"aIA9C4\":\"Επιτυχής Δημιουργία Ερώτησης\",\"J3RJSZ\":\"Επιτυχής ενημέρωση συμμετέχοντα\",\"3suLF0\":\"Επιτυχής ενημέρωση Ανάθεσης Χωρητικότητας\",\"Z+rnth\":\"Επιτυχής ενημέρωση Λίστας Check-In\",\"vzJenu\":\"Επιτυχής Ενημέρωση Ρυθμίσεων Email\",\"7kOMfV\":\"Επιτυχής Ενημέρωση Εκδήλωσης\",\"G0KW+e\":\"Επιτυχής Ενημέρωση Σχεδιασμού Αρχικής\",\"k9m6/E\":\"Επιτυχής Ενημέρωση Ρυθμίσεων Αρχικής\",\"y/NR6s\":\"Επιτυχής Ενημέρωση Τοποθεσίας\",\"73nxDO\":\"Επιτυχής Ενημέρωση Διαφόρων Ρυθμίσεων\",\"4H80qv\":\"Επιτυχής ενημέρωση παραγγελίας\",\"6xCBVN\":\"Επιτυχής Ενημέρωση Ρυθμίσεων Πληρωμής & Τιμολόγησης\",\"1Ycaad\":\"Επιτυχής ενημέρωση προϊόντος\",\"70dYC8\":\"Επιτυχής Ενημέρωση Κωδικού Προσφοράς\",\"F+pJnL\":\"Επιτυχής Ενημέρωση Ρυθμίσεων SEO\",\"DXZRk5\":\"Suite 100\",\"GNcfRk\":\"Email Υποστήριξης\",\"uRfugr\":\"Μπλούζα\",\"JpohL9\":\"Φόρος\",\"geUFpZ\":\"Φόρος & Τέλη\",\"dFHcIn\":\"Λεπτομέρειες Φόρου\",\"wQzCPX\":\"Πληροφορίες φόρου για εμφάνιση στο κάτω μέρος όλων των τιμολογίων (π.χ., αριθμός ΦΠΑ, φορολογική εγγραφή)\",\"0RXCDo\":\"Ο φόρος ή τέλος διαγράφηκε επιτυχώς\",\"ZowkxF\":\"Φόροι\",\"qu6/03\":\"Φόροι και Τέλη\",\"gypigA\":\"Αυτός ο κωδικός προσφοράς δεν είναι έγκυρος\",\"5ShqeM\":\"Η λίστα check-in που αναζητάτε δεν υπάρχει.\",\"QXlz+n\":\"Το προεπιλεγμένο νόμισμα για τις εκδηλώσεις σας.\",\"mnafgQ\":\"Η προεπιλεγμένη ζώνη ώρας για τις εκδηλώσεις σας.\",\"o7s5FA\":\"Η γλώσσα στην οποία θα λαμβάνει email ο συμμετέχων.\",\"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\":\"Αυτή η λίστα check-in έχει λήξει\",\"Sa7w7S\":\"Αυτή η λίστα check-in έχει λήξει και δεν είναι πλέον διαθέσιμη.\",\"Uicx2U\":\"Αυτή η λίστα check-in είναι ενεργή\",\"1k0Mp4\":\"Αυτή η λίστα check-in δεν είναι ακόμα ενεργή\",\"K6fmBI\":\"Αυτή η λίστα 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\":\"Αυτές οι πληροφορίες θα εμφανίζονται στη σελίδα πληρωμής, στη σύνοψη παραγγελίας και στο email επιβεβαίωσης.\",\"XAHqAg\":\"Πρόκειται για γενικό προϊόν, όπως μπλούζα ή κούπα. Δεν θα εκδοθεί εισιτήριο\",\"CNk/ro\":\"Πρόκειται για διαδικτυακή εκδήλωση\",\"FwXnJd\":\"This list will no longer be available for check-ins after this date\",\"cHO4ec\":\"Αυτό το μήνυμα θα συμπεριληφθεί στο υποσέλιδο όλων των email αυτής της εκδήλωσης\",\"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\":\"Το email εισιτηρίου εστάλη ξανά στον συμμετέχοντα\",\"54q0zp\":\"Εισιτήρια για\",\"xN9AhL\":[\"Βαθμίδα \",[\"0\"]],\"jZj9y9\":\"Προϊόν με Βαθμίδες\",\"8wITQA\":\"Τα προϊόντα με βαθμίδες σας επιτρέπουν να προσφέρετε πολλαπλές επιλογές τιμής για το ίδιο προϊόν. Ιδανικό για πρώιμες αγορές ή διαφορετικές τιμές για διαφορετικές ομάδες.\",\"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\":\"Αδύνατο check-in συμμετέχοντα\",\"bPWBLL\":\"Αδύνατο check-out συμμετέχοντα\",\"9+P7zk\":\"Αδύνατη δημιουργία προϊόντος. Ελέγξτε τα στοιχεία σας\",\"WLxtFC\":\"Αδύνατη δημιουργία προϊόντος. Ελέγξτε τα στοιχεία σας\",\"/cSMqv\":\"Αδύνατη δημιουργία ερώτησης. Ελέγξτε τα στοιχεία σας\",\"MH/lj8\":\"Αδύνατη ενημέρωση ερώτησης. Ελέγξτε τα στοιχεία σας\",\"nnfSdK\":\"Μοναδικοί Πελάτες\",\"Mqy/Zy\":\"Ηνωμένες Πολιτείες\",\"NIuIk1\":\"Απεριόριστο\",\"/p9Fhq\":\"Απεριόριστα διαθέσιμα\",\"E0q9qH\":\"Επιτρέπονται απεριόριστες χρήσεις\",\"h10Wm5\":\"Μη Πληρωμένη Παραγγελία\",\"ia8YsC\":\"Επερχόμενες\",\"TlEeFv\":\"Επερχόμενες Εκδηλώσεις\",\"L/gNNk\":[\"Ενημέρωση \",[\"0\"]],\"+qqX74\":\"Ενημέρωση ονόματος εκδήλωσης, περιγραφής και ημερομηνιών\",\"vXPSuB\":\"Ενημέρωση προφίλ\",\"BNBfrU\":\"Upload Cover\",\"IagCbF\":\"URL\",\"UtDm3q\":\"Το URL αντιγράφηκε στο πρόχειρο\",\"e5lF64\":\"Παράδειγμα Χρήσης\",\"fiV0xj\":\"Όριο Χρήσης\",\"sGEOe4\":\"Χρήση θολής εκδοχής εικόνας εξωφύλλου ως φόντο\",\"OadMRm\":\"Χρήση εικόνας εξωφύλλου\",\"7PzzBU\":\"Χρήστης\",\"yDOdwQ\":\"Διαχείριση Χρηστών\",\"Sxm8rQ\":\"Χρήστες\",\"VEsDvU\":\"Οι χρήστες μπορούν να αλλάξουν email στις <0>Ρυθμίσεις Προφίλ\",\"vgwVkd\":\"UTC\",\"khBZkl\":\"ΦΠΑ\",\"E/9LUk\":\"Όνομα Χώρου\",\"jpctdh\":\"View\",\"Pte1Hv\":\"Προβολή Στοιχείων Συμμετέχοντα\",\"/5PEQz\":\"Προβολή σελίδας εκδήλωσης\",\"fFornT\":\"View full message\",\"YIsEhQ\":\"View map\",\"Ep3VfY\":\"Προβολή στο Google Maps\",\"Y8s4f6\":\"View order details\",\"QIWCnW\":\"Λίστα check-in VIP\",\"tF+VVr\":\"Εισιτήριο VIP\",\"2q/Q7x\":\"Ορατότητα\",\"vmOFL/\":\"Δεν μπορέσαμε να επεξεργαστούμε την πληρωμή σας. Δοκιμάστε ξανά ή επικοινωνήστε με την υποστήριξη.\",\"45Srzt\":\"Δεν μπορέσαμε να διαγράψουμε την κατηγορία. Παρακαλώ δοκιμάστε ξανά.\",\"/DNy62\":[\"Δεν βρέθηκαν εισιτήρια που να αντιστοιχούν στο \",[\"0\"]],\"1E0vyy\":\"Δεν μπορέσαμε να φορτώσουμε τα δεδομένα. Παρακαλώ δοκιμάστε ξανά.\",\"NmpGKr\":\"Δεν μπορέσαμε να αναδιατάξουμε τις κατηγορίες. Παρακαλώ δοκιμάστε ξανά.\",\"BJtMTd\":\"Προτείνουμε διαστάσεις 1950px x 650px, αναλογία 3:1, μέγιστο μέγεθος 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\":\"Όταν είναι ενεργό, θα δημιουργούνται τιμολόγια για παραγγελίες εισιτηρίων. Τα τιμολόγια αποστέλλονται με το email επιβεβαίωσης.\",\"D3opg4\":\"Όταν οι πληρωμές εκτός σύνδεσης είναι ενεργές, οι χρήστες μπορούν να ολοκληρώσουν παραγγελίες και να λάβουν εισιτήρια με ένδειξη μη πληρωμένης παραγγελίας.\",\"D7C6XV\":\"When should this check-in list expire?\",\"FVetkT\":\"Ποια εισιτήρια πρέπει να σχετίζονται με αυτή τη λίστα check-in;\",\"S+OdxP\":\"Ποιος διοργανώνει αυτή την εκδήλωση;\",\"LINr2M\":\"Who is this message to?\",\"nWhye/\":\"Σε ποιον πρέπει να τεθεί αυτή η ερώτηση;\",\"VxFvXQ\":\"Ενσωμάτωση Widget\",\"v1P7Gm\":\"Ρυθμίσεις Widget\",\"b4itZn\":\"Εργασία\",\"hqmXmc\":\"Επεξεργασία...\",\"+G/XiQ\":\"Από αρχής έτους\",\"l75CjT\":\"Ναι\",\"QcwyCh\":\"Ναι, αφαίρεσέ τα\",\"ySeBKv\":\"You already scanned this ticket\",\"P+Sty0\":[\"Αλλάζετε το email σας σε <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\":\"Δεν μπορείτε να κάνετε check-in σε συμμετέχοντες με μη πληρωμένες παραγγελίες.\",\"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\":\"Δεν έχετε εκκρεμή αλλαγή email.\",\"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\":\"Πρέπει να αναγνωρίσετε ότι αυτό το email δεν είναι προωθητικό\",\"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\":\"Χρειάζεστε εισιτήριο πριν δημιουργήσετε λίστα check-in.\",\"Djl45M\":\"Χρειάζεστε προϊόν πριν δημιουργήσετε ανάθεση χωρητικότητας.\",\"y3qNri\":\"Χρειάζεστε τουλάχιστον ένα προϊόν για να ξεκινήσετε. Δωρεάν, επί πληρωμή ή αφήστε τον χρήστη να αποφασίσει.\",\"9HcibB\":[\"You're going to \",[\"0\"],\"! 🎉\"],\"ROR8QD\":\"Το όνομα λογαριασμού χρησιμοποιείται σε σελίδες εκδηλώσεων και σε email.\",\"veessc\":\"Οι συμμετέχοντές σας θα εμφανίζονται εδώ μόλις εγγραφούν. Μπορείτε επίσης να τους προσθέσετε χειροκίνητα.\",\"Eh5Wrd\":\"Η ιστοσελίδα σας 🎉\",\"lkMK2r\":\"Τα Στοιχεία σας\",\"3ENYTQ\":[\"Το αίτημα αλλαγής email σε <0>\",[\"0\"],\" εκκρεμεί. Ελέγξτε το email σας για επιβεβαίωση\"],\"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\":\"(none)\",\"xYxQCZ\":[[\"0\"],\" \",[\"1\"]],\"lAOy2r\":[[\"0\"],\" \",[\"1\"],\" έχει ήδη κάνει check-in\"],\"3beCx0\":[[\"0\"],\" <0>checked in\"],\"S4PqS9\":[[\"0\"],\" Ενεργά Webhooks\"],\"6MIiOI\":[[\"0\"],\" απομένουν\"],\"COnw8D\":[\"Λογότυπο \",[\"0\"]],\"xG9N0H\":[[\"0\"],\" of \",[\"1\"],\" seats are taken.\"],\"B7pZfX\":[[\"0\"],\" διοργανωτές\"],\"/HkCs4\":[[\"0\"],\" εισιτήρια\"],\"30bTiU\":[[\"activeCount\"],\" enabled\"],\"jTs4am\":[[\"appName\"],\" logo\"],\"gbJOk9\":[[\"attendeeCount\"],\" attendees are registered for this session.\"],\"TjbIUI\":[[\"availableCount\"],\" από \",[\"totalCount\"],\" διαθέσιμα\"],\"PSChHo\":[\"Απομένουν \",[\"capacity\"],\" θέσεις\"],\"lzQ8/M\":[[\"checkedIn\"],\" / \",[\"total\"],\" checked in\"],\"RZ0JX3\":[[\"chipTime\"],\", εξαντλήθηκε\"],\"M4KnFs\":[[\"chipTime\"],\", Εξαντλημένο, διαθέσιμη λίστα αναμονής\"],\"SeyN12\":[[\"completedCount\"],\" of \",[\"totalCount\"],\" steps complete\"],\"f2rhaD\":[[\"diffHr\"],\"h ago\"],\"NRSLBe\":[[\"diffMin\"],\"m ago\"],\"iYfwJE\":[[\"diffSec\"],\"s ago\"],\"OJnhhX\":[[\"eventCount\"],\" εκδηλώσεις\"],\"mhZbzw\":[[\"loadedAffectedAttendees\"],\" attendees are registered across the affected sessions.\"],\"RBuxIl\":[[\"productCount\"],\" ticket types configured\"],\"VFLd0I\":[[\"slotCount\"],\" times available\"],\"3IEF7U\":[[\"totalCount\"],\" τύποι εισιτηρίων\"],\"0cLzoF\":[[\"totalOccurrences\"],\" dates\"],\"AEGc4t\":[[\"totalOccurrences\"],\" sessions across \",[\"0\"],\" dates (\",[\"1\",\"plural\",{\"one\":[\"#\",\" session\"],\"other\":[\"#\",\" sessions\"]}],\" per day)\"],\"zGiMDM\":\"+30 210 1234567\",\"1d6kks\":\"+Φόρος/Χρεώσεις\",\"B1St2O\":\"<0>Οι λίστες ελέγχου σας βοηθούν να διαχειριστείτε την είσοδο στην εκδήλωση ανά ημέρα, περιοχή ή τύπο εισιτηρίου. Μπορείτε να συνδέσετε εισιτήρια σε συγκεκριμένες λίστες όπως VIP zones ή εισιτήρια Ημέρας 1 και να μοιραστείτε έναν ασφαλή σύνδεσμο check-in με το προσωπικό. Δεν απαιτείται λογαριασμός. Το check-in λειτουργεί σε κινητό, υπολογιστή ή tablet, χρησιμοποιώντας κάμερα συσκευής ή HID USB σαρωτή. \",\"v9VSIS\":\"<0>Ορίστε ένα ενιαίο συνολικό όριο παρακολούθησης που ισχύει για πολλαπλούς τύπους εισιτηρίων ταυτόχρονα.<1>Για παράδειγμα, αν συνδέσετε ένα εισιτήριο <2>Ημερήσιο και ένα <3>Πλήρους Σαββατοκύριακου, και τα δύο θα αντλούν από την ίδια δεξαμενή θέσεων. Όταν το όριο επιτευχθεί, όλα τα συνδεδεμένα εισιτήρια σταματούν αυτόματα να πωλούνται.\",\"Il5Uid\":\"<0>Αυτή είναι η συνολική διαθέσιμη ποσότητα για όλες τις ημερομηνίες του προγράμματός σας συνολικά — δεν είναι όριο ανά ημερομηνία. Για να περιορίσετε τη συμμετοχή ανά ημερομηνία, ορίστε χωρητικότητα στη <1>σελίδα Προγράμματος ημερομηνιών.\",\"ZnVt5v\":\"<0>Τα Webhooks ειδοποιούν αμέσως εξωτερικές υπηρεσίες όταν συμβαίνουν γεγονότα, όπως η προσθήκη νέου συμμετέχοντα στο CRM ή στη λίστα email κατά την εγγραφή, διασφαλίζοντας απρόσκοπτη αυτοματοποίηση.<1>Χρησιμοποιήστε υπηρεσίες τρίτων όπως <2>Zapier, <3>IFTTT ή <4>Make για να δημιουργήσετε προσαρμοσμένες ροές εργασίας και να αυτοματοποιήσετε εργασίες.\",\"xFTHZ5\":[\"≈ \",[\"0\"],\" με τρέχουσα ισοτιμία\"],\"M2DyLc\":\"1 Ενεργό 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 εισιτήριο\",\"nz96Ue\":\"1 τύπος εισιτηρίου\",\"InX5ad\":\"1 ticket type configured\",\"y2Jh0m\":\"1 time available\",\"cGtUz6\":\"1 εβδομάδα πριν την εκδήλωση\",\"HR/cvw\":\"Παράδειγμα Οδού 123\",\"dgKxZ5\":\"135+ currencies & 40+ payment methods\",\"kMU5aM\":\"Μια ειδοποίηση ακύρωσης εστάλη στο\",\"o++0qa\":\"a change in duration\",\"WuWSX5\":\"A few quick steps and you're ready to start selling.\",\"RQ5kDd\":\"Ένα μήνυμα που εμφανίζεται όταν δεν υπάρχουν προϊόντα σε αυτήν την κατηγορία.\",\"V53XzQ\":\"Νέος κωδικός επαλήθευσης στάλθηκε στο email σας\",\"sr2Je0\":\"a shift in start/end times\",\"/z/bH1\":\"Μια σύντομη περιγραφή του διοργανωτή που θα εμφανίζεται στους χρήστες.\",\"aS0jtz\":\"Εγκαταλειμμένο\",\"uyJsf6\":\"Σχετικά\",\"JvuLls\":\"Απορρόφηση χρέωσης\",\"lk74+I\":\"Απορρόφηση Χρέωσης\",\"1uJlG9\":\"Χρώμα Τόνου\",\"g3UF2V\":\"Αποδοχή\",\"K5+3xg\":\"Αποδοχή πρόσκλησης\",\"jzb4Ep\":[\"Account · \",[\"0\"]],\"UqH1Q6\":[\"Account · \",[\"0\"],\" · \",[\"1\"]],\"vOuxvL\":\"Πληροφορίες Λογαριασμού\",\"EHNORh\":\"Ο λογαριασμός δεν βρέθηκε\",\"bPwFdf\":\"Λογαριασμοί\",\"AhwTa1\":\"Απαιτείται Ενέργεια: Χρειάζονται Στοιχεία ΦΠΑ\",\"APyAR/\":\"Ενεργές Εκδηλώσεις\",\"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\":\"Προσθήκη προσαρμοσμένων ερωτήσεων για συλλογή πρόσθετων πληροφοριών κατά το checkout\",\"Z/dcxc\":\"Add Date\",\"QeupRg\":\"Προσθήκη ημερομηνιών\",\"Q219NT\":\"Add Dates\",\"yjB5VC\":\"Add dates and times for your recurring event\",\"Z8idyM\":\"Add details\",\"wpirGs\":\"Add event details\",\"VX6WUv\":\"Προσθήκη τοποθεσίας\",\"GCQlV2\":\"Add multiple times if you run several sessions per day.\",\"7JF9w9\":\"Προσθήκη Ερώτησης\",\"NLbIb6\":\"Add this attendee anyway (override capacity)\",\"6PNlRV\":\"Προσθήκη αυτής της εκδήλωσης στο ημερολόγιό σας\",\"BGD9Yt\":\"Προσθήκη εισιτηρίων\",\"uIv4Op\":\"Προσθέστε pixels παρακολούθησης στις δημόσιες σελίδες εκδηλώσεων και στην αρχική σελίδα διοργανωτή. Εμφανίζεται banner συγκατάθεσης cookies όταν η παρακολούθηση είναι ενεργή.\",\"QN2F+7\":\"Προσθήκη Webhook\",\"NsWqSP\":\"Προσθέστε τα στοιχεία κοινωνικής δικτύωσης και την ιστοσελίδα σας. Θα εμφανιστούν στη δημόσια σελίδα του διοργανωτή.\",\"bVjDs9\":\"Πρόσθετα Τέλη\",\"MKqSg4\":\"Απαιτείται Πρόσβαση Διαχειριστή\",\"0Zypnp\":\"Πίνακας Διαχείρισης\",\"YAV57v\":\"Συνεργάτης\",\"I+utEq\":\"Ο κωδικός συνεργάτη δεν μπορεί να αλλαχθεί\",\"/jHBj5\":\"Ο συνεργάτης δημιουργήθηκε επιτυχώς\",\"uCFbG2\":\"Ο συνεργάτης διαγράφηκε επιτυχώς\",\"ld8I+f\":\"Affiliate program\",\"a41PKA\":\"Οι πωλήσεις συνεργατών θα παρακολουθούνται\",\"mJJh2s\":\"Οι πωλήσεις συνεργατών δεν θα παρακολουθούνται. Αυτό θα απενεργοποιήσει τον συνεργάτη.\",\"jabmnm\":\"Ο συνεργάτης ενημερώθηκε επιτυχώς\",\"CPXP5Z\":\"Συνεργάτες\",\"9Wh+ug\":\"Οι συνεργάτες εξήχθησαν\",\"3cqmut\":\"Οι συνεργάτες σας βοηθούν να παρακολουθείτε τις πωλήσεις από εταίρους και influencers. Δημιουργήστε κωδικούς και μοιραστείτε τους για παρακολούθηση της απόδοσης.\",\"3e31kI\":\"After your event is created, you can choose how often it repeats from the dashboard.\",\"z7GAMJ\":\"all\",\"N40H+G\":\"All\",\"7rLTkE\":\"Όλες οι Αρχειοθετημένες Εκδηλώσεις\",\"gKq1fa\":\"Όλοι οι συμμετέχοντες\",\"63gRoO\":\"All attendees of the selected sessions\",\"uWxIoH\":\"All attendees of this occurrence\",\"pMLul+\":\"Όλα τα Νομίσματα\",\"sgUdRZ\":\"All dates\",\"e4q4uO\":\"All Dates\",\"ZS/D7f\":\"Όλες οι Τελειωμένες Εκδηλώσεις\",\"QsYjci\":\"Όλες οι Εκδηλώσεις\",\"31KB8w\":\"Όλες οι αποτυχημένες εργασίες διαγράφηκαν\",\"D2g7C7\":\"Όλες οι εργασίες τέθηκαν σε ουρά για επανάληψη\",\"B4RFBk\":\"All matching dates\",\"F1/VgK\":\"All occurrences\",\"OpWjMq\":\"All Occurrences\",\"Sxm1lO\":\"Όλες οι Καταστάσεις\",\"dr7CWq\":\"Όλες οι Επερχόμενες Εκδηλώσεις\",\"GpT6Uf\":\"Να επιτρέπεται στους συμμετέχοντες να ενημερώνουν τα στοιχεία εισιτηρίου (όνομα, email) μέσω ασφαλούς συνδέσμου που αποστέλλεται με την επιβεβαίωση παραγγελίας.\",\"VZdky1\":\"Επιτρέψτε στους αγοραστές να αντιγράφουν τα στοιχεία τους σε όλους τους συμμετέχοντες\",\"F3mW5G\":\"Να επιτρέπεται στους πελάτες να εγγράφονται στη λίστα αναμονής όταν αυτό το προϊόν εξαντληθεί\",\"4CMO/q\":\"Να επιτρέπεται στους πελάτες να εγγράφονται στη λίστα αναμονής όταν αυτό το προϊόν εξαντληθεί. Οι πελάτες εγγράφονται στη λίστα αναμονής για συγκεκριμένη ημερομηνία.\",\"c4uJfc\":\"Σχεδόν έτοιμο! Αναμένουμε την επεξεργασία της πληρωμής σας. Αυτό θα διαρκέσει μόνο λίγα δευτερόλεπτα.\",\"ocS8eq\":[\"Έχετε ήδη λογαριασμό; <0>\",[\"0\"],\"\"],\"uCuEqI\":\"Already in\",\"/H326L\":\"Ήδη Επιστράφηκε\",\"USEpOK\":\"Already use Stripe on another organizer? Reuse that connection.\",\"RtxQTF\":\"Επίσης ακύρωση αυτής της παραγγελίας\",\"jkNgQR\":\"Επίσης επιστροφή αυτής της παραγγελίας\",\"xYqsHg\":\"Πάντα διαθέσιμο\",\"Wvrz79\":\"Ποσό που Καταβλήθηκε\",\"Zkymb9\":\"Ένα email για συσχέτιση με αυτόν τον συνεργάτη. Ο συνεργάτης δεν θα ειδοποιηθεί.\",\"vRznIT\":\"Παρουσιάστηκε σφάλμα κατά τον έλεγχο της κατάστασης εξαγωγής.\",\"OPFdAM\":\"Μια προαιρετική περιγραφή αυτής της κατηγορίας που θα εμφανίζεται στη σελίδα της εκδήλωσης.\",\"eusccx\":\"Προαιρετικό μήνυμα για το προτεινόμενο προϊόν, π.χ. \\\"Πωλείται γρήγορα 🔥\\\" ή \\\"Καλύτερη αξία\\\"\",\"5GJuNp\":[\"and \",[\"0\"],\" more...\"],\"QNrkms\":\"Η απάντηση ενημερώθηκε επιτυχώς.\",\"+qygei\":\"Answers\",\"GK7Lnt\":\"Answers provided at checkout (e.g. meal choice)\",\"lE8PgT\":\"Any dates you've manually customized will be kept.\",\"jVoYha\":[\"εφαρμόστηκε — έκπτωση \",[\"0\"],\" στην παραγγελία σας\"],\"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\":\"Έγκριση Μηνύματος\",\"naCW6Z\":\"April\",\"B495Gs\":\"Αρχειοθέτηση\",\"5sNliy\":\"Αρχειοθέτηση Εκδήλωσης\",\"BrwnrJ\":\"Αρχειοθέτηση Διοργανωτή\",\"E5eghW\":\"Αρχειοθέτηση αυτής της εκδήλωσης για απόκρυψη από το κοινό. Μπορείτε να την επαναφέρετε αργότερα.\",\"eqFkeI\":\"Αρχειοθέτηση αυτού του διοργανωτή. Αυτό θα αρχειοθετήσει και όλες τις εκδηλώσεις του.\",\"BzcxWv\":\"Αρχειοθετημένοι Διοργανωτές\",\"9cQBd6\":\"Είστε σίγουροι ότι θέλετε να αρχειοθετήσετε αυτή την εκδήλωση; Δεν θα είναι πλέον ορατή στο κοινό.\",\"Trnl3E\":\"Είστε σίγουροι ότι θέλετε να αρχειοθετήσετε αυτόν τον διοργανωτή; Αυτό θα αρχειοθετήσει και όλες τις εκδηλώσεις του.\",\"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\":\"Είστε σίγουροι ότι θέλετε να διαγράψετε όλες τις αποτυχημένες εργασίες;\",\"LchiNd\":\"Είστε σίγουροι ότι θέλετε να διαγράψετε αυτόν τον συνεργάτη; Αυτή η ενέργεια δεν μπορεί να αναιρεθεί.\",\"vPeW/6\":\"Είστε σίγουροι ότι θέλετε να διαγράψετε αυτή τη ρύθμιση; Αυτό μπορεί να επηρεάσει λογαριασμούς που τη χρησιμοποιούν.\",\"h42Hc/\":\"Are you sure you want to delete this date? This action cannot be undone.\",\"RiF/yT\":\"Are you sure you want to delete this image?\",\"b3+Qku\":\"Are you sure you want to delete this tax or fee? It will no longer be applied to new orders.\",\"JmVITJ\":\"Είστε σίγουροι ότι θέλετε να διαγράψετε αυτό το πρότυπο; Αυτή η ενέργεια δεν μπορεί να αναιρεθεί και τα email θα επιστρέψουν στο προεπιλεγμένο πρότυπο.\",\"aLS+A6\":\"Είστε σίγουροι ότι θέλετε να διαγράψετε αυτό το πρότυπο; Δεν μπορεί να αναιρεθεί και τα email θα επιστρέψουν στο πρότυπο του διοργανωτή ή στο προεπιλεγμένο.\",\"5H3Z78\":\"Είστε σίγουροι ότι θέλετε να διαγράψετε αυτό το webhook;\",\"147G4h\":\"Είστε σίγουροι ότι θέλετε να φύγετε;\",\"VDWChT\":\"Είστε σίγουροι ότι θέλετε να κάνετε αυτόν τον διοργανωτή πρόχειρο; Αυτό θα κάνει τη σελίδα του αόρατη στο κοινό\",\"pWtQJM\":\"Είστε σίγουροι ότι θέλετε να δημοσιεύσετε αυτόν τον διοργανωτή; Αυτό θα κάνει τη σελίδα του ορατή στο κοινό\",\"EOqL/A\":\"Είστε σίγουροι ότι θέλετε να προσφέρετε θέση σε αυτό το άτομο; Θα λάβει ειδοποίηση μέσω email.\",\"yAXqWW\":\"Are you sure you want to permanently delete this date? This cannot be undone.\",\"WFHOlF\":\"Είστε σίγουροι ότι θέλετε να δημοσιεύσετε αυτή την εκδήλωση; Μόλις δημοσιευτεί, θα είναι ορατή στο κοινό.\",\"4TNVdy\":\"Είστε σίγουροι ότι θέλετε να δημοσιεύσετε αυτό το προφίλ διοργανωτή; Μόλις δημοσιευτεί, θα είναι ορατό στο κοινό.\",\"8x0pUg\":\"Είστε σίγουροι ότι θέλετε να αφαιρέσετε αυτή την εγγραφή από τη λίστα αναμονής;\",\"cDtoWq\":[\"Είστε σίγουροι ότι θέλετε να αποστείλετε ξανά την επιβεβαίωση παραγγελίας στο \",[\"0\"],\";\"],\"xeIaKw\":[\"Είστε σίγουροι ότι θέλετε να αποστείλετε ξανά το εισιτήριο στο \",[\"0\"],\";\"],\"BjbocR\":\"Είστε σίγουροι ότι θέλετε να επαναφέρετε αυτή την εκδήλωση;\",\"7MjfcR\":\"Είστε σίγουροι ότι θέλετε να επαναφέρετε αυτόν τον διοργανωτή;\",\"b7tkGp\":\"Are you sure you want to revoke this invitation?\",\"ExDt3P\":\"Είστε σίγουροι ότι θέλετε να αποσύρετε αυτή την εκδήλωση; Δεν θα είναι πλέον ορατή στο κοινό.\",\"5Qmxo/\":\"Είστε σίγουροι ότι θέλετε να αποσύρετε αυτό το προφίλ διοργανωτή; Δεν θα είναι πλέον ορατό στο κοινό.\",\"Uqefyd\":\"Είστε εγγεγραμμένοι για ΦΠΑ στην ΕΕ;\",\"+QARA4\":\"Τέχνη\",\"tLf3yJ\":\"Καθώς η επιχείρησή σας εδρεύει στην Ιρλανδία, ο ιρλανδικός ΦΠΑ 23% εφαρμόζεται αυτόματα σε όλα τα τέλη πλατφόρμας.\",\"tMeVa/\":\"Ζήτηση ονόματος και email για κάθε εισιτήριο που αγοράζεται\",\"ui5ln+\":\"Assign a different plan\",\"9Jxliv\":\"Assign plan\",\"xdiER7\":\"Ανατεθειμένη Βαθμίδα\",\"F2rX0R\":\"Πρέπει να επιλεγεί τουλάχιστον ένας τύπος εκδήλωσης\",\"Z44eZS\":\"At least one product must stay available for this date. To make the date inaccessible, cancel it from the schedule instead.\",\"BCmibk\":\"Απόπειρες\",\"6PecK3\":\"Αριθμός παρουσιών και ρυθμοί check-in σε όλες τις εκδηλώσεις\",\"K2tp3v\":\"attendee\",\"AJ4rvK\":\"Ακύρωση Συμμετέχοντα\",\"qvylEK\":\"Δημιουργία Συμμετέχοντα\",\"Aspq3b\":\"Συλλογή στοιχείων συμμετέχοντα\",\"fpb0rX\":\"Τα στοιχεία συμμετέχοντα αντιγράφηκαν από την παραγγελία\",\"94aQMU\":\"Πληροφορίες Συμμετέχοντα\",\"KkrBiR\":\"Συλλογή πληροφοριών συμμετέχοντα\",\"sjPjOg\":\"Attendee notes\",\"cosfD8\":\"Κατάσταση Συμμετέχοντα\",\"D2qlBU\":\"Ενημέρωση Συμμετέχοντα\",\"22BOve\":\"Ο συμμετέχων ενημερώθηκε επιτυχώς\",\"x8Vnvf\":\"Το εισιτήριο του συμμετέχοντα δεν περιλαμβάνεται σε αυτή τη λίστα\",\"/Ywywr\":\"attendees\",\"zLRobu\":\"attendees checked in\",\"k3Tngl\":\"Οι συμμετέχοντες εξήχθησαν\",\"UoIRW8\":\"Εγγεγραμμένοι συμμετέχοντες\",\"5UbY+B\":\"Συμμετέχοντες με συγκεκριμένο εισιτήριο\",\"4HVzhV\":\"Συμμετέχοντες:\",\"HVkhy2\":\"Αναλυτικά Απόδοσης\",\"dMMjeD\":\"Ανάλυση Απόδοσης\",\"1oPDuj\":\"Αξία Απόδοσης\",\"DBHTm/\":\"August\",\"JgREph\":\"Η αυτόματη προσφορά είναι ενεργή\",\"V7Tejz\":\"Αυτόματη Επεξεργασία Λίστας Αναμονής\",\"PZ7FTW\":\"Ανιχνεύεται αυτόματα βάσει χρώματος φόντου, αλλά μπορεί να παρακαμφθεί\",\"zlnTuI\":\"Αυτόματη προσφορά εισιτηρίων στο επόμενο άτομο όταν η χωρητικότητα είναι διαθέσιμη. Εάν απενεργοποιηθεί, μπορείτε να επεξεργαστείτε χειροκίνητα τη λίστα αναμονής.\",\"csDS2L\":\"Διαθέσιμο\",\"Xp+ywP\":\"Διαθέσιμο μόλις ολοκληρωθεί η πληρωμή\",\"dwDH1K\":[\"Available times on \",[\"dayName\"]],\"clF06r\":\"Διαθέσιμο για Επιστροφή\",\"NB5+UG\":\"Διαθέσιμα Tokens\",\"L+wGOG\":\"Awaiting\",\"qcw2OD\":\"Awaiting pay\",\"kNmmvE\":\"Εκδηλώσεις Α.Ε.\",\"TeSaQO\":\"Επιστροφή στους Λογαριασμούς\",\"kYqM1A\":\"Επιστροφή στην Εκδήλωση\",\"s5QRF3\":\"Επιστροφή στα μηνύματα\",\"td/bh+\":\"Επιστροφή στις Αναφορές\",\"nsm7BA\":\"Πίσω στην αναζήτηση\",\"imjKVx\":\"Bank account connected\",\"D9LTCH\":\"Base Price\",\"hviJef\":\"Based on the global sale period above, not per date\",\"jIPNJG\":\"Βασικές Πληροφορίες\",\"UabgBd\":\"Το σώμα του μηνύματος είναι υποχρεωτικό\",\"HWXuQK\":\"Αποθηκεύστε αυτή τη σελίδα για να διαχειρίζεστε την παραγγελία σας ανά πάσα στιγμή.\",\"CUKVDt\":\"Δώστε στα εισιτήριά σας ταυτότητα με προσαρμοσμένο λογότυπο, χρώματα και μήνυμα υποσέλιδου.\",\"4BZj5p\":\"Built-in fraud protection\",\"cr7kGH\":\"Bulk Edit\",\"1Fbd6n\":\"Bulk Edit Dates\",\"Eq6Tu9\":\"Bulk update failed.\",\"9N+p+g\":\"Επιχείρηση\",\"SWnN1L\":\"Business address\",\"kQekXw\":\"Business name\",\"bv6RXK\":\"Ετικέτα Κουμπιού\",\"ChDLlO\":\"Κείμενο Κουμπιού\",\"BUe8Wj\":\"Ο αγοραστής πληρώνει\",\"qF1qbA\":\"Οι αγοραστές βλέπουν καθαρή τιμή. Το τέλος πλατφόρμας αφαιρείται από την πληρωμή σας.\",\"dg05rc\":\"Με την προσθήκη pixels παρακολούθησης, αναγνωρίζετε ότι εσείς και αυτή η πλατφόρμα είστε από κοινού υπεύθυνοι επεξεργασίας των δεδομένων που συλλέγονται. Είστε υπεύθυνοι για τη διασφάλιση ότι έχετε νόμιμη βάση για αυτή την επεξεργασία βάσει των ισχυόντων νόμων περί απορρήτου (ΓΚΠΔ, CCPA κ.λπ.).\",\"DFqasq\":[\"Συνεχίζοντας, αποδέχεστε τους <0>Όρους Χρήσης \",[\"0\"],\"\"],\"wVSa+U\":\"By day of month\",\"0MnNgi\":\"By day of week\",\"CetOZE\":\"By ticket type\",\"lFdbRS\":\"Παράκαμψη Χρεώσεων Εφαρμογής\",\"AjVXBS\":\"Calendar\",\"2VLZwd\":\"Κουμπί Κλήσης για Δράση\",\"rT2cV+\":\"Camera\",\"7hYa9y\":\"Camera permission was denied. <0>Request permission again, or grant this page camera access in your browser settings.\",\"D02dD9\":\"Καμπάνια\",\"RRPA79\":\"Can't check in\",\"OcVwAd\":[\"Cancel \",[\"count\"],\" date(s)\"],\"H4nE+E\":\"Ακύρωση όλων των προϊόντων και επιστροφή τους στη δεξαμενή\",\"Py78q9\":\"Cancel Date\",\"tOXAdc\":\"Η ακύρωση θα ακυρώσει όλους τους συμμετέχοντες που σχετίζονται με αυτή την παραγγελία και θα ελευθερώσει τα εισιτήρια στη διαθέσιμη δεξαμενή.\",\"FPpqc7\":[\"Cancelling \",[\"0\"],\" date(s). This may take a moment to complete.\"],\"01sEfm\":\"Δεν είναι δυνατή η διαγραφή της προεπιλεγμένης ρύθμισης συστήματος\",\"VsM1HH\":\"Αναθέσεις Χωρητικότητας\",\"9bIMVF\":\"Capacity management\",\"H7K8og\":\"Capacity must be 0 or greater\",\"nzao08\":\"capacity updates\",\"4cp9NP\":\"Capacity Used\",\"K7tIrx\":\"Κατηγορία\",\"DRK3Bq\":\"Category deleted successfully\",\"o+XJ9D\":\"Αλλαγή\",\"kJkjoB\":\"Change duration\",\"J0KExZ\":\"Change the attendee limit\",\"ssospy\":\"Change time\",\"CIHJJf\":\"Αλλαγή ρυθμίσεων λίστας αναμονής\",\"B5icLR\":[\"Changed duration for \",[\"count\"],\" date(s)\"],\"Kb+0BT\":\"Charges\",\"2tbLdK\":\"Φιλανθρωπία\",\"BPWGKn\":\"Check in\",\"6uFFoY\":\"Check out\",\"FjAlwK\":[\"Check out this event: \",[\"0\"]],\"v4fiSg\":\"Ελέγξτε το email σας\",\"51AsAN\":\"Ελέγξτε τα εισερχόμενά σας! Εάν υπάρχουν εισιτήρια συνδεδεμένα με αυτό το email, θα λάβετε σύνδεσμο για προβολή.\",\"Y3FYXy\":\"Check-In\",\"udRwQs\":\"Δημιουργία Check-in\",\"F4SRy3\":\"Διαγραφή Check-in\",\"as6XfO\":[\"Check-in for \",[\"0\"],\" was undone\"],\"9s/wrQ\":\"Check-in history\",\"Wwztk4\":\"Check-In List\",\"9gPPUY\":\"Δημιουργία Λίστας Check-In\",\"dwjiJt\":\"Check-in list info\",\"7od0PV\":\"check-in lists\",\"f2vU9t\":\"Λίστες Check-in\",\"XprdTn\":\"Check-in navigation\",\"5tV1in\":\"Check-in progress\",\"SHJwyq\":\"Ρυθμός Check-in\",\"qCqdg6\":\"Κατάσταση Check-In\",\"cKj6OE\":\"Σύνοψη Check-in\",\"7B5M35\":\"Check-Ins\",\"VrmydS\":\"Checked in\",\"DM4gBB\":\"Κινεζικά (Παραδοσιακά)\",\"p8Jvp4\":\"Choose a configuration\",\"ElShBO\":\"Choose a different action\",\"pHEhf+\":\"Επιλέξτε γραμματοσειρά που ταιριάζει στη μάρκα σας. Οι γραμματοσειρές φιλοξενούνται αυτόνομα μέσω Bunny Fonts.\",\"Zok1Gx\":\"Choose an organizer\",\"pkk46Q\":\"Επιλέξτε Διοργανωτή\",\"Ag32+c\":\"Choose another date\",\"Crr3pG\":\"Επιλογή ημερολογίου\",\"Z38ZJu\":\"Επιλέξτε πώς εμφανίζεται η ημερομηνία της εκδήλωσης στο εισιτήριο\",\"LAW8Vb\":\"Επιλέξτε την προεπιλεγμένη ρύθμιση για νέες εκδηλώσεις. Μπορεί να παρακαμφθεί για μεμονωμένες εκδηλώσεις.\",\"pjp2n5\":\"Επιλέξτε ποιος πληρώνει το τέλος πλατφόρμας. Αυτό δεν επηρεάζει πρόσθετα τέλη που έχετε ρυθμίσει στις ρυθμίσεις λογαριασμού.\",\"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\":\"Κλικ για προβολή σημειώσεων\",\"RG3szS\":\"κλείσιμο\",\"RWw9Lg\":\"Κλείσιμο παραθύρου\",\"XwdMMg\":\"Ο κωδικός μπορεί να περιέχει μόνο γράμματα, αριθμούς, παύλες και κάτω παύλες\",\"+yMJb7\":\"Ο κωδικός είναι υποχρεωτικός\",\"m9SD3V\":\"Ο κωδικός πρέπει να έχει τουλάχιστον 3 χαρακτήρες\",\"V1krgP\":\"Ο κωδικός δεν μπορεί να υπερβαίνει τους 20 χαρακτήρες\",\"psqIm5\":\"Συνεργαστείτε με την ομάδα σας για να δημιουργήσετε εκπληκτικές εκδηλώσεις μαζί.\",\"4bUH9i\":\"Συλλογή στοιχείων συμμετέχοντα για κάθε αγορασμένο εισιτήριο.\",\"TkfG8v\":\"Συλλογή στοιχείων ανά παραγγελία\",\"96ryID\":\"Συλλογή στοιχείων ανά εισιτήριο\",\"FpsvqB\":\"Λειτουργία Χρώματος\",\"jEu4bB\":\"Στήλες\",\"CWk59I\":\"Κωμωδία\",\"rPA+Gc\":\"Προτιμήσεις Επικοινωνίας\",\"zFT5rr\":\"complete\",\"bUQMpb\":\"Complete Stripe setup\",\"744BMm\":\"Ολοκληρώστε την παραγγελία σας για να εξασφαλίσετε τα εισιτήριά σας. Αυτή η προσφορά είναι χρονικά περιορισμένη, μην αναβάλλετε.\",\"5YrKW7\":\"Ολοκληρώστε την πληρωμή σας για να εξασφαλίσετε τα εισιτήριά σας.\",\"xGU92i\":\"Ολοκληρώστε το προφίλ σας για να συμμετάσχετε στην ομάδα.\",\"QOhkyl\":\"Σύνταξη\",\"ih35UP\":\"Συνεδριακό Κέντρο\",\"ywFj2D\":\"Configuration\",\"WTw0bB\":\"Configuration assigned\",\"X1zdE7\":\"Η ρύθμιση δημιουργήθηκε επιτυχώς\",\"mLBUMQ\":\"Η ρύθμιση διαγράφηκε επιτυχώς\",\"UIENhw\":\"Τα ονόματα ρυθμίσεων είναι ορατά στους τελικούς χρήστες. Τα σταθερά τέλη θα μετατραπούν στο νόμισμα παραγγελίας με την τρέχουσα ισοτιμία.\",\"eeZdaB\":\"Η ρύθμιση ενημερώθηκε επιτυχώς\",\"3cKoxx\":\"Ρυθμίσεις\",\"8v2LRU\":\"Ρύθμιση λεπτομερειών εκδήλωσης, τοποθεσίας, επιλογών ολοκλήρωσης αγοράς και ειδοποιήσεων email.\",\"raw09+\":\"Ρύθμιση τρόπου συλλογής στοιχείων συμμετεχόντων κατά το checkout\",\"FI60XC\":\"Ρύθμιση Φόρων & Τελών\",\"av6ukY\":\"Configure which products are available for this occurrence and optionally adjust pricing.\",\"NGXKG/\":\"Επιβεβαίωση Διεύθυνσης Email\",\"JRQitQ\":\"Επιβεβαίωση νέου κωδικού\",\"Auz0Mz\":\"Επιβεβαιώστε το email σας για πρόσβαση σε όλες τις λειτουργίες.\",\"7+grte\":\"Στάλθηκε email επιβεβαίωσης! Παρακαλώ ελέγξτε τα εισερχόμενά σας.\",\"n/7+7Q\":\"Επιβεβαίωση εστάλη στο\",\"x3wVFc\":\"Συγχαρητήρια! Η εκδήλωσή σας είναι τώρα ορατή στο κοινό.\",\"0W2NQP\":\"Connect bank\",\"/K4Vqr\":\"Συνδέστε το Stripe για να δέχεστε πληρωμές\",\"nQI4H5\":\"Συνδέστε το Stripe για να ενεργοποιήσετε την επεξεργασία προτύπων email\",\"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\":\"Για διαδικτυακές εκδηλώσεις απαιτούνται στοιχεία σύνδεσης\",\"jfC/xh\":\"Επικοινωνία\",\"LOFgda\":[\"Επικοινωνία με \",[\"0\"]],\"41BQ3k\":\"Email Επικοινωνίας\",\"m8WD6t\":\"Συνέχεια Ρύθμισης\",\"0GwUT4\":\"Συνέχεια στην Ολοκλήρωση Αγοράς\",\"sBV87H\":\"Συνέχεια στη δημιουργία εκδήλωσης\",\"nKtyYu\":\"Συνέχεια στο επόμενο βήμα\",\"F3/nus\":\"Συνέχεια στην Πληρωμή\",\"s30OcA\":\"Ελέγξτε πώς εμφανίζονται οι ημερομηνίες και οι ώρες στη σελίδα της εκδήλωσης\",\"p2FRHj\":\"Έλεγχος τρόπου διαχείρισης τελών πλατφόρμας για αυτή την εκδήλωση\",\"NqfabH\":\"Control who gets in for this date\",\"fmYxZx\":\"Control who gets in, and when\",\"1JnTgU\":\"Αντιγράφηκε από παραπάνω\",\"FxVG/l\":\"Αντιγράφηκε στο πρόχειρο\",\"PiH3UR\":\"Αντιγράφηκε!\",\"4i7smN\":\"Copy account ID\",\"uUPbPg\":\"Αντιγραφή Συνδέσμου Συνεργάτη\",\"iVm46+\":\"Αντιγραφή Κωδικού\",\"cF2ICc\":\"Αντιγραφή συνδέσμου πελάτη\",\"+2ZJ7N\":\"Αντιγραφή στοιχείων στον πρώτο συμμετέχοντα\",\"ZN1WLO\":\"Αντιγραφή Email\",\"y1eoq1\":\"Αντιγραφή συνδέσμου\",\"tUGbi8\":\"Αντιγραφή στοιχείων μου σε:\",\"y22tv0\":\"Αντιγράψτε αυτό τον σύνδεσμο για κοινοποίηση οπουδήποτε\",\"/4gGIX\":\"Αντιγραφή στο πρόχειρο\",\"e0f4yB\":\"Δεν ήταν δυνατή η διαγραφή της τοποθεσίας\",\"vkiDx2\":\"Could not prepare the bulk update.\",\"KOavaU\":\"Δεν ήταν δυνατή η ανάκτηση των στοιχείων της διεύθυνσης\",\"/lq4oO\":\"Could not save date\",\"mHu0az\":\"Couldn't send verification email. Please try again.\",\"QOIm+S\":\"Οι αριθμοί περιλαμβάνουν όλες τις επερχόμενες ημερομηνίες. Σε κάθε άτομο προσφέρεται θέση για την ημερομηνία για την οποία εγγράφηκε.\",\"P0rbCt\":\"Εικόνα Εξωφύλλου\",\"p4kqHr\":\"Cover image added\",\"60u+dQ\":\"Η εικόνα εξωφύλλου θα εμφανίζεται στην κορυφή της σελίδας εκδήλωσης\",\"2NLjA6\":\"Η εικόνα εξωφύλλου θα εμφανίζεται στην κορυφή της σελίδας διοργανωτή\",\"GkrqoY\":\"Covers every ticket\",\"zg4oSu\":[\"Δημιουργία Προτύπου \",[\"0\"]],\"RKKhnW\":\"Δημιουργήστε προσαρμοσμένο widget για πώληση εισιτηρίων στον ιστότοπό σας.\",\"6sk7PP\":\"Create a fixed number\",\"jqhTmw\":\"Create a list for this date\",\"PhioFp\":\"Create a new check-in list for an active session, or contact the organizer if you think this is a mistake.\",\"yIRev4\":\"Δημιουργία κωδικού\",\"j7xZ7J\":\"Δημιουργήστε πρόσθετους διοργανωτές για τη διαχείριση ξεχωριστών επωνυμιών, τμημάτων ή σειρών εκδηλώσεων υπό έναν λογαριασμό.\",\"xfKgwv\":\"Δημιουργία Συνεργάτη\",\"tudG8q\":\"Δημιουργία και ρύθμιση εισιτηρίων και εμπορευμάτων προς πώληση.\",\"YAl9Hg\":\"Δημιουργία Ρύθμισης\",\"BTne9e\":\"Δημιουργία προσαρμοσμένων προτύπων email για αυτή την εκδήλωση που παρακάμπτουν τις προεπιλογές του διοργανωτή\",\"YIDzi/\":\"Δημιουργία Προσαρμοσμένου Προτύπου\",\"tsGqx5\":\"Create Date\",\"Nc3l/D\":\"Δημιουργία εκπτώσεων, κωδικών πρόσβασης για κρυφά εισιτήρια και ειδικές προσφορές.\",\"PybJS2\":\"Create event\",\"eWEV9G\":\"Δημιουργία νέου κωδικού\",\"wl2iai\":\"Create Schedule\",\"8AiKIu\":\"Δημιουργία Εισιτηρίου ή Προϊόντος\",\"/HGmW9\":\"Δημιουργήστε παρακολουθήσιμους συνδέσμους για να ανταμείψετε εταίρους που προωθούν την εκδήλωσή σας.\",\"dkAPxi\":\"Δημιουργία Webhook\",\"5slqwZ\":\"Δημιουργήστε την Εκδήλωσή σας\",\"JQNMrj\":\"Δημιουργήστε την πρώτη σας εκδήλωση\",\"CCjxOC\":\"Δημιουργήστε την πρώτη σας εκδήλωση για να ξεκινήσετε να πουλάτε εισιτήρια και να διαχειρίζεστε συμμετέχοντες.\",\"ZCSSd+\":\"Δημιουργήστε τη δική σας εκδήλωση\",\"qdv10s\":[\"Δημιουργία \",[\"0\"],\" ημερομηνιών. Μπορεί να διαρκέσει λίγο.\"],\"67NsZP\":\"Δημιουργία Εκδήλωσης...\",\"H34qcM\":\"Δημιουργία Διοργανωτή...\",\"1YMS+X\":\"Δημιουργία εκδήλωσης, παρακαλώ περιμένετε\",\"yiy8Jt\":\"Δημιουργία προφίλ διοργανωτή, παρακαλώ περιμένετε\",\"lfLHNz\":\"Η ετικέτα CTA είναι υποχρεωτική\",\"0xLR6W\":\"Currently assigned\",\"iTvh6I\":\"Διαθέσιμο για αγορά αυτή τη στιγμή\",\"A42Dqn\":\"Custom branding\",\"Guo0lU\":\"Προσαρμοσμένη ημερομηνία και ώρα\",\"WDMdn8\":\"Custom questions\",\"O6mra8\":\"Προσαρμοσμένες Ερωτήσεις\",\"axv/Mi\":\"Προσαρμοσμένο πρότυπο\",\"2YeVGY\":\"Ο σύνδεσμος πελάτη αντιγράφηκε στο πρόχειρο\",\"QMHSMS\":\"Ο πελάτης θα λάβει email επιβεβαίωσης επιστροφής\",\"NihQNk\":\"Πελάτες\",\"hINN++\":\"Customize page\",\"7gsjkI\":\"Προσαρμόστε τα email που αποστέλλονται στους πελάτες σας χρησιμοποιώντας Liquid templating. Αυτά τα πρότυπα θα χρησιμοποιούνται ως προεπιλογές για όλες τις εκδηλώσεις στον οργανισμό σας.\",\"xJaTUK\":\"Προσαρμογή διάταξης, χρωμάτων και επωνυμίας της αρχικής σελίδας εκδήλωσης.\",\"MXZfGN\":\"Προσαρμογή των ερωτήσεων κατά το checkout για συλλογή σημαντικών πληροφοριών από τους συμμετέχοντες.\",\"iX6SLo\":\"Προσαρμογή κειμένου στο κουμπί συνέχεια\",\"pxNIxa\":\"Προσαρμόστε το πρότυπο email χρησιμοποιώντας Liquid templating\",\"3trPKm\":\"Προσαρμογή εμφάνισης σελίδας διοργανωτή\",\"U0sC6H\":\"Daily\",\"/gWrVZ\":\"Καθημερινά έσοδα, φόροι, τέλη και επιστροφές σε όλες τις εκδηλώσεις\",\"zgCHnE\":\"Καθημερινή Αναφορά Πωλήσεων\",\"nHm0AI\":\"Ανάλυση καθημερινών πωλήσεων, φόρων και τελών\",\"1aPnDT\":\"Dance\",\"pvnfJD\":\"Σκοτεινό\",\"MaB9wW\":\"Date Cancellation\",\"e6cAxJ\":\"Date cancelled\",\"81jBnC\":\"Date cancelled successfully\",\"a/C/6R\":\"Date created successfully\",\"IW7Q+u\":\"Date deleted\",\"rngCAz\":\"Date deleted successfully\",\"vHbfoQ\":\"Date reactivated\",\"hvah+S\":\"Date reopened for new sales\",\"Ez0YsD\":\"Date updated successfully\",\"Te33mU\":\"Dates are managed per occurrence\",\"91zCxb\":\"Dates with sessions\",\"/ITcnz\":\"day\",\"H7OUPr\":\"Day\",\"JtHrX9\":\"Day of Month\",\"J/Upwb\":\"days\",\"vDVA2I\":\"Days of Month\",\"rDLvlL\":\"Days of Week\",\"r6zgGo\":\"December\",\"jbq7j2\":\"Απόρριψη\",\"ovBPCi\":\"Προεπιλογή\",\"JtI4vj\":\"Προεπιλεγμένη συλλογή πληροφοριών συμμετέχοντα\",\"ULjv90\":\"Default capacity per date\",\"3R/Tu2\":\"Προεπιλεγμένη Διαχείριση Τελών\",\"1bZAZA\":\"Θα χρησιμοποιηθεί το προεπιλεγμένο πρότυπο\",\"HNlEFZ\":\"διαγραφή\",\"KpnwJK\":[\"Διαγραφή \\\"\",[\"0\"],\"\\\";\"],\"BlII4o\":[\"Delete \",[\"count\"],\" selected date(s)? Dates with orders will be skipped. This cannot be undone.\"],\"vu7gDm\":\"Διαγραφή Συνεργάτη\",\"KZN4Lc\":\"Διαγραφή Όλων\",\"6EkaOO\":\"Delete Date\",\"io0G93\":\"Διαγραφή Εκδήλωσης\",\"+jw/c1\":\"Διαγραφή εικόνας\",\"hdyeZ0\":\"Διαγραφή Εργασίας\",\"xxjZeP\":\"Διαγραφή τοποθεσίας\",\"sY3tIw\":\"Διαγραφή Διοργανωτή\",\"UBv8UK\":\"Delete Permanently\",\"dPyJ15\":\"Διαγραφή Προτύπου\",\"IQTR34\":\"Delete this category? Any products in it will also be deleted. This cannot be undone.\",\"/1wMxk\":\"Delete this product? This cannot be undone.\",\"mxsm1o\":\"Διαγραφή αυτής της ερώτησης; Δεν μπορεί να αναιρεθεί.\",\"snMaH4\":\"Διαγραφή webhook\",\"LIZZLY\":[\"Deleted \",[\"0\"],\" date(s)\"],\"7w0Wev\":\"Description and venue added\",\"vYgeDk\":\"Αποεπιλογή Όλων\",\"NvuEhl\":\"Στοιχεία Σχεδιασμού\",\"H8kMHT\":\"Δεν λάβατε τον κωδικό;\",\"G8KNgd\":\"Different location\",\"E/QGRL\":\"Disabled\",\"OdPOhy\":\"Discord\",\"nZJ8tu\":\"Dismiss setup checklist\",\"QotGhf\":\"Απόρριψη αυτού του μηνύματος\",\"BREO0S\":\"Εμφάνιση πλαισίου ελέγχου που επιτρέπει στους πελάτες να επιλέξουν λήψη μηνυμάτων μάρκετινγκ από αυτόν τον διοργανωτή.\",\"HtaSQp\":\"Εμφανίζει πόσες θέσεις απομένουν για κάθε ημερομηνία στο widget εισιτηρίων. Μπορείτε να το παρακάμψετε για μεμονωμένες ημερομηνίες.\",\"pfa8F0\":\"Εμφανιζόμενο όνομα\",\"Kdpf90\":\"Μην ξεχάσετε!\",\"352VU2\":\"Δεν έχετε λογαριασμό; <0>Εγγραφείτε\",\"AXXqG+\":\"Δωρεά\",\"DPfwMq\":\"Ολοκληρώθηκε\",\"JoPiZ2\":\"Door staff instructions\",\"2+O9st\":\"Λήψη αναφορών πωλήσεων, συμμετεχόντων και οικονομικών για όλες τις ολοκληρωμένες παραγγελίες.\",\"eneWvv\":\"Πρόχειρο\",\"Ts8hhq\":\"Λόγω υψηλού κινδύνου spam, πρέπει να συνδέσετε λογαριασμό Stripe πριν τροποποιήσετε πρότυπα email. Αυτό διασφαλίζει ότι όλοι οι διοργανωτές είναι επαληθευμένοι.\",\"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\":\"Αντιγραφή\",\"YueC+F\":\"Duplicate Date\",\"KRmTkx\":\"Αντιγραφή Προϊόντος\",\"Jd3ymG\":\"Duration must be at least 1 minute.\",\"KIjvtr\":\"Ολλανδικά\",\"22xieU\":\"π.χ. 180 (3 ώρες)\",\"/zajIE\":\"e.g. Morning Session\",\"SPKbfM\":\"π.χ., Αγορά Εισιτηρίων, Εγγραφή Τώρα\",\"fc7wGW\":\"π.χ., Σημαντική ενημέρωση για τα εισιτήριά σας\",\"54MPqC\":\"π.χ., Βασικό, Premium, Enterprise\",\"3RQ81z\":\"Κάθε άτομο θα λάβει email με μια δεσμευμένη θέση για να ολοκληρώσει την αγορά του.\",\"Xfsjel\":\"Κάθε προϊόν\",\"5oD9f/\":\"Earlier\",\"LTzmgK\":[\"Επεξεργασία Προτύπου \",[\"0\"]],\"v4+lcZ\":\"Επεξεργασία Συνεργάτη\",\"2iZEz7\":\"Επεξεργασία Απάντησης\",\"t2bbp8\":\"Επεξεργασία Συμμετέχοντα\",\"etaWtB\":\"Επεξεργασία Στοιχείων Συμμετέχοντα\",\"+guao5\":\"Επεξεργασία Ρύθμισης\",\"1Mp/A4\":\"Edit Date\",\"m0ZqOT\":\"Επεξεργασία τοποθεσίας\",\"8oivFT\":\"Επεξεργασία τοποθεσίας\",\"vRWOrM\":\"Επεξεργασία Λεπτομερειών Παραγγελίας\",\"fW5sSv\":\"Επεξεργασία webhook\",\"nP7CdQ\":\"Επεξεργασία Webhook\",\"MRZxAn\":\"Edited\",\"uBAxNB\":\"Επεξεργαστής\",\"aqxYLv\":\"Εκπαίδευση\",\"iiWXDL\":\"Αποτυχίες Επιλεξιμότητας\",\"zPiC+q\":\"Επιλέξιμες Λίστες Check-In\",\"SiVstt\":\"Email & scheduled messages\",\"V2sk3H\":\"Email & Πρότυπα\",\"hbwCKE\":\"Η διεύθυνση email αντιγράφηκε στο πρόχειρο\",\"dSyJj6\":\"Οι διευθύνσεις email δεν ταιριάζουν\",\"elW7Tn\":\"Σώμα Email\",\"ZsZeV2\":\"Το email είναι υποχρεωτικό\",\"Be4gD+\":\"Προεπισκόπηση Email\",\"6IwNUc\":\"Πρότυπα Email\",\"H/UMUG\":\"Απαιτείται Επαλήθευση Email\",\"PLEl94\":\"Email verified\",\"L86zy2\":\"Το email επαληθεύτηκε επιτυχώς!\",\"FSN4TS\":\"Ενσωμάτωση Widget\",\"z9NkYY\":\"Embeddable widget\",\"Qj0GKe\":\"Ενεργοποίηση αυτοεξυπηρέτησης συμμετέχοντα\",\"hEtQsg\":\"Ενεργοποίηση αυτοεξυπηρέτησης συμμετέχοντα ως προεπιλογή\",\"Upeg/u\":\"Ενεργοποίηση αυτού του προτύπου για αποστολή email\",\"7dSOhU\":\"Ενεργοποίηση Λίστας Αναμονής\",\"RxzN1M\":\"Ενεργοποιημένο\",\"xDr/ct\":\"End\",\"sGjBEq\":\"Ημερομηνία & Ώρα Λήξης (προαιρετικό)\",\"PKXt9R\":\"Η ημερομηνία λήξης πρέπει να είναι μετά την ημερομηνία έναρξης\",\"ZayGC7\":\"End on a date\",\"48Y16Q\":\"Ώρα λήξης (προαιρετικό)\",\"TbaYrr\":[\"Ended \",[\"0\"]],\"CFgwiw\":[\"Ends \",[\"0\"]],\"SqOIQU\":\"Enter a capacity value or choose unlimited.\",\"h37gRz\":\"Enter a label or choose to remove it.\",\"7YZofi\":\"Εισάγετε θέμα και σώμα για προεπισκόπηση\",\"khyScF\":\"Enter a time to shift by.\",\"SKx/0u\":\"Εισαγάγετε όνομα χώρου ή διεύθυνση\",\"ppwojw\":\"Εισαγάγετε όνομα χώρου ή διεύθυνση για δια ζώσης εκδηλώσεις\",\"j+eCIq\":\"Χειροκίνητη εισαγωγή διεύθυνσης\",\"3bR1r4\":\"Εισάγετε email συνεργάτη (προαιρετικό)\",\"ARkzso\":\"Εισάγετε όνομα συνεργάτη\",\"ej4L8b\":\"Enter capacity\",\"6KnyG0\":\"Εισάγετε email\",\"INDKM9\":\"Εισάγετε θέμα email...\",\"xUgUTh\":\"Εισάγετε όνομα\",\"9/1YKL\":\"Εισάγετε επώνυμο\",\"VpwcSk\":\"Εισάγετε νέο κωδικό\",\"kWg31j\":\"Εισάγετε μοναδικό κωδικό συνεργάτη\",\"C3nD/1\":\"Εισάγετε το email σας\",\"VmXiz4\":\"Εισάγετε το email σας και θα σας στείλουμε οδηγίες επαναφοράς κωδικού.\",\"n9V+ps\":\"Εισάγετε το όνομά σας\",\"IdULhL\":\"Εισάγετε τον αριθμό ΦΠΑ με τον κωδικό χώρας, χωρίς κενά (π.χ., GR123456789)\",\"RRlWVA\":\"Ολόκληρη η παραγγελία\",\"o21Y+P\":\"entries\",\"X88/6w\":\"Οι εγγραφές θα εμφανίζονται εδώ όταν οι πελάτες εγγράφονται στη λίστα αναμονής για εξαντλημένα προϊόντα.\",\"LslKhj\":\"Σφάλμα φόρτωσης αρχείων καταγραφής\",\"VCNHvW\":\"Εκδήλωση Αρχειοθετήθηκε\",\"ZD0XSb\":\"Η εκδήλωση αρχειοθετήθηκε επιτυχώς\",\"WgD6rb\":\"Κατηγορία Εκδήλωσης\",\"b46pt5\":\"Εικόνα Εξωφύλλου Εκδήλωσης\",\"NAUIJ7\":\"Event created\",\"1b77ID\":\"Εκδήλωση Δημιουργήθηκε\",\"1Hzev4\":\"Προσαρμοσμένο πρότυπο εκδήλωσης\",\"+v+GW0\":\"Εμφάνιση ημερομηνίας εκδήλωσης\",\"7u9/DO\":\"Η εκδήλωση διαγράφηκε επιτυχώς\",\"imgKgl\":\"Περιγραφή Εκδήλωσης\",\"IzR/Fc\":\"Event lifetime\",\"PYs3rP\":\"Όνομα εκδήλωσης\",\"HhwcTQ\":\"Όνομα Εκδήλωσης\",\"WZZzB6\":\"Το όνομα εκδήλωσης είναι υποχρεωτικό\",\"Wd5CDM\":\"Το όνομα εκδήλωσης πρέπει να έχει λιγότερους από 150 χαρακτήρες\",\"4JzCvP\":\"Η Εκδήλωση Δεν Είναι Διαθέσιμη\",\"mImacG\":\"Σελίδα Εκδήλωσης\",\"Hk9Ki/\":\"Η εκδήλωση αποκαταστάθηκε επιτυχώς\",\"JyD0LH\":\"Ρυθμίσεις Εκδήλωσης\",\"XVLu2v\":\"Τίτλος Εκδήλωσης\",\"OfmsI9\":\"Εκδήλωση Πολύ Νέα\",\"4SILkp\":\"Event totals\",\"YDVUVl\":\"Τύποι Εκδηλώσεων\",\"+HeiVx\":\"Εκδήλωση Ενημερώθηκε\",\"19j6uh\":\"Απόδοση Εκδηλώσεων\",\"PC3/fk\":\"Εκδηλώσεις που Ξεκινούν τις Επόμενες 24 Ώρες\",\"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\":\"Κάθε πρότυπο email πρέπει να περιλαμβάνει κουμπί κλήσης για δράση που συνδέεται στην κατάλληλη σελίδα\",\"BVinvJ\":\"Παραδείγματα: \\\"Πώς μάθατε για εμάς;\\\", \\\"Επωνυμία εταιρείας για τιμολόγιο\\\"\",\"2hGPQG\":\"Παραδείγματα: \\\"Μέγεθος μπλούζας\\\", \\\"Προτίμηση γεύματος\\\", \\\"Επαγγελματικός τίτλος\\\"\",\"qNuTh3\":\"Εξαίρεση\",\"M1RnFv\":\"Ληγμένο\",\"kF8HQ7\":\"Εξαγωγή Απαντήσεων\",\"2KAI4N\":\"Εξαγωγή CSV\",\"JKfSAv\":\"Η εξαγωγή απέτυχε. Παρακαλώ δοκιμάστε ξανά.\",\"SVOEsu\":\"Η εξαγωγή ξεκίνησε. Προετοιμασία αρχείου...\",\"wuyaZh\":\"Επιτυχής εξαγωγή\",\"9bpUSo\":\"Εξαγωγή Συνεργατών\",\"jtrqH9\":\"Εξαγωγή Συμμετεχόντων\",\"R4Oqr8\":\"Εξαγωγή ολοκληρώθηκε. Λήψη αρχείου...\",\"UlAK8E\":\"Εξαγωγή Παραγγελιών\",\"DwuoH0\":\"Facebook\",\"7Bj3x9\":\"Απέτυχε\",\"8uOlgz\":\"Απέτυχε στο\",\"tKcbYd\":\"Αποτυχημένες Εργασίες\",\"SsI9v/\":\"Αποτυχία εγκατάλειψης παραγγελίας. Παρακαλώ δοκιμάστε ξανά.\",\"LdPKPR\":\"Αποτυχία ανάθεσης ρύθμισης\",\"PO0cfn\":\"Failed to cancel date\",\"YUX+f+\":\"Failed to cancel dates\",\"SIHgVQ\":\"Αποτυχία ακύρωσης μηνύματος\",\"cEFg3R\":\"Αποτυχία δημιουργίας συνεργάτη\",\"dVgNF1\":\"Αποτυχία δημιουργίας ρύθμισης\",\"fAoRRJ\":\"Failed to create schedule\",\"4yLYTb\":\"Η δημιουργία του προγράμματος απέτυχε. Παρακαλώ δοκιμάστε ξανά.\",\"U66oUa\":\"Αποτυχία δημιουργίας προτύπου\",\"aFk48v\":\"Αποτυχία διαγραφής ρύθμισης\",\"n1CYMH\":\"Failed to delete date\",\"KXv+Qn\":\"Failed to delete date. It may have existing orders.\",\"JJ0uRo\":\"Failed to delete dates\",\"rgoBnv\":\"Αποτυχία διαγραφής εκδήλωσης\",\"Zw6LWb\":\"Αποτυχία διαγραφής εργασίας\",\"tq0abZ\":\"Αποτυχία διαγραφής εργασιών\",\"2mkc3c\":\"Αποτυχία διαγραφής διοργανωτή\",\"5E23qd\":\"Failed to delete product. Please try again.\",\"vKMKnu\":\"Αποτυχία διαγραφής ερώτησης\",\"xFj7Yj\":\"Αποτυχία διαγραφής προτύπου\",\"jo3Gm6\":\"Αποτυχία εξαγωγής συνεργατών\",\"Jjw03p\":\"Αποτυχία εξαγωγής συμμετεχόντων\",\"ZPwFnN\":\"Αποτυχία εξαγωγής παραγγελιών\",\"zGE3CH\":\"Αποτυχία εξαγωγής αναφοράς. Παρακαλώ δοκιμάστε ξανά.\",\"lS9/aZ\":\"Αποτυχία φόρτωσης παραληπτών\",\"X4o0MX\":\"Αποτυχία φόρτωσης Webhook\",\"ETcU7q\":\"Αποτυχία προσφοράς θέσης\",\"5670b9\":\"Αποτυχία προσφοράς εισιτηρίων\",\"e5KIbI\":\"Failed to reactivate date\",\"7zyx8a\":\"Αποτυχία αφαίρεσης από λίστα αναμονής\",\"A/P7PX\":\"Failed to remove override\",\"ogWc1z\":\"Failed to reopen date\",\"0+iwE5\":\"Αποτυχία αναδιάταξης ερωτήσεων\",\"EJPAcd\":\"Αποτυχία επαναποστολής επιβεβαίωσης παραγγελίας\",\"DjSbj3\":\"Αποτυχία επαναποστολής εισιτηρίου\",\"YQ3QSS\":\"Αποτυχία επαναποστολής κωδικού επαλήθευσης\",\"wDioLj\":\"Αποτυχία επανάληψης εργασίας\",\"DKYTWG\":\"Αποτυχία επανάληψης εργασιών\",\"WRREqF\":\"Failed to save override\",\"sj/eZA\":\"Failed to save price override\",\"780n8A\":\"Failed to save product settings\",\"zTkTF3\":\"Αποτυχία αποθήκευσης προτύπου\",\"l6acRV\":\"Αποτυχία αποθήκευσης ρυθμίσεων ΦΠΑ. Παρακαλώ δοκιμάστε ξανά.\",\"T6B2gk\":\"Αποτυχία αποστολής μηνύματος. Παρακαλώ δοκιμάστε ξανά.\",\"lKh069\":\"Αποτυχία εκκίνησης εργασίας εξαγωγής\",\"t/KVOk\":\"Αποτυχία εκκίνησης υποκατάστασης. Παρακαλώ δοκιμάστε ξανά.\",\"QXgjH0\":\"Αποτυχία διακοπής υποκατάστασης. Παρακαλώ δοκιμάστε ξανά.\",\"i0QKrm\":\"Αποτυχία ενημέρωσης συνεργάτη\",\"NNc33d\":\"Αποτυχία ενημέρωσης απάντησης.\",\"E9jY+o\":\"Αποτυχία ενημέρωσης συμμετέχοντα\",\"uQynyf\":\"Αποτυχία ενημέρωσης ρύθμισης\",\"i2PFQJ\":\"Αποτυχία ενημέρωσης κατάστασης εκδήλωσης\",\"EhlbcI\":\"Αποτυχία ενημέρωσης βαθμίδας μηνυμάτων\",\"rpGMzC\":\"Αποτυχία ενημέρωσης παραγγελίας\",\"T2aCOV\":\"Αποτυχία ενημέρωσης κατάστασης διοργανωτή\",\"Eeo/Gy\":\"Αποτυχία ενημέρωσης ρύθμισης\",\"kqA9lY\":\"Αποτυχία ενημέρωσης ρυθμίσεων ΦΠΑ\",\"7/9RFs\":\"Αποτυχία μεταφόρτωσης εικόνας.\",\"nkNfWu\":\"Αποτυχία μεταφόρτωσης εικόνας. Παρακαλώ δοκιμάστε ξανά.\",\"rxy0tG\":\"Αποτυχία επαλήθευσης email\",\"QRUpCk\":\"Family\",\"5LO38w\":\"Fast payouts to your bank\",\"4lgLew\":\"February\",\"9bHCo2\":\"Νόμισμα Τέλους\",\"/sV91a\":\"Διαχείριση Τελών\",\"K4dKSP\":\"Fee override saved\",\"LyUWXA\":\"Τέλη Παρακαμφθέντα\",\"cf35MA\":\"Φεστιβάλ\",\"pAey+4\":\"Το αρχείο είναι πολύ μεγάλο. Μέγιστο μέγεθος 5MB.\",\"VejKUM\":\"Συμπληρώστε πρώτα τα στοιχεία σας παραπάνω\",\"/n6q8B\":\"Film\",\"L1qbUx\":\"Filter attendees\",\"8OvVZZ\":\"Φιλτράρισμα Συμμετεχόντων\",\"N/H3++\":\"Filter by date\",\"mvrlBO\":\"Φιλτράρισμα ανά Εκδήλωση\",\"g+xRXP\":\"Finish setting up Stripe\",\"LHH461\":\"Finish setup\",\"syyeb9\":\"First\",\"Vj6wk9\":\"First 30 days\",\"/bpZYb\":\"First 7 days\",\"ziEnjY\":\"First 90 days\",\"1vBhpG\":\"Πρώτος συμμετέχων\",\"4pwejF\":\"Το όνομα είναι υποχρεωτικό\",\"rVogsf\":\"Διορθώστε τα προβλήματα για να δημοσιεύσετε\",\"3lkYdQ\":\"Fixed fee\",\"6bBh3/\":\"Σταθερό Τέλος\",\"zWqUyJ\":\"Σταθερό τέλος που χρεώνεται ανά συναλλαγή\",\"LWL3Bs\":\"Το σταθερό τέλος πρέπει να είναι 0 ή μεγαλύτερο\",\"0RI8m4\":\"Flash off\",\"q0923e\":\"Flash on\",\"X+U6/w\":\"Οικογένεια Γραμματοσειράς\",\"lWxAUo\":\"Φαγητό & Ποτό\",\"nFm+5u\":\"Κείμενο Υποσέλιδου\",\"a8nooQ\":\"Fourth\",\"wtuVU4\":\"Frequency\",\"xVhQZV\":\"Fri\",\"39y5bn\":\"Friday\",\"f5UbZ0\":\"Full data ownership\",\"cfvx/y\":\"Full event\",\"MY2SVM\":\"Πλήρης επιστροφή\",\"PGQLdy\":\"future\",\"8N/j1s\":\"Future dates only\",\"yRx/6K\":\"Future dates will be copied with capacity reset to zero\",\"T02gNN\":\"Γενική Είσοδος\",\"3ep0Gx\":\"Γενικές πληροφορίες για τον διοργανωτή σας\",\"ziAjHi\":\"Δημιουργία\",\"exy8uo\":\"Δημιουργία κωδικού\",\"4CETZY\":\"Οδηγίες\",\"pjkEcB\":\"Get Paid\",\"lGYzP6\":\"Get paid with Stripe\",\"ZDIydz\":\"Ξεκινήστε\",\"u6FPxT\":\"Αγορά Εισιτηρίων\",\"8KDgYV\":\"Ετοιμάστε την εκδήλωσή σας\",\"RkXlPZ\":\"GitHub\",\"sr0UJD\":\"Go Back\",\"oNL5vN\":\"Μετάβαση στη Σελίδα Εκδήλωσης\",\"gHSuV/\":\"Μετάβαση στην αρχική σελίδα\",\"8+Cj55\":\"Go to Schedule\",\"6nDzTl\":\"Καλή αναγνωσιμότητα\",\"76gPWk\":\"Got it\",\"CZXzs4\":\"Ελληνικά\",\"aGWZUr\":\"Μεικτά έσοδα\",\"n8IUs7\":\"Μεικτά Έσοδα\",\"O1wAlQ\":\"Guest\",\"LIYoRQ\":\"Διαχείριση Επισκεπτών\",\"NUsTc4\":\"Happening now\",\"kTSQej\":[\"Γεια σας \",[\"0\"],\", διαχειριστείτε την πλατφόρμα σας από εδώ.\"],\"dORAcs\":\"Εδώ είναι όλα τα εισιτήρια που σχετίζονται με τη διεύθυνση email σας.\",\"g+2103\":\"Εδώ είναι ο σύνδεσμός σας ως συνεργάτης\",\"bVsnqU\":\"Hi,\",\"/iE8xx\":\"Χρέωση Hi.Events\",\"zppscQ\":\"Χρεώσεις πλατφόρμας Hi.Events και ανάλυση ΦΠΑ ανά συναλλαγή\",\"D+zLDD\":\"Κρυφό\",\"DRErHC\":\"Κρυφό από συμμετέχοντες - ορατό μόνο στους διοργανωτές\",\"NNnsM0\":\"Απόκρυψη σύνθετων επιλογών\",\"P+5Pbo\":\"Απόκρυψη Απαντήσεων\",\"VMlRqi\":\"Hide details\",\"FmogyU\":\"Απόκρυψη Επιλογών\",\"uXNYjR\":\"Απόκρυψη ημερομηνιών και ωρών που έχουν εξαντληθεί\",\"g9RcYX\":\"Απόκρυψη ημερομηνίας\",\"uMwTx7\":\"Απόκρυψη αυτής της κατηγορίας;\",\"gtEbeW\":\"Ανάδειξη\",\"NF8sdv\":\"Μήνυμα Ανάδειξης\",\"MXSqmS\":\"Ανάδειξη αυτού του προϊόντος\",\"7ER2sc\":\"Αναδειγμένο\",\"sq7vjE\":\"Τα αναδειγμένα προϊόντα θα έχουν διαφορετικό χρώμα φόντου για να ξεχωρίζουν στη σελίδα εκδήλωσης.\",\"1+WSY1\":\"Hobbies\",\"yY8wAv\":\"Hours\",\"49Tkiw\":\"Πώς εφαρμόζεται η έκπτωση;\",\"sy9anN\":\"Πόσο χρόνο έχει ένας πελάτης να ολοκληρώσει την αγορά του μετά από μια προσφορά. Αφήστε κενό για χωρίς χρονικό όριο.\",\"n2ilNh\":\"How long does the schedule run?\",\"DMr2XN\":\"How often?\",\"cceMns\":\"How VAT is applied to the platform fees we charge you.\",\"FONsLE\":\"https://events.haroldpoi.click\",\"htoh8N\":\"https://ο-τομεας-σας.gr/webhook\",\"mkWad2\":\"Ουγγρικά\",\"8Wgd41\":\"Αναγνωρίζω τις ευθύνες μου ως υπεύθυνος επεξεργασίας δεδομένων\",\"O8m7VA\":\"Συμφωνώ να λαμβάνω ειδοποιήσεις email σχετικά με αυτή την εκδήλωση\",\"YLgdk5\":\"Επιβεβαιώνω ότι πρόκειται για συναλλακτικό μήνυμα σχετικό με αυτή την εκδήλωση\",\"4/kP5a\":\"Εάν δεν άνοιξε αυτόματα νέα καρτέλα, κάντε κλικ στο κουμπί παρακάτω για να συνεχίσετε στην ολοκλήρωση αγοράς.\",\"W/eN+G\":\"Εάν είναι κενό, η διεύθυνση θα χρησιμοποιηθεί για τη δημιουργία συνδέσμου Google Maps\",\"CY3yHL\":\"Εάν επιλεγεί, αυτή η κατηγορία θα είναι κρυφή από το κοινό.\",\"iIEaNB\":\"Εάν έχετε λογαριασμό σε εμάς, θα λάβετε email με οδηγίες για την επαναφορά του κωδικού σας.\",\"an5hVd\":\"Εικόνες\",\"tSVr6t\":\"Υποκατάσταση\",\"TWXU0c\":\"Υποκατάσταση Χρήστη\",\"5LAZwq\":\"Η υποκατάσταση ξεκίνησε\",\"IMwcdR\":\"Η υποκατάσταση σταμάτησε\",\"0I0Hac\":\"Σημαντική Ειδοποίηση\",\"yD3avI\":\"Σημαντικό: Η αλλαγή διεύθυνσης email θα ενημερώσει τον σύνδεσμο πρόσβασης σε αυτή την παραγγελία. Θα ανακατευθυνθείτε στον νέο σύνδεσμο μετά την αποθήκευση.\",\"jT142F\":[\"Σε \",[\"diffHours\"],\" ώρες\"],\"OoSyqO\":[\"Σε \",[\"diffMinutes\"],\" λεπτά\"],\"PdMhEx\":[\"in last \",[\"0\"],\" min\"],\"u7r0G5\":\"In person — set a venue\",\"/LCAwL\":\"Σε εξέλιξη\",\"F1Xp97\":\"Μεμονωμένοι συμμετέχοντες\",\"85e6zs\":\"Εισαγωγή Token Liquid\",\"CTWsuc\":\"Instagram\",\"VopR6B\":\"Instant Stripe payouts\",\"nbfdhU\":\"Ενσωματώσεις\",\"I8eJ6/\":\"Internal notes on the attendee's ticket\",\"B2Tpo0\":\"Μη έγκυρο email\",\"5tT0+u\":\"Μη έγκυρη μορφή email\",\"f9WRpE\":\"Μη έγκυρος τύπος αρχείου. Παρακαλώ μεταφορτώστε εικόνα.\",\"tnL+GP\":\"Μη έγκυρη σύνταξη Liquid. Παρακαλώ διορθώστε και δοκιμάστε ξανά.\",\"N9JsFT\":\"Μη έγκυρη μορφή αριθμού ΦΠΑ\",\"g+lLS9\":\"Πρόσκληση μέλους ομάδας\",\"1z26sk\":\"Πρόσκληση Μέλους Ομάδας\",\"KR0679\":\"Πρόσκληση Μελών Ομάδας\",\"aH6ZIb\":\"Προσκαλέστε την Ομάδα σας\",\"Dn4OyV\":\"Προσκεκλημένος\",\"IuMGvq\":\"Τιμολόγιο\",\"a/bUcL\":\"It happens on more than one date\",\"d+Oe9r\":\"It may have been unpublished or removed. Please check the link and try again.\",\"Lj7sBL\":\"Ιταλικά\",\"F5/CBH\":\"στοιχείο(-α)\",\"BzfzPK\":\"Στοιχεία\",\"rjyWPb\":\"January\",\"KmWyx0\":\"Εργασία\",\"o5r6b2\":\"Η εργασία διαγράφηκε\",\"cd0jIM\":\"Λεπτομέρειες Εργασίας\",\"ruJO57\":\"Όνομα Εργασίας\",\"YZi+Hu\":\"Η εργασία τέθηκε σε ουρά για επανάληψη\",\"nCywLA\":\"Συμμετοχή από οπουδήποτε\",\"SNzppu\":\"Εγγραφή στη Λίστα Αναμονής\",\"dLouFI\":[\"Εγγραφή στη Λίστα Αναμονής για \",[\"productDisplayName\"]],\"2gMuHR\":\"Εντάχθηκε\",\"u4ex5r\":\"July\",\"zeEQd/\":\"June\",\"MxjCqk\":\"Αναζητάτε μόνο τα εισιτήριά σας;\",\"xOTzt5\":\"just now\",\"0RihU9\":\"Just wrapped\",\"lB2hSG\":[\"Ενημερώστε με για νέα και εκδηλώσεις από \",[\"0\"]],\"ioFA9i\":\"Keep the profit.\",\"o66QSP\":\"label updates\",\"RtKKbA\":\"Last\",\"DruLRc\":\"Τελευταίες 14 Ημέρες\",\"ve9JTU\":\"Το επώνυμο είναι υποχρεωτικό\",\"h0Q9Iw\":\"Τελευταία Απάντηση\",\"gw3Ur5\":\"Τελευταία Ενεργοποίηση\",\"FIq1Ba\":\"Later\",\"xvnLMP\":\"Latest check-ins\",\"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\":\"Φωτεινό\",\"1qY5Ue\":\"Ο Σύνδεσμος Έληξε ή Δεν Είναι Έγκυρος\",\"gggTBm\":\"LinkedIn\",\"nvOPBA\":\"Επιτρέπονται Σύνδεσμοι\",\"2BBAbc\":\"List\",\"dF6vP6\":\"Δημοσιευμένο\",\"fpMs2Z\":\"ΔΗΜΟΣΙΕΥΜΕΝΟ\",\"D9zTjx\":\"Δημοσιευμένες Εκδηλώσεις\",\"C33p4q\":\"Loaded dates\",\"WdmJIX\":\"Φόρτωση προεπισκόπησης...\",\"IoDI2o\":\"Φόρτωση tokens...\",\"G3Ge9Z\":\"Φόρτωση αρχείων webhook...\",\"NFxlHW\":\"Φόρτωση Webhooks\",\"E0DoRM\":\"Η τοποθεσία διαγράφηκε\",\"7w8lJU\":\"Η τοποθεσία αποθηκεύτηκε\",\"YsRXDD\":\"Η τοποθεσία ενημερώθηκε\",\"A/kIva\":\"location updates\",\"iyZPPR\":\"τοποθεσίες\",\"VppBoU\":\"Τοποθεσίες\",\"iG7KNr\":\"Λογότυπο\",\"vu7ZGG\":\"Λογότυπο & Εξώφυλλο\",\"gddQe0\":\"Λογότυπο και εικόνα εξωφύλλου για τον διοργανωτή\",\"TBEnp1\":\"Το λογότυπο θα εμφανίζεται στην κεφαλίδα\",\"Jzu30R\":\"Το λογότυπο θα εμφανίζεται στο εισιτήριο\",\"PSRm6/\":\"Αναζήτηση Εισιτηρίων μου\",\"yJFu/X\":\"Κεντρικό γραφείο\",\"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\":\"Διαχείριση λίστας αναμονής εκδήλωσης, προβολή στατιστικών και προσφορά εισιτηρίων σε συμμετέχοντες.\",\"g2npA5\":\"Χειροκίνητη προσφορά\",\"hg6l4j\":\"March\",\"pqRBOz\":\"Mark as validated (admin override)\",\"2L3vle\":\"Μέγ. Μηνύματα / 24ω\",\"Qp4HWD\":\"Μέγ. Παραλήπτες / Μήνυμα\",\"3JzsDb\":\"May\",\"agPptk\":\"Μεσαίο\",\"xDAtGP\":\"Μήνυμα\",\"bECJqy\":\"Το μήνυμα εγκρίθηκε επιτυχώς\",\"1jRD0v\":\"Αποστολή μηνύματος σε συμμετέχοντες με συγκεκριμένα εισιτήρια\",\"uQLXbS\":\"Το μήνυμα ακυρώθηκε\",\"48rf3i\":\"Το μήνυμα δεν μπορεί να υπερβαίνει τους 5000 χαρακτήρες\",\"ZPj0Q8\":\"Λεπτομέρειες Μηνύματος\",\"Vjat/X\":\"Το μήνυμα είναι υποχρεωτικό\",\"0/yJtP\":\"Αποστολή μηνύματος σε κατόχους παραγγελιών με συγκεκριμένα προϊόντα\",\"saG4At\":\"Μήνυμα Προγραμματίστηκε\",\"mFdA+i\":\"Βαθμίδα Μηνυμάτων\",\"v7xKtM\":\"Η βαθμίδα μηνυμάτων ενημερώθηκε επιτυχώς\",\"H9HlDe\":\"λεπτά\",\"agRWc1\":\"Minutes\",\"zz/Wd/\":\"Mode\",\"fpMgHS\":\"Mon\",\"hty0d5\":\"Monday\",\"JbIgPz\":\"Τα χρηματικά ποσά είναι κατά προσέγγιση σύνολα σε όλα τα νομίσματα\",\"qvF+MT\":\"Παρακολούθηση και διαχείριση αποτυχημένων εργασιών παρασκηνίου\",\"kY2ll9\":\"month\",\"HajiZl\":\"Μήνας\",\"+8Nek/\":\"Monthly\",\"1LkxnU\":\"Monthly Pattern\",\"6jefe3\":\"months\",\"f8jrkd\":\"more\",\"JcD7qf\":\"More actions\",\"w36OkR\":\"Εκδηλώσεις με Περισσότερες Προβολές (Τελευταίες 14 Ημέρες)\",\"+Y/na7\":\"Move all dates earlier or later\",\"3DIpY0\":\"Multiple locations\",\"g9cQCP\":\"Multiple ticket types\",\"GfaxEk\":\"Μουσική\",\"oVGCGh\":\"Τα Εισιτήριά μου\",\"8/brI5\":\"Το όνομα είναι υποχρεωτικό\",\"sFFArG\":\"Το όνομα πρέπει να έχει λιγότερους από 255 χαρακτήρες\",\"xxU3NX\":\"Καθαρά Έσοδα\",\"7I8LlL\":\"New capacity\",\"n1GRql\":\"New label\",\"y0Fcpd\":\"Νέα τοποθεσία\",\"ArHT/C\":\"Νέες Εγγραφές\",\"uK7xWf\":\"New time:\",\"veT5Br\":\"Next occurrence\",\"WXtl5X\":[\"Next: \",[\"nextFormatted\"]],\"eWRECP\":\"Νυχτερινή Ζωή\",\"HSw5l3\":\"Όχι - Είμαι ιδιώτης ή επιχείρηση μη εγγεγραμμένη για ΦΠΑ\",\"VHfLAW\":\"Δεν υπάρχουν λογαριασμοί\",\"+jIeoh\":\"Δεν βρέθηκαν λογαριασμοί\",\"074+X8\":\"Δεν υπάρχουν Ενεργά Webhooks\",\"zxnup4\":\"Δεν υπάρχουν Συνεργάτες για εμφάνιση\",\"Dwf4dR\":\"Δεν υπάρχουν ακόμα ερωτήσεις συμμετέχοντα\",\"th7rdT\":\"No attendees to show\",\"PKySlW\":\"No attendees yet for this date.\",\"/UC6qk\":\"Δεν βρέθηκαν δεδομένα απόδοσης\",\"E2vYsO\":\"No capabilities reported by Stripe yet.\",\"amMkpL\":\"Χωρίς χωρητικότητα\",\"d2Jf1f\":\"No change\",\"99ntUF\":\"Δεν υπάρχουν διαθέσιμες λίστες check-in για αυτή την εκδήλωση.\",\"wG+knX\":\"No check-ins yet\",\"+dAKxg\":\"Δεν βρέθηκαν ρυθμίσεις\",\"LiLk8u\":\"No connections available\",\"eb47T5\":\"Δεν βρέθηκαν δεδομένα για τα επιλεγμένα φίλτρα. Δοκιμάστε να αλλάξετε το εύρος ημερομηνιών ή το νόμισμα.\",\"Zc216S\":\"No date added\",\"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\",\"OtJSnL\":\"Δεν έχουν προγραμματιστεί ημερομηνίες\",\"gEdNe8\":\"No dates scheduled yet\",\"pZNOT9\":\"Χωρίς ημερομηνία λήξης\",\"dW40Uz\":\"Δεν βρέθηκαν εκδηλώσεις\",\"8pQ3NJ\":\"Δεν υπάρχουν εκδηλώσεις που ξεκινούν τις επόμενες 24 ώρες\",\"8zCZQf\":\"Δεν υπάρχουν εκδηλώσεις ακόμα\",\"Yc5YW6\":\"Δεν υπάρχουν αποτυχημένες εργασίες\",\"EpvBAp\":\"Χωρίς τιμολόγιο\",\"XZkeaI\":\"Δεν βρέθηκαν αρχεία καταγραφής\",\"IcAC6J\":\"Δεν βρέθηκαν αντίστοιχες γραμματοσειρές\",\"nrSs2u\":\"Δεν βρέθηκαν μηνύματα\",\"Rj99yx\":\"No occurrences available\",\"IFU1IG\":\"No occurrences on this date\",\"OVFwlg\":\"Δεν υπάρχουν ερωτήσεις παραγγελίας ακόμα\",\"EJ7bVz\":\"Δεν βρέθηκαν παραγγελίες\",\"NEmyqy\":\"Δεν υπάρχουν παραγγελίες ακόμα\",\"a77B6w\":\"No orders yet for this date.\",\"wUv5xQ\":\"Δεν υπάρχει δραστηριότητα διοργανωτή τις τελευταίες 14 ημέρες\",\"vLd1tV\":\"No organizer context available.\",\"B7w4KY\":\"Δεν υπάρχουν άλλοι διαθέσιμοι διοργανωτές\",\"PChXMe\":\"Δεν υπάρχουν Πληρωμένες Παραγγελίες\",\"6jYQGG\":\"Δεν υπάρχουν παλαιότερες εκδηλώσεις\",\"CHzaTD\":\"Δεν υπάρχουν δημοφιλείς εκδηλώσεις τις τελευταίες 14 ημέρες\",\"zK/+ef\":\"Δεν υπάρχουν διαθέσιμα προϊόντα για επιλογή\",\"M1/lXs\":\"No products configured for this event.\",\"kY7XDn\":\"Δεν υπάρχουν προϊόντα με εγγραφές αναμονής\",\"8mw4tm\":\"Μήνυμα απουσίας προϊόντων\",\"wYiAtV\":\"Δεν υπάρχουν πρόσφατες εγγραφές λογαριασμού\",\"UW90md\":\"Δεν βρέθηκαν παραλήπτες\",\"QoAi8D\":\"Χωρίς απάντηση\",\"JeO7SI\":\"Χωρίς Απάντηση\",\"EK/G11\":\"Δεν υπάρχουν απαντήσεις ακόμα\",\"59OWd3\":\"Καμία αποθηκευμένη τοποθεσία\",\"mPdY6W\":\"Καμία πρόταση\",\"3sRuiW\":\"Δεν Βρέθηκαν Εισιτήρια\",\"debCrL\":\"Δεν υπάρχουν εισιτήρια προς πώληση\",\"k2C0ZR\":\"No upcoming dates\",\"yM5c0q\":\"Δεν υπάρχουν επερχόμενες εκδηλώσεις\",\"qpC74J\":\"Δεν βρέθηκαν χρήστες\",\"8wgkoi\":\"Δεν υπάρχουν εκδηλώσεις που προβλήθηκαν τις τελευταίες 14 ημέρες\",\"Arzxc1\":\"Δεν υπάρχουν εγγραφές λίστας αναμονής\",\"n5vdm2\":\"Δεν έχουν καταγραφεί ακόμα γεγονότα webhook για αυτό το endpoint. Θα εμφανίζονται εδώ μόλις ενεργοποιηθούν.\",\"4GhX3c\":\"Δεν υπάρχουν Webhooks\",\"4+am6b\":\"Όχι, μείνετε εδώ\",\"4JVMUi\":\"non-edited\",\"Itw24Q\":\"Not checked in\",\"x5+Lcz\":\"Δεν Εισήλθε\",\"8n10sz\":\"Μη Επιλέξιμο\",\"kLvU3F\":\"Notify attendees and stop sales\",\"t9QlBd\":\"November\",\"kAREMN\":\"Number of dates to create\",\"6u1B3O\":\"Occurrence\",\"mmoE62\":\"Occurrence Cancelled\",\"V9flmL\":\"Occurrence Schedule\",\"Kh3WO8\":\"Occurrence Summary\",\"byXCTu\":\"Occurrences\",\"KATw3p\":\"Occurrences (future only)\",\"85rTR2\":\"Occurrences can be configured after creation\",\"dzQfDY\":\"October\",\"BwJKBw\":\"από\",\"9h7RDh\":\"Προσφορά\",\"EfK2O6\":\"Προσφορά Θέσης\",\"3sVRey\":\"Προσφορά Εισιτηρίων\",\"2O7Ybb\":\"Χρονικό Όριο Προσφοράς\",\"1jUg5D\":\"Προσφέρθηκε\",\"l+/HS6\":[\"Οι προσφορές λήγουν μετά από \",[\"timeoutHours\"],\" ώρες.\"],\"6Aih4U\":\"Εκτός Σύνδεσης\",\"nO3VbP\":[\"Σε πώληση \",[\"0\"]],\"oXOSPE\":\"Διαδικτυακό\",\"aqmy5k\":\"Online — provide connection details\",\"LuZBbx\":\"Online & in-person\",\"IXuOqt\":\"Online & in-person — see schedule\",\"WjSpu5\":\"Διαδικτυακή Εκδήλωση\",\"scPxI/\":[\"Μόνο \",[\"capacity\"],\" απομένουν\"],\"NdOxqr\":\"Μόνο διαχειριστές λογαριασμού μπορούν να διαγράφουν ή να αρχειοθετούν εκδηλώσεις. Επικοινωνήστε με τον διαχειριστή σας για βοήθεια.\",\"rnoDMF\":\"Μόνο διαχειριστές λογαριασμού μπορούν να διαγράφουν ή να αρχειοθετούν διοργανωτές. Επικοινωνήστε με τον διαχειριστή σας για βοήθεια.\",\"bU7oUm\":\"Αποστολή μόνο σε παραγγελίες με αυτές τις καταστάσεις\",\"wkpaqp\":\"Εμφάνιση μόνο ημερομηνίας και ώρας έναρξης\",\"DMk8F0\":\"Only tickets count toward capacity\",\"M2w1ni\":\"Ορατό μόνο με κωδικό προσφοράς\",\"y8Bm7C\":\"Open check-in\",\"RLz7P+\":\"Open occurrence\",\"cDSdPb\":\"Προαιρετικό όνομα που εμφανίζεται στους επιλογείς, π.χ. \\\"Αίθουσα συνεδριάσεων\\\"\",\"HXMJxH\":\"Προαιρετικό κείμενο για αποποιήσεις, στοιχεία επικοινωνίας ή σημειώσεις ευχαριστίας (μόνο μία γραμμή)\",\"L565X2\":\"επιλογές\",\"8m9emP\":\"or add a single date\",\"eBskDE\":\"Ή ενεργοποιήστε τις πληρωμές εκτός σύνδεσης και απενεργοποιήστε το Stripe\",\"dSeVIm\":\"order\",\"c/TIyD\":\"Παραγγελία & Εισιτήριο\",\"H5qWhm\":\"Παραγγελία ακυρώθηκε\",\"b6+Y+n\":\"Παραγγελία ολοκληρώθηκε\",\"x4MLWE\":\"Επιβεβαίωση Παραγγελίας\",\"CsTTH0\":\"Η επιβεβαίωση παραγγελίας εστάλη ξανά επιτυχώς\",\"ppuQR4\":\"Παραγγελία Δημιουργήθηκε\",\"xtQzag\":\"Order details\",\"vrSW9M\":\"Η παραγγελία ακυρώθηκε και επιστράφηκε. Ο κάτοχος παραγγελίας ειδοποιήθηκε.\",\"rzw+wS\":\"Κάτοχοι Παραγγελίας\",\"oI/hGR\":\"ID Παραγγελίας\",\"RQCXz6\":\"Όρια Παραγγελίας\",\"SO9AEF\":\"Τα όρια παραγγελίας ορίστηκαν\",\"vu6Arl\":\"Παραγγελία Επισημάνθηκε ως Πληρωμένη\",\"sLbJQz\":\"Η παραγγελία δεν βρέθηκε\",\"kvYpYu\":\"Παραγγελία Δεν Βρέθηκε\",\"eJ8SvM\":\"Order number, purchase date, purchaser email\",\"FaPYw+\":\"Κάτοχος παραγγελίας\",\"eB5vce\":\"Κάτοχοι παραγγελίας με συγκεκριμένο προϊόν\",\"CxLoxM\":\"Κάτοχοι παραγγελίας με προϊόντα\",\"UkHo4c\":\"Αναφ. Παραγγελίας\",\"EZy55F\":\"Παραγγελία Επιστράφηκε\",\"6eSHqs\":\"Καταστάσεις παραγγελίας\",\"oW5877\":\"Σύνολο Παραγγελίας\",\"e7eZuA\":\"Παραγγελία Ενημερώθηκε\",\"1SQRYo\":\"Η παραγγελία ενημερώθηκε επιτυχώς\",\"3NT0Ck\":\"Η παραγγελία ακυρώθηκε\",\"V5khLm\":\"orders\",\"sd5IMt\":\"Παραγγελίες Ολοκληρώθηκαν\",\"5It1cQ\":\"Παραγγελίες Εξήχθησαν\",\"UQ0ACV\":\"Σύνολο Παραγγελιών\",\"B/EBQv\":\"Παραγγελίες:\",\"qtGTNu\":\"Οργανικοί Λογαριασμοί\",\"P/JHA4\":\"Ο διοργανωτής αρχειοθετήθηκε επιτυχώς\",\"S3CZ5M\":\"Πίνακας Διοργανωτή\",\"GzjTd0\":\"Ο διοργανωτής διαγράφηκε επιτυχώς\",\"SQqJd8\":\"Διοργανωτής Δεν Βρέθηκε\",\"HF8Bxa\":\"Ο διοργανωτής αποκαταστάθηκε επιτυχώς\",\"wpj63n\":\"Ρυθμίσεις Διοργανωτή\",\"o1my93\":\"Η ενημέρωση κατάστασης διοργανωτή απέτυχε. Δοκιμάστε ξανά αργότερα\",\"rLHma1\":\"Η κατάσταση διοργανωτή ενημερώθηκε\",\"LqBITi\":\"Θα χρησιμοποιηθεί το πρότυπο διοργανωτή/προεπιλογής\",\"q4zH+l\":\"Organizers\",\"/IX/7x\":\"Άλλο\",\"RsiDDQ\":\"Άλλες Λίστες (Εισιτήριο Μη Συμπεριλαμβανόμενο)\",\"aDfajK\":\"Outdoors\",\"qMASRF\":\"Εξερχόμενα Μηνύματα\",\"iCOVQO\":\"Override\",\"GpFTEc\":\"Override fees on this organizer\",\"M9ZhMP\":\"Override price\",\"cnVIpl\":\"Override removed\",\"6/dCYd\":\"Επισκόπηση\",\"6WdDG7\":\"Σελίδα\",\"8uqsE5\":\"Η σελίδα δεν είναι πλέον διαθέσιμη\",\"QkLf4H\":\"URL Σελίδας\",\"sF+Xp9\":\"Προβολές Σελίδας\",\"v4nCHK\":\"Paid\",\"c+suC6\":\"Πληρωμένοι Λογαριασμοί\",\"5F7SYw\":\"Μερική επιστροφή\",\"fFYotW\":[\"Μερική επιστροφή: \",[\"0\"]],\"i8day5\":\"Μεταβίβαση τέλους στον αγοραστή\",\"k4FLBQ\":\"Μεταβίβαση στον Αγοραστή\",\"Ff0Dor\":\"Προηγούμενες\",\"BFjW8X\":\"Past due\",\"xTPjSy\":\"Παλαιότερες Εκδηλώσεις\",\"/l/ckQ\":\"Επικόλληση URL\",\"URAE3q\":\"Σε Παύση\",\"4fL/V7\":\"Πληρωμή\",\"c2/9VE\":\"Ωφέλιμο Φορτίο\",\"5cxUwd\":\"Ημερομηνία Πληρωμής\",\"ENEPLY\":\"Μέθοδος πληρωμής\",\"8Lx2X7\":\"Πληρωμή ελήφθη\",\"fx8BTd\":\"Οι πληρωμές δεν είναι διαθέσιμες\",\"C+ylwF\":\"Payouts\",\"UbRKMZ\":\"Pending\",\"UkM20g\":\"Σε Αναμονή Ελέγχου\",\"dPYu1F\":\"Ανά Συμμετέχοντα\",\"mQV/nJ\":\"per min\",\"+kvxv+\":\"ανά παραγγελία\",\"VlXNyK\":\"Ανά παραγγελία\",\"NhuGd7\":\"ανά προϊόν\",\"hauDFf\":\"Ανά εισιτήριο\",\"mnF83a\":\"Τέλος Ποσοστού\",\"TNLuRD\":\"Percentage fee (%)\",\"MixU2P\":\"Το ποσοστό πρέπει να είναι μεταξύ 0 και 100\",\"MkuVAZ\":\"Ποσοστό ποσού συναλλαγής\",\"/Bh+7r\":\"Απόδοση\",\"fIp56F\":\"Οριστική διαγραφή αυτής της εκδήλωσης και όλων των σχετικών δεδομένων.\",\"nJeeX7\":\"Οριστική διαγραφή αυτού του διοργανωτή και όλων των εκδηλώσεων του.\",\"wfCTgK\":\"Permanently remove this date\",\"6kPk3+\":\"Προσωπικές Πληροφορίες\",\"zmwvG2\":\"Τηλέφωνο\",\"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\":\"Σχεδιάζετε εκδήλωση;\",\"J3lhKT\":\"Τέλος πλατφόρμας\",\"RD51+P\":[\"Τέλος πλατφόρμας \",[\"0\"],\" αφαιρείται από την πληρωμή σας\"],\"br3Y/y\":\"Τέλη Πλατφόρμας\",\"3buiaw\":\"Αναφορά Τελών Πλατφόρμας\",\"kv9dM4\":\"Έσοδα Πλατφόρμας\",\"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\":\"Παρακαλώ εισάγετε έγκυρη διεύθυνση email\",\"jEw0Mr\":\"Παρακαλώ εισάγετε έγκυρο URL\",\"n8+Ng/\":\"Παρακαλώ εισάγετε τον 5ψήφιο κωδικό\",\"r+lQXT\":\"Παρακαλώ εισάγετε τον αριθμό ΦΠΑ σας\",\"Dvq0wf\":\"Παρακαλώ παρέχετε εικόνα.\",\"2cUopP\":\"Παρακαλώ επανεκκινήστε τη διαδικασία αγοράς.\",\"GoXxOA\":\"Please select a date and time\",\"8KmsFa\":\"Παρακαλώ επιλέξτε εύρος ημερομηνιών\",\"EFq6EG\":\"Παρακαλώ επιλέξτε εικόνα.\",\"fuwKpE\":\"Παρακαλώ δοκιμάστε ξανά.\",\"klWBeI\":\"Παρακαλώ περιμένετε πριν ζητήσετε άλλον κωδικό\",\"hfHhaa\":\"Παρακαλώ περιμένετε ενώ προετοιμάζουμε τους συνεργάτες σας για εξαγωγή...\",\"o+tJN/\":\"Παρακαλώ περιμένετε ενώ προετοιμάζουμε τους συμμετέχοντες σας για εξαγωγή...\",\"+5Mlle\":\"Παρακαλώ περιμένετε ενώ προετοιμάζουμε τις παραγγελίες σας για εξαγωγή...\",\"trnWaw\":\"Πολωνικά\",\"luHAJY\":\"Δημοφιλείς Εκδηλώσεις (Τελευταίες 14 Ημέρες)\",\"p/78dY\":\"Position\",\"OESu7I\":\"Αποτροπή υπερπώλησης με κοινό απόθεμα σε πολλαπλούς τύπους εισιτηρίων.\",\"NgVUL2\":\"Προεπισκόπηση φόρμας checkout\",\"cs5muu\":\"Προεπισκόπηση σελίδας εκδήλωσης\",\"Jm2AC3\":\"Price Tier\",\"a5jvSX\":\"Βαθμίδες Τιμής\",\"ReihZ7\":\"Προεπισκόπηση Εκτύπωσης\",\"JnuPvH\":\"Εκτύπωση Εισιτηρίου\",\"tYF4Zq\":\"Εκτύπωση σε PDF\",\"LcET2C\":\"Πολιτική Απορρήτου\",\"8z6Y5D\":\"Επεξεργασία Επιστροφής\",\"JcejNJ\":\"Επεξεργασία παραγγελίας\",\"EWCLpZ\":\"Προϊόν Δημιουργήθηκε\",\"XkFYVB\":\"Προϊόν Διαγράφηκε\",\"YMwcbR\":\"Πωλήσεις προϊόντων, έσοδα και ανάλυση φόρων\",\"ls0mTC\":\"Product settings cannot be edited for cancelled dates.\",\"2339ej\":\"Product settings saved successfully\",\"ldVIlB\":\"Προϊόν Ενημερώθηκε\",\"CP3D8G\":\"Progress\",\"JoKGiJ\":\"Κωδικός προσφοράς\",\"k3wH7i\":\"Χρήση κωδικού προσφοράς και ανάλυση εκπτώσεων\",\"tZqL0q\":\"promo codes\",\"oCHiz3\":\"Promo codes\",\"uEhdRh\":\"Μόνο με Κωδικό\",\"dLm8V5\":\"Τα προωθητικά email ενδέχεται να οδηγήσουν σε αναστολή λογαριασμού\",\"W0ETyY\":\"Συμπληρώστε τουλάχιστον ένα πεδίο διεύθυνσης (χώρος, οδός, πόλη ή χώρα).\",\"2W/7Gz\":\"Provide the following before Stripe's next review to keep payouts flowing.\",\"EEYbdt\":\"Δημοσίευση\",\"JcgJKc\":\"Δημοσίευση ούτως ή άλλως\",\"evDBV8\":\"Δημοσίευση εκδήλωσης\",\"2zEfOd\":\"Publish your event\",\"L7nrC8\":\"Με τη δημοσίευση, η σελίδα της εκδήλωσής σας γίνεται δημόσια και ανοίγουν οι εγγραφές.\",\"dsFmM+\":\"Αγοράστηκε\",\"JunetL\":\"Purchaser\",\"phmeUH\":\"Purchaser email\",\"ywR4ZL\":\"QR code check-in\",\"oWXNE5\":\"Ποσ.\",\"biEyJ4\":\"Question answers\",\"k/bJj0\":\"Οι ερωτήσεις αναδιατάχθηκαν\",\"b24kPi\":\"Ουρά\",\"lTPqpM\":\"Quick Tip\",\"fqDzSu\":\"Ρυθμός\",\"mnUGVC\":\"Υπερβάθηκε το όριο αιτημάτων. Δοκιμάστε ξανά αργότερα.\",\"t41hVI\":\"Νέα Προσφορά Θέσης\",\"TNclgc\":\"Reactivate this date? It will be reopened for future sales.\",\"RENQ6j\":\"Έτοιμοι να δημοσιεύσετε;\",\"uqoRbb\":\"Real-time analytics\",\"xzRvs4\":[\"Λήψη ενημερώσεων προϊόντων από \",[\"0\"],\".\"],\"pLXbi8\":\"Πρόσφατες Εγγραφές Λογαριασμού\",\"M1HGuR\":\"Recent activity\",\"3kJ0gv\":\"Recent Attendees\",\"qhfiwV\":\"Recent check-ins\",\"S+0XMX\":\"Recent orders\",\"Fi3b48\":\"Πρόσφατες Παραγγελίες\",\"7hPBBn\":\"παραλήπτης\",\"jp5bq8\":\"παραλήπτες\",\"yPrbsy\":\"Παραλήπτες\",\"E1F5Ji\":\"Οι παραλήπτες είναι διαθέσιμοι αφού αποσταλεί το μήνυμα\",\"WEYdDv\":\"Recommended\",\"wuhHPE\":\"Recurring\",\"asLqwt\":\"Επαναλαμβανόμενη εκδήλωση\",\"s3uzsK\":\"Ρυθμίσεις επαναλαμβανόμενης εκδήλωσης\",\"D0tAMe\":\"Recurring events\",\"JjMIKU\":\"Reddit\",\"HiGkFu\":\"Ανακατεύθυνση στο Stripe...\",\"pnoTN5\":\"Λογαριασμοί Παραπομπής\",\"ACKu03\":\"Ανανέωση Προεπισκόπησης\",\"vuFYA6\":\"Refund all orders for these dates\",\"4cRUK3\":\"Refund all orders for this date\",\"fKn/k6\":\"Ποσό επιστροφής\",\"qY4rpA\":\"Η επιστροφή απέτυχε\",\"FaK/8G\":[\"Επιστροφή Παραγγελίας \",[\"0\"]],\"MGbi9P\":\"Επιστροφή σε εκκρεμότητα\",\"BDSRuX\":[\"Επιστράφηκε: \",[\"0\"]],\"bU4bS1\":\"Επιστροφές\",\"rYXfOA\":\"Περιφερειακές Ρυθμίσεις\",\"5tl0Bp\":\"Ερωτήσεις Εγγραφής\",\"ZNo5k1\":\"Remaining\",\"Bjh87R\":\"Remove label from all dates\",\"IVZaEo\":\"Αφαιρεί εντελώς τις εξαντλημένες ημερομηνίες και ώρες από τη σελίδα της εκδήλωσης. Όταν είναι απενεργοποιημένο, παραμένουν ορατές και επισημαίνονται ως εξαντλημένες.\",\"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\":\"Η αναφορά δεν βρέθηκε\",\"JEPMXN\":\"Αίτημα νέου συνδέσμου\",\"TMLAx2\":\"Υποχρεωτικό\",\"mdeIOH\":\"Επαναποστολή κωδικού\",\"sQxe68\":\"Επαναποστολή Επιβεβαίωσης\",\"bxoWpz\":\"Επαναποστολή Email Επιβεβαίωσης\",\"G42SNI\":\"Επαναποστολή email\",\"TTpXL3\":[\"Επαναποστολή σε \",[\"resendCooldown\"],\"δ\"],\"5CiNPm\":\"Επαναποστολή Εισιτηρίου\",\"Uwsg2F\":\"Δεσμευμένο\",\"8wUjGl\":\"Δεσμευμένο μέχρι\",\"a5z8mb\":\"Reset to base price\",\"kCn6wb\":\"Επαναφορά...\",\"ZlCDf+\":\"Απάντηση\",\"bsydMp\":\"Λεπτομέρειες Απάντησης\",\"yKu/3Y\":\"Επαναφορά\",\"RokrZf\":\"Επαναφορά Εκδήλωσης\",\"/JyMGh\":\"Επαναφορά Διοργανωτή\",\"HFvFRb\":\"Επαναφορά αυτής της εκδήλωσης για να γίνει ξανά ορατή.\",\"DDIcqy\":\"Επαναφορά αυτού του διοργανωτή για να γίνει ξανά ενεργός.\",\"mO8KLE\":\"results\",\"6gRgw8\":\"Επανάληψη\",\"1BG8ga\":\"Επανάληψη Όλων\",\"rDC+T6\":\"Επανάληψη Εργασίας\",\"CbnrWb\":\"Επιστροφή στην Εκδήλωση\",\"Lf7TCn\":\"Οι επαναχρησιμοποιήσιμοι χώροι εμφανίζονται εδώ αυτόματα όταν δημιουργείτε εκδηλώσεις με διευθύνσεις, και μπορείτε να προσθέσετε και δικούς σας.\",\"mdQ0zb\":\"Επαναχρησιμοποιήσιμοι χώροι για τις εκδηλώσεις σας. Οι τοποθεσίες που δημιουργούνται από την αυτόματη συμπλήρωση αποθηκεύονται εδώ αυτόματα.\",\"XFOPle\":\"Reuse\",\"1Zehp4\":\"Reuse a Stripe connection from another organizer in this account.\",\"Oo/PLb\":\"Σύνοψη Εσόδων\",\"CfuueU\":\"Ανάκληση Προσφοράς\",\"RIgKv+\":\"Run until a specific date\",\"dFFW9L\":[\"Η πώληση έληξε \",[\"0\"]],\"loCKGB\":[\"Η πώληση λήγει \",[\"0\"]],\"wlfBad\":\"Περίοδος Πώλησης\",\"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\":\"Η περίοδος πώλησης ορίστηκε\",\"ftzaMf\":\"Περίοδος πώλησης, όρια παραγγελίας, ορατότητα\",\"zpekWp\":[\"Η πώληση ξεκινά \",[\"0\"]],\"mUv9U4\":\"Πωλήσεις\",\"9KnRdL\":\"Οι πωλήσεις είναι σε παύση\",\"JC3J0k\":\"Sales, attendance, and check-in breakdown per occurrence\",\"3VnlS9\":\"Πωλήσεις, παραγγελίες και μετρήσεις απόδοσης για όλες τις εκδηλώσεις\",\"3Q1AWe\":\"Πωλήσεις:\",\"LeuERW\":\"Same as event\",\"B4nE3N\":\"Δείγμα τιμής εισιτηρίου\",\"8BRPoH\":\"Δείγμα Χώρου\",\"PiK6Ld\":\"Sat\",\"+5kO8P\":\"Saturday\",\"zJiuDn\":\"Save fee override\",\"NB8Uxt\":\"Save Schedule\",\"KZrfYJ\":\"Αποθήκευση Κοινωνικών Συνδέσμων\",\"9Y3hAT\":\"Αποθήκευση Προτύπου\",\"C8ne4X\":\"Αποθήκευση Σχεδιασμού Εισιτηρίου\",\"cTI8IK\":\"Save VAT settings\",\"6/TNCd\":\"Αποθήκευση Ρυθμίσεων ΦΠΑ\",\"4RvD9q\":\"Αποθηκευμένη τοποθεσία\",\"cgw0cL\":\"Αποθηκευμένες τοποθεσίες\",\"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\":\"Προγραμματισμένο\",\"qcP/8K\":\"Προγραμματισμένη ώρα\",\"A1taO8\":\"Search\",\"ftNXma\":\"Αναζήτηση συνεργατών...\",\"VMU+zM\":\"Search attendees\",\"VY+Bdn\":\"Αναζήτηση ανά όνομα λογαριασμού ή email...\",\"VX+B3I\":\"Αναζήτηση ανά τίτλο εκδήλωσης ή διοργανωτή...\",\"R0wEyA\":\"Αναζήτηση ανά όνομα εργασίας ή εξαίρεση...\",\"YnMfsK\":\"Αναζήτηση με όνομα ή διεύθυνση...\",\"VT+urE\":\"Αναζήτηση ανά όνομα ή email...\",\"GHdjuo\":\"Αναζήτηση ανά όνομα, email ή λογαριασμό...\",\"4mBFO7\":\"Search by name, order #, ticket # or email\",\"20ce0U\":\"Αναζήτηση ανά ID παραγγελίας, όνομα πελάτη ή email...\",\"4DSz7Z\":\"Αναζήτηση ανά θέμα, εκδήλωση ή λογαριασμό...\",\"nQC7Z9\":\"Search dates...\",\"iRtEpV\":\"Search dates…\",\"JRM7ao\":\"Search for an address\",\"BWF1kC\":\"Αναζήτηση μηνυμάτων...\",\"5WYZKZ\":\"Αποτελέσματα αναζήτησης\",\"IG85fV\":\"Αναζητήστε αποθηκευμένες τοποθεσίες ή βρείτε μια διεύθυνση...\",\"3aD3GF\":\"Seasonal\",\"ku//5b\":\"Second\",\"Mck5ht\":\"Ασφαλής Ολοκλήρωση Αγοράς\",\"s7tXqF\":\"See schedule\",\"JFap6u\":\"See what Stripe still needs\",\"p7xUrt\":\"Επιλογή κατηγορίας\",\"hTKQwS\":\"Select a Date & Time\",\"Ps6Xtf\":\"Select a date to see available times\",\"e4L7bF\":\"Επιλέξτε μήνυμα για προβολή περιεχομένου\",\"zPRPMf\":\"Επιλογή βαθμίδας\",\"BFRSTT\":\"Επιλογή Λογαριασμού\",\"wgNoIs\":\"Select all\",\"mCB6Je\":\"Επιλογή Όλων\",\"aCEysm\":[\"Select all on \",[\"0\"]],\"a6+167\":\"Επιλογή εκδήλωσης\",\"CFbaPk\":\"Επιλογή ομάδας συμμετεχόντων\",\"88a49s\":\"Select camera\",\"tVW/yo\":\"Επιλογή νομίσματος\",\"SJQM1I\":\"Select date\",\"n9ZhRa\":\"Επιλογή ημερομηνίας και ώρας λήξης\",\"gTN6Ws\":\"Επιλογή ώρας λήξης\",\"0U6E9W\":\"Επιλογή κατηγορίας εκδήλωσης\",\"j9cPeF\":\"Επιλογή τύπων εκδήλωσης\",\"ypTjHL\":\"Select occurrence\",\"KizCK7\":\"Επιλογή ημερομηνίας και ώρας έναρξης\",\"dJZTv2\":\"Επιλογή ώρας έναρξης\",\"x8XMsJ\":\"Επιλέξτε τη βαθμίδα μηνυμάτων για αυτό τον λογαριασμό. Ελέγχει τα όρια μηνυμάτων και τα δικαιώματα συνδέσμων.\",\"aT3jZX\":\"Επιλογή ζώνης ώρας\",\"TxfvH2\":\"Επιλέξτε ποιοι συμμετέχοντες πρέπει να λάβουν αυτό το μήνυμα\",\"Ropvj0\":\"Επιλέξτε ποια γεγονότα θα ενεργοποιήσουν αυτό το webhook\",\"+6YAwo\":\"selected\",\"ylXj1N\":\"Επιλεγμένο\",\"uq3CXQ\":\"Sell out your event.\",\"oBXbO4\":\"Selling a physical product? Cap its quantity on the <0>products page instead.\",\"j9b/iy\":\"Πωλείται γρήγορα 🔥\",\"73qYgo\":\"Αποστολή ως δοκιμαστικό\",\"HMAqFK\":\"Αποστολή email σε συμμετέχοντες, κατόχους εισιτηρίων ή κατόχους παραγγελιών. Τα μηνύματα μπορούν να αποσταλούν αμέσως ή να προγραμματιστούν.\",\"22Itl6\":\"Αποστολή αντιγράφου σε εμένα\",\"NpEm3p\":\"Αποστολή τώρα\",\"nOBvex\":\"Αποστολή δεδομένων παραγγελίας και συμμετεχόντων σε πραγματικό χρόνο στα εξωτερικά συστήματα.\",\"1lNPhX\":\"Αποστολή email ειδοποίησης επιστροφής\",\"eaUTwS\":\"Αποστολή συνδέσμου επαναφοράς\",\"5cV4PY\":\"Send to all occurrences, or choose a specific one\",\"QEQlnV\":\"Στείλτε το πρώτο σας μήνυμα\",\"IoAuJG\":\"Αποστολή...\",\"h69WC6\":\"Εστάλη\",\"BVu2Hz\":\"Εστάλη Από\",\"ZFa8wv\":\"Sent to attendees when a scheduled date is cancelled\",\"SPdzrs\":\"Αποστέλλεται στους πελάτες όταν κάνουν παραγγελία\",\"LxSN5F\":\"Αποστέλλεται σε κάθε συμμετέχοντα με τα στοιχεία εισιτηρίου\",\"hgvbYY\":\"September\",\"5sN96e\":\"Session cancelled\",\"89xaFU\":\"Ορίστε προεπιλεγμένες ρυθμίσεις τελών πλατφόρμας για νέες εκδηλώσεις αυτού του διοργανωτή.\",\"eXssj5\":\"Ορίστε προεπιλεγμένες ρυθμίσεις για νέες εκδηλώσεις αυτού του διοργανωτή.\",\"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\":\"Ρυθμίστε λίστες check-in για διαφορετικές εισόδους, συνεδρίες ή ημέρες.\",\"TaWVGe\":\"Set up payouts\",\"JA//e6\":\"Set up schedule\",\"gzXY7l\":\"Set Up Schedule\",\"0Ls9qe\":\"Set up the tickets you'll sell and their prices\",\"xMO+Ao\":\"Ρυθμίστε τον οργανισμό σας\",\"5pEFnq\":\"Set up your schedule\",\"h/9JiC\":\"Set Up Your Schedule\",\"zRRuUD\":\"Set up your schedule in the next steps\",\"ETC76A\":\"Set, change, or remove the date's location or online details\",\"C3htzi\":\"Η ρύθμιση ενημερώθηκε\",\"Ohn74G\":\"Ρύθμιση & Σχεδιασμός\",\"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\":\"Κοινοποίηση Συνδέσμου Συνεργάτη\",\"hL7sDJ\":\"Κοινοποίηση Σελίδας Διοργανωτή\",\"jy6QDF\":\"Διαχείριση Κοινής Χωρητικότητας\",\"jDNHW4\":\"Shift times\",\"tPfIaW\":[\"Shifted times for \",[\"count\"],\" date(s)\"],\"WwlM8F\":\"Εμφάνιση σύνθετων επιλογών\",\"cMW+gm\":[\"Εμφάνιση όλων των πλατφορμών (\",[\"0\"],\" περισσότερες με τιμές)\"],\"wXi9pZ\":\"Show attendee notes to non-logged-in staff\",\"4LZFir\":\"Εμφάνιση ολόκληρου του εύρους ημερομηνιών\",\"UVPI5D\":\"Εμφάνιση λιγότερων πλατφορμών\",\"Eu/N/d\":\"Εμφάνιση πλαισίου εξουσιοδότησης μάρκετινγκ\",\"SXzpzO\":\"Εμφάνιση πλαισίου εξουσιοδότησης μάρκετινγκ ως προεπιλογή\",\"b33PL9\":\"Εμφάνιση περισσότερων πλατφορμών\",\"Eut7p9\":\"Show order details to non-logged-in staff\",\"+RoWKN\":\"Show question answers to non-logged-in staff\",\"jbcx6L\":\"Show remaining capacity on event dates\",\"rXxBOx\":\"Show remaining capacity to buyers\",\"t1LIQW\":[\"Εμφάνιση \",[\"0\"],\" από \",[\"totalRows\"],\" εγγραφές\"],\"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\":\"Εγγράφηκε\",\"5C7J+P\":\"Single Event\",\"E//btK\":\"Skip manually edited dates\",\"paESr6\":\"Σλοβακικά\",\"9wu8nm\":\"Snapchat\",\"kIKb9e\":\"Κοινωνικά\",\"d0rUsW\":\"Κοινωνικοί Σύνδεσμοι\",\"j/TOB3\":\"Κοινωνικοί Σύνδεσμοι & Ιστοσελίδα\",\"s9KGXU\":\"Πωλήθηκε\",\"yp+0jj\":\"sold out\",\"1hupow\":\"Εξαντλημένο, διαθέσιμη λίστα αναμονής\",\"iACSrw\":\"Some details are hidden from public access. Log in to view everything.\",\"Dia6iz\":\"Something went wrong while deleting the image. Please try again.\",\"KTxc6k\":\"Κάτι πήγε στραβά, δοκιμάστε ξανά ή επικοινωνήστε με την υποστήριξη εάν το πρόβλημα επιμένει\",\"lkE00/\":\"Κάτι πήγε στραβά. Παρακαλώ δοκιμάστε ξανά αργότερα.\",\"wdxz7K\":\"Πηγή\",\"fDG2by\":\"Spirituality\",\"oPaRES\":\"Split check-in across days, areas, or ticket types. Share the link with staff — no account needed on their end.\",\"7JFNej\":\"Αθλητισμός\",\"/bfV1Y\":\"Staff instructions\",\"tXkhj/\":\"Start\",\"StWUH4\":\"Start check-in\",\"JcQp9p\":\"Ημερομηνία & ώρα έναρξης\",\"0m/ekX\":\"Ημερομηνία & Ώρα Έναρξης\",\"izRfYP\":\"Η ημερομηνία έναρξης είναι υποχρεωτική\",\"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/\":\"Στατιστικά\",\"GVUxAX\":\"Τα στατιστικά βασίζονται στην ημερομηνία δημιουργίας λογαριασμού\",\"29Hx9U\":\"Stats\",\"5ia+r6\":\"Still needed\",\"wuV0bK\":\"Διακοπή Υποκατάστασης\",\"s/KaDb\":\"Stripe connected\",\"Bk06QI\":\"Stripe Συνδεδεμένο\",\"akZMv8\":[\"Stripe connection copied from \",[\"0\"],\".\"],\"v0aRY1\":\"Stripe didn't return a setup link. Please try again.\",\"aKtF0O\":\"Stripe Μη Συνδεδεμένο\",\"9i0++A\":\"ID Πληρωμής Stripe\",\"R1lIMV\":\"Stripe will need a few more details soon\",\"FzcCHA\":\"Stripe will walk you through a few quick questions to finish setup.\",\"ii0qn/\":\"Το θέμα είναι υποχρεωτικό\",\"M7Uapz\":\"Το θέμα θα εμφανιστεί εδώ\",\"6aXq+t\":\"Θέμα:\",\"JwTmB6\":\"Επιτυχής Αντιγραφή Προϊόντος\",\"WUOCgI\":\"Επιτυχής προσφορά θέσης\",\"IvxA4G\":[\"Επιτυχής προσφορά εισιτηρίων σε \",[\"count\"],\" άτομα\"],\"kKpkzy\":\"Επιτυχής προσφορά εισιτηρίου σε 1 άτομο\",\"Zi3Sbw\":\"Επιτυχής αφαίρεση από λίστα αναμονής\",\"RuaKfn\":\"Επιτυχής Ενημέρωση Διεύθυνσης\",\"kzx0uD\":\"Επιτυχής Ενημέρωση Προεπιλογών Εκδήλωσης\",\"5n+Wwp\":\"Επιτυχής Ενημέρωση Διοργανωτή\",\"DMCX/I\":\"Επιτυχής Ενημέρωση Προεπιλογών Τελών Πλατφόρμας\",\"URUYHc\":\"Επιτυχής Ενημέρωση Ρυθμίσεων Τελών Πλατφόρμας\",\"kRWc2g\":\"Οι ρυθμίσεις επαναλαμβανόμενης εκδήλωσης ενημερώθηκαν με επιτυχία\",\"0Dk/l8\":\"Επιτυχής Ενημέρωση Ρυθμίσεων SEO\",\"S8Tua9\":\"Επιτυχής Ενημέρωση Ρυθμίσεων\",\"MhOoLQ\":\"Επιτυχής Ενημέρωση Κοινωνικών Συνδέσμων\",\"CNSSfp\":\"Επιτυχής Ενημέρωση Ρυθμίσεων Παρακολούθησης\",\"kj7zYe\":\"Επιτυχής ενημέρωση Webhook\",\"dXoieq\":\"Σύνοψη\",\"/RfJXt\":[\"Καλοκαιρινό Μουσικό Φεστιβάλ \",[\"0\"]],\"CWOPIK\":\"Καλοκαιρινό Μουσικό Φεστιβάλ 2025\",\"D89zck\":\"Sun\",\"DBC3t5\":\"Sunday\",\"UaISq3\":\"Σουηδικά\",\"JZTQI0\":\"Εναλλαγή Διοργανωτή\",\"9YHrNC\":\"Προεπιλογή Συστήματος\",\"lruQkA\":\"Tap this screen to resume scanning\",\"TJUrME\":[\"Targeting attendees across \",[\"0\"],\" selected sessions.\"],\"yT6dQ8\":\"Φόρος που συλλέχθηκε ανά τύπο φόρου και εκδήλωση\",\"Ye321X\":\"Όνομα Φόρου\",\"WyCBRt\":\"Σύνοψη Φόρου\",\"GkH0Pq\":\"Εφαρμόστηκαν φόροι & τέλη\",\"Rwiyt2\":\"Οι φόροι ρυθμίστηκαν\",\"iQZff7\":\"Φόροι, Τέλη, Ορατότητα, Περίοδος Πώλησης, Ανάδειξη Προϊόντος & Όρια Παραγγελίας\",\"SXvRWU\":\"Team collaboration\",\"vlf/In\":\"Τεχνολογία\",\"SchpMp\":\"Telegram\",\"iWa9cY\":\"Πείτε στους ανθρώπους τι να περιμένουν στην εκδήλωσή σας\",\"NiIUyb\":\"Πείτε μας για την εκδήλωσή σας\",\"DovcfC\":\"Πείτε μας για τον οργανισμό σας. Αυτές οι πληροφορίες θα εμφανίζονται στις σελίδες εκδηλώσεων.\",\"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\":\"Πρότυπο Ενεργό\",\"QHhZeE\":\"Το πρότυπο δημιουργήθηκε επιτυχώς\",\"xrWdPR\":\"Το πρότυπο διαγράφηκε επιτυχώς\",\"G04Zjt\":\"Το πρότυπο αποθηκεύτηκε επιτυχώς\",\"xowcRf\":\"Όροι Χρήσης\",\"6K0GjX\":\"Το κείμενο μπορεί να είναι δύσκολο να διαβαστεί\",\"nm3Iz/\":\"Σας ευχαριστούμε για τη συμμετοχή σας!\",\"pYwj0k\":\"Thanks,\",\"k3IitN\":\"That's a wrap\",\"KfmPRW\":\"Το χρώμα φόντου της σελίδας. Όταν χρησιμοποιείται εικόνα εξωφύλλου, εφαρμόζεται ως επικάλυψη.\",\"MDNyJz\":\"Ο κωδικός θα λήξει σε 10 λεπτά. Ελέγξτε τον φάκελο spam εάν δεν βλέπετε το email.\",\"AIF7J2\":\"Το νόμισμα στο οποίο ορίζεται το σταθερό τέλος. Θα μετατραπεί στο νόμισμα παραγγελίας κατά το checkout.\",\"7oksH+\":[\"Η έκπτωση αφαιρείται από κάθε επιλέξιμο προϊόν. Π.χ. έκπτωση \",[\"currencySymbol\"],\"10 × 3 εισιτήρια = έκπτωση \",[\"currencySymbol\"],\"30.\"],\"sKL8k2\":\"Η έκπτωση αφαιρείται μία φορά από το σύνολο της παραγγελίας.\",\"cDHM1d\":\"Η διεύθυνση email άλλαξε. Ο συμμετέχων θα λάβει νέο εισιτήριο στην ενημερωμένη διεύθυνση.\",\"tXadb0\":\"Η εκδήλωση που αναζητάτε δεν είναι διαθέσιμη αυτή τη στιγμή. Μπορεί να αφαιρέθηκε, να έληξε ή το URL μπορεί να είναι λανθασμένο.\",\"5fPdZe\":\"The first date this schedule will generate from.\",\"sxKqBm\":\"Το πλήρες ποσό παραγγελίας θα επιστραφεί στην αρχική μέθοδο πληρωμής του πελάτη.\",\"KgDp6G\":\"Ο σύνδεσμος που προσπαθείτε να αποκτήσετε πρόσβαση έχει λήξει ή δεν είναι πλέον έγκυρος. Ελέγξτε το email σας για ενημερωμένο σύνδεσμο.\",\"Np4eLs\":[\"The maximum is \",[\"MAX_PREVIEW\"],\" sessions. Please reduce the date range, frequency, or number of sessions per day.\"],\"sYLeDq\":\"Ο διοργανωτής που αναζητάτε δεν βρέθηκε. Η σελίδα μπορεί να μετακινήθηκε, διαγράφηκε ή το URL μπορεί να είναι λανθασμένο.\",\"PCr4zw\":\"The override is recorded in the order audit log.\",\"C4nQe5\":\"Το τέλος πλατφόρμας προστίθεται στην τιμή εισιτηρίου. Οι αγοραστές πληρώνουν περισσότερο, αλλά λαμβάνετε την πλήρη τιμή εισιτηρίου.\",\"HxxXZO\":\"Το κύριο χρώμα επωνυμίας για κουμπιά και ανάδειξη\",\"OVSkIF\":\"Η γρήγορη καφέ αλεπού πηδά πάνω από τον τεμπέλη σκύλο.\",\"z0KrIG\":\"Η προγραμματισμένη ώρα είναι υποχρεωτική\",\"EWErQh\":\"Η προγραμματισμένη ώρα πρέπει να είναι στο μέλλον\",\"UNd0OU\":[\"The session for \\\"\",[\"title\"],\"\\\" originally scheduled for \",[\"0\"],\" has been rescheduled.\"],\"DEcpfp\":\"Το σώμα προτύπου περιέχει μη έγκυρη σύνταξη Liquid. Παρακαλώ διορθώστε και δοκιμάστε ξανά.\",\"injXD7\":\"Ο αριθμός ΦΠΑ δεν μπόρεσε να επαληθευτεί. Παρακαλώ ελέγξτε τον αριθμό και δοκιμάστε ξανά.\",\"A4UmDy\":\"Θέατρο\",\"tDwYhx\":\"Θέμα & Χρώματα\",\"ybBP2H\":\"There are no products available for this date. Please choose another date.\",\"O7g4eR\":\"There are no upcoming dates for this event\",\"062KsE\":\"These details are shown on the attendee's ticket and order summary for this date only.\",\"5Eu+tn\":\"Αυτά τα στοιχεία θα εμφανιστούν μόνο εάν η παραγγελία ολοκληρωθεί με επιτυχία.\",\"jQjwR+\":\"These details will replace any existing location on the affected dates and show on attendee tickets.\",\"6eaLu/\":\"Αυτές οι τιμές ισχύουν για όλες τις ημερομηνίες του προγράμματός σας και οι ποσότητες των επιπέδων περιορίζουν τις συνολικές πωλήσεις για όλες τις ημερομηνίες συνολικά. Οι ημερομηνίες πώλησης των επιπέδων ισχύουν καθολικά. Μπορείτε να παρακάμψετε τις τιμές για μεμονωμένες ημερομηνίες στη <0>σελίδα Προγράμματος ημερομηνιών.\",\"QP3gP+\":\"Αυτές οι ρυθμίσεις ισχύουν μόνο για τον αντιγραμμένο κώδικα ενσωμάτωσης και δεν θα αποθηκευτούν.\",\"HirZe8\":\"Αυτά τα πρότυπα θα χρησιμοποιούνται ως προεπιλογές για όλες τις εκδηλώσεις στον οργανισμό σας. Μεμονωμένες εκδηλώσεις μπορούν να τα παρακάμψουν.\",\"lzAaG5\":\"Αυτά τα πρότυπα θα παρακάμψουν τις προεπιλογές διοργανωτή μόνο για αυτή την εκδήλωση. Εάν δεν έχει οριστεί προσαρμοσμένο πρότυπο, θα χρησιμοποιηθεί το πρότυπο διοργανωτή.\",\"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\":\"Αυτός ο κωδικός θα χρησιμοποιηθεί για παρακολούθηση πωλήσεων. Επιτρέπονται μόνο γράμματα, αριθμοί, παύλες και κάτω παύλες.\",\"AaP0M+\":\"Αυτός ο συνδυασμός χρωμάτων μπορεί να είναι δύσκολο να διαβαστεί από ορισμένους χρήστες\",\"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.\",\"E9BqZw\":\"This date only\",\"RzEvf5\":\"Αυτή η εκδήλωση έχει τελειώσει\",\"kc4bIA\":\"Αυτή η εκδήλωση δεν έχει ακόμα εισιτήρια ή προϊόντα, οπότε οι συμμετέχοντες δεν θα μπορούν να εγγραφούν.\",\"eMaNd0\":\"This event is not available\",\"YClrdK\":\"Αυτή η εκδήλωση δεν έχει δημοσιευτεί ακόμα\",\"GL6z+k\":\"Αυτή η εκδήλωση έχει εξαντληθεί\",\"pIwDhS\":\"This event's dates and times are set on the occurrence schedule.\",\"ny5rgr\":\"This is a recurring event\",\"tc64Zz\":\"Αυτό είναι το όνομα της κατηγορίας που θα εμφανίζεται στη σελίδα της εκδήλωσης.\",\"dFJnia\":\"Αυτό είναι το όνομα διοργανωτή που θα εμφανίζεται στους χρήστες σας.\",\"vt7jiq\":\"Αυτή είναι η μοναδική φορά που θα εμφανιστεί το signing secret. Αντιγράψτε το τώρα και φυλάξτε το ασφαλώς.\",\"5DpZrC\":\"Αυτό περιορίζει τις συνολικές πωλήσεις για όλες τις ημερομηνίες του προγράμματός σας συνολικά — δεν είναι όριο ανά ημερομηνία. Για να περιορίσετε τη συμμετοχή ανά ημερομηνία, ορίστε χωρητικότητα στη <0>σελίδα Προγράμματος ημερομηνιών.\",\"L7dIM7\":\"Αυτός ο σύνδεσμος δεν είναι έγκυρος ή έχει λήξει.\",\"MR5ygV\":\"Αυτός ο σύνδεσμος δεν είναι πλέον έγκυρος\",\"9LEqK0\":\"Αυτό το όνομα είναι ορατό στους τελικούς χρήστες\",\"QdUMM9\":\"This occurrence is at capacity\",\"j5FdeA\":\"Αυτή η παραγγελία επεξεργάζεται.\",\"sjNPMw\":\"Αυτή η παραγγελία εγκαταλείφθηκε. Μπορείτε να ξεκινήσετε νέα παραγγελία ανά πάσα στιγμή.\",\"OhCesD\":\"Αυτή η παραγγελία ακυρώθηκε. Μπορείτε να ξεκινήσετε νέα παραγγελία ανά πάσα στιγμή.\",\"lyD7rQ\":\"Αυτό το προφίλ διοργανωτή δεν έχει δημοσιευτεί ακόμα\",\"9b5956\":\"Αυτή η προεπισκόπηση δείχνει πώς θα φαίνεται το email με δείγμα δεδομένων. Τα πραγματικά email θα χρησιμοποιούν πραγματικές τιμές.\",\"uM9Alj\":\"Αυτό το προϊόν αναδεικνύεται στη σελίδα εκδήλωσης\",\"RqSKdX\":\"Αυτό το προϊόν έχει εξαντληθεί\",\"qEGn8I\":\"Αυτή η επαναλαμβανόμενη εκδήλωση δεν έχει ακόμα ημερομηνίες, οπότε οι συμμετέχοντες δεν έχουν τίποτα να κρατήσουν.\",\"W12OdJ\":\"Αυτή η αναφορά είναι μόνο για ενημερωτικούς σκοπούς. Πάντα συμβουλευτείτε φορολογικό σύμβουλο πριν χρησιμοποιήσετε αυτά τα δεδομένα.\",\"1LuJNw\":\"Αυτό το εισιτήριο δεν ισχύει πλέον\",\"0Ew0uk\":\"Αυτό το εισιτήριο σαρώθηκε μόλις τώρα. Παρακαλώ περιμένετε πριν σαρώσετε ξανά.\",\"FYXq7k\":[\"This will affect \",[\"loadedAffectedCount\"],\" date(s).\"],\"kvpxIU\":\"Αυτό θα χρησιμοποιηθεί για ειδοποιήσεις και επικοινωνία με τους χρήστες σας.\",\"rhsath\":\"Αυτό δεν θα είναι ορατό στους πελάτες, αλλά σας βοηθά να αναγνωρίσετε τον συνεργάτη.\",\"hV6FeJ\":\"Throughput\",\"+FjWgX\":\"Thu\",\"kkDQ8m\":\"Thursday\",\"0GSPnc\":\"Σχεδιασμός Εισιτηρίου\",\"EZC/Cu\":\"Ο σχεδιασμός εισιτηρίου αποθηκεύτηκε επιτυχώς\",\"bbslmb\":\"Σχεδιαστής Εισιτηρίου\",\"1BPctx\":\"Εισιτήριο για\",\"HGuXjF\":\"Κάτοχοι εισιτηρίων\",\"CMUt3Y\":\"Κάτοχοι Εισιτηρίων\",\"awHmAT\":\"ID Εισιτηρίου\",\"6czJik\":\"Λογότυπο Εισιτηρίου\",\"t79rDv\":\"Εισιτήριο Δεν Βρέθηκε\",\"6tmWch\":\"Εισιτήριο ή Προϊόν\",\"1tfWrD\":\"Προεπισκόπηση Εισιτηρίου για\",\"KnjoUA\":\"Τιμή εισιτηρίου\",\"pGZOcL\":\"Το εισιτήριο εστάλη ξανά επιτυχώς\",\"o02GZM\":\"Ticket sales have ended for this event\",\"8jLPgH\":\"Τύπος Εισιτηρίου\",\"8qsbZ5\":\"Εισιτήρια & Πωλήσεις\",\"zNECqg\":\"εισιτήρια\",\"6GQNLE\":\"Εισιτήρια\",\"NRhrIB\":\"Εισιτήρια & Προϊόντα\",\"OrWHoZ\":\"Τα εισιτήρια προσφέρονται αυτόματα σε πελάτες λίστας αναμονής όταν διατίθεται χωρητικότητα.\",\"EUnesn\":\"Διαθέσιμα Εισιτήρια\",\"AGRilS\":\"Εισιτήρια που Πωλήθηκαν\",\"zyUxcw\":\"TikTok\",\"LhMjLm\":\"Time\",\"fXf2r5\":[\"Times shown in \",[\"timezoneAbbr\"]],\"dMtLDE\":\"to\",\"/jQctM\":\"Προς\",\"tiI71C\":\"Για να αυξήσετε τα όριά σας, επικοινωνήστε μαζί μας στο\",\"ecUA8p\":\"Today\",\"W428WC\":\"Εναλλαγή στηλών\",\"BRMXj0\":\"Tomorrow\",\"UBSG1X\":\"Κορυφαίοι Διοργανωτές (Τελευταίες 14 Ημέρες)\",\"3sZ0xx\":\"Σύνολο Λογαριασμών\",\"SMDzqJ\":\"Σύνολο Συμμετεχόντων\",\"orBECM\":\"Σύνολο Εισπράχθηκε\",\"k5CU8c\":\"Σύνολο Εγγραφών\",\"4B7oCp\":\"Συνολικό Τέλος\",\"sMMlTX\":\"Total fees\",\"mlvCEl\":\"Total orders\",\"2AW/k5\":\"Συνολική ποσότητα για όλες τις ημερομηνίες\",\"dp8BCb\":\"Total tax\",\"vb0Q0/\":\"Σύνολο Χρηστών\",\"oJjplO\":\"Σύνολο Προβολών\",\"rBZ9pz\":\"Tours\",\"orluER\":\"Παρακολούθηση ανάπτυξης λογαριασμού και απόδοσης ανά πηγή\",\"YwKzpH\":\"Παρακολούθηση & Αναλυτικά\",\"GUA0Jy\":\"Try a different search term or filter\",\"2P/OWN\":\"Try adjusting your filters to see more dates.\",\"ouM5IM\":\"Δοκιμάστε άλλο email\",\"3DZvE7\":\"Δοκιμάστε το Hi.Events Δωρεάν\",\"vq2WxD\":\"Tue\",\"G3myU+\":\"Tuesday\",\"Kz91g/\":\"Τουρκικά\",\"GdOhw6\":\"Απενεργοποίηση ήχου\",\"KUOhTy\":\"Ενεργοποίηση ήχου\",\"dBeuY2\":\"Twitch\",\"QytzQr\":\"Πληκτρολογήστε \\\"delete\\\" για επιβεβαίωση\",\"nWRfmt\":\"Τυπογραφία\",\"IrVSu+\":\"Αδύνατη αντιγραφή προϊόντος. Ελέγξτε τα στοιχεία σας\",\"Vx2J6x\":\"Αδύνατη φόρτωση συμμετέχοντα\",\"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\":\"Μη Αποδιδόμενοι Λογαριασμοί\",\"9uI/rE\":\"Undo\",\"Ef7StM\":\"Άγνωστο\",\"ZBAScj\":\"Άγνωστος Συμμετέχων\",\"MEIAzV\":\"Χωρίς όνομα\",\"K6L5Mx\":\"Τοποθεσία χωρίς όνομα\",\"7yiFvZ\":\"Απλήρωτο\",\"X13xGn\":\"Μη Αξιόπιστο\",\"gyXpQN\":\"Upcoming events\",\"Pp1sWX\":\"Ενημέρωση Συνεργάτη\",\"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\":\"Μεταφόρτωση εικόνας εξωφύλλου για τον διοργανωτή\",\"4kEGqW\":\"Μεταφόρτωση λογότυπου για τον διοργανωτή\",\"lnCMdg\":\"Μεταφόρτωση Εικόνας\",\"29w7p6\":\"Μεταφόρτωση εικόνας...\",\"HtrFfw\":\"Το URL είναι υποχρεωτικό\",\"vzWC39\":\"USB\",\"td5pxI\":\"USB scanner listening\",\"dyTklH\":\"USB scanner paused\",\"OHJXlK\":\"Χρησιμοποιήστε <0>Liquid templating για εξατομίκευση email\",\"/rsy72\":\"Use event default\",\"0k4cdb\":\"Χρήση στοιχείων παραγγελίας για όλους τους συμμετέχοντες. Τα ονόματα και email θα αντιστοιχούν στον αγοραστή.\",\"bA31T4\":\"Χρήση στοιχείων αγοραστή για όλους τους συμμετέχοντες\",\"PpgtnC\":\"Χρήση αυτής της διεύθυνσης\",\"rnoQsz\":\"Χρησιμοποιείται για περιγράμματα, ανάδειξη και στυλιζάρισμα QR code\",\"BV4L/Q\":\"Αναλυτικά UTM\",\"l5ackE\":\"UUID\",\"imLQ9Y\":\"Επαλήθευση αριθμού ΦΠΑ...\",\"t7caBM\":\"VAT country code\",\"WLkfqH\":\"VAT number\",\"pnVh83\":\"Αριθμός ΦΠΑ\",\"CabI04\":\"Ο αριθμός ΦΠΑ δεν πρέπει να περιέχει κενά\",\"PMhxAR\":\"Ο αριθμός ΦΠΑ πρέπει να ξεκινά με κωδικό χώρας 2 γραμμάτων ακολουθούμενο από 8-15 αλφαριθμητικούς χαρακτήρες (π.χ. DE123456789)\",\"gPgdNV\":\"Ο αριθμός ΦΠΑ επικυρώθηκε με επιτυχία\",\"RUMiLy\":\"Η επαλήθευση αριθμού ΦΠΑ απέτυχε\",\"vqji3Y\":\"Η επαλήθευση αριθμού ΦΠΑ απέτυχε. Παρακαλώ ελέγξτε τον αριθμό ΦΠΑ σας.\",\"8dENF9\":\"ΦΠΑ στο Τέλος\",\"ZutOKU\":\"Συντελεστής ΦΠΑ\",\"+KJZt3\":\"VAT registered\",\"Nfbg76\":\"Οι ρυθμίσεις ΦΠΑ αποθηκεύτηκαν επιτυχώς\",\"UvYql/\":\"Οι ρυθμίσεις ΦΠΑ αποθηκεύτηκαν. Επαληθεύουμε τον αριθμό ΦΠΑ σε παρασκήνιο.\",\"bXn1Jz\":\"VAT settings updated\",\"tJylUv\":\"Αντιμετώπιση ΦΠΑ για Τέλη Πλατφόρμας\",\"FlGprQ\":\"Αντιμετώπιση ΦΠΑ για τέλη πλατφόρμας: Επιχειρήσεις εγγεγραμμένες για ΦΠΑ στην ΕΕ μπορούν να χρησιμοποιήσουν τον μηχανισμό αντίστροφης χρέωσης (0%). Μη εγγεγραμμένες χρεώνονται με ιρλανδικό ΦΠΑ 23%.\",\"516oLj\":\"Η υπηρεσία επαλήθευσης ΦΠΑ δεν είναι προσωρινά διαθέσιμη\",\"p6QQLa\":[\"VAT: \",[\"0\"]],\"5q87Y9\":\"VAT: not registered\",\"AdWhjZ\":\"Κωδικός επαλήθευσης\",\"kUAumu\":\"Verification email sent. Check your inbox.\",\"QDEWii\":\"Επαληθευμένο\",\"wCKkSr\":\"Επαλήθευση Email\",\"/IBv6X\":\"Επαληθεύστε το email σας\",\"u8nB38\":\"Verify your email so attendees can receive tickets\",\"e/cvV1\":\"Επαλήθευση...\",\"fROFIL\":\"Βιετναμεζικά\",\"p5nYkr\":\"View All\",\"yA/6BX\":\"View all →\",\"6CQ7/B\":\"View all capabilities\",\"YSE15b\":\"View all check-in lists\",\"RnvnDc\":\"Προβολή όλων των μηνυμάτων που εστάλησαν στην πλατφόρμα\",\"+WFMis\":\"Προβολή και λήψη αναφορών για όλες τις εκδηλώσεις. Περιλαμβάνονται μόνο ολοκληρωμένες παραγγελίες.\",\"c7VN/A\":\"Προβολή Απαντήσεων\",\"SZw9tS\":\"Προβολή Λεπτομερειών\",\"9+84uW\":[\"View details for \",[\"0\"],\" \",[\"1\"]],\"FCVmuU\":\"Προβολή Εκδήλωσης\",\"c6SXHN\":\"Προβολή Σελίδας Εκδήλωσης\",\"n6EaWL\":\"Προβολή αρχείων καταγραφής\",\"OaKTzt\":\"Προβολή Χάρτη\",\"zNZNMs\":\"Προβολή Μηνύματος\",\"67OJ7t\":\"Προβολή Παραγγελίας\",\"tKKZn0\":\"Προβολή Λεπτομερειών Παραγγελίας\",\"KeCXJu\":\"Προβολή λεπτομερειών παραγγελίας, έκδοση επιστροφών και επαναποστολή επιβεβαιώσεων.\",\"9jnAcN\":\"Προβολή Αρχικής Διοργανωτή\",\"1J/AWD\":\"Προβολή Εισιτηρίου\",\"N9FyyW\":\"Προβολή, επεξεργασία και εξαγωγή εγγεγραμμένων συμμετεχόντων.\",\"6dp/Hz\":\"Vimeo\",\"SS4mGB\":\"VK\",\"uUehLT\":\"Αναμονή\",\"quR8Qp\":\"Αναμονή πληρωμής\",\"KrurBH\":\"Waiting for scan…\",\"u0n+wz\":\"Λίστα Αναμονής\",\"3RXFtE\":\"Λίστα Αναμονής Ενεργή\",\"TwnTPy\":\"Η προσφορά λίστας αναμονής έληξε\",\"aUi/Dz\":\"Προειδοποίηση: Αυτή είναι η προεπιλεγμένη ρύθμιση συστήματος. Οι αλλαγές θα επηρεάσουν όλους τους λογαριασμούς.\",\"aT/44s\":\"We couldn't copy that Stripe connection. Please try again.\",\"RRZDED\":\"Δεν βρέθηκαν παραγγελίες συνδεδεμένες με αυτή τη διεύθυνση email.\",\"2RZK9x\":\"Δεν βρέθηκε η παραγγελία. Ο σύνδεσμος μπορεί να έχει λήξει ή τα στοιχεία να άλλαξαν.\",\"nefMIK\":\"Δεν βρέθηκε το εισιτήριο. Ο σύνδεσμος μπορεί να έχει λήξει ή τα στοιχεία να άλλαξαν.\",\"miysJh\":\"Δεν βρέθηκε αυτή η παραγγελία. Μπορεί να έχει αφαιρεθεί.\",\"Fjj/5/\":\"We couldn't load the check-in lists. Please try again.\",\"ADsQ23\":\"We couldn't reach Stripe just now. Please try again in a moment.\",\"HJKdzP\":\"Παρουσιάστηκε πρόβλημα κατά τη φόρτωση αυτής της σελίδας. Παρακαλώ δοκιμάστε ξανά.\",\"jegrvW\":\"We partner with Stripe to send payouts straight to your bank account.\",\"IfN2Qo\":\"Προτείνουμε τετράγωνο λογότυπο με ελάχιστες διαστάσεις 200x200px\",\"wJzo/w\":\"Προτείνουμε διαστάσεις 400px x 400px, μέγιστο μέγεθος 5MB\",\"L/KlAh\":[\"We sent a verification link to \",[\"0\"]],\"KRCDqH\":\"Χρησιμοποιούμε cookies για να κατανοήσουμε πώς χρησιμοποιείται ο ιστότοπος και να βελτιώσουμε την εμπειρία σας.\",\"x8rEDQ\":\"Δεν μπορέσαμε να επαληθεύσουμε τον αριθμό ΦΠΑ μετά από πολλές προσπάθειες. Θα συνεχίσουμε σε παρασκήνιο.\",\"mfM/HJ\":[\"Θα σας ειδοποιήσουμε μέσω email εάν διατεθεί θέση για \",[\"productDisplayName\"],\" στις \",[\"occurrenceDate\"],\".\"],\"iy+M+c\":[\"Θα σας ειδοποιήσουμε μέσω email εάν διατεθεί θέση για \",[\"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\":\"Θα σας στείλουμε τα εισιτήρια σε αυτό το email\",\"ZOmUYW\":\"Θα επαληθεύσουμε τον αριθμό ΦΠΑ σε παρασκήνιο. Εάν υπάρχουν προβλήματα, θα σας ενημερώσουμε.\",\"LKjHr4\":[\"We've made changes to the schedule for \\\"\",[\"title\"],\"\\\" — \",[\"description\"],\" affecting \",[\"affectedCount\"],\" session(s).\"],\"Fq/Nx7\":\"Στείλαμε κωδικό επαλήθευσης 5 ψηφίων στο:\",\"GdWB+V\":\"Το webhook δημιουργήθηκε επιτυχώς\",\"2X4ecw\":\"Το webhook διαγράφηκε επιτυχώς\",\"ndBv0v\":\"Webhook integrations\",\"CThMKa\":\"Αρχεία Webhook\",\"I0adYQ\":\"Signing Secret Webhook\",\"nuh/Wq\":\"URL Webhook\",\"8BMPMe\":\"Το webhook δεν θα στέλνει ειδοποιήσεις\",\"FSaY52\":\"Το webhook θα στέλνει ειδοποιήσεις\",\"v1kQyJ\":\"Webhooks\",\"On0aF2\":\"Ιστότοπος\",\"0f7U0k\":\"Wed\",\"VAcXNz\":\"Wednesday\",\"64X6l4\":\"week\",\"4XSc4l\":\"Weekly\",\"IAUiSh\":\"weeks\",\"vKLEXy\":\"Weibo\",\"9eF5oV\":\"Καλώς ήρθατε ξανά\",\"QDWsl9\":[\"Καλώς ήρθατε στο \",[\"0\"],\", \",[\"1\"],\" 👋\"],\"LETnBR\":[\"Καλώς ήρθατε στο \",[\"0\"],\", εδώ είναι η λίστα όλων των εκδηλώσεών σας\"],\"DDbx7K\":\"Wellness\",\"ywRaYa\":\"What time?\",\"FaSXqR\":\"Τι τύπος εκδήλωσης;\",\"0WyYF4\":\"What unauthenticated staff can see\",\"2+ExvJ\":\"WhatsApp\",\"cxsKvw\":\"Όταν διαγράφεται ένα check-in\",\"RPe6bE\":\"When a date is cancelled on a recurring event\",\"Gmd0hv\":\"Όταν δημιουργείται νέος συμμετέχων\",\"zyIyPe\":\"Όταν δημιουργείται νέα εκδήλωση\",\"Lc18qn\":\"Όταν δημιουργείται νέα παραγγελία\",\"dfkQIO\":\"Όταν δημιουργείται νέο προϊόν\",\"8OhzyY\":\"Όταν διαγράφεται ένα προϊόν\",\"tRXdQ9\":\"Όταν ενημερώνεται ένα προϊόν\",\"9L9/28\":\"Όταν ένα προϊόν εξαντληθεί, οι πελάτες μπορούν να εγγραφούν σε λίστα αναμονής.\",\"OIkHj+\":\"Όταν ένα προϊόν εξαντληθεί, οι πελάτες μπορούν να εγγραφούν σε λίστα αναμονής για να ειδοποιηθούν όταν διατεθούν θέσεις. Οι πελάτες εγγράφονται στη λίστα αναμονής για συγκεκριμένη ημερομηνία και οι προσφορές γίνονται ανά ημερομηνία.\",\"Q7CWxp\":\"Όταν ακυρωθεί συμμετέχων\",\"IuUoyV\":\"Όταν γίνει check-in συμμετέχοντα\",\"nBVOd7\":\"Όταν ενημερωθεί συμμετέχων\",\"t7cuMp\":\"Όταν αρχειοθετηθεί εκδήλωση\",\"gtoSzE\":\"Όταν ενημερωθεί εκδήλωση\",\"ny2r8d\":\"Όταν ακυρωθεί παραγγελία\",\"c9RYbv\":\"Όταν επισημανθεί παραγγελία ως πληρωμένη\",\"ejMDw1\":\"Όταν επιστραφεί παραγγελία\",\"fVPt0F\":\"Όταν ενημερωθεί παραγγελία\",\"bcYlvb\":\"Όταν κλείσει το check-in\",\"XIG669\":\"Όταν ανοίξει το check-in\",\"de6HLN\":\"Όταν οι πελάτες αγοράζουν εισιτήρια, οι παραγγελίες θα εμφανίζονται εδώ.\",\"pm9tpn\":\"Όταν είναι ενεργοποιημένο, οι αγοραστές μπορούν να αντιγράψουν το όνομα και το email τους σε όλους τους συμμετέχοντες ταυτόχρονα. Απενεργοποιήστε το για να αφαιρέσετε την επιλογή \\\"Όλοι οι συμμετέχοντες\\\"· οι αγοραστές μπορούν ακόμα να αντιγράψουν τα στοιχεία στον πρώτο συμμετέχοντα, ενώ οι υπόλοιποι πρέπει να εισαχθούν μεμονωμένα.\",\"403wpZ\":\"Όταν είναι ενεργό, νέες εκδηλώσεις θα επιτρέπουν στους συμμετέχοντες να διαχειρίζονται τα στοιχεία εισιτηρίου μέσω ασφαλούς συνδέσμου.\",\"blXLKj\":\"Όταν είναι ενεργό, νέες εκδηλώσεις θα εμφανίζουν πλαίσιο εξουσιοδότησης μάρκετινγκ κατά το checkout.\",\"Kj0Txn\":\"Όταν είναι ενεργό, δεν θα χρεώνονται χρεώσεις εφαρμογής σε συναλλαγές Stripe Connect.\",\"uchB0M\":\"Προεπισκόπηση Widget\",\"uvIqcj\":\"Εργαστήριο\",\"EpknJA\":\"Γράψτε το μήνυμά σας εδώ...\",\"nhtR6Y\":\"X (Twitter)\",\"7qI8sJ\":\"year\",\"zkWmBh\":\"Yearly\",\"+BGee5\":\"years\",\"X/azM1\":\"Ναι - Έχω έγκυρο αριθμό εγγραφής ΦΠΑ ΕΕ\",\"Tz5oXG\":\"Ναι, ακύρωση παραγγελίας\",\"QlSZU0\":[\"Υποκαθιστάτε τον <0>\",[\"0\"],\" (\",[\"1\"],\")\"],\"s14PLh\":[\"Εκδίδετε μερική επιστροφή. Ο πελάτης θα επιστραφεί \",[\"0\"],\" \",[\"1\"],\".\"],\"o7LgX6\":\"Μπορείτε να ρυθμίσετε πρόσθετα τέλη υπηρεσιών και φόρους στις ρυθμίσεις λογαριασμού.\",\"rj3A7+\":\"You can override this for individual dates later.\",\"paWwQ0\":\"Μπορείτε ακόμα να προσφέρετε εισιτήρια χειροκίνητα εάν χρειάζεται.\",\"jTDzpA\":\"Δεν μπορείτε να αρχειοθετήσετε τον τελευταίο ενεργό διοργανωτή στον λογαριασμό σας.\",\"D8baxD\":\"Έχετε εισιτήρια επί πληρωμή, αλλά το Stripe δεν έχει συνδεθεί ακόμα, οπότε δεν μπορείτε να δέχεστε πληρωμές.\",\"5VGIlq\":\"Έχετε φτάσει το όριο μηνυμάτων σας.\",\"casL1O\":\"Έχετε φόρους και τέλη σε Δωρεάν Προϊόν. Θέλετε να τα αφαιρέσετε;\",\"9jJNZY\":\"Πρέπει να αναγνωρίσετε τις ευθύνες σας πριν αποθηκεύσετε\",\"pCLes8\":\"Πρέπει να συμφωνήσετε να λαμβάνετε μηνύματα\",\"FVTVBy\":\"Πρέπει να επαληθεύσετε τη διεύθυνση email πριν ενημερώσετε την κατάσταση διοργανωτή.\",\"ze4bi/\":\"You need to create at least one occurrence before you can add attendees to this recurring event.\",\"w65ZgF\":\"Πρέπει να επαληθεύσετε το email λογαριασμού πριν τροποποιήσετε πρότυπα email.\",\"FRl8Jv\":\"Πρέπει να επαληθεύσετε το email λογαριασμού πριν στείλετε μηνύματα.\",\"88cUW+\":\"Λαμβάνετε\",\"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\":[\"Θα πάτε στο \",[\"0\"],\"!\"],\"ZlLcht\":[\"Εγγράφεστε στη λίστα αναμονής για τις \",[\"occurrenceDate\"],\".\"],\"qGZz0m\":\"Είστε στη λίστα αναμονής!\",\"/5HL6k\":\"Σας προσφέρθηκε μια θέση!\",\"gbjFFH\":\"You've changed the session time\",\"p/Sa0j\":\"Ο λογαριασμός σας έχει όρια μηνυμάτων. Για αύξηση ορίων, επικοινωνήστε μαζί μας στο\",\"x/xjzn\":\"Οι συνεργάτες σας εξήχθησαν επιτυχώς.\",\"TF37u6\":\"Οι συμμετέχοντές σας εξήχθησαν επιτυχώς.\",\"79lXGw\":\"Η λίστα check-in δημιουργήθηκε επιτυχώς. Μοιραστείτε τον παρακάτω σύνδεσμο με το προσωπικό.\",\"BnlG9U\":\"Η τρέχουσα παραγγελία σας θα χαθεί.\",\"nBqgQb\":\"Το Email σας\",\"GG1fRP\":\"Η εκδήλωσή σας είναι δημοσιευμένη!\",\"ifRqmm\":\"Το μήνυμά σας εστάλη επιτυχώς!\",\"0/+Nn9\":\"Τα μηνύματά σας θα εμφανίζονται εδώ\",\"/Rj5P4\":\"Το Όνομά σας\",\"PFjJxY\":\"Ο νέος κωδικός πρέπει να έχει τουλάχιστον 8 χαρακτήρες.\",\"gzrCuN\":\"Τα στοιχεία παραγγελίας ενημερώθηκαν. Στάλθηκε email επιβεβαίωσης στη νέα διεύθυνση.\",\"naQW82\":\"Η παραγγελία σας ακυρώθηκε.\",\"bhlHm/\":\"Η παραγγελία σας αναμένει πληρωμή\",\"XeNum6\":\"Οι παραγγελίες σας εξήχθησαν επιτυχώς.\",\"Xd1R1a\":\"Η διεύθυνση του διοργανωτή σας\",\"WWYHKD\":\"Η πληρωμή σας προστατεύεται με κρυπτογράφηση τραπεζικού επιπέδου\",\"5b3QLi\":\"Το Πλάνο σας\",\"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\":\"Τα εισιτήριά σας επιβεβαιώθηκαν.\",\"EmFsMZ\":\"Ο αριθμός ΦΠΑ σας είναι σε ουρά για επαλήθευση\",\"QBlhh4\":\"Ο αριθμός ΦΠΑ σας θα επαληθευτεί όταν αποθηκεύσετε\",\"fT9VLt\":\"Η προσφορά λίστας αναμονής έληξε. Παρακαλώ εγγραφείτε ξανά για να ειδοποιηθείτε.\",\"9Q6UKX\":\"YouTube\"}")}; \ No newline at end of file diff --git a/frontend/src/locales/el.po b/frontend/src/locales/el.po index c983435155..922175a035 100644 --- a/frontend/src/locales/el.po +++ b/frontend/src/locales/el.po @@ -179,11 +179,11 @@ msgstr "" msgid "{totalCount} ticket types" msgstr "{totalCount} τύποι εισιτηρίων" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:554 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:567 msgid "{totalOccurrences} dates" msgstr "" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:547 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:560 msgid "{totalOccurrences} sessions across {0} dates ({1, plural, one {# session} other {# sessions}} per day)" msgstr "" @@ -516,7 +516,7 @@ msgstr "Ενεργές Εκδηλώσεις" msgid "Active payment methods" msgstr "" -#: src/components/routes/event/OccurrencesTab/index.tsx:400 +#: src/components/routes/event/OccurrencesTab/index.tsx:402 msgid "Activity" msgstr "" @@ -536,11 +536,11 @@ msgstr "" msgid "Add a description for this check-in list" msgstr "Προσθήκη περιγραφής για αυτή τη λίστα ελέγχου" -#: src/components/routes/event/OccurrencesTab/index.tsx:538 +#: src/components/routes/event/OccurrencesTab/index.tsx:541 msgid "Add a Single Date" msgstr "" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:739 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:752 msgid "Add another time" msgstr "" @@ -560,7 +560,7 @@ msgstr "Προσθήκη σημειώσεων για την παραγγελία msgid "Add any notes about the order..." msgstr "Προσθήκη σημειώσεων για την παραγγελία..." -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:375 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:382 msgid "Add at least one time" msgstr "" @@ -580,7 +580,7 @@ msgstr "" msgid "Add dates" msgstr "Προσθήκη ημερομηνιών" -#: src/components/routes/event/OccurrencesTab/index.tsx:524 +#: src/components/routes/event/OccurrencesTab/index.tsx:526 msgid "Add Dates" msgstr "" @@ -611,7 +611,7 @@ msgstr "Προσθήκη οδηγιών για πληρωμές εκτός σύ msgid "Add Location" msgstr "Προσθήκη τοποθεσίας" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:743 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:756 msgid "Add multiple times if you run several sessions per day." msgstr "" @@ -796,7 +796,7 @@ msgid "all" msgstr "" #: src/components/layouts/CheckIn/tabs/SearchTab.tsx:133 -#: src/components/routes/event/OccurrencesTab/index.tsx:485 +#: src/components/routes/event/OccurrencesTab/index.tsx:487 msgid "All" msgstr "" @@ -987,7 +987,7 @@ msgstr "Παρουσιάστηκε μη αναμενόμενο σφάλμα." msgid "An unexpected error occurred. Please try again." msgstr "Παρουσιάστηκε μη αναμενόμενο σφάλμα. Παρακαλώ δοκιμάστε ξανά." -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:849 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:862 msgid "and {0} more..." msgstr "" @@ -1003,7 +1003,7 @@ msgstr "" msgid "Answers provided at checkout (e.g. meal choice)" msgstr "" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:564 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:577 msgid "Any dates you've manually customized will be kept." msgstr "" @@ -1071,7 +1071,7 @@ msgstr "" msgid "Approve Message" msgstr "Έγκριση Μηνύματος" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:74 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:76 msgid "April" msgstr "" @@ -1127,7 +1127,7 @@ msgstr "Είστε σίγουροι ότι θέλετε να αρχειοθετ msgid "Are you sure you want to archive this organizer? This will also archive all events belonging to this organizer." msgstr "Είστε σίγουροι ότι θέλετε να αρχειοθετήσετε αυτόν τον διοργανωτή; Αυτό θα αρχειοθετήσει και όλες τις εκδηλώσεις του." -#: src/components/routes/event/OccurrencesTab/index.tsx:213 +#: src/components/routes/event/OccurrencesTab/index.tsx:215 msgid "Are you sure you want to cancel {count} date(s)? Affected attendees will be notified by email." msgstr "" @@ -1159,7 +1159,7 @@ msgstr "Είστε σίγουροι ότι θέλετε να διαγράψετ #: src/components/modals/ManageOccurrenceModal/index.tsx:58 #: src/components/routes/event/OccurrenceDetail/index.tsx:84 -#: src/components/routes/event/OccurrencesTab/index.tsx:182 +#: src/components/routes/event/OccurrencesTab/index.tsx:184 msgid "Are you sure you want to delete this date? This action cannot be undone." msgstr "" @@ -1446,7 +1446,7 @@ msgstr "Ανάλυση Απόδοσης" msgid "Attribution Value" msgstr "Αξία Απόδοσης" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:78 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:80 msgid "August" msgstr "" @@ -1625,7 +1625,7 @@ msgstr "Πορτογαλικά Βραζιλίας" msgid "Built-in fraud protection" msgstr "" -#: src/components/routes/event/OccurrencesTab/index.tsx:515 +#: src/components/routes/event/OccurrencesTab/index.tsx:517 msgid "Bulk Edit" msgstr "" @@ -1674,11 +1674,11 @@ msgstr "Με την προσθήκη pixels παρακολούθησης, ανα msgid "By continuing, you agree to the <0>{0} Terms of Service" msgstr "Συνεχίζοντας, αποδέχεστε τους <0>Όρους Χρήσης {0}" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:628 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:641 msgid "By day of month" msgstr "" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:629 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:642 msgid "By day of week" msgstr "" @@ -1698,7 +1698,7 @@ msgstr "Παράκαμψη Χρεώσεων Εφαρμογής" msgid "Calculation Type" msgstr "Τύπος Υπολογισμού" -#: src/components/routes/event/OccurrencesTab/index.tsx:471 +#: src/components/routes/event/OccurrencesTab/index.tsx:473 msgid "Calendar" msgstr "" @@ -1735,7 +1735,7 @@ msgstr "" #: src/components/modals/ManageOrderModal/index.tsx:209 #: src/components/modals/PublishEventModal/index.tsx:208 #: src/components/routes/event/messages.tsx:80 -#: src/components/routes/event/OccurrencesTab/index.tsx:497 +#: src/components/routes/event/OccurrencesTab/index.tsx:499 #: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:272 #: src/components/routes/event/OccurrencesTab/OccurrenceEditModal/index.tsx:306 #: src/components/routes/event/OccurrencesTab/OccurrenceMenu.tsx:61 @@ -1748,8 +1748,8 @@ msgstr "" msgid "Cancel" msgstr "Ακύρωση" -#: src/components/routes/event/OccurrencesTab/index.tsx:209 -#: src/components/routes/event/OccurrencesTab/index.tsx:221 +#: src/components/routes/event/OccurrencesTab/index.tsx:211 +#: src/components/routes/event/OccurrencesTab/index.tsx:223 msgid "Cancel {count} date(s)" msgstr "" @@ -1809,7 +1809,7 @@ msgstr "Η ακύρωση θα ακυρώσει όλους τους συμμετ msgid "Cancelled" msgstr "Ακυρωμένο" -#: src/components/routes/event/OccurrencesTab/index.tsx:235 +#: src/components/routes/event/OccurrencesTab/index.tsx:237 msgid "Cancelling {0} date(s). This may take a moment to complete." msgstr "" @@ -1819,7 +1819,7 @@ msgstr "Δεν είναι δυνατή η διαγραφή της προεπιλ #: src/components/forms/CapaciyAssigmentForm/index.tsx:42 #: src/components/routes/event/OccurrencesTab/OccurrenceEditModal/index.tsx:503 -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:811 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:824 msgid "Capacity" msgstr "Χωρητικότητα" @@ -2154,7 +2154,7 @@ msgid "City" msgstr "Πόλη" #: src/components/common/OccurrenceSelect/index.tsx:133 -#: src/components/routes/event/OccurrencesTab/index.tsx:503 +#: src/components/routes/event/OccurrencesTab/index.tsx:505 msgid "Clear" msgstr "" @@ -2174,7 +2174,7 @@ msgstr "Εκκαθάριση Κειμένου Αναζήτησης" msgid "Clearing removes any per-date override. Affected dates will fall back to the event's default location." msgstr "" -#: src/components/routes/event/OccurrencesTab/index.tsx:331 +#: src/components/routes/event/OccurrencesTab/index.tsx:333 msgid "Click to cancel" msgstr "" @@ -2182,7 +2182,7 @@ msgstr "" msgid "Click to copy" msgstr "Κλικ για αντιγραφή" -#: src/components/routes/event/OccurrencesTab/index.tsx:333 +#: src/components/routes/event/OccurrencesTab/index.tsx:335 msgid "Click to reopen for new sales" msgstr "" @@ -2743,7 +2743,7 @@ msgstr "Δημιουργία Προτύπου {0}" msgid "Create a custom widget to sell tickets on your site." msgstr "Δημιουργήστε προσαρμοσμένο widget για πώληση εισιτηρίων στον ιστότοπό σας." -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:785 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:798 msgid "Create a fixed number" msgstr "" @@ -2879,7 +2879,7 @@ msgstr "Δημιουργία Κωδικού Προσφοράς" msgid "Create Question" msgstr "Δημιουργία Ερώτησης" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:864 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:877 msgid "Create Schedule" msgstr "" @@ -2927,6 +2927,10 @@ msgstr "Δημιουργήστε τη δική σας εκδήλωση" msgid "Created" msgstr "Δημιουργήθηκε" +#: src/components/routes/event/OccurrencesTab/index.tsx:549 +msgid "Creating {0} dates. This may take a moment." +msgstr "Δημιουργία {0} ημερομηνιών. Μπορεί να διαρκέσει λίγο." + #: src/components/routes/welcome/index.tsx:472 msgid "Creating Event..." msgstr "Δημιουργία Εκδήλωσης..." @@ -3066,7 +3070,7 @@ msgstr "Προσαρμόστε τη σελίδα εκδήλωσης" msgid "Customize your organizer page appearance" msgstr "Προσαρμογή εμφάνισης σελίδας διοργανωτή" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:56 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:58 #: src/components/routes/product-widget/OccurrenceSelector/index.tsx:32 msgid "Daily" msgstr "" @@ -3155,7 +3159,7 @@ msgstr "" #: src/components/modals/ManageOccurrenceModal/index.tsx:61 #: src/components/routes/event/OccurrenceDetail/index.tsx:87 -#: src/components/routes/event/OccurrencesTab/index.tsx:184 +#: src/components/routes/event/OccurrencesTab/index.tsx:186 msgid "Date deleted" msgstr "" @@ -3168,7 +3172,7 @@ msgstr "" msgid "Date reactivated" msgstr "" -#: src/components/routes/event/OccurrencesTab/index.tsx:198 +#: src/components/routes/event/OccurrencesTab/index.tsx:200 msgid "Date reopened for new sales" msgstr "" @@ -3184,15 +3188,15 @@ msgstr "" msgid "Dates with sessions" msgstr "" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:93 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:95 msgid "day" msgstr "" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:659 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:672 msgid "Day" msgstr "" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:676 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:689 msgid "Day of Month" msgstr "" @@ -3200,19 +3204,19 @@ msgstr "" msgid "Day one capacity" msgstr "Χωρητικότητα πρώτης ημέρας" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:101 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:103 msgid "days" msgstr "" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:635 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:648 msgid "Days of Month" msgstr "" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:605 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:618 msgid "Days of Week" msgstr "" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:82 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:84 msgid "December" msgstr "" @@ -3230,7 +3234,7 @@ msgstr "Προεπιλογή" msgid "Default attendee information collection" msgstr "Προεπιλεγμένη συλλογή πληροφοριών συμμετέχοντα" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:815 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:828 msgid "Default capacity per date" msgstr "" @@ -3253,7 +3257,7 @@ msgstr "διαγραφή" #: src/components/common/QuestionsTable/index.tsx:150 #: src/components/common/TaxAndFeeList/index.tsx:81 #: src/components/routes/admin/FailedJobs/index.tsx:209 -#: src/components/routes/event/OccurrencesTab/index.tsx:500 +#: src/components/routes/event/OccurrencesTab/index.tsx:502 #: src/components/routes/event/OccurrencesTab/OccurrenceMenu.tsx:62 msgid "Delete" msgstr "Διαγραφή" @@ -3262,7 +3266,7 @@ msgstr "Διαγραφή" msgid "Delete \"{0}\"?" msgstr "Διαγραφή \"{0}\";" -#: src/components/routes/event/OccurrencesTab/index.tsx:247 +#: src/components/routes/event/OccurrencesTab/index.tsx:249 msgid "Delete {count} selected date(s)? Dates with orders will be skipped. This cannot be undone." msgstr "" @@ -3344,7 +3348,7 @@ msgstr "Διαγραφή αυτής της ερώτησης; Δεν μπορεί msgid "Delete webhook" msgstr "Διαγραφή webhook" -#: src/components/routes/event/OccurrencesTab/index.tsx:253 +#: src/components/routes/event/OccurrencesTab/index.tsx:255 msgid "Deleted {0} date(s)" msgstr "" @@ -3565,7 +3569,7 @@ msgstr "π.χ. 180 (3 ώρες)" #: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:452 #: src/components/routes/event/OccurrencesTab/OccurrenceEditModal/index.tsx:450 -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:714 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:727 msgid "e.g. Morning Session" msgstr "" @@ -3724,7 +3728,7 @@ msgstr "Επεξεργασία webhook" msgid "Edit Webhook" msgstr "Επεξεργασία Webhook" -#: src/components/routes/event/OccurrencesTab/index.tsx:306 +#: src/components/routes/event/OccurrencesTab/index.tsx:308 msgid "Edited" msgstr "" @@ -3913,7 +3917,7 @@ msgstr "Ενεργοποίηση Λίστας Αναμονής" msgid "Enabled" msgstr "Ενεργοποιημένο" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:704 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:717 msgid "End" msgstr "" @@ -3934,7 +3938,7 @@ msgstr "Ημερομηνία & Ώρα Λήξης (προαιρετικό)" msgid "End date must be after start date" msgstr "Η ημερομηνία λήξης πρέπει να είναι μετά την ημερομηνία έναρξης" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:771 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:784 msgid "End on a date" msgstr "" @@ -4409,7 +4413,7 @@ msgstr "Αποτυχία ακύρωσης συμμετέχοντα" msgid "Failed to cancel date" msgstr "" -#: src/components/routes/event/OccurrencesTab/index.tsx:239 +#: src/components/routes/event/OccurrencesTab/index.tsx:241 msgid "Failed to cancel dates" msgstr "" @@ -4429,10 +4433,14 @@ msgstr "Αποτυχία δημιουργίας συνεργάτη" msgid "Failed to create configuration" msgstr "Αποτυχία δημιουργίας ρύθμισης" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:530 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:543 msgid "Failed to create schedule" msgstr "" +#: src/hooks/useOccurrenceGenerationPolling.ts:44 +msgid "Failed to create schedule. Please try again." +msgstr "Η δημιουργία του προγράμματος απέτυχε. Παρακαλώ δοκιμάστε ξανά." + #: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:192 #: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:195 msgid "Failed to create template" @@ -4444,7 +4452,7 @@ msgstr "Αποτυχία διαγραφής ρύθμισης" #: src/components/modals/ManageOccurrenceModal/index.tsx:64 #: src/components/routes/event/OccurrenceDetail/index.tsx:90 -#: src/components/routes/event/OccurrencesTab/index.tsx:185 +#: src/components/routes/event/OccurrencesTab/index.tsx:187 msgid "Failed to delete date" msgstr "" @@ -4452,7 +4460,7 @@ msgstr "" msgid "Failed to delete date. It may have existing orders." msgstr "" -#: src/components/routes/event/OccurrencesTab/index.tsx:256 +#: src/components/routes/event/OccurrencesTab/index.tsx:258 msgid "Failed to delete dates" msgstr "" @@ -4540,7 +4548,7 @@ msgstr "Αποτυχία αφαίρεσης από λίστα αναμονής" msgid "Failed to remove override" msgstr "" -#: src/components/routes/event/OccurrencesTab/index.tsx:199 +#: src/components/routes/event/OccurrencesTab/index.tsx:201 msgid "Failed to reopen date" msgstr "" @@ -4677,7 +4685,7 @@ msgstr "" msgid "Fast payouts to your bank" msgstr "" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:72 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:74 msgid "February" msgstr "" @@ -4769,7 +4777,7 @@ msgstr "" msgid "Finish setup" msgstr "" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:63 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:65 msgid "First" msgstr "" @@ -4882,7 +4890,7 @@ msgstr "Κείμενο Υποσέλιδου" msgid "Forgot password?" msgstr "Ξεχάσατε τον κωδικό;" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:66 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:68 msgid "Fourth" msgstr "" @@ -4909,11 +4917,11 @@ msgstr "Δωρεάν προϊόν, δεν απαιτούνται στοιχεί msgid "French" msgstr "Γαλλικά" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:586 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:599 msgid "Frequency" msgstr "" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:50 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:52 msgid "Fri" msgstr "" @@ -5004,7 +5012,7 @@ msgstr "GitHub" #: src/components/routes/event/OccurrenceDetail/index.tsx:72 #: src/components/routes/event/OccurrencesTab/cancelOccurrenceDialog.tsx:49 -#: src/components/routes/event/OccurrencesTab/index.tsx:221 +#: src/components/routes/event/OccurrencesTab/index.tsx:223 #: src/components/routes/event/OccurrencesTab/OccurrenceEditModal/index.tsx:339 #: src/components/routes/event/OccurrencesTab/OccurrenceEditModal/index.tsx:363 msgid "Go Back" @@ -5271,7 +5279,7 @@ msgstr "Πώς εφαρμόζεται η έκπτωση;" msgid "How long a customer has to complete their purchase after receiving an offer. Leave empty for no timeout." msgstr "Πόσο χρόνο έχει ένας πελάτης να ολοκληρώσει την αγορά του μετά από μια προσφορά. Αφήστε κενό για χωρίς χρονικό όριο." -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:750 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:763 msgid "How long does the schedule run?" msgstr "" @@ -5283,7 +5291,7 @@ msgstr "Πόσα λεπτά έχει ο πελάτης να ολοκληρώσε msgid "How many times can this code be used?" msgstr "Πόσες φορές μπορεί να χρησιμοποιηθεί αυτός ο κωδικός;" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:581 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:594 msgid "How often?" msgstr "" @@ -5589,7 +5597,7 @@ msgstr "στοιχείο(-α)" msgid "Items" msgstr "Στοιχεία" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:71 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:73 msgid "January" msgstr "" @@ -5640,11 +5648,11 @@ msgstr "Εγγραφή στη Λίστα Αναμονής για {productDisplay msgid "Joined" msgstr "Εντάχθηκε" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:77 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:79 msgid "July" msgstr "" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:76 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:78 msgid "June" msgstr "" @@ -5670,7 +5678,7 @@ msgstr "" #: src/components/forms/ProductForm/index.tsx:108 #: src/components/routes/event/OccurrencesTab/OccurrenceEditModal/index.tsx:449 -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:711 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:724 #: src/components/routes/event/Reports/OccurrenceSummaryReport/index.tsx:45 msgid "Label" msgstr "Ετικέτα" @@ -5685,7 +5693,7 @@ msgstr "" msgid "Language" msgstr "Γλώσσα" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:67 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:69 msgid "Last" msgstr "" @@ -5794,7 +5802,7 @@ msgid "Leave blank to use the default word \"Invoice\"" msgstr "Αφήστε κενό για χρήση της προεπιλεγμένης λέξης \"Τιμολόγιο\"" #: src/components/routes/event/OccurrencesTab/OccurrenceEditModal/index.tsx:507 -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:816 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:829 msgid "Leave empty for unlimited" msgstr "" @@ -5834,7 +5842,7 @@ msgstr "LinkedIn" msgid "Links Allowed" msgstr "Επιτρέπονται Σύνδεσμοι" -#: src/components/routes/event/OccurrencesTab/index.tsx:470 +#: src/components/routes/event/OccurrencesTab/index.tsx:472 msgid "List" msgstr "" @@ -6003,7 +6011,7 @@ msgstr "" msgid "Manage attendee" msgstr "Διαχείριση συμμετέχοντα" -#: src/components/routes/event/OccurrencesTab/index.tsx:460 +#: src/components/routes/event/OccurrencesTab/index.tsx:462 msgid "Manage dates and times for your recurring event" msgstr "" @@ -6074,7 +6082,7 @@ msgstr "Χειροκίνητη προσθήκη Συμμετέχοντα" msgid "Manually Add Attendee" msgstr "Χειροκίνητη Προσθήκη Συμμετέχοντα" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:73 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:75 msgid "March" msgstr "" @@ -6098,7 +6106,7 @@ msgstr "Μέγ. Παραλήπτες / Μήνυμα" msgid "Maximum Per Order" msgstr "Μέγιστο ανά Παραγγελία" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:75 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:77 msgid "May" msgstr "" @@ -6214,7 +6222,7 @@ msgstr "Διάφορες Ρυθμίσεις" msgid "Mode" msgstr "" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:46 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:48 msgid "Mon" msgstr "" @@ -6230,24 +6238,24 @@ msgstr "Τα χρηματικά ποσά είναι κατά προσέγγισ msgid "Monitor and manage failed background jobs" msgstr "Παρακολούθηση και διαχείριση αποτυχημένων εργασιών παρασκηνίου" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:95 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:97 msgid "month" msgstr "" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:671 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:684 msgid "Month" msgstr "Μήνας" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:58 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:60 #: src/components/routes/product-widget/OccurrenceSelector/index.tsx:41 msgid "Monthly" msgstr "" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:624 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:637 msgid "Monthly Pattern" msgstr "" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:103 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:105 msgid "months" msgstr "" @@ -6516,7 +6524,7 @@ msgstr "" msgid "No dates match the current filters." msgstr "" -#: src/components/routes/event/OccurrencesTab/index.tsx:570 +#: src/components/routes/event/OccurrencesTab/index.tsx:580 msgid "No dates match your filters" msgstr "" @@ -6529,7 +6537,7 @@ msgstr "" msgid "No dates scheduled" msgstr "Δεν έχουν προγραμματιστεί ημερομηνίες" -#: src/components/routes/event/OccurrencesTab/index.tsx:570 +#: src/components/routes/event/OccurrencesTab/index.tsx:580 msgid "No dates scheduled yet" msgstr "" @@ -6820,11 +6828,11 @@ msgstr "" msgid "Notify organizer of new orders" msgstr "Ειδοποίηση διοργανωτή για νέες παραγγελίες" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:81 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:83 msgid "November" msgstr "" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:800 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:813 msgid "Number of dates to create" msgstr "" @@ -6849,7 +6857,7 @@ msgid "Occurrence Cancelled" msgstr "" #: src/components/layouts/Event/index.tsx:113 -#: src/components/routes/event/OccurrencesTab/index.tsx:461 +#: src/components/routes/event/OccurrencesTab/index.tsx:463 msgid "Occurrence Schedule" msgstr "" @@ -6871,7 +6879,7 @@ msgstr "" msgid "Occurrences can be configured after creation" msgstr "" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:80 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:82 msgid "October" msgstr "" @@ -6965,7 +6973,7 @@ msgstr "Σε Εξέλιξη" #: src/components/common/EventCard/index.tsx:103 #: src/components/layouts/OrganizerHomepage/EventCard/index.tsx:49 -#: src/components/routes/event/OccurrencesTab/index.tsx:316 +#: src/components/routes/event/OccurrencesTab/index.tsx:318 #: src/components/routes/event/OccurrencesTab/OccurrenceEditModal/index.tsx:473 #: src/components/routes/my-tickets/index.tsx:56 #: src/components/routes/product-widget/OccurrenceSelector/index.tsx:122 @@ -7080,7 +7088,7 @@ msgstr "Επιλογές" msgid "or" msgstr "ή" -#: src/components/routes/event/OccurrencesTab/index.tsx:593 +#: src/components/routes/event/OccurrencesTab/index.tsx:603 msgid "or add a single date" msgstr "" @@ -7088,7 +7096,7 @@ msgstr "" msgid "Or enable offline payments and disable Stripe" msgstr "Ή ενεργοποιήστε τις πληρωμές εκτός σύνδεσης και απενεργοποιήστε το Stripe" -#: src/components/routes/event/OccurrencesTab/index.tsx:413 +#: src/components/routes/event/OccurrencesTab/index.tsx:415 msgid "order" msgstr "" @@ -7250,7 +7258,7 @@ msgstr "Η παραγγελία ενημερώθηκε επιτυχώς" msgid "Order was cancelled" msgstr "Η παραγγελία ακυρώθηκε" -#: src/components/routes/event/OccurrencesTab/index.tsx:413 +#: src/components/routes/event/OccurrencesTab/index.tsx:415 #: src/components/routes/event/orders.tsx:197 msgid "orders" msgstr "" @@ -7503,7 +7511,7 @@ msgid "Passwords are not the same" msgstr "Οι κωδικοί δεν ταιριάζουν" #: src/components/layouts/OrganizerHomepage/index.tsx:291 -#: src/components/routes/event/OccurrencesTab/index.tsx:484 +#: src/components/routes/event/OccurrencesTab/index.tsx:486 #: src/components/routes/organizer/Reports/EventsPerformanceReport/index.tsx:30 msgid "Past" msgstr "Προηγούμενες" @@ -7707,15 +7715,15 @@ msgstr "Προσωπικές Πληροφορίες" msgid "Phone" msgstr "Τηλέφωνο" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:372 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:379 msgid "Pick an end date" msgstr "" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:380 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:387 msgid "Pick at least one day of the month" msgstr "" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:369 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:376 msgid "Pick at least one day of the week" msgstr "" @@ -7765,7 +7773,7 @@ msgstr "Έσοδα Πλατφόρμας" msgid "Please add at least one option" msgstr "Παρακαλώ προσθέστε τουλάχιστον μία επιλογή" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:527 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:540 #: src/hooks/useFormErrorResponseHandler.tsx:18 msgid "Please check the provided information is correct" msgstr "Παρακαλώ ελέγξτε ότι οι παρεχόμενες πληροφορίες είναι σωστές" @@ -7895,7 +7903,7 @@ msgstr "Δημοφιλείς Εκδηλώσεις (Τελευταίες 14 Ημ msgid "Portuguese" msgstr "Πορτογαλικά" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:654 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:667 msgid "Position" msgstr "" @@ -8385,7 +8393,7 @@ msgstr "Λογαριασμοί Παραπομπής" msgid "Refresh Preview" msgstr "Ανανέωση Προεπισκόπησης" -#: src/components/routes/event/OccurrencesTab/index.tsx:216 +#: src/components/routes/event/OccurrencesTab/index.tsx:218 msgid "Refund all orders for these dates" msgstr "" @@ -8494,11 +8502,11 @@ msgstr "Αφαιρεί εντελώς τις εξαντλημένες ημερο msgid "Reopen for new sales" msgstr "" -#: src/components/routes/event/OccurrencesTab/index.tsx:192 +#: src/components/routes/event/OccurrencesTab/index.tsx:194 msgid "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." msgstr "" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:591 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:604 msgid "Repeat every" msgstr "" @@ -8699,7 +8707,7 @@ msgstr "Ανάκληση Προσφοράς" msgid "Role" msgstr "Ρόλος" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:772 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:785 msgid "Run until a specific date" msgstr "" @@ -8786,7 +8794,7 @@ msgstr "Δείγμα τιμής εισιτηρίου" msgid "Sample Venue" msgstr "Δείγμα Χώρου" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:51 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:53 msgid "Sat" msgstr "" @@ -8836,7 +8844,7 @@ msgstr "" msgid "Save Organizer" msgstr "Αποθήκευση Διοργανωτή" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:864 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:877 msgid "Save Schedule" msgstr "" @@ -8900,11 +8908,12 @@ msgstr "" msgid "Schedule added" msgstr "" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:520 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:530 +#: src/hooks/useOccurrenceGenerationPolling.ts:36 msgid "Schedule created successfully" msgstr "" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:793 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:806 msgid "Schedule ends on" msgstr "" @@ -8916,7 +8925,7 @@ msgstr "Προγραμματισμός για αργότερα" msgid "Schedule Message" msgstr "Προγραμματισμός Μηνύματος" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:755 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:768 msgid "Schedule starts on" msgstr "" @@ -9039,7 +9048,7 @@ msgstr "Αναζήτηση..." msgid "Seasonal" msgstr "" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:64 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:66 msgid "Second" msgstr "" @@ -9215,7 +9224,7 @@ msgstr "Επιλέξτε ποια γεγονότα θα ενεργοποιήσο msgid "Select..." msgstr "Επιλογή..." -#: src/components/routes/event/OccurrencesTab/index.tsx:495 +#: src/components/routes/event/OccurrencesTab/index.tsx:497 msgid "selected" msgstr "" @@ -9345,7 +9354,7 @@ msgstr "Ρυθμίσεις SEO" msgid "SEO Title" msgstr "Τίτλος SEO" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:79 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:81 msgid "September" msgstr "" @@ -9373,7 +9382,7 @@ msgstr "Ορίστε προεπιλεγμένες ρυθμίσεις για νέ msgid "Set how long each date lasts" msgstr "" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:784 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:797 msgid "Set number of dates" msgstr "" @@ -9393,7 +9402,7 @@ msgstr "Ορίστε τον αρχικό αριθμό για την αρίθμη msgid "Set to unlimited (remove limit)" msgstr "" -#: src/components/routes/event/OccurrencesTab/index.tsx:575 +#: src/components/routes/event/OccurrencesTab/index.tsx:585 msgid "Set up a recurring schedule to automatically create dates, or add them one at a time." msgstr "" @@ -9410,8 +9419,8 @@ msgstr "" msgid "Set up schedule" msgstr "" -#: src/components/routes/event/OccurrencesTab/index.tsx:532 -#: src/components/routes/event/OccurrencesTab/index.tsx:586 +#: src/components/routes/event/OccurrencesTab/index.tsx:535 +#: src/components/routes/event/OccurrencesTab/index.tsx:596 msgid "Set Up Schedule" msgstr "" @@ -9427,7 +9436,7 @@ msgstr "Ρυθμίστε τον οργανισμό σας" msgid "Set up your schedule" msgstr "" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:569 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:582 msgid "Set Up Your Schedule" msgstr "" @@ -9564,7 +9573,7 @@ msgstr "Εμφάνιση φόρου και τελών ξεχωριστά" msgid "Showing {0} of {totalRows} records" msgstr "Εμφάνιση {0} από {totalRows} εγγραφές" -#: src/components/routes/event/OccurrencesTab/index.tsx:614 +#: src/components/routes/event/OccurrencesTab/index.tsx:624 msgid "Showing {0}–{1} of {2}" msgstr "" @@ -9645,7 +9654,7 @@ msgstr "Κοινωνικοί Σύνδεσμοι & Ιστοσελίδα" #: src/components/common/ProductsTable/SortableProduct/index.tsx:387 #: src/components/modals/ManageOccurrenceModal/index.tsx:186 -#: src/components/routes/event/OccurrencesTab/index.tsx:369 +#: src/components/routes/event/OccurrencesTab/index.tsx:371 msgid "Sold" msgstr "Πωλήθηκε" @@ -9753,7 +9762,7 @@ msgstr "" msgid "Standard product with a fixed price" msgstr "Τυπικό προϊόν με σταθερή τιμή" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:696 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:709 msgid "Start" msgstr "" @@ -9846,7 +9855,7 @@ msgstr "" #: src/components/routes/admin/Messages/index.tsx:120 #: src/components/routes/admin/Messages/index.tsx:167 #: src/components/routes/admin/Messages/index.tsx:294 -#: src/components/routes/event/OccurrencesTab/index.tsx:326 +#: src/components/routes/event/OccurrencesTab/index.tsx:328 #: src/components/routes/event/Reports/OccurrenceSummaryReport/index.tsx:51 #: src/components/routes/event/Reports/PromoCodesReport/index.tsx:88 #: src/components/routes/organizer/Reports/EventsPerformanceReport/index.tsx:62 @@ -10104,7 +10113,7 @@ msgstr "Καλοκαιρινό Μουσικό Φεστιβάλ {0}" msgid "Summer Music Festival 2025" msgstr "Καλοκαιρινό Μουσικό Φεστιβάλ 2025" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:52 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:54 msgid "Sun" msgstr "" @@ -10231,7 +10240,7 @@ msgstr "Πείτε μας για την εκδήλωσή σας" msgid "Tell us about your organization. This information will be displayed on your event pages." msgstr "Πείτε μας για τον οργανισμό σας. Αυτές οι πληροφορίες θα εμφανίζονται στις σελίδες εκδηλώσεων." -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:573 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:586 msgid "Tell us how often your event repeats and we'll create all the dates for you." msgstr "" @@ -10325,7 +10334,7 @@ msgstr "Η διεύθυνση email άλλαξε. Ο συμμετέχων θα msgid "The event you're looking for is not available at the moment. It may have been removed, expired, or the URL might be incorrect." msgstr "Η εκδήλωση που αναζητάτε δεν είναι διαθέσιμη αυτή τη στιγμή. Μπορεί να αφαιρέθηκε, να έληξε ή το URL μπορεί να είναι λανθασμένο." -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:756 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:769 msgid "The first date this schedule will generate from." msgstr "" @@ -10345,7 +10354,7 @@ msgstr "Ο σύνδεσμος που προσπαθείτε να αποκτήσ msgid "The link you clicked is invalid." msgstr "Ο σύνδεσμος που κάνατε κλικ δεν είναι έγκυρος." -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:840 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:853 msgid "The maximum is {MAX_PREVIEW} sessions. Please reduce the date range, frequency, or number of sessions per day." msgstr "" @@ -10481,7 +10490,7 @@ msgstr "Αυτά τα πρότυπα θα χρησιμοποιούνται ως 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 "Αυτά τα πρότυπα θα παρακάμψουν τις προεπιλογές διοργανωτή μόνο για αυτή την εκδήλωση. Εάν δεν έχει οριστεί προσαρμοσμένο πρότυπο, θα χρησιμοποιηθεί το πρότυπο διοργανωτή." -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:65 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:67 msgid "Third" msgstr "" @@ -10744,7 +10753,7 @@ msgstr "Αυτό δεν θα είναι ορατό στους πελάτες, α msgid "Throughput" msgstr "" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:49 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:51 msgid "Thu" msgstr "" @@ -10881,7 +10890,7 @@ msgstr "Τα προϊόντα με βαθμίδες σας επιτρέπουν msgid "TikTok" msgstr "TikTok" -#: src/components/routes/event/OccurrencesTab/index.tsx:290 +#: src/components/routes/event/OccurrencesTab/index.tsx:292 msgid "Time" msgstr "" @@ -10912,7 +10921,7 @@ msgstr "Φορές Χρήσης" msgid "Timezone" msgstr "Ζώνη Ώρας" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:702 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:715 msgid "to" msgstr "" @@ -11056,7 +11065,7 @@ msgstr "Παρακολούθηση & Αναλυτικά" msgid "Try a different search term or filter" msgstr "" -#: src/components/routes/event/OccurrencesTab/index.tsx:574 +#: src/components/routes/event/OccurrencesTab/index.tsx:584 msgid "Try adjusting your filters to see more dates." msgstr "" @@ -11069,7 +11078,7 @@ msgstr "Δοκιμάστε άλλο email" msgid "Try Hi.Events Free" msgstr "Δοκιμάστε το Hi.Events Δωρεάν" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:47 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:49 msgid "Tue" msgstr "" @@ -11232,7 +11241,7 @@ msgstr "Μη Αξιόπιστο" #: src/components/common/EventsDashboardStatusButtons/index.tsx:20 #: src/components/common/EventStatusBadge/index.tsx:16 #: src/components/layouts/OrganizerHomepage/index.tsx:285 -#: src/components/routes/event/OccurrencesTab/index.tsx:483 +#: src/components/routes/event/OccurrencesTab/index.tsx:485 #: src/components/routes/organizer/Reports/EventsPerformanceReport/index.tsx:33 msgid "Upcoming" msgstr "Επερχόμενες" @@ -11880,7 +11889,7 @@ msgstr "Webhooks" msgid "Website" msgstr "Ιστότοπος" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:48 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:50 msgid "Wed" msgstr "" @@ -11888,16 +11897,16 @@ msgstr "" msgid "Wednesday" msgstr "" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:94 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:96 msgid "week" msgstr "" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:57 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:59 #: src/components/routes/product-widget/OccurrenceSelector/index.tsx:35 msgid "Weekly" msgstr "" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:102 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:104 msgid "weeks" msgstr "" @@ -11953,7 +11962,7 @@ msgstr "Σε ποια προϊόντα πρέπει να ισχύει αυτή msgid "What time will you be arriving?" msgstr "Τι ώρα θα φτάσετε;" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:688 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:701 msgid "What time?" msgstr "" @@ -12140,7 +12149,7 @@ msgstr "Γράψτε το μήνυμά σας εδώ..." msgid "X (Twitter)" msgstr "X (Twitter)" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:96 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:98 msgid "year" msgstr "" @@ -12150,12 +12159,12 @@ msgstr "" msgid "Year to date" msgstr "Από αρχής έτους" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:59 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:61 #: src/components/routes/product-widget/OccurrenceSelector/index.tsx:43 msgid "Yearly" msgstr "" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:104 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:106 msgid "years" msgstr "" @@ -12200,7 +12209,7 @@ msgstr "Μπορείτε να ρυθμίσετε πρόσθετα τέλη υπ msgid "You can create a promo code which targets this product on the" msgstr "Μπορείτε να δημιουργήσετε κωδικό προσφοράς για αυτό το προϊόν στη" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:823 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:836 msgid "You can override this for individual dates later." msgstr "" diff --git a/frontend/src/locales/en.js b/frontend/src/locales/en.js index 337a499421..2dda7bee8d 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\"],\"/HkCs4\":[[\"0\"],\" tickets\"],\"30bTiU\":[[\"activeCount\"],\" enabled\"],\"jTs4am\":[[\"appName\"],\" logo\"],\"gbJOk9\":[[\"attendeeCount\"],\" attendees are registered for this session.\"],\"TjbIUI\":[[\"availableCount\"],\" of \",[\"totalCount\"],\" available\"],\"PSChHo\":[[\"capacity\"],\" spots left\"],\"lzQ8/M\":[[\"checkedIn\"],\" / \",[\"total\"],\" checked in\"],\"RZ0JX3\":[[\"chipTime\"],\", Sold Out\"],\"M4KnFs\":[[\"chipTime\"],\", Sold Out, waitlist available\"],\"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\"],\"VFLd0I\":[[\"slotCount\"],\" times available\"],\"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.\",\"Il5Uid\":\"<0>This is the total quantity available across every date in your schedule combined — not a per-date limit. To limit attendance for each date, set a capacity 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\",\"y2Jh0m\":\"1 time available\",\"cGtUz6\":\"1 week before event\",\"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.\",\"RQ5kDd\":\"A message to display when there are no products in this category.\",\"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\",\"QeupRg\":\"Add dates\",\"Q219NT\":\"Add Dates\",\"yjB5VC\":\"Add dates and times for your recurring event\",\"Z8idyM\":\"Add details\",\"wpirGs\":\"Add event details\",\"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.\",\"3e31kI\":\"After your event is created, you can choose how often it repeats from the dashboard.\",\"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.\",\"VZdky1\":\"Allow buyers to copy their details to all attendees\",\"F3mW5G\":\"Allow customers to join a waitlist when this product is sold out\",\"4CMO/q\":\"Allow customers to join a waitlist when this product is sold out. Customers join the waitlist for a specific date.\",\"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.\",\"OPFdAM\":\"An optional description of this category to display on the event page.\",\"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.\",\"jVoYha\":[\"applied — \",[\"0\"],\" off your order\"],\"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.\",\"RiF/yT\":\"Are you sure you want to delete this image?\",\"b3+Qku\":\"Are you sure you want to delete this tax or fee? It will no longer be applied to new orders.\",\"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?\",\"b7tkGp\":\"Are you sure you want to revoke this invitation?\",\"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\",\"Z44eZS\":\"At least one product must stay available for this date. To make the date inaccessible, cancel it from the schedule instead.\",\"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\",\"94aQMU\":\"Attendee Information\",\"KkrBiR\":\"Attendee information collection\",\"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\",\"Xp+ywP\":\"Available once payment completes\",\"dwDH1K\":[\"Available times on \",[\"dayName\"]],\"clF06r\":\"Available to Refund\",\"NB5+UG\":\"Available Tokens\",\"L+wGOG\":\"Awaiting\",\"qcw2OD\":\"Awaiting pay\",\"kNmmvE\":\"Awesome Events Ltd.\",\"TeSaQO\":\"Back to Accounts\",\"kYqM1A\":\"Back to Event\",\"s5QRF3\":\"Back to messages\",\"td/bh+\":\"Back to Reports\",\"nsm7BA\":\"Back to search\",\"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\",\"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.\",\"FPpqc7\":[\"Cancelling \",[\"0\"],\" date(s). This may take a moment to complete.\"],\"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\",\"DRK3Bq\":\"Category deleted successfully\",\"o+XJ9D\":\"Change\",\"kJkjoB\":\"Change duration\",\"J0KExZ\":\"Change the attendee limit\",\"ssospy\":\"Change time\",\"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\",\"pHEhf+\":\"Choose a typeface that matches your brand. Fonts are self-hosted via Bunny Fonts.\",\"Zok1Gx\":\"Choose an organizer\",\"pkk46Q\":\"Choose an Organizer\",\"Ag32+c\":\"Choose another date\",\"Crr3pG\":\"Choose calendar\",\"Z38ZJu\":\"Choose how the event date is shown on the ticket\",\"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\",\"/K4Vqr\":\"Connect Stripe to accept payments\",\"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\",\"m8WD6t\":\"Continue Setup\",\"0GwUT4\":\"Continue to Checkout\",\"sBV87H\":\"Continue to event creation\",\"nKtyYu\":\"Continue to next step\",\"F3/nus\":\"Continue to Payment\",\"s30OcA\":\"Control how dates and times are shown on the event page\",\"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\",\"/lq4oO\":\"Could not save date\",\"mHu0az\":\"Couldn't send verification email. Please try again.\",\"QOIm+S\":\"Counts include all upcoming dates. Each person is offered a spot for the date they joined for.\",\"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\",\"jqhTmw\":\"Create a list for this date\",\"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\",\"eWEV9G\":\"Create new password\",\"wl2iai\":\"Create Schedule\",\"8AiKIu\":\"Create Ticket or Product\",\"/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\",\"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\",\"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\",\"vHbfoQ\":\"Date reactivated\",\"hvah+S\":\"Date reopened for new sales\",\"Ez0YsD\":\"Date updated successfully\",\"Te33mU\":\"Dates are managed per occurrence\",\"91zCxb\":\"Dates with sessions\",\"/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\",\"KpnwJK\":[\"Delete \\\"\",[\"0\"],\"\\\"?\"],\"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\",\"IQTR34\":\"Delete this category? Any products in it will also be deleted. This cannot be undone.\",\"/1wMxk\":\"Delete this product? This cannot be undone.\",\"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.\",\"HtaSQp\":\"Display how many spots are left on each date in the ticket widget. You can override this for individual dates.\",\"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.\",\"Xfsjel\":\"Each product\",\"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\",\"ZayGC7\":\"End on a date\",\"48Y16Q\":\"End time (optional)\",\"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.\",\"SKx/0u\":\"Enter a venue name or address\",\"ppwojw\":\"Enter a venue name or address for in-person events\",\"j+eCIq\":\"Enter address manually\",\"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)\",\"RRlWVA\":\"Entire order\",\"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\",\"+v+GW0\":\"Event date display\",\"7u9/DO\":\"Event deleted successfully\",\"imgKgl\":\"Event Description\",\"IzR/Fc\":\"Event lifetime\",\"PYs3rP\":\"Event name\",\"HhwcTQ\":\"Event Name\",\"WZZzB6\":\"Event name is required\",\"Wd5CDM\":\"Event name should be less than 150 characters\",\"4JzCvP\":\"Event Not Available\",\"mImacG\":\"Event Page\",\"Hk9Ki/\":\"Event restored successfully\",\"JyD0LH\":\"Event Settings\",\"XVLu2v\":\"Event Title\",\"OfmsI9\":\"Event Too New\",\"4SILkp\":\"Event totals\",\"YDVUVl\":\"Event Types\",\"+HeiVx\":\"Event Updated\",\"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\",\"5E23qd\":\"Failed to delete product. Please try again.\",\"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\",\"rVogsf\":\"Fix issues to publish\",\"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\",\"X+U6/w\":\"Font Family\",\"lWxAUo\":\"Food & Drink\",\"nFm+5u\":\"Footer Text\",\"a8nooQ\":\"Fourth\",\"wtuVU4\":\"Frequency\",\"xVhQZV\":\"Fri\",\"39y5bn\":\"Friday\",\"f5UbZ0\":\"Full data ownership\",\"cfvx/y\":\"Full event\",\"MY2SVM\":\"Full refund\",\"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\",\"CZXzs4\":\"Greek\",\"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\",\"uXNYjR\":\"Hide sold out dates and times\",\"g9RcYX\":\"Hide the date\",\"uMwTx7\":\"Hide this category?\",\"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\",\"49Tkiw\":\"How is the discount applied?\",\"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?\",\"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\",\"CY3yHL\":\"If checked, this category will be hidden from the public.\",\"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\",\"/LCAwL\":\"In progress\",\"F1Xp97\":\"Individual attendees\",\"85e6zs\":\"Insert Liquid Token\",\"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\",\"Dn4OyV\":\"Invited\",\"IuMGvq\":\"Invoice\",\"a/bUcL\":\"It happens on more than one date\",\"d+Oe9r\":\"It may have been unpublished or removed. Please check the link and try again.\",\"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.\",\"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\",\"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\",\"gggTBm\":\"LinkedIn\",\"nvOPBA\":\"Links Allowed\",\"2BBAbc\":\"List\",\"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\",\"7w8lJU\":\"Location saved\",\"YsRXDD\":\"Location updated\",\"A/kIva\":\"location updates\",\"iyZPPR\":\"locations\",\"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\",\"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.\",\"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\",\"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\",\"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.\",\"Zc216S\":\"No date added\",\"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\",\"OtJSnL\":\"No dates scheduled\",\"gEdNe8\":\"No dates scheduled yet\",\"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\",\"IcAC6J\":\"No matching fonts\",\"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\",\"8mw4tm\":\"No products message\",\"wYiAtV\":\"No recent account signups\",\"UW90md\":\"No recipients found\",\"QoAi8D\":\"No response\",\"JeO7SI\":\"No Response\",\"EK/G11\":\"No responses yet\",\"59OWd3\":\"No Saved Locations\",\"mPdY6W\":\"No suggestions\",\"3sRuiW\":\"No Tickets Found\",\"debCrL\":\"No tickets to sell\",\"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\",\"V9flmL\":\"Occurrence Schedule\",\"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.\"],\"6Aih4U\":\"Offline\",\"nO3VbP\":[\"On sale \",[\"0\"]],\"oXOSPE\":\"Online\",\"aqmy5k\":\"Online — provide connection details\",\"LuZBbx\":\"Online & in-person\",\"IXuOqt\":\"Online & in-person — see schedule\",\"WjSpu5\":\"Online Event\",\"scPxI/\":[\"Only \",[\"capacity\"],\" left\"],\"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\",\"wkpaqp\":\"Only show start date and time\",\"DMk8F0\":\"Only tickets count toward capacity\",\"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\",\"eBskDE\":\"Or enable offline payments and disable Stripe\",\"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\",\"xtQzag\":\"Order details\",\"vrSW9M\":\"Order has been canceled and refunded. The order owner has been notified.\",\"rzw+wS\":\"Order Holders\",\"oI/hGR\":\"Order ID\",\"RQCXz6\":\"Order Limits\",\"SO9AEF\":\"Order limits set\",\"vu6Arl\":\"Order Marked as Paid\",\"sLbJQz\":\"Order not found\",\"kvYpYu\":\"Order Not Found\",\"eJ8SvM\":\"Order number, purchase date, purchaser email\",\"FaPYw+\":\"Order owner\",\"eB5vce\":\"Order owners with a specific product\",\"CxLoxM\":\"Order owners with products\",\"UkHo4c\":\"Order Ref\",\"EZy55F\":\"Order Refunded\",\"6eSHqs\":\"Order statuses\",\"oW5877\":\"Order Total\",\"e7eZuA\":\"Order Updated\",\"1SQRYo\":\"Order updated successfully\",\"3NT0Ck\":\"Order was cancelled\",\"V5khLm\":\"orders\",\"sd5IMt\":\"Orders Completed\",\"5It1cQ\":\"Orders Exported\",\"UQ0ACV\":\"Orders Total\",\"B/EBQv\":\"Orders:\",\"qtGTNu\":\"Organic Accounts\",\"P/JHA4\":\"Organizer archived successfully\",\"S3CZ5M\":\"Organizer Dashboard\",\"GzjTd0\":\"Organizer deleted successfully\",\"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\",\"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\",\"+kvxv+\":\"per order\",\"VlXNyK\":\"Per order\",\"NhuGd7\":\"per product\",\"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\",\"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\",\"OESu7I\":\"Prevent overselling by sharing inventory across multiple ticket types.\",\"NgVUL2\":\"Preview checkout form\",\"cs5muu\":\"Preview Event page\",\"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\",\"W0ETyY\":\"Provide at least one address field (venue, street, city, or country).\",\"2W/7Gz\":\"Provide the following before Stripe's next review to keep payouts flowing.\",\"EEYbdt\":\"Publish\",\"JcgJKc\":\"Publish Anyway\",\"evDBV8\":\"Publish Event\",\"2zEfOd\":\"Publish your event\",\"L7nrC8\":\"Publishing makes your event page public and opens it up for registrations.\",\"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.\",\"RENQ6j\":\"Ready to go live?\",\"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\",\"WEYdDv\":\"Recommended\",\"wuhHPE\":\"Recurring\",\"asLqwt\":\"Recurring Event\",\"s3uzsK\":\"Recurring Event Settings\",\"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\",\"FaK/8G\":[\"Refund Order \",[\"0\"]],\"MGbi9P\":\"Refund pending\",\"BDSRuX\":[\"Refunded: \",[\"0\"]],\"bU4bS1\":\"Refunds\",\"rYXfOA\":\"Regional Settings\",\"5tl0Bp\":\"Registration Questions\",\"ZNo5k1\":\"Remaining\",\"Bjh87R\":\"Remove label from all dates\",\"IVZaEo\":\"Remove sold out dates and times from the event page entirely. When disabled, they remain visible and are labelled as sold out.\",\"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...\",\"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\",\"Lf7TCn\":\"Reusable venues appear here automatically as you create events with addresses, and you can add your own.\",\"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\",\"CfuueU\":\"Revoke Offer\",\"RIgKv+\":\"Run until a specific date\",\"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\",\"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...\",\"YnMfsK\":\"Search by name or address...\",\"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...\",\"5WYZKZ\":\"Search results\",\"IG85fV\":\"Search saved locations or find an address...\",\"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\",\"Ps6Xtf\":\"Select a date to see available times\",\"e4L7bF\":\"Select a message to view its contents\",\"zPRPMf\":\"Select a tier\",\"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.\",\"oBXbO4\":\"Selling a physical product? Cap its quantity on the <0>products page instead.\",\"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\",\"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\",\"0Ls9qe\":\"Set up the tickets you'll sell and their prices\",\"xMO+Ao\":\"Set up your organization\",\"5pEFnq\":\"Set up your schedule\",\"h/9JiC\":\"Set Up Your Schedule\",\"zRRuUD\":\"Set up your schedule in the next steps\",\"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\",\"4LZFir\":\"Show entire date range\",\"UVPI5D\":\"Show fewer platforms\",\"Eu/N/d\":\"Show marketing opt-in checkbox\",\"SXzpzO\":\"Show marketing opt-in checkbox by default\",\"b33PL9\":\"Show more platforms\",\"Eut7p9\":\"Show order details to non-logged-in staff\",\"+RoWKN\":\"Show question answers to non-logged-in staff\",\"jbcx6L\":\"Show remaining capacity on event dates\",\"rXxBOx\":\"Show remaining capacity to buyers\",\"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\",\"paESr6\":\"Slovak\",\"9wu8nm\":\"Snapchat\",\"kIKb9e\":\"Social\",\"d0rUsW\":\"Social Links\",\"j/TOB3\":\"Social Links & Website\",\"s9KGXU\":\"Sold\",\"yp+0jj\":\"sold out\",\"1hupow\":\"Sold Out, waitlist available\",\"iACSrw\":\"Some details are hidden from public access. Log in to view everything.\",\"Dia6iz\":\"Something went wrong while deleting the image. Please try again.\",\"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\",\"StWUH4\":\"Start check-in\",\"JcQp9p\":\"Start date & time\",\"0m/ekX\":\"Start Date & Time\",\"izRfYP\":\"Start date is required\",\"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.\",\"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\",\"kRWc2g\":\"Successfully Updated Recurring Event 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\",\"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.\",\"7oksH+\":[\"The discount is deducted from every eligible product. E.g., \",[\"currencySymbol\"],\"10 off × 3 tickets = \",[\"currencySymbol\"],\"30 off.\"],\"sKL8k2\":\"The discount is deducted once from the order total.\",\"cDHM1d\":\"The email address has been changed. The attendee will receive a new ticket at the updated email address.\",\"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.\",\"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.\",\"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\",\"OVSkIF\":\"The quick brown fox jumps over the lazy dog.\",\"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\",\"ybBP2H\":\"There are no products available for this date. Please choose another date.\",\"O7g4eR\":\"There are no upcoming dates for this event\",\"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.\",\"6eaLu/\":\"These prices apply across all dates in your schedule, and tier quantities limit total sales across all dates combined. Sale dates on tiers apply globally. You can override prices for individual dates on the <0>Occurrence Schedule page.\",\"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.\",\"E9BqZw\":\"This date only\",\"RzEvf5\":\"This event has ended\",\"kc4bIA\":\"This event has no tickets or products yet, so attendees won't be able to register.\",\"eMaNd0\":\"This event is not available\",\"YClrdK\":\"This event is not published yet\",\"GL6z+k\":\"This event is sold out\",\"pIwDhS\":\"This event's dates and times are set on the occurrence schedule.\",\"ny5rgr\":\"This is a recurring event\",\"tc64Zz\":\"This is the name of the category that will be displayed on the event page.\",\"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.\",\"5DpZrC\":\"This limits total sales across every date in your schedule combined — it is not a per-date limit. To limit attendance for each date, set a capacity on the <0>Occurrence Schedule page.\",\"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\",\"qEGn8I\":\"This recurring event has no dates yet, so there's nothing for attendees to book.\",\"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.\",\"1LuJNw\":\"This ticket is no longer valid\",\"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\",\"HGuXjF\":\"Ticket holders\",\"CMUt3Y\":\"Ticket Holders\",\"awHmAT\":\"Ticket ID\",\"6czJik\":\"Ticket Logo\",\"t79rDv\":\"Ticket Not Found\",\"6tmWch\":\"Ticket or Product\",\"1tfWrD\":\"Ticket Preview for\",\"KnjoUA\":\"Ticket price\",\"pGZOcL\":\"Ticket resent successfully\",\"o02GZM\":\"Ticket sales have ended for this event\",\"8jLPgH\":\"Ticket Type\",\"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\",\"fXf2r5\":[\"Times shown in \",[\"timezoneAbbr\"]],\"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\",\"SMDzqJ\":\"Total Attendees\",\"orBECM\":\"Total Collected\",\"k5CU8c\":\"Total Entries\",\"4B7oCp\":\"Total Fee\",\"sMMlTX\":\"Total fees\",\"mlvCEl\":\"Total orders\",\"2AW/k5\":\"Total Quantity Across All Dates\",\"dp8BCb\":\"Total tax\",\"vb0Q0/\":\"Total Users\",\"oJjplO\":\"Total Views\",\"rBZ9pz\":\"Tours\",\"orluER\":\"Track account growth and performance by attribution source\",\"YwKzpH\":\"Tracking & Analytics\",\"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\",\"vq2WxD\":\"Tue\",\"G3myU+\":\"Tuesday\",\"Kz91g/\":\"Turkish\",\"GdOhw6\":\"Turn sound off\",\"KUOhTy\":\"Turn sound on\",\"dBeuY2\":\"Twitch\",\"QytzQr\":\"Type \\\"delete\\\" to confirm\",\"nWRfmt\":\"Typography\",\"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\",\"Ef7StM\":\"Unknown\",\"ZBAScj\":\"Unknown Attendee\",\"MEIAzV\":\"Unnamed\",\"K6L5Mx\":\"Unnamed location\",\"7yiFvZ\":\"Unpaid\",\"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\",\"/rsy72\":\"Use event default\",\"0k4cdb\":\"Use order details for all attendees. Attendee names and emails will match the buyer's information.\",\"bA31T4\":\"Use the buyer's details for all attendees\",\"PpgtnC\":\"Use this address\",\"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\",\"YSE15b\":\"View all check-in lists\",\"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\",\"aUi/Dz\":\"Warning: This is the system default configuration. Changes will affect all accounts that don't have a specific configuration assigned.\",\"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.\",\"Fjj/5/\":\"We couldn't load the check-in lists. Please try again.\",\"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.\",\"mfM/HJ\":[\"We'll notify you by email if a spot becomes available for \",[\"productDisplayName\"],\" on \",[\"occurrenceDate\"],\".\"],\"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.\",\"OIkHj+\":\"When a product sells out, customers can join a waitlist to be notified when spots become available. Customers join the waitlist for a specific date, and offers are made per date.\",\"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.\",\"pm9tpn\":\"When enabled, buyers can copy their own name and email onto all attendees at once. Turn this off to remove the \\\"All attendees\\\" option; buyers can still copy to the first attendee, and the rest must be entered individually.\",\"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.\",\"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.\",\"D8baxD\":\"You have paid tickets, but Stripe isn't connected yet, so you can't take payments.\",\"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\"],\"!\"],\"ZlLcht\":[\"You're joining the waitlist for \",[\"occurrenceDate\"],\".\"],\"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\"],\"/HkCs4\":[[\"0\"],\" tickets\"],\"30bTiU\":[[\"activeCount\"],\" enabled\"],\"jTs4am\":[[\"appName\"],\" logo\"],\"gbJOk9\":[[\"attendeeCount\"],\" attendees are registered for this session.\"],\"TjbIUI\":[[\"availableCount\"],\" of \",[\"totalCount\"],\" available\"],\"PSChHo\":[[\"capacity\"],\" spots left\"],\"lzQ8/M\":[[\"checkedIn\"],\" / \",[\"total\"],\" checked in\"],\"RZ0JX3\":[[\"chipTime\"],\", Sold Out\"],\"M4KnFs\":[[\"chipTime\"],\", Sold Out, waitlist available\"],\"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\"],\"VFLd0I\":[[\"slotCount\"],\" times available\"],\"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.\",\"Il5Uid\":\"<0>This is the total quantity available across every date in your schedule combined — not a per-date limit. To limit attendance for each date, set a capacity 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\",\"y2Jh0m\":\"1 time available\",\"cGtUz6\":\"1 week before event\",\"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.\",\"RQ5kDd\":\"A message to display when there are no products in this category.\",\"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\",\"QeupRg\":\"Add dates\",\"Q219NT\":\"Add Dates\",\"yjB5VC\":\"Add dates and times for your recurring event\",\"Z8idyM\":\"Add details\",\"wpirGs\":\"Add event details\",\"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.\",\"3e31kI\":\"After your event is created, you can choose how often it repeats from the dashboard.\",\"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.\",\"VZdky1\":\"Allow buyers to copy their details to all attendees\",\"F3mW5G\":\"Allow customers to join a waitlist when this product is sold out\",\"4CMO/q\":\"Allow customers to join a waitlist when this product is sold out. Customers join the waitlist for a specific date.\",\"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.\",\"OPFdAM\":\"An optional description of this category to display on the event page.\",\"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.\",\"jVoYha\":[\"applied — \",[\"0\"],\" off your order\"],\"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.\",\"RiF/yT\":\"Are you sure you want to delete this image?\",\"b3+Qku\":\"Are you sure you want to delete this tax or fee? It will no longer be applied to new orders.\",\"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?\",\"b7tkGp\":\"Are you sure you want to revoke this invitation?\",\"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\",\"Z44eZS\":\"At least one product must stay available for this date. To make the date inaccessible, cancel it from the schedule instead.\",\"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\",\"94aQMU\":\"Attendee Information\",\"KkrBiR\":\"Attendee information collection\",\"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\",\"Xp+ywP\":\"Available once payment completes\",\"dwDH1K\":[\"Available times on \",[\"dayName\"]],\"clF06r\":\"Available to Refund\",\"NB5+UG\":\"Available Tokens\",\"L+wGOG\":\"Awaiting\",\"qcw2OD\":\"Awaiting pay\",\"kNmmvE\":\"Awesome Events Ltd.\",\"TeSaQO\":\"Back to Accounts\",\"kYqM1A\":\"Back to Event\",\"s5QRF3\":\"Back to messages\",\"td/bh+\":\"Back to Reports\",\"nsm7BA\":\"Back to search\",\"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\",\"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.\",\"FPpqc7\":[\"Cancelling \",[\"0\"],\" date(s). This may take a moment to complete.\"],\"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\",\"DRK3Bq\":\"Category deleted successfully\",\"o+XJ9D\":\"Change\",\"kJkjoB\":\"Change duration\",\"J0KExZ\":\"Change the attendee limit\",\"ssospy\":\"Change time\",\"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\",\"pHEhf+\":\"Choose a typeface that matches your brand. Fonts are self-hosted via Bunny Fonts.\",\"Zok1Gx\":\"Choose an organizer\",\"pkk46Q\":\"Choose an Organizer\",\"Ag32+c\":\"Choose another date\",\"Crr3pG\":\"Choose calendar\",\"Z38ZJu\":\"Choose how the event date is shown on the ticket\",\"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\",\"/K4Vqr\":\"Connect Stripe to accept payments\",\"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\",\"m8WD6t\":\"Continue Setup\",\"0GwUT4\":\"Continue to Checkout\",\"sBV87H\":\"Continue to event creation\",\"nKtyYu\":\"Continue to next step\",\"F3/nus\":\"Continue to Payment\",\"s30OcA\":\"Control how dates and times are shown on the event page\",\"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\",\"/lq4oO\":\"Could not save date\",\"mHu0az\":\"Couldn't send verification email. Please try again.\",\"QOIm+S\":\"Counts include all upcoming dates. Each person is offered a spot for the date they joined for.\",\"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\",\"jqhTmw\":\"Create a list for this date\",\"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\",\"eWEV9G\":\"Create new password\",\"wl2iai\":\"Create Schedule\",\"8AiKIu\":\"Create Ticket or Product\",\"/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\",\"qdv10s\":[\"Creating \",[\"0\"],\" dates. This may take a moment.\"],\"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\",\"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\",\"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\",\"vHbfoQ\":\"Date reactivated\",\"hvah+S\":\"Date reopened for new sales\",\"Ez0YsD\":\"Date updated successfully\",\"Te33mU\":\"Dates are managed per occurrence\",\"91zCxb\":\"Dates with sessions\",\"/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\",\"KpnwJK\":[\"Delete \\\"\",[\"0\"],\"\\\"?\"],\"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\",\"IQTR34\":\"Delete this category? Any products in it will also be deleted. This cannot be undone.\",\"/1wMxk\":\"Delete this product? This cannot be undone.\",\"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.\",\"HtaSQp\":\"Display how many spots are left on each date in the ticket widget. You can override this for individual dates.\",\"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.\",\"Xfsjel\":\"Each product\",\"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\",\"ZayGC7\":\"End on a date\",\"48Y16Q\":\"End time (optional)\",\"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.\",\"SKx/0u\":\"Enter a venue name or address\",\"ppwojw\":\"Enter a venue name or address for in-person events\",\"j+eCIq\":\"Enter address manually\",\"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)\",\"RRlWVA\":\"Entire order\",\"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\",\"+v+GW0\":\"Event date display\",\"7u9/DO\":\"Event deleted successfully\",\"imgKgl\":\"Event Description\",\"IzR/Fc\":\"Event lifetime\",\"PYs3rP\":\"Event name\",\"HhwcTQ\":\"Event Name\",\"WZZzB6\":\"Event name is required\",\"Wd5CDM\":\"Event name should be less than 150 characters\",\"4JzCvP\":\"Event Not Available\",\"mImacG\":\"Event Page\",\"Hk9Ki/\":\"Event restored successfully\",\"JyD0LH\":\"Event Settings\",\"XVLu2v\":\"Event Title\",\"OfmsI9\":\"Event Too New\",\"4SILkp\":\"Event totals\",\"YDVUVl\":\"Event Types\",\"+HeiVx\":\"Event Updated\",\"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\",\"4yLYTb\":\"Failed to create schedule. Please try again.\",\"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\",\"5E23qd\":\"Failed to delete product. Please try again.\",\"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\",\"rVogsf\":\"Fix issues to publish\",\"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\",\"X+U6/w\":\"Font Family\",\"lWxAUo\":\"Food & Drink\",\"nFm+5u\":\"Footer Text\",\"a8nooQ\":\"Fourth\",\"wtuVU4\":\"Frequency\",\"xVhQZV\":\"Fri\",\"39y5bn\":\"Friday\",\"f5UbZ0\":\"Full data ownership\",\"cfvx/y\":\"Full event\",\"MY2SVM\":\"Full refund\",\"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\",\"CZXzs4\":\"Greek\",\"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\",\"uXNYjR\":\"Hide sold out dates and times\",\"g9RcYX\":\"Hide the date\",\"uMwTx7\":\"Hide this category?\",\"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\",\"49Tkiw\":\"How is the discount applied?\",\"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?\",\"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\",\"CY3yHL\":\"If checked, this category will be hidden from the public.\",\"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\",\"/LCAwL\":\"In progress\",\"F1Xp97\":\"Individual attendees\",\"85e6zs\":\"Insert Liquid Token\",\"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\",\"Dn4OyV\":\"Invited\",\"IuMGvq\":\"Invoice\",\"a/bUcL\":\"It happens on more than one date\",\"d+Oe9r\":\"It may have been unpublished or removed. Please check the link and try again.\",\"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.\",\"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\",\"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\",\"gggTBm\":\"LinkedIn\",\"nvOPBA\":\"Links Allowed\",\"2BBAbc\":\"List\",\"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\",\"7w8lJU\":\"Location saved\",\"YsRXDD\":\"Location updated\",\"A/kIva\":\"location updates\",\"iyZPPR\":\"locations\",\"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\",\"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.\",\"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\",\"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\",\"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.\",\"Zc216S\":\"No date added\",\"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\",\"OtJSnL\":\"No dates scheduled\",\"gEdNe8\":\"No dates scheduled yet\",\"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\",\"IcAC6J\":\"No matching fonts\",\"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\",\"8mw4tm\":\"No products message\",\"wYiAtV\":\"No recent account signups\",\"UW90md\":\"No recipients found\",\"QoAi8D\":\"No response\",\"JeO7SI\":\"No Response\",\"EK/G11\":\"No responses yet\",\"59OWd3\":\"No Saved Locations\",\"mPdY6W\":\"No suggestions\",\"3sRuiW\":\"No Tickets Found\",\"debCrL\":\"No tickets to sell\",\"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\",\"V9flmL\":\"Occurrence Schedule\",\"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.\"],\"6Aih4U\":\"Offline\",\"nO3VbP\":[\"On sale \",[\"0\"]],\"oXOSPE\":\"Online\",\"aqmy5k\":\"Online — provide connection details\",\"LuZBbx\":\"Online & in-person\",\"IXuOqt\":\"Online & in-person — see schedule\",\"WjSpu5\":\"Online Event\",\"scPxI/\":[\"Only \",[\"capacity\"],\" left\"],\"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\",\"wkpaqp\":\"Only show start date and time\",\"DMk8F0\":\"Only tickets count toward capacity\",\"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\",\"eBskDE\":\"Or enable offline payments and disable Stripe\",\"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\",\"xtQzag\":\"Order details\",\"vrSW9M\":\"Order has been canceled and refunded. The order owner has been notified.\",\"rzw+wS\":\"Order Holders\",\"oI/hGR\":\"Order ID\",\"RQCXz6\":\"Order Limits\",\"SO9AEF\":\"Order limits set\",\"vu6Arl\":\"Order Marked as Paid\",\"sLbJQz\":\"Order not found\",\"kvYpYu\":\"Order Not Found\",\"eJ8SvM\":\"Order number, purchase date, purchaser email\",\"FaPYw+\":\"Order owner\",\"eB5vce\":\"Order owners with a specific product\",\"CxLoxM\":\"Order owners with products\",\"UkHo4c\":\"Order Ref\",\"EZy55F\":\"Order Refunded\",\"6eSHqs\":\"Order statuses\",\"oW5877\":\"Order Total\",\"e7eZuA\":\"Order Updated\",\"1SQRYo\":\"Order updated successfully\",\"3NT0Ck\":\"Order was cancelled\",\"V5khLm\":\"orders\",\"sd5IMt\":\"Orders Completed\",\"5It1cQ\":\"Orders Exported\",\"UQ0ACV\":\"Orders Total\",\"B/EBQv\":\"Orders:\",\"qtGTNu\":\"Organic Accounts\",\"P/JHA4\":\"Organizer archived successfully\",\"S3CZ5M\":\"Organizer Dashboard\",\"GzjTd0\":\"Organizer deleted successfully\",\"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\",\"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\",\"+kvxv+\":\"per order\",\"VlXNyK\":\"Per order\",\"NhuGd7\":\"per product\",\"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\",\"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\",\"OESu7I\":\"Prevent overselling by sharing inventory across multiple ticket types.\",\"NgVUL2\":\"Preview checkout form\",\"cs5muu\":\"Preview Event page\",\"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\",\"W0ETyY\":\"Provide at least one address field (venue, street, city, or country).\",\"2W/7Gz\":\"Provide the following before Stripe's next review to keep payouts flowing.\",\"EEYbdt\":\"Publish\",\"JcgJKc\":\"Publish Anyway\",\"evDBV8\":\"Publish Event\",\"2zEfOd\":\"Publish your event\",\"L7nrC8\":\"Publishing makes your event page public and opens it up for registrations.\",\"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.\",\"RENQ6j\":\"Ready to go live?\",\"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\",\"WEYdDv\":\"Recommended\",\"wuhHPE\":\"Recurring\",\"asLqwt\":\"Recurring Event\",\"s3uzsK\":\"Recurring Event Settings\",\"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\",\"FaK/8G\":[\"Refund Order \",[\"0\"]],\"MGbi9P\":\"Refund pending\",\"BDSRuX\":[\"Refunded: \",[\"0\"]],\"bU4bS1\":\"Refunds\",\"rYXfOA\":\"Regional Settings\",\"5tl0Bp\":\"Registration Questions\",\"ZNo5k1\":\"Remaining\",\"Bjh87R\":\"Remove label from all dates\",\"IVZaEo\":\"Remove sold out dates and times from the event page entirely. When disabled, they remain visible and are labelled as sold out.\",\"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...\",\"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\",\"Lf7TCn\":\"Reusable venues appear here automatically as you create events with addresses, and you can add your own.\",\"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\",\"CfuueU\":\"Revoke Offer\",\"RIgKv+\":\"Run until a specific date\",\"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\",\"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...\",\"YnMfsK\":\"Search by name or address...\",\"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...\",\"5WYZKZ\":\"Search results\",\"IG85fV\":\"Search saved locations or find an address...\",\"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\",\"Ps6Xtf\":\"Select a date to see available times\",\"e4L7bF\":\"Select a message to view its contents\",\"zPRPMf\":\"Select a tier\",\"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.\",\"oBXbO4\":\"Selling a physical product? Cap its quantity on the <0>products page instead.\",\"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\",\"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\",\"0Ls9qe\":\"Set up the tickets you'll sell and their prices\",\"xMO+Ao\":\"Set up your organization\",\"5pEFnq\":\"Set up your schedule\",\"h/9JiC\":\"Set Up Your Schedule\",\"zRRuUD\":\"Set up your schedule in the next steps\",\"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\",\"4LZFir\":\"Show entire date range\",\"UVPI5D\":\"Show fewer platforms\",\"Eu/N/d\":\"Show marketing opt-in checkbox\",\"SXzpzO\":\"Show marketing opt-in checkbox by default\",\"b33PL9\":\"Show more platforms\",\"Eut7p9\":\"Show order details to non-logged-in staff\",\"+RoWKN\":\"Show question answers to non-logged-in staff\",\"jbcx6L\":\"Show remaining capacity on event dates\",\"rXxBOx\":\"Show remaining capacity to buyers\",\"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\",\"paESr6\":\"Slovak\",\"9wu8nm\":\"Snapchat\",\"kIKb9e\":\"Social\",\"d0rUsW\":\"Social Links\",\"j/TOB3\":\"Social Links & Website\",\"s9KGXU\":\"Sold\",\"yp+0jj\":\"sold out\",\"1hupow\":\"Sold Out, waitlist available\",\"iACSrw\":\"Some details are hidden from public access. Log in to view everything.\",\"Dia6iz\":\"Something went wrong while deleting the image. Please try again.\",\"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\",\"StWUH4\":\"Start check-in\",\"JcQp9p\":\"Start date & time\",\"0m/ekX\":\"Start Date & Time\",\"izRfYP\":\"Start date is required\",\"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.\",\"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\",\"kRWc2g\":\"Successfully Updated Recurring Event 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\",\"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.\",\"7oksH+\":[\"The discount is deducted from every eligible product. E.g., \",[\"currencySymbol\"],\"10 off × 3 tickets = \",[\"currencySymbol\"],\"30 off.\"],\"sKL8k2\":\"The discount is deducted once from the order total.\",\"cDHM1d\":\"The email address has been changed. The attendee will receive a new ticket at the updated email address.\",\"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.\",\"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.\",\"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\",\"OVSkIF\":\"The quick brown fox jumps over the lazy dog.\",\"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\",\"ybBP2H\":\"There are no products available for this date. Please choose another date.\",\"O7g4eR\":\"There are no upcoming dates for this event\",\"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.\",\"6eaLu/\":\"These prices apply across all dates in your schedule, and tier quantities limit total sales across all dates combined. Sale dates on tiers apply globally. You can override prices for individual dates on the <0>Occurrence Schedule page.\",\"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.\",\"E9BqZw\":\"This date only\",\"RzEvf5\":\"This event has ended\",\"kc4bIA\":\"This event has no tickets or products yet, so attendees won't be able to register.\",\"eMaNd0\":\"This event is not available\",\"YClrdK\":\"This event is not published yet\",\"GL6z+k\":\"This event is sold out\",\"pIwDhS\":\"This event's dates and times are set on the occurrence schedule.\",\"ny5rgr\":\"This is a recurring event\",\"tc64Zz\":\"This is the name of the category that will be displayed on the event page.\",\"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.\",\"5DpZrC\":\"This limits total sales across every date in your schedule combined — it is not a per-date limit. To limit attendance for each date, set a capacity on the <0>Occurrence Schedule page.\",\"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\",\"qEGn8I\":\"This recurring event has no dates yet, so there's nothing for attendees to book.\",\"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.\",\"1LuJNw\":\"This ticket is no longer valid\",\"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\",\"HGuXjF\":\"Ticket holders\",\"CMUt3Y\":\"Ticket Holders\",\"awHmAT\":\"Ticket ID\",\"6czJik\":\"Ticket Logo\",\"t79rDv\":\"Ticket Not Found\",\"6tmWch\":\"Ticket or Product\",\"1tfWrD\":\"Ticket Preview for\",\"KnjoUA\":\"Ticket price\",\"pGZOcL\":\"Ticket resent successfully\",\"o02GZM\":\"Ticket sales have ended for this event\",\"8jLPgH\":\"Ticket Type\",\"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\",\"fXf2r5\":[\"Times shown in \",[\"timezoneAbbr\"]],\"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\",\"SMDzqJ\":\"Total Attendees\",\"orBECM\":\"Total Collected\",\"k5CU8c\":\"Total Entries\",\"4B7oCp\":\"Total Fee\",\"sMMlTX\":\"Total fees\",\"mlvCEl\":\"Total orders\",\"2AW/k5\":\"Total Quantity Across All Dates\",\"dp8BCb\":\"Total tax\",\"vb0Q0/\":\"Total Users\",\"oJjplO\":\"Total Views\",\"rBZ9pz\":\"Tours\",\"orluER\":\"Track account growth and performance by attribution source\",\"YwKzpH\":\"Tracking & Analytics\",\"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\",\"vq2WxD\":\"Tue\",\"G3myU+\":\"Tuesday\",\"Kz91g/\":\"Turkish\",\"GdOhw6\":\"Turn sound off\",\"KUOhTy\":\"Turn sound on\",\"dBeuY2\":\"Twitch\",\"QytzQr\":\"Type \\\"delete\\\" to confirm\",\"nWRfmt\":\"Typography\",\"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\",\"Ef7StM\":\"Unknown\",\"ZBAScj\":\"Unknown Attendee\",\"MEIAzV\":\"Unnamed\",\"K6L5Mx\":\"Unnamed location\",\"7yiFvZ\":\"Unpaid\",\"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\",\"/rsy72\":\"Use event default\",\"0k4cdb\":\"Use order details for all attendees. Attendee names and emails will match the buyer's information.\",\"bA31T4\":\"Use the buyer's details for all attendees\",\"PpgtnC\":\"Use this address\",\"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\",\"YSE15b\":\"View all check-in lists\",\"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\",\"aUi/Dz\":\"Warning: This is the system default configuration. Changes will affect all accounts that don't have a specific configuration assigned.\",\"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.\",\"Fjj/5/\":\"We couldn't load the check-in lists. Please try again.\",\"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.\",\"mfM/HJ\":[\"We'll notify you by email if a spot becomes available for \",[\"productDisplayName\"],\" on \",[\"occurrenceDate\"],\".\"],\"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.\",\"OIkHj+\":\"When a product sells out, customers can join a waitlist to be notified when spots become available. Customers join the waitlist for a specific date, and offers are made per date.\",\"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.\",\"pm9tpn\":\"When enabled, buyers can copy their own name and email onto all attendees at once. Turn this off to remove the \\\"All attendees\\\" option; buyers can still copy to the first attendee, and the rest must be entered individually.\",\"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.\",\"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.\",\"D8baxD\":\"You have paid tickets, but Stripe isn't connected yet, so you can't take payments.\",\"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\"],\"!\"],\"ZlLcht\":[\"You're joining the waitlist for \",[\"occurrenceDate\"],\".\"],\"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 a05c88bd32..73072e9489 100644 --- a/frontend/src/locales/en.po +++ b/frontend/src/locales/en.po @@ -179,11 +179,11 @@ msgstr "{slotCount} times available" msgid "{totalCount} ticket types" msgstr "{totalCount} ticket types" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:554 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:567 msgid "{totalOccurrences} dates" msgstr "{totalOccurrences} dates" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:547 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:560 msgid "{totalOccurrences} sessions across {0} dates ({1, plural, one {# session} other {# sessions}} per day)" msgstr "{totalOccurrences} sessions across {0} dates ({1, plural, one {# session} other {# sessions}} per day)" @@ -516,7 +516,7 @@ msgstr "Active Events" msgid "Active payment methods" msgstr "Active payment methods" -#: src/components/routes/event/OccurrencesTab/index.tsx:400 +#: src/components/routes/event/OccurrencesTab/index.tsx:402 msgid "Activity" msgstr "Activity" @@ -536,11 +536,11 @@ msgstr "Add a description and venue so attendees know what to expect" msgid "Add a description for this check-in list" msgstr "Add a description for this check-in list" -#: src/components/routes/event/OccurrencesTab/index.tsx:538 +#: src/components/routes/event/OccurrencesTab/index.tsx:541 msgid "Add a Single Date" msgstr "Add a Single Date" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:739 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:752 msgid "Add another time" msgstr "Add another time" @@ -560,7 +560,7 @@ msgstr "Add any notes about the order. These will not be visible to the customer msgid "Add any notes about the order..." msgstr "Add any notes about the order..." -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:375 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:382 msgid "Add at least one time" msgstr "Add at least one time" @@ -580,7 +580,7 @@ msgstr "Add Date" msgid "Add dates" msgstr "Add dates" -#: src/components/routes/event/OccurrencesTab/index.tsx:524 +#: src/components/routes/event/OccurrencesTab/index.tsx:526 msgid "Add Dates" msgstr "Add Dates" @@ -611,7 +611,7 @@ msgstr "Add instructions for offline payments (e.g., bank transfer details, wher msgid "Add Location" msgstr "Add Location" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:743 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:756 msgid "Add multiple times if you run several sessions per day." msgstr "Add multiple times if you run several sessions per day." @@ -796,7 +796,7 @@ msgid "all" msgstr "all" #: src/components/layouts/CheckIn/tabs/SearchTab.tsx:133 -#: src/components/routes/event/OccurrencesTab/index.tsx:485 +#: src/components/routes/event/OccurrencesTab/index.tsx:487 msgid "All" msgstr "All" @@ -987,7 +987,7 @@ msgstr "An unexpected error occurred." msgid "An unexpected error occurred. Please try again." msgstr "An unexpected error occurred. Please try again." -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:849 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:862 msgid "and {0} more..." msgstr "and {0} more..." @@ -1003,7 +1003,7 @@ msgstr "Answers" msgid "Answers provided at checkout (e.g. meal choice)" msgstr "Answers provided at checkout (e.g. meal choice)" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:564 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:577 msgid "Any dates you've manually customized will be kept." msgstr "Any dates you've manually customized will be kept." @@ -1071,7 +1071,7 @@ msgstr "Apply to all tickets" msgid "Approve Message" msgstr "Approve Message" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:74 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:76 msgid "April" msgstr "April" @@ -1127,7 +1127,7 @@ msgstr "Are you sure you want to archive this event? It will no longer be visibl 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." -#: src/components/routes/event/OccurrencesTab/index.tsx:213 +#: src/components/routes/event/OccurrencesTab/index.tsx:215 msgid "Are you sure you want to cancel {count} date(s)? Affected attendees will be notified by email." msgstr "Are you sure you want to cancel {count} date(s)? Affected attendees will be notified by email." @@ -1159,7 +1159,7 @@ msgstr "Are you sure you want to delete this configuration? This may affect acco #: src/components/modals/ManageOccurrenceModal/index.tsx:58 #: src/components/routes/event/OccurrenceDetail/index.tsx:84 -#: src/components/routes/event/OccurrencesTab/index.tsx:182 +#: src/components/routes/event/OccurrencesTab/index.tsx:184 msgid "Are you sure you want to delete this date? This action cannot be undone." msgstr "Are you sure you want to delete this date? This action cannot be undone." @@ -1446,7 +1446,7 @@ msgstr "Attribution Breakdown" msgid "Attribution Value" msgstr "Attribution Value" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:78 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:80 msgid "August" msgstr "August" @@ -1625,7 +1625,7 @@ msgstr "Brazilian Portuguese" msgid "Built-in fraud protection" msgstr "Built-in fraud protection" -#: src/components/routes/event/OccurrencesTab/index.tsx:515 +#: src/components/routes/event/OccurrencesTab/index.tsx:517 msgid "Bulk Edit" msgstr "Bulk Edit" @@ -1674,11 +1674,11 @@ msgstr "By adding tracking pixels, you acknowledge that you and this platform ar msgid "By continuing, you agree to the <0>{0} Terms of Service" msgstr "By continuing, you agree to the <0>{0} Terms of Service" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:628 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:641 msgid "By day of month" msgstr "By day of month" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:629 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:642 msgid "By day of week" msgstr "By day of week" @@ -1698,7 +1698,7 @@ msgstr "Bypass Application Fees" msgid "Calculation Type" msgstr "Calculation Type" -#: src/components/routes/event/OccurrencesTab/index.tsx:471 +#: src/components/routes/event/OccurrencesTab/index.tsx:473 msgid "Calendar" msgstr "Calendar" @@ -1735,7 +1735,7 @@ msgstr "Can't check in" #: src/components/modals/ManageOrderModal/index.tsx:209 #: src/components/modals/PublishEventModal/index.tsx:208 #: src/components/routes/event/messages.tsx:80 -#: src/components/routes/event/OccurrencesTab/index.tsx:497 +#: src/components/routes/event/OccurrencesTab/index.tsx:499 #: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:272 #: src/components/routes/event/OccurrencesTab/OccurrenceEditModal/index.tsx:306 #: src/components/routes/event/OccurrencesTab/OccurrenceMenu.tsx:61 @@ -1748,8 +1748,8 @@ msgstr "Can't check in" msgid "Cancel" msgstr "Cancel" -#: src/components/routes/event/OccurrencesTab/index.tsx:209 -#: src/components/routes/event/OccurrencesTab/index.tsx:221 +#: src/components/routes/event/OccurrencesTab/index.tsx:211 +#: src/components/routes/event/OccurrencesTab/index.tsx:223 msgid "Cancel {count} date(s)" msgstr "Cancel {count} date(s)" @@ -1809,7 +1809,7 @@ msgstr "Canceling will cancel all attendees associated with this order, and rele msgid "Cancelled" msgstr "Cancelled" -#: src/components/routes/event/OccurrencesTab/index.tsx:235 +#: src/components/routes/event/OccurrencesTab/index.tsx:237 msgid "Cancelling {0} date(s). This may take a moment to complete." msgstr "Cancelling {0} date(s). This may take a moment to complete." @@ -1819,7 +1819,7 @@ msgstr "Cannot delete the system default configuration" #: src/components/forms/CapaciyAssigmentForm/index.tsx:42 #: src/components/routes/event/OccurrencesTab/OccurrenceEditModal/index.tsx:503 -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:811 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:824 msgid "Capacity" msgstr "Capacity" @@ -2154,7 +2154,7 @@ msgid "City" msgstr "City" #: src/components/common/OccurrenceSelect/index.tsx:133 -#: src/components/routes/event/OccurrencesTab/index.tsx:503 +#: src/components/routes/event/OccurrencesTab/index.tsx:505 msgid "Clear" msgstr "Clear" @@ -2174,7 +2174,7 @@ msgstr "Clear Search Text" 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." -#: src/components/routes/event/OccurrencesTab/index.tsx:331 +#: src/components/routes/event/OccurrencesTab/index.tsx:333 msgid "Click to cancel" msgstr "Click to cancel" @@ -2182,7 +2182,7 @@ msgstr "Click to cancel" msgid "Click to copy" msgstr "Click to copy" -#: src/components/routes/event/OccurrencesTab/index.tsx:333 +#: src/components/routes/event/OccurrencesTab/index.tsx:335 msgid "Click to reopen for new sales" msgstr "Click to reopen for new sales" @@ -2743,7 +2743,7 @@ msgstr "Create {0} Template" msgid "Create a custom widget to sell tickets on your site." msgstr "Create a custom widget to sell tickets on your site." -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:785 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:798 msgid "Create a fixed number" msgstr "Create a fixed number" @@ -2879,7 +2879,7 @@ msgstr "Create Promo Code" msgid "Create Question" msgstr "Create Question" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:864 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:877 msgid "Create Schedule" msgstr "Create Schedule" @@ -2927,6 +2927,10 @@ msgstr "Create your own event" msgid "Created" msgstr "Created" +#: src/components/routes/event/OccurrencesTab/index.tsx:549 +msgid "Creating {0} dates. This may take a moment." +msgstr "Creating {0} dates. This may take a moment." + #: src/components/routes/welcome/index.tsx:472 msgid "Creating Event..." msgstr "Creating Event..." @@ -3066,7 +3070,7 @@ msgstr "Customize your event page" msgid "Customize your organizer page appearance" msgstr "Customize your organizer page appearance" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:56 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:58 #: src/components/routes/product-widget/OccurrenceSelector/index.tsx:32 msgid "Daily" msgstr "Daily" @@ -3155,7 +3159,7 @@ msgstr "Date created successfully" #: src/components/modals/ManageOccurrenceModal/index.tsx:61 #: src/components/routes/event/OccurrenceDetail/index.tsx:87 -#: src/components/routes/event/OccurrencesTab/index.tsx:184 +#: src/components/routes/event/OccurrencesTab/index.tsx:186 msgid "Date deleted" msgstr "Date deleted" @@ -3168,7 +3172,7 @@ msgstr "Date deleted successfully" msgid "Date reactivated" msgstr "Date reactivated" -#: src/components/routes/event/OccurrencesTab/index.tsx:198 +#: src/components/routes/event/OccurrencesTab/index.tsx:200 msgid "Date reopened for new sales" msgstr "Date reopened for new sales" @@ -3184,15 +3188,15 @@ msgstr "Dates are managed per occurrence" msgid "Dates with sessions" msgstr "Dates with sessions" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:93 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:95 msgid "day" msgstr "day" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:659 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:672 msgid "Day" msgstr "Day" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:676 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:689 msgid "Day of Month" msgstr "Day of Month" @@ -3200,19 +3204,19 @@ msgstr "Day of Month" msgid "Day one capacity" msgstr "Day one capacity" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:101 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:103 msgid "days" msgstr "days" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:635 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:648 msgid "Days of Month" msgstr "Days of Month" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:605 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:618 msgid "Days of Week" msgstr "Days of Week" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:82 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:84 msgid "December" msgstr "December" @@ -3230,7 +3234,7 @@ msgstr "Default" msgid "Default attendee information collection" msgstr "Default attendee information collection" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:815 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:828 msgid "Default capacity per date" msgstr "Default capacity per date" @@ -3253,7 +3257,7 @@ msgstr "delete" #: src/components/common/QuestionsTable/index.tsx:150 #: src/components/common/TaxAndFeeList/index.tsx:81 #: src/components/routes/admin/FailedJobs/index.tsx:209 -#: src/components/routes/event/OccurrencesTab/index.tsx:500 +#: src/components/routes/event/OccurrencesTab/index.tsx:502 #: src/components/routes/event/OccurrencesTab/OccurrenceMenu.tsx:62 msgid "Delete" msgstr "Delete" @@ -3262,7 +3266,7 @@ msgstr "Delete" msgid "Delete \"{0}\"?" msgstr "Delete \"{0}\"?" -#: src/components/routes/event/OccurrencesTab/index.tsx:247 +#: src/components/routes/event/OccurrencesTab/index.tsx:249 msgid "Delete {count} selected date(s)? Dates with orders will be skipped. This cannot be undone." msgstr "Delete {count} selected date(s)? Dates with orders will be skipped. This cannot be undone." @@ -3344,7 +3348,7 @@ msgstr "Delete this question? This cannot be undone." msgid "Delete webhook" msgstr "Delete webhook" -#: src/components/routes/event/OccurrencesTab/index.tsx:253 +#: src/components/routes/event/OccurrencesTab/index.tsx:255 msgid "Deleted {0} date(s)" msgstr "Deleted {0} date(s)" @@ -3565,7 +3569,7 @@ msgstr "e.g. 180 (3 hours)" #: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:452 #: src/components/routes/event/OccurrencesTab/OccurrenceEditModal/index.tsx:450 -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:714 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:727 msgid "e.g. Morning Session" msgstr "e.g. Morning Session" @@ -3724,7 +3728,7 @@ msgstr "Edit webhook" msgid "Edit Webhook" msgstr "Edit Webhook" -#: src/components/routes/event/OccurrencesTab/index.tsx:306 +#: src/components/routes/event/OccurrencesTab/index.tsx:308 msgid "Edited" msgstr "Edited" @@ -3913,7 +3917,7 @@ msgstr "Enable Waitlist" msgid "Enabled" msgstr "Enabled" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:704 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:717 msgid "End" msgstr "End" @@ -3934,7 +3938,7 @@ msgstr "End Date & Time (optional)" msgid "End date must be after start date" msgstr "End date must be after start date" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:771 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:784 msgid "End on a date" msgstr "End on a date" @@ -4409,7 +4413,7 @@ msgstr "Failed to cancel attendee" msgid "Failed to cancel date" msgstr "Failed to cancel date" -#: src/components/routes/event/OccurrencesTab/index.tsx:239 +#: src/components/routes/event/OccurrencesTab/index.tsx:241 msgid "Failed to cancel dates" msgstr "Failed to cancel dates" @@ -4429,10 +4433,14 @@ msgstr "Failed to create affiliate" msgid "Failed to create configuration" msgstr "Failed to create configuration" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:530 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:543 msgid "Failed to create schedule" msgstr "Failed to create schedule" +#: src/hooks/useOccurrenceGenerationPolling.ts:44 +msgid "Failed to create schedule. Please try again." +msgstr "Failed to create schedule. Please try again." + #: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:192 #: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:195 msgid "Failed to create template" @@ -4444,7 +4452,7 @@ msgstr "Failed to delete configuration" #: src/components/modals/ManageOccurrenceModal/index.tsx:64 #: src/components/routes/event/OccurrenceDetail/index.tsx:90 -#: src/components/routes/event/OccurrencesTab/index.tsx:185 +#: src/components/routes/event/OccurrencesTab/index.tsx:187 msgid "Failed to delete date" msgstr "Failed to delete date" @@ -4452,7 +4460,7 @@ msgstr "Failed to delete date" msgid "Failed to delete date. It may have existing orders." msgstr "Failed to delete date. It may have existing orders." -#: src/components/routes/event/OccurrencesTab/index.tsx:256 +#: src/components/routes/event/OccurrencesTab/index.tsx:258 msgid "Failed to delete dates" msgstr "Failed to delete dates" @@ -4540,7 +4548,7 @@ msgstr "Failed to remove from waitlist" msgid "Failed to remove override" msgstr "Failed to remove override" -#: src/components/routes/event/OccurrencesTab/index.tsx:199 +#: src/components/routes/event/OccurrencesTab/index.tsx:201 msgid "Failed to reopen date" msgstr "Failed to reopen date" @@ -4677,7 +4685,7 @@ msgstr "Family" msgid "Fast payouts to your bank" msgstr "Fast payouts to your bank" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:72 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:74 msgid "February" msgstr "February" @@ -4769,7 +4777,7 @@ msgstr "Finish setting up Stripe" msgid "Finish setup" msgstr "Finish setup" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:63 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:65 msgid "First" msgstr "First" @@ -4882,7 +4890,7 @@ msgstr "Footer Text" msgid "Forgot password?" msgstr "Forgot password?" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:66 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:68 msgid "Fourth" msgstr "Fourth" @@ -4909,11 +4917,11 @@ msgstr "Free product, no payment information required" msgid "French" msgstr "French" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:586 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:599 msgid "Frequency" msgstr "Frequency" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:50 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:52 msgid "Fri" msgstr "Fri" @@ -5004,7 +5012,7 @@ msgstr "GitHub" #: src/components/routes/event/OccurrenceDetail/index.tsx:72 #: src/components/routes/event/OccurrencesTab/cancelOccurrenceDialog.tsx:49 -#: src/components/routes/event/OccurrencesTab/index.tsx:221 +#: src/components/routes/event/OccurrencesTab/index.tsx:223 #: src/components/routes/event/OccurrencesTab/OccurrenceEditModal/index.tsx:339 #: src/components/routes/event/OccurrencesTab/OccurrenceEditModal/index.tsx:363 msgid "Go Back" @@ -5271,7 +5279,7 @@ msgstr "How is the discount applied?" msgid "How long a customer has to complete their purchase after receiving an offer. Leave empty for no timeout." msgstr "How long a customer has to complete their purchase after receiving an offer. Leave empty for no timeout." -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:750 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:763 msgid "How long does the schedule run?" msgstr "How long does the schedule run?" @@ -5283,7 +5291,7 @@ msgstr "How many minutes the customer has to complete their order. We recommend msgid "How many times can this code be used?" msgstr "How many times can this code be used?" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:581 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:594 msgid "How often?" msgstr "How often?" @@ -5589,7 +5597,7 @@ msgstr "item(s)" msgid "Items" msgstr "Items" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:71 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:73 msgid "January" msgstr "January" @@ -5640,11 +5648,11 @@ msgstr "Join Waitlist for {productDisplayName}" msgid "Joined" msgstr "Joined" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:77 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:79 msgid "July" msgstr "July" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:76 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:78 msgid "June" msgstr "June" @@ -5670,7 +5678,7 @@ msgstr "Keep the profit." #: src/components/forms/ProductForm/index.tsx:108 #: src/components/routes/event/OccurrencesTab/OccurrenceEditModal/index.tsx:449 -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:711 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:724 #: src/components/routes/event/Reports/OccurrenceSummaryReport/index.tsx:45 msgid "Label" msgstr "Label" @@ -5685,7 +5693,7 @@ msgstr "label updates" msgid "Language" msgstr "Language" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:67 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:69 msgid "Last" msgstr "Last" @@ -5794,7 +5802,7 @@ msgid "Leave blank to use the default word \"Invoice\"" msgstr "Leave blank to use the default word \"Invoice\"" #: src/components/routes/event/OccurrencesTab/OccurrenceEditModal/index.tsx:507 -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:816 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:829 msgid "Leave empty for unlimited" msgstr "Leave empty for unlimited" @@ -5834,7 +5842,7 @@ msgstr "LinkedIn" msgid "Links Allowed" msgstr "Links Allowed" -#: src/components/routes/event/OccurrencesTab/index.tsx:470 +#: src/components/routes/event/OccurrencesTab/index.tsx:472 msgid "List" msgstr "List" @@ -6003,7 +6011,7 @@ msgstr "Manage {0}" msgid "Manage attendee" msgstr "Manage attendee" -#: src/components/routes/event/OccurrencesTab/index.tsx:460 +#: src/components/routes/event/OccurrencesTab/index.tsx:462 msgid "Manage dates and times for your recurring event" msgstr "Manage dates and times for your recurring event" @@ -6074,7 +6082,7 @@ msgstr "Manually add an Attendee" msgid "Manually Add Attendee" msgstr "Manually Add Attendee" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:73 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:75 msgid "March" msgstr "March" @@ -6098,7 +6106,7 @@ msgstr "Max Recipients / Message" msgid "Maximum Per Order" msgstr "Maximum Per Order" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:75 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:77 msgid "May" msgstr "May" @@ -6214,7 +6222,7 @@ msgstr "Miscellaneous Settings" msgid "Mode" msgstr "Mode" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:46 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:48 msgid "Mon" msgstr "Mon" @@ -6230,24 +6238,24 @@ msgstr "Monetary values are approximate totals across all currencies" msgid "Monitor and manage failed background jobs" msgstr "Monitor and manage failed background jobs" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:95 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:97 msgid "month" msgstr "month" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:671 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:684 msgid "Month" msgstr "Month" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:58 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:60 #: src/components/routes/product-widget/OccurrenceSelector/index.tsx:41 msgid "Monthly" msgstr "Monthly" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:624 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:637 msgid "Monthly Pattern" msgstr "Monthly Pattern" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:103 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:105 msgid "months" msgstr "months" @@ -6516,7 +6524,7 @@ msgstr "No dates available this month. Try navigating to another month." msgid "No dates match the current filters." msgstr "No dates match the current filters." -#: src/components/routes/event/OccurrencesTab/index.tsx:570 +#: src/components/routes/event/OccurrencesTab/index.tsx:580 msgid "No dates match your filters" msgstr "No dates match your filters" @@ -6529,7 +6537,7 @@ msgstr "No dates match your search" msgid "No dates scheduled" msgstr "No dates scheduled" -#: src/components/routes/event/OccurrencesTab/index.tsx:570 +#: src/components/routes/event/OccurrencesTab/index.tsx:580 msgid "No dates scheduled yet" msgstr "No dates scheduled yet" @@ -6820,11 +6828,11 @@ msgstr "Notify attendees and stop sales" msgid "Notify organizer of new orders" msgstr "Notify organizer of new orders" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:81 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:83 msgid "November" msgstr "November" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:800 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:813 msgid "Number of dates to create" msgstr "Number of dates to create" @@ -6849,7 +6857,7 @@ msgid "Occurrence Cancelled" msgstr "Occurrence Cancelled" #: src/components/layouts/Event/index.tsx:113 -#: src/components/routes/event/OccurrencesTab/index.tsx:461 +#: src/components/routes/event/OccurrencesTab/index.tsx:463 msgid "Occurrence Schedule" msgstr "Occurrence Schedule" @@ -6871,7 +6879,7 @@ msgstr "Occurrences (future only)" msgid "Occurrences can be configured after creation" msgstr "Occurrences can be configured after creation" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:80 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:82 msgid "October" msgstr "October" @@ -6965,7 +6973,7 @@ msgstr "Ongoing" #: src/components/common/EventCard/index.tsx:103 #: src/components/layouts/OrganizerHomepage/EventCard/index.tsx:49 -#: src/components/routes/event/OccurrencesTab/index.tsx:316 +#: src/components/routes/event/OccurrencesTab/index.tsx:318 #: src/components/routes/event/OccurrencesTab/OccurrenceEditModal/index.tsx:473 #: src/components/routes/my-tickets/index.tsx:56 #: src/components/routes/product-widget/OccurrenceSelector/index.tsx:122 @@ -7080,7 +7088,7 @@ msgstr "Options" msgid "or" msgstr "or" -#: src/components/routes/event/OccurrencesTab/index.tsx:593 +#: src/components/routes/event/OccurrencesTab/index.tsx:603 msgid "or add a single date" msgstr "or add a single date" @@ -7088,7 +7096,7 @@ msgstr "or add a single date" msgid "Or enable offline payments and disable Stripe" msgstr "Or enable offline payments and disable Stripe" -#: src/components/routes/event/OccurrencesTab/index.tsx:413 +#: src/components/routes/event/OccurrencesTab/index.tsx:415 msgid "order" msgstr "order" @@ -7250,7 +7258,7 @@ msgstr "Order updated successfully" msgid "Order was cancelled" msgstr "Order was cancelled" -#: src/components/routes/event/OccurrencesTab/index.tsx:413 +#: src/components/routes/event/OccurrencesTab/index.tsx:415 #: src/components/routes/event/orders.tsx:197 msgid "orders" msgstr "orders" @@ -7503,7 +7511,7 @@ msgid "Passwords are not the same" msgstr "Passwords are not the same" #: src/components/layouts/OrganizerHomepage/index.tsx:291 -#: src/components/routes/event/OccurrencesTab/index.tsx:484 +#: src/components/routes/event/OccurrencesTab/index.tsx:486 #: src/components/routes/organizer/Reports/EventsPerformanceReport/index.tsx:30 msgid "Past" msgstr "Past" @@ -7707,15 +7715,15 @@ msgstr "Personal Information" msgid "Phone" msgstr "Phone" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:372 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:379 msgid "Pick an end date" msgstr "Pick an end date" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:380 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:387 msgid "Pick at least one day of the month" msgstr "Pick at least one day of the month" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:369 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:376 msgid "Pick at least one day of the week" msgstr "Pick at least one day of the week" @@ -7765,7 +7773,7 @@ msgstr "Platform Revenue" msgid "Please add at least one option" msgstr "Please add at least one option" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:527 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:540 #: src/hooks/useFormErrorResponseHandler.tsx:18 msgid "Please check the provided information is correct" msgstr "Please check the provided information is correct" @@ -7895,7 +7903,7 @@ msgstr "Popular Events (Last 14 Days)" msgid "Portuguese" msgstr "Portuguese" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:654 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:667 msgid "Position" msgstr "Position" @@ -8385,7 +8393,7 @@ msgstr "Referral Accounts" msgid "Refresh Preview" msgstr "Refresh Preview" -#: src/components/routes/event/OccurrencesTab/index.tsx:216 +#: src/components/routes/event/OccurrencesTab/index.tsx:218 msgid "Refund all orders for these dates" msgstr "Refund all orders for these dates" @@ -8494,11 +8502,11 @@ msgstr "Remove sold out dates and times from the event page entirely. When disab msgid "Reopen for new sales" msgstr "Reopen for new sales" -#: src/components/routes/event/OccurrencesTab/index.tsx:192 +#: src/components/routes/event/OccurrencesTab/index.tsx:194 msgid "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." msgstr "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." -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:591 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:604 msgid "Repeat every" msgstr "Repeat every" @@ -8699,7 +8707,7 @@ msgstr "Revoke Offer" msgid "Role" msgstr "Role" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:772 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:785 msgid "Run until a specific date" msgstr "Run until a specific date" @@ -8786,7 +8794,7 @@ msgstr "Sample ticket price" msgid "Sample Venue" msgstr "Sample Venue" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:51 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:53 msgid "Sat" msgstr "Sat" @@ -8836,7 +8844,7 @@ msgstr "Save fee override" msgid "Save Organizer" msgstr "Save Organizer" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:864 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:877 msgid "Save Schedule" msgstr "Save Schedule" @@ -8900,11 +8908,12 @@ msgstr "Schedule" msgid "Schedule added" msgstr "Schedule added" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:520 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:530 +#: src/hooks/useOccurrenceGenerationPolling.ts:36 msgid "Schedule created successfully" msgstr "Schedule created successfully" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:793 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:806 msgid "Schedule ends on" msgstr "Schedule ends on" @@ -8916,7 +8925,7 @@ msgstr "Schedule for later" msgid "Schedule Message" msgstr "Schedule Message" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:755 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:768 msgid "Schedule starts on" msgstr "Schedule starts on" @@ -9039,7 +9048,7 @@ msgstr "Search..." msgid "Seasonal" msgstr "Seasonal" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:64 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:66 msgid "Second" msgstr "Second" @@ -9215,7 +9224,7 @@ msgstr "Select which events will trigger this webhook" msgid "Select..." msgstr "Select..." -#: src/components/routes/event/OccurrencesTab/index.tsx:495 +#: src/components/routes/event/OccurrencesTab/index.tsx:497 msgid "selected" msgstr "selected" @@ -9345,7 +9354,7 @@ msgstr "SEO Settings" msgid "SEO Title" msgstr "SEO Title" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:79 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:81 msgid "September" msgstr "September" @@ -9373,7 +9382,7 @@ msgstr "Set default settings for new events created under this organizer." msgid "Set how long each date lasts" msgstr "Set how long each date lasts" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:784 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:797 msgid "Set number of dates" msgstr "Set number of dates" @@ -9393,7 +9402,7 @@ msgstr "Set the starting number for invoice numbering. This cannot be changed on msgid "Set to unlimited (remove limit)" msgstr "Set to unlimited (remove limit)" -#: src/components/routes/event/OccurrencesTab/index.tsx:575 +#: src/components/routes/event/OccurrencesTab/index.tsx:585 msgid "Set up a recurring schedule to automatically create dates, or add them one at a time." msgstr "Set up a recurring schedule to automatically create dates, or add them one at a time." @@ -9410,8 +9419,8 @@ msgstr "Set up payouts" msgid "Set up schedule" msgstr "Set up schedule" -#: src/components/routes/event/OccurrencesTab/index.tsx:532 -#: src/components/routes/event/OccurrencesTab/index.tsx:586 +#: src/components/routes/event/OccurrencesTab/index.tsx:535 +#: src/components/routes/event/OccurrencesTab/index.tsx:596 msgid "Set Up Schedule" msgstr "Set Up Schedule" @@ -9427,7 +9436,7 @@ msgstr "Set up your organization" msgid "Set up your schedule" msgstr "Set up your schedule" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:569 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:582 msgid "Set Up Your Schedule" msgstr "Set Up Your Schedule" @@ -9564,7 +9573,7 @@ msgstr "Show tax and fees separately" msgid "Showing {0} of {totalRows} records" msgstr "Showing {0} of {totalRows} records" -#: src/components/routes/event/OccurrencesTab/index.tsx:614 +#: src/components/routes/event/OccurrencesTab/index.tsx:624 msgid "Showing {0}–{1} of {2}" msgstr "Showing {0}–{1} of {2}" @@ -9645,7 +9654,7 @@ msgstr "Social Links & Website" #: src/components/common/ProductsTable/SortableProduct/index.tsx:387 #: src/components/modals/ManageOccurrenceModal/index.tsx:186 -#: src/components/routes/event/OccurrencesTab/index.tsx:369 +#: src/components/routes/event/OccurrencesTab/index.tsx:371 msgid "Sold" msgstr "Sold" @@ -9753,7 +9762,7 @@ msgstr "Staff instructions" msgid "Standard product with a fixed price" msgstr "Standard product with a fixed price" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:696 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:709 msgid "Start" msgstr "Start" @@ -9846,7 +9855,7 @@ msgstr "Stats" #: src/components/routes/admin/Messages/index.tsx:120 #: src/components/routes/admin/Messages/index.tsx:167 #: src/components/routes/admin/Messages/index.tsx:294 -#: src/components/routes/event/OccurrencesTab/index.tsx:326 +#: src/components/routes/event/OccurrencesTab/index.tsx:328 #: src/components/routes/event/Reports/OccurrenceSummaryReport/index.tsx:51 #: src/components/routes/event/Reports/PromoCodesReport/index.tsx:88 #: src/components/routes/organizer/Reports/EventsPerformanceReport/index.tsx:62 @@ -10104,7 +10113,7 @@ msgstr "Summer Music Festival {0}" msgid "Summer Music Festival 2025" msgstr "Summer Music Festival 2025" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:52 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:54 msgid "Sun" msgstr "Sun" @@ -10231,7 +10240,7 @@ msgstr "Tell us about your event" msgid "Tell us about your organization. This information will be displayed on your event pages." msgstr "Tell us about your organization. This information will be displayed on your event pages." -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:573 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:586 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." @@ -10325,7 +10334,7 @@ msgstr "The email address has been changed. The attendee will receive a new tick msgid "The event you're looking for is not available at the moment. It may have been removed, expired, or the URL might be incorrect." msgstr "The event you're looking for is not available at the moment. It may have been removed, expired, or the URL might be incorrect." -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:756 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:769 msgid "The first date this schedule will generate from." msgstr "The first date this schedule will generate from." @@ -10345,7 +10354,7 @@ msgstr "The link you are trying to access has expired or is no longer valid. Ple msgid "The link you clicked is invalid." msgstr "The link you clicked is invalid." -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:840 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:853 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." @@ -10481,7 +10490,7 @@ msgstr "These templates will be used as defaults for all events in your organiza 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." -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:65 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:67 msgid "Third" msgstr "Third" @@ -10744,7 +10753,7 @@ msgstr "This will not be visible to customers, but helps you identify the affili msgid "Throughput" msgstr "Throughput" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:49 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:51 msgid "Thu" msgstr "Thu" @@ -10881,7 +10890,7 @@ msgstr "Tiered products allow you to offer multiple price options for the same p msgid "TikTok" msgstr "TikTok" -#: src/components/routes/event/OccurrencesTab/index.tsx:290 +#: src/components/routes/event/OccurrencesTab/index.tsx:292 msgid "Time" msgstr "Time" @@ -10912,7 +10921,7 @@ msgstr "Times Used" msgid "Timezone" msgstr "Timezone" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:702 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:715 msgid "to" msgstr "to" @@ -11056,7 +11065,7 @@ msgstr "Tracking & Analytics" msgid "Try a different search term or filter" msgstr "Try a different search term or filter" -#: src/components/routes/event/OccurrencesTab/index.tsx:574 +#: src/components/routes/event/OccurrencesTab/index.tsx:584 msgid "Try adjusting your filters to see more dates." msgstr "Try adjusting your filters to see more dates." @@ -11069,7 +11078,7 @@ msgstr "Try another email" msgid "Try Hi.Events Free" msgstr "Try Hi.Events Free" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:47 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:49 msgid "Tue" msgstr "Tue" @@ -11232,7 +11241,7 @@ msgstr "Untrusted" #: src/components/common/EventsDashboardStatusButtons/index.tsx:20 #: src/components/common/EventStatusBadge/index.tsx:16 #: src/components/layouts/OrganizerHomepage/index.tsx:285 -#: src/components/routes/event/OccurrencesTab/index.tsx:483 +#: src/components/routes/event/OccurrencesTab/index.tsx:485 #: src/components/routes/organizer/Reports/EventsPerformanceReport/index.tsx:33 msgid "Upcoming" msgstr "Upcoming" @@ -11880,7 +11889,7 @@ msgstr "Webhooks" msgid "Website" msgstr "Website" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:48 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:50 msgid "Wed" msgstr "Wed" @@ -11888,16 +11897,16 @@ msgstr "Wed" msgid "Wednesday" msgstr "Wednesday" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:94 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:96 msgid "week" msgstr "week" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:57 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:59 #: src/components/routes/product-widget/OccurrenceSelector/index.tsx:35 msgid "Weekly" msgstr "Weekly" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:102 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:104 msgid "weeks" msgstr "weeks" @@ -11953,7 +11962,7 @@ msgstr "What products should this capacity apply to?" msgid "What time will you be arriving?" msgstr "What time will you be arriving?" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:688 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:701 msgid "What time?" msgstr "What time?" @@ -12140,7 +12149,7 @@ msgstr "Write your message here..." msgid "X (Twitter)" msgstr "X (Twitter)" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:96 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:98 msgid "year" msgstr "year" @@ -12150,12 +12159,12 @@ msgstr "year" msgid "Year to date" msgstr "Year to date" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:59 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:61 #: src/components/routes/product-widget/OccurrenceSelector/index.tsx:43 msgid "Yearly" msgstr "Yearly" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:104 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:106 msgid "years" msgstr "years" @@ -12200,7 +12209,7 @@ msgstr "You can configure additional service fees and taxes in your account sett msgid "You can create a promo code which targets this product on the" msgstr "You can create a promo code which targets this product on the" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:823 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:836 msgid "You can override this for individual dates later." msgstr "You can override this for individual dates later." diff --git a/frontend/src/locales/es.js b/frontend/src/locales/es.js index 6cdb8a4311..fbf2d47aa6 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 Main Street\",\"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\":\"Administrador\",\"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 entrada.\",\"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\":\"Are you sure you want to make this event public? This will make the event visible to the public\",\"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\":\"Attendee Notes\",\"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\":\"Mostrar este producto contraído al cargar la página del evento\",\"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\":\"Completado\",\"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 una entrada\",\"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\":\"Personaliza la página de tu evento\",\"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\":\"Dismiss\",\"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\":\"Finalizado\",\"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\":\"Event URL\",\"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\":\"Complementario\",\"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 de la entrada 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 attendees have been added to this order.\",\"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 product associated with this attendee.\",\"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 questions answered by this attendee.\",\"SnlQeq\":\"No questions have been asked for this order.\",\"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\":\"Online event\",\"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\":\"Order #\",\"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\":\"Order Notes\",\"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\":\"Desarrollado 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 entradas\",\"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 adicional o instrucciones para esta pregunta. Usa este campo para añadir términos\\ny condiciones, directrices o cualquier información importante que los asistentes necesiten saber 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\":\"Reembolsado\",\"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 de la 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\":\"Rol\",\"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 entradas\",\"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\":\"Suite 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 complementario, como una camiseta o una taza. No se emitirá una entrada\",\"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 una entrada. Se emitirá una entrada 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\":\"entrada\",\"kjAL4v\":\"Entrada\",\"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\":\"Cantidad 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\":\"View\",\"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 entrada 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 entradas. 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 entradas. Sus entradas 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é entradas 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 una entrada 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\":\"(none)\",\"xYxQCZ\":[[\"0\"],\" \",[\"1\"]],\"lAOy2r\":[[\"0\"],\" \",[\"1\"],\" ya está registrado\"],\"3beCx0\":[[\"0\"],\" <0>checked in\"],\"S4PqS9\":[[\"0\"],\" webhooks activos\"],\"6MIiOI\":[[\"0\"],\" restantes\"],\"COnw8D\":[\"Logo de \",[\"0\"]],\"xG9N0H\":[[\"0\"],\" of \",[\"1\"],\" seats are taken.\"],\"B7pZfX\":[[\"0\"],\" organizadores\"],\"/HkCs4\":[[\"0\"],\" entradas\"],\"30bTiU\":[[\"activeCount\"],\" enabled\"],\"jTs4am\":[[\"appName\"],\" logo\"],\"gbJOk9\":[[\"attendeeCount\"],\" attendees are registered for this session.\"],\"TjbIUI\":[[\"availableCount\"],\" de \",[\"totalCount\"],\" disponibles\"],\"PSChHo\":[[\"capacity\"],\" plazas disponibles\"],\"lzQ8/M\":[[\"checkedIn\"],\" / \",[\"total\"],\" checked in\"],\"RZ0JX3\":[[\"chipTime\"],\", agotado\"],\"M4KnFs\":[[\"chipTime\"],\", Agotado, lista de espera disponible\"],\"SeyN12\":[[\"completedCount\"],\" of \",[\"totalCount\"],\" steps complete\"],\"f2rhaD\":[[\"diffHr\"],\"h ago\"],\"NRSLBe\":[[\"diffMin\"],\"m ago\"],\"iYfwJE\":[[\"diffSec\"],\"s ago\"],\"OJnhhX\":[[\"eventCount\"],\" eventos\"],\"mhZbzw\":[[\"loadedAffectedAttendees\"],\" attendees are registered across the affected sessions.\"],\"RBuxIl\":[[\"productCount\"],\" ticket types configured\"],\"VFLd0I\":[[\"slotCount\"],\" times available\"],\"3IEF7U\":[[\"totalCount\"],\" tipos de entradas\"],\"0cLzoF\":[[\"totalOccurrences\"],\" dates\"],\"AEGc4t\":[[\"totalOccurrences\"],\" sessions across \",[\"0\"],\" dates (\",[\"1\",\"plural\",{\"one\":[\"#\",\" session\"],\"other\":[\"#\",\" sessions\"]}],\" per day)\"],\"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.\",\"Il5Uid\":\"<0>Esta es la cantidad total disponible para todas las fechas de tu programación en conjunto; no es un límite por fecha. Para limitar la asistencia de cada fecha, establece una capacidad en la <1>página de Programación de fechas.\",\"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 attendee is registered across the affected sessions.\",\"qOyE2U\":\"1 attendee is registered for this session.\",\"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\",\"y2Jh0m\":\"1 time available\",\"cGtUz6\":\"1 semana antes del evento\",\"HR/cvw\":\"Calle Ejemplo 123\",\"dgKxZ5\":\"135+ currencies & 40+ payment methods\",\"kMU5aM\":\"Se ha enviado un aviso de cancelación a\",\"o++0qa\":\"a change in duration\",\"WuWSX5\":\"A few quick steps and you're ready to start selling.\",\"RQ5kDd\":\"Un mensaje para mostrar cuando no hay productos en esta categoría.\",\"V53XzQ\":\"Se ha enviado un nuevo código de verificación a tu correo\",\"sr2Je0\":\"a shift in start/end times\",\"/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\":[\"Account · \",[\"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\":\"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\":\"Agregue preguntas personalizadas para recopilar información adicional durante el proceso de pago\",\"Z/dcxc\":\"Add Date\",\"QeupRg\":\"Añadir fechas\",\"Q219NT\":\"Add Dates\",\"yjB5VC\":\"Add dates and times for your recurring event\",\"Z8idyM\":\"Add details\",\"wpirGs\":\"Add event details\",\"VX6WUv\":\"Agregar ubicación\",\"GCQlV2\":\"Add multiple times if you run several sessions per day.\",\"7JF9w9\":\"Agregar pregunta\",\"NLbIb6\":\"Add this attendee anyway (override capacity)\",\"6PNlRV\":\"Añade este evento a tu calendario\",\"BGD9Yt\":\"Agregar entradas\",\"uIv4Op\":\"Añade píxeles de seguimiento a tus páginas de eventos públicos y a la página de inicio del organizador. Se mostrará un banner de consentimiento 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\":\"Affiliate program\",\"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.\",\"3e31kI\":\"After your event is created, you can choose how often it repeats from the dashboard.\",\"z7GAMJ\":\"all\",\"N40H+G\":\"All\",\"7rLTkE\":\"Todos los eventos archivados\",\"gKq1fa\":\"Todos los asistentes\",\"63gRoO\":\"All attendees of the selected sessions\",\"uWxIoH\":\"All attendees of this occurrence\",\"pMLul+\":\"Todas las monedas\",\"sgUdRZ\":\"All dates\",\"e4q4uO\":\"All Dates\",\"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\":\"All matching dates\",\"F1/VgK\":\"All occurrences\",\"OpWjMq\":\"All Occurrences\",\"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.\",\"VZdky1\":\"Permitir que los compradores copien sus datos a todos los asistentes\",\"F3mW5G\":\"Permitir que los clientes se unan a una lista de espera cuando este producto esté agotado\",\"4CMO/q\":\"Permitir que los clientes se unan a una lista de espera cuando este producto esté agotado. Los clientes se unen a la lista de espera para una fecha específica.\",\"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\":\"Already in\",\"/H326L\":\"Ya reembolsado\",\"USEpOK\":\"Already use Stripe on another organizer? Reuse that connection.\",\"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.\",\"OPFdAM\":\"Una descripción opcional de esta categoría para mostrar en la página del evento.\",\"eusccx\":\"Un mensaje opcional para mostrar en el producto destacado, ej. \\\"Se vende rápido 🔥\\\" o \\\"Mejor valor\\\"\",\"5GJuNp\":[\"and \",[\"0\"],\" more...\"],\"QNrkms\":\"Respuesta actualizada con éxito.\",\"+qygei\":\"Answers\",\"GK7Lnt\":\"Answers provided at checkout (e.g. meal choice)\",\"lE8PgT\":\"Any dates you've manually customized will be kept.\",\"jVoYha\":[\"aplicado — \",[\"0\"],\" de descuento en tu pedido\"],\"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\":\"Aprobar mensaje\",\"naCW6Z\":\"April\",\"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\":[\"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\":\"¿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/\":\"Are you sure you want to delete this date? This action cannot be undone.\",\"RiF/yT\":\"Are you sure you want to delete this image?\",\"b3+Qku\":\"Are you sure you want to delete this tax or fee? It will no longer be applied to new orders.\",\"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\":\"Are you sure you want to permanently delete this date? This cannot be undone.\",\"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?\",\"b7tkGp\":\"Are you sure you want to revoke this invitation?\",\"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 entrada comprado\",\"ui5ln+\":\"Assign a different plan\",\"9Jxliv\":\"Assign plan\",\"xdiER7\":\"Nivel asignado\",\"F2rX0R\":\"Debe seleccionarse al menos un tipo de evento\",\"Z44eZS\":\"At least one product must stay available for this date. To make the date inaccessible, cancel it from the schedule instead.\",\"BCmibk\":\"Intentos\",\"6PecK3\":\"Asistencia y tasas de registro en todos los eventos\",\"K2tp3v\":\"attendee\",\"AJ4rvK\":\"Asistente cancelado\",\"qvylEK\":\"Asistente creado\",\"Aspq3b\":\"Recopilación de datos de asistentes\",\"fpb0rX\":\"Datos del asistente copiados del pedido\",\"94aQMU\":\"Información del asistente\",\"KkrBiR\":\"Recopilación de información del asistente\",\"sjPjOg\":\"Attendee notes\",\"cosfD8\":\"Estado del Asistente\",\"D2qlBU\":\"Asistente actualizado\",\"22BOve\":\"Asistente actualizado correctamente\",\"x8Vnvf\":\"El ticket del asistente no está incluido en esta lista\",\"/Ywywr\":\"attendees\",\"zLRobu\":\"attendees checked in\",\"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/\":\"August\",\"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\":\"Ofrecer automáticamente entradas a la siguiente persona cuando haya disponibilidad. Si está deshabilitado, puedes procesar manualmente la lista de espera desde la página de Lista de espera.\",\"csDS2L\":\"Disponible\",\"Xp+ywP\":\"Disponible cuando se complete el pago\",\"dwDH1K\":[\"Available times on \",[\"dayName\"]],\"clF06r\":\"Disponible para reembolso\",\"NB5+UG\":\"Tokens disponibles\",\"L+wGOG\":\"Awaiting\",\"qcw2OD\":\"Awaiting pay\",\"kNmmvE\":\"Awesome Events S.A.\",\"TeSaQO\":\"Volver a cuentas\",\"kYqM1A\":\"Volver al evento\",\"s5QRF3\":\"Volver a mensajes\",\"td/bh+\":\"Volver a Informes\",\"nsm7BA\":\"Volver a la búsqueda\",\"imjKVx\":\"Bank account connected\",\"D9LTCH\":\"Base Price\",\"hviJef\":\"Based on the global sale period above, not per date\",\"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 entradas con un logotipo, colores y mensaje de pie de página personalizados.\",\"4BZj5p\":\"Built-in fraud protection\",\"cr7kGH\":\"Bulk Edit\",\"1Fbd6n\":\"Bulk Edit Dates\",\"Eq6Tu9\":\"Bulk update failed.\",\"9N+p+g\":\"Negocios\",\"SWnN1L\":\"Business address\",\"kQekXw\":\"Business name\",\"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 son corresponsables de los datos recopilados. Eres responsable de garantizar que tienes una base legal para este procesamiento según las leyes de privacidad aplicables (RGPD, CCPA, etc.).\",\"DFqasq\":[\"Al continuar, aceptas los <0>Términos de Servicio de \",[\"0\"],\"\"],\"wVSa+U\":\"By day of month\",\"0MnNgi\":\"By day of week\",\"CetOZE\":\"By ticket type\",\"lFdbRS\":\"Omitir comisiones de aplicación\",\"AjVXBS\":\"Calendar\",\"2VLZwd\":\"Botón de llamada a la acción\",\"rT2cV+\":\"Camera\",\"7hYa9y\":\"Camera permission was denied. <0>Request permission again, or grant this page camera access in your browser settings.\",\"D02dD9\":\"Campaña\",\"RRPA79\":\"Can't check in\",\"OcVwAd\":[\"Cancel \",[\"count\"],\" date(s)\"],\"H4nE+E\":\"Cancelar todos los productos y devolverlos al grupo disponible\",\"Py78q9\":\"Cancel Date\",\"tOXAdc\":\"Cancelar anulará todos los asistentes asociados con este pedido y liberará los entradas de vuelta al grupo disponible.\",\"FPpqc7\":[\"Cancelling \",[\"0\"],\" date(s). This may take a moment to complete.\"],\"01sEfm\":\"No se puede eliminar la configuración predeterminada del sistema\",\"VsM1HH\":\"Asignaciones de capacidad\",\"9bIMVF\":\"Capacity management\",\"H7K8og\":\"Capacity must be 0 or greater\",\"nzao08\":\"capacity updates\",\"4cp9NP\":\"Capacity Used\",\"K7tIrx\":\"Categoría\",\"DRK3Bq\":\"Category deleted successfully\",\"o+XJ9D\":\"Cambiar\",\"kJkjoB\":\"Change duration\",\"J0KExZ\":\"Change the attendee limit\",\"ssospy\":\"Change time\",\"CIHJJf\":\"Cambiar configuración de lista de espera\",\"B5icLR\":[\"Changed duration for \",[\"count\"],\" date(s)\"],\"Kb+0BT\":\"Charges\",\"2tbLdK\":\"Caridad\",\"BPWGKn\":\"Check in\",\"6uFFoY\":\"Check out\",\"FjAlwK\":[\"Check out this event: \",[\"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\":\"Check-In\",\"udRwQs\":\"Registro de entrada creado\",\"F4SRy3\":\"Registro de entrada eliminado\",\"as6XfO\":[\"Check-in for \",[\"0\"],\" was undone\"],\"9s/wrQ\":\"Check-in history\",\"Wwztk4\":\"Check-In List\",\"9gPPUY\":\"¡Lista de Check-In Creada!\",\"dwjiJt\":\"Check-in list info\",\"7od0PV\":\"check-in lists\",\"f2vU9t\":\"Listas de registro\",\"XprdTn\":\"Check-in navigation\",\"5tV1in\":\"Check-in progress\",\"SHJwyq\":\"Tasa de registro\",\"qCqdg6\":\"Estado de Check-In\",\"cKj6OE\":\"Resumen de registros\",\"7B5M35\":\"Check-Ins\",\"VrmydS\":\"Checked in\",\"DM4gBB\":\"Chino (Tradicional)\",\"p8Jvp4\":\"Choose a configuration\",\"ElShBO\":\"Choose a different action\",\"pHEhf+\":\"Elige una tipografía que coincida con tu marca. Las fuentes se alojan mediante Bunny Fonts.\",\"Zok1Gx\":\"Choose an organizer\",\"pkk46Q\":\"Elige un organizador\",\"Ag32+c\":\"Choose another date\",\"Crr3pG\":\"Elegir calendario\",\"Z38ZJu\":\"Elige cómo se muestra la fecha del evento en la entrada\",\"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\":\"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\":\"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 entrada\",\"FpsvqB\":\"Modo de Color\",\"jEu4bB\":\"Columnas\",\"CWk59I\":\"Comedia\",\"rPA+Gc\":\"Preferencias de comunicación\",\"zFT5rr\":\"complete\",\"bUQMpb\":\"Complete Stripe setup\",\"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\":\"Configuration assigned\",\"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\":\"Configure which products are available for this occurrence and optionally adjust pricing.\",\"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\",\"/K4Vqr\":\"Conecta Stripe para aceptar pagos\",\"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\":\"Los detalles de conexión son obligatorios para los eventos en línea\",\"jfC/xh\":\"Contacto\",\"LOFgda\":[\"Contacto \",[\"0\"]],\"41BQ3k\":\"Correo de contacto\",\"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\",\"s30OcA\":\"Controla cómo se muestran las fechas y horarios en la página del evento\",\"p2FRHj\":\"Controle cómo se manejan las comisiones de la plataforma para este evento\",\"NqfabH\":\"Control who gets in for this date\",\"fmYxZx\":\"Control who gets in, and when\",\"1JnTgU\":\"Copiado de arriba\",\"FxVG/l\":\"Copiado al portapapeles\",\"PiH3UR\":\"¡Copiado!\",\"4i7smN\":\"Copy account ID\",\"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\":\"Could not prepare the bulk update.\",\"KOavaU\":\"No se pudieron obtener los detalles de la dirección\",\"/lq4oO\":\"Could not save date\",\"mHu0az\":\"Couldn't send verification email. Please try again.\",\"QOIm+S\":\"Los recuentos incluyen todas las fechas próximas. A cada persona se le ofrece una plaza para la fecha a la que se apuntó.\",\"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\":\"Covers every ticket\",\"zg4oSu\":[\"Crear plantilla \",[\"0\"]],\"RKKhnW\":\"Cree un widget personalizado para vender entradas en su sitio.\",\"6sk7PP\":\"Create a fixed number\",\"jqhTmw\":\"Create a list for this date\",\"PhioFp\":\"Create a new check-in list for an active session, or contact the organizer if you think this is a mistake.\",\"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 entradas 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\":\"Create Date\",\"Nc3l/D\":\"Cree descuentos, códigos de acceso para entradas ocultos y ofertas especiales.\",\"PybJS2\":\"Create event\",\"eWEV9G\":\"Crear nueva contraseña\",\"wl2iai\":\"Create Schedule\",\"8AiKIu\":\"Crear entrada o producto\",\"/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\":\"Crea tu primer evento para comenzar a vender entradas y gestionar asistentes.\",\"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\":\"Currently assigned\",\"iTvh6I\":\"Actualmente disponible para compra\",\"A42Dqn\":\"Custom branding\",\"Guo0lU\":\"Fecha y hora personalizada\",\"WDMdn8\":\"Custom questions\",\"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\",\"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\":\"Daily\",\"/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\":\"Dance\",\"pvnfJD\":\"Oscuro\",\"MaB9wW\":\"Date Cancellation\",\"e6cAxJ\":\"Date cancelled\",\"81jBnC\":\"Date cancelled successfully\",\"a/C/6R\":\"Date created successfully\",\"IW7Q+u\":\"Date deleted\",\"rngCAz\":\"Date deleted successfully\",\"vHbfoQ\":\"Date reactivated\",\"hvah+S\":\"Date reopened for new sales\",\"Ez0YsD\":\"Date updated successfully\",\"Te33mU\":\"Dates are managed per occurrence\",\"91zCxb\":\"Dates with sessions\",\"/ITcnz\":\"day\",\"H7OUPr\":\"Day\",\"JtHrX9\":\"Day of Month\",\"J/Upwb\":\"days\",\"vDVA2I\":\"Days of Month\",\"rDLvlL\":\"Days of Week\",\"r6zgGo\":\"December\",\"jbq7j2\":\"Rechazar\",\"ovBPCi\":\"Predeterminado\",\"JtI4vj\":\"Recopilación predeterminada de información del asistente\",\"ULjv90\":\"Default capacity per date\",\"3R/Tu2\":\"Gestión predeterminada de comisiones\",\"1bZAZA\":\"Se usará la plantilla predeterminada\",\"HNlEFZ\":\"eliminar\",\"KpnwJK\":[\"¿Eliminar \\\"\",[\"0\"],\"\\\"?\"],\"BlII4o\":[\"Delete \",[\"count\"],\" selected date(s)? Dates with orders will be skipped. This cannot be undone.\"],\"vu7gDm\":\"Eliminar afiliado\",\"KZN4Lc\":\"Eliminar todo\",\"6EkaOO\":\"Delete Date\",\"io0G93\":\"Eliminar evento\",\"+jw/c1\":\"Eliminar imagen\",\"hdyeZ0\":\"Eliminar trabajo\",\"xxjZeP\":\"Eliminar ubicación\",\"sY3tIw\":\"Eliminar organizador\",\"UBv8UK\":\"Delete Permanently\",\"dPyJ15\":\"Eliminar plantilla\",\"IQTR34\":\"Delete this category? Any products in it will also be deleted. This cannot be undone.\",\"/1wMxk\":\"Delete this product? This cannot be undone.\",\"mxsm1o\":\"¿Eliminar esta pregunta? Esto no se puede deshacer.\",\"snMaH4\":\"Eliminar webhook\",\"LIZZLY\":[\"Deleted \",[\"0\"],\" date(s)\"],\"7w0Wev\":\"Description and venue added\",\"vYgeDk\":\"Desmarcar todo\",\"NvuEhl\":\"Elementos de Diseño\",\"H8kMHT\":\"¿No recibiste el código?\",\"G8KNgd\":\"Different location\",\"E/QGRL\":\"Disabled\",\"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.\",\"HtaSQp\":\"Muestra cuántas plazas quedan en cada fecha en el widget de entradas. Puedes modificarlo para fechas individuales.\",\"pfa8F0\":\"Nombre para mostrar\",\"Kdpf90\":\"¡No lo olvides!\",\"352VU2\":\"¿No tienes una cuenta? <0>Regístrate\",\"AXXqG+\":\"Donación\",\"DPfwMq\":\"Listo\",\"JoPiZ2\":\"Door staff instructions\",\"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\":\"Duplicate Date\",\"KRmTkx\":\"Duplicar producto\",\"Jd3ymG\":\"Duration must be at least 1 minute.\",\"KIjvtr\":\"Holandés\",\"22xieU\":\"ej. 180 (3 horas)\",\"/zajIE\":\"e.g. Morning Session\",\"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.\",\"Xfsjel\":\"Cada producto\",\"5oD9f/\":\"Earlier\",\"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\":\"Edit Date\",\"m0ZqOT\":\"Editar ubicación\",\"8oivFT\":\"Editar ubicación\",\"vRWOrM\":\"Editar detalles del pedido\",\"fW5sSv\":\"Editar webhook\",\"nP7CdQ\":\"Editar Webhook\",\"MRZxAn\":\"Edited\",\"uBAxNB\":\"Editor\",\"aqxYLv\":\"Educación\",\"iiWXDL\":\"Fallos de elegibilidad\",\"zPiC+q\":\"Listas de Check-In Elegibles\",\"SiVstt\":\"Email & scheduled messages\",\"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\":\"Embeddable widget\",\"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\":\"End\",\"sGjBEq\":\"Fecha y hora de finalización (opcional)\",\"PKXt9R\":\"La fecha de finalización debe ser posterior a la fecha de inicio\",\"ZayGC7\":\"End on a date\",\"48Y16Q\":\"Hora de finalización (opcional)\",\"TbaYrr\":[\"Ended \",[\"0\"]],\"CFgwiw\":[\"Ends \",[\"0\"]],\"SqOIQU\":\"Enter a capacity value or choose unlimited.\",\"h37gRz\":\"Enter a label or choose to remove it.\",\"7YZofi\":\"Ingrese un asunto y cuerpo para ver la vista previa\",\"khyScF\":\"Enter a time to shift by.\",\"SKx/0u\":\"Introduce un nombre de lugar o una dirección\",\"ppwojw\":\"Introduce un nombre de lugar o una dirección para los eventos presenciales\",\"j+eCIq\":\"Introducir la dirección manualmente\",\"3bR1r4\":\"Ingresa el correo del afiliado (opcional)\",\"ARkzso\":\"Ingresa el nombre del afiliado\",\"ej4L8b\":\"Enter capacity\",\"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)\",\"RRlWVA\":\"Todo el pedido\",\"o21Y+P\":\"entries\",\"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\",\"+v+GW0\":\"Visualización de la fecha del evento\",\"7u9/DO\":\"Evento eliminado correctamente\",\"imgKgl\":\"Descripción del evento\",\"IzR/Fc\":\"Event lifetime\",\"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\",\"mImacG\":\"Página del evento\",\"Hk9Ki/\":\"Evento restaurado correctamente\",\"JyD0LH\":\"Configuración del evento\",\"XVLu2v\":\"Título del evento\",\"OfmsI9\":\"Evento demasiado nuevo\",\"4SILkp\":\"Event totals\",\"YDVUVl\":\"Tipos de eventos\",\"+HeiVx\":\"Evento actualizado\",\"19j6uh\":\"Rendimiento de eventos\",\"PC3/fk\":\"Eventos que Comienzan en las Próximas 24 Horas\",\"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\":\"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\":\"Error al asignar configuración\",\"PO0cfn\":\"Failed to cancel date\",\"YUX+f+\":\"Failed to cancel dates\",\"SIHgVQ\":\"No se pudo cancelar el mensaje\",\"cEFg3R\":\"Error al crear el afiliado\",\"dVgNF1\":\"Error al crear configuración\",\"fAoRRJ\":\"Failed to create schedule\",\"U66oUa\":\"Error al crear la plantilla\",\"aFk48v\":\"Error al eliminar configuración\",\"n1CYMH\":\"Failed to delete date\",\"KXv+Qn\":\"Failed to delete date. It may have existing orders.\",\"JJ0uRo\":\"Failed to delete dates\",\"rgoBnv\":\"Error al eliminar el evento\",\"Zw6LWb\":\"Error al eliminar el trabajo\",\"tq0abZ\":\"Error al eliminar los trabajos\",\"2mkc3c\":\"Error al eliminar el organizador\",\"5E23qd\":\"Failed to delete product. Please try again.\",\"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\":\"Failed to reactivate date\",\"7zyx8a\":\"Error al eliminar de la lista de espera\",\"A/P7PX\":\"Failed to remove override\",\"ogWc1z\":\"Failed to reopen date\",\"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\":\"Failed to save override\",\"sj/eZA\":\"Failed to save price override\",\"780n8A\":\"Failed to save product settings\",\"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\":\"Error al actualizar 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\":\"Family\",\"5LO38w\":\"Fast payouts to your bank\",\"4lgLew\":\"February\",\"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\":\"Film\",\"L1qbUx\":\"Filter attendees\",\"8OvVZZ\":\"Filtrar Asistentes\",\"N/H3++\":\"Filter by date\",\"mvrlBO\":\"Filtrar por evento\",\"g+xRXP\":\"Finish setting up Stripe\",\"LHH461\":\"Finish setup\",\"syyeb9\":\"First\",\"Vj6wk9\":\"First 30 days\",\"/bpZYb\":\"First 7 days\",\"ziEnjY\":\"First 90 days\",\"1vBhpG\":\"Primer asistente\",\"4pwejF\":\"El nombre es obligatorio\",\"rVogsf\":\"Corrige los problemas para publicar\",\"3lkYdQ\":\"Fixed fee\",\"6bBh3/\":\"Tarifa fija\",\"zWqUyJ\":\"Tarifa fija cobrada por transacción\",\"LWL3Bs\":\"La tarifa fija debe ser 0 o mayor\",\"0RI8m4\":\"Flash off\",\"q0923e\":\"Flash on\",\"X+U6/w\":\"Familia de fuentes\",\"lWxAUo\":\"Comida y bebida\",\"nFm+5u\":\"Texto del Pie\",\"a8nooQ\":\"Fourth\",\"wtuVU4\":\"Frequency\",\"xVhQZV\":\"Fri\",\"39y5bn\":\"Friday\",\"f5UbZ0\":\"Full data ownership\",\"cfvx/y\":\"Full event\",\"MY2SVM\":\"Reembolso completo\",\"PGQLdy\":\"future\",\"8N/j1s\":\"Future dates only\",\"yRx/6K\":\"Future dates will be copied with capacity reset to zero\",\"T02gNN\":\"Admisión General\",\"3ep0Gx\":\"Información general sobre tu organizador\",\"ziAjHi\":\"Generar\",\"exy8uo\":\"Generar código\",\"4CETZY\":\"Cómo llegar\",\"pjkEcB\":\"Get Paid\",\"lGYzP6\":\"Get paid with Stripe\",\"ZDIydz\":\"Comenzar\",\"u6FPxT\":\"Obtener Entradas\",\"8KDgYV\":\"Prepare su evento\",\"RkXlPZ\":\"GitHub\",\"sr0UJD\":\"Go Back\",\"oNL5vN\":\"Ir a la página del evento\",\"gHSuV/\":\"Ir a la página de inicio\",\"8+Cj55\":\"Go to Schedule\",\"6nDzTl\":\"Buena legibilidad\",\"76gPWk\":\"Got it\",\"CZXzs4\":\"Griego\",\"aGWZUr\":\"Ingresos brutos\",\"n8IUs7\":\"Ingresos brutos\",\"O1wAlQ\":\"Guest\",\"LIYoRQ\":\"Gestión de invitados\",\"NUsTc4\":\"Happening now\",\"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\":\"Hi,\",\"/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\":\"Hide details\",\"FmogyU\":\"Ocultar opciones\",\"uXNYjR\":\"Ocultar fechas y horarios agotados\",\"g9RcYX\":\"Ocultar la fecha\",\"uMwTx7\":\"¿Ocultar esta categoría?\",\"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\":\"Hobbies\",\"yY8wAv\":\"Hours\",\"49Tkiw\":\"¿Cómo se aplica el descuento?\",\"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\":\"How long does the schedule run?\",\"DMr2XN\":\"How often?\",\"cceMns\":\"How VAT is applied to the platform fees we charge you.\",\"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\",\"CY3yHL\":\"Si se marca, esta categoría se ocultará del público.\",\"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\":[\"in last \",[\"0\"],\" min\"],\"u7r0G5\":\"In person — set a venue\",\"/LCAwL\":\"En curso\",\"F1Xp97\":\"Asistentes individuales\",\"85e6zs\":\"Insertar token Liquid\",\"CTWsuc\":\"Instagram\",\"VopR6B\":\"Instant Stripe payouts\",\"nbfdhU\":\"Integraciones\",\"I8eJ6/\":\"Internal notes on the attendee's ticket\",\"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\",\"Dn4OyV\":\"Invitado\",\"IuMGvq\":\"Factura\",\"a/bUcL\":\"It happens on more than one date\",\"d+Oe9r\":\"It may have been unpublished or removed. Please check the link and try again.\",\"Lj7sBL\":\"Italiano\",\"F5/CBH\":\"artículo(s)\",\"BzfzPK\":\"Artículos\",\"rjyWPb\":\"January\",\"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\":[\"Unirse a la lista de espera para \",[\"productDisplayName\"]],\"2gMuHR\":\"Inscrito\",\"u4ex5r\":\"July\",\"zeEQd/\":\"June\",\"MxjCqk\":\"¿Solo buscas tus entradas?\",\"xOTzt5\":\"just now\",\"0RihU9\":\"Just wrapped\",\"lB2hSG\":[\"Mantenerme informado sobre noticias y eventos de \",[\"0\"]],\"ioFA9i\":\"Keep the profit.\",\"o66QSP\":\"label updates\",\"RtKKbA\":\"Last\",\"DruLRc\":\"Últimos 14 días\",\"ve9JTU\":\"El apellido es obligatorio\",\"h0Q9Iw\":\"Última respuesta\",\"gw3Ur5\":\"Última activación\",\"FIq1Ba\":\"Later\",\"xvnLMP\":\"Latest check-ins\",\"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\":\"Claro\",\"1qY5Ue\":\"Enlace caducado o inválido\",\"gggTBm\":\"LinkedIn\",\"nvOPBA\":\"Enlaces permitidos\",\"2BBAbc\":\"List\",\"dF6vP6\":\"En vivo\",\"fpMs2Z\":\"EN VIVO\",\"D9zTjx\":\"Eventos en Vivo\",\"C33p4q\":\"Loaded dates\",\"WdmJIX\":\"Cargando vista previa...\",\"IoDI2o\":\"Cargando tokens...\",\"G3Ge9Z\":\"Cargando registros de webhook...\",\"NFxlHW\":\"Cargando webhooks\",\"E0DoRM\":\"Ubicación eliminada\",\"7w8lJU\":\"Ubicación guardada\",\"YsRXDD\":\"Ubicación actualizada\",\"A/kIva\":\"location updates\",\"iyZPPR\":\"ubicaciones\",\"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\",\"PSRm6/\":\"Buscar mis entradas\",\"yJFu/X\":\"Oficina principal\",\"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\":\"Gestiona la lista de espera de tu evento, consulta estadísticas y ofrece entradas a los asistentes.\",\"g2npA5\":\"Oferta manual\",\"hg6l4j\":\"March\",\"pqRBOz\":\"Mark as validated (admin override)\",\"2L3vle\":\"Máx. mensajes / 24h\",\"Qp4HWD\":\"Máx. destinatarios / mensaje\",\"3JzsDb\":\"May\",\"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\":\"Minutes\",\"zz/Wd/\":\"Mode\",\"fpMgHS\":\"Mon\",\"hty0d5\":\"Monday\",\"JbIgPz\":\"Los valores monetarios son totales aproximados en todas las monedas\",\"qvF+MT\":\"Monitorear y gestionar trabajos de fondo fallidos\",\"kY2ll9\":\"month\",\"HajiZl\":\"Mes\",\"+8Nek/\":\"Monthly\",\"1LkxnU\":\"Monthly Pattern\",\"6jefe3\":\"months\",\"f8jrkd\":\"more\",\"JcD7qf\":\"More actions\",\"w36OkR\":\"Eventos más vistos (Últimos 14 días)\",\"+Y/na7\":\"Move all dates earlier or later\",\"3DIpY0\":\"Multiple locations\",\"g9cQCP\":\"Multiple ticket types\",\"GfaxEk\":\"Música\",\"oVGCGh\":\"Mis Entradas\",\"8/brI5\":\"El nombre es obligatorio\",\"sFFArG\":\"El nombre debe tener menos de 255 caracteres\",\"xxU3NX\":\"Ingresos netos\",\"7I8LlL\":\"New capacity\",\"n1GRql\":\"New label\",\"y0Fcpd\":\"Nueva ubicación\",\"ArHT/C\":\"Nuevos registros\",\"uK7xWf\":\"New time:\",\"veT5Br\":\"Next occurrence\",\"WXtl5X\":[\"Next: \",[\"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\":\"No attendees to show\",\"PKySlW\":\"No attendees yet for this date.\",\"/UC6qk\":\"No se encontraron datos de atribución\",\"E2vYsO\":\"No capabilities reported by Stripe yet.\",\"amMkpL\":\"Sin capacidad\",\"d2Jf1f\":\"No change\",\"99ntUF\":\"No hay listas de check-in disponibles para este evento.\",\"wG+knX\":\"No check-ins yet\",\"+dAKxg\":\"No se encontraron configuraciones\",\"LiLk8u\":\"No connections available\",\"eb47T5\":\"No se encontraron datos para los filtros seleccionados. Intente ajustar el rango de fechas o la moneda.\",\"Zc216S\":\"No date added\",\"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\",\"OtJSnL\":\"No hay fechas programadas\",\"gEdNe8\":\"No dates scheduled yet\",\"pZNOT9\":\"Sin fecha de finalización\",\"dW40Uz\":\"No se encontraron eventos\",\"8pQ3NJ\":\"No hay eventos que comiencen en las próximas 24 horas\",\"8zCZQf\":\"Aún no hay eventos\",\"Yc5YW6\":\"Sin trabajos fallidos\",\"EpvBAp\":\"Sin factura\",\"XZkeaI\":\"No se encontraron registros\",\"IcAC6J\":\"No se encontraron fuentes\",\"nrSs2u\":\"No se encontraron mensajes\",\"Rj99yx\":\"No occurrences available\",\"IFU1IG\":\"No occurrences on this date\",\"OVFwlg\":\"Aún no hay preguntas de pedido\",\"EJ7bVz\":\"No se encontraron pedidos\",\"NEmyqy\":\"Aún no hay pedidos\",\"a77B6w\":\"No orders yet for this date.\",\"wUv5xQ\":\"Sin actividad de organizador en los últimos 14 días\",\"vLd1tV\":\"No organizer context available.\",\"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 products configured for this event.\",\"kY7XDn\":\"Ningún producto tiene entradas en lista de espera\",\"8mw4tm\":\"Mensaje de sin productos\",\"wYiAtV\":\"Sin registros de cuentas recientes\",\"UW90md\":\"No se encontraron destinatarios\",\"QoAi8D\":\"Sin respuesta\",\"JeO7SI\":\"Sin respuesta\",\"EK/G11\":\"Aún no hay respuestas\",\"59OWd3\":\"No hay ubicaciones guardadas\",\"mPdY6W\":\"Sin sugerencias\",\"3sRuiW\":\"No se encontraron entradas\",\"debCrL\":\"No hay entradas a la venta\",\"k2C0ZR\":\"No upcoming dates\",\"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\":\"non-edited\",\"Itw24Q\":\"Not checked in\",\"x5+Lcz\":\"No Registrado\",\"8n10sz\":\"No Elegible\",\"kLvU3F\":\"Notify attendees and stop sales\",\"t9QlBd\":\"November\",\"kAREMN\":\"Number of dates to create\",\"6u1B3O\":\"Occurrence\",\"mmoE62\":\"Occurrence Cancelled\",\"V9flmL\":\"Occurrence Schedule\",\"Kh3WO8\":\"Occurrence Summary\",\"byXCTu\":\"Occurrences\",\"KATw3p\":\"Occurrences (future only)\",\"85rTR2\":\"Occurrences can be configured after creation\",\"dzQfDY\":\"October\",\"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.\"],\"6Aih4U\":\"Fuera de línea\",\"nO3VbP\":[\"En venta \",[\"0\"]],\"oXOSPE\":\"En línea\",\"aqmy5k\":\"Online — provide connection details\",\"LuZBbx\":\"Online & in-person\",\"IXuOqt\":\"Online & in-person — see schedule\",\"WjSpu5\":\"Evento en línea\",\"scPxI/\":[\"Solo quedan \",[\"capacity\"]],\"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\",\"wkpaqp\":\"Mostrar solo la fecha y hora de inicio\",\"DMk8F0\":\"Only tickets count toward capacity\",\"M2w1ni\":\"Solo visible con código promocional\",\"y8Bm7C\":\"Open check-in\",\"RLz7P+\":\"Open occurrence\",\"cDSdPb\":\"Apodo opcional que se muestra en los selectores, p. ej. \\\"Sala de conferencias\\\"\",\"HXMJxH\":\"Texto opcional para avisos legales, información de contacto o notas de agradecimiento (solo una línea)\",\"L565X2\":\"opciones\",\"8m9emP\":\"or add a single date\",\"eBskDE\":\"O activa los pagos sin conexión y desactiva Stripe\",\"dSeVIm\":\"order\",\"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\",\"xtQzag\":\"Order details\",\"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\",\"RQCXz6\":\"Límites de Pedido\",\"SO9AEF\":\"Límites de pedido establecidos\",\"vu6Arl\":\"Pedido marcado como pagado\",\"sLbJQz\":\"Pedido no encontrado\",\"kvYpYu\":\"Pedido no encontrado\",\"eJ8SvM\":\"Order number, purchase date, purchaser email\",\"FaPYw+\":\"Propietario del pedido\",\"eB5vce\":\"Propietarios de pedidos con un producto específico\",\"CxLoxM\":\"Propietarios de pedidos con productos\",\"UkHo4c\":\"Ref. pedido\",\"EZy55F\":\"Pedido reembolsado\",\"6eSHqs\":\"Estados de los pedidos\",\"oW5877\":\"Total del pedido\",\"e7eZuA\":\"Pedido actualizado\",\"1SQRYo\":\"Pedido actualizado correctamente\",\"3NT0Ck\":\"El pedido fue cancelado\",\"V5khLm\":\"orders\",\"sd5IMt\":\"Pedidos completados\",\"5It1cQ\":\"Pedidos exportados\",\"UQ0ACV\":\"Total de pedidos\",\"B/EBQv\":\"Pedidos:\",\"qtGTNu\":\"Cuentas orgánicas\",\"P/JHA4\":\"Organizador archivado correctamente\",\"S3CZ5M\":\"Panel del organizador\",\"GzjTd0\":\"Organizador eliminado correctamente\",\"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\":\"Organizers\",\"/IX/7x\":\"Otro\",\"RsiDDQ\":\"Otras Listas (Ticket No Incluido)\",\"aDfajK\":\"Outdoors\",\"qMASRF\":\"Mensajes salientes\",\"iCOVQO\":\"Override\",\"GpFTEc\":\"Override fees on this organizer\",\"M9ZhMP\":\"Override price\",\"cnVIpl\":\"Override removed\",\"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\":\"Past due\",\"xTPjSy\":\"Eventos pasados\",\"/l/ckQ\":\"Pega la URL\",\"URAE3q\":\"Pausado\",\"4fL/V7\":\"Pagar\",\"c2/9VE\":\"Carga útil\",\"5cxUwd\":\"Fecha de pago\",\"ENEPLY\":\"Método de pago\",\"8Lx2X7\":\"Pago recibido\",\"fx8BTd\":\"Pagos no disponibles\",\"C+ylwF\":\"Payouts\",\"UbRKMZ\":\"Pending\",\"UkM20g\":\"Revisión pendiente\",\"dPYu1F\":\"Por asistente\",\"mQV/nJ\":\"per min\",\"+kvxv+\":\"por pedido\",\"VlXNyK\":\"Por pedido\",\"NhuGd7\":\"por producto\",\"hauDFf\":\"Por entrada\",\"mnF83a\":\"Tarifa porcentual\",\"TNLuRD\":\"Percentage fee (%)\",\"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\":\"Permanently remove this date\",\"6kPk3+\":\"Información personal\",\"zmwvG2\":\"Teléfono\",\"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\":\"¿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\":\"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\":\"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\":\"Please select a date and time\",\"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\":\"Position\",\"OESu7I\":\"Evite la sobreventa compartiendo inventario entre múltiples tipos de entradas.\",\"NgVUL2\":\"Vista previa del formulario de pago\",\"cs5muu\":\"Vista previa de la página del evento\",\"Jm2AC3\":\"Price Tier\",\"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\":\"Product settings cannot be edited for cancelled dates.\",\"2339ej\":\"Product settings saved successfully\",\"ldVIlB\":\"Producto actualizado\",\"CP3D8G\":\"Progress\",\"JoKGiJ\":\"Código promocional\",\"k3wH7i\":\"Uso de códigos promocionales y desglose de descuentos\",\"tZqL0q\":\"promo codes\",\"oCHiz3\":\"Promo codes\",\"uEhdRh\":\"Solo Promocional\",\"dLm8V5\":\"Los correos promocionales pueden resultar en la suspensión de la cuenta\",\"W0ETyY\":\"Proporciona al menos un campo de dirección (lugar, calle, ciudad o país).\",\"2W/7Gz\":\"Provide the following before Stripe's next review to keep payouts flowing.\",\"EEYbdt\":\"Publicar\",\"JcgJKc\":\"Publicar de todos modos\",\"evDBV8\":\"Publicar evento\",\"2zEfOd\":\"Publish your event\",\"L7nrC8\":\"Al publicar, la página de tu evento será pública y se abrirán las inscripciones.\",\"dsFmM+\":\"Comprado\",\"JunetL\":\"Purchaser\",\"phmeUH\":\"Purchaser email\",\"ywR4ZL\":\"QR code check-in\",\"oWXNE5\":\"Cant.\",\"biEyJ4\":\"Question answers\",\"k/bJj0\":\"Preguntas reordenadas\",\"b24kPi\":\"Cola\",\"lTPqpM\":\"Quick Tip\",\"fqDzSu\":\"Tasa\",\"mnUGVC\":\"Límite de solicitudes excedido. Por favor, inténtelo de nuevo más tarde.\",\"t41hVI\":\"Volver a ofrecer lugar\",\"TNclgc\":\"Reactivate this date? It will be reopened for future sales.\",\"RENQ6j\":\"¿Listo para publicar?\",\"uqoRbb\":\"Real-time analytics\",\"xzRvs4\":[\"Recibir actualizaciones de productos de \",[\"0\"],\".\"],\"pLXbi8\":\"Registros de cuentas recientes\",\"M1HGuR\":\"Recent activity\",\"3kJ0gv\":\"Recent Attendees\",\"qhfiwV\":\"Recent check-ins\",\"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\",\"WEYdDv\":\"Recommended\",\"wuhHPE\":\"Recurring\",\"asLqwt\":\"Evento recurrente\",\"s3uzsK\":\"Configuración de eventos recurrentes\",\"D0tAMe\":\"Recurring events\",\"JjMIKU\":\"Reddit\",\"HiGkFu\":\"Redirigiendo a Stripe...\",\"pnoTN5\":\"Cuentas de referencia\",\"ACKu03\":\"Actualizar vista previa\",\"vuFYA6\":\"Refund all orders for these dates\",\"4cRUK3\":\"Refund all orders for this date\",\"fKn/k6\":\"Monto del reembolso\",\"qY4rpA\":\"Reembolso fallido\",\"FaK/8G\":[\"Reembolsar pedido \",[\"0\"]],\"MGbi9P\":\"Reembolso pendiente\",\"BDSRuX\":[\"Reembolsado: \",[\"0\"]],\"bU4bS1\":\"Reembolsos\",\"rYXfOA\":\"Configuración regional\",\"5tl0Bp\":\"Preguntas de registro\",\"ZNo5k1\":\"Remaining\",\"Bjh87R\":\"Remove label from all dates\",\"IVZaEo\":\"Elimina por completo las fechas y horarios agotados de la página del evento. Si está desactivado, permanecen visibles y se marcan como agotados.\",\"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\":\"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\":\"Reset to base price\",\"kCn6wb\":\"Restableciendo...\",\"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\":\"results\",\"6gRgw8\":\"Reintentar\",\"1BG8ga\":\"Reintentar todo\",\"rDC+T6\":\"Reintentar trabajo\",\"CbnrWb\":\"Volver al evento\",\"Lf7TCn\":\"Los lugares reutilizables aparecen aquí automáticamente al crear eventos con direcciones, y también puedes añadir los tuyos.\",\"mdQ0zb\":\"Lugares reutilizables para tus eventos. Las ubicaciones creadas desde el autocompletado se guardan aquí automáticamente.\",\"XFOPle\":\"Reuse\",\"1Zehp4\":\"Reuse a Stripe connection from another organizer in this account.\",\"Oo/PLb\":\"Resumen de ingresos\",\"CfuueU\":\"Revocar oferta\",\"RIgKv+\":\"Run until a specific date\",\"dFFW9L\":[\"Venta terminada \",[\"0\"]],\"loCKGB\":[\"Venta termina \",[\"0\"]],\"wlfBad\":\"Período de Venta\",\"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\":\"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\":\"Sales, attendance, and check-in breakdown per occurrence\",\"3VnlS9\":\"Ventas, pedidos y métricas de rendimiento para todos los eventos\",\"3Q1AWe\":\"Ventas:\",\"LeuERW\":\"Same as event\",\"B4nE3N\":\"Precio de entrada de ejemplo\",\"8BRPoH\":\"Lugar de Ejemplo\",\"PiK6Ld\":\"Sat\",\"+5kO8P\":\"Saturday\",\"zJiuDn\":\"Save fee override\",\"NB8Uxt\":\"Save Schedule\",\"KZrfYJ\":\"Guardar enlaces sociales\",\"9Y3hAT\":\"Guardar plantilla\",\"C8ne4X\":\"Guardar Diseño del Ticket\",\"cTI8IK\":\"Save VAT settings\",\"6/TNCd\":\"Guardar Configuración del IVA\",\"4RvD9q\":\"Ubicación guardada\",\"cgw0cL\":\"Ubicaciones guardadas\",\"Fbqm/I\":\"Saving an override creates a dedicated configuration for this organizer if it's currently on the system default.\",\"I+FvbD\":\"Escanear\",\"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\":\"Programar para más tarde\",\"NAzVVw\":\"Programar mensaje\",\"Fz09JP\":\"Schedule starts on\",\"4ba0NE\":\"Programado\",\"qcP/8K\":\"Hora programada\",\"A1taO8\":\"Search\",\"ftNXma\":\"Buscar afiliados...\",\"VMU+zM\":\"Search attendees\",\"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...\",\"YnMfsK\":\"Buscar por nombre o dirección...\",\"VT+urE\":\"Buscar por nombre o correo electrónico...\",\"GHdjuo\":\"Buscar por nombre, correo electrónico o cuenta...\",\"4mBFO7\":\"Search by name, order #, ticket # or email\",\"20ce0U\":\"Buscar por ID de pedido, nombre de cliente o correo electrónico...\",\"4DSz7Z\":\"Buscar por asunto, evento o cuenta...\",\"nQC7Z9\":\"Search dates...\",\"iRtEpV\":\"Search dates…\",\"JRM7ao\":\"Search for an address\",\"BWF1kC\":\"Buscar mensajes...\",\"5WYZKZ\":\"Resultados de búsqueda\",\"IG85fV\":\"Busca ubicaciones guardadas o encuentra una dirección...\",\"3aD3GF\":\"Seasonal\",\"ku//5b\":\"Second\",\"Mck5ht\":\"Pago Seguro\",\"s7tXqF\":\"See schedule\",\"JFap6u\":\"See what Stripe still needs\",\"p7xUrt\":\"Selecciona una categoría\",\"hTKQwS\":\"Select a Date & Time\",\"Ps6Xtf\":\"Select a date to see available times\",\"e4L7bF\":\"Seleccione un mensaje para ver su contenido\",\"zPRPMf\":\"Seleccionar un nivel\",\"BFRSTT\":\"Seleccionar Cuenta\",\"wgNoIs\":\"Select all\",\"mCB6Je\":\"Seleccionar todo\",\"aCEysm\":[\"Select all on \",[\"0\"]],\"a6+167\":\"Seleccionar un evento\",\"CFbaPk\":\"Seleccionar grupo de asistentes\",\"88a49s\":\"Select camera\",\"tVW/yo\":\"Seleccionar moneda\",\"SJQM1I\":\"Select date\",\"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\":\"Select occurrence\",\"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\":\"selected\",\"ylXj1N\":\"Seleccionado\",\"uq3CXQ\":\"Sell out your event.\",\"oBXbO4\":\"Selling a physical product? Cap its quantity on the <0>products page instead.\",\"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\":\"Send to all occurrences, or choose a specific one\",\"QEQlnV\":\"Envíe su primer mensaje\",\"IoAuJG\":\"Enviando...\",\"h69WC6\":\"Enviado\",\"BVu2Hz\":\"Enviado por\",\"ZFa8wv\":\"Sent to attendees when a scheduled date is cancelled\",\"SPdzrs\":\"Enviado a clientes cuando realizan un pedido\",\"LxSN5F\":\"Enviado a cada asistente con los detalles de su entrada\",\"hgvbYY\":\"September\",\"5sN96e\":\"Session cancelled\",\"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\":\"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\":\"Configure listas de registro para diferentes entradas, sesiones o días.\",\"TaWVGe\":\"Set up payouts\",\"JA//e6\":\"Set up schedule\",\"gzXY7l\":\"Set Up Schedule\",\"0Ls9qe\":\"Set up the tickets you'll sell and their prices\",\"xMO+Ao\":\"Configura tu organización\",\"5pEFnq\":\"Set up your schedule\",\"h/9JiC\":\"Set Up Your Schedule\",\"zRRuUD\":\"Set up your schedule in the next steps\",\"ETC76A\":\"Set, change, or remove the date's location or online details\",\"C3htzi\":\"Configuración actualizada\",\"Ohn74G\":\"Configuración y diseño\",\"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\":\"Compartir enlace de afiliado\",\"hL7sDJ\":\"Compartir página del organizador\",\"jy6QDF\":\"Gestión de capacidad compartida\",\"jDNHW4\":\"Shift times\",\"tPfIaW\":[\"Shifted times for \",[\"count\"],\" date(s)\"],\"WwlM8F\":\"Mostrar opciones avanzadas\",\"cMW+gm\":[\"Mostrar todas las plataformas (\",[\"0\"],\" más con valores)\"],\"wXi9pZ\":\"Show attendee notes to non-logged-in staff\",\"4LZFir\":\"Mostrar todo el rango de fechas\",\"UVPI5D\":\"Mostrar menos plataformas\",\"Eu/N/d\":\"Mostrar casilla de aceptación de marketing\",\"SXzpzO\":\"Mostrar casilla de aceptación de marketing por defecto\",\"b33PL9\":\"Mostrar más plataformas\",\"Eut7p9\":\"Show order details to non-logged-in staff\",\"+RoWKN\":\"Show question answers to non-logged-in staff\",\"jbcx6L\":\"Show remaining capacity on event dates\",\"rXxBOx\":\"Show remaining capacity to buyers\",\"t1LIQW\":[\"Mostrando \",[\"0\"],\" de \",[\"totalRows\"],\" registros\"],\"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\":\"Registrado\",\"5C7J+P\":\"Single Event\",\"E//btK\":\"Skip manually edited dates\",\"paESr6\":\"Eslovaco\",\"9wu8nm\":\"Snapchat\",\"kIKb9e\":\"Social\",\"d0rUsW\":\"Enlaces sociales\",\"j/TOB3\":\"Enlaces sociales y sitio web\",\"s9KGXU\":\"Vendido\",\"yp+0jj\":\"sold out\",\"1hupow\":\"Agotado, lista de espera disponible\",\"iACSrw\":\"Some details are hidden from public access. Log in to view everything.\",\"Dia6iz\":\"Something went wrong while deleting the image. Please try again.\",\"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\":\"Spirituality\",\"oPaRES\":\"Split check-in across days, areas, or ticket types. Share the link with staff — no account needed on their end.\",\"7JFNej\":\"Deportes\",\"/bfV1Y\":\"Staff instructions\",\"tXkhj/\":\"Start\",\"StWUH4\":\"Start check-in\",\"JcQp9p\":\"Fecha y hora de inicio\",\"0m/ekX\":\"Fecha y hora de inicio\",\"izRfYP\":\"La fecha de inicio es obligatoria\",\"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/\":\"Estadísticas\",\"GVUxAX\":\"Las estadísticas se basan en la fecha de creación de la cuenta\",\"29Hx9U\":\"Stats\",\"5ia+r6\":\"Still needed\",\"wuV0bK\":\"Detener Suplantación\",\"s/KaDb\":\"Stripe connected\",\"Bk06QI\":\"Stripe conectado\",\"akZMv8\":[\"Stripe connection copied from \",[\"0\"],\".\"],\"v0aRY1\":\"Stripe didn't return a setup link. Please try again.\",\"aKtF0O\":\"Stripe no conectado\",\"9i0++A\":\"ID de pago de Stripe\",\"R1lIMV\":\"Stripe will need a few more details soon\",\"FzcCHA\":\"Stripe will walk you through a few quick questions to finish setup.\",\"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\",\"kRWc2g\":\"Configuración de eventos recurrentes actualizada correctamente\",\"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\":\"Sun\",\"DBC3t5\":\"Sunday\",\"UaISq3\":\"Sueco\",\"JZTQI0\":\"Cambiar organizador\",\"9YHrNC\":\"Predeterminado del sistema\",\"lruQkA\":\"Tap this screen to resume scanning\",\"TJUrME\":[\"Targeting attendees across \",[\"0\"],\" selected sessions.\"],\"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\":\"Team collaboration\",\"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\":\"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\":\"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\",\"nm3Iz/\":\"¡Gracias por asistir!\",\"pYwj0k\":\"Thanks,\",\"k3IitN\":\"That's a wrap\",\"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.\",\"7oksH+\":[\"El descuento se deduce de cada producto elegible. P. ej., \",[\"currencySymbol\"],\"10 de descuento × 3 entradas = \",[\"currencySymbol\"],\"30 de descuento.\"],\"sKL8k2\":\"El descuento se deduce una sola vez del total 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.\",\"tXadb0\":\"El evento que buscas no está disponible en este momento. Puede que haya sido eliminado, haya caducado o la URL sea incorrecta.\",\"5fPdZe\":\"The first date this schedule will generate from.\",\"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.\",\"Np4eLs\":[\"The maximum is \",[\"MAX_PREVIEW\"],\" sessions. Please reduce the date range, frequency, or number of sessions per day.\"],\"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\":\"The override is recorded in the order audit log.\",\"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\",\"OVSkIF\":\"El veloz zorro marrón salta sobre el perro perezoso.\",\"z0KrIG\":\"La hora programada es obligatoria\",\"EWErQh\":\"La hora programada debe ser en el futuro\",\"UNd0OU\":[\"The session for \\\"\",[\"title\"],\"\\\" originally scheduled for \",[\"0\"],\" has been rescheduled.\"],\"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\",\"ybBP2H\":\"There are no products available for this date. Please choose another date.\",\"O7g4eR\":\"There are no upcoming dates for this event\",\"062KsE\":\"These details are shown on the attendee's ticket and order summary for this date only.\",\"5Eu+tn\":\"Estos detalles solo se mostrarán si el pedido se completa correctamente.\",\"jQjwR+\":\"These details will replace any existing location on the affected dates and show on attendee tickets.\",\"6eaLu/\":\"Estos precios se aplican a todas las fechas de tu programación, y las cantidades de los niveles limitan las ventas totales de todas las fechas en conjunto. Las fechas de venta de los niveles se aplican globalmente. Puedes sobrescribir los precios de fechas individuales en la <0>página de Programación de fechas.\",\"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\":\"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\":\"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/\":[\"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.\",\"E9BqZw\":\"This date only\",\"RzEvf5\":\"Este evento ha finalizado\",\"kc4bIA\":\"Este evento aún no tiene entradas ni productos, por lo que los asistentes no podrán registrarse.\",\"eMaNd0\":\"This event is not available\",\"YClrdK\":\"Este evento aún no está publicado\",\"GL6z+k\":\"Este evento está agotado\",\"pIwDhS\":\"This event's dates and times are set on the occurrence schedule.\",\"ny5rgr\":\"This is a recurring event\",\"tc64Zz\":\"Este es el nombre de la categoría que se mostrará en la página del evento.\",\"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.\",\"5DpZrC\":\"Esto limita las ventas totales de todas las fechas de tu programación en conjunto; no es un límite por fecha. Para limitar la asistencia de cada fecha, establece una capacidad en la <0>página de Programación de fechas.\",\"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\":\"This occurrence is at capacity\",\"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\",\"qEGn8I\":\"Este evento recurrente aún no tiene fechas, por lo que los asistentes no tienen nada que reservar.\",\"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.\",\"1LuJNw\":\"Esta entrada ya no es válida\",\"0Ew0uk\":\"Esta entrada acaba de ser escaneada. Por favor espere antes de escanear nuevamente.\",\"FYXq7k\":[\"This will affect \",[\"loadedAffectedCount\"],\" date(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\":\"Throughput\",\"+FjWgX\":\"Thu\",\"kkDQ8m\":\"Thursday\",\"0GSPnc\":\"Diseño de Ticket\",\"EZC/Cu\":\"Diseño del ticket guardado exitosamente\",\"bbslmb\":\"Diseñador de entradas\",\"1BPctx\":\"Entrada para\",\"HGuXjF\":\"Poseedores de entradas\",\"CMUt3Y\":\"Titulares de entradas\",\"awHmAT\":\"ID de la entrada\",\"6czJik\":\"Logo del Ticket\",\"t79rDv\":\"Entrada no encontrada\",\"6tmWch\":\"Entrada o producto\",\"1tfWrD\":\"Vista previa de entrada para\",\"KnjoUA\":\"Precio de la entrada\",\"pGZOcL\":\"Entrada reenviada correctamente\",\"o02GZM\":\"Ticket sales have ended for this event\",\"8jLPgH\":\"Tipo de Ticket\",\"8qsbZ5\":\"Venta de entradas\",\"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\":\"Time\",\"fXf2r5\":[\"Times shown in \",[\"timezoneAbbr\"]],\"dMtLDE\":\"to\",\"/jQctM\":\"Para\",\"tiI71C\":\"Para aumentar sus límites, contáctenos en\",\"ecUA8p\":\"Today\",\"W428WC\":\"Alternar columnas\",\"BRMXj0\":\"Tomorrow\",\"UBSG1X\":\"Mejores organizadores (Últimos 14 días)\",\"3sZ0xx\":\"Cuentas Totales\",\"SMDzqJ\":\"Total de asistentes\",\"orBECM\":\"Total recaudado\",\"k5CU8c\":\"Total de entradas\",\"4B7oCp\":\"Tarifa total\",\"sMMlTX\":\"Total fees\",\"mlvCEl\":\"Total orders\",\"2AW/k5\":\"Cantidad total en todas las fechas\",\"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\",\"GUA0Jy\":\"Try a different search term or filter\",\"2P/OWN\":\"Try adjusting your filters to see more dates.\",\"ouM5IM\":\"Probar otro correo\",\"3DZvE7\":\"Probar Hi.Events gratis\",\"vq2WxD\":\"Tue\",\"G3myU+\":\"Tuesday\",\"Kz91g/\":\"Turco\",\"GdOhw6\":\"Desactivar sonido\",\"KUOhTy\":\"Activar sonido\",\"dBeuY2\":\"Twitch\",\"QytzQr\":\"Escribe \\\"eliminar\\\" para confirmar\",\"nWRfmt\":\"Tipografía\",\"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\":\"Unable to load attendee details.\",\"GlnD5Y\":\"Unable to load products for this date. Please try again.\",\"17VbmV\":\"Unable to undo check-in\",\"n57zCW\":\"Cuentas sin atribución\",\"9uI/rE\":\"Undo\",\"Ef7StM\":\"Desconocido\",\"ZBAScj\":\"Asistente desconocido\",\"MEIAzV\":\"Sin nombre\",\"K6L5Mx\":\"Ubicación sin nombre\",\"7yiFvZ\":\"No pagado\",\"X13xGn\":\"No confiable\",\"gyXpQN\":\"Upcoming events\",\"Pp1sWX\":\"Actualizar afiliado\",\"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\":\"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\":\"USB scanner listening\",\"dyTklH\":\"USB scanner paused\",\"OHJXlK\":\"Use <0>plantillas Liquid para personalizar sus correos electrónicos\",\"/rsy72\":\"Use event default\",\"0k4cdb\":\"Usar detalles del pedido para todos los asistentes. Los nombres y correos de los asistentes coincidirán con la información del comprador.\",\"bA31T4\":\"Usar los datos del comprador para todos los asistentes\",\"PpgtnC\":\"Usar esta dirección\",\"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\":\"VAT number\",\"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\":\"VAT registered\",\"Nfbg76\":\"Configuración del IVA guardada exitosamente\",\"UvYql/\":\"Configuración de IVA guardada. Estamos validando tu número de IVA en segundo plano.\",\"bXn1Jz\":\"VAT settings updated\",\"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\":\"VAT: not registered\",\"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\":\"View All\",\"yA/6BX\":\"View all →\",\"6CQ7/B\":\"View all capabilities\",\"YSE15b\":\"View all check-in lists\",\"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\":[\"View details for \",[\"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 entrada\",\"N9FyyW\":\"Vea, edite y exporte sus asistentes registrados.\",\"6dp/Hz\":\"Vimeo\",\"SS4mGB\":\"VK\",\"uUehLT\":\"En espera\",\"quR8Qp\":\"Esperando pago\",\"KrurBH\":\"Waiting for scan…\",\"u0n+wz\":\"Lista de espera\",\"3RXFtE\":\"Lista de espera habilitada\",\"TwnTPy\":\"La oferta de la lista de espera ha expirado\",\"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.\",\"aT/44s\":\"We couldn't copy that Stripe connection. Please try again.\",\"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.\",\"Fjj/5/\":\"We couldn't load the check-in lists. Please try again.\",\"ADsQ23\":\"We couldn't reach Stripe just now. Please try again in a moment.\",\"HJKdzP\":\"Tuvimos un problema al cargar esta página. Por favor, inténtalo de nuevo.\",\"jegrvW\":\"We partner with Stripe to send payouts straight to your bank account.\",\"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\":\"Utilizamos cookies para ayudarnos a entender cómo se usa el sitio y mejorar su 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.\",\"mfM/HJ\":[\"Te notificaremos por correo electrónico si hay una plaza disponible para \",[\"productDisplayName\"],\" el \",[\"occurrenceDate\"],\".\"],\"iy+M+c\":[\"Te notificaremos por correo electrónico si hay una plaza disponible para \",[\"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\":\"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\":[\"We've made changes to the schedule for \\\"\",[\"title\"],\"\\\" — \",[\"description\"],\" affecting \",[\"affectedCount\"],\" session(s).\"],\"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\":\"Webhook integrations\",\"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\":\"Wed\",\"VAcXNz\":\"Wednesday\",\"64X6l4\":\"week\",\"4XSc4l\":\"Weekly\",\"IAUiSh\":\"weeks\",\"vKLEXy\":\"Weibo\",\"9eF5oV\":\"Bienvenido de nuevo\",\"QDWsl9\":[\"Bienvenido a \",[\"0\"],\", \",[\"1\"],\" 👋\"],\"LETnBR\":[\"Bienvenido a \",[\"0\"],\", aquí hay una lista de todos tus eventos\"],\"DDbx7K\":\"Wellness\",\"ywRaYa\":\"What time?\",\"FaSXqR\":\"¿Qué tipo de evento?\",\"0WyYF4\":\"What unauthenticated staff can see\",\"2+ExvJ\":\"WhatsApp\",\"cxsKvw\":\"Cuando se elimina un registro de entrada\",\"RPe6bE\":\"When a date is cancelled on a recurring event\",\"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 ser notificados cuando haya plazas disponibles.\",\"OIkHj+\":\"Cuando un producto se agota, los clientes pueden unirse a una lista de espera para ser notificados cuando haya plazas disponibles. Los clientes se unen a la lista de espera para una fecha específica y las ofertas se realizan por fecha.\",\"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\":\"Cuando los clientes compren entradas, sus pedidos aparecerán aquí.\",\"pm9tpn\":\"Cuando está activado, los compradores pueden copiar su nombre y correo electrónico a todos los asistentes a la vez. Desactívalo para eliminar la opción \\\"Todos los asistentes\\\"; los compradores aún podrán copiar sus datos al primer asistente y el resto deberá introducirse individualmente.\",\"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.\",\"uchB0M\":\"Vista previa del widget\",\"uvIqcj\":\"Taller\",\"EpknJA\":\"Escribe tu mensaje aquí...\",\"nhtR6Y\":\"X (Twitter)\",\"7qI8sJ\":\"year\",\"zkWmBh\":\"Yearly\",\"+BGee5\":\"years\",\"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+\":\"You can override this for individual dates later.\",\"paWwQ0\":\"Aún puede ofrecer tickets manualmente si es necesario.\",\"jTDzpA\":\"No puedes archivar el último organizador activo de tu cuenta.\",\"D8baxD\":\"Tienes entradas de pago, pero Stripe aún no está conectado, por lo que no puedes aceptar pagos.\",\"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/\":\"You need to create at least one occurrence before you can add attendees to this recurring event.\",\"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\":\"You'll be able to set up dates, schedules, and recurrence rules in the next step.\",\"zKAheG\":\"You're changing session times\",\"MNFIxz\":[\"¡Vas a ir a \",[\"0\"],\"!\"],\"ZlLcht\":[\"Te estás uniendo a la lista de espera para el \",[\"occurrenceDate\"],\".\"],\"qGZz0m\":\"¡Estás en la lista de espera!\",\"/5HL6k\":\"¡Se te ha ofrecido un lugar!\",\"gbjFFH\":\"You've changed the session time\",\"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\":\"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\":\"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. Por favor, vuelve a unirte a la lista de espera para ser notificado 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 Main Street\",\"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\":\"Administrador\",\"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 entrada.\",\"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\":\"Are you sure you want to make this event public? This will make the event visible to the public\",\"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\":\"Attendee Notes\",\"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\":\"Mostrar este producto contraído al cargar la página del evento\",\"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\":\"Completado\",\"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 una entrada\",\"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\":\"Personaliza la página de tu evento\",\"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\":\"Dismiss\",\"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\":\"Finalizado\",\"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\":\"Event URL\",\"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\":\"Complementario\",\"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 de la entrada 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 attendees have been added to this order.\",\"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 product associated with this attendee.\",\"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 questions answered by this attendee.\",\"SnlQeq\":\"No questions have been asked for this order.\",\"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\":\"Online event\",\"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\":\"Order #\",\"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\":\"Order Notes\",\"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\":\"Desarrollado 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 entradas\",\"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 adicional o instrucciones para esta pregunta. Usa este campo para añadir términos\\ny condiciones, directrices o cualquier información importante que los asistentes necesiten saber 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\":\"Reembolsado\",\"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 de la 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\":\"Rol\",\"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 entradas\",\"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\":\"Suite 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 complementario, como una camiseta o una taza. No se emitirá una entrada\",\"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 una entrada. Se emitirá una entrada 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\":\"entrada\",\"kjAL4v\":\"Entrada\",\"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\":\"Cantidad 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\":\"View\",\"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 entrada 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 entradas. 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 entradas. Sus entradas 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é entradas 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 una entrada 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\":\"(none)\",\"xYxQCZ\":[[\"0\"],\" \",[\"1\"]],\"lAOy2r\":[[\"0\"],\" \",[\"1\"],\" ya está registrado\"],\"3beCx0\":[[\"0\"],\" <0>checked in\"],\"S4PqS9\":[[\"0\"],\" webhooks activos\"],\"6MIiOI\":[[\"0\"],\" restantes\"],\"COnw8D\":[\"Logo de \",[\"0\"]],\"xG9N0H\":[[\"0\"],\" of \",[\"1\"],\" seats are taken.\"],\"B7pZfX\":[[\"0\"],\" organizadores\"],\"/HkCs4\":[[\"0\"],\" entradas\"],\"30bTiU\":[[\"activeCount\"],\" enabled\"],\"jTs4am\":[[\"appName\"],\" logo\"],\"gbJOk9\":[[\"attendeeCount\"],\" attendees are registered for this session.\"],\"TjbIUI\":[[\"availableCount\"],\" de \",[\"totalCount\"],\" disponibles\"],\"PSChHo\":[[\"capacity\"],\" plazas disponibles\"],\"lzQ8/M\":[[\"checkedIn\"],\" / \",[\"total\"],\" checked in\"],\"RZ0JX3\":[[\"chipTime\"],\", agotado\"],\"M4KnFs\":[[\"chipTime\"],\", Agotado, lista de espera disponible\"],\"SeyN12\":[[\"completedCount\"],\" of \",[\"totalCount\"],\" steps complete\"],\"f2rhaD\":[[\"diffHr\"],\"h ago\"],\"NRSLBe\":[[\"diffMin\"],\"m ago\"],\"iYfwJE\":[[\"diffSec\"],\"s ago\"],\"OJnhhX\":[[\"eventCount\"],\" eventos\"],\"mhZbzw\":[[\"loadedAffectedAttendees\"],\" attendees are registered across the affected sessions.\"],\"RBuxIl\":[[\"productCount\"],\" ticket types configured\"],\"VFLd0I\":[[\"slotCount\"],\" times available\"],\"3IEF7U\":[[\"totalCount\"],\" tipos de entradas\"],\"0cLzoF\":[[\"totalOccurrences\"],\" dates\"],\"AEGc4t\":[[\"totalOccurrences\"],\" sessions across \",[\"0\"],\" dates (\",[\"1\",\"plural\",{\"one\":[\"#\",\" session\"],\"other\":[\"#\",\" sessions\"]}],\" per day)\"],\"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.\",\"Il5Uid\":\"<0>Esta es la cantidad total disponible para todas las fechas de tu programación en conjunto; no es un límite por fecha. Para limitar la asistencia de cada fecha, establece una capacidad en la <1>página de Programación de fechas.\",\"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 attendee is registered across the affected sessions.\",\"qOyE2U\":\"1 attendee is registered for this session.\",\"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\",\"y2Jh0m\":\"1 time available\",\"cGtUz6\":\"1 semana antes del evento\",\"HR/cvw\":\"Calle Ejemplo 123\",\"dgKxZ5\":\"135+ currencies & 40+ payment methods\",\"kMU5aM\":\"Se ha enviado un aviso de cancelación a\",\"o++0qa\":\"a change in duration\",\"WuWSX5\":\"A few quick steps and you're ready to start selling.\",\"RQ5kDd\":\"Un mensaje para mostrar cuando no hay productos en esta categoría.\",\"V53XzQ\":\"Se ha enviado un nuevo código de verificación a tu correo\",\"sr2Je0\":\"a shift in start/end times\",\"/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\":[\"Account · \",[\"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\":\"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\":\"Agregue preguntas personalizadas para recopilar información adicional durante el proceso de pago\",\"Z/dcxc\":\"Add Date\",\"QeupRg\":\"Añadir fechas\",\"Q219NT\":\"Add Dates\",\"yjB5VC\":\"Add dates and times for your recurring event\",\"Z8idyM\":\"Add details\",\"wpirGs\":\"Add event details\",\"VX6WUv\":\"Agregar ubicación\",\"GCQlV2\":\"Add multiple times if you run several sessions per day.\",\"7JF9w9\":\"Agregar pregunta\",\"NLbIb6\":\"Add this attendee anyway (override capacity)\",\"6PNlRV\":\"Añade este evento a tu calendario\",\"BGD9Yt\":\"Agregar entradas\",\"uIv4Op\":\"Añade píxeles de seguimiento a tus páginas de eventos públicos y a la página de inicio del organizador. Se mostrará un banner de consentimiento 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\":\"Affiliate program\",\"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.\",\"3e31kI\":\"After your event is created, you can choose how often it repeats from the dashboard.\",\"z7GAMJ\":\"all\",\"N40H+G\":\"All\",\"7rLTkE\":\"Todos los eventos archivados\",\"gKq1fa\":\"Todos los asistentes\",\"63gRoO\":\"All attendees of the selected sessions\",\"uWxIoH\":\"All attendees of this occurrence\",\"pMLul+\":\"Todas las monedas\",\"sgUdRZ\":\"All dates\",\"e4q4uO\":\"All Dates\",\"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\":\"All matching dates\",\"F1/VgK\":\"All occurrences\",\"OpWjMq\":\"All Occurrences\",\"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.\",\"VZdky1\":\"Permitir que los compradores copien sus datos a todos los asistentes\",\"F3mW5G\":\"Permitir que los clientes se unan a una lista de espera cuando este producto esté agotado\",\"4CMO/q\":\"Permitir que los clientes se unan a una lista de espera cuando este producto esté agotado. Los clientes se unen a la lista de espera para una fecha específica.\",\"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\":\"Already in\",\"/H326L\":\"Ya reembolsado\",\"USEpOK\":\"Already use Stripe on another organizer? Reuse that connection.\",\"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.\",\"OPFdAM\":\"Una descripción opcional de esta categoría para mostrar en la página del evento.\",\"eusccx\":\"Un mensaje opcional para mostrar en el producto destacado, ej. \\\"Se vende rápido 🔥\\\" o \\\"Mejor valor\\\"\",\"5GJuNp\":[\"and \",[\"0\"],\" more...\"],\"QNrkms\":\"Respuesta actualizada con éxito.\",\"+qygei\":\"Answers\",\"GK7Lnt\":\"Answers provided at checkout (e.g. meal choice)\",\"lE8PgT\":\"Any dates you've manually customized will be kept.\",\"jVoYha\":[\"aplicado — \",[\"0\"],\" de descuento en tu pedido\"],\"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\":\"Aprobar mensaje\",\"naCW6Z\":\"April\",\"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\":[\"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\":\"¿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/\":\"Are you sure you want to delete this date? This action cannot be undone.\",\"RiF/yT\":\"Are you sure you want to delete this image?\",\"b3+Qku\":\"Are you sure you want to delete this tax or fee? It will no longer be applied to new orders.\",\"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\":\"Are you sure you want to permanently delete this date? This cannot be undone.\",\"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?\",\"b7tkGp\":\"Are you sure you want to revoke this invitation?\",\"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 entrada comprado\",\"ui5ln+\":\"Assign a different plan\",\"9Jxliv\":\"Assign plan\",\"xdiER7\":\"Nivel asignado\",\"F2rX0R\":\"Debe seleccionarse al menos un tipo de evento\",\"Z44eZS\":\"At least one product must stay available for this date. To make the date inaccessible, cancel it from the schedule instead.\",\"BCmibk\":\"Intentos\",\"6PecK3\":\"Asistencia y tasas de registro en todos los eventos\",\"K2tp3v\":\"attendee\",\"AJ4rvK\":\"Asistente cancelado\",\"qvylEK\":\"Asistente creado\",\"Aspq3b\":\"Recopilación de datos de asistentes\",\"fpb0rX\":\"Datos del asistente copiados del pedido\",\"94aQMU\":\"Información del asistente\",\"KkrBiR\":\"Recopilación de información del asistente\",\"sjPjOg\":\"Attendee notes\",\"cosfD8\":\"Estado del Asistente\",\"D2qlBU\":\"Asistente actualizado\",\"22BOve\":\"Asistente actualizado correctamente\",\"x8Vnvf\":\"El ticket del asistente no está incluido en esta lista\",\"/Ywywr\":\"attendees\",\"zLRobu\":\"attendees checked in\",\"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/\":\"August\",\"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\":\"Ofrecer automáticamente entradas a la siguiente persona cuando haya disponibilidad. Si está deshabilitado, puedes procesar manualmente la lista de espera desde la página de Lista de espera.\",\"csDS2L\":\"Disponible\",\"Xp+ywP\":\"Disponible cuando se complete el pago\",\"dwDH1K\":[\"Available times on \",[\"dayName\"]],\"clF06r\":\"Disponible para reembolso\",\"NB5+UG\":\"Tokens disponibles\",\"L+wGOG\":\"Awaiting\",\"qcw2OD\":\"Awaiting pay\",\"kNmmvE\":\"Awesome Events S.A.\",\"TeSaQO\":\"Volver a cuentas\",\"kYqM1A\":\"Volver al evento\",\"s5QRF3\":\"Volver a mensajes\",\"td/bh+\":\"Volver a Informes\",\"nsm7BA\":\"Volver a la búsqueda\",\"imjKVx\":\"Bank account connected\",\"D9LTCH\":\"Base Price\",\"hviJef\":\"Based on the global sale period above, not per date\",\"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 entradas con un logotipo, colores y mensaje de pie de página personalizados.\",\"4BZj5p\":\"Built-in fraud protection\",\"cr7kGH\":\"Bulk Edit\",\"1Fbd6n\":\"Bulk Edit Dates\",\"Eq6Tu9\":\"Bulk update failed.\",\"9N+p+g\":\"Negocios\",\"SWnN1L\":\"Business address\",\"kQekXw\":\"Business name\",\"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 son corresponsables de los datos recopilados. Eres responsable de garantizar que tienes una base legal para este procesamiento según las leyes de privacidad aplicables (RGPD, CCPA, etc.).\",\"DFqasq\":[\"Al continuar, aceptas los <0>Términos de Servicio de \",[\"0\"],\"\"],\"wVSa+U\":\"By day of month\",\"0MnNgi\":\"By day of week\",\"CetOZE\":\"By ticket type\",\"lFdbRS\":\"Omitir comisiones de aplicación\",\"AjVXBS\":\"Calendar\",\"2VLZwd\":\"Botón de llamada a la acción\",\"rT2cV+\":\"Camera\",\"7hYa9y\":\"Camera permission was denied. <0>Request permission again, or grant this page camera access in your browser settings.\",\"D02dD9\":\"Campaña\",\"RRPA79\":\"Can't check in\",\"OcVwAd\":[\"Cancel \",[\"count\"],\" date(s)\"],\"H4nE+E\":\"Cancelar todos los productos y devolverlos al grupo disponible\",\"Py78q9\":\"Cancel Date\",\"tOXAdc\":\"Cancelar anulará todos los asistentes asociados con este pedido y liberará los entradas de vuelta al grupo disponible.\",\"FPpqc7\":[\"Cancelling \",[\"0\"],\" date(s). This may take a moment to complete.\"],\"01sEfm\":\"No se puede eliminar la configuración predeterminada del sistema\",\"VsM1HH\":\"Asignaciones de capacidad\",\"9bIMVF\":\"Capacity management\",\"H7K8og\":\"Capacity must be 0 or greater\",\"nzao08\":\"capacity updates\",\"4cp9NP\":\"Capacity Used\",\"K7tIrx\":\"Categoría\",\"DRK3Bq\":\"Category deleted successfully\",\"o+XJ9D\":\"Cambiar\",\"kJkjoB\":\"Change duration\",\"J0KExZ\":\"Change the attendee limit\",\"ssospy\":\"Change time\",\"CIHJJf\":\"Cambiar configuración de lista de espera\",\"B5icLR\":[\"Changed duration for \",[\"count\"],\" date(s)\"],\"Kb+0BT\":\"Charges\",\"2tbLdK\":\"Caridad\",\"BPWGKn\":\"Check in\",\"6uFFoY\":\"Check out\",\"FjAlwK\":[\"Check out this event: \",[\"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\":\"Check-In\",\"udRwQs\":\"Registro de entrada creado\",\"F4SRy3\":\"Registro de entrada eliminado\",\"as6XfO\":[\"Check-in for \",[\"0\"],\" was undone\"],\"9s/wrQ\":\"Check-in history\",\"Wwztk4\":\"Check-In List\",\"9gPPUY\":\"¡Lista de Check-In Creada!\",\"dwjiJt\":\"Check-in list info\",\"7od0PV\":\"check-in lists\",\"f2vU9t\":\"Listas de registro\",\"XprdTn\":\"Check-in navigation\",\"5tV1in\":\"Check-in progress\",\"SHJwyq\":\"Tasa de registro\",\"qCqdg6\":\"Estado de Check-In\",\"cKj6OE\":\"Resumen de registros\",\"7B5M35\":\"Check-Ins\",\"VrmydS\":\"Checked in\",\"DM4gBB\":\"Chino (Tradicional)\",\"p8Jvp4\":\"Choose a configuration\",\"ElShBO\":\"Choose a different action\",\"pHEhf+\":\"Elige una tipografía que coincida con tu marca. Las fuentes se alojan mediante Bunny Fonts.\",\"Zok1Gx\":\"Choose an organizer\",\"pkk46Q\":\"Elige un organizador\",\"Ag32+c\":\"Choose another date\",\"Crr3pG\":\"Elegir calendario\",\"Z38ZJu\":\"Elige cómo se muestra la fecha del evento en la entrada\",\"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\":\"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\":\"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 entrada\",\"FpsvqB\":\"Modo de Color\",\"jEu4bB\":\"Columnas\",\"CWk59I\":\"Comedia\",\"rPA+Gc\":\"Preferencias de comunicación\",\"zFT5rr\":\"complete\",\"bUQMpb\":\"Complete Stripe setup\",\"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\":\"Configuration assigned\",\"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\":\"Configure which products are available for this occurrence and optionally adjust pricing.\",\"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\",\"/K4Vqr\":\"Conecta Stripe para aceptar pagos\",\"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\":\"Los detalles de conexión son obligatorios para los eventos en línea\",\"jfC/xh\":\"Contacto\",\"LOFgda\":[\"Contacto \",[\"0\"]],\"41BQ3k\":\"Correo de contacto\",\"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\",\"s30OcA\":\"Controla cómo se muestran las fechas y horarios en la página del evento\",\"p2FRHj\":\"Controle cómo se manejan las comisiones de la plataforma para este evento\",\"NqfabH\":\"Control who gets in for this date\",\"fmYxZx\":\"Control who gets in, and when\",\"1JnTgU\":\"Copiado de arriba\",\"FxVG/l\":\"Copiado al portapapeles\",\"PiH3UR\":\"¡Copiado!\",\"4i7smN\":\"Copy account ID\",\"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\":\"Could not prepare the bulk update.\",\"KOavaU\":\"No se pudieron obtener los detalles de la dirección\",\"/lq4oO\":\"Could not save date\",\"mHu0az\":\"Couldn't send verification email. Please try again.\",\"QOIm+S\":\"Los recuentos incluyen todas las fechas próximas. A cada persona se le ofrece una plaza para la fecha a la que se apuntó.\",\"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\":\"Covers every ticket\",\"zg4oSu\":[\"Crear plantilla \",[\"0\"]],\"RKKhnW\":\"Cree un widget personalizado para vender entradas en su sitio.\",\"6sk7PP\":\"Create a fixed number\",\"jqhTmw\":\"Create a list for this date\",\"PhioFp\":\"Create a new check-in list for an active session, or contact the organizer if you think this is a mistake.\",\"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 entradas 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\":\"Create Date\",\"Nc3l/D\":\"Cree descuentos, códigos de acceso para entradas ocultos y ofertas especiales.\",\"PybJS2\":\"Create event\",\"eWEV9G\":\"Crear nueva contraseña\",\"wl2iai\":\"Create Schedule\",\"8AiKIu\":\"Crear entrada o producto\",\"/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\":\"Crea tu primer evento para comenzar a vender entradas y gestionar asistentes.\",\"ZCSSd+\":\"Crea tu propio evento\",\"qdv10s\":[\"Creando \",[\"0\"],\" fechas. Esto puede tardar un momento.\"],\"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\":\"Currently assigned\",\"iTvh6I\":\"Actualmente disponible para compra\",\"A42Dqn\":\"Custom branding\",\"Guo0lU\":\"Fecha y hora personalizada\",\"WDMdn8\":\"Custom questions\",\"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\",\"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\":\"Daily\",\"/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\":\"Dance\",\"pvnfJD\":\"Oscuro\",\"MaB9wW\":\"Date Cancellation\",\"e6cAxJ\":\"Date cancelled\",\"81jBnC\":\"Date cancelled successfully\",\"a/C/6R\":\"Date created successfully\",\"IW7Q+u\":\"Date deleted\",\"rngCAz\":\"Date deleted successfully\",\"vHbfoQ\":\"Date reactivated\",\"hvah+S\":\"Date reopened for new sales\",\"Ez0YsD\":\"Date updated successfully\",\"Te33mU\":\"Dates are managed per occurrence\",\"91zCxb\":\"Dates with sessions\",\"/ITcnz\":\"day\",\"H7OUPr\":\"Day\",\"JtHrX9\":\"Day of Month\",\"J/Upwb\":\"days\",\"vDVA2I\":\"Days of Month\",\"rDLvlL\":\"Days of Week\",\"r6zgGo\":\"December\",\"jbq7j2\":\"Rechazar\",\"ovBPCi\":\"Predeterminado\",\"JtI4vj\":\"Recopilación predeterminada de información del asistente\",\"ULjv90\":\"Default capacity per date\",\"3R/Tu2\":\"Gestión predeterminada de comisiones\",\"1bZAZA\":\"Se usará la plantilla predeterminada\",\"HNlEFZ\":\"eliminar\",\"KpnwJK\":[\"¿Eliminar \\\"\",[\"0\"],\"\\\"?\"],\"BlII4o\":[\"Delete \",[\"count\"],\" selected date(s)? Dates with orders will be skipped. This cannot be undone.\"],\"vu7gDm\":\"Eliminar afiliado\",\"KZN4Lc\":\"Eliminar todo\",\"6EkaOO\":\"Delete Date\",\"io0G93\":\"Eliminar evento\",\"+jw/c1\":\"Eliminar imagen\",\"hdyeZ0\":\"Eliminar trabajo\",\"xxjZeP\":\"Eliminar ubicación\",\"sY3tIw\":\"Eliminar organizador\",\"UBv8UK\":\"Delete Permanently\",\"dPyJ15\":\"Eliminar plantilla\",\"IQTR34\":\"Delete this category? Any products in it will also be deleted. This cannot be undone.\",\"/1wMxk\":\"Delete this product? This cannot be undone.\",\"mxsm1o\":\"¿Eliminar esta pregunta? Esto no se puede deshacer.\",\"snMaH4\":\"Eliminar webhook\",\"LIZZLY\":[\"Deleted \",[\"0\"],\" date(s)\"],\"7w0Wev\":\"Description and venue added\",\"vYgeDk\":\"Desmarcar todo\",\"NvuEhl\":\"Elementos de Diseño\",\"H8kMHT\":\"¿No recibiste el código?\",\"G8KNgd\":\"Different location\",\"E/QGRL\":\"Disabled\",\"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.\",\"HtaSQp\":\"Muestra cuántas plazas quedan en cada fecha en el widget de entradas. Puedes modificarlo para fechas individuales.\",\"pfa8F0\":\"Nombre para mostrar\",\"Kdpf90\":\"¡No lo olvides!\",\"352VU2\":\"¿No tienes una cuenta? <0>Regístrate\",\"AXXqG+\":\"Donación\",\"DPfwMq\":\"Listo\",\"JoPiZ2\":\"Door staff instructions\",\"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\":\"Duplicate Date\",\"KRmTkx\":\"Duplicar producto\",\"Jd3ymG\":\"Duration must be at least 1 minute.\",\"KIjvtr\":\"Holandés\",\"22xieU\":\"ej. 180 (3 horas)\",\"/zajIE\":\"e.g. Morning Session\",\"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.\",\"Xfsjel\":\"Cada producto\",\"5oD9f/\":\"Earlier\",\"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\":\"Edit Date\",\"m0ZqOT\":\"Editar ubicación\",\"8oivFT\":\"Editar ubicación\",\"vRWOrM\":\"Editar detalles del pedido\",\"fW5sSv\":\"Editar webhook\",\"nP7CdQ\":\"Editar Webhook\",\"MRZxAn\":\"Edited\",\"uBAxNB\":\"Editor\",\"aqxYLv\":\"Educación\",\"iiWXDL\":\"Fallos de elegibilidad\",\"zPiC+q\":\"Listas de Check-In Elegibles\",\"SiVstt\":\"Email & scheduled messages\",\"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\":\"Embeddable widget\",\"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\":\"End\",\"sGjBEq\":\"Fecha y hora de finalización (opcional)\",\"PKXt9R\":\"La fecha de finalización debe ser posterior a la fecha de inicio\",\"ZayGC7\":\"End on a date\",\"48Y16Q\":\"Hora de finalización (opcional)\",\"TbaYrr\":[\"Ended \",[\"0\"]],\"CFgwiw\":[\"Ends \",[\"0\"]],\"SqOIQU\":\"Enter a capacity value or choose unlimited.\",\"h37gRz\":\"Enter a label or choose to remove it.\",\"7YZofi\":\"Ingrese un asunto y cuerpo para ver la vista previa\",\"khyScF\":\"Enter a time to shift by.\",\"SKx/0u\":\"Introduce un nombre de lugar o una dirección\",\"ppwojw\":\"Introduce un nombre de lugar o una dirección para los eventos presenciales\",\"j+eCIq\":\"Introducir la dirección manualmente\",\"3bR1r4\":\"Ingresa el correo del afiliado (opcional)\",\"ARkzso\":\"Ingresa el nombre del afiliado\",\"ej4L8b\":\"Enter capacity\",\"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)\",\"RRlWVA\":\"Todo el pedido\",\"o21Y+P\":\"entries\",\"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\",\"+v+GW0\":\"Visualización de la fecha del evento\",\"7u9/DO\":\"Evento eliminado correctamente\",\"imgKgl\":\"Descripción del evento\",\"IzR/Fc\":\"Event lifetime\",\"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\",\"mImacG\":\"Página del evento\",\"Hk9Ki/\":\"Evento restaurado correctamente\",\"JyD0LH\":\"Configuración del evento\",\"XVLu2v\":\"Título del evento\",\"OfmsI9\":\"Evento demasiado nuevo\",\"4SILkp\":\"Event totals\",\"YDVUVl\":\"Tipos de eventos\",\"+HeiVx\":\"Evento actualizado\",\"19j6uh\":\"Rendimiento de eventos\",\"PC3/fk\":\"Eventos que Comienzan en las Próximas 24 Horas\",\"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\":\"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\":\"Error al asignar configuración\",\"PO0cfn\":\"Failed to cancel date\",\"YUX+f+\":\"Failed to cancel dates\",\"SIHgVQ\":\"No se pudo cancelar el mensaje\",\"cEFg3R\":\"Error al crear el afiliado\",\"dVgNF1\":\"Error al crear configuración\",\"fAoRRJ\":\"Failed to create schedule\",\"4yLYTb\":\"No se pudo crear el calendario. Por favor, inténtalo de nuevo.\",\"U66oUa\":\"Error al crear la plantilla\",\"aFk48v\":\"Error al eliminar configuración\",\"n1CYMH\":\"Failed to delete date\",\"KXv+Qn\":\"Failed to delete date. It may have existing orders.\",\"JJ0uRo\":\"Failed to delete dates\",\"rgoBnv\":\"Error al eliminar el evento\",\"Zw6LWb\":\"Error al eliminar el trabajo\",\"tq0abZ\":\"Error al eliminar los trabajos\",\"2mkc3c\":\"Error al eliminar el organizador\",\"5E23qd\":\"Failed to delete product. Please try again.\",\"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\":\"Failed to reactivate date\",\"7zyx8a\":\"Error al eliminar de la lista de espera\",\"A/P7PX\":\"Failed to remove override\",\"ogWc1z\":\"Failed to reopen date\",\"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\":\"Failed to save override\",\"sj/eZA\":\"Failed to save price override\",\"780n8A\":\"Failed to save product settings\",\"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\":\"Error al actualizar 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\":\"Family\",\"5LO38w\":\"Fast payouts to your bank\",\"4lgLew\":\"February\",\"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\":\"Film\",\"L1qbUx\":\"Filter attendees\",\"8OvVZZ\":\"Filtrar Asistentes\",\"N/H3++\":\"Filter by date\",\"mvrlBO\":\"Filtrar por evento\",\"g+xRXP\":\"Finish setting up Stripe\",\"LHH461\":\"Finish setup\",\"syyeb9\":\"First\",\"Vj6wk9\":\"First 30 days\",\"/bpZYb\":\"First 7 days\",\"ziEnjY\":\"First 90 days\",\"1vBhpG\":\"Primer asistente\",\"4pwejF\":\"El nombre es obligatorio\",\"rVogsf\":\"Corrige los problemas para publicar\",\"3lkYdQ\":\"Fixed fee\",\"6bBh3/\":\"Tarifa fija\",\"zWqUyJ\":\"Tarifa fija cobrada por transacción\",\"LWL3Bs\":\"La tarifa fija debe ser 0 o mayor\",\"0RI8m4\":\"Flash off\",\"q0923e\":\"Flash on\",\"X+U6/w\":\"Familia de fuentes\",\"lWxAUo\":\"Comida y bebida\",\"nFm+5u\":\"Texto del Pie\",\"a8nooQ\":\"Fourth\",\"wtuVU4\":\"Frequency\",\"xVhQZV\":\"Fri\",\"39y5bn\":\"Friday\",\"f5UbZ0\":\"Full data ownership\",\"cfvx/y\":\"Full event\",\"MY2SVM\":\"Reembolso completo\",\"PGQLdy\":\"future\",\"8N/j1s\":\"Future dates only\",\"yRx/6K\":\"Future dates will be copied with capacity reset to zero\",\"T02gNN\":\"Admisión General\",\"3ep0Gx\":\"Información general sobre tu organizador\",\"ziAjHi\":\"Generar\",\"exy8uo\":\"Generar código\",\"4CETZY\":\"Cómo llegar\",\"pjkEcB\":\"Get Paid\",\"lGYzP6\":\"Get paid with Stripe\",\"ZDIydz\":\"Comenzar\",\"u6FPxT\":\"Obtener Entradas\",\"8KDgYV\":\"Prepare su evento\",\"RkXlPZ\":\"GitHub\",\"sr0UJD\":\"Go Back\",\"oNL5vN\":\"Ir a la página del evento\",\"gHSuV/\":\"Ir a la página de inicio\",\"8+Cj55\":\"Go to Schedule\",\"6nDzTl\":\"Buena legibilidad\",\"76gPWk\":\"Got it\",\"CZXzs4\":\"Griego\",\"aGWZUr\":\"Ingresos brutos\",\"n8IUs7\":\"Ingresos brutos\",\"O1wAlQ\":\"Guest\",\"LIYoRQ\":\"Gestión de invitados\",\"NUsTc4\":\"Happening now\",\"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\":\"Hi,\",\"/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\":\"Hide details\",\"FmogyU\":\"Ocultar opciones\",\"uXNYjR\":\"Ocultar fechas y horarios agotados\",\"g9RcYX\":\"Ocultar la fecha\",\"uMwTx7\":\"¿Ocultar esta categoría?\",\"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\":\"Hobbies\",\"yY8wAv\":\"Hours\",\"49Tkiw\":\"¿Cómo se aplica el descuento?\",\"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\":\"How long does the schedule run?\",\"DMr2XN\":\"How often?\",\"cceMns\":\"How VAT is applied to the platform fees we charge you.\",\"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\",\"CY3yHL\":\"Si se marca, esta categoría se ocultará del público.\",\"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\":[\"in last \",[\"0\"],\" min\"],\"u7r0G5\":\"In person — set a venue\",\"/LCAwL\":\"En curso\",\"F1Xp97\":\"Asistentes individuales\",\"85e6zs\":\"Insertar token Liquid\",\"CTWsuc\":\"Instagram\",\"VopR6B\":\"Instant Stripe payouts\",\"nbfdhU\":\"Integraciones\",\"I8eJ6/\":\"Internal notes on the attendee's ticket\",\"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\",\"Dn4OyV\":\"Invitado\",\"IuMGvq\":\"Factura\",\"a/bUcL\":\"It happens on more than one date\",\"d+Oe9r\":\"It may have been unpublished or removed. Please check the link and try again.\",\"Lj7sBL\":\"Italiano\",\"F5/CBH\":\"artículo(s)\",\"BzfzPK\":\"Artículos\",\"rjyWPb\":\"January\",\"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\":[\"Unirse a la lista de espera para \",[\"productDisplayName\"]],\"2gMuHR\":\"Inscrito\",\"u4ex5r\":\"July\",\"zeEQd/\":\"June\",\"MxjCqk\":\"¿Solo buscas tus entradas?\",\"xOTzt5\":\"just now\",\"0RihU9\":\"Just wrapped\",\"lB2hSG\":[\"Mantenerme informado sobre noticias y eventos de \",[\"0\"]],\"ioFA9i\":\"Keep the profit.\",\"o66QSP\":\"label updates\",\"RtKKbA\":\"Last\",\"DruLRc\":\"Últimos 14 días\",\"ve9JTU\":\"El apellido es obligatorio\",\"h0Q9Iw\":\"Última respuesta\",\"gw3Ur5\":\"Última activación\",\"FIq1Ba\":\"Later\",\"xvnLMP\":\"Latest check-ins\",\"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\":\"Claro\",\"1qY5Ue\":\"Enlace caducado o inválido\",\"gggTBm\":\"LinkedIn\",\"nvOPBA\":\"Enlaces permitidos\",\"2BBAbc\":\"List\",\"dF6vP6\":\"En vivo\",\"fpMs2Z\":\"EN VIVO\",\"D9zTjx\":\"Eventos en Vivo\",\"C33p4q\":\"Loaded dates\",\"WdmJIX\":\"Cargando vista previa...\",\"IoDI2o\":\"Cargando tokens...\",\"G3Ge9Z\":\"Cargando registros de webhook...\",\"NFxlHW\":\"Cargando webhooks\",\"E0DoRM\":\"Ubicación eliminada\",\"7w8lJU\":\"Ubicación guardada\",\"YsRXDD\":\"Ubicación actualizada\",\"A/kIva\":\"location updates\",\"iyZPPR\":\"ubicaciones\",\"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\",\"PSRm6/\":\"Buscar mis entradas\",\"yJFu/X\":\"Oficina principal\",\"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\":\"Gestiona la lista de espera de tu evento, consulta estadísticas y ofrece entradas a los asistentes.\",\"g2npA5\":\"Oferta manual\",\"hg6l4j\":\"March\",\"pqRBOz\":\"Mark as validated (admin override)\",\"2L3vle\":\"Máx. mensajes / 24h\",\"Qp4HWD\":\"Máx. destinatarios / mensaje\",\"3JzsDb\":\"May\",\"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\":\"Minutes\",\"zz/Wd/\":\"Mode\",\"fpMgHS\":\"Mon\",\"hty0d5\":\"Monday\",\"JbIgPz\":\"Los valores monetarios son totales aproximados en todas las monedas\",\"qvF+MT\":\"Monitorear y gestionar trabajos de fondo fallidos\",\"kY2ll9\":\"month\",\"HajiZl\":\"Mes\",\"+8Nek/\":\"Monthly\",\"1LkxnU\":\"Monthly Pattern\",\"6jefe3\":\"months\",\"f8jrkd\":\"more\",\"JcD7qf\":\"More actions\",\"w36OkR\":\"Eventos más vistos (Últimos 14 días)\",\"+Y/na7\":\"Move all dates earlier or later\",\"3DIpY0\":\"Multiple locations\",\"g9cQCP\":\"Multiple ticket types\",\"GfaxEk\":\"Música\",\"oVGCGh\":\"Mis Entradas\",\"8/brI5\":\"El nombre es obligatorio\",\"sFFArG\":\"El nombre debe tener menos de 255 caracteres\",\"xxU3NX\":\"Ingresos netos\",\"7I8LlL\":\"New capacity\",\"n1GRql\":\"New label\",\"y0Fcpd\":\"Nueva ubicación\",\"ArHT/C\":\"Nuevos registros\",\"uK7xWf\":\"New time:\",\"veT5Br\":\"Next occurrence\",\"WXtl5X\":[\"Next: \",[\"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\":\"No attendees to show\",\"PKySlW\":\"No attendees yet for this date.\",\"/UC6qk\":\"No se encontraron datos de atribución\",\"E2vYsO\":\"No capabilities reported by Stripe yet.\",\"amMkpL\":\"Sin capacidad\",\"d2Jf1f\":\"No change\",\"99ntUF\":\"No hay listas de check-in disponibles para este evento.\",\"wG+knX\":\"No check-ins yet\",\"+dAKxg\":\"No se encontraron configuraciones\",\"LiLk8u\":\"No connections available\",\"eb47T5\":\"No se encontraron datos para los filtros seleccionados. Intente ajustar el rango de fechas o la moneda.\",\"Zc216S\":\"No date added\",\"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\",\"OtJSnL\":\"No hay fechas programadas\",\"gEdNe8\":\"No dates scheduled yet\",\"pZNOT9\":\"Sin fecha de finalización\",\"dW40Uz\":\"No se encontraron eventos\",\"8pQ3NJ\":\"No hay eventos que comiencen en las próximas 24 horas\",\"8zCZQf\":\"Aún no hay eventos\",\"Yc5YW6\":\"Sin trabajos fallidos\",\"EpvBAp\":\"Sin factura\",\"XZkeaI\":\"No se encontraron registros\",\"IcAC6J\":\"No se encontraron fuentes\",\"nrSs2u\":\"No se encontraron mensajes\",\"Rj99yx\":\"No occurrences available\",\"IFU1IG\":\"No occurrences on this date\",\"OVFwlg\":\"Aún no hay preguntas de pedido\",\"EJ7bVz\":\"No se encontraron pedidos\",\"NEmyqy\":\"Aún no hay pedidos\",\"a77B6w\":\"No orders yet for this date.\",\"wUv5xQ\":\"Sin actividad de organizador en los últimos 14 días\",\"vLd1tV\":\"No organizer context available.\",\"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 products configured for this event.\",\"kY7XDn\":\"Ningún producto tiene entradas en lista de espera\",\"8mw4tm\":\"Mensaje de sin productos\",\"wYiAtV\":\"Sin registros de cuentas recientes\",\"UW90md\":\"No se encontraron destinatarios\",\"QoAi8D\":\"Sin respuesta\",\"JeO7SI\":\"Sin respuesta\",\"EK/G11\":\"Aún no hay respuestas\",\"59OWd3\":\"No hay ubicaciones guardadas\",\"mPdY6W\":\"Sin sugerencias\",\"3sRuiW\":\"No se encontraron entradas\",\"debCrL\":\"No hay entradas a la venta\",\"k2C0ZR\":\"No upcoming dates\",\"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\":\"non-edited\",\"Itw24Q\":\"Not checked in\",\"x5+Lcz\":\"No Registrado\",\"8n10sz\":\"No Elegible\",\"kLvU3F\":\"Notify attendees and stop sales\",\"t9QlBd\":\"November\",\"kAREMN\":\"Number of dates to create\",\"6u1B3O\":\"Occurrence\",\"mmoE62\":\"Occurrence Cancelled\",\"V9flmL\":\"Occurrence Schedule\",\"Kh3WO8\":\"Occurrence Summary\",\"byXCTu\":\"Occurrences\",\"KATw3p\":\"Occurrences (future only)\",\"85rTR2\":\"Occurrences can be configured after creation\",\"dzQfDY\":\"October\",\"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.\"],\"6Aih4U\":\"Fuera de línea\",\"nO3VbP\":[\"En venta \",[\"0\"]],\"oXOSPE\":\"En línea\",\"aqmy5k\":\"Online — provide connection details\",\"LuZBbx\":\"Online & in-person\",\"IXuOqt\":\"Online & in-person — see schedule\",\"WjSpu5\":\"Evento en línea\",\"scPxI/\":[\"Solo quedan \",[\"capacity\"]],\"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\",\"wkpaqp\":\"Mostrar solo la fecha y hora de inicio\",\"DMk8F0\":\"Only tickets count toward capacity\",\"M2w1ni\":\"Solo visible con código promocional\",\"y8Bm7C\":\"Open check-in\",\"RLz7P+\":\"Open occurrence\",\"cDSdPb\":\"Apodo opcional que se muestra en los selectores, p. ej. \\\"Sala de conferencias\\\"\",\"HXMJxH\":\"Texto opcional para avisos legales, información de contacto o notas de agradecimiento (solo una línea)\",\"L565X2\":\"opciones\",\"8m9emP\":\"or add a single date\",\"eBskDE\":\"O activa los pagos sin conexión y desactiva Stripe\",\"dSeVIm\":\"order\",\"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\",\"xtQzag\":\"Order details\",\"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\",\"RQCXz6\":\"Límites de Pedido\",\"SO9AEF\":\"Límites de pedido establecidos\",\"vu6Arl\":\"Pedido marcado como pagado\",\"sLbJQz\":\"Pedido no encontrado\",\"kvYpYu\":\"Pedido no encontrado\",\"eJ8SvM\":\"Order number, purchase date, purchaser email\",\"FaPYw+\":\"Propietario del pedido\",\"eB5vce\":\"Propietarios de pedidos con un producto específico\",\"CxLoxM\":\"Propietarios de pedidos con productos\",\"UkHo4c\":\"Ref. pedido\",\"EZy55F\":\"Pedido reembolsado\",\"6eSHqs\":\"Estados de los pedidos\",\"oW5877\":\"Total del pedido\",\"e7eZuA\":\"Pedido actualizado\",\"1SQRYo\":\"Pedido actualizado correctamente\",\"3NT0Ck\":\"El pedido fue cancelado\",\"V5khLm\":\"orders\",\"sd5IMt\":\"Pedidos completados\",\"5It1cQ\":\"Pedidos exportados\",\"UQ0ACV\":\"Total de pedidos\",\"B/EBQv\":\"Pedidos:\",\"qtGTNu\":\"Cuentas orgánicas\",\"P/JHA4\":\"Organizador archivado correctamente\",\"S3CZ5M\":\"Panel del organizador\",\"GzjTd0\":\"Organizador eliminado correctamente\",\"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\":\"Organizers\",\"/IX/7x\":\"Otro\",\"RsiDDQ\":\"Otras Listas (Ticket No Incluido)\",\"aDfajK\":\"Outdoors\",\"qMASRF\":\"Mensajes salientes\",\"iCOVQO\":\"Override\",\"GpFTEc\":\"Override fees on this organizer\",\"M9ZhMP\":\"Override price\",\"cnVIpl\":\"Override removed\",\"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\":\"Past due\",\"xTPjSy\":\"Eventos pasados\",\"/l/ckQ\":\"Pega la URL\",\"URAE3q\":\"Pausado\",\"4fL/V7\":\"Pagar\",\"c2/9VE\":\"Carga útil\",\"5cxUwd\":\"Fecha de pago\",\"ENEPLY\":\"Método de pago\",\"8Lx2X7\":\"Pago recibido\",\"fx8BTd\":\"Pagos no disponibles\",\"C+ylwF\":\"Payouts\",\"UbRKMZ\":\"Pending\",\"UkM20g\":\"Revisión pendiente\",\"dPYu1F\":\"Por asistente\",\"mQV/nJ\":\"per min\",\"+kvxv+\":\"por pedido\",\"VlXNyK\":\"Por pedido\",\"NhuGd7\":\"por producto\",\"hauDFf\":\"Por entrada\",\"mnF83a\":\"Tarifa porcentual\",\"TNLuRD\":\"Percentage fee (%)\",\"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\":\"Permanently remove this date\",\"6kPk3+\":\"Información personal\",\"zmwvG2\":\"Teléfono\",\"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\":\"¿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\":\"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\":\"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\":\"Please select a date and time\",\"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\":\"Position\",\"OESu7I\":\"Evite la sobreventa compartiendo inventario entre múltiples tipos de entradas.\",\"NgVUL2\":\"Vista previa del formulario de pago\",\"cs5muu\":\"Vista previa de la página del evento\",\"Jm2AC3\":\"Price Tier\",\"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\":\"Product settings cannot be edited for cancelled dates.\",\"2339ej\":\"Product settings saved successfully\",\"ldVIlB\":\"Producto actualizado\",\"CP3D8G\":\"Progress\",\"JoKGiJ\":\"Código promocional\",\"k3wH7i\":\"Uso de códigos promocionales y desglose de descuentos\",\"tZqL0q\":\"promo codes\",\"oCHiz3\":\"Promo codes\",\"uEhdRh\":\"Solo Promocional\",\"dLm8V5\":\"Los correos promocionales pueden resultar en la suspensión de la cuenta\",\"W0ETyY\":\"Proporciona al menos un campo de dirección (lugar, calle, ciudad o país).\",\"2W/7Gz\":\"Provide the following before Stripe's next review to keep payouts flowing.\",\"EEYbdt\":\"Publicar\",\"JcgJKc\":\"Publicar de todos modos\",\"evDBV8\":\"Publicar evento\",\"2zEfOd\":\"Publish your event\",\"L7nrC8\":\"Al publicar, la página de tu evento será pública y se abrirán las inscripciones.\",\"dsFmM+\":\"Comprado\",\"JunetL\":\"Purchaser\",\"phmeUH\":\"Purchaser email\",\"ywR4ZL\":\"QR code check-in\",\"oWXNE5\":\"Cant.\",\"biEyJ4\":\"Question answers\",\"k/bJj0\":\"Preguntas reordenadas\",\"b24kPi\":\"Cola\",\"lTPqpM\":\"Quick Tip\",\"fqDzSu\":\"Tasa\",\"mnUGVC\":\"Límite de solicitudes excedido. Por favor, inténtelo de nuevo más tarde.\",\"t41hVI\":\"Volver a ofrecer lugar\",\"TNclgc\":\"Reactivate this date? It will be reopened for future sales.\",\"RENQ6j\":\"¿Listo para publicar?\",\"uqoRbb\":\"Real-time analytics\",\"xzRvs4\":[\"Recibir actualizaciones de productos de \",[\"0\"],\".\"],\"pLXbi8\":\"Registros de cuentas recientes\",\"M1HGuR\":\"Recent activity\",\"3kJ0gv\":\"Recent Attendees\",\"qhfiwV\":\"Recent check-ins\",\"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\",\"WEYdDv\":\"Recommended\",\"wuhHPE\":\"Recurring\",\"asLqwt\":\"Evento recurrente\",\"s3uzsK\":\"Configuración de eventos recurrentes\",\"D0tAMe\":\"Recurring events\",\"JjMIKU\":\"Reddit\",\"HiGkFu\":\"Redirigiendo a Stripe...\",\"pnoTN5\":\"Cuentas de referencia\",\"ACKu03\":\"Actualizar vista previa\",\"vuFYA6\":\"Refund all orders for these dates\",\"4cRUK3\":\"Refund all orders for this date\",\"fKn/k6\":\"Monto del reembolso\",\"qY4rpA\":\"Reembolso fallido\",\"FaK/8G\":[\"Reembolsar pedido \",[\"0\"]],\"MGbi9P\":\"Reembolso pendiente\",\"BDSRuX\":[\"Reembolsado: \",[\"0\"]],\"bU4bS1\":\"Reembolsos\",\"rYXfOA\":\"Configuración regional\",\"5tl0Bp\":\"Preguntas de registro\",\"ZNo5k1\":\"Remaining\",\"Bjh87R\":\"Remove label from all dates\",\"IVZaEo\":\"Elimina por completo las fechas y horarios agotados de la página del evento. Si está desactivado, permanecen visibles y se marcan como agotados.\",\"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\":\"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\":\"Reset to base price\",\"kCn6wb\":\"Restableciendo...\",\"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\":\"results\",\"6gRgw8\":\"Reintentar\",\"1BG8ga\":\"Reintentar todo\",\"rDC+T6\":\"Reintentar trabajo\",\"CbnrWb\":\"Volver al evento\",\"Lf7TCn\":\"Los lugares reutilizables aparecen aquí automáticamente al crear eventos con direcciones, y también puedes añadir los tuyos.\",\"mdQ0zb\":\"Lugares reutilizables para tus eventos. Las ubicaciones creadas desde el autocompletado se guardan aquí automáticamente.\",\"XFOPle\":\"Reuse\",\"1Zehp4\":\"Reuse a Stripe connection from another organizer in this account.\",\"Oo/PLb\":\"Resumen de ingresos\",\"CfuueU\":\"Revocar oferta\",\"RIgKv+\":\"Run until a specific date\",\"dFFW9L\":[\"Venta terminada \",[\"0\"]],\"loCKGB\":[\"Venta termina \",[\"0\"]],\"wlfBad\":\"Período de Venta\",\"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\":\"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\":\"Sales, attendance, and check-in breakdown per occurrence\",\"3VnlS9\":\"Ventas, pedidos y métricas de rendimiento para todos los eventos\",\"3Q1AWe\":\"Ventas:\",\"LeuERW\":\"Same as event\",\"B4nE3N\":\"Precio de entrada de ejemplo\",\"8BRPoH\":\"Lugar de Ejemplo\",\"PiK6Ld\":\"Sat\",\"+5kO8P\":\"Saturday\",\"zJiuDn\":\"Save fee override\",\"NB8Uxt\":\"Save Schedule\",\"KZrfYJ\":\"Guardar enlaces sociales\",\"9Y3hAT\":\"Guardar plantilla\",\"C8ne4X\":\"Guardar Diseño del Ticket\",\"cTI8IK\":\"Save VAT settings\",\"6/TNCd\":\"Guardar Configuración del IVA\",\"4RvD9q\":\"Ubicación guardada\",\"cgw0cL\":\"Ubicaciones guardadas\",\"Fbqm/I\":\"Saving an override creates a dedicated configuration for this organizer if it's currently on the system default.\",\"I+FvbD\":\"Escanear\",\"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\":\"Programar para más tarde\",\"NAzVVw\":\"Programar mensaje\",\"Fz09JP\":\"Schedule starts on\",\"4ba0NE\":\"Programado\",\"qcP/8K\":\"Hora programada\",\"A1taO8\":\"Search\",\"ftNXma\":\"Buscar afiliados...\",\"VMU+zM\":\"Search attendees\",\"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...\",\"YnMfsK\":\"Buscar por nombre o dirección...\",\"VT+urE\":\"Buscar por nombre o correo electrónico...\",\"GHdjuo\":\"Buscar por nombre, correo electrónico o cuenta...\",\"4mBFO7\":\"Search by name, order #, ticket # or email\",\"20ce0U\":\"Buscar por ID de pedido, nombre de cliente o correo electrónico...\",\"4DSz7Z\":\"Buscar por asunto, evento o cuenta...\",\"nQC7Z9\":\"Search dates...\",\"iRtEpV\":\"Search dates…\",\"JRM7ao\":\"Search for an address\",\"BWF1kC\":\"Buscar mensajes...\",\"5WYZKZ\":\"Resultados de búsqueda\",\"IG85fV\":\"Busca ubicaciones guardadas o encuentra una dirección...\",\"3aD3GF\":\"Seasonal\",\"ku//5b\":\"Second\",\"Mck5ht\":\"Pago Seguro\",\"s7tXqF\":\"See schedule\",\"JFap6u\":\"See what Stripe still needs\",\"p7xUrt\":\"Selecciona una categoría\",\"hTKQwS\":\"Select a Date & Time\",\"Ps6Xtf\":\"Select a date to see available times\",\"e4L7bF\":\"Seleccione un mensaje para ver su contenido\",\"zPRPMf\":\"Seleccionar un nivel\",\"BFRSTT\":\"Seleccionar Cuenta\",\"wgNoIs\":\"Select all\",\"mCB6Je\":\"Seleccionar todo\",\"aCEysm\":[\"Select all on \",[\"0\"]],\"a6+167\":\"Seleccionar un evento\",\"CFbaPk\":\"Seleccionar grupo de asistentes\",\"88a49s\":\"Select camera\",\"tVW/yo\":\"Seleccionar moneda\",\"SJQM1I\":\"Select date\",\"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\":\"Select occurrence\",\"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\":\"selected\",\"ylXj1N\":\"Seleccionado\",\"uq3CXQ\":\"Sell out your event.\",\"oBXbO4\":\"Selling a physical product? Cap its quantity on the <0>products page instead.\",\"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\":\"Send to all occurrences, or choose a specific one\",\"QEQlnV\":\"Envíe su primer mensaje\",\"IoAuJG\":\"Enviando...\",\"h69WC6\":\"Enviado\",\"BVu2Hz\":\"Enviado por\",\"ZFa8wv\":\"Sent to attendees when a scheduled date is cancelled\",\"SPdzrs\":\"Enviado a clientes cuando realizan un pedido\",\"LxSN5F\":\"Enviado a cada asistente con los detalles de su entrada\",\"hgvbYY\":\"September\",\"5sN96e\":\"Session cancelled\",\"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\":\"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\":\"Configure listas de registro para diferentes entradas, sesiones o días.\",\"TaWVGe\":\"Set up payouts\",\"JA//e6\":\"Set up schedule\",\"gzXY7l\":\"Set Up Schedule\",\"0Ls9qe\":\"Set up the tickets you'll sell and their prices\",\"xMO+Ao\":\"Configura tu organización\",\"5pEFnq\":\"Set up your schedule\",\"h/9JiC\":\"Set Up Your Schedule\",\"zRRuUD\":\"Set up your schedule in the next steps\",\"ETC76A\":\"Set, change, or remove the date's location or online details\",\"C3htzi\":\"Configuración actualizada\",\"Ohn74G\":\"Configuración y diseño\",\"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\":\"Compartir enlace de afiliado\",\"hL7sDJ\":\"Compartir página del organizador\",\"jy6QDF\":\"Gestión de capacidad compartida\",\"jDNHW4\":\"Shift times\",\"tPfIaW\":[\"Shifted times for \",[\"count\"],\" date(s)\"],\"WwlM8F\":\"Mostrar opciones avanzadas\",\"cMW+gm\":[\"Mostrar todas las plataformas (\",[\"0\"],\" más con valores)\"],\"wXi9pZ\":\"Show attendee notes to non-logged-in staff\",\"4LZFir\":\"Mostrar todo el rango de fechas\",\"UVPI5D\":\"Mostrar menos plataformas\",\"Eu/N/d\":\"Mostrar casilla de aceptación de marketing\",\"SXzpzO\":\"Mostrar casilla de aceptación de marketing por defecto\",\"b33PL9\":\"Mostrar más plataformas\",\"Eut7p9\":\"Show order details to non-logged-in staff\",\"+RoWKN\":\"Show question answers to non-logged-in staff\",\"jbcx6L\":\"Show remaining capacity on event dates\",\"rXxBOx\":\"Show remaining capacity to buyers\",\"t1LIQW\":[\"Mostrando \",[\"0\"],\" de \",[\"totalRows\"],\" registros\"],\"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\":\"Registrado\",\"5C7J+P\":\"Single Event\",\"E//btK\":\"Skip manually edited dates\",\"paESr6\":\"Eslovaco\",\"9wu8nm\":\"Snapchat\",\"kIKb9e\":\"Social\",\"d0rUsW\":\"Enlaces sociales\",\"j/TOB3\":\"Enlaces sociales y sitio web\",\"s9KGXU\":\"Vendido\",\"yp+0jj\":\"sold out\",\"1hupow\":\"Agotado, lista de espera disponible\",\"iACSrw\":\"Some details are hidden from public access. Log in to view everything.\",\"Dia6iz\":\"Something went wrong while deleting the image. Please try again.\",\"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\":\"Spirituality\",\"oPaRES\":\"Split check-in across days, areas, or ticket types. Share the link with staff — no account needed on their end.\",\"7JFNej\":\"Deportes\",\"/bfV1Y\":\"Staff instructions\",\"tXkhj/\":\"Start\",\"StWUH4\":\"Start check-in\",\"JcQp9p\":\"Fecha y hora de inicio\",\"0m/ekX\":\"Fecha y hora de inicio\",\"izRfYP\":\"La fecha de inicio es obligatoria\",\"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/\":\"Estadísticas\",\"GVUxAX\":\"Las estadísticas se basan en la fecha de creación de la cuenta\",\"29Hx9U\":\"Stats\",\"5ia+r6\":\"Still needed\",\"wuV0bK\":\"Detener Suplantación\",\"s/KaDb\":\"Stripe connected\",\"Bk06QI\":\"Stripe conectado\",\"akZMv8\":[\"Stripe connection copied from \",[\"0\"],\".\"],\"v0aRY1\":\"Stripe didn't return a setup link. Please try again.\",\"aKtF0O\":\"Stripe no conectado\",\"9i0++A\":\"ID de pago de Stripe\",\"R1lIMV\":\"Stripe will need a few more details soon\",\"FzcCHA\":\"Stripe will walk you through a few quick questions to finish setup.\",\"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\",\"kRWc2g\":\"Configuración de eventos recurrentes actualizada correctamente\",\"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\":\"Sun\",\"DBC3t5\":\"Sunday\",\"UaISq3\":\"Sueco\",\"JZTQI0\":\"Cambiar organizador\",\"9YHrNC\":\"Predeterminado del sistema\",\"lruQkA\":\"Tap this screen to resume scanning\",\"TJUrME\":[\"Targeting attendees across \",[\"0\"],\" selected sessions.\"],\"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\":\"Team collaboration\",\"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\":\"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\":\"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\",\"nm3Iz/\":\"¡Gracias por asistir!\",\"pYwj0k\":\"Thanks,\",\"k3IitN\":\"That's a wrap\",\"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.\",\"7oksH+\":[\"El descuento se deduce de cada producto elegible. P. ej., \",[\"currencySymbol\"],\"10 de descuento × 3 entradas = \",[\"currencySymbol\"],\"30 de descuento.\"],\"sKL8k2\":\"El descuento se deduce una sola vez del total 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.\",\"tXadb0\":\"El evento que buscas no está disponible en este momento. Puede que haya sido eliminado, haya caducado o la URL sea incorrecta.\",\"5fPdZe\":\"The first date this schedule will generate from.\",\"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.\",\"Np4eLs\":[\"The maximum is \",[\"MAX_PREVIEW\"],\" sessions. Please reduce the date range, frequency, or number of sessions per day.\"],\"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\":\"The override is recorded in the order audit log.\",\"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\",\"OVSkIF\":\"El veloz zorro marrón salta sobre el perro perezoso.\",\"z0KrIG\":\"La hora programada es obligatoria\",\"EWErQh\":\"La hora programada debe ser en el futuro\",\"UNd0OU\":[\"The session for \\\"\",[\"title\"],\"\\\" originally scheduled for \",[\"0\"],\" has been rescheduled.\"],\"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\",\"ybBP2H\":\"There are no products available for this date. Please choose another date.\",\"O7g4eR\":\"There are no upcoming dates for this event\",\"062KsE\":\"These details are shown on the attendee's ticket and order summary for this date only.\",\"5Eu+tn\":\"Estos detalles solo se mostrarán si el pedido se completa correctamente.\",\"jQjwR+\":\"These details will replace any existing location on the affected dates and show on attendee tickets.\",\"6eaLu/\":\"Estos precios se aplican a todas las fechas de tu programación, y las cantidades de los niveles limitan las ventas totales de todas las fechas en conjunto. Las fechas de venta de los niveles se aplican globalmente. Puedes sobrescribir los precios de fechas individuales en la <0>página de Programación de fechas.\",\"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\":\"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\":\"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/\":[\"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.\",\"E9BqZw\":\"This date only\",\"RzEvf5\":\"Este evento ha finalizado\",\"kc4bIA\":\"Este evento aún no tiene entradas ni productos, por lo que los asistentes no podrán registrarse.\",\"eMaNd0\":\"This event is not available\",\"YClrdK\":\"Este evento aún no está publicado\",\"GL6z+k\":\"Este evento está agotado\",\"pIwDhS\":\"This event's dates and times are set on the occurrence schedule.\",\"ny5rgr\":\"This is a recurring event\",\"tc64Zz\":\"Este es el nombre de la categoría que se mostrará en la página del evento.\",\"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.\",\"5DpZrC\":\"Esto limita las ventas totales de todas las fechas de tu programación en conjunto; no es un límite por fecha. Para limitar la asistencia de cada fecha, establece una capacidad en la <0>página de Programación de fechas.\",\"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\":\"This occurrence is at capacity\",\"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\",\"qEGn8I\":\"Este evento recurrente aún no tiene fechas, por lo que los asistentes no tienen nada que reservar.\",\"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.\",\"1LuJNw\":\"Esta entrada ya no es válida\",\"0Ew0uk\":\"Esta entrada acaba de ser escaneada. Por favor espere antes de escanear nuevamente.\",\"FYXq7k\":[\"This will affect \",[\"loadedAffectedCount\"],\" date(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\":\"Throughput\",\"+FjWgX\":\"Thu\",\"kkDQ8m\":\"Thursday\",\"0GSPnc\":\"Diseño de Ticket\",\"EZC/Cu\":\"Diseño del ticket guardado exitosamente\",\"bbslmb\":\"Diseñador de entradas\",\"1BPctx\":\"Entrada para\",\"HGuXjF\":\"Poseedores de entradas\",\"CMUt3Y\":\"Titulares de entradas\",\"awHmAT\":\"ID de la entrada\",\"6czJik\":\"Logo del Ticket\",\"t79rDv\":\"Entrada no encontrada\",\"6tmWch\":\"Entrada o producto\",\"1tfWrD\":\"Vista previa de entrada para\",\"KnjoUA\":\"Precio de la entrada\",\"pGZOcL\":\"Entrada reenviada correctamente\",\"o02GZM\":\"Ticket sales have ended for this event\",\"8jLPgH\":\"Tipo de Ticket\",\"8qsbZ5\":\"Venta de entradas\",\"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\":\"Time\",\"fXf2r5\":[\"Times shown in \",[\"timezoneAbbr\"]],\"dMtLDE\":\"to\",\"/jQctM\":\"Para\",\"tiI71C\":\"Para aumentar sus límites, contáctenos en\",\"ecUA8p\":\"Today\",\"W428WC\":\"Alternar columnas\",\"BRMXj0\":\"Tomorrow\",\"UBSG1X\":\"Mejores organizadores (Últimos 14 días)\",\"3sZ0xx\":\"Cuentas Totales\",\"SMDzqJ\":\"Total de asistentes\",\"orBECM\":\"Total recaudado\",\"k5CU8c\":\"Total de entradas\",\"4B7oCp\":\"Tarifa total\",\"sMMlTX\":\"Total fees\",\"mlvCEl\":\"Total orders\",\"2AW/k5\":\"Cantidad total en todas las fechas\",\"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\",\"GUA0Jy\":\"Try a different search term or filter\",\"2P/OWN\":\"Try adjusting your filters to see more dates.\",\"ouM5IM\":\"Probar otro correo\",\"3DZvE7\":\"Probar Hi.Events gratis\",\"vq2WxD\":\"Tue\",\"G3myU+\":\"Tuesday\",\"Kz91g/\":\"Turco\",\"GdOhw6\":\"Desactivar sonido\",\"KUOhTy\":\"Activar sonido\",\"dBeuY2\":\"Twitch\",\"QytzQr\":\"Escribe \\\"eliminar\\\" para confirmar\",\"nWRfmt\":\"Tipografía\",\"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\":\"Unable to load attendee details.\",\"GlnD5Y\":\"Unable to load products for this date. Please try again.\",\"17VbmV\":\"Unable to undo check-in\",\"n57zCW\":\"Cuentas sin atribución\",\"9uI/rE\":\"Undo\",\"Ef7StM\":\"Desconocido\",\"ZBAScj\":\"Asistente desconocido\",\"MEIAzV\":\"Sin nombre\",\"K6L5Mx\":\"Ubicación sin nombre\",\"7yiFvZ\":\"No pagado\",\"X13xGn\":\"No confiable\",\"gyXpQN\":\"Upcoming events\",\"Pp1sWX\":\"Actualizar afiliado\",\"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\":\"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\":\"USB scanner listening\",\"dyTklH\":\"USB scanner paused\",\"OHJXlK\":\"Use <0>plantillas Liquid para personalizar sus correos electrónicos\",\"/rsy72\":\"Use event default\",\"0k4cdb\":\"Usar detalles del pedido para todos los asistentes. Los nombres y correos de los asistentes coincidirán con la información del comprador.\",\"bA31T4\":\"Usar los datos del comprador para todos los asistentes\",\"PpgtnC\":\"Usar esta dirección\",\"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\":\"VAT number\",\"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\":\"VAT registered\",\"Nfbg76\":\"Configuración del IVA guardada exitosamente\",\"UvYql/\":\"Configuración de IVA guardada. Estamos validando tu número de IVA en segundo plano.\",\"bXn1Jz\":\"VAT settings updated\",\"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\":\"VAT: not registered\",\"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\":\"View All\",\"yA/6BX\":\"View all →\",\"6CQ7/B\":\"View all capabilities\",\"YSE15b\":\"View all check-in lists\",\"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\":[\"View details for \",[\"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 entrada\",\"N9FyyW\":\"Vea, edite y exporte sus asistentes registrados.\",\"6dp/Hz\":\"Vimeo\",\"SS4mGB\":\"VK\",\"uUehLT\":\"En espera\",\"quR8Qp\":\"Esperando pago\",\"KrurBH\":\"Waiting for scan…\",\"u0n+wz\":\"Lista de espera\",\"3RXFtE\":\"Lista de espera habilitada\",\"TwnTPy\":\"La oferta de la lista de espera ha expirado\",\"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.\",\"aT/44s\":\"We couldn't copy that Stripe connection. Please try again.\",\"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.\",\"Fjj/5/\":\"We couldn't load the check-in lists. Please try again.\",\"ADsQ23\":\"We couldn't reach Stripe just now. Please try again in a moment.\",\"HJKdzP\":\"Tuvimos un problema al cargar esta página. Por favor, inténtalo de nuevo.\",\"jegrvW\":\"We partner with Stripe to send payouts straight to your bank account.\",\"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\":\"Utilizamos cookies para ayudarnos a entender cómo se usa el sitio y mejorar su 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.\",\"mfM/HJ\":[\"Te notificaremos por correo electrónico si hay una plaza disponible para \",[\"productDisplayName\"],\" el \",[\"occurrenceDate\"],\".\"],\"iy+M+c\":[\"Te notificaremos por correo electrónico si hay una plaza disponible para \",[\"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\":\"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\":[\"We've made changes to the schedule for \\\"\",[\"title\"],\"\\\" — \",[\"description\"],\" affecting \",[\"affectedCount\"],\" session(s).\"],\"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\":\"Webhook integrations\",\"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\":\"Wed\",\"VAcXNz\":\"Wednesday\",\"64X6l4\":\"week\",\"4XSc4l\":\"Weekly\",\"IAUiSh\":\"weeks\",\"vKLEXy\":\"Weibo\",\"9eF5oV\":\"Bienvenido de nuevo\",\"QDWsl9\":[\"Bienvenido a \",[\"0\"],\", \",[\"1\"],\" 👋\"],\"LETnBR\":[\"Bienvenido a \",[\"0\"],\", aquí hay una lista de todos tus eventos\"],\"DDbx7K\":\"Wellness\",\"ywRaYa\":\"What time?\",\"FaSXqR\":\"¿Qué tipo de evento?\",\"0WyYF4\":\"What unauthenticated staff can see\",\"2+ExvJ\":\"WhatsApp\",\"cxsKvw\":\"Cuando se elimina un registro de entrada\",\"RPe6bE\":\"When a date is cancelled on a recurring event\",\"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 ser notificados cuando haya plazas disponibles.\",\"OIkHj+\":\"Cuando un producto se agota, los clientes pueden unirse a una lista de espera para ser notificados cuando haya plazas disponibles. Los clientes se unen a la lista de espera para una fecha específica y las ofertas se realizan por fecha.\",\"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\":\"Cuando los clientes compren entradas, sus pedidos aparecerán aquí.\",\"pm9tpn\":\"Cuando está activado, los compradores pueden copiar su nombre y correo electrónico a todos los asistentes a la vez. Desactívalo para eliminar la opción \\\"Todos los asistentes\\\"; los compradores aún podrán copiar sus datos al primer asistente y el resto deberá introducirse individualmente.\",\"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.\",\"uchB0M\":\"Vista previa del widget\",\"uvIqcj\":\"Taller\",\"EpknJA\":\"Escribe tu mensaje aquí...\",\"nhtR6Y\":\"X (Twitter)\",\"7qI8sJ\":\"year\",\"zkWmBh\":\"Yearly\",\"+BGee5\":\"years\",\"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+\":\"You can override this for individual dates later.\",\"paWwQ0\":\"Aún puede ofrecer tickets manualmente si es necesario.\",\"jTDzpA\":\"No puedes archivar el último organizador activo de tu cuenta.\",\"D8baxD\":\"Tienes entradas de pago, pero Stripe aún no está conectado, por lo que no puedes aceptar pagos.\",\"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/\":\"You need to create at least one occurrence before you can add attendees to this recurring event.\",\"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\":\"You'll be able to set up dates, schedules, and recurrence rules in the next step.\",\"zKAheG\":\"You're changing session times\",\"MNFIxz\":[\"¡Vas a ir a \",[\"0\"],\"!\"],\"ZlLcht\":[\"Te estás uniendo a la lista de espera para el \",[\"occurrenceDate\"],\".\"],\"qGZz0m\":\"¡Estás en la lista de espera!\",\"/5HL6k\":\"¡Se te ha ofrecido un lugar!\",\"gbjFFH\":\"You've changed the session time\",\"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\":\"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\":\"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. Por favor, vuelve a unirte a la lista de espera para ser notificado 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 1fd48627ef..6f19642550 100644 --- a/frontend/src/locales/es.po +++ b/frontend/src/locales/es.po @@ -179,11 +179,11 @@ msgstr "" msgid "{totalCount} ticket types" msgstr "{totalCount} tipos de entradas" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:554 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:567 msgid "{totalOccurrences} dates" msgstr "" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:547 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:560 msgid "{totalOccurrences} sessions across {0} dates ({1, plural, one {# session} other {# sessions}} per day)" msgstr "" @@ -516,7 +516,7 @@ msgstr "Eventos activos" msgid "Active payment methods" msgstr "" -#: src/components/routes/event/OccurrencesTab/index.tsx:400 +#: src/components/routes/event/OccurrencesTab/index.tsx:402 msgid "Activity" msgstr "" @@ -536,11 +536,11 @@ msgstr "" msgid "Add a description for this check-in list" msgstr "Agregue una descripción para esta lista de registro" -#: src/components/routes/event/OccurrencesTab/index.tsx:538 +#: src/components/routes/event/OccurrencesTab/index.tsx:541 msgid "Add a Single Date" msgstr "" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:739 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:752 msgid "Add another time" msgstr "" @@ -560,7 +560,7 @@ msgstr "Agregue notas sobre el pedido. Estas no serán visibles para el cliente. msgid "Add any notes about the order..." msgstr "Agregue notas sobre el pedido..." -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:375 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:382 msgid "Add at least one time" msgstr "" @@ -580,7 +580,7 @@ msgstr "" msgid "Add dates" msgstr "Añadir fechas" -#: src/components/routes/event/OccurrencesTab/index.tsx:524 +#: src/components/routes/event/OccurrencesTab/index.tsx:526 msgid "Add Dates" msgstr "" @@ -611,7 +611,7 @@ msgstr "Agregue instrucciones para pagos offline (por ejemplo, detalles de trans msgid "Add Location" msgstr "Agregar ubicación" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:743 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:756 msgid "Add multiple times if you run several sessions per day." msgstr "" @@ -796,7 +796,7 @@ msgid "all" msgstr "" #: src/components/layouts/CheckIn/tabs/SearchTab.tsx:133 -#: src/components/routes/event/OccurrencesTab/index.tsx:485 +#: src/components/routes/event/OccurrencesTab/index.tsx:487 msgid "All" msgstr "" @@ -987,7 +987,7 @@ msgstr "Ocurrió un error inesperado." msgid "An unexpected error occurred. Please try again." msgstr "Ocurrió un error inesperado. Inténtalo de nuevo." -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:849 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:862 msgid "and {0} more..." msgstr "" @@ -1003,7 +1003,7 @@ msgstr "" msgid "Answers provided at checkout (e.g. meal choice)" msgstr "" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:564 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:577 msgid "Any dates you've manually customized will be kept." msgstr "" @@ -1071,7 +1071,7 @@ msgstr "" msgid "Approve Message" msgstr "Aprobar mensaje" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:74 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:76 msgid "April" msgstr "" @@ -1127,7 +1127,7 @@ msgstr "¿Estás seguro de que quieres archivar este evento? Ya no será visible 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." -#: src/components/routes/event/OccurrencesTab/index.tsx:213 +#: src/components/routes/event/OccurrencesTab/index.tsx:215 msgid "Are you sure you want to cancel {count} date(s)? Affected attendees will be notified by email." msgstr "" @@ -1159,7 +1159,7 @@ msgstr "¿Estás seguro de que quieres eliminar esta configuración? Esto puede #: src/components/modals/ManageOccurrenceModal/index.tsx:58 #: src/components/routes/event/OccurrenceDetail/index.tsx:84 -#: src/components/routes/event/OccurrencesTab/index.tsx:182 +#: src/components/routes/event/OccurrencesTab/index.tsx:184 msgid "Are you sure you want to delete this date? This action cannot be undone." msgstr "" @@ -1446,7 +1446,7 @@ msgstr "Desglose de atribución" msgid "Attribution Value" msgstr "Valor de atribución" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:78 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:80 msgid "August" msgstr "" @@ -1625,7 +1625,7 @@ msgstr "Portugués brasileño" msgid "Built-in fraud protection" msgstr "" -#: src/components/routes/event/OccurrencesTab/index.tsx:515 +#: src/components/routes/event/OccurrencesTab/index.tsx:517 msgid "Bulk Edit" msgstr "" @@ -1674,11 +1674,11 @@ msgstr "Al añadir píxeles de seguimiento, reconoces que tú y esta plataforma msgid "By continuing, you agree to the <0>{0} Terms of Service" msgstr "Al continuar, aceptas los <0>Términos de Servicio de {0}" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:628 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:641 msgid "By day of month" msgstr "" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:629 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:642 msgid "By day of week" msgstr "" @@ -1698,7 +1698,7 @@ msgstr "Omitir comisiones de aplicación" msgid "Calculation Type" msgstr "Tipo de cálculo" -#: src/components/routes/event/OccurrencesTab/index.tsx:471 +#: src/components/routes/event/OccurrencesTab/index.tsx:473 msgid "Calendar" msgstr "" @@ -1735,7 +1735,7 @@ msgstr "" #: src/components/modals/ManageOrderModal/index.tsx:209 #: src/components/modals/PublishEventModal/index.tsx:208 #: src/components/routes/event/messages.tsx:80 -#: src/components/routes/event/OccurrencesTab/index.tsx:497 +#: src/components/routes/event/OccurrencesTab/index.tsx:499 #: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:272 #: src/components/routes/event/OccurrencesTab/OccurrenceEditModal/index.tsx:306 #: src/components/routes/event/OccurrencesTab/OccurrenceMenu.tsx:61 @@ -1748,8 +1748,8 @@ msgstr "" msgid "Cancel" msgstr "Cancelar" -#: src/components/routes/event/OccurrencesTab/index.tsx:209 -#: src/components/routes/event/OccurrencesTab/index.tsx:221 +#: src/components/routes/event/OccurrencesTab/index.tsx:211 +#: src/components/routes/event/OccurrencesTab/index.tsx:223 msgid "Cancel {count} date(s)" msgstr "" @@ -1809,7 +1809,7 @@ msgstr "Cancelar anulará todos los asistentes asociados con este pedido y liber msgid "Cancelled" msgstr "Cancelado" -#: src/components/routes/event/OccurrencesTab/index.tsx:235 +#: src/components/routes/event/OccurrencesTab/index.tsx:237 msgid "Cancelling {0} date(s). This may take a moment to complete." msgstr "" @@ -1819,7 +1819,7 @@ msgstr "No se puede eliminar la configuración predeterminada del sistema" #: src/components/forms/CapaciyAssigmentForm/index.tsx:42 #: src/components/routes/event/OccurrencesTab/OccurrenceEditModal/index.tsx:503 -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:811 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:824 msgid "Capacity" msgstr "Capacidad" @@ -2154,7 +2154,7 @@ msgid "City" msgstr "Ciudad" #: src/components/common/OccurrenceSelect/index.tsx:133 -#: src/components/routes/event/OccurrencesTab/index.tsx:503 +#: src/components/routes/event/OccurrencesTab/index.tsx:505 msgid "Clear" msgstr "" @@ -2174,7 +2174,7 @@ msgstr "Borrar texto de búsqueda" msgid "Clearing removes any per-date override. Affected dates will fall back to the event's default location." msgstr "" -#: src/components/routes/event/OccurrencesTab/index.tsx:331 +#: src/components/routes/event/OccurrencesTab/index.tsx:333 msgid "Click to cancel" msgstr "" @@ -2182,7 +2182,7 @@ msgstr "" msgid "Click to copy" msgstr "Haga clic para copiar" -#: src/components/routes/event/OccurrencesTab/index.tsx:333 +#: src/components/routes/event/OccurrencesTab/index.tsx:335 msgid "Click to reopen for new sales" msgstr "" @@ -2743,7 +2743,7 @@ msgstr "Crear plantilla {0}" msgid "Create a custom widget to sell tickets on your site." msgstr "Cree un widget personalizado para vender entradas en su sitio." -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:785 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:798 msgid "Create a fixed number" msgstr "" @@ -2879,7 +2879,7 @@ msgstr "Crear código promocional" msgid "Create Question" msgstr "Crear pregunta" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:864 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:877 msgid "Create Schedule" msgstr "" @@ -2927,6 +2927,10 @@ msgstr "Crea tu propio evento" msgid "Created" msgstr "Creado" +#: src/components/routes/event/OccurrencesTab/index.tsx:549 +msgid "Creating {0} dates. This may take a moment." +msgstr "Creando {0} fechas. Esto puede tardar un momento." + #: src/components/routes/welcome/index.tsx:472 msgid "Creating Event..." msgstr "Creando evento..." @@ -3066,7 +3070,7 @@ msgstr "Personaliza la página de tu evento" msgid "Customize your organizer page appearance" msgstr "Personaliza la apariencia de tu página de organizador" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:56 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:58 #: src/components/routes/product-widget/OccurrenceSelector/index.tsx:32 msgid "Daily" msgstr "" @@ -3155,7 +3159,7 @@ msgstr "" #: src/components/modals/ManageOccurrenceModal/index.tsx:61 #: src/components/routes/event/OccurrenceDetail/index.tsx:87 -#: src/components/routes/event/OccurrencesTab/index.tsx:184 +#: src/components/routes/event/OccurrencesTab/index.tsx:186 msgid "Date deleted" msgstr "" @@ -3168,7 +3172,7 @@ msgstr "" msgid "Date reactivated" msgstr "" -#: src/components/routes/event/OccurrencesTab/index.tsx:198 +#: src/components/routes/event/OccurrencesTab/index.tsx:200 msgid "Date reopened for new sales" msgstr "" @@ -3184,15 +3188,15 @@ msgstr "" msgid "Dates with sessions" msgstr "" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:93 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:95 msgid "day" msgstr "" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:659 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:672 msgid "Day" msgstr "" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:676 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:689 msgid "Day of Month" msgstr "" @@ -3200,19 +3204,19 @@ msgstr "" msgid "Day one capacity" msgstr "Capacidad del primer día" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:101 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:103 msgid "days" msgstr "" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:635 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:648 msgid "Days of Month" msgstr "" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:605 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:618 msgid "Days of Week" msgstr "" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:82 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:84 msgid "December" msgstr "" @@ -3230,7 +3234,7 @@ msgstr "Predeterminado" msgid "Default attendee information collection" msgstr "Recopilación predeterminada de información del asistente" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:815 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:828 msgid "Default capacity per date" msgstr "" @@ -3253,7 +3257,7 @@ msgstr "eliminar" #: src/components/common/QuestionsTable/index.tsx:150 #: src/components/common/TaxAndFeeList/index.tsx:81 #: src/components/routes/admin/FailedJobs/index.tsx:209 -#: src/components/routes/event/OccurrencesTab/index.tsx:500 +#: src/components/routes/event/OccurrencesTab/index.tsx:502 #: src/components/routes/event/OccurrencesTab/OccurrenceMenu.tsx:62 msgid "Delete" msgstr "Borrar" @@ -3262,7 +3266,7 @@ msgstr "Borrar" msgid "Delete \"{0}\"?" msgstr "¿Eliminar \"{0}\"?" -#: src/components/routes/event/OccurrencesTab/index.tsx:247 +#: src/components/routes/event/OccurrencesTab/index.tsx:249 msgid "Delete {count} selected date(s)? Dates with orders will be skipped. This cannot be undone." msgstr "" @@ -3344,7 +3348,7 @@ msgstr "¿Eliminar esta pregunta? Esto no se puede deshacer." msgid "Delete webhook" msgstr "Eliminar webhook" -#: src/components/routes/event/OccurrencesTab/index.tsx:253 +#: src/components/routes/event/OccurrencesTab/index.tsx:255 msgid "Deleted {0} date(s)" msgstr "" @@ -3565,7 +3569,7 @@ msgstr "ej. 180 (3 horas)" #: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:452 #: src/components/routes/event/OccurrencesTab/OccurrenceEditModal/index.tsx:450 -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:714 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:727 msgid "e.g. Morning Session" msgstr "" @@ -3724,7 +3728,7 @@ msgstr "Editar webhook" msgid "Edit Webhook" msgstr "Editar Webhook" -#: src/components/routes/event/OccurrencesTab/index.tsx:306 +#: src/components/routes/event/OccurrencesTab/index.tsx:308 msgid "Edited" msgstr "" @@ -3913,7 +3917,7 @@ msgstr "Habilitar lista de espera" msgid "Enabled" msgstr "Habilitado" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:704 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:717 msgid "End" msgstr "" @@ -3934,7 +3938,7 @@ msgstr "Fecha y hora de finalización (opcional)" msgid "End date must be after start date" msgstr "La fecha de finalización debe ser posterior a la fecha de inicio" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:771 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:784 msgid "End on a date" msgstr "" @@ -4409,7 +4413,7 @@ msgstr "No se pudo cancelar el asistente" msgid "Failed to cancel date" msgstr "" -#: src/components/routes/event/OccurrencesTab/index.tsx:239 +#: src/components/routes/event/OccurrencesTab/index.tsx:241 msgid "Failed to cancel dates" msgstr "" @@ -4429,10 +4433,14 @@ msgstr "Error al crear el afiliado" msgid "Failed to create configuration" msgstr "Error al crear configuración" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:530 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:543 msgid "Failed to create schedule" msgstr "" +#: src/hooks/useOccurrenceGenerationPolling.ts:44 +msgid "Failed to create schedule. Please try again." +msgstr "No se pudo crear el calendario. Por favor, inténtalo de nuevo." + #: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:192 #: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:195 msgid "Failed to create template" @@ -4444,7 +4452,7 @@ msgstr "Error al eliminar configuración" #: src/components/modals/ManageOccurrenceModal/index.tsx:64 #: src/components/routes/event/OccurrenceDetail/index.tsx:90 -#: src/components/routes/event/OccurrencesTab/index.tsx:185 +#: src/components/routes/event/OccurrencesTab/index.tsx:187 msgid "Failed to delete date" msgstr "" @@ -4452,7 +4460,7 @@ msgstr "" msgid "Failed to delete date. It may have existing orders." msgstr "" -#: src/components/routes/event/OccurrencesTab/index.tsx:256 +#: src/components/routes/event/OccurrencesTab/index.tsx:258 msgid "Failed to delete dates" msgstr "" @@ -4540,7 +4548,7 @@ msgstr "Error al eliminar de la lista de espera" msgid "Failed to remove override" msgstr "" -#: src/components/routes/event/OccurrencesTab/index.tsx:199 +#: src/components/routes/event/OccurrencesTab/index.tsx:201 msgid "Failed to reopen date" msgstr "" @@ -4677,7 +4685,7 @@ msgstr "" msgid "Fast payouts to your bank" msgstr "" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:72 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:74 msgid "February" msgstr "" @@ -4769,7 +4777,7 @@ msgstr "" msgid "Finish setup" msgstr "" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:63 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:65 msgid "First" msgstr "" @@ -4882,7 +4890,7 @@ msgstr "Texto del Pie" msgid "Forgot password?" msgstr "¿Has olvidado tu contraseña?" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:66 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:68 msgid "Fourth" msgstr "" @@ -4909,11 +4917,11 @@ msgstr "Producto gratuito, no se requiere información de pago" msgid "French" msgstr "Francés" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:586 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:599 msgid "Frequency" msgstr "" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:50 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:52 msgid "Fri" msgstr "" @@ -5004,7 +5012,7 @@ msgstr "GitHub" #: src/components/routes/event/OccurrenceDetail/index.tsx:72 #: src/components/routes/event/OccurrencesTab/cancelOccurrenceDialog.tsx:49 -#: src/components/routes/event/OccurrencesTab/index.tsx:221 +#: src/components/routes/event/OccurrencesTab/index.tsx:223 #: src/components/routes/event/OccurrencesTab/OccurrenceEditModal/index.tsx:339 #: src/components/routes/event/OccurrencesTab/OccurrenceEditModal/index.tsx:363 msgid "Go Back" @@ -5271,7 +5279,7 @@ msgstr "¿Cómo se aplica el descuento?" msgid "How long a customer has to complete their purchase after receiving an offer. Leave empty for no timeout." msgstr "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." -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:750 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:763 msgid "How long does the schedule run?" msgstr "" @@ -5283,7 +5291,7 @@ msgstr "Cuántos minutos tiene el cliente para completar su pedido. Recomendamos msgid "How many times can this code be used?" msgstr "¿Cuántas veces se puede utilizar este código?" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:581 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:594 msgid "How often?" msgstr "" @@ -5589,7 +5597,7 @@ msgstr "artículo(s)" msgid "Items" msgstr "Artículos" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:71 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:73 msgid "January" msgstr "" @@ -5640,11 +5648,11 @@ msgstr "Unirse a la lista de espera para {productDisplayName}" msgid "Joined" msgstr "Inscrito" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:77 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:79 msgid "July" msgstr "" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:76 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:78 msgid "June" msgstr "" @@ -5670,7 +5678,7 @@ msgstr "" #: src/components/forms/ProductForm/index.tsx:108 #: src/components/routes/event/OccurrencesTab/OccurrenceEditModal/index.tsx:449 -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:711 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:724 #: src/components/routes/event/Reports/OccurrenceSummaryReport/index.tsx:45 msgid "Label" msgstr "Etiqueta" @@ -5685,7 +5693,7 @@ msgstr "" msgid "Language" msgstr "Idioma" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:67 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:69 msgid "Last" msgstr "" @@ -5794,7 +5802,7 @@ msgid "Leave blank to use the default word \"Invoice\"" msgstr "Dejar en blanco para usar la palabra predeterminada \"Factura\"" #: src/components/routes/event/OccurrencesTab/OccurrenceEditModal/index.tsx:507 -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:816 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:829 msgid "Leave empty for unlimited" msgstr "" @@ -5834,7 +5842,7 @@ msgstr "LinkedIn" msgid "Links Allowed" msgstr "Enlaces permitidos" -#: src/components/routes/event/OccurrencesTab/index.tsx:470 +#: src/components/routes/event/OccurrencesTab/index.tsx:472 msgid "List" msgstr "" @@ -6003,7 +6011,7 @@ msgstr "" msgid "Manage attendee" msgstr "Gestionar asistente" -#: src/components/routes/event/OccurrencesTab/index.tsx:460 +#: src/components/routes/event/OccurrencesTab/index.tsx:462 msgid "Manage dates and times for your recurring event" msgstr "" @@ -6074,7 +6082,7 @@ msgstr "Agregar manualmente un asistente" msgid "Manually Add Attendee" msgstr "Agregar asistente manualmente" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:73 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:75 msgid "March" msgstr "" @@ -6098,7 +6106,7 @@ msgstr "Máx. destinatarios / mensaje" msgid "Maximum Per Order" msgstr "Máximo por pedido" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:75 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:77 msgid "May" msgstr "" @@ -6214,7 +6222,7 @@ msgstr "Otras configuraciones" msgid "Mode" msgstr "" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:46 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:48 msgid "Mon" msgstr "" @@ -6230,24 +6238,24 @@ msgstr "Los valores monetarios son totales aproximados en todas las monedas" msgid "Monitor and manage failed background jobs" msgstr "Monitorear y gestionar trabajos de fondo fallidos" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:95 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:97 msgid "month" msgstr "" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:671 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:684 msgid "Month" msgstr "Mes" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:58 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:60 #: src/components/routes/product-widget/OccurrenceSelector/index.tsx:41 msgid "Monthly" msgstr "" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:624 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:637 msgid "Monthly Pattern" msgstr "" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:103 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:105 msgid "months" msgstr "" @@ -6516,7 +6524,7 @@ msgstr "" msgid "No dates match the current filters." msgstr "" -#: src/components/routes/event/OccurrencesTab/index.tsx:570 +#: src/components/routes/event/OccurrencesTab/index.tsx:580 msgid "No dates match your filters" msgstr "" @@ -6529,7 +6537,7 @@ msgstr "" msgid "No dates scheduled" msgstr "No hay fechas programadas" -#: src/components/routes/event/OccurrencesTab/index.tsx:570 +#: src/components/routes/event/OccurrencesTab/index.tsx:580 msgid "No dates scheduled yet" msgstr "" @@ -6820,11 +6828,11 @@ msgstr "" msgid "Notify organizer of new orders" msgstr "Notificar al organizador de nuevos pedidos" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:81 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:83 msgid "November" msgstr "" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:800 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:813 msgid "Number of dates to create" msgstr "" @@ -6849,7 +6857,7 @@ msgid "Occurrence Cancelled" msgstr "" #: src/components/layouts/Event/index.tsx:113 -#: src/components/routes/event/OccurrencesTab/index.tsx:461 +#: src/components/routes/event/OccurrencesTab/index.tsx:463 msgid "Occurrence Schedule" msgstr "" @@ -6871,7 +6879,7 @@ msgstr "" msgid "Occurrences can be configured after creation" msgstr "" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:80 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:82 msgid "October" msgstr "" @@ -6965,7 +6973,7 @@ msgstr "En curso" #: src/components/common/EventCard/index.tsx:103 #: src/components/layouts/OrganizerHomepage/EventCard/index.tsx:49 -#: src/components/routes/event/OccurrencesTab/index.tsx:316 +#: src/components/routes/event/OccurrencesTab/index.tsx:318 #: src/components/routes/event/OccurrencesTab/OccurrenceEditModal/index.tsx:473 #: src/components/routes/my-tickets/index.tsx:56 #: src/components/routes/product-widget/OccurrenceSelector/index.tsx:122 @@ -7080,7 +7088,7 @@ msgstr "Opciones" msgid "or" msgstr "o" -#: src/components/routes/event/OccurrencesTab/index.tsx:593 +#: src/components/routes/event/OccurrencesTab/index.tsx:603 msgid "or add a single date" msgstr "" @@ -7088,7 +7096,7 @@ msgstr "" msgid "Or enable offline payments and disable Stripe" msgstr "O activa los pagos sin conexión y desactiva Stripe" -#: src/components/routes/event/OccurrencesTab/index.tsx:413 +#: src/components/routes/event/OccurrencesTab/index.tsx:415 msgid "order" msgstr "" @@ -7250,7 +7258,7 @@ msgstr "Pedido actualizado correctamente" msgid "Order was cancelled" msgstr "El pedido fue cancelado" -#: src/components/routes/event/OccurrencesTab/index.tsx:413 +#: src/components/routes/event/OccurrencesTab/index.tsx:415 #: src/components/routes/event/orders.tsx:197 msgid "orders" msgstr "" @@ -7503,7 +7511,7 @@ msgid "Passwords are not the same" msgstr "Las contraseñas no son similares" #: src/components/layouts/OrganizerHomepage/index.tsx:291 -#: src/components/routes/event/OccurrencesTab/index.tsx:484 +#: src/components/routes/event/OccurrencesTab/index.tsx:486 #: src/components/routes/organizer/Reports/EventsPerformanceReport/index.tsx:30 msgid "Past" msgstr "Pasado" @@ -7707,15 +7715,15 @@ msgstr "Información personal" msgid "Phone" msgstr "Teléfono" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:372 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:379 msgid "Pick an end date" msgstr "" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:380 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:387 msgid "Pick at least one day of the month" msgstr "" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:369 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:376 msgid "Pick at least one day of the week" msgstr "" @@ -7765,7 +7773,7 @@ msgstr "Ingresos de la plataforma" msgid "Please add at least one option" msgstr "Por favor agregue al menos una opción" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:527 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:540 #: src/hooks/useFormErrorResponseHandler.tsx:18 msgid "Please check the provided information is correct" msgstr "Por favor verifique que la información proporcionada sea correcta." @@ -7895,7 +7903,7 @@ msgstr "Eventos populares (Últimos 14 días)" msgid "Portuguese" msgstr "Portugués" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:654 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:667 msgid "Position" msgstr "" @@ -8385,7 +8393,7 @@ msgstr "Cuentas de referencia" msgid "Refresh Preview" msgstr "Actualizar vista previa" -#: src/components/routes/event/OccurrencesTab/index.tsx:216 +#: src/components/routes/event/OccurrencesTab/index.tsx:218 msgid "Refund all orders for these dates" msgstr "" @@ -8494,11 +8502,11 @@ msgstr "Elimina por completo las fechas y horarios agotados de la página del ev msgid "Reopen for new sales" msgstr "" -#: src/components/routes/event/OccurrencesTab/index.tsx:192 +#: src/components/routes/event/OccurrencesTab/index.tsx:194 msgid "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." msgstr "" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:591 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:604 msgid "Repeat every" msgstr "" @@ -8699,7 +8707,7 @@ msgstr "Revocar oferta" msgid "Role" msgstr "Rol" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:772 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:785 msgid "Run until a specific date" msgstr "" @@ -8786,7 +8794,7 @@ msgstr "Precio de entrada de ejemplo" msgid "Sample Venue" msgstr "Lugar de Ejemplo" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:51 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:53 msgid "Sat" msgstr "" @@ -8836,7 +8844,7 @@ msgstr "" msgid "Save Organizer" msgstr "Guardar organizador" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:864 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:877 msgid "Save Schedule" msgstr "" @@ -8900,11 +8908,12 @@ msgstr "" msgid "Schedule added" msgstr "" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:520 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:530 +#: src/hooks/useOccurrenceGenerationPolling.ts:36 msgid "Schedule created successfully" msgstr "" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:793 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:806 msgid "Schedule ends on" msgstr "" @@ -8916,7 +8925,7 @@ msgstr "Programar para más tarde" msgid "Schedule Message" msgstr "Programar mensaje" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:755 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:768 msgid "Schedule starts on" msgstr "" @@ -9039,7 +9048,7 @@ msgstr "Buscar..." msgid "Seasonal" msgstr "" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:64 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:66 msgid "Second" msgstr "" @@ -9215,7 +9224,7 @@ msgstr "Selecciona qué eventos activarán este webhook" msgid "Select..." msgstr "Seleccionar..." -#: src/components/routes/event/OccurrencesTab/index.tsx:495 +#: src/components/routes/event/OccurrencesTab/index.tsx:497 msgid "selected" msgstr "" @@ -9345,7 +9354,7 @@ msgstr "Configuración de SEO" msgid "SEO Title" msgstr "Título SEO" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:79 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:81 msgid "September" msgstr "" @@ -9373,7 +9382,7 @@ msgstr "Establecer configuraciones predeterminadas para nuevos eventos creados b msgid "Set how long each date lasts" msgstr "" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:784 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:797 msgid "Set number of dates" msgstr "" @@ -9393,7 +9402,7 @@ msgstr "Establezca el número inicial para la numeración de facturas. Esto no s msgid "Set to unlimited (remove limit)" msgstr "" -#: src/components/routes/event/OccurrencesTab/index.tsx:575 +#: src/components/routes/event/OccurrencesTab/index.tsx:585 msgid "Set up a recurring schedule to automatically create dates, or add them one at a time." msgstr "" @@ -9410,8 +9419,8 @@ msgstr "" msgid "Set up schedule" msgstr "" -#: src/components/routes/event/OccurrencesTab/index.tsx:532 -#: src/components/routes/event/OccurrencesTab/index.tsx:586 +#: src/components/routes/event/OccurrencesTab/index.tsx:535 +#: src/components/routes/event/OccurrencesTab/index.tsx:596 msgid "Set Up Schedule" msgstr "" @@ -9427,7 +9436,7 @@ msgstr "Configura tu organización" msgid "Set up your schedule" msgstr "" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:569 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:582 msgid "Set Up Your Schedule" msgstr "" @@ -9564,7 +9573,7 @@ msgstr "Mostrar impuestos y tarifas por separado" msgid "Showing {0} of {totalRows} records" msgstr "Mostrando {0} de {totalRows} registros" -#: src/components/routes/event/OccurrencesTab/index.tsx:614 +#: src/components/routes/event/OccurrencesTab/index.tsx:624 msgid "Showing {0}–{1} of {2}" msgstr "" @@ -9645,7 +9654,7 @@ msgstr "Enlaces sociales y sitio web" #: src/components/common/ProductsTable/SortableProduct/index.tsx:387 #: src/components/modals/ManageOccurrenceModal/index.tsx:186 -#: src/components/routes/event/OccurrencesTab/index.tsx:369 +#: src/components/routes/event/OccurrencesTab/index.tsx:371 msgid "Sold" msgstr "Vendido" @@ -9753,7 +9762,7 @@ msgstr "" msgid "Standard product with a fixed price" msgstr "Producto estándar con precio fijo" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:696 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:709 msgid "Start" msgstr "" @@ -9846,7 +9855,7 @@ msgstr "" #: src/components/routes/admin/Messages/index.tsx:120 #: src/components/routes/admin/Messages/index.tsx:167 #: src/components/routes/admin/Messages/index.tsx:294 -#: src/components/routes/event/OccurrencesTab/index.tsx:326 +#: src/components/routes/event/OccurrencesTab/index.tsx:328 #: src/components/routes/event/Reports/OccurrenceSummaryReport/index.tsx:51 #: src/components/routes/event/Reports/PromoCodesReport/index.tsx:88 #: src/components/routes/organizer/Reports/EventsPerformanceReport/index.tsx:62 @@ -10104,7 +10113,7 @@ msgstr "Festival de música de verano {0}" msgid "Summer Music Festival 2025" msgstr "Festival de Música de Verano 2025" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:52 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:54 msgid "Sun" msgstr "" @@ -10231,7 +10240,7 @@ msgstr "Cuéntanos sobre tu evento" msgid "Tell us about your organization. This information will be displayed on your event pages." msgstr "Cuéntanos sobre tu organización. Esta información se mostrará en las páginas de tus eventos." -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:573 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:586 msgid "Tell us how often your event repeats and we'll create all the dates for you." msgstr "" @@ -10325,7 +10334,7 @@ msgstr "La dirección de correo electrónico ha sido cambiada. El asistente reci msgid "The event you're looking for is not available at the moment. It may have been removed, expired, or the URL might be incorrect." msgstr "El evento que buscas no está disponible en este momento. Puede que haya sido eliminado, haya caducado o la URL sea incorrecta." -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:756 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:769 msgid "The first date this schedule will generate from." msgstr "" @@ -10345,7 +10354,7 @@ msgstr "El enlace al que intenta acceder ha caducado o ya no es válido. Por fav msgid "The link you clicked is invalid." msgstr "El enlace en el que hizo clic no es válido." -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:840 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:853 msgid "The maximum is {MAX_PREVIEW} sessions. Please reduce the date range, frequency, or number of sessions per day." msgstr "" @@ -10481,7 +10490,7 @@ msgstr "Estas plantillas se usarán como predeterminadas para todos los eventos 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." -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:65 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:67 msgid "Third" msgstr "" @@ -10744,7 +10753,7 @@ msgstr "Esto no será visible para los clientes, pero te ayuda a identificar al msgid "Throughput" msgstr "" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:49 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:51 msgid "Thu" msgstr "" @@ -10881,7 +10890,7 @@ msgstr "Los productos escalonados le permiten ofrecer múltiples opciones de pre msgid "TikTok" msgstr "TikTok" -#: src/components/routes/event/OccurrencesTab/index.tsx:290 +#: src/components/routes/event/OccurrencesTab/index.tsx:292 msgid "Time" msgstr "" @@ -10912,7 +10921,7 @@ msgstr "Veces usado" msgid "Timezone" msgstr "Zona horaria" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:702 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:715 msgid "to" msgstr "" @@ -11056,7 +11065,7 @@ msgstr "Seguimiento y analítica" msgid "Try a different search term or filter" msgstr "" -#: src/components/routes/event/OccurrencesTab/index.tsx:574 +#: src/components/routes/event/OccurrencesTab/index.tsx:584 msgid "Try adjusting your filters to see more dates." msgstr "" @@ -11069,7 +11078,7 @@ msgstr "Probar otro correo" msgid "Try Hi.Events Free" msgstr "Probar Hi.Events gratis" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:47 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:49 msgid "Tue" msgstr "" @@ -11232,7 +11241,7 @@ msgstr "No confiable" #: src/components/common/EventsDashboardStatusButtons/index.tsx:20 #: src/components/common/EventStatusBadge/index.tsx:16 #: src/components/layouts/OrganizerHomepage/index.tsx:285 -#: src/components/routes/event/OccurrencesTab/index.tsx:483 +#: src/components/routes/event/OccurrencesTab/index.tsx:485 #: src/components/routes/organizer/Reports/EventsPerformanceReport/index.tsx:33 msgid "Upcoming" msgstr "Próximo" @@ -11880,7 +11889,7 @@ msgstr "Webhooks" msgid "Website" msgstr "Sitio web" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:48 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:50 msgid "Wed" msgstr "" @@ -11888,16 +11897,16 @@ msgstr "" msgid "Wednesday" msgstr "" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:94 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:96 msgid "week" msgstr "" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:57 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:59 #: src/components/routes/product-widget/OccurrenceSelector/index.tsx:35 msgid "Weekly" msgstr "" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:102 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:104 msgid "weeks" msgstr "" @@ -11953,7 +11962,7 @@ msgstr "¿A qué productos debería aplicarse esta capacidad?" msgid "What time will you be arriving?" msgstr "¿A qué hora llegarás?" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:688 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:701 msgid "What time?" msgstr "" @@ -12140,7 +12149,7 @@ msgstr "Escribe tu mensaje aquí..." msgid "X (Twitter)" msgstr "X (Twitter)" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:96 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:98 msgid "year" msgstr "" @@ -12150,12 +12159,12 @@ msgstr "" msgid "Year to date" msgstr "Año hasta la fecha" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:59 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:61 #: src/components/routes/product-widget/OccurrenceSelector/index.tsx:43 msgid "Yearly" msgstr "" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:104 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:106 msgid "years" msgstr "" @@ -12200,7 +12209,7 @@ msgstr "Puede configurar comisiones de servicio adicionales e impuestos en la co msgid "You can create a promo code which targets this product on the" msgstr "Puede crear un código promocional que se dirija a este producto en el" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:823 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:836 msgid "You can override this for individual dates later." msgstr "" diff --git a/frontend/src/locales/fr.js b/frontend/src/locales/fr.js index 6ce57f92c2..0de106e468 100644 --- a/frontend/src/locales/fr.js +++ b/frontend/src/locales/fr.js @@ -1 +1 @@ -/*eslint-disable*/module.exports={messages:JSON.parse("{\"f8qS7T\":\"'Il n'y a encore rien à afficher'\",\"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 Main Street\",\"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\":\"Are you sure you want to make this event public? This will make the event visible to the 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\":\"Attendee Notes\",\"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\":\"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\":\"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\":\"Check-in\",\"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\":\"Personnalisez votre page d'événement\",\"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\":\"Dismiss\",\"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\":\"Event URL\",\"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\":\"No attendees have been added to this order.\",\"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\":\"No product associated with this attendee.\",\"Ya1JhR\":\"Aucun produit disponible dans cette catégorie.\",\"FTfObB\":\"Pas encore de produits\",\"+Y976X\":\"Aucun code promotionnel à afficher\",\"MAavyl\":\"No questions answered by this attendee.\",\"SnlQeq\":\"No questions have been asked for this order.\",\"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 vente\",\"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\":\"Online event\",\"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\":\"Order #\",\"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\":\"Order Notes\",\"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\":\"Commandes\",\"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\":\"Propulsé 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\":\"Codes 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\\ngénérales, des 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\":\"S'inscrire\",\"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\":\"Taxe\",\"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\":\"Taxes\",\"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\":\"Total des taxes\",\"+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\":\"TVA\",\"E/9LUk\":\"nom de la place\",\"jpctdh\":\"View\",\"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\":\"(none)\",\"xYxQCZ\":[[\"0\"],\" \",[\"1\"]],\"lAOy2r\":[[\"0\"],\" \",[\"1\"],\" est déjà enregistré\"],\"3beCx0\":[[\"0\"],\" <0>checked in\"],\"S4PqS9\":[[\"0\"],\" webhooks actifs\"],\"6MIiOI\":[[\"0\"],\" restant\"],\"COnw8D\":[\"Logo \",[\"0\"]],\"xG9N0H\":[[\"0\"],\" of \",[\"1\"],\" seats are taken.\"],\"B7pZfX\":[[\"0\"],\" organisateurs\"],\"/HkCs4\":[[\"0\"],\" billets\"],\"30bTiU\":[[\"activeCount\"],\" enabled\"],\"jTs4am\":[[\"appName\"],\" logo\"],\"gbJOk9\":[[\"attendeeCount\"],\" attendees are registered for this session.\"],\"TjbIUI\":[[\"availableCount\"],\" sur \",[\"totalCount\"],\" disponibles\"],\"PSChHo\":[[\"capacity\"],\" places restantes\"],\"lzQ8/M\":[[\"checkedIn\"],\" / \",[\"total\"],\" checked in\"],\"RZ0JX3\":[[\"chipTime\"],\", complet\"],\"M4KnFs\":[[\"chipTime\"],\", Épuisé, liste d'attente disponible\"],\"SeyN12\":[[\"completedCount\"],\" of \",[\"totalCount\"],\" steps complete\"],\"f2rhaD\":[[\"diffHr\"],\"h ago\"],\"NRSLBe\":[[\"diffMin\"],\"m ago\"],\"iYfwJE\":[[\"diffSec\"],\"s ago\"],\"OJnhhX\":[[\"eventCount\"],\" événements\"],\"mhZbzw\":[[\"loadedAffectedAttendees\"],\" attendees are registered across the affected sessions.\"],\"RBuxIl\":[[\"productCount\"],\" ticket types configured\"],\"VFLd0I\":[[\"slotCount\"],\" times available\"],\"3IEF7U\":[[\"totalCount\"],\" types de billets\"],\"0cLzoF\":[[\"totalOccurrences\"],\" dates\"],\"AEGc4t\":[[\"totalOccurrences\"],\" sessions across \",[\"0\"],\" dates (\",[\"1\",\"plural\",{\"one\":[\"#\",\" session\"],\"other\":[\"#\",\" sessions\"]}],\" per day)\"],\"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.\",\"Il5Uid\":\"<0>Il s'agit de la quantité totale disponible cumulée sur toutes les dates de votre planning — ce n'est pas une limite par date. Pour limiter le nombre de participants par date, définissez une capacité sur la <1>page Planning des dates.\",\"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 attendee is registered across the affected sessions.\",\"qOyE2U\":\"1 attendee is registered for this session.\",\"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\",\"y2Jh0m\":\"1 time available\",\"cGtUz6\":\"1 semaine avant l'événement\",\"HR/cvw\":\"123 Rue Exemple\",\"dgKxZ5\":\"135+ currencies & 40+ payment methods\",\"kMU5aM\":\"Un avis d'annulation a été envoyé à\",\"o++0qa\":\"a change in duration\",\"WuWSX5\":\"A few quick steps and you're ready to start selling.\",\"RQ5kDd\":\"Un message à afficher lorsqu'il n'y a aucun produit dans cette catégorie.\",\"V53XzQ\":\"Un nouveau code de vérification a été envoyé à votre adresse e-mail\",\"sr2Je0\":\"a shift in start/end times\",\"/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\":[\"Account · \",[\"0\"],\" · \",[\"1\"]],\"vOuxvL\":\"Informations du compte\",\"EHNORh\":\"Compte introuvable\",\"bPwFdf\":\"Comptes\",\"AhwTa1\":\"Action requise : Informations TVA nécessaires\",\"APyAR/\":\"Événements actifs\",\"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\":\"Ajoutez des questions personnalisées pour collecter des informations supplémentaires lors du paiement\",\"Z/dcxc\":\"Add Date\",\"QeupRg\":\"Ajouter des dates\",\"Q219NT\":\"Add Dates\",\"yjB5VC\":\"Add dates and times for your recurring event\",\"Z8idyM\":\"Add details\",\"wpirGs\":\"Add event details\",\"VX6WUv\":\"Ajouter un emplacement\",\"GCQlV2\":\"Add multiple times if you run several sessions per day.\",\"7JF9w9\":\"Ajouter une question\",\"NLbIb6\":\"Add this attendee anyway (override capacity)\",\"6PNlRV\":\"Ajouter cet événement à votre calendrier\",\"BGD9Yt\":\"Ajouter des billets\",\"uIv4Op\":\"Ajoutez des pixels de suivi à vos pages d'événements publics 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\":\"Affiliate program\",\"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.\",\"3e31kI\":\"After your event is created, you can choose how often it repeats from the dashboard.\",\"z7GAMJ\":\"all\",\"N40H+G\":\"All\",\"7rLTkE\":\"Tous les événements archivés\",\"gKq1fa\":\"Tous les participants\",\"63gRoO\":\"All attendees of the selected sessions\",\"uWxIoH\":\"All attendees of this occurrence\",\"pMLul+\":\"Toutes les devises\",\"sgUdRZ\":\"All dates\",\"e4q4uO\":\"All 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\":\"All matching dates\",\"F1/VgK\":\"All occurrences\",\"OpWjMq\":\"All Occurrences\",\"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.\",\"VZdky1\":\"Permettre aux acheteurs de copier leurs informations vers tous les participants\",\"F3mW5G\":\"Permettre aux clients de rejoindre une liste d'attente lorsque ce produit est épuisé\",\"4CMO/q\":\"Permettre aux clients de rejoindre une liste d'attente lorsque ce produit est épuisé. Les clients rejoignent la liste d'attente pour une date spécifique.\",\"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\":\"Already in\",\"/H326L\":\"Déjà remboursé\",\"USEpOK\":\"Already use Stripe on another organizer? Reuse that connection.\",\"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.\",\"OPFdAM\":\"Une description facultative de cette catégorie à afficher sur la page de l'événement.\",\"eusccx\":\"Un message optionnel à afficher sur le produit en vedette, par ex. \\\"Se vend rapidement 🔥\\\" ou \\\"Meilleur rapport qualité-prix\\\"\",\"5GJuNp\":[\"and \",[\"0\"],\" more...\"],\"QNrkms\":\"Réponse mise à jour avec succès.\",\"+qygei\":\"Answers\",\"GK7Lnt\":\"Answers provided at checkout (e.g. meal choice)\",\"lE8PgT\":\"Any dates you've manually customized will be kept.\",\"jVoYha\":[\"appliqué — \",[\"0\"],\" de réduction sur votre commande\"],\"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\":\"Approuver le message\",\"naCW6Z\":\"April\",\"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\":[\"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\":\"Ê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/\":\"Are you sure you want to delete this date? This action cannot be undone.\",\"RiF/yT\":\"Are you sure you want to delete this image?\",\"b3+Qku\":\"Are you sure you want to delete this tax or fee? It will no longer be applied to new orders.\",\"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\":\"Are you sure you want to permanently delete this date? This cannot be undone.\",\"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 ?\",\"b7tkGp\":\"Are you sure you want to revoke this invitation?\",\"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\":\"Assign plan\",\"xdiER7\":\"Niveau attribué\",\"F2rX0R\":\"Au moins un type d'événement doit être sélectionné\",\"Z44eZS\":\"At least one product must stay available for this date. To make the date inaccessible, cancel it from the schedule instead.\",\"BCmibk\":\"Tentatives\",\"6PecK3\":\"Présence et taux d'enregistrement pour tous les événements\",\"K2tp3v\":\"attendee\",\"AJ4rvK\":\"Participant annulé\",\"qvylEK\":\"Participant créé\",\"Aspq3b\":\"Collecte des informations des participants\",\"fpb0rX\":\"Informations du participant copiées de la commande\",\"94aQMU\":\"Informations du participant\",\"KkrBiR\":\"Collecte d'informations sur les participants\",\"sjPjOg\":\"Attendee notes\",\"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\":\"attendees\",\"zLRobu\":\"attendees checked in\",\"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/\":\"August\",\"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\":\"Offrir automatiquement des billets à la prochaine personne lorsque de la capacité se libère. Si désactivé, vous pouvez traiter manuellement la liste d'attente depuis la page Liste d'attente.\",\"csDS2L\":\"Disponible\",\"Xp+ywP\":\"Disponible une fois le paiement effectué\",\"dwDH1K\":[\"Available times on \",[\"dayName\"]],\"clF06r\":\"Disponible pour remboursement\",\"NB5+UG\":\"Jetons disponibles\",\"L+wGOG\":\"Awaiting\",\"qcw2OD\":\"Awaiting pay\",\"kNmmvE\":\"Awesome Events SARL\",\"TeSaQO\":\"Retour aux comptes\",\"kYqM1A\":\"Retour à l'événement\",\"s5QRF3\":\"Retour aux messages\",\"td/bh+\":\"Retour aux rapports\",\"nsm7BA\":\"Retour à la recherche\",\"imjKVx\":\"Bank account connected\",\"D9LTCH\":\"Base Price\",\"hviJef\":\"Based on the global sale period above, not per 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\":\"Built-in fraud protection\",\"cr7kGH\":\"Bulk Edit\",\"1Fbd6n\":\"Bulk Edit Dates\",\"Eq6Tu9\":\"Bulk update failed.\",\"9N+p+g\":\"Affaires\",\"SWnN1L\":\"Business address\",\"kQekXw\":\"Business name\",\"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 responsables conjoints des données collectées. Vous êtes responsable de vous assurer que vous disposez d'une base légale pour ce traitement en vertu des lois applicables sur la protection des données (RGPD, CCPA, etc.).\",\"DFqasq\":[\"En continuant, vous acceptez les <0>Conditions d'utilisation de \",[\"0\"],\"\"],\"wVSa+U\":\"By day of month\",\"0MnNgi\":\"By day of week\",\"CetOZE\":\"By ticket type\",\"lFdbRS\":\"Contourner les frais d'application\",\"AjVXBS\":\"Calendar\",\"2VLZwd\":\"Bouton d'appel à l'action\",\"rT2cV+\":\"Camera\",\"7hYa9y\":\"Camera permission was denied. <0>Request permission again, or grant this page camera access in your browser settings.\",\"D02dD9\":\"Campagne\",\"RRPA79\":\"Can't check in\",\"OcVwAd\":[\"Cancel \",[\"count\"],\" date(s)\"],\"H4nE+E\":\"Annuler tous les produits et les remettre dans le pool\",\"Py78q9\":\"Cancel Date\",\"tOXAdc\":\"L'annulation annulera tous les participants associés à cette commande et remettra les billets dans le pool disponible.\",\"FPpqc7\":[\"Cancelling \",[\"0\"],\" date(s). This may take a moment to complete.\"],\"01sEfm\":\"Impossible de supprimer la configuration système par défaut\",\"VsM1HH\":\"Attributions de capacité\",\"9bIMVF\":\"Capacity management\",\"H7K8og\":\"Capacity must be 0 or greater\",\"nzao08\":\"capacity updates\",\"4cp9NP\":\"Capacity Used\",\"K7tIrx\":\"Catégorie\",\"DRK3Bq\":\"Category deleted successfully\",\"o+XJ9D\":\"Modifier\",\"kJkjoB\":\"Change duration\",\"J0KExZ\":\"Change the attendee limit\",\"ssospy\":\"Change time\",\"CIHJJf\":\"Modifier les paramètres de liste d'attente\",\"B5icLR\":[\"Changed duration for \",[\"count\"],\" date(s)\"],\"Kb+0BT\":\"Charges\",\"2tbLdK\":\"Charité\",\"BPWGKn\":\"Check in\",\"6uFFoY\":\"Check out\",\"FjAlwK\":[\"Check out this event: \",[\"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\":\"Check-In\",\"udRwQs\":\"Enregistrement créé\",\"F4SRy3\":\"Enregistrement supprimé\",\"as6XfO\":[\"Check-in for \",[\"0\"],\" was undone\"],\"9s/wrQ\":\"Check-in history\",\"Wwztk4\":\"Check-In List\",\"9gPPUY\":\"Liste d'Enregistrement Créée !\",\"dwjiJt\":\"Check-in list info\",\"7od0PV\":\"check-in lists\",\"f2vU9t\":\"Listes d'enregistrement\",\"XprdTn\":\"Check-in navigation\",\"5tV1in\":\"Check-in progress\",\"SHJwyq\":\"Taux d'enregistrement\",\"qCqdg6\":\"Statut d'enregistrement\",\"cKj6OE\":\"Résumé des enregistrements\",\"7B5M35\":\"Enregistrements\",\"VrmydS\":\"Checked in\",\"DM4gBB\":\"Chinois (traditionnel)\",\"p8Jvp4\":\"Choose a configuration\",\"ElShBO\":\"Choose a different action\",\"pHEhf+\":\"Choisissez une police qui correspond à votre marque. Les polices sont auto-hébergées via Bunny Fonts.\",\"Zok1Gx\":\"Choose an organizer\",\"pkk46Q\":\"Choisissez un organisateur\",\"Ag32+c\":\"Choose another date\",\"Crr3pG\":\"Choisir le calendrier\",\"Z38ZJu\":\"Choisissez comment la date de l'événement s'affiche sur le billet\",\"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\":\"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\":\"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\":\"complete\",\"bUQMpb\":\"Complete Stripe setup\",\"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 assigned\",\"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\":\"Configure which products are available for this occurrence and optionally adjust pricing.\",\"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\",\"/K4Vqr\":\"Connectez Stripe pour accepter les paiements\",\"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\":\"Les détails de connexion sont requis pour les événements en ligne\",\"jfC/xh\":\"Contact\",\"LOFgda\":[\"Contacter \",[\"0\"]],\"41BQ3k\":\"E-mail de contact\",\"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\",\"s30OcA\":\"Contrôlez l'affichage des dates et horaires sur la page de l'événement\",\"p2FRHj\":\"Contrôlez comment les frais de plateforme sont gérés pour cet événement\",\"NqfabH\":\"Control who gets in for this date\",\"fmYxZx\":\"Control who gets in, and when\",\"1JnTgU\":\"Copié d'en haut\",\"FxVG/l\":\"Copié dans le presse-papiers\",\"PiH3UR\":\"Copié !\",\"4i7smN\":\"Copy account ID\",\"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 l'emplacement\",\"vkiDx2\":\"Could not prepare the bulk update.\",\"KOavaU\":\"Impossible de récupérer les détails de l'adresse\",\"/lq4oO\":\"Could not save date\",\"mHu0az\":\"Couldn't send verification email. Please try again.\",\"QOIm+S\":\"Les totaux incluent toutes les dates à venir. Chaque personne se voit proposer une place pour la date qu'elle a choisie.\",\"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\":\"Covers every ticket\",\"zg4oSu\":[\"Créer le modèle \",[\"0\"]],\"RKKhnW\":\"Créez un widget personnalisé pour vendre des billets sur votre site.\",\"6sk7PP\":\"Create a fixed number\",\"jqhTmw\":\"Create a list for this date\",\"PhioFp\":\"Create a new check-in list for an active session, or contact the organizer if you think this is a mistake.\",\"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\":\"Create 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\",\"eWEV9G\":\"Créer un nouveau mot de passe\",\"wl2iai\":\"Create Schedule\",\"8AiKIu\":\"Créer un billet ou un produit\",\"/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\":\"Créez votre premier événement pour commencer à vendre des billets et gérer les participants.\",\"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\":\"Currently assigned\",\"iTvh6I\":\"Actuellement disponible à l'achat\",\"A42Dqn\":\"Custom branding\",\"Guo0lU\":\"Date et heure personnalisées\",\"WDMdn8\":\"Custom questions\",\"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\",\"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\":\"Daily\",\"/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\":\"Dance\",\"pvnfJD\":\"Sombre\",\"MaB9wW\":\"Date Cancellation\",\"e6cAxJ\":\"Date cancelled\",\"81jBnC\":\"Date cancelled successfully\",\"a/C/6R\":\"Date created successfully\",\"IW7Q+u\":\"Date deleted\",\"rngCAz\":\"Date deleted successfully\",\"vHbfoQ\":\"Date reactivated\",\"hvah+S\":\"Date reopened for new sales\",\"Ez0YsD\":\"Date updated successfully\",\"Te33mU\":\"Dates are managed per occurrence\",\"91zCxb\":\"Dates with sessions\",\"/ITcnz\":\"day\",\"H7OUPr\":\"Day\",\"JtHrX9\":\"Day of Month\",\"J/Upwb\":\"days\",\"vDVA2I\":\"Days of Month\",\"rDLvlL\":\"Days of Week\",\"r6zgGo\":\"December\",\"jbq7j2\":\"Refuser\",\"ovBPCi\":\"Par défaut\",\"JtI4vj\":\"Collecte d'informations par défaut sur les participants\",\"ULjv90\":\"Default capacity per date\",\"3R/Tu2\":\"Gestion des frais par défaut\",\"1bZAZA\":\"Le modèle par défaut sera utilisé\",\"HNlEFZ\":\"supprimer\",\"KpnwJK\":[\"Supprimer \\\"\",[\"0\"],\"\\\" ?\"],\"BlII4o\":[\"Delete \",[\"count\"],\" selected date(s)? Dates with orders will be skipped. This cannot be undone.\"],\"vu7gDm\":\"Supprimer l'affilié\",\"KZN4Lc\":\"Tout supprimer\",\"6EkaOO\":\"Delete Date\",\"io0G93\":\"Supprimer l'événement\",\"+jw/c1\":\"Supprimer l'image\",\"hdyeZ0\":\"Supprimer le travail\",\"xxjZeP\":\"Supprimer l'emplacement\",\"sY3tIw\":\"Supprimer l'organisateur\",\"UBv8UK\":\"Delete Permanently\",\"dPyJ15\":\"Supprimer le modèle\",\"IQTR34\":\"Delete this category? Any products in it will also be deleted. This cannot be undone.\",\"/1wMxk\":\"Delete this product? This cannot be undone.\",\"mxsm1o\":\"Supprimer cette question ? Cette action est irréversible.\",\"snMaH4\":\"Supprimer le webhook\",\"LIZZLY\":[\"Deleted \",[\"0\"],\" date(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\":\"Different location\",\"E/QGRL\":\"Disabled\",\"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.\",\"HtaSQp\":\"Affiche le nombre de places restantes pour chaque date dans le widget de billetterie. Vous pouvez modifier ce paramètre pour chaque date.\",\"pfa8F0\":\"Nom d'affichage\",\"Kdpf90\":\"N'oubliez pas !\",\"352VU2\":\"Vous n'avez pas de compte ? <0>Inscrivez-vous\",\"AXXqG+\":\"Don\",\"DPfwMq\":\"Terminé\",\"JoPiZ2\":\"Door staff instructions\",\"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.\\nCeci afin de garantir que tous les organisateurs d'événements sont vérifiés et responsables.\",\"euc6Ns\":\"Dupliquer\",\"YueC+F\":\"Duplicate Date\",\"KRmTkx\":\"Dupliquer le produit\",\"Jd3ymG\":\"Duration must be at least 1 minute.\",\"KIjvtr\":\"Néerlandais\",\"22xieU\":\"ex. 180 (3 heures)\",\"/zajIE\":\"e.g. Morning Session\",\"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.\",\"Xfsjel\":\"Chaque produit\",\"5oD9f/\":\"Earlier\",\"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\":\"Edit Date\",\"m0ZqOT\":\"Modifier l'emplacement\",\"8oivFT\":\"Modifier l'emplacement\",\"vRWOrM\":\"Modifier les détails de la commande\",\"fW5sSv\":\"Modifier le webhook\",\"nP7CdQ\":\"Modifier le webhook\",\"MRZxAn\":\"Edited\",\"uBAxNB\":\"Éditeur\",\"aqxYLv\":\"Éducation\",\"iiWXDL\":\"Échecs d'éligibilité\",\"zPiC+q\":\"Listes d'Enregistrement Éligibles\",\"SiVstt\":\"Email & scheduled messages\",\"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\":\"Embeddable widget\",\"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\":\"End\",\"sGjBEq\":\"Date et heure de fin (optionnel)\",\"PKXt9R\":\"La date de fin doit être postérieure à la date de début\",\"ZayGC7\":\"End on a date\",\"48Y16Q\":\"Heure de fin (facultatif)\",\"TbaYrr\":[\"Ended \",[\"0\"]],\"CFgwiw\":[\"Ends \",[\"0\"]],\"SqOIQU\":\"Enter a capacity value or choose unlimited.\",\"h37gRz\":\"Enter a label or choose to remove it.\",\"7YZofi\":\"Entrez un sujet et un corps pour voir l'aperçu\",\"khyScF\":\"Enter a time to shift by.\",\"SKx/0u\":\"Saisissez un nom de lieu ou une adresse\",\"ppwojw\":\"Saisissez un nom de lieu ou une adresse pour les événements en présentiel\",\"j+eCIq\":\"Saisir l'adresse manuellement\",\"3bR1r4\":\"Saisir l'e-mail de l'affilié (facultatif)\",\"ARkzso\":\"Saisir le nom de l'affilié\",\"ej4L8b\":\"Enter capacity\",\"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)\",\"RRlWVA\":\"Commande entière\",\"o21Y+P\":\"entries\",\"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\",\"+v+GW0\":\"Affichage de la date de l'événement\",\"7u9/DO\":\"Événement supprimé avec succès\",\"imgKgl\":\"Description de l'événement\",\"IzR/Fc\":\"Event lifetime\",\"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\",\"mImacG\":\"Page de l'événement\",\"Hk9Ki/\":\"Événement restauré avec succès\",\"JyD0LH\":\"Paramètres de l'événement\",\"XVLu2v\":\"Titre de l'événement\",\"OfmsI9\":\"Événement trop récent\",\"4SILkp\":\"Event totals\",\"YDVUVl\":\"Types d'événements\",\"+HeiVx\":\"Événement mis à jour\",\"19j6uh\":\"Performance des événements\",\"PC3/fk\":\"Événements commençant dans les prochaines 24 heures\",\"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\":\"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'assignation de la configuration\",\"PO0cfn\":\"Failed to cancel date\",\"YUX+f+\":\"Failed to cancel 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\":\"Failed to create schedule\",\"U66oUa\":\"Échec de la création du modèle\",\"aFk48v\":\"Échec de la suppression de la configuration\",\"n1CYMH\":\"Failed to delete date\",\"KXv+Qn\":\"Failed to delete date. It may have existing orders.\",\"JJ0uRo\":\"Failed to delete 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\",\"5E23qd\":\"Failed to delete product. Please try again.\",\"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\":\"Failed to reactivate date\",\"7zyx8a\":\"Échec de la suppression de la liste d'attente\",\"A/P7PX\":\"Failed to remove override\",\"ogWc1z\":\"Failed to reopen 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\":\"Failed to save override\",\"sj/eZA\":\"Failed to save price override\",\"780n8A\":\"Failed to save product settings\",\"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 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\":\"Family\",\"5LO38w\":\"Fast payouts to your bank\",\"4lgLew\":\"February\",\"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\":\"Film\",\"L1qbUx\":\"Filter attendees\",\"8OvVZZ\":\"Filtrer les Participants\",\"N/H3++\":\"Filter by date\",\"mvrlBO\":\"Filtrer par événement\",\"g+xRXP\":\"Finish setting up Stripe\",\"LHH461\":\"Finish setup\",\"syyeb9\":\"First\",\"Vj6wk9\":\"First 30 days\",\"/bpZYb\":\"First 7 days\",\"ziEnjY\":\"First 90 days\",\"1vBhpG\":\"Premier participant\",\"4pwejF\":\"Le prénom est obligatoire\",\"rVogsf\":\"Corrigez les problèmes pour publier\",\"3lkYdQ\":\"Fixed fee\",\"6bBh3/\":\"Frais fixes\",\"zWqUyJ\":\"Frais fixes facturés par transaction\",\"LWL3Bs\":\"Les frais fixes doivent être égaux ou supérieurs à 0\",\"0RI8m4\":\"Flash off\",\"q0923e\":\"Flash on\",\"X+U6/w\":\"Police de caractères\",\"lWxAUo\":\"Nourriture et boissons\",\"nFm+5u\":\"Texte de Pied de Page\",\"a8nooQ\":\"Fourth\",\"wtuVU4\":\"Frequency\",\"xVhQZV\":\"Fri\",\"39y5bn\":\"Friday\",\"f5UbZ0\":\"Full data ownership\",\"cfvx/y\":\"Full event\",\"MY2SVM\":\"Remboursement complet\",\"PGQLdy\":\"future\",\"8N/j1s\":\"Future dates only\",\"yRx/6K\":\"Future dates will be copied with capacity reset to zero\",\"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\":\"Get Paid\",\"lGYzP6\":\"Get paid with Stripe\",\"ZDIydz\":\"Commencer\",\"u6FPxT\":\"Obtenir des billets\",\"8KDgYV\":\"Préparez votre événement\",\"RkXlPZ\":\"GitHub\",\"sr0UJD\":\"Go Back\",\"oNL5vN\":\"Aller à la page de l'événement\",\"gHSuV/\":\"Aller à la page d'accueil\",\"8+Cj55\":\"Go to Schedule\",\"6nDzTl\":\"Bonne lisibilité\",\"76gPWk\":\"Got it\",\"CZXzs4\":\"Grec\",\"aGWZUr\":\"Revenu brut\",\"n8IUs7\":\"Revenu brut\",\"O1wAlQ\":\"Guest\",\"LIYoRQ\":\"Gestion des invités\",\"NUsTc4\":\"Happening now\",\"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\":\"Hi,\",\"/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\":\"Hide details\",\"FmogyU\":\"Masquer les options\",\"uXNYjR\":\"Masquer les dates et horaires complets\",\"g9RcYX\":\"Masquer la date\",\"uMwTx7\":\"Masquer cette catégorie ?\",\"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\":\"Hobbies\",\"yY8wAv\":\"Hours\",\"49Tkiw\":\"Comment la réduction est-elle appliquée ?\",\"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\":\"How long does the schedule run?\",\"DMr2XN\":\"How often?\",\"cceMns\":\"How VAT is applied to the platform fees we charge you.\",\"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\",\"CY3yHL\":\"Si coché, cette catégorie sera masquée au public.\",\"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\":[\"in last \",[\"0\"],\" min\"],\"u7r0G5\":\"In person — set a venue\",\"/LCAwL\":\"En cours\",\"F1Xp97\":\"Participants individuels\",\"85e6zs\":\"Insérer un jeton Liquid\",\"CTWsuc\":\"Instagram\",\"VopR6B\":\"Instant Stripe payouts\",\"nbfdhU\":\"Intégrations\",\"I8eJ6/\":\"Internal notes on the attendee's ticket\",\"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\",\"Dn4OyV\":\"Invité\",\"IuMGvq\":\"Facture\",\"a/bUcL\":\"It happens on more than one date\",\"d+Oe9r\":\"It may have been unpublished or removed. Please check the link and try again.\",\"Lj7sBL\":\"Italien\",\"F5/CBH\":\"article(s)\",\"BzfzPK\":\"Articles\",\"rjyWPb\":\"January\",\"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\":\"July\",\"zeEQd/\":\"June\",\"MxjCqk\":\"Vous cherchez vos billets ?\",\"xOTzt5\":\"just now\",\"0RihU9\":\"Just wrapped\",\"lB2hSG\":[\"Me tenir informé des actualités et événements de \",[\"0\"]],\"ioFA9i\":\"Keep the profit.\",\"o66QSP\":\"label updates\",\"RtKKbA\":\"Last\",\"DruLRc\":\"14 derniers jours\",\"ve9JTU\":\"Le nom est obligatoire\",\"h0Q9Iw\":\"Dernière réponse\",\"gw3Ur5\":\"Dernier déclenchement\",\"FIq1Ba\":\"Later\",\"xvnLMP\":\"Latest check-ins\",\"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\":\"Clair\",\"1qY5Ue\":\"Lien expiré ou invalide\",\"gggTBm\":\"LinkedIn\",\"nvOPBA\":\"Liens autorisés\",\"2BBAbc\":\"List\",\"dF6vP6\":\"En ligne\",\"fpMs2Z\":\"EN DIRECT\",\"D9zTjx\":\"Événements en Direct\",\"C33p4q\":\"Loaded dates\",\"WdmJIX\":\"Chargement de l'aperçu...\",\"IoDI2o\":\"Chargement des jetons...\",\"G3Ge9Z\":\"Chargement des journaux webhook...\",\"NFxlHW\":\"Chargement des webhooks\",\"E0DoRM\":\"Emplacement supprimé\",\"7w8lJU\":\"Emplacement enregistré\",\"YsRXDD\":\"Emplacement mis à jour\",\"A/kIva\":\"location updates\",\"iyZPPR\":\"emplacements\",\"VppBoU\":\"Emplacements\",\"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\",\"PSRm6/\":\"Rechercher mes billets\",\"yJFu/X\":\"Bureau principal\",\"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\":\"Gérez la liste d'attente de votre événement, consultez les statistiques et offrez des billets aux participants.\",\"g2npA5\":\"Offre manuelle\",\"hg6l4j\":\"March\",\"pqRBOz\":\"Mark as validated (admin override)\",\"2L3vle\":\"Max messages / 24h\",\"Qp4HWD\":\"Max destinataires / message\",\"3JzsDb\":\"May\",\"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\",\"zz/Wd/\":\"Mode\",\"fpMgHS\":\"Mon\",\"hty0d5\":\"Monday\",\"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\":\"month\",\"HajiZl\":\"Mois\",\"+8Nek/\":\"Monthly\",\"1LkxnU\":\"Monthly Pattern\",\"6jefe3\":\"months\",\"f8jrkd\":\"more\",\"JcD7qf\":\"More actions\",\"w36OkR\":\"Événements les plus vus (14 derniers jours)\",\"+Y/na7\":\"Move all dates earlier or later\",\"3DIpY0\":\"Multiple locations\",\"g9cQCP\":\"Multiple ticket types\",\"GfaxEk\":\"Musique\",\"oVGCGh\":\"Mes Billets\",\"8/brI5\":\"Le nom est obligatoire\",\"sFFArG\":\"Le nom doit comporter moins de 255 caractères\",\"xxU3NX\":\"Revenu net\",\"7I8LlL\":\"New capacity\",\"n1GRql\":\"New label\",\"y0Fcpd\":\"Nouvel emplacement\",\"ArHT/C\":\"Nouvelles inscriptions\",\"uK7xWf\":\"New time:\",\"veT5Br\":\"Next occurrence\",\"WXtl5X\":[\"Next: \",[\"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\":\"No attendees to show\",\"PKySlW\":\"No attendees yet for this date.\",\"/UC6qk\":\"Aucune donnée d'attribution trouvée\",\"E2vYsO\":\"No capabilities reported by Stripe yet.\",\"amMkpL\":\"Aucune capacité\",\"d2Jf1f\":\"No change\",\"99ntUF\":\"Aucune liste d'enregistrement disponible pour cet événement.\",\"wG+knX\":\"No check-ins yet\",\"+dAKxg\":\"Aucune configuration trouvée\",\"LiLk8u\":\"No connections available\",\"eb47T5\":\"Aucune donnée trouvée pour les filtres sélectionnés. Essayez d'ajuster la plage de dates ou la devise.\",\"Zc216S\":\"No date added\",\"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\",\"OtJSnL\":\"Aucune date planifiée\",\"gEdNe8\":\"No dates scheduled yet\",\"pZNOT9\":\"Pas de date de fin\",\"dW40Uz\":\"Aucun événement trouvé\",\"8pQ3NJ\":\"Aucun événement ne commence dans les prochaines 24 heures\",\"8zCZQf\":\"Aucun événement pour le moment\",\"Yc5YW6\":\"Aucun travail échoué\",\"EpvBAp\":\"Pas de facture\",\"XZkeaI\":\"Aucun journal trouvé\",\"IcAC6J\":\"Aucune police correspondante\",\"nrSs2u\":\"Aucun message trouvé\",\"Rj99yx\":\"No occurrences available\",\"IFU1IG\":\"No occurrences on this date\",\"OVFwlg\":\"Pas encore de questions de commande\",\"EJ7bVz\":\"Aucune commande trouvée\",\"NEmyqy\":\"Aucune commande pour le moment\",\"a77B6w\":\"No orders yet for this date.\",\"wUv5xQ\":\"Aucune activité d'organisateur au cours des 14 derniers jours\",\"vLd1tV\":\"No organizer context available.\",\"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\":\"No products configured for this event.\",\"kY7XDn\":\"Aucun produit n'a d'entrées en liste d'attente\",\"8mw4tm\":\"Message d'absence de produits\",\"wYiAtV\":\"Aucune inscription récente\",\"UW90md\":\"Aucun destinataire trouvé\",\"QoAi8D\":\"Aucune réponse\",\"JeO7SI\":\"Pas de réponse\",\"EK/G11\":\"Aucune réponse pour le moment\",\"59OWd3\":\"Aucun emplacement enregistré\",\"mPdY6W\":\"Aucune suggestion\",\"3sRuiW\":\"Aucun billet trouvé\",\"debCrL\":\"Aucun billet à vendre\",\"k2C0ZR\":\"No upcoming dates\",\"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-edited\",\"Itw24Q\":\"Not checked in\",\"x5+Lcz\":\"Non Enregistré\",\"8n10sz\":\"Non Éligible\",\"kLvU3F\":\"Notify attendees and stop sales\",\"t9QlBd\":\"November\",\"kAREMN\":\"Number of dates to create\",\"6u1B3O\":\"Occurrence\",\"mmoE62\":\"Occurrence Cancelled\",\"V9flmL\":\"Occurrence Schedule\",\"Kh3WO8\":\"Occurrence Summary\",\"byXCTu\":\"Occurrences\",\"KATw3p\":\"Occurrences (future only)\",\"85rTR2\":\"Occurrences can be configured after creation\",\"dzQfDY\":\"October\",\"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.\"],\"6Aih4U\":\"Hors ligne\",\"nO3VbP\":[\"En vente \",[\"0\"]],\"oXOSPE\":\"En ligne\",\"aqmy5k\":\"Online — provide connection details\",\"LuZBbx\":\"Online & in-person\",\"IXuOqt\":\"Online & in-person — see schedule\",\"WjSpu5\":\"Événement en ligne\",\"scPxI/\":[\"Plus que \",[\"capacity\"],\" restantes\"],\"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\",\"wkpaqp\":\"Afficher uniquement la date et l'heure de début\",\"DMk8F0\":\"Only tickets count toward capacity\",\"M2w1ni\":\"Visible uniquement avec un code promo\",\"y8Bm7C\":\"Open check-in\",\"RLz7P+\":\"Open occurrence\",\"cDSdPb\":\"Surnom facultatif affiché dans les sélecteurs, p. ex. \\\"Salle de conférence\\\"\",\"HXMJxH\":\"Texte optionnel pour les avertissements, informations de contact ou notes de remerciement (une seule ligne)\",\"L565X2\":\"options\",\"8m9emP\":\"or add a single date\",\"eBskDE\":\"Ou activez les paiements hors ligne et désactivez Stripe\",\"dSeVIm\":\"order\",\"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\",\"xtQzag\":\"Order details\",\"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\",\"RQCXz6\":\"Limites de commande\",\"SO9AEF\":\"Limites de commande définies\",\"vu6Arl\":\"Commande marquée comme payée\",\"sLbJQz\":\"Commande introuvable\",\"kvYpYu\":\"Commande introuvable\",\"eJ8SvM\":\"Order number, purchase date, purchaser email\",\"FaPYw+\":\"Propriétaire de la commande\",\"eB5vce\":\"Propriétaires de commandes avec un produit spécifique\",\"CxLoxM\":\"Propriétaires de commandes avec des produits\",\"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\",\"3NT0Ck\":\"La commande a été annulée\",\"V5khLm\":\"orders\",\"sd5IMt\":\"Commandes terminées\",\"5It1cQ\":\"Commandes exportées\",\"UQ0ACV\":\"Total des commandes\",\"B/EBQv\":\"Commandes:\",\"qtGTNu\":\"Comptes organiques\",\"P/JHA4\":\"Organisateur archivé avec succès\",\"S3CZ5M\":\"Tableau de bord de l'organisateur\",\"GzjTd0\":\"Organisateur supprimé avec succès\",\"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\":\"Organizers\",\"/IX/7x\":\"Autre\",\"RsiDDQ\":\"Autres Listes (Billet Non Inclus)\",\"aDfajK\":\"Outdoors\",\"qMASRF\":\"Messages sortants\",\"iCOVQO\":\"Override\",\"GpFTEc\":\"Override fees on this organizer\",\"M9ZhMP\":\"Override price\",\"cnVIpl\":\"Override removed\",\"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\":\"Past due\",\"xTPjSy\":\"Événements passés\",\"/l/ckQ\":\"Coller l’URL\",\"URAE3q\":\"En pause\",\"4fL/V7\":\"Payer\",\"c2/9VE\":\"Charge utile\",\"5cxUwd\":\"Date de paiement\",\"ENEPLY\":\"Mode de paiement\",\"8Lx2X7\":\"Paiement reçu\",\"fx8BTd\":\"Paiements non disponibles\",\"C+ylwF\":\"Payouts\",\"UbRKMZ\":\"Pending\",\"UkM20g\":\"En attente de révision\",\"dPYu1F\":\"Par participant\",\"mQV/nJ\":\"per min\",\"+kvxv+\":\"par commande\",\"VlXNyK\":\"Par commande\",\"NhuGd7\":\"par produit\",\"hauDFf\":\"Par billet\",\"mnF83a\":\"Frais en pourcentage\",\"TNLuRD\":\"Percentage fee (%)\",\"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\":\"Permanently remove this date\",\"6kPk3+\":\"Informations personnelles\",\"zmwvG2\":\"Téléphone\",\"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\":\"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\":\"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\":\"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\":\"Please select a date and time\",\"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\",\"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\",\"Jm2AC3\":\"Price Tier\",\"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\":\"Product settings cannot be edited for cancelled dates.\",\"2339ej\":\"Product settings saved successfully\",\"ldVIlB\":\"Produit mis à jour\",\"CP3D8G\":\"Progress\",\"JoKGiJ\":\"Code promo\",\"k3wH7i\":\"Utilisation des codes promo et détail des réductions\",\"tZqL0q\":\"promo codes\",\"oCHiz3\":\"Promo codes\",\"uEhdRh\":\"Promo seulement\",\"dLm8V5\":\"Les e-mails promotionnels peuvent entraîner la suspension du compte\",\"W0ETyY\":\"Renseignez au moins un champ d'adresse (lieu, rue, ville ou pays).\",\"2W/7Gz\":\"Provide the following before Stripe's next review to keep payouts flowing.\",\"EEYbdt\":\"Publier\",\"JcgJKc\":\"Publier quand même\",\"evDBV8\":\"Publier l'événement\",\"2zEfOd\":\"Publish your event\",\"L7nrC8\":\"La publication rend votre page d'événement publique et ouvre les inscriptions.\",\"dsFmM+\":\"Acheté\",\"JunetL\":\"Purchaser\",\"phmeUH\":\"Purchaser email\",\"ywR4ZL\":\"QR code check-in\",\"oWXNE5\":\"Qté\",\"biEyJ4\":\"Question answers\",\"k/bJj0\":\"Questions réorganisées\",\"b24kPi\":\"File d'attente\",\"lTPqpM\":\"Quick Tip\",\"fqDzSu\":\"Taux\",\"mnUGVC\":\"Limite de débit dépassée. Veuillez réessayer plus tard.\",\"t41hVI\":\"Réoffrir une place\",\"TNclgc\":\"Reactivate this date? It will be reopened for future sales.\",\"RENQ6j\":\"Prêt à passer en ligne ?\",\"uqoRbb\":\"Real-time analytics\",\"xzRvs4\":[\"Recevoir les mises à jour produits de \",[\"0\"],\".\"],\"pLXbi8\":\"Inscriptions récentes\",\"M1HGuR\":\"Recent activity\",\"3kJ0gv\":\"Recent Attendees\",\"qhfiwV\":\"Recent check-ins\",\"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\",\"WEYdDv\":\"Recommended\",\"wuhHPE\":\"Recurring\",\"asLqwt\":\"Événement récurrent\",\"s3uzsK\":\"Paramètres de l'événement récurrent\",\"D0tAMe\":\"Recurring events\",\"JjMIKU\":\"Reddit\",\"HiGkFu\":\"Redirection vers Stripe...\",\"pnoTN5\":\"Comptes de parrainage\",\"ACKu03\":\"Actualiser l'aperçu\",\"vuFYA6\":\"Refund all orders for these dates\",\"4cRUK3\":\"Refund all orders for this date\",\"fKn/k6\":\"Montant du remboursement\",\"qY4rpA\":\"Remboursement échoué\",\"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\":\"Remaining\",\"Bjh87R\":\"Remove label from all dates\",\"IVZaEo\":\"Supprime entièrement les dates et horaires complets de la page de l'événement. Lorsque cette option est désactivée, ils restent visibles et sont indiqués comme complets.\",\"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\":\"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\":\"Reset to base price\",\"kCn6wb\":\"Réinitialisation...\",\"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\":\"results\",\"6gRgw8\":\"Réessayer\",\"1BG8ga\":\"Tout réessayer\",\"rDC+T6\":\"Réessayer le travail\",\"CbnrWb\":\"Retour à l'événement\",\"Lf7TCn\":\"Les lieux réutilisables apparaissent ici automatiquement lorsque vous créez des événements avec des adresses, et vous pouvez ajouter les vôtres.\",\"mdQ0zb\":\"Des lieux réutilisables pour vos événements. Les emplacements créés via l'autocomplétion sont enregistrés ici automatiquement.\",\"XFOPle\":\"Reuse\",\"1Zehp4\":\"Reuse a Stripe connection from another organizer in this account.\",\"Oo/PLb\":\"Résumé des revenus\",\"CfuueU\":\"Révoquer l'offre\",\"RIgKv+\":\"Run until a specific date\",\"dFFW9L\":[\"Vente terminée \",[\"0\"]],\"loCKGB\":[\"Vente se termine \",[\"0\"]],\"wlfBad\":\"Période de vente\",\"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\":\"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\":\"Sales, attendance, and check-in breakdown per occurrence\",\"3VnlS9\":\"Ventes, commandes et indicateurs de performance pour tous les événements\",\"3Q1AWe\":\"Ventes:\",\"LeuERW\":\"Same as event\",\"B4nE3N\":\"Prix du billet exemple\",\"8BRPoH\":\"Lieu Exemple\",\"PiK6Ld\":\"Sat\",\"+5kO8P\":\"Saturday\",\"zJiuDn\":\"Save fee override\",\"NB8Uxt\":\"Save Schedule\",\"KZrfYJ\":\"Enregistrer les liens sociaux\",\"9Y3hAT\":\"Sauvegarder le modèle\",\"C8ne4X\":\"Enregistrer le Design du Billet\",\"cTI8IK\":\"Save VAT settings\",\"6/TNCd\":\"Enregistrer les paramètres TVA\",\"4RvD9q\":\"Emplacement enregistré\",\"cgw0cL\":\"Emplacements enregistrés\",\"Fbqm/I\":\"Saving an override creates a dedicated configuration for this organizer if it's currently on the system default.\",\"I+FvbD\":\"Scanner\",\"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\":\"Programmer pour plus tard\",\"NAzVVw\":\"Programmer le message\",\"Fz09JP\":\"Schedule starts on\",\"4ba0NE\":\"Planifié\",\"qcP/8K\":\"Heure programmée\",\"A1taO8\":\"Search\",\"ftNXma\":\"Rechercher des affiliés...\",\"VMU+zM\":\"Search attendees\",\"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...\",\"YnMfsK\":\"Rechercher par nom ou adresse...\",\"VT+urE\":\"Rechercher par nom ou e-mail...\",\"GHdjuo\":\"Rechercher par nom, e-mail ou compte...\",\"4mBFO7\":\"Search by name, order #, ticket # or email\",\"20ce0U\":\"Rechercher par ID de commande, nom du client ou e-mail...\",\"4DSz7Z\":\"Rechercher par sujet, événement ou compte...\",\"nQC7Z9\":\"Search dates...\",\"iRtEpV\":\"Search dates…\",\"JRM7ao\":\"Search for an address\",\"BWF1kC\":\"Rechercher des messages...\",\"5WYZKZ\":\"Résultats de recherche\",\"IG85fV\":\"Recherchez des emplacements enregistrés ou trouvez une adresse...\",\"3aD3GF\":\"Seasonal\",\"ku//5b\":\"Second\",\"Mck5ht\":\"Paiement sécurisé\",\"s7tXqF\":\"See schedule\",\"JFap6u\":\"See what Stripe still needs\",\"p7xUrt\":\"Sélectionner une catégorie\",\"hTKQwS\":\"Select a Date & Time\",\"Ps6Xtf\":\"Select a date to see available times\",\"e4L7bF\":\"Sélectionnez un message pour voir son contenu\",\"zPRPMf\":\"Sélectionner un niveau\",\"BFRSTT\":\"Sélectionner un compte\",\"wgNoIs\":\"Select all\",\"mCB6Je\":\"Tout sélectionner\",\"aCEysm\":[\"Select all on \",[\"0\"]],\"a6+167\":\"Sélectionner un événement\",\"CFbaPk\":\"Sélectionner un groupe de participants\",\"88a49s\":\"Select camera\",\"tVW/yo\":\"Sélectionner la devise\",\"SJQM1I\":\"Select 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\":\"Select occurrence\",\"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\":\"selected\",\"ylXj1N\":\"Sélectionné\",\"uq3CXQ\":\"Sell out your event.\",\"oBXbO4\":\"Selling a physical product? Cap its quantity on the <0>products page instead.\",\"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\":\"Send to all occurrences, or choose a specific one\",\"QEQlnV\":\"Envoyez votre premier message\",\"IoAuJG\":\"Envoi...\",\"h69WC6\":\"Envoyé\",\"BVu2Hz\":\"Envoyé par\",\"ZFa8wv\":\"Sent to attendees when a scheduled date is cancelled\",\"SPdzrs\":\"Envoyé aux clients lorsqu'ils passent une commande\",\"LxSN5F\":\"Envoyé à chaque participant avec les détails de son billet\",\"hgvbYY\":\"September\",\"5sN96e\":\"Session cancelled\",\"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\":\"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\":\"Configurez des listes d'enregistrement pour différentes entrées, sessions ou jours.\",\"TaWVGe\":\"Set up payouts\",\"JA//e6\":\"Set up schedule\",\"gzXY7l\":\"Set Up Schedule\",\"0Ls9qe\":\"Set up the tickets you'll sell and their prices\",\"xMO+Ao\":\"Configurer votre organisation\",\"5pEFnq\":\"Set up your schedule\",\"h/9JiC\":\"Set Up Your Schedule\",\"zRRuUD\":\"Set up your schedule in the next steps\",\"ETC76A\":\"Set, change, or remove the date's location or online details\",\"C3htzi\":\"Paramètre mis à jour\",\"Ohn74G\":\"Configuration et 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\":\"Partager le lien d'affiliation\",\"hL7sDJ\":\"Partager la page de l'organisateur\",\"jy6QDF\":\"Gestion de capacité partagée\",\"jDNHW4\":\"Shift times\",\"tPfIaW\":[\"Shifted times for \",[\"count\"],\" date(s)\"],\"WwlM8F\":\"Afficher les options avancées\",\"cMW+gm\":[\"Afficher toutes les plateformes (\",[\"0\"],\" autres avec des valeurs)\"],\"wXi9pZ\":\"Show attendee notes to non-logged-in staff\",\"4LZFir\":\"Afficher toute la plage de dates\",\"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\",\"b33PL9\":\"Afficher plus de plateformes\",\"Eut7p9\":\"Show order details to non-logged-in staff\",\"+RoWKN\":\"Show question answers to non-logged-in staff\",\"jbcx6L\":\"Show remaining capacity on event dates\",\"rXxBOx\":\"Show remaining capacity to buyers\",\"t1LIQW\":[\"Affichage de \",[\"0\"],\" sur \",[\"totalRows\"],\" enregistrements\"],\"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\":\"Inscrit\",\"5C7J+P\":\"Single Event\",\"E//btK\":\"Skip manually edited dates\",\"paESr6\":\"Slovaque\",\"9wu8nm\":\"Snapchat\",\"kIKb9e\":\"Social\",\"d0rUsW\":\"Liens sociaux\",\"j/TOB3\":\"Liens sociaux & site web\",\"s9KGXU\":\"Vendu\",\"yp+0jj\":\"sold out\",\"1hupow\":\"Épuisé, liste d'attente disponible\",\"iACSrw\":\"Some details are hidden from public access. Log in to view everything.\",\"Dia6iz\":\"Something went wrong while deleting the image. Please try again.\",\"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\":\"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\",\"StWUH4\":\"Start check-in\",\"JcQp9p\":\"Date et heure de début\",\"0m/ekX\":\"Date et heure de début\",\"izRfYP\":\"La date de début est obligatoire\",\"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/\":\"Statistiques\",\"GVUxAX\":\"Les statistiques sont basées sur la date de création du compte\",\"29Hx9U\":\"Stats\",\"5ia+r6\":\"Still needed\",\"wuV0bK\":\"Arrêter l'usurpation\",\"s/KaDb\":\"Stripe connected\",\"Bk06QI\":\"Stripe connecté\",\"akZMv8\":[\"Stripe connection copied from \",[\"0\"],\".\"],\"v0aRY1\":\"Stripe didn't return a setup link. Please try again.\",\"aKtF0O\":\"Stripe non connecté\",\"9i0++A\":\"ID de paiement Stripe\",\"R1lIMV\":\"Stripe will need a few more details soon\",\"FzcCHA\":\"Stripe will walk you through a few quick questions to finish setup.\",\"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\",\"kRWc2g\":\"Paramètres de l'événement récurrent 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\":\"Sun\",\"DBC3t5\":\"Sunday\",\"UaISq3\":\"Suédois\",\"JZTQI0\":\"Changer d'organisateur\",\"9YHrNC\":\"Par défaut du système\",\"lruQkA\":\"Tap this screen to resume scanning\",\"TJUrME\":[\"Targeting attendees across \",[\"0\"],\" selected sessions.\"],\"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\":\"Team collaboration\",\"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\":\"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\":\"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\",\"nm3Iz/\":\"Merci pour votre présence !\",\"pYwj0k\":\"Thanks,\",\"k3IitN\":\"That's a wrap\",\"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.\",\"7oksH+\":[\"La réduction est déduite de chaque produit éligible. Par ex. \",[\"currencySymbol\"],\"10 de réduction × 3 billets = \",[\"currencySymbol\"],\"30 de réduction.\"],\"sKL8k2\":\"La réduction est déduite une seule fois du total de la commande.\",\"cDHM1d\":\"L'adresse e-mail a été modifiée. Le participant recevra un nouveau billet à l'adresse e-mail mise à jour.\",\"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\":\"The first date this schedule will generate from.\",\"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.\",\"Np4eLs\":[\"The maximum is \",[\"MAX_PREVIEW\"],\" sessions. Please reduce the date range, frequency, or number of sessions per day.\"],\"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\":\"The override is recorded in the order audit log.\",\"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\",\"OVSkIF\":\"Le vif renard brun saute par-dessus le chien paresseux.\",\"z0KrIG\":\"L'heure programmée est requise\",\"EWErQh\":\"L'heure programmée doit être dans le futur\",\"UNd0OU\":[\"The session for \\\"\",[\"title\"],\"\\\" originally scheduled for \",[\"0\"],\" has been rescheduled.\"],\"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\",\"ybBP2H\":\"There are no products available for this date. Please choose another date.\",\"O7g4eR\":\"There are no upcoming dates for this event\",\"062KsE\":\"These details are shown on the attendee's ticket and order summary for this date only.\",\"5Eu+tn\":\"Ces détails ne seront affichés que si la commande est finalisée avec succès.\",\"jQjwR+\":\"These details will replace any existing location on the affected dates and show on attendee tickets.\",\"6eaLu/\":\"Ces prix s'appliquent à toutes les dates de votre planning, et les quantités des paliers limitent les ventes totales cumulées sur toutes les dates. Les dates de vente des paliers s'appliquent globalement. Vous pouvez remplacer les prix pour des dates individuelles sur la <0>page Planning des dates.\",\"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\":\"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\":\"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/\":[\"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.\",\"E9BqZw\":\"This date only\",\"RzEvf5\":\"Cet événement est terminé\",\"kc4bIA\":\"Cet événement n'a pas encore de billets ni de produits, les participants ne pourront donc pas s'inscrire.\",\"eMaNd0\":\"This event is not available\",\"YClrdK\":\"Cet événement n'est pas encore publié\",\"GL6z+k\":\"Cet événement est complet\",\"pIwDhS\":\"This event's dates and times are set on the occurrence schedule.\",\"ny5rgr\":\"This is a recurring event\",\"tc64Zz\":\"Il s'agit du nom de la catégorie qui sera affiché sur la page de l'événement.\",\"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.\",\"5DpZrC\":\"Cela limite les ventes totales cumulées sur toutes les dates de votre planning — ce n'est pas une limite par date. Pour limiter le nombre de participants par date, définissez une capacité sur la <0>page Planning des dates.\",\"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\":\"This occurrence is at capacity\",\"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é\",\"qEGn8I\":\"Cet événement récurrent n'a pas encore de dates, les participants n'ont donc rien à réserver.\",\"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.\",\"1LuJNw\":\"Ce billet n'est plus valide\",\"0Ew0uk\":\"Ce billet vient d'être scanné. Veuillez attendre avant de scanner à nouveau.\",\"FYXq7k\":[\"This will affect \",[\"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\":\"Throughput\",\"+FjWgX\":\"Thu\",\"kkDQ8m\":\"Thursday\",\"0GSPnc\":\"Design du Billet\",\"EZC/Cu\":\"Personnalisation du billet enregistrée avec succès\",\"bbslmb\":\"Personnalisation de billets\",\"1BPctx\":\"Billet pour\",\"HGuXjF\":\"Détenteurs de billets\",\"CMUt3Y\":\"Détenteurs de billets\",\"awHmAT\":\"ID du billet\",\"6czJik\":\"Logo du Billet\",\"t79rDv\":\"Billet introuvable\",\"6tmWch\":\"Billet ou produit\",\"1tfWrD\":\"Aperçu du billet pour\",\"KnjoUA\":\"Prix du billet\",\"pGZOcL\":\"Billet renvoyé avec succès\",\"o02GZM\":\"Ticket sales have ended for this event\",\"8jLPgH\":\"Type de 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\":\"Time\",\"fXf2r5\":[\"Times shown in \",[\"timezoneAbbr\"]],\"dMtLDE\":\"to\",\"/jQctM\":\"À\",\"tiI71C\":\"Pour augmenter vos limites, contactez-nous à\",\"ecUA8p\":\"Today\",\"W428WC\":\"Basculer les colonnes\",\"BRMXj0\":\"Tomorrow\",\"UBSG1X\":\"Meilleurs organisateurs (14 derniers jours)\",\"3sZ0xx\":\"Comptes Totaux\",\"SMDzqJ\":\"Total des participants\",\"orBECM\":\"Total collecté\",\"k5CU8c\":\"Total des inscriptions\",\"4B7oCp\":\"Frais total\",\"sMMlTX\":\"Total fees\",\"mlvCEl\":\"Total orders\",\"2AW/k5\":\"Quantité totale pour toutes les dates\",\"dp8BCb\":\"Total tax\",\"vb0Q0/\":\"Utilisateurs Totaux\",\"oJjplO\":\"Vues totales\",\"rBZ9pz\":\"Tours\",\"orluER\":\"Suivez la croissance et les performances des comptes par source d'attribution\",\"YwKzpH\":\"Suivi et analytique\",\"GUA0Jy\":\"Try a different search term or filter\",\"2P/OWN\":\"Try adjusting your filters to see more dates.\",\"ouM5IM\":\"Essayer un autre e-mail\",\"3DZvE7\":\"Essayer Hi.Events gratuitement\",\"vq2WxD\":\"Tue\",\"G3myU+\":\"Tuesday\",\"Kz91g/\":\"Turc\",\"GdOhw6\":\"Désactiver le son\",\"KUOhTy\":\"Activer le son\",\"dBeuY2\":\"Twitch\",\"QytzQr\":\"Tapez \\\"supprimer\\\" pour confirmer\",\"nWRfmt\":\"Typographie\",\"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\":\"Unable to load attendee details.\",\"GlnD5Y\":\"Unable to load products for this date. Please try again.\",\"17VbmV\":\"Unable to undo check-in\",\"n57zCW\":\"Comptes non attribués\",\"9uI/rE\":\"Undo\",\"Ef7StM\":\"Inconnu\",\"ZBAScj\":\"Participant inconnu\",\"MEIAzV\":\"Sans nom\",\"K6L5Mx\":\"Emplacement sans nom\",\"7yiFvZ\":\"Impayé\",\"X13xGn\":\"Non fiable\",\"gyXpQN\":\"Upcoming events\",\"Pp1sWX\":\"Mettre à jour l'affilié\",\"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\":\"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\":\"USB scanner listening\",\"dyTklH\":\"USB scanner paused\",\"OHJXlK\":\"Utilisez <0>les modèles Liquid pour personnaliser vos e-mails\",\"/rsy72\":\"Use event default\",\"0k4cdb\":\"Utiliser les détails de commande pour tous les participants. Les noms et e-mails des participants correspondront aux informations de l'acheteur.\",\"bA31T4\":\"Utiliser les informations de l'acheteur pour tous les participants\",\"PpgtnC\":\"Utiliser cette adresse\",\"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\":\"VAT number\",\"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\":\"VAT registered\",\"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\":\"VAT settings updated\",\"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\":\"VAT: not registered\",\"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\":\"View All\",\"yA/6BX\":\"View all →\",\"6CQ7/B\":\"View all capabilities\",\"YSE15b\":\"View all check-in lists\",\"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\":[\"View details for \",[\"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\":\"Waiting for scan…\",\"u0n+wz\":\"Liste d'attente\",\"3RXFtE\":\"Liste d'attente activée\",\"TwnTPy\":\"L'offre de liste d'attente a expiré\",\"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.\",\"aT/44s\":\"We couldn't copy that Stripe connection. Please try again.\",\"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.\",\"Fjj/5/\":\"We couldn't load the check-in lists. Please try again.\",\"ADsQ23\":\"We couldn't reach Stripe just now. Please try again in a moment.\",\"HJKdzP\":\"Un problème est survenu lors du chargement de cette page. Veuillez réessayer.\",\"jegrvW\":\"We partner with Stripe to send payouts straight to your bank account.\",\"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.\",\"mfM/HJ\":[\"Nous vous notifierons par e-mail si une place se libère pour \",[\"productDisplayName\"],\" le \",[\"occurrenceDate\"],\".\"],\"iy+M+c\":[\"Nous vous notifierons par e-mail si une place se libère pour \",[\"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\":\"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\":[\"We've made changes to the schedule for \\\"\",[\"title\"],\"\\\" — \",[\"description\"],\" affecting \",[\"affectedCount\"],\" session(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\":\"Webhook integrations\",\"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\":\"Wed\",\"VAcXNz\":\"Wednesday\",\"64X6l4\":\"week\",\"4XSc4l\":\"Weekly\",\"IAUiSh\":\"weeks\",\"vKLEXy\":\"Weibo\",\"9eF5oV\":\"Bon retour\",\"QDWsl9\":[\"Bienvenue sur \",[\"0\"],\", \",[\"1\"],\" 👋\"],\"LETnBR\":[\"Bienvenue sur \",[\"0\"],\", voici une liste de tous vos événements\"],\"DDbx7K\":\"Wellness\",\"ywRaYa\":\"What time?\",\"FaSXqR\":\"Quel type d'événement ?\",\"0WyYF4\":\"What unauthenticated staff can see\",\"2+ExvJ\":\"WhatsApp\",\"cxsKvw\":\"Lorsqu'un enregistrement est supprimé\",\"RPe6bE\":\"When a date is cancelled on a recurring event\",\"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 lorsque des places se libèrent.\",\"OIkHj+\":\"Lorsqu'un produit est épuisé, les clients peuvent rejoindre une liste d'attente pour être notifiés lorsque des places se libèrent. Les clients rejoignent la liste d'attente pour une date spécifique et les offres sont faites par date.\",\"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\":\"Lorsque les clients achètent des billets, leurs commandes apparaîtront ici.\",\"pm9tpn\":\"Lorsque cette option est activée, les acheteurs peuvent copier leur nom et leur e-mail vers tous les participants en une seule fois. Désactivez-la pour supprimer l'option \\\"Tous les participants\\\" ; les acheteurs pourront toujours copier leurs informations vers le premier participant, les autres devront être saisis individuellement.\",\"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.\",\"uchB0M\":\"Aperçu du widget\",\"uvIqcj\":\"Atelier\",\"EpknJA\":\"Écrivez votre message ici...\",\"nhtR6Y\":\"X (Twitter)\",\"7qI8sJ\":\"year\",\"zkWmBh\":\"Yearly\",\"+BGee5\":\"years\",\"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+\":\"You can override this for individual dates later.\",\"paWwQ0\":\"Vous pouvez toujours proposer des billets manuellement si nécessaire.\",\"jTDzpA\":\"Vous ne pouvez pas archiver le dernier organisateur actif de votre compte.\",\"D8baxD\":\"Vous avez des billets payants, mais Stripe n'est pas encore connecté, vous ne pouvez donc pas accepter de paiements.\",\"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/\":\"You need to create at least one occurrence before you can add attendees to this recurring event.\",\"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\":\"You'll be able to set up dates, schedules, and recurrence rules in the next step.\",\"zKAheG\":\"You're changing session times\",\"MNFIxz\":[\"Vous allez à \",[\"0\"],\" !\"],\"ZlLcht\":[\"Vous rejoignez la liste d'attente pour le \",[\"occurrenceDate\"],\".\"],\"qGZz0m\":\"Vous êtes sur la liste d'attente !\",\"/5HL6k\":\"Une place vous a été proposée !\",\"gbjFFH\":\"You've changed the session time\",\"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\":\"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\":\"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 d'autres places se libèrent.\",\"9Q6UKX\":\"YouTube\"}")}; \ No newline at end of file +/*eslint-disable*/module.exports={messages:JSON.parse("{\"f8qS7T\":\"'Il n'y a encore rien à afficher'\",\"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 Main Street\",\"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\":\"Are you sure you want to make this event public? This will make the event visible to the 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\":\"Attendee Notes\",\"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\":\"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\":\"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\":\"Check-in\",\"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\":\"Personnalisez votre page d'événement\",\"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\":\"Dismiss\",\"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\":\"Event URL\",\"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\":\"No attendees have been added to this order.\",\"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\":\"No product associated with this attendee.\",\"Ya1JhR\":\"Aucun produit disponible dans cette catégorie.\",\"FTfObB\":\"Pas encore de produits\",\"+Y976X\":\"Aucun code promotionnel à afficher\",\"MAavyl\":\"No questions answered by this attendee.\",\"SnlQeq\":\"No questions have been asked for this order.\",\"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 vente\",\"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\":\"Online event\",\"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\":\"Order #\",\"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\":\"Order Notes\",\"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\":\"Commandes\",\"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\":\"Propulsé 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\":\"Codes 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\\ngénérales, des 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\":\"S'inscrire\",\"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\":\"Taxe\",\"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\":\"Taxes\",\"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\":\"Total des taxes\",\"+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\":\"TVA\",\"E/9LUk\":\"nom de la place\",\"jpctdh\":\"View\",\"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\":\"(none)\",\"xYxQCZ\":[[\"0\"],\" \",[\"1\"]],\"lAOy2r\":[[\"0\"],\" \",[\"1\"],\" est déjà enregistré\"],\"3beCx0\":[[\"0\"],\" <0>checked in\"],\"S4PqS9\":[[\"0\"],\" webhooks actifs\"],\"6MIiOI\":[[\"0\"],\" restant\"],\"COnw8D\":[\"Logo \",[\"0\"]],\"xG9N0H\":[[\"0\"],\" of \",[\"1\"],\" seats are taken.\"],\"B7pZfX\":[[\"0\"],\" organisateurs\"],\"/HkCs4\":[[\"0\"],\" billets\"],\"30bTiU\":[[\"activeCount\"],\" enabled\"],\"jTs4am\":[[\"appName\"],\" logo\"],\"gbJOk9\":[[\"attendeeCount\"],\" attendees are registered for this session.\"],\"TjbIUI\":[[\"availableCount\"],\" sur \",[\"totalCount\"],\" disponibles\"],\"PSChHo\":[[\"capacity\"],\" places restantes\"],\"lzQ8/M\":[[\"checkedIn\"],\" / \",[\"total\"],\" checked in\"],\"RZ0JX3\":[[\"chipTime\"],\", complet\"],\"M4KnFs\":[[\"chipTime\"],\", Épuisé, liste d'attente disponible\"],\"SeyN12\":[[\"completedCount\"],\" of \",[\"totalCount\"],\" steps complete\"],\"f2rhaD\":[[\"diffHr\"],\"h ago\"],\"NRSLBe\":[[\"diffMin\"],\"m ago\"],\"iYfwJE\":[[\"diffSec\"],\"s ago\"],\"OJnhhX\":[[\"eventCount\"],\" événements\"],\"mhZbzw\":[[\"loadedAffectedAttendees\"],\" attendees are registered across the affected sessions.\"],\"RBuxIl\":[[\"productCount\"],\" ticket types configured\"],\"VFLd0I\":[[\"slotCount\"],\" times available\"],\"3IEF7U\":[[\"totalCount\"],\" types de billets\"],\"0cLzoF\":[[\"totalOccurrences\"],\" dates\"],\"AEGc4t\":[[\"totalOccurrences\"],\" sessions across \",[\"0\"],\" dates (\",[\"1\",\"plural\",{\"one\":[\"#\",\" session\"],\"other\":[\"#\",\" sessions\"]}],\" per day)\"],\"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.\",\"Il5Uid\":\"<0>Il s'agit de la quantité totale disponible cumulée sur toutes les dates de votre planning — ce n'est pas une limite par date. Pour limiter le nombre de participants par date, définissez une capacité sur la <1>page Planning des dates.\",\"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 attendee is registered across the affected sessions.\",\"qOyE2U\":\"1 attendee is registered for this session.\",\"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\",\"y2Jh0m\":\"1 time available\",\"cGtUz6\":\"1 semaine avant l'événement\",\"HR/cvw\":\"123 Rue Exemple\",\"dgKxZ5\":\"135+ currencies & 40+ payment methods\",\"kMU5aM\":\"Un avis d'annulation a été envoyé à\",\"o++0qa\":\"a change in duration\",\"WuWSX5\":\"A few quick steps and you're ready to start selling.\",\"RQ5kDd\":\"Un message à afficher lorsqu'il n'y a aucun produit dans cette catégorie.\",\"V53XzQ\":\"Un nouveau code de vérification a été envoyé à votre adresse e-mail\",\"sr2Je0\":\"a shift in start/end times\",\"/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\":[\"Account · \",[\"0\"],\" · \",[\"1\"]],\"vOuxvL\":\"Informations du compte\",\"EHNORh\":\"Compte introuvable\",\"bPwFdf\":\"Comptes\",\"AhwTa1\":\"Action requise : Informations TVA nécessaires\",\"APyAR/\":\"Événements actifs\",\"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\":\"Ajoutez des questions personnalisées pour collecter des informations supplémentaires lors du paiement\",\"Z/dcxc\":\"Add Date\",\"QeupRg\":\"Ajouter des dates\",\"Q219NT\":\"Add Dates\",\"yjB5VC\":\"Add dates and times for your recurring event\",\"Z8idyM\":\"Add details\",\"wpirGs\":\"Add event details\",\"VX6WUv\":\"Ajouter un emplacement\",\"GCQlV2\":\"Add multiple times if you run several sessions per day.\",\"7JF9w9\":\"Ajouter une question\",\"NLbIb6\":\"Add this attendee anyway (override capacity)\",\"6PNlRV\":\"Ajouter cet événement à votre calendrier\",\"BGD9Yt\":\"Ajouter des billets\",\"uIv4Op\":\"Ajoutez des pixels de suivi à vos pages d'événements publics 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\":\"Affiliate program\",\"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.\",\"3e31kI\":\"After your event is created, you can choose how often it repeats from the dashboard.\",\"z7GAMJ\":\"all\",\"N40H+G\":\"All\",\"7rLTkE\":\"Tous les événements archivés\",\"gKq1fa\":\"Tous les participants\",\"63gRoO\":\"All attendees of the selected sessions\",\"uWxIoH\":\"All attendees of this occurrence\",\"pMLul+\":\"Toutes les devises\",\"sgUdRZ\":\"All dates\",\"e4q4uO\":\"All 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\":\"All matching dates\",\"F1/VgK\":\"All occurrences\",\"OpWjMq\":\"All Occurrences\",\"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.\",\"VZdky1\":\"Permettre aux acheteurs de copier leurs informations vers tous les participants\",\"F3mW5G\":\"Permettre aux clients de rejoindre une liste d'attente lorsque ce produit est épuisé\",\"4CMO/q\":\"Permettre aux clients de rejoindre une liste d'attente lorsque ce produit est épuisé. Les clients rejoignent la liste d'attente pour une date spécifique.\",\"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\":\"Already in\",\"/H326L\":\"Déjà remboursé\",\"USEpOK\":\"Already use Stripe on another organizer? Reuse that connection.\",\"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.\",\"OPFdAM\":\"Une description facultative de cette catégorie à afficher sur la page de l'événement.\",\"eusccx\":\"Un message optionnel à afficher sur le produit en vedette, par ex. \\\"Se vend rapidement 🔥\\\" ou \\\"Meilleur rapport qualité-prix\\\"\",\"5GJuNp\":[\"and \",[\"0\"],\" more...\"],\"QNrkms\":\"Réponse mise à jour avec succès.\",\"+qygei\":\"Answers\",\"GK7Lnt\":\"Answers provided at checkout (e.g. meal choice)\",\"lE8PgT\":\"Any dates you've manually customized will be kept.\",\"jVoYha\":[\"appliqué — \",[\"0\"],\" de réduction sur votre commande\"],\"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\":\"Approuver le message\",\"naCW6Z\":\"April\",\"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\":[\"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\":\"Ê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/\":\"Are you sure you want to delete this date? This action cannot be undone.\",\"RiF/yT\":\"Are you sure you want to delete this image?\",\"b3+Qku\":\"Are you sure you want to delete this tax or fee? It will no longer be applied to new orders.\",\"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\":\"Are you sure you want to permanently delete this date? This cannot be undone.\",\"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 ?\",\"b7tkGp\":\"Are you sure you want to revoke this invitation?\",\"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\":\"Assign plan\",\"xdiER7\":\"Niveau attribué\",\"F2rX0R\":\"Au moins un type d'événement doit être sélectionné\",\"Z44eZS\":\"At least one product must stay available for this date. To make the date inaccessible, cancel it from the schedule instead.\",\"BCmibk\":\"Tentatives\",\"6PecK3\":\"Présence et taux d'enregistrement pour tous les événements\",\"K2tp3v\":\"attendee\",\"AJ4rvK\":\"Participant annulé\",\"qvylEK\":\"Participant créé\",\"Aspq3b\":\"Collecte des informations des participants\",\"fpb0rX\":\"Informations du participant copiées de la commande\",\"94aQMU\":\"Informations du participant\",\"KkrBiR\":\"Collecte d'informations sur les participants\",\"sjPjOg\":\"Attendee notes\",\"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\":\"attendees\",\"zLRobu\":\"attendees checked in\",\"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/\":\"August\",\"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\":\"Offrir automatiquement des billets à la prochaine personne lorsque de la capacité se libère. Si désactivé, vous pouvez traiter manuellement la liste d'attente depuis la page Liste d'attente.\",\"csDS2L\":\"Disponible\",\"Xp+ywP\":\"Disponible une fois le paiement effectué\",\"dwDH1K\":[\"Available times on \",[\"dayName\"]],\"clF06r\":\"Disponible pour remboursement\",\"NB5+UG\":\"Jetons disponibles\",\"L+wGOG\":\"Awaiting\",\"qcw2OD\":\"Awaiting pay\",\"kNmmvE\":\"Awesome Events SARL\",\"TeSaQO\":\"Retour aux comptes\",\"kYqM1A\":\"Retour à l'événement\",\"s5QRF3\":\"Retour aux messages\",\"td/bh+\":\"Retour aux rapports\",\"nsm7BA\":\"Retour à la recherche\",\"imjKVx\":\"Bank account connected\",\"D9LTCH\":\"Base Price\",\"hviJef\":\"Based on the global sale period above, not per 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\":\"Built-in fraud protection\",\"cr7kGH\":\"Bulk Edit\",\"1Fbd6n\":\"Bulk Edit Dates\",\"Eq6Tu9\":\"Bulk update failed.\",\"9N+p+g\":\"Affaires\",\"SWnN1L\":\"Business address\",\"kQekXw\":\"Business name\",\"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 responsables conjoints des données collectées. Vous êtes responsable de vous assurer que vous disposez d'une base légale pour ce traitement en vertu des lois applicables sur la protection des données (RGPD, CCPA, etc.).\",\"DFqasq\":[\"En continuant, vous acceptez les <0>Conditions d'utilisation de \",[\"0\"],\"\"],\"wVSa+U\":\"By day of month\",\"0MnNgi\":\"By day of week\",\"CetOZE\":\"By ticket type\",\"lFdbRS\":\"Contourner les frais d'application\",\"AjVXBS\":\"Calendar\",\"2VLZwd\":\"Bouton d'appel à l'action\",\"rT2cV+\":\"Camera\",\"7hYa9y\":\"Camera permission was denied. <0>Request permission again, or grant this page camera access in your browser settings.\",\"D02dD9\":\"Campagne\",\"RRPA79\":\"Can't check in\",\"OcVwAd\":[\"Cancel \",[\"count\"],\" date(s)\"],\"H4nE+E\":\"Annuler tous les produits et les remettre dans le pool\",\"Py78q9\":\"Cancel Date\",\"tOXAdc\":\"L'annulation annulera tous les participants associés à cette commande et remettra les billets dans le pool disponible.\",\"FPpqc7\":[\"Cancelling \",[\"0\"],\" date(s). This may take a moment to complete.\"],\"01sEfm\":\"Impossible de supprimer la configuration système par défaut\",\"VsM1HH\":\"Attributions de capacité\",\"9bIMVF\":\"Capacity management\",\"H7K8og\":\"Capacity must be 0 or greater\",\"nzao08\":\"capacity updates\",\"4cp9NP\":\"Capacity Used\",\"K7tIrx\":\"Catégorie\",\"DRK3Bq\":\"Category deleted successfully\",\"o+XJ9D\":\"Modifier\",\"kJkjoB\":\"Change duration\",\"J0KExZ\":\"Change the attendee limit\",\"ssospy\":\"Change time\",\"CIHJJf\":\"Modifier les paramètres de liste d'attente\",\"B5icLR\":[\"Changed duration for \",[\"count\"],\" date(s)\"],\"Kb+0BT\":\"Charges\",\"2tbLdK\":\"Charité\",\"BPWGKn\":\"Check in\",\"6uFFoY\":\"Check out\",\"FjAlwK\":[\"Check out this event: \",[\"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\":\"Check-In\",\"udRwQs\":\"Enregistrement créé\",\"F4SRy3\":\"Enregistrement supprimé\",\"as6XfO\":[\"Check-in for \",[\"0\"],\" was undone\"],\"9s/wrQ\":\"Check-in history\",\"Wwztk4\":\"Check-In List\",\"9gPPUY\":\"Liste d'Enregistrement Créée !\",\"dwjiJt\":\"Check-in list info\",\"7od0PV\":\"check-in lists\",\"f2vU9t\":\"Listes d'enregistrement\",\"XprdTn\":\"Check-in navigation\",\"5tV1in\":\"Check-in progress\",\"SHJwyq\":\"Taux d'enregistrement\",\"qCqdg6\":\"Statut d'enregistrement\",\"cKj6OE\":\"Résumé des enregistrements\",\"7B5M35\":\"Enregistrements\",\"VrmydS\":\"Checked in\",\"DM4gBB\":\"Chinois (traditionnel)\",\"p8Jvp4\":\"Choose a configuration\",\"ElShBO\":\"Choose a different action\",\"pHEhf+\":\"Choisissez une police qui correspond à votre marque. Les polices sont auto-hébergées via Bunny Fonts.\",\"Zok1Gx\":\"Choose an organizer\",\"pkk46Q\":\"Choisissez un organisateur\",\"Ag32+c\":\"Choose another date\",\"Crr3pG\":\"Choisir le calendrier\",\"Z38ZJu\":\"Choisissez comment la date de l'événement s'affiche sur le billet\",\"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\":\"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\":\"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\":\"complete\",\"bUQMpb\":\"Complete Stripe setup\",\"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 assigned\",\"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\":\"Configure which products are available for this occurrence and optionally adjust pricing.\",\"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\",\"/K4Vqr\":\"Connectez Stripe pour accepter les paiements\",\"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\":\"Les détails de connexion sont requis pour les événements en ligne\",\"jfC/xh\":\"Contact\",\"LOFgda\":[\"Contacter \",[\"0\"]],\"41BQ3k\":\"E-mail de contact\",\"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\",\"s30OcA\":\"Contrôlez l'affichage des dates et horaires sur la page de l'événement\",\"p2FRHj\":\"Contrôlez comment les frais de plateforme sont gérés pour cet événement\",\"NqfabH\":\"Control who gets in for this date\",\"fmYxZx\":\"Control who gets in, and when\",\"1JnTgU\":\"Copié d'en haut\",\"FxVG/l\":\"Copié dans le presse-papiers\",\"PiH3UR\":\"Copié !\",\"4i7smN\":\"Copy account ID\",\"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 l'emplacement\",\"vkiDx2\":\"Could not prepare the bulk update.\",\"KOavaU\":\"Impossible de récupérer les détails de l'adresse\",\"/lq4oO\":\"Could not save date\",\"mHu0az\":\"Couldn't send verification email. Please try again.\",\"QOIm+S\":\"Les totaux incluent toutes les dates à venir. Chaque personne se voit proposer une place pour la date qu'elle a choisie.\",\"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\":\"Covers every ticket\",\"zg4oSu\":[\"Créer le modèle \",[\"0\"]],\"RKKhnW\":\"Créez un widget personnalisé pour vendre des billets sur votre site.\",\"6sk7PP\":\"Create a fixed number\",\"jqhTmw\":\"Create a list for this date\",\"PhioFp\":\"Create a new check-in list for an active session, or contact the organizer if you think this is a mistake.\",\"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\":\"Create 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\",\"eWEV9G\":\"Créer un nouveau mot de passe\",\"wl2iai\":\"Create Schedule\",\"8AiKIu\":\"Créer un billet ou un produit\",\"/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\":\"Créez votre premier événement pour commencer à vendre des billets et gérer les participants.\",\"ZCSSd+\":\"Créez votre propre événement\",\"qdv10s\":[\"Création de \",[\"0\"],\" dates. Cela peut prendre un moment.\"],\"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\":\"Currently assigned\",\"iTvh6I\":\"Actuellement disponible à l'achat\",\"A42Dqn\":\"Custom branding\",\"Guo0lU\":\"Date et heure personnalisées\",\"WDMdn8\":\"Custom questions\",\"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\",\"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\":\"Daily\",\"/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\":\"Dance\",\"pvnfJD\":\"Sombre\",\"MaB9wW\":\"Date Cancellation\",\"e6cAxJ\":\"Date cancelled\",\"81jBnC\":\"Date cancelled successfully\",\"a/C/6R\":\"Date created successfully\",\"IW7Q+u\":\"Date deleted\",\"rngCAz\":\"Date deleted successfully\",\"vHbfoQ\":\"Date reactivated\",\"hvah+S\":\"Date reopened for new sales\",\"Ez0YsD\":\"Date updated successfully\",\"Te33mU\":\"Dates are managed per occurrence\",\"91zCxb\":\"Dates with sessions\",\"/ITcnz\":\"day\",\"H7OUPr\":\"Day\",\"JtHrX9\":\"Day of Month\",\"J/Upwb\":\"days\",\"vDVA2I\":\"Days of Month\",\"rDLvlL\":\"Days of Week\",\"r6zgGo\":\"December\",\"jbq7j2\":\"Refuser\",\"ovBPCi\":\"Par défaut\",\"JtI4vj\":\"Collecte d'informations par défaut sur les participants\",\"ULjv90\":\"Default capacity per date\",\"3R/Tu2\":\"Gestion des frais par défaut\",\"1bZAZA\":\"Le modèle par défaut sera utilisé\",\"HNlEFZ\":\"supprimer\",\"KpnwJK\":[\"Supprimer \\\"\",[\"0\"],\"\\\" ?\"],\"BlII4o\":[\"Delete \",[\"count\"],\" selected date(s)? Dates with orders will be skipped. This cannot be undone.\"],\"vu7gDm\":\"Supprimer l'affilié\",\"KZN4Lc\":\"Tout supprimer\",\"6EkaOO\":\"Delete Date\",\"io0G93\":\"Supprimer l'événement\",\"+jw/c1\":\"Supprimer l'image\",\"hdyeZ0\":\"Supprimer le travail\",\"xxjZeP\":\"Supprimer l'emplacement\",\"sY3tIw\":\"Supprimer l'organisateur\",\"UBv8UK\":\"Delete Permanently\",\"dPyJ15\":\"Supprimer le modèle\",\"IQTR34\":\"Delete this category? Any products in it will also be deleted. This cannot be undone.\",\"/1wMxk\":\"Delete this product? This cannot be undone.\",\"mxsm1o\":\"Supprimer cette question ? Cette action est irréversible.\",\"snMaH4\":\"Supprimer le webhook\",\"LIZZLY\":[\"Deleted \",[\"0\"],\" date(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\":\"Different location\",\"E/QGRL\":\"Disabled\",\"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.\",\"HtaSQp\":\"Affiche le nombre de places restantes pour chaque date dans le widget de billetterie. Vous pouvez modifier ce paramètre pour chaque date.\",\"pfa8F0\":\"Nom d'affichage\",\"Kdpf90\":\"N'oubliez pas !\",\"352VU2\":\"Vous n'avez pas de compte ? <0>Inscrivez-vous\",\"AXXqG+\":\"Don\",\"DPfwMq\":\"Terminé\",\"JoPiZ2\":\"Door staff instructions\",\"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.\\nCeci afin de garantir que tous les organisateurs d'événements sont vérifiés et responsables.\",\"euc6Ns\":\"Dupliquer\",\"YueC+F\":\"Duplicate Date\",\"KRmTkx\":\"Dupliquer le produit\",\"Jd3ymG\":\"Duration must be at least 1 minute.\",\"KIjvtr\":\"Néerlandais\",\"22xieU\":\"ex. 180 (3 heures)\",\"/zajIE\":\"e.g. Morning Session\",\"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.\",\"Xfsjel\":\"Chaque produit\",\"5oD9f/\":\"Earlier\",\"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\":\"Edit Date\",\"m0ZqOT\":\"Modifier l'emplacement\",\"8oivFT\":\"Modifier l'emplacement\",\"vRWOrM\":\"Modifier les détails de la commande\",\"fW5sSv\":\"Modifier le webhook\",\"nP7CdQ\":\"Modifier le webhook\",\"MRZxAn\":\"Edited\",\"uBAxNB\":\"Éditeur\",\"aqxYLv\":\"Éducation\",\"iiWXDL\":\"Échecs d'éligibilité\",\"zPiC+q\":\"Listes d'Enregistrement Éligibles\",\"SiVstt\":\"Email & scheduled messages\",\"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\":\"Embeddable widget\",\"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\":\"End\",\"sGjBEq\":\"Date et heure de fin (optionnel)\",\"PKXt9R\":\"La date de fin doit être postérieure à la date de début\",\"ZayGC7\":\"End on a date\",\"48Y16Q\":\"Heure de fin (facultatif)\",\"TbaYrr\":[\"Ended \",[\"0\"]],\"CFgwiw\":[\"Ends \",[\"0\"]],\"SqOIQU\":\"Enter a capacity value or choose unlimited.\",\"h37gRz\":\"Enter a label or choose to remove it.\",\"7YZofi\":\"Entrez un sujet et un corps pour voir l'aperçu\",\"khyScF\":\"Enter a time to shift by.\",\"SKx/0u\":\"Saisissez un nom de lieu ou une adresse\",\"ppwojw\":\"Saisissez un nom de lieu ou une adresse pour les événements en présentiel\",\"j+eCIq\":\"Saisir l'adresse manuellement\",\"3bR1r4\":\"Saisir l'e-mail de l'affilié (facultatif)\",\"ARkzso\":\"Saisir le nom de l'affilié\",\"ej4L8b\":\"Enter capacity\",\"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)\",\"RRlWVA\":\"Commande entière\",\"o21Y+P\":\"entries\",\"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\",\"+v+GW0\":\"Affichage de la date de l'événement\",\"7u9/DO\":\"Événement supprimé avec succès\",\"imgKgl\":\"Description de l'événement\",\"IzR/Fc\":\"Event lifetime\",\"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\",\"mImacG\":\"Page de l'événement\",\"Hk9Ki/\":\"Événement restauré avec succès\",\"JyD0LH\":\"Paramètres de l'événement\",\"XVLu2v\":\"Titre de l'événement\",\"OfmsI9\":\"Événement trop récent\",\"4SILkp\":\"Event totals\",\"YDVUVl\":\"Types d'événements\",\"+HeiVx\":\"Événement mis à jour\",\"19j6uh\":\"Performance des événements\",\"PC3/fk\":\"Événements commençant dans les prochaines 24 heures\",\"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\":\"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'assignation de la configuration\",\"PO0cfn\":\"Failed to cancel date\",\"YUX+f+\":\"Failed to cancel 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\":\"Failed to create schedule\",\"4yLYTb\":\"Échec de la création du calendrier. Veuillez réessayer.\",\"U66oUa\":\"Échec de la création du modèle\",\"aFk48v\":\"Échec de la suppression de la configuration\",\"n1CYMH\":\"Failed to delete date\",\"KXv+Qn\":\"Failed to delete date. It may have existing orders.\",\"JJ0uRo\":\"Failed to delete 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\",\"5E23qd\":\"Failed to delete product. Please try again.\",\"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\":\"Failed to reactivate date\",\"7zyx8a\":\"Échec de la suppression de la liste d'attente\",\"A/P7PX\":\"Failed to remove override\",\"ogWc1z\":\"Failed to reopen 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\":\"Failed to save override\",\"sj/eZA\":\"Failed to save price override\",\"780n8A\":\"Failed to save product settings\",\"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 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\":\"Family\",\"5LO38w\":\"Fast payouts to your bank\",\"4lgLew\":\"February\",\"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\":\"Film\",\"L1qbUx\":\"Filter attendees\",\"8OvVZZ\":\"Filtrer les Participants\",\"N/H3++\":\"Filter by date\",\"mvrlBO\":\"Filtrer par événement\",\"g+xRXP\":\"Finish setting up Stripe\",\"LHH461\":\"Finish setup\",\"syyeb9\":\"First\",\"Vj6wk9\":\"First 30 days\",\"/bpZYb\":\"First 7 days\",\"ziEnjY\":\"First 90 days\",\"1vBhpG\":\"Premier participant\",\"4pwejF\":\"Le prénom est obligatoire\",\"rVogsf\":\"Corrigez les problèmes pour publier\",\"3lkYdQ\":\"Fixed fee\",\"6bBh3/\":\"Frais fixes\",\"zWqUyJ\":\"Frais fixes facturés par transaction\",\"LWL3Bs\":\"Les frais fixes doivent être égaux ou supérieurs à 0\",\"0RI8m4\":\"Flash off\",\"q0923e\":\"Flash on\",\"X+U6/w\":\"Police de caractères\",\"lWxAUo\":\"Nourriture et boissons\",\"nFm+5u\":\"Texte de Pied de Page\",\"a8nooQ\":\"Fourth\",\"wtuVU4\":\"Frequency\",\"xVhQZV\":\"Fri\",\"39y5bn\":\"Friday\",\"f5UbZ0\":\"Full data ownership\",\"cfvx/y\":\"Full event\",\"MY2SVM\":\"Remboursement complet\",\"PGQLdy\":\"future\",\"8N/j1s\":\"Future dates only\",\"yRx/6K\":\"Future dates will be copied with capacity reset to zero\",\"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\":\"Get Paid\",\"lGYzP6\":\"Get paid with Stripe\",\"ZDIydz\":\"Commencer\",\"u6FPxT\":\"Obtenir des billets\",\"8KDgYV\":\"Préparez votre événement\",\"RkXlPZ\":\"GitHub\",\"sr0UJD\":\"Go Back\",\"oNL5vN\":\"Aller à la page de l'événement\",\"gHSuV/\":\"Aller à la page d'accueil\",\"8+Cj55\":\"Go to Schedule\",\"6nDzTl\":\"Bonne lisibilité\",\"76gPWk\":\"Got it\",\"CZXzs4\":\"Grec\",\"aGWZUr\":\"Revenu brut\",\"n8IUs7\":\"Revenu brut\",\"O1wAlQ\":\"Guest\",\"LIYoRQ\":\"Gestion des invités\",\"NUsTc4\":\"Happening now\",\"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\":\"Hi,\",\"/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\":\"Hide details\",\"FmogyU\":\"Masquer les options\",\"uXNYjR\":\"Masquer les dates et horaires complets\",\"g9RcYX\":\"Masquer la date\",\"uMwTx7\":\"Masquer cette catégorie ?\",\"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\":\"Hobbies\",\"yY8wAv\":\"Hours\",\"49Tkiw\":\"Comment la réduction est-elle appliquée ?\",\"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\":\"How long does the schedule run?\",\"DMr2XN\":\"How often?\",\"cceMns\":\"How VAT is applied to the platform fees we charge you.\",\"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\",\"CY3yHL\":\"Si coché, cette catégorie sera masquée au public.\",\"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\":[\"in last \",[\"0\"],\" min\"],\"u7r0G5\":\"In person — set a venue\",\"/LCAwL\":\"En cours\",\"F1Xp97\":\"Participants individuels\",\"85e6zs\":\"Insérer un jeton Liquid\",\"CTWsuc\":\"Instagram\",\"VopR6B\":\"Instant Stripe payouts\",\"nbfdhU\":\"Intégrations\",\"I8eJ6/\":\"Internal notes on the attendee's ticket\",\"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\",\"Dn4OyV\":\"Invité\",\"IuMGvq\":\"Facture\",\"a/bUcL\":\"It happens on more than one date\",\"d+Oe9r\":\"It may have been unpublished or removed. Please check the link and try again.\",\"Lj7sBL\":\"Italien\",\"F5/CBH\":\"article(s)\",\"BzfzPK\":\"Articles\",\"rjyWPb\":\"January\",\"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\":\"July\",\"zeEQd/\":\"June\",\"MxjCqk\":\"Vous cherchez vos billets ?\",\"xOTzt5\":\"just now\",\"0RihU9\":\"Just wrapped\",\"lB2hSG\":[\"Me tenir informé des actualités et événements de \",[\"0\"]],\"ioFA9i\":\"Keep the profit.\",\"o66QSP\":\"label updates\",\"RtKKbA\":\"Last\",\"DruLRc\":\"14 derniers jours\",\"ve9JTU\":\"Le nom est obligatoire\",\"h0Q9Iw\":\"Dernière réponse\",\"gw3Ur5\":\"Dernier déclenchement\",\"FIq1Ba\":\"Later\",\"xvnLMP\":\"Latest check-ins\",\"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\":\"Clair\",\"1qY5Ue\":\"Lien expiré ou invalide\",\"gggTBm\":\"LinkedIn\",\"nvOPBA\":\"Liens autorisés\",\"2BBAbc\":\"List\",\"dF6vP6\":\"En ligne\",\"fpMs2Z\":\"EN DIRECT\",\"D9zTjx\":\"Événements en Direct\",\"C33p4q\":\"Loaded dates\",\"WdmJIX\":\"Chargement de l'aperçu...\",\"IoDI2o\":\"Chargement des jetons...\",\"G3Ge9Z\":\"Chargement des journaux webhook...\",\"NFxlHW\":\"Chargement des webhooks\",\"E0DoRM\":\"Emplacement supprimé\",\"7w8lJU\":\"Emplacement enregistré\",\"YsRXDD\":\"Emplacement mis à jour\",\"A/kIva\":\"location updates\",\"iyZPPR\":\"emplacements\",\"VppBoU\":\"Emplacements\",\"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\",\"PSRm6/\":\"Rechercher mes billets\",\"yJFu/X\":\"Bureau principal\",\"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\":\"Gérez la liste d'attente de votre événement, consultez les statistiques et offrez des billets aux participants.\",\"g2npA5\":\"Offre manuelle\",\"hg6l4j\":\"March\",\"pqRBOz\":\"Mark as validated (admin override)\",\"2L3vle\":\"Max messages / 24h\",\"Qp4HWD\":\"Max destinataires / message\",\"3JzsDb\":\"May\",\"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\",\"zz/Wd/\":\"Mode\",\"fpMgHS\":\"Mon\",\"hty0d5\":\"Monday\",\"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\":\"month\",\"HajiZl\":\"Mois\",\"+8Nek/\":\"Monthly\",\"1LkxnU\":\"Monthly Pattern\",\"6jefe3\":\"months\",\"f8jrkd\":\"more\",\"JcD7qf\":\"More actions\",\"w36OkR\":\"Événements les plus vus (14 derniers jours)\",\"+Y/na7\":\"Move all dates earlier or later\",\"3DIpY0\":\"Multiple locations\",\"g9cQCP\":\"Multiple ticket types\",\"GfaxEk\":\"Musique\",\"oVGCGh\":\"Mes Billets\",\"8/brI5\":\"Le nom est obligatoire\",\"sFFArG\":\"Le nom doit comporter moins de 255 caractères\",\"xxU3NX\":\"Revenu net\",\"7I8LlL\":\"New capacity\",\"n1GRql\":\"New label\",\"y0Fcpd\":\"Nouvel emplacement\",\"ArHT/C\":\"Nouvelles inscriptions\",\"uK7xWf\":\"New time:\",\"veT5Br\":\"Next occurrence\",\"WXtl5X\":[\"Next: \",[\"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\":\"No attendees to show\",\"PKySlW\":\"No attendees yet for this date.\",\"/UC6qk\":\"Aucune donnée d'attribution trouvée\",\"E2vYsO\":\"No capabilities reported by Stripe yet.\",\"amMkpL\":\"Aucune capacité\",\"d2Jf1f\":\"No change\",\"99ntUF\":\"Aucune liste d'enregistrement disponible pour cet événement.\",\"wG+knX\":\"No check-ins yet\",\"+dAKxg\":\"Aucune configuration trouvée\",\"LiLk8u\":\"No connections available\",\"eb47T5\":\"Aucune donnée trouvée pour les filtres sélectionnés. Essayez d'ajuster la plage de dates ou la devise.\",\"Zc216S\":\"No date added\",\"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\",\"OtJSnL\":\"Aucune date planifiée\",\"gEdNe8\":\"No dates scheduled yet\",\"pZNOT9\":\"Pas de date de fin\",\"dW40Uz\":\"Aucun événement trouvé\",\"8pQ3NJ\":\"Aucun événement ne commence dans les prochaines 24 heures\",\"8zCZQf\":\"Aucun événement pour le moment\",\"Yc5YW6\":\"Aucun travail échoué\",\"EpvBAp\":\"Pas de facture\",\"XZkeaI\":\"Aucun journal trouvé\",\"IcAC6J\":\"Aucune police correspondante\",\"nrSs2u\":\"Aucun message trouvé\",\"Rj99yx\":\"No occurrences available\",\"IFU1IG\":\"No occurrences on this date\",\"OVFwlg\":\"Pas encore de questions de commande\",\"EJ7bVz\":\"Aucune commande trouvée\",\"NEmyqy\":\"Aucune commande pour le moment\",\"a77B6w\":\"No orders yet for this date.\",\"wUv5xQ\":\"Aucune activité d'organisateur au cours des 14 derniers jours\",\"vLd1tV\":\"No organizer context available.\",\"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\":\"No products configured for this event.\",\"kY7XDn\":\"Aucun produit n'a d'entrées en liste d'attente\",\"8mw4tm\":\"Message d'absence de produits\",\"wYiAtV\":\"Aucune inscription récente\",\"UW90md\":\"Aucun destinataire trouvé\",\"QoAi8D\":\"Aucune réponse\",\"JeO7SI\":\"Pas de réponse\",\"EK/G11\":\"Aucune réponse pour le moment\",\"59OWd3\":\"Aucun emplacement enregistré\",\"mPdY6W\":\"Aucune suggestion\",\"3sRuiW\":\"Aucun billet trouvé\",\"debCrL\":\"Aucun billet à vendre\",\"k2C0ZR\":\"No upcoming dates\",\"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-edited\",\"Itw24Q\":\"Not checked in\",\"x5+Lcz\":\"Non Enregistré\",\"8n10sz\":\"Non Éligible\",\"kLvU3F\":\"Notify attendees and stop sales\",\"t9QlBd\":\"November\",\"kAREMN\":\"Number of dates to create\",\"6u1B3O\":\"Occurrence\",\"mmoE62\":\"Occurrence Cancelled\",\"V9flmL\":\"Occurrence Schedule\",\"Kh3WO8\":\"Occurrence Summary\",\"byXCTu\":\"Occurrences\",\"KATw3p\":\"Occurrences (future only)\",\"85rTR2\":\"Occurrences can be configured after creation\",\"dzQfDY\":\"October\",\"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.\"],\"6Aih4U\":\"Hors ligne\",\"nO3VbP\":[\"En vente \",[\"0\"]],\"oXOSPE\":\"En ligne\",\"aqmy5k\":\"Online — provide connection details\",\"LuZBbx\":\"Online & in-person\",\"IXuOqt\":\"Online & in-person — see schedule\",\"WjSpu5\":\"Événement en ligne\",\"scPxI/\":[\"Plus que \",[\"capacity\"],\" restantes\"],\"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\",\"wkpaqp\":\"Afficher uniquement la date et l'heure de début\",\"DMk8F0\":\"Only tickets count toward capacity\",\"M2w1ni\":\"Visible uniquement avec un code promo\",\"y8Bm7C\":\"Open check-in\",\"RLz7P+\":\"Open occurrence\",\"cDSdPb\":\"Surnom facultatif affiché dans les sélecteurs, p. ex. \\\"Salle de conférence\\\"\",\"HXMJxH\":\"Texte optionnel pour les avertissements, informations de contact ou notes de remerciement (une seule ligne)\",\"L565X2\":\"options\",\"8m9emP\":\"or add a single date\",\"eBskDE\":\"Ou activez les paiements hors ligne et désactivez Stripe\",\"dSeVIm\":\"order\",\"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\",\"xtQzag\":\"Order details\",\"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\",\"RQCXz6\":\"Limites de commande\",\"SO9AEF\":\"Limites de commande définies\",\"vu6Arl\":\"Commande marquée comme payée\",\"sLbJQz\":\"Commande introuvable\",\"kvYpYu\":\"Commande introuvable\",\"eJ8SvM\":\"Order number, purchase date, purchaser email\",\"FaPYw+\":\"Propriétaire de la commande\",\"eB5vce\":\"Propriétaires de commandes avec un produit spécifique\",\"CxLoxM\":\"Propriétaires de commandes avec des produits\",\"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\",\"3NT0Ck\":\"La commande a été annulée\",\"V5khLm\":\"orders\",\"sd5IMt\":\"Commandes terminées\",\"5It1cQ\":\"Commandes exportées\",\"UQ0ACV\":\"Total des commandes\",\"B/EBQv\":\"Commandes:\",\"qtGTNu\":\"Comptes organiques\",\"P/JHA4\":\"Organisateur archivé avec succès\",\"S3CZ5M\":\"Tableau de bord de l'organisateur\",\"GzjTd0\":\"Organisateur supprimé avec succès\",\"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\":\"Organizers\",\"/IX/7x\":\"Autre\",\"RsiDDQ\":\"Autres Listes (Billet Non Inclus)\",\"aDfajK\":\"Outdoors\",\"qMASRF\":\"Messages sortants\",\"iCOVQO\":\"Override\",\"GpFTEc\":\"Override fees on this organizer\",\"M9ZhMP\":\"Override price\",\"cnVIpl\":\"Override removed\",\"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\":\"Past due\",\"xTPjSy\":\"Événements passés\",\"/l/ckQ\":\"Coller l’URL\",\"URAE3q\":\"En pause\",\"4fL/V7\":\"Payer\",\"c2/9VE\":\"Charge utile\",\"5cxUwd\":\"Date de paiement\",\"ENEPLY\":\"Mode de paiement\",\"8Lx2X7\":\"Paiement reçu\",\"fx8BTd\":\"Paiements non disponibles\",\"C+ylwF\":\"Payouts\",\"UbRKMZ\":\"Pending\",\"UkM20g\":\"En attente de révision\",\"dPYu1F\":\"Par participant\",\"mQV/nJ\":\"per min\",\"+kvxv+\":\"par commande\",\"VlXNyK\":\"Par commande\",\"NhuGd7\":\"par produit\",\"hauDFf\":\"Par billet\",\"mnF83a\":\"Frais en pourcentage\",\"TNLuRD\":\"Percentage fee (%)\",\"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\":\"Permanently remove this date\",\"6kPk3+\":\"Informations personnelles\",\"zmwvG2\":\"Téléphone\",\"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\":\"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\":\"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\":\"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\":\"Please select a date and time\",\"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\",\"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\",\"Jm2AC3\":\"Price Tier\",\"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\":\"Product settings cannot be edited for cancelled dates.\",\"2339ej\":\"Product settings saved successfully\",\"ldVIlB\":\"Produit mis à jour\",\"CP3D8G\":\"Progress\",\"JoKGiJ\":\"Code promo\",\"k3wH7i\":\"Utilisation des codes promo et détail des réductions\",\"tZqL0q\":\"promo codes\",\"oCHiz3\":\"Promo codes\",\"uEhdRh\":\"Promo seulement\",\"dLm8V5\":\"Les e-mails promotionnels peuvent entraîner la suspension du compte\",\"W0ETyY\":\"Renseignez au moins un champ d'adresse (lieu, rue, ville ou pays).\",\"2W/7Gz\":\"Provide the following before Stripe's next review to keep payouts flowing.\",\"EEYbdt\":\"Publier\",\"JcgJKc\":\"Publier quand même\",\"evDBV8\":\"Publier l'événement\",\"2zEfOd\":\"Publish your event\",\"L7nrC8\":\"La publication rend votre page d'événement publique et ouvre les inscriptions.\",\"dsFmM+\":\"Acheté\",\"JunetL\":\"Purchaser\",\"phmeUH\":\"Purchaser email\",\"ywR4ZL\":\"QR code check-in\",\"oWXNE5\":\"Qté\",\"biEyJ4\":\"Question answers\",\"k/bJj0\":\"Questions réorganisées\",\"b24kPi\":\"File d'attente\",\"lTPqpM\":\"Quick Tip\",\"fqDzSu\":\"Taux\",\"mnUGVC\":\"Limite de débit dépassée. Veuillez réessayer plus tard.\",\"t41hVI\":\"Réoffrir une place\",\"TNclgc\":\"Reactivate this date? It will be reopened for future sales.\",\"RENQ6j\":\"Prêt à passer en ligne ?\",\"uqoRbb\":\"Real-time analytics\",\"xzRvs4\":[\"Recevoir les mises à jour produits de \",[\"0\"],\".\"],\"pLXbi8\":\"Inscriptions récentes\",\"M1HGuR\":\"Recent activity\",\"3kJ0gv\":\"Recent Attendees\",\"qhfiwV\":\"Recent check-ins\",\"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\",\"WEYdDv\":\"Recommended\",\"wuhHPE\":\"Recurring\",\"asLqwt\":\"Événement récurrent\",\"s3uzsK\":\"Paramètres de l'événement récurrent\",\"D0tAMe\":\"Recurring events\",\"JjMIKU\":\"Reddit\",\"HiGkFu\":\"Redirection vers Stripe...\",\"pnoTN5\":\"Comptes de parrainage\",\"ACKu03\":\"Actualiser l'aperçu\",\"vuFYA6\":\"Refund all orders for these dates\",\"4cRUK3\":\"Refund all orders for this date\",\"fKn/k6\":\"Montant du remboursement\",\"qY4rpA\":\"Remboursement échoué\",\"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\":\"Remaining\",\"Bjh87R\":\"Remove label from all dates\",\"IVZaEo\":\"Supprime entièrement les dates et horaires complets de la page de l'événement. Lorsque cette option est désactivée, ils restent visibles et sont indiqués comme complets.\",\"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\":\"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\":\"Reset to base price\",\"kCn6wb\":\"Réinitialisation...\",\"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\":\"results\",\"6gRgw8\":\"Réessayer\",\"1BG8ga\":\"Tout réessayer\",\"rDC+T6\":\"Réessayer le travail\",\"CbnrWb\":\"Retour à l'événement\",\"Lf7TCn\":\"Les lieux réutilisables apparaissent ici automatiquement lorsque vous créez des événements avec des adresses, et vous pouvez ajouter les vôtres.\",\"mdQ0zb\":\"Des lieux réutilisables pour vos événements. Les emplacements créés via l'autocomplétion sont enregistrés ici automatiquement.\",\"XFOPle\":\"Reuse\",\"1Zehp4\":\"Reuse a Stripe connection from another organizer in this account.\",\"Oo/PLb\":\"Résumé des revenus\",\"CfuueU\":\"Révoquer l'offre\",\"RIgKv+\":\"Run until a specific date\",\"dFFW9L\":[\"Vente terminée \",[\"0\"]],\"loCKGB\":[\"Vente se termine \",[\"0\"]],\"wlfBad\":\"Période de vente\",\"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\":\"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\":\"Sales, attendance, and check-in breakdown per occurrence\",\"3VnlS9\":\"Ventes, commandes et indicateurs de performance pour tous les événements\",\"3Q1AWe\":\"Ventes:\",\"LeuERW\":\"Same as event\",\"B4nE3N\":\"Prix du billet exemple\",\"8BRPoH\":\"Lieu Exemple\",\"PiK6Ld\":\"Sat\",\"+5kO8P\":\"Saturday\",\"zJiuDn\":\"Save fee override\",\"NB8Uxt\":\"Save Schedule\",\"KZrfYJ\":\"Enregistrer les liens sociaux\",\"9Y3hAT\":\"Sauvegarder le modèle\",\"C8ne4X\":\"Enregistrer le Design du Billet\",\"cTI8IK\":\"Save VAT settings\",\"6/TNCd\":\"Enregistrer les paramètres TVA\",\"4RvD9q\":\"Emplacement enregistré\",\"cgw0cL\":\"Emplacements enregistrés\",\"Fbqm/I\":\"Saving an override creates a dedicated configuration for this organizer if it's currently on the system default.\",\"I+FvbD\":\"Scanner\",\"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\":\"Programmer pour plus tard\",\"NAzVVw\":\"Programmer le message\",\"Fz09JP\":\"Schedule starts on\",\"4ba0NE\":\"Planifié\",\"qcP/8K\":\"Heure programmée\",\"A1taO8\":\"Search\",\"ftNXma\":\"Rechercher des affiliés...\",\"VMU+zM\":\"Search attendees\",\"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...\",\"YnMfsK\":\"Rechercher par nom ou adresse...\",\"VT+urE\":\"Rechercher par nom ou e-mail...\",\"GHdjuo\":\"Rechercher par nom, e-mail ou compte...\",\"4mBFO7\":\"Search by name, order #, ticket # or email\",\"20ce0U\":\"Rechercher par ID de commande, nom du client ou e-mail...\",\"4DSz7Z\":\"Rechercher par sujet, événement ou compte...\",\"nQC7Z9\":\"Search dates...\",\"iRtEpV\":\"Search dates…\",\"JRM7ao\":\"Search for an address\",\"BWF1kC\":\"Rechercher des messages...\",\"5WYZKZ\":\"Résultats de recherche\",\"IG85fV\":\"Recherchez des emplacements enregistrés ou trouvez une adresse...\",\"3aD3GF\":\"Seasonal\",\"ku//5b\":\"Second\",\"Mck5ht\":\"Paiement sécurisé\",\"s7tXqF\":\"See schedule\",\"JFap6u\":\"See what Stripe still needs\",\"p7xUrt\":\"Sélectionner une catégorie\",\"hTKQwS\":\"Select a Date & Time\",\"Ps6Xtf\":\"Select a date to see available times\",\"e4L7bF\":\"Sélectionnez un message pour voir son contenu\",\"zPRPMf\":\"Sélectionner un niveau\",\"BFRSTT\":\"Sélectionner un compte\",\"wgNoIs\":\"Select all\",\"mCB6Je\":\"Tout sélectionner\",\"aCEysm\":[\"Select all on \",[\"0\"]],\"a6+167\":\"Sélectionner un événement\",\"CFbaPk\":\"Sélectionner un groupe de participants\",\"88a49s\":\"Select camera\",\"tVW/yo\":\"Sélectionner la devise\",\"SJQM1I\":\"Select 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\":\"Select occurrence\",\"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\":\"selected\",\"ylXj1N\":\"Sélectionné\",\"uq3CXQ\":\"Sell out your event.\",\"oBXbO4\":\"Selling a physical product? Cap its quantity on the <0>products page instead.\",\"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\":\"Send to all occurrences, or choose a specific one\",\"QEQlnV\":\"Envoyez votre premier message\",\"IoAuJG\":\"Envoi...\",\"h69WC6\":\"Envoyé\",\"BVu2Hz\":\"Envoyé par\",\"ZFa8wv\":\"Sent to attendees when a scheduled date is cancelled\",\"SPdzrs\":\"Envoyé aux clients lorsqu'ils passent une commande\",\"LxSN5F\":\"Envoyé à chaque participant avec les détails de son billet\",\"hgvbYY\":\"September\",\"5sN96e\":\"Session cancelled\",\"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\":\"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\":\"Configurez des listes d'enregistrement pour différentes entrées, sessions ou jours.\",\"TaWVGe\":\"Set up payouts\",\"JA//e6\":\"Set up schedule\",\"gzXY7l\":\"Set Up Schedule\",\"0Ls9qe\":\"Set up the tickets you'll sell and their prices\",\"xMO+Ao\":\"Configurer votre organisation\",\"5pEFnq\":\"Set up your schedule\",\"h/9JiC\":\"Set Up Your Schedule\",\"zRRuUD\":\"Set up your schedule in the next steps\",\"ETC76A\":\"Set, change, or remove the date's location or online details\",\"C3htzi\":\"Paramètre mis à jour\",\"Ohn74G\":\"Configuration et 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\":\"Partager le lien d'affiliation\",\"hL7sDJ\":\"Partager la page de l'organisateur\",\"jy6QDF\":\"Gestion de capacité partagée\",\"jDNHW4\":\"Shift times\",\"tPfIaW\":[\"Shifted times for \",[\"count\"],\" date(s)\"],\"WwlM8F\":\"Afficher les options avancées\",\"cMW+gm\":[\"Afficher toutes les plateformes (\",[\"0\"],\" autres avec des valeurs)\"],\"wXi9pZ\":\"Show attendee notes to non-logged-in staff\",\"4LZFir\":\"Afficher toute la plage de dates\",\"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\",\"b33PL9\":\"Afficher plus de plateformes\",\"Eut7p9\":\"Show order details to non-logged-in staff\",\"+RoWKN\":\"Show question answers to non-logged-in staff\",\"jbcx6L\":\"Show remaining capacity on event dates\",\"rXxBOx\":\"Show remaining capacity to buyers\",\"t1LIQW\":[\"Affichage de \",[\"0\"],\" sur \",[\"totalRows\"],\" enregistrements\"],\"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\":\"Inscrit\",\"5C7J+P\":\"Single Event\",\"E//btK\":\"Skip manually edited dates\",\"paESr6\":\"Slovaque\",\"9wu8nm\":\"Snapchat\",\"kIKb9e\":\"Social\",\"d0rUsW\":\"Liens sociaux\",\"j/TOB3\":\"Liens sociaux & site web\",\"s9KGXU\":\"Vendu\",\"yp+0jj\":\"sold out\",\"1hupow\":\"Épuisé, liste d'attente disponible\",\"iACSrw\":\"Some details are hidden from public access. Log in to view everything.\",\"Dia6iz\":\"Something went wrong while deleting the image. Please try again.\",\"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\":\"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\",\"StWUH4\":\"Start check-in\",\"JcQp9p\":\"Date et heure de début\",\"0m/ekX\":\"Date et heure de début\",\"izRfYP\":\"La date de début est obligatoire\",\"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/\":\"Statistiques\",\"GVUxAX\":\"Les statistiques sont basées sur la date de création du compte\",\"29Hx9U\":\"Stats\",\"5ia+r6\":\"Still needed\",\"wuV0bK\":\"Arrêter l'usurpation\",\"s/KaDb\":\"Stripe connected\",\"Bk06QI\":\"Stripe connecté\",\"akZMv8\":[\"Stripe connection copied from \",[\"0\"],\".\"],\"v0aRY1\":\"Stripe didn't return a setup link. Please try again.\",\"aKtF0O\":\"Stripe non connecté\",\"9i0++A\":\"ID de paiement Stripe\",\"R1lIMV\":\"Stripe will need a few more details soon\",\"FzcCHA\":\"Stripe will walk you through a few quick questions to finish setup.\",\"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\",\"kRWc2g\":\"Paramètres de l'événement récurrent 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\":\"Sun\",\"DBC3t5\":\"Sunday\",\"UaISq3\":\"Suédois\",\"JZTQI0\":\"Changer d'organisateur\",\"9YHrNC\":\"Par défaut du système\",\"lruQkA\":\"Tap this screen to resume scanning\",\"TJUrME\":[\"Targeting attendees across \",[\"0\"],\" selected sessions.\"],\"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\":\"Team collaboration\",\"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\":\"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\":\"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\",\"nm3Iz/\":\"Merci pour votre présence !\",\"pYwj0k\":\"Thanks,\",\"k3IitN\":\"That's a wrap\",\"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.\",\"7oksH+\":[\"La réduction est déduite de chaque produit éligible. Par ex. \",[\"currencySymbol\"],\"10 de réduction × 3 billets = \",[\"currencySymbol\"],\"30 de réduction.\"],\"sKL8k2\":\"La réduction est déduite une seule fois du total de la commande.\",\"cDHM1d\":\"L'adresse e-mail a été modifiée. Le participant recevra un nouveau billet à l'adresse e-mail mise à jour.\",\"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\":\"The first date this schedule will generate from.\",\"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.\",\"Np4eLs\":[\"The maximum is \",[\"MAX_PREVIEW\"],\" sessions. Please reduce the date range, frequency, or number of sessions per day.\"],\"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\":\"The override is recorded in the order audit log.\",\"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\",\"OVSkIF\":\"Le vif renard brun saute par-dessus le chien paresseux.\",\"z0KrIG\":\"L'heure programmée est requise\",\"EWErQh\":\"L'heure programmée doit être dans le futur\",\"UNd0OU\":[\"The session for \\\"\",[\"title\"],\"\\\" originally scheduled for \",[\"0\"],\" has been rescheduled.\"],\"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\",\"ybBP2H\":\"There are no products available for this date. Please choose another date.\",\"O7g4eR\":\"There are no upcoming dates for this event\",\"062KsE\":\"These details are shown on the attendee's ticket and order summary for this date only.\",\"5Eu+tn\":\"Ces détails ne seront affichés que si la commande est finalisée avec succès.\",\"jQjwR+\":\"These details will replace any existing location on the affected dates and show on attendee tickets.\",\"6eaLu/\":\"Ces prix s'appliquent à toutes les dates de votre planning, et les quantités des paliers limitent les ventes totales cumulées sur toutes les dates. Les dates de vente des paliers s'appliquent globalement. Vous pouvez remplacer les prix pour des dates individuelles sur la <0>page Planning des dates.\",\"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\":\"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\":\"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/\":[\"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.\",\"E9BqZw\":\"This date only\",\"RzEvf5\":\"Cet événement est terminé\",\"kc4bIA\":\"Cet événement n'a pas encore de billets ni de produits, les participants ne pourront donc pas s'inscrire.\",\"eMaNd0\":\"This event is not available\",\"YClrdK\":\"Cet événement n'est pas encore publié\",\"GL6z+k\":\"Cet événement est complet\",\"pIwDhS\":\"This event's dates and times are set on the occurrence schedule.\",\"ny5rgr\":\"This is a recurring event\",\"tc64Zz\":\"Il s'agit du nom de la catégorie qui sera affiché sur la page de l'événement.\",\"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.\",\"5DpZrC\":\"Cela limite les ventes totales cumulées sur toutes les dates de votre planning — ce n'est pas une limite par date. Pour limiter le nombre de participants par date, définissez une capacité sur la <0>page Planning des dates.\",\"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\":\"This occurrence is at capacity\",\"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é\",\"qEGn8I\":\"Cet événement récurrent n'a pas encore de dates, les participants n'ont donc rien à réserver.\",\"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.\",\"1LuJNw\":\"Ce billet n'est plus valide\",\"0Ew0uk\":\"Ce billet vient d'être scanné. Veuillez attendre avant de scanner à nouveau.\",\"FYXq7k\":[\"This will affect \",[\"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\":\"Throughput\",\"+FjWgX\":\"Thu\",\"kkDQ8m\":\"Thursday\",\"0GSPnc\":\"Design du Billet\",\"EZC/Cu\":\"Personnalisation du billet enregistrée avec succès\",\"bbslmb\":\"Personnalisation de billets\",\"1BPctx\":\"Billet pour\",\"HGuXjF\":\"Détenteurs de billets\",\"CMUt3Y\":\"Détenteurs de billets\",\"awHmAT\":\"ID du billet\",\"6czJik\":\"Logo du Billet\",\"t79rDv\":\"Billet introuvable\",\"6tmWch\":\"Billet ou produit\",\"1tfWrD\":\"Aperçu du billet pour\",\"KnjoUA\":\"Prix du billet\",\"pGZOcL\":\"Billet renvoyé avec succès\",\"o02GZM\":\"Ticket sales have ended for this event\",\"8jLPgH\":\"Type de 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\":\"Time\",\"fXf2r5\":[\"Times shown in \",[\"timezoneAbbr\"]],\"dMtLDE\":\"to\",\"/jQctM\":\"À\",\"tiI71C\":\"Pour augmenter vos limites, contactez-nous à\",\"ecUA8p\":\"Today\",\"W428WC\":\"Basculer les colonnes\",\"BRMXj0\":\"Tomorrow\",\"UBSG1X\":\"Meilleurs organisateurs (14 derniers jours)\",\"3sZ0xx\":\"Comptes Totaux\",\"SMDzqJ\":\"Total des participants\",\"orBECM\":\"Total collecté\",\"k5CU8c\":\"Total des inscriptions\",\"4B7oCp\":\"Frais total\",\"sMMlTX\":\"Total fees\",\"mlvCEl\":\"Total orders\",\"2AW/k5\":\"Quantité totale pour toutes les dates\",\"dp8BCb\":\"Total tax\",\"vb0Q0/\":\"Utilisateurs Totaux\",\"oJjplO\":\"Vues totales\",\"rBZ9pz\":\"Tours\",\"orluER\":\"Suivez la croissance et les performances des comptes par source d'attribution\",\"YwKzpH\":\"Suivi et analytique\",\"GUA0Jy\":\"Try a different search term or filter\",\"2P/OWN\":\"Try adjusting your filters to see more dates.\",\"ouM5IM\":\"Essayer un autre e-mail\",\"3DZvE7\":\"Essayer Hi.Events gratuitement\",\"vq2WxD\":\"Tue\",\"G3myU+\":\"Tuesday\",\"Kz91g/\":\"Turc\",\"GdOhw6\":\"Désactiver le son\",\"KUOhTy\":\"Activer le son\",\"dBeuY2\":\"Twitch\",\"QytzQr\":\"Tapez \\\"supprimer\\\" pour confirmer\",\"nWRfmt\":\"Typographie\",\"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\":\"Unable to load attendee details.\",\"GlnD5Y\":\"Unable to load products for this date. Please try again.\",\"17VbmV\":\"Unable to undo check-in\",\"n57zCW\":\"Comptes non attribués\",\"9uI/rE\":\"Undo\",\"Ef7StM\":\"Inconnu\",\"ZBAScj\":\"Participant inconnu\",\"MEIAzV\":\"Sans nom\",\"K6L5Mx\":\"Emplacement sans nom\",\"7yiFvZ\":\"Impayé\",\"X13xGn\":\"Non fiable\",\"gyXpQN\":\"Upcoming events\",\"Pp1sWX\":\"Mettre à jour l'affilié\",\"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\":\"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\":\"USB scanner listening\",\"dyTklH\":\"USB scanner paused\",\"OHJXlK\":\"Utilisez <0>les modèles Liquid pour personnaliser vos e-mails\",\"/rsy72\":\"Use event default\",\"0k4cdb\":\"Utiliser les détails de commande pour tous les participants. Les noms et e-mails des participants correspondront aux informations de l'acheteur.\",\"bA31T4\":\"Utiliser les informations de l'acheteur pour tous les participants\",\"PpgtnC\":\"Utiliser cette adresse\",\"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\":\"VAT number\",\"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\":\"VAT registered\",\"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\":\"VAT settings updated\",\"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\":\"VAT: not registered\",\"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\":\"View All\",\"yA/6BX\":\"View all →\",\"6CQ7/B\":\"View all capabilities\",\"YSE15b\":\"View all check-in lists\",\"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\":[\"View details for \",[\"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\":\"Waiting for scan…\",\"u0n+wz\":\"Liste d'attente\",\"3RXFtE\":\"Liste d'attente activée\",\"TwnTPy\":\"L'offre de liste d'attente a expiré\",\"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.\",\"aT/44s\":\"We couldn't copy that Stripe connection. Please try again.\",\"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.\",\"Fjj/5/\":\"We couldn't load the check-in lists. Please try again.\",\"ADsQ23\":\"We couldn't reach Stripe just now. Please try again in a moment.\",\"HJKdzP\":\"Un problème est survenu lors du chargement de cette page. Veuillez réessayer.\",\"jegrvW\":\"We partner with Stripe to send payouts straight to your bank account.\",\"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.\",\"mfM/HJ\":[\"Nous vous notifierons par e-mail si une place se libère pour \",[\"productDisplayName\"],\" le \",[\"occurrenceDate\"],\".\"],\"iy+M+c\":[\"Nous vous notifierons par e-mail si une place se libère pour \",[\"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\":\"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\":[\"We've made changes to the schedule for \\\"\",[\"title\"],\"\\\" — \",[\"description\"],\" affecting \",[\"affectedCount\"],\" session(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\":\"Webhook integrations\",\"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\":\"Wed\",\"VAcXNz\":\"Wednesday\",\"64X6l4\":\"week\",\"4XSc4l\":\"Weekly\",\"IAUiSh\":\"weeks\",\"vKLEXy\":\"Weibo\",\"9eF5oV\":\"Bon retour\",\"QDWsl9\":[\"Bienvenue sur \",[\"0\"],\", \",[\"1\"],\" 👋\"],\"LETnBR\":[\"Bienvenue sur \",[\"0\"],\", voici une liste de tous vos événements\"],\"DDbx7K\":\"Wellness\",\"ywRaYa\":\"What time?\",\"FaSXqR\":\"Quel type d'événement ?\",\"0WyYF4\":\"What unauthenticated staff can see\",\"2+ExvJ\":\"WhatsApp\",\"cxsKvw\":\"Lorsqu'un enregistrement est supprimé\",\"RPe6bE\":\"When a date is cancelled on a recurring event\",\"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 lorsque des places se libèrent.\",\"OIkHj+\":\"Lorsqu'un produit est épuisé, les clients peuvent rejoindre une liste d'attente pour être notifiés lorsque des places se libèrent. Les clients rejoignent la liste d'attente pour une date spécifique et les offres sont faites par date.\",\"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\":\"Lorsque les clients achètent des billets, leurs commandes apparaîtront ici.\",\"pm9tpn\":\"Lorsque cette option est activée, les acheteurs peuvent copier leur nom et leur e-mail vers tous les participants en une seule fois. Désactivez-la pour supprimer l'option \\\"Tous les participants\\\" ; les acheteurs pourront toujours copier leurs informations vers le premier participant, les autres devront être saisis individuellement.\",\"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.\",\"uchB0M\":\"Aperçu du widget\",\"uvIqcj\":\"Atelier\",\"EpknJA\":\"Écrivez votre message ici...\",\"nhtR6Y\":\"X (Twitter)\",\"7qI8sJ\":\"year\",\"zkWmBh\":\"Yearly\",\"+BGee5\":\"years\",\"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+\":\"You can override this for individual dates later.\",\"paWwQ0\":\"Vous pouvez toujours proposer des billets manuellement si nécessaire.\",\"jTDzpA\":\"Vous ne pouvez pas archiver le dernier organisateur actif de votre compte.\",\"D8baxD\":\"Vous avez des billets payants, mais Stripe n'est pas encore connecté, vous ne pouvez donc pas accepter de paiements.\",\"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/\":\"You need to create at least one occurrence before you can add attendees to this recurring event.\",\"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\":\"You'll be able to set up dates, schedules, and recurrence rules in the next step.\",\"zKAheG\":\"You're changing session times\",\"MNFIxz\":[\"Vous allez à \",[\"0\"],\" !\"],\"ZlLcht\":[\"Vous rejoignez la liste d'attente pour le \",[\"occurrenceDate\"],\".\"],\"qGZz0m\":\"Vous êtes sur la liste d'attente !\",\"/5HL6k\":\"Une place vous a été proposée !\",\"gbjFFH\":\"You've changed the session time\",\"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\":\"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\":\"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 d'autres 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 138f4d2e8e..3d5dac2d3a 100644 --- a/frontend/src/locales/fr.po +++ b/frontend/src/locales/fr.po @@ -179,11 +179,11 @@ msgstr "" msgid "{totalCount} ticket types" msgstr "{totalCount} types de billets" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:554 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:567 msgid "{totalOccurrences} dates" msgstr "" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:547 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:560 msgid "{totalOccurrences} sessions across {0} dates ({1, plural, one {# session} other {# sessions}} per day)" msgstr "" @@ -516,7 +516,7 @@ msgstr "Événements actifs" msgid "Active payment methods" msgstr "" -#: src/components/routes/event/OccurrencesTab/index.tsx:400 +#: src/components/routes/event/OccurrencesTab/index.tsx:402 msgid "Activity" msgstr "" @@ -536,11 +536,11 @@ msgstr "" msgid "Add a description for this check-in list" msgstr "Ajouter une description pour cette liste de pointage" -#: src/components/routes/event/OccurrencesTab/index.tsx:538 +#: src/components/routes/event/OccurrencesTab/index.tsx:541 msgid "Add a Single Date" msgstr "" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:739 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:752 msgid "Add another time" msgstr "" @@ -560,7 +560,7 @@ msgstr "Ajoutez des notes concernant la commande. Elles ne seront pas visibles p msgid "Add any notes about the order..." msgstr "Ajoutez des notes concernant la commande..." -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:375 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:382 msgid "Add at least one time" msgstr "" @@ -580,7 +580,7 @@ msgstr "" msgid "Add dates" msgstr "Ajouter des dates" -#: src/components/routes/event/OccurrencesTab/index.tsx:524 +#: src/components/routes/event/OccurrencesTab/index.tsx:526 msgid "Add Dates" msgstr "" @@ -611,7 +611,7 @@ msgstr "Ajoutez des instructions pour les paiements hors ligne (par exemple, les msgid "Add Location" msgstr "Ajouter un emplacement" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:743 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:756 msgid "Add multiple times if you run several sessions per day." msgstr "" @@ -796,7 +796,7 @@ msgid "all" msgstr "" #: src/components/layouts/CheckIn/tabs/SearchTab.tsx:133 -#: src/components/routes/event/OccurrencesTab/index.tsx:485 +#: src/components/routes/event/OccurrencesTab/index.tsx:487 msgid "All" msgstr "" @@ -987,7 +987,7 @@ msgstr "Une erreur inattendue est apparue." msgid "An unexpected error occurred. Please try again." msgstr "Une erreur inattendue est apparue. Veuillez réessayer." -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:849 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:862 msgid "and {0} more..." msgstr "" @@ -1003,7 +1003,7 @@ msgstr "" msgid "Answers provided at checkout (e.g. meal choice)" msgstr "" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:564 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:577 msgid "Any dates you've manually customized will be kept." msgstr "" @@ -1071,7 +1071,7 @@ msgstr "" msgid "Approve Message" msgstr "Approuver le message" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:74 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:76 msgid "April" msgstr "" @@ -1127,7 +1127,7 @@ msgstr "Êtes-vous sûr de vouloir archiver cet événement ? Il ne sera plus vi 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." -#: src/components/routes/event/OccurrencesTab/index.tsx:213 +#: src/components/routes/event/OccurrencesTab/index.tsx:215 msgid "Are you sure you want to cancel {count} date(s)? Affected attendees will be notified by email." msgstr "" @@ -1159,7 +1159,7 @@ msgstr "Êtes-vous sûr de vouloir supprimer cette configuration ? Cela peut aff #: src/components/modals/ManageOccurrenceModal/index.tsx:58 #: src/components/routes/event/OccurrenceDetail/index.tsx:84 -#: src/components/routes/event/OccurrencesTab/index.tsx:182 +#: src/components/routes/event/OccurrencesTab/index.tsx:184 msgid "Are you sure you want to delete this date? This action cannot be undone." msgstr "" @@ -1446,7 +1446,7 @@ msgstr "Répartition de l'attribution" msgid "Attribution Value" msgstr "Valeur d'attribution" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:78 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:80 msgid "August" msgstr "" @@ -1625,7 +1625,7 @@ msgstr "Portugais brésilien" msgid "Built-in fraud protection" msgstr "" -#: src/components/routes/event/OccurrencesTab/index.tsx:515 +#: src/components/routes/event/OccurrencesTab/index.tsx:517 msgid "Bulk Edit" msgstr "" @@ -1674,11 +1674,11 @@ msgstr "En ajoutant des pixels de suivi, vous reconnaissez que vous et cette pla msgid "By continuing, you agree to the <0>{0} Terms of Service" msgstr "En continuant, vous acceptez les <0>Conditions d'utilisation de {0}" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:628 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:641 msgid "By day of month" msgstr "" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:629 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:642 msgid "By day of week" msgstr "" @@ -1698,7 +1698,7 @@ msgstr "Contourner les frais d'application" msgid "Calculation Type" msgstr "Type de calcul" -#: src/components/routes/event/OccurrencesTab/index.tsx:471 +#: src/components/routes/event/OccurrencesTab/index.tsx:473 msgid "Calendar" msgstr "" @@ -1735,7 +1735,7 @@ msgstr "" #: src/components/modals/ManageOrderModal/index.tsx:209 #: src/components/modals/PublishEventModal/index.tsx:208 #: src/components/routes/event/messages.tsx:80 -#: src/components/routes/event/OccurrencesTab/index.tsx:497 +#: src/components/routes/event/OccurrencesTab/index.tsx:499 #: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:272 #: src/components/routes/event/OccurrencesTab/OccurrenceEditModal/index.tsx:306 #: src/components/routes/event/OccurrencesTab/OccurrenceMenu.tsx:61 @@ -1748,8 +1748,8 @@ msgstr "" msgid "Cancel" msgstr "Annuler" -#: src/components/routes/event/OccurrencesTab/index.tsx:209 -#: src/components/routes/event/OccurrencesTab/index.tsx:221 +#: src/components/routes/event/OccurrencesTab/index.tsx:211 +#: src/components/routes/event/OccurrencesTab/index.tsx:223 msgid "Cancel {count} date(s)" msgstr "" @@ -1809,7 +1809,7 @@ msgstr "L'annulation annulera tous les participants associés à cette commande msgid "Cancelled" msgstr "Annulé" -#: src/components/routes/event/OccurrencesTab/index.tsx:235 +#: src/components/routes/event/OccurrencesTab/index.tsx:237 msgid "Cancelling {0} date(s). This may take a moment to complete." msgstr "" @@ -1819,7 +1819,7 @@ msgstr "Impossible de supprimer la configuration système par défaut" #: src/components/forms/CapaciyAssigmentForm/index.tsx:42 #: src/components/routes/event/OccurrencesTab/OccurrenceEditModal/index.tsx:503 -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:811 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:824 msgid "Capacity" msgstr "Capacité" @@ -2154,7 +2154,7 @@ msgid "City" msgstr "Ville" #: src/components/common/OccurrenceSelect/index.tsx:133 -#: src/components/routes/event/OccurrencesTab/index.tsx:503 +#: src/components/routes/event/OccurrencesTab/index.tsx:505 msgid "Clear" msgstr "" @@ -2174,7 +2174,7 @@ msgstr "Effacer le texte de recherche" msgid "Clearing removes any per-date override. Affected dates will fall back to the event's default location." msgstr "" -#: src/components/routes/event/OccurrencesTab/index.tsx:331 +#: src/components/routes/event/OccurrencesTab/index.tsx:333 msgid "Click to cancel" msgstr "" @@ -2182,7 +2182,7 @@ msgstr "" msgid "Click to copy" msgstr "Cliquez pour copier" -#: src/components/routes/event/OccurrencesTab/index.tsx:333 +#: src/components/routes/event/OccurrencesTab/index.tsx:335 msgid "Click to reopen for new sales" msgstr "" @@ -2743,7 +2743,7 @@ msgstr "Créer le modèle {0}" msgid "Create a custom widget to sell tickets on your site." msgstr "Créez un widget personnalisé pour vendre des billets sur votre site." -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:785 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:798 msgid "Create a fixed number" msgstr "" @@ -2879,7 +2879,7 @@ msgstr "Créer un code promotionnel" msgid "Create Question" msgstr "Créer une question" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:864 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:877 msgid "Create Schedule" msgstr "" @@ -2927,6 +2927,10 @@ msgstr "Créez votre propre événement" msgid "Created" msgstr "Créé" +#: src/components/routes/event/OccurrencesTab/index.tsx:549 +msgid "Creating {0} dates. This may take a moment." +msgstr "Création de {0} dates. Cela peut prendre un moment." + #: src/components/routes/welcome/index.tsx:472 msgid "Creating Event..." msgstr "Création de l'événement..." @@ -3066,7 +3070,7 @@ msgstr "Personnalisez votre page d'événement" msgid "Customize your organizer page appearance" msgstr "Personnalisez l'apparence de votre page d'organisateur" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:56 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:58 #: src/components/routes/product-widget/OccurrenceSelector/index.tsx:32 msgid "Daily" msgstr "" @@ -3155,7 +3159,7 @@ msgstr "" #: src/components/modals/ManageOccurrenceModal/index.tsx:61 #: src/components/routes/event/OccurrenceDetail/index.tsx:87 -#: src/components/routes/event/OccurrencesTab/index.tsx:184 +#: src/components/routes/event/OccurrencesTab/index.tsx:186 msgid "Date deleted" msgstr "" @@ -3168,7 +3172,7 @@ msgstr "" msgid "Date reactivated" msgstr "" -#: src/components/routes/event/OccurrencesTab/index.tsx:198 +#: src/components/routes/event/OccurrencesTab/index.tsx:200 msgid "Date reopened for new sales" msgstr "" @@ -3184,15 +3188,15 @@ msgstr "" msgid "Dates with sessions" msgstr "" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:93 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:95 msgid "day" msgstr "" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:659 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:672 msgid "Day" msgstr "" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:676 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:689 msgid "Day of Month" msgstr "" @@ -3200,19 +3204,19 @@ msgstr "" msgid "Day one capacity" msgstr "Capacité du premier jour" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:101 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:103 msgid "days" msgstr "" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:635 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:648 msgid "Days of Month" msgstr "" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:605 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:618 msgid "Days of Week" msgstr "" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:82 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:84 msgid "December" msgstr "" @@ -3230,7 +3234,7 @@ msgstr "Par défaut" msgid "Default attendee information collection" msgstr "Collecte d'informations par défaut sur les participants" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:815 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:828 msgid "Default capacity per date" msgstr "" @@ -3253,7 +3257,7 @@ msgstr "supprimer" #: src/components/common/QuestionsTable/index.tsx:150 #: src/components/common/TaxAndFeeList/index.tsx:81 #: src/components/routes/admin/FailedJobs/index.tsx:209 -#: src/components/routes/event/OccurrencesTab/index.tsx:500 +#: src/components/routes/event/OccurrencesTab/index.tsx:502 #: src/components/routes/event/OccurrencesTab/OccurrenceMenu.tsx:62 msgid "Delete" msgstr "Supprimer" @@ -3262,7 +3266,7 @@ msgstr "Supprimer" msgid "Delete \"{0}\"?" msgstr "Supprimer \"{0}\" ?" -#: src/components/routes/event/OccurrencesTab/index.tsx:247 +#: src/components/routes/event/OccurrencesTab/index.tsx:249 msgid "Delete {count} selected date(s)? Dates with orders will be skipped. This cannot be undone." msgstr "" @@ -3344,7 +3348,7 @@ msgstr "Supprimer cette question ? Cette action est irréversible." msgid "Delete webhook" msgstr "Supprimer le webhook" -#: src/components/routes/event/OccurrencesTab/index.tsx:253 +#: src/components/routes/event/OccurrencesTab/index.tsx:255 msgid "Deleted {0} date(s)" msgstr "" @@ -3565,7 +3569,7 @@ msgstr "ex. 180 (3 heures)" #: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:452 #: src/components/routes/event/OccurrencesTab/OccurrenceEditModal/index.tsx:450 -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:714 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:727 msgid "e.g. Morning Session" msgstr "" @@ -3724,7 +3728,7 @@ msgstr "Modifier le webhook" msgid "Edit Webhook" msgstr "Modifier le webhook" -#: src/components/routes/event/OccurrencesTab/index.tsx:306 +#: src/components/routes/event/OccurrencesTab/index.tsx:308 msgid "Edited" msgstr "" @@ -3913,7 +3917,7 @@ msgstr "Activer la liste d'attente" msgid "Enabled" msgstr "Activé" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:704 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:717 msgid "End" msgstr "" @@ -3934,7 +3938,7 @@ msgstr "Date et heure de fin (optionnel)" msgid "End date must be after start date" msgstr "La date de fin doit être postérieure à la date de début" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:771 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:784 msgid "End on a date" msgstr "" @@ -4409,7 +4413,7 @@ msgstr "Échec de l'annulation du participant" msgid "Failed to cancel date" msgstr "" -#: src/components/routes/event/OccurrencesTab/index.tsx:239 +#: src/components/routes/event/OccurrencesTab/index.tsx:241 msgid "Failed to cancel dates" msgstr "" @@ -4429,10 +4433,14 @@ msgstr "Échec de la création de l'affilié" msgid "Failed to create configuration" msgstr "Échec de la création de la configuration" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:530 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:543 msgid "Failed to create schedule" msgstr "" +#: src/hooks/useOccurrenceGenerationPolling.ts:44 +msgid "Failed to create schedule. Please try again." +msgstr "Échec de la création du calendrier. Veuillez réessayer." + #: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:192 #: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:195 msgid "Failed to create template" @@ -4444,7 +4452,7 @@ msgstr "Échec de la suppression de la configuration" #: src/components/modals/ManageOccurrenceModal/index.tsx:64 #: src/components/routes/event/OccurrenceDetail/index.tsx:90 -#: src/components/routes/event/OccurrencesTab/index.tsx:185 +#: src/components/routes/event/OccurrencesTab/index.tsx:187 msgid "Failed to delete date" msgstr "" @@ -4452,7 +4460,7 @@ msgstr "" msgid "Failed to delete date. It may have existing orders." msgstr "" -#: src/components/routes/event/OccurrencesTab/index.tsx:256 +#: src/components/routes/event/OccurrencesTab/index.tsx:258 msgid "Failed to delete dates" msgstr "" @@ -4540,7 +4548,7 @@ msgstr "Échec de la suppression de la liste d'attente" msgid "Failed to remove override" msgstr "" -#: src/components/routes/event/OccurrencesTab/index.tsx:199 +#: src/components/routes/event/OccurrencesTab/index.tsx:201 msgid "Failed to reopen date" msgstr "" @@ -4677,7 +4685,7 @@ msgstr "" msgid "Fast payouts to your bank" msgstr "" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:72 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:74 msgid "February" msgstr "" @@ -4769,7 +4777,7 @@ msgstr "" msgid "Finish setup" msgstr "" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:63 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:65 msgid "First" msgstr "" @@ -4882,7 +4890,7 @@ msgstr "Texte de Pied de Page" msgid "Forgot password?" msgstr "Mot de passe oublié?" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:66 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:68 msgid "Fourth" msgstr "" @@ -4909,11 +4917,11 @@ msgstr "Produit gratuit, aucune information de paiement requise" msgid "French" msgstr "Français" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:586 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:599 msgid "Frequency" msgstr "" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:50 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:52 msgid "Fri" msgstr "" @@ -5004,7 +5012,7 @@ msgstr "GitHub" #: src/components/routes/event/OccurrenceDetail/index.tsx:72 #: src/components/routes/event/OccurrencesTab/cancelOccurrenceDialog.tsx:49 -#: src/components/routes/event/OccurrencesTab/index.tsx:221 +#: src/components/routes/event/OccurrencesTab/index.tsx:223 #: src/components/routes/event/OccurrencesTab/OccurrenceEditModal/index.tsx:339 #: src/components/routes/event/OccurrencesTab/OccurrenceEditModal/index.tsx:363 msgid "Go Back" @@ -5271,7 +5279,7 @@ msgstr "Comment la réduction est-elle appliquée ?" msgid "How long a customer has to complete their purchase after receiving an offer. Leave empty for no timeout." msgstr "Combien de temps un client a pour finaliser son achat après avoir reçu une offre. Laisser vide pour aucun délai." -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:750 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:763 msgid "How long does the schedule run?" msgstr "" @@ -5283,7 +5291,7 @@ msgstr "De combien de minutes le client dispose pour finaliser sa commande. Nous msgid "How many times can this code be used?" msgstr "Combien de fois ce code peut-il être utilisé ?" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:581 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:594 msgid "How often?" msgstr "" @@ -5589,7 +5597,7 @@ msgstr "article(s)" msgid "Items" msgstr "Articles" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:71 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:73 msgid "January" msgstr "" @@ -5640,11 +5648,11 @@ msgstr "Rejoindre la liste d'attente pour {productDisplayName}" msgid "Joined" msgstr "Inscrit" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:77 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:79 msgid "July" msgstr "" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:76 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:78 msgid "June" msgstr "" @@ -5670,7 +5678,7 @@ msgstr "" #: src/components/forms/ProductForm/index.tsx:108 #: src/components/routes/event/OccurrencesTab/OccurrenceEditModal/index.tsx:449 -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:711 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:724 #: src/components/routes/event/Reports/OccurrenceSummaryReport/index.tsx:45 msgid "Label" msgstr "Étiquette" @@ -5685,7 +5693,7 @@ msgstr "" msgid "Language" msgstr "Langue" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:67 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:69 msgid "Last" msgstr "" @@ -5794,7 +5802,7 @@ msgid "Leave blank to use the default word \"Invoice\"" msgstr "Laisser vide pour utiliser le mot par défaut \"Facture\"" #: src/components/routes/event/OccurrencesTab/OccurrenceEditModal/index.tsx:507 -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:816 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:829 msgid "Leave empty for unlimited" msgstr "" @@ -5834,7 +5842,7 @@ msgstr "LinkedIn" msgid "Links Allowed" msgstr "Liens autorisés" -#: src/components/routes/event/OccurrencesTab/index.tsx:470 +#: src/components/routes/event/OccurrencesTab/index.tsx:472 msgid "List" msgstr "" @@ -6003,7 +6011,7 @@ msgstr "" msgid "Manage attendee" msgstr "Gérer le participant" -#: src/components/routes/event/OccurrencesTab/index.tsx:460 +#: src/components/routes/event/OccurrencesTab/index.tsx:462 msgid "Manage dates and times for your recurring event" msgstr "" @@ -6074,7 +6082,7 @@ msgstr "Ajouter manuellement un participant" msgid "Manually Add Attendee" msgstr "Ajouter manuellement un participant" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:73 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:75 msgid "March" msgstr "" @@ -6098,7 +6106,7 @@ msgstr "Max destinataires / message" msgid "Maximum Per Order" msgstr "Maximum par commande" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:75 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:77 msgid "May" msgstr "" @@ -6214,7 +6222,7 @@ msgstr "Paramètres divers" msgid "Mode" msgstr "" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:46 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:48 msgid "Mon" msgstr "" @@ -6230,24 +6238,24 @@ msgstr "Les valeurs monétaires sont des totaux approximatifs pour toutes les de msgid "Monitor and manage failed background jobs" msgstr "Surveiller et gérer les travaux de fond échoués" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:95 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:97 msgid "month" msgstr "" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:671 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:684 msgid "Month" msgstr "Mois" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:58 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:60 #: src/components/routes/product-widget/OccurrenceSelector/index.tsx:41 msgid "Monthly" msgstr "" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:624 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:637 msgid "Monthly Pattern" msgstr "" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:103 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:105 msgid "months" msgstr "" @@ -6516,7 +6524,7 @@ msgstr "" msgid "No dates match the current filters." msgstr "" -#: src/components/routes/event/OccurrencesTab/index.tsx:570 +#: src/components/routes/event/OccurrencesTab/index.tsx:580 msgid "No dates match your filters" msgstr "" @@ -6529,7 +6537,7 @@ msgstr "" msgid "No dates scheduled" msgstr "Aucune date planifiée" -#: src/components/routes/event/OccurrencesTab/index.tsx:570 +#: src/components/routes/event/OccurrencesTab/index.tsx:580 msgid "No dates scheduled yet" msgstr "" @@ -6820,11 +6828,11 @@ msgstr "" msgid "Notify organizer of new orders" msgstr "Informer l'organisateur des nouvelles commandes" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:81 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:83 msgid "November" msgstr "" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:800 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:813 msgid "Number of dates to create" msgstr "" @@ -6849,7 +6857,7 @@ msgid "Occurrence Cancelled" msgstr "" #: src/components/layouts/Event/index.tsx:113 -#: src/components/routes/event/OccurrencesTab/index.tsx:461 +#: src/components/routes/event/OccurrencesTab/index.tsx:463 msgid "Occurrence Schedule" msgstr "" @@ -6871,7 +6879,7 @@ msgstr "" msgid "Occurrences can be configured after creation" msgstr "" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:80 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:82 msgid "October" msgstr "" @@ -6965,7 +6973,7 @@ msgstr "En cours" #: src/components/common/EventCard/index.tsx:103 #: src/components/layouts/OrganizerHomepage/EventCard/index.tsx:49 -#: src/components/routes/event/OccurrencesTab/index.tsx:316 +#: src/components/routes/event/OccurrencesTab/index.tsx:318 #: src/components/routes/event/OccurrencesTab/OccurrenceEditModal/index.tsx:473 #: src/components/routes/my-tickets/index.tsx:56 #: src/components/routes/product-widget/OccurrenceSelector/index.tsx:122 @@ -7080,7 +7088,7 @@ msgstr "Possibilités" msgid "or" msgstr "ou" -#: src/components/routes/event/OccurrencesTab/index.tsx:593 +#: src/components/routes/event/OccurrencesTab/index.tsx:603 msgid "or add a single date" msgstr "" @@ -7088,7 +7096,7 @@ msgstr "" msgid "Or enable offline payments and disable Stripe" msgstr "Ou activez les paiements hors ligne et désactivez Stripe" -#: src/components/routes/event/OccurrencesTab/index.tsx:413 +#: src/components/routes/event/OccurrencesTab/index.tsx:415 msgid "order" msgstr "" @@ -7250,7 +7258,7 @@ msgstr "Commande mise à jour avec succès" msgid "Order was cancelled" msgstr "La commande a été annulée" -#: src/components/routes/event/OccurrencesTab/index.tsx:413 +#: src/components/routes/event/OccurrencesTab/index.tsx:415 #: src/components/routes/event/orders.tsx:197 msgid "orders" msgstr "" @@ -7503,7 +7511,7 @@ msgid "Passwords are not the same" msgstr "les mots de passe ne sont pas les mêmes" #: src/components/layouts/OrganizerHomepage/index.tsx:291 -#: src/components/routes/event/OccurrencesTab/index.tsx:484 +#: src/components/routes/event/OccurrencesTab/index.tsx:486 #: src/components/routes/organizer/Reports/EventsPerformanceReport/index.tsx:30 msgid "Past" msgstr "Passé" @@ -7707,15 +7715,15 @@ msgstr "Informations personnelles" msgid "Phone" msgstr "Téléphone" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:372 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:379 msgid "Pick an end date" msgstr "" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:380 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:387 msgid "Pick at least one day of the month" msgstr "" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:369 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:376 msgid "Pick at least one day of the week" msgstr "" @@ -7765,7 +7773,7 @@ msgstr "Revenus de la plateforme" msgid "Please add at least one option" msgstr "Veuillez ajouter au moins une option" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:527 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:540 #: src/hooks/useFormErrorResponseHandler.tsx:18 msgid "Please check the provided information is correct" msgstr "Veuillez vérifier que les informations fournies sont correctes" @@ -7895,7 +7903,7 @@ msgstr "Événements populaires (14 derniers jours)" msgid "Portuguese" msgstr "Portugais" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:654 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:667 msgid "Position" msgstr "" @@ -8385,7 +8393,7 @@ msgstr "Comptes de parrainage" msgid "Refresh Preview" msgstr "Actualiser l'aperçu" -#: src/components/routes/event/OccurrencesTab/index.tsx:216 +#: src/components/routes/event/OccurrencesTab/index.tsx:218 msgid "Refund all orders for these dates" msgstr "" @@ -8494,11 +8502,11 @@ msgstr "Supprime entièrement les dates et horaires complets de la page de l'év msgid "Reopen for new sales" msgstr "" -#: src/components/routes/event/OccurrencesTab/index.tsx:192 +#: src/components/routes/event/OccurrencesTab/index.tsx:194 msgid "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." msgstr "" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:591 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:604 msgid "Repeat every" msgstr "" @@ -8699,7 +8707,7 @@ msgstr "Révoquer l'offre" msgid "Role" msgstr "Rôle" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:772 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:785 msgid "Run until a specific date" msgstr "" @@ -8786,7 +8794,7 @@ msgstr "Prix du billet exemple" msgid "Sample Venue" msgstr "Lieu Exemple" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:51 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:53 msgid "Sat" msgstr "" @@ -8836,7 +8844,7 @@ msgstr "" msgid "Save Organizer" msgstr "Enregistrer l'organisateur" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:864 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:877 msgid "Save Schedule" msgstr "" @@ -8900,11 +8908,12 @@ msgstr "" msgid "Schedule added" msgstr "" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:520 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:530 +#: src/hooks/useOccurrenceGenerationPolling.ts:36 msgid "Schedule created successfully" msgstr "" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:793 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:806 msgid "Schedule ends on" msgstr "" @@ -8916,7 +8925,7 @@ msgstr "Programmer pour plus tard" msgid "Schedule Message" msgstr "Programmer le message" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:755 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:768 msgid "Schedule starts on" msgstr "" @@ -9039,7 +9048,7 @@ msgstr "Recherche..." msgid "Seasonal" msgstr "" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:64 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:66 msgid "Second" msgstr "" @@ -9215,7 +9224,7 @@ msgstr "Sélectionnez les événements qui déclencheront ce webhook" msgid "Select..." msgstr "Sélectionner..." -#: src/components/routes/event/OccurrencesTab/index.tsx:495 +#: src/components/routes/event/OccurrencesTab/index.tsx:497 msgid "selected" msgstr "" @@ -9345,7 +9354,7 @@ msgstr "Paramètres de référencement" msgid "SEO Title" msgstr "Titre SEO" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:79 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:81 msgid "September" msgstr "" @@ -9373,7 +9382,7 @@ msgstr "Définir les paramètres par défaut pour les nouveaux événements cré msgid "Set how long each date lasts" msgstr "" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:784 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:797 msgid "Set number of dates" msgstr "" @@ -9393,7 +9402,7 @@ msgstr "Définir le numéro de départ pour la numérotation des factures. Cela msgid "Set to unlimited (remove limit)" msgstr "" -#: src/components/routes/event/OccurrencesTab/index.tsx:575 +#: src/components/routes/event/OccurrencesTab/index.tsx:585 msgid "Set up a recurring schedule to automatically create dates, or add them one at a time." msgstr "" @@ -9410,8 +9419,8 @@ msgstr "" msgid "Set up schedule" msgstr "" -#: src/components/routes/event/OccurrencesTab/index.tsx:532 -#: src/components/routes/event/OccurrencesTab/index.tsx:586 +#: src/components/routes/event/OccurrencesTab/index.tsx:535 +#: src/components/routes/event/OccurrencesTab/index.tsx:596 msgid "Set Up Schedule" msgstr "" @@ -9427,7 +9436,7 @@ msgstr "Configurer votre organisation" msgid "Set up your schedule" msgstr "" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:569 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:582 msgid "Set Up Your Schedule" msgstr "" @@ -9564,7 +9573,7 @@ msgstr "Afficher les taxes et les frais séparément" msgid "Showing {0} of {totalRows} records" msgstr "Affichage de {0} sur {totalRows} enregistrements" -#: src/components/routes/event/OccurrencesTab/index.tsx:614 +#: src/components/routes/event/OccurrencesTab/index.tsx:624 msgid "Showing {0}–{1} of {2}" msgstr "" @@ -9645,7 +9654,7 @@ msgstr "Liens sociaux & site web" #: src/components/common/ProductsTable/SortableProduct/index.tsx:387 #: src/components/modals/ManageOccurrenceModal/index.tsx:186 -#: src/components/routes/event/OccurrencesTab/index.tsx:369 +#: src/components/routes/event/OccurrencesTab/index.tsx:371 msgid "Sold" msgstr "Vendu" @@ -9753,7 +9762,7 @@ msgstr "" msgid "Standard product with a fixed price" msgstr "Produit standard avec un prix fixe" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:696 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:709 msgid "Start" msgstr "" @@ -9846,7 +9855,7 @@ msgstr "" #: src/components/routes/admin/Messages/index.tsx:120 #: src/components/routes/admin/Messages/index.tsx:167 #: src/components/routes/admin/Messages/index.tsx:294 -#: src/components/routes/event/OccurrencesTab/index.tsx:326 +#: src/components/routes/event/OccurrencesTab/index.tsx:328 #: src/components/routes/event/Reports/OccurrenceSummaryReport/index.tsx:51 #: src/components/routes/event/Reports/PromoCodesReport/index.tsx:88 #: src/components/routes/organizer/Reports/EventsPerformanceReport/index.tsx:62 @@ -10104,7 +10113,7 @@ msgstr "Festival de musique d'été {0}" msgid "Summer Music Festival 2025" msgstr "Festival de Musique d'Été 2025" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:52 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:54 msgid "Sun" msgstr "" @@ -10231,7 +10240,7 @@ msgstr "Parlez-nous de votre événement" msgid "Tell us about your organization. This information will be displayed on your event pages." msgstr "Parlez-nous de votre organisation. Ces informations seront affichées sur vos pages d'événement." -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:573 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:586 msgid "Tell us how often your event repeats and we'll create all the dates for you." msgstr "" @@ -10325,7 +10334,7 @@ msgstr "L'adresse e-mail a été modifiée. Le participant recevra un nouveau bi msgid "The event you're looking for is not available at the moment. It may have been removed, expired, or the URL might be incorrect." msgstr "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." -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:756 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:769 msgid "The first date this schedule will generate from." msgstr "" @@ -10345,7 +10354,7 @@ msgstr "Le lien que vous essayez d'accéder a expiré ou n'est plus valide. Veui msgid "The link you clicked is invalid." msgstr "Le lien sur lequel vous avez cliqué n'est pas valide." -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:840 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:853 msgid "The maximum is {MAX_PREVIEW} sessions. Please reduce the date range, frequency, or number of sessions per day." msgstr "" @@ -10481,7 +10490,7 @@ msgstr "Ces modèles seront utilisés comme valeurs par défaut pour tous les é 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." -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:65 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:67 msgid "Third" msgstr "" @@ -10744,7 +10753,7 @@ msgstr "Ceci ne sera pas visible pour les clients, mais vous aide à identifier msgid "Throughput" msgstr "" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:49 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:51 msgid "Thu" msgstr "" @@ -10881,7 +10890,7 @@ msgstr "Les produits à niveaux vous permettent de proposer plusieurs options de msgid "TikTok" msgstr "TikTok" -#: src/components/routes/event/OccurrencesTab/index.tsx:290 +#: src/components/routes/event/OccurrencesTab/index.tsx:292 msgid "Time" msgstr "" @@ -10912,7 +10921,7 @@ msgstr "Nombre d'utilisations" msgid "Timezone" msgstr "Fuseau horaire" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:702 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:715 msgid "to" msgstr "" @@ -11056,7 +11065,7 @@ msgstr "Suivi et analytique" msgid "Try a different search term or filter" msgstr "" -#: src/components/routes/event/OccurrencesTab/index.tsx:574 +#: src/components/routes/event/OccurrencesTab/index.tsx:584 msgid "Try adjusting your filters to see more dates." msgstr "" @@ -11069,7 +11078,7 @@ msgstr "Essayer un autre e-mail" msgid "Try Hi.Events Free" msgstr "Essayer Hi.Events gratuitement" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:47 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:49 msgid "Tue" msgstr "" @@ -11232,7 +11241,7 @@ msgstr "Non fiable" #: src/components/common/EventsDashboardStatusButtons/index.tsx:20 #: src/components/common/EventStatusBadge/index.tsx:16 #: src/components/layouts/OrganizerHomepage/index.tsx:285 -#: src/components/routes/event/OccurrencesTab/index.tsx:483 +#: src/components/routes/event/OccurrencesTab/index.tsx:485 #: src/components/routes/organizer/Reports/EventsPerformanceReport/index.tsx:33 msgid "Upcoming" msgstr "A venir" @@ -11880,7 +11889,7 @@ msgstr "Webhooks" msgid "Website" msgstr "Site web" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:48 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:50 msgid "Wed" msgstr "" @@ -11888,16 +11897,16 @@ msgstr "" msgid "Wednesday" msgstr "" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:94 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:96 msgid "week" msgstr "" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:57 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:59 #: src/components/routes/product-widget/OccurrenceSelector/index.tsx:35 msgid "Weekly" msgstr "" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:102 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:104 msgid "weeks" msgstr "" @@ -11953,7 +11962,7 @@ msgstr "À quels produits cette capacité doit-elle s'appliquer ?" msgid "What time will you be arriving?" msgstr "A quelle heure arriverez-vous ?" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:688 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:701 msgid "What time?" msgstr "" @@ -12140,7 +12149,7 @@ msgstr "Écrivez votre message ici..." msgid "X (Twitter)" msgstr "X (Twitter)" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:96 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:98 msgid "year" msgstr "" @@ -12150,12 +12159,12 @@ msgstr "" msgid "Year to date" msgstr "Année à ce jour" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:59 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:61 #: src/components/routes/product-widget/OccurrenceSelector/index.tsx:43 msgid "Yearly" msgstr "" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:104 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:106 msgid "years" msgstr "" @@ -12200,7 +12209,7 @@ msgstr "Vous pouvez configurer des frais de service supplémentaires et des taxe msgid "You can create a promo code which targets this product on the" msgstr "Vous pouvez créer un code promo qui cible ce produit sur le" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:823 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:836 msgid "You can override this for individual dates later." msgstr "" diff --git a/frontend/src/locales/hu.js b/frontend/src/locales/hu.js index fa8e0f3992..bc8df3a44e 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 semmi megjeleníthető'\",\"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 Main Street\",\"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\":\"Are you sure you want to make this event public? This will make the event visible to the public\",\"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\":\"Attendee Notes\",\"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\":\"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\":\"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\":\"Check-in\",\"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\":\"Testreszabhatja eseményoldalát\",\"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\":\"Dismiss\",\"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\":\"Event URL\",\"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\":\"No attendees have been added to this order.\",\"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\":\"No product associated with this attendee.\",\"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\":\"No questions answered by this attendee.\",\"SnlQeq\":\"No questions have been asked for this order.\",\"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 event\",\"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\":\"Order #\",\"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\":\"Order Notes\",\"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\":\"Üzemelteti\",\"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,\\nirányelvek vagy bármilyen fontos információ hozzáadásához, amelyet a résztvevőknek tudniuk kell a válaszadás 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\":\"Suite 100\",\"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\":\"View\",\"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\":\"(none)\",\"xYxQCZ\":[[\"0\"],\" \",[\"1\"]],\"lAOy2r\":[[\"0\"],\" \",[\"1\"],\" már bejelentkezett\"],\"3beCx0\":[[\"0\"],\" <0>checked in\"],\"S4PqS9\":[[\"0\"],\" aktív webhook\"],\"6MIiOI\":[[\"0\"],\" maradt\"],\"COnw8D\":[[\"0\"],\" logó\"],\"xG9N0H\":[[\"0\"],\" of \",[\"1\"],\" seats are taken.\"],\"B7pZfX\":[[\"0\"],\" szervező\"],\"/HkCs4\":[[\"0\"],\" jegy\"],\"30bTiU\":[[\"activeCount\"],\" enabled\"],\"jTs4am\":[[\"appName\"],\" logo\"],\"gbJOk9\":[[\"attendeeCount\"],\" attendees are registered for this session.\"],\"TjbIUI\":[[\"availableCount\"],\" / \",[\"totalCount\"],\" elérhető\"],\"PSChHo\":[[\"capacity\"],\" hely maradt\"],\"lzQ8/M\":[[\"checkedIn\"],\" / \",[\"total\"],\" checked in\"],\"RZ0JX3\":[[\"chipTime\"],\", elkelt\"],\"M4KnFs\":[[\"chipTime\"],\", Elfogyott, várólista elérhető\"],\"SeyN12\":[[\"completedCount\"],\" of \",[\"totalCount\"],\" steps complete\"],\"f2rhaD\":[[\"diffHr\"],\"h ago\"],\"NRSLBe\":[[\"diffMin\"],\"m ago\"],\"iYfwJE\":[[\"diffSec\"],\"s ago\"],\"OJnhhX\":[[\"eventCount\"],\" esemény\"],\"mhZbzw\":[[\"loadedAffectedAttendees\"],\" attendees are registered across the affected sessions.\"],\"RBuxIl\":[[\"productCount\"],\" ticket types configured\"],\"VFLd0I\":[[\"slotCount\"],\" times available\"],\"3IEF7U\":[[\"totalCount\"],\" jegytípus\"],\"0cLzoF\":[[\"totalOccurrences\"],\" dates\"],\"AEGc4t\":[[\"totalOccurrences\"],\" sessions across \",[\"0\"],\" dates (\",[\"1\",\"plural\",{\"one\":[\"#\",\" session\"],\"other\":[\"#\",\" sessions\"]}],\" per day)\"],\"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.\",\"Il5Uid\":\"<0>Ez az összes időpontra együttesen elérhető teljes mennyiség – nem időpontonkénti korlát. Az egyes időpontok létszámának korlátozásához állítson be kapacitást az <1>Időpontok ütemezése 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 attendee is registered across the affected sessions.\",\"qOyE2U\":\"1 attendee is registered for this session.\",\"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\",\"y2Jh0m\":\"1 time available\",\"cGtUz6\":\"1 héttel az esemény előtt\",\"HR/cvw\":\"Minta utca 123\",\"dgKxZ5\":\"135+ currencies & 40+ payment methods\",\"kMU5aM\":\"Lemondási értesítés elküldve ide:\",\"o++0qa\":\"a change in duration\",\"WuWSX5\":\"A few quick steps and you're ready to start selling.\",\"RQ5kDd\":\"Üzenet, amely akkor jelenik meg, ha nincsenek termékek ebben a kategóriában.\",\"V53XzQ\":\"Új ellenőrző kód került elküldésre az e-mail címére.\",\"sr2Je0\":\"a shift in start/end times\",\"/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\":\"Elfogadás\",\"K5+3xg\":\"Meghívó elfogadása\",\"jzb4Ep\":[\"Account · \",[\"0\"]],\"UqH1Q6\":[\"Account · \",[\"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\":\"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\":\"Egyedi kérdések hozzáadása további információk gyűjtéséhez a pénztárnál\",\"Z/dcxc\":\"Add Date\",\"QeupRg\":\"Időpontok hozzáadása\",\"Q219NT\":\"Add Dates\",\"yjB5VC\":\"Add dates and times for your recurring event\",\"Z8idyM\":\"Add details\",\"wpirGs\":\"Add event details\",\"VX6WUv\":\"Helyszín hozzáadása\",\"GCQlV2\":\"Add multiple times if you run several sessions per day.\",\"7JF9w9\":\"Kérdés hozzáadása\",\"NLbIb6\":\"Add this attendee anyway (override capacity)\",\"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ő kezdőlapjához. Egy cookie-hozzájárulási banner jelenik meg a látogatóknak, amikor a követés aktív.\",\"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\":\"Affiliate program\",\"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.\",\"3e31kI\":\"After your event is created, you can choose how often it repeats from the dashboard.\",\"z7GAMJ\":\"all\",\"N40H+G\":\"All\",\"7rLTkE\":\"Összes archivált esemény\",\"gKq1fa\":\"Minden résztvevő\",\"63gRoO\":\"All attendees of the selected sessions\",\"uWxIoH\":\"All attendees of this occurrence\",\"pMLul+\":\"Minden pénznem\",\"sgUdRZ\":\"All dates\",\"e4q4uO\":\"All Dates\",\"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\":\"All matching dates\",\"F1/VgK\":\"All occurrences\",\"OpWjMq\":\"All Occurrences\",\"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.\",\"VZdky1\":\"A vásárlók átmásolhatják adataikat az összes résztvevőhöz\",\"F3mW5G\":\"Lehetővé teszi az ügyfelek számára, hogy feliratkozzanak a várólistára, ha ez a termék elfogyott\",\"4CMO/q\":\"Lehetővé teszi az ügyfelek számára, hogy feliratkozzanak a várólistára, ha ez a termék elfogyott. Az ügyfelek egy adott dátumra iratkoznak fel a várólistára.\",\"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\":\"Already in\",\"/H326L\":\"Már visszatérítve\",\"USEpOK\":\"Already use Stripe on another organizer? Reuse that connection.\",\"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.\",\"OPFdAM\":\"A kategória opcionális leírása, amely az esemény oldalán jelenik meg.\",\"eusccx\":\"Opcionális üzenet a kiemelt termék megjelenítéséhez, pl. \\\"Gyorsan fogy 🔥\\\" vagy \\\"Legjobb ár\\\"\",\"5GJuNp\":[\"and \",[\"0\"],\" more...\"],\"QNrkms\":\"Válasz sikeresen frissítve.\",\"+qygei\":\"Answers\",\"GK7Lnt\":\"Answers provided at checkout (e.g. meal choice)\",\"lE8PgT\":\"Any dates you've manually customized will be kept.\",\"jVoYha\":[\"alkalmazva — \",[\"0\"],\" kedvezmény a rendelésére\"],\"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\":\"Üzenet jóváhagyása\",\"naCW6Z\":\"April\",\"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\":[\"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\":\"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/\":\"Are you sure you want to delete this date? This action cannot be undone.\",\"RiF/yT\":\"Are you sure you want to delete this image?\",\"b3+Qku\":\"Are you sure you want to delete this tax or fee? It will no longer be applied to new orders.\",\"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\":\"Are you sure you want to permanently delete this date? This cannot be undone.\",\"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?\",\"b7tkGp\":\"Are you sure you want to revoke this invitation?\",\"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\":\"Assign plan\",\"xdiER7\":\"Hozzárendelt szint\",\"F2rX0R\":\"Legalább egy eseménytípust ki kell választani.\",\"Z44eZS\":\"At least one product must stay available for this date. To make the date inaccessible, cancel it from the schedule instead.\",\"BCmibk\":\"Próbálkozások\",\"6PecK3\":\"Részvétel és bejelentkezési arányok minden eseményen\",\"K2tp3v\":\"attendee\",\"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\",\"94aQMU\":\"Résztvevő információk\",\"KkrBiR\":\"Résztvevői információk gyűjtése\",\"sjPjOg\":\"Attendee notes\",\"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\":\"attendees\",\"zLRobu\":\"attendees checked in\",\"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/\":\"August\",\"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 ajánljon jegyeket a következő személynek, amikor kapacitás szabadul fel. Ha letiltva, manuálisan dolgozhatja fel a várólistát a Várólista oldalról.\",\"csDS2L\":\"Elérhető\",\"Xp+ywP\":\"A fizetés befejezése után lesz elérhető\",\"dwDH1K\":[\"Available times on \",[\"dayName\"]],\"clF06r\":\"Visszatérítésre elérhető\",\"NB5+UG\":\"Elérhető tokenek\",\"L+wGOG\":\"Awaiting\",\"qcw2OD\":\"Awaiting pay\",\"kNmmvE\":\"Awesome Events Kft.\",\"TeSaQO\":\"Vissza a fiókokhoz\",\"kYqM1A\":\"Vissza az eseményhez\",\"s5QRF3\":\"Vissza az üzenetekhez\",\"td/bh+\":\"Vissza a jelentésekhez\",\"nsm7BA\":\"Vissza a kereséshez\",\"imjKVx\":\"Bank account connected\",\"D9LTCH\":\"Base Price\",\"hviJef\":\"Based on the global sale period above, not per date\",\"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\":\"Built-in fraud protection\",\"cr7kGH\":\"Bulk Edit\",\"1Fbd6n\":\"Bulk Edit Dates\",\"Eq6Tu9\":\"Bulk update failed.\",\"9N+p+g\":\"Üzlet\",\"SWnN1L\":\"Business address\",\"kQekXw\":\"Business name\",\"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. Ön felelős azért, hogy jogszerű alappal rendelkezzen ehhez az adatkezeléshez az alkalmazandó adatvédelmi jogszabályok (GDPR, CCPA stb.) szerint.\",\"DFqasq\":[\"A folytatással elfogadja a(z) <0>\",[\"0\"],\" Szolgáltatási feltételeket\"],\"wVSa+U\":\"By day of month\",\"0MnNgi\":\"By day of week\",\"CetOZE\":\"By ticket type\",\"lFdbRS\":\"Alkalmazási díjak megkerülése\",\"AjVXBS\":\"Calendar\",\"2VLZwd\":\"Cselekvésre ösztönző gomb\",\"rT2cV+\":\"Camera\",\"7hYa9y\":\"Camera permission was denied. <0>Request permission again, or grant this page camera access in your browser settings.\",\"D02dD9\":\"Kampány\",\"RRPA79\":\"Can't check in\",\"OcVwAd\":[\"Cancel \",[\"count\"],\" date(s)\"],\"H4nE+E\":\"Minden termék törlése és visszahelyezése a készletbe\",\"Py78q9\":\"Cancel Date\",\"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.\",\"FPpqc7\":[\"Cancelling \",[\"0\"],\" date(s). This may take a moment to complete.\"],\"01sEfm\":\"A rendszer alapértelmezett konfigurációja nem törölhető\",\"VsM1HH\":\"Kapacitás-hozzárendelések\",\"9bIMVF\":\"Capacity management\",\"H7K8og\":\"Capacity must be 0 or greater\",\"nzao08\":\"capacity updates\",\"4cp9NP\":\"Capacity Used\",\"K7tIrx\":\"Kategória\",\"DRK3Bq\":\"Category deleted successfully\",\"o+XJ9D\":\"Módosítás\",\"kJkjoB\":\"Change duration\",\"J0KExZ\":\"Change the attendee limit\",\"ssospy\":\"Change time\",\"CIHJJf\":\"Várólistás beállítások módosítása\",\"B5icLR\":[\"Changed duration for \",[\"count\"],\" date(s)\"],\"Kb+0BT\":\"Charges\",\"2tbLdK\":\"Jótékonyság\",\"BPWGKn\":\"Check in\",\"6uFFoY\":\"Check out\",\"FjAlwK\":[\"Check out this event: \",[\"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\":\"Check-In\",\"udRwQs\":\"Bejelentkezés létrehozva\",\"F4SRy3\":\"Bejelentkezés törölve\",\"as6XfO\":[\"Check-in for \",[\"0\"],\" was undone\"],\"9s/wrQ\":\"Check-in history\",\"Wwztk4\":\"Check-In List\",\"9gPPUY\":\"Bejelentkezési lista létrehozva\",\"dwjiJt\":\"Check-in list info\",\"7od0PV\":\"check-in lists\",\"f2vU9t\":\"Bejelentkezési listák\",\"XprdTn\":\"Check-in navigation\",\"5tV1in\":\"Check-in progress\",\"SHJwyq\":\"Bejelentkezési arány\",\"qCqdg6\":\"Bejelentkezési állapot\",\"cKj6OE\":\"Bejelentkezési összefoglaló\",\"7B5M35\":\"Bejelentkezések\",\"VrmydS\":\"Checked in\",\"DM4gBB\":\"Kínai (hagyományos)\",\"p8Jvp4\":\"Choose a configuration\",\"ElShBO\":\"Choose a different action\",\"pHEhf+\":\"Válasszon olyan betűtípust, amely illik a márkájához. A betűtípusokat a Bunny Fonts szolgáltatja.\",\"Zok1Gx\":\"Choose an organizer\",\"pkk46Q\":\"Válasszon szervezőt\",\"Ag32+c\":\"Choose another date\",\"Crr3pG\":\"Naptár kiválasztása\",\"Z38ZJu\":\"Válassza ki, hogyan jelenjen meg az esemény dátuma a jegyen\",\"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\":\"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\":\"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\":\"complete\",\"bUQMpb\":\"Complete Stripe setup\",\"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\":\"Configuration assigned\",\"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\":\"Configure which products are available for this occurrence and optionally adjust pricing.\",\"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\",\"/K4Vqr\":\"Kösd össze a Stripe-ot a fizetések fogadásához\",\"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\":\"Online eseményekhez kötelező megadni a csatlakozási adatokat\",\"jfC/xh\":\"Kapcsolat\",\"LOFgda\":[\"Kapcsolatfelvétel \",[\"0\"]],\"41BQ3k\":\"Kapcsolattartási e-mail\",\"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\",\"s30OcA\":\"Szabályozza, hogyan jelenjenek meg a dátumok és időpontok az esemény oldalán\",\"p2FRHj\":\"Szabályozza, hogyan kezelje a platformdíjakat ezen eseménynél\",\"NqfabH\":\"Control who gets in for this date\",\"fmYxZx\":\"Control who gets in, and when\",\"1JnTgU\":\"Másolva a fentiekből\",\"FxVG/l\":\"Vágólapra másolva\",\"PiH3UR\":\"Másolva!\",\"4i7smN\":\"Copy account ID\",\"uUPbPg\":\"Partneri link másolása\",\"iVm46+\":\"Kód másolása\",\"cF2ICc\":\"Ügyféllink 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\":\"Could not prepare the bulk update.\",\"KOavaU\":\"Nem sikerült lekérni a cím adatait\",\"/lq4oO\":\"Could not save date\",\"mHu0az\":\"Couldn't send verification email. Please try again.\",\"QOIm+S\":\"A számok az összes közelgő dátumot tartalmazzák. Mindenki arra a dátumra kap helyet, amelyre feliratkozott.\",\"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\":\"Covers every ticket\",\"zg4oSu\":[[\"0\"],\" sablon létrehozása\"],\"RKKhnW\":\"Hozzon létre egyedi widgetet jegyek értékesítéséhez a webhelyén.\",\"6sk7PP\":\"Create a fixed number\",\"jqhTmw\":\"Create a list for this date\",\"PhioFp\":\"Create a new check-in list for an active session, or contact the organizer if you think this is a mistake.\",\"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\":\"Create Date\",\"Nc3l/D\":\"Kedvezmények, hozzáférési kódok rejtett jegyekhez és különleges ajánlatok létrehozása.\",\"PybJS2\":\"Create event\",\"eWEV9G\":\"Új jelszó létrehozása\",\"wl2iai\":\"Create Schedule\",\"8AiKIu\":\"Jegy vagy termék létrehozása\",\"/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\":\"Hozza létre első eseményét, hogy elkezdhesse a jegyek értékesítését és a résztvevők kezelésé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\":\"Currently assigned\",\"iTvh6I\":\"Jelenleg megvásárolható\",\"A42Dqn\":\"Custom branding\",\"Guo0lU\":\"Egyéni dátum és idő\",\"WDMdn8\":\"Custom questions\",\"O6mra8\":\"Egyedi kérdések\",\"axv/Mi\":\"Egyedi sablon\",\"2YeVGY\":\"Ügyféllink vágólapra másolva\",\"QMHSMS\":\"A vásárló e-mailt kap a visszatérítés megerősítéséről\",\"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\":\"Daily\",\"/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\":\"Dance\",\"pvnfJD\":\"Sötét\",\"MaB9wW\":\"Date Cancellation\",\"e6cAxJ\":\"Date cancelled\",\"81jBnC\":\"Date cancelled successfully\",\"a/C/6R\":\"Date created successfully\",\"IW7Q+u\":\"Date deleted\",\"rngCAz\":\"Date deleted successfully\",\"vHbfoQ\":\"Date reactivated\",\"hvah+S\":\"Date reopened for new sales\",\"Ez0YsD\":\"Date updated successfully\",\"Te33mU\":\"Dates are managed per occurrence\",\"91zCxb\":\"Dates with sessions\",\"/ITcnz\":\"day\",\"H7OUPr\":\"Day\",\"JtHrX9\":\"Day of Month\",\"J/Upwb\":\"days\",\"vDVA2I\":\"Days of Month\",\"rDLvlL\":\"Days of Week\",\"r6zgGo\":\"December\",\"jbq7j2\":\"Elutasítás\",\"ovBPCi\":\"Alapértelmezett\",\"JtI4vj\":\"Alapértelmezett résztvevői információgyűjtés\",\"ULjv90\":\"Default capacity per date\",\"3R/Tu2\":\"Alapértelmezett díjkezelés\",\"1bZAZA\":\"Alapértelmezett sablon lesz használva\",\"HNlEFZ\":\"törlés\",\"KpnwJK\":[\"Törli a következőt: \\\"\",[\"0\"],\"\\\"?\"],\"BlII4o\":[\"Delete \",[\"count\"],\" selected date(s)? Dates with orders will be skipped. This cannot be undone.\"],\"vu7gDm\":\"Partner törlése\",\"KZN4Lc\":\"Összes törlése\",\"6EkaOO\":\"Delete Date\",\"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\":\"Delete Permanently\",\"dPyJ15\":\"Sablon törlése\",\"IQTR34\":\"Delete this category? Any products in it will also be deleted. This cannot be undone.\",\"/1wMxk\":\"Delete this product? This cannot be undone.\",\"mxsm1o\":\"Törli ezt a kérdést? Ez nem vonható vissza.\",\"snMaH4\":\"Webhook törlése\",\"LIZZLY\":[\"Deleted \",[\"0\"],\" date(s)\"],\"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\":\"Different location\",\"E/QGRL\":\"Disabled\",\"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.\",\"HtaSQp\":\"Megjeleníti, hány hely maradt az egyes időpontokra a jegyvásárló felületen. Ezt időpontonként felülbírálhatja.\",\"pfa8F0\":\"Megjelenített név\",\"Kdpf90\":\"Ne felejtse el!\",\"352VU2\":\"Nincs fiókja? <0>Regisztráljon\",\"AXXqG+\":\"Adomány\",\"DPfwMq\":\"Kész\",\"JoPiZ2\":\"Door staff instructions\",\"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 Stripe-fiókot kell csatlakoztatnia, mielőtt üzeneteket küldhetne a résztvevőknek.\\nEz biztosítja, hogy minden rendezvényszervező ellenőrzött és felelősségre vonható legyen.\",\"euc6Ns\":\"Duplikálás\",\"YueC+F\":\"Duplicate Date\",\"KRmTkx\":\"Termék másolása\",\"Jd3ymG\":\"Duration must be at least 1 minute.\",\"KIjvtr\":\"Holland\",\"22xieU\":\"pl. 180 (3 óra)\",\"/zajIE\":\"e.g. Morning Session\",\"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.\",\"Xfsjel\":\"Minden termék\",\"5oD9f/\":\"Earlier\",\"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\":\"Edit Date\",\"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\":\"Edited\",\"uBAxNB\":\"Szerkesztő\",\"aqxYLv\":\"Oktatás\",\"iiWXDL\":\"Jogosultsági hibák\",\"zPiC+q\":\"Jogosult bejelentkezési listák\",\"SiVstt\":\"Email & scheduled messages\",\"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\":\"Embeddable 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\":\"End\",\"sGjBEq\":\"Befejezés dátuma és ideje (opcionális)\",\"PKXt9R\":\"A befejezés dátumának a kezdő dátum után kell lennie.\",\"ZayGC7\":\"End on a date\",\"48Y16Q\":\"Befejezés ideje (opcionális)\",\"TbaYrr\":[\"Ended \",[\"0\"]],\"CFgwiw\":[\"Ends \",[\"0\"]],\"SqOIQU\":\"Enter a capacity value or choose unlimited.\",\"h37gRz\":\"Enter a label or choose to remove it.\",\"7YZofi\":\"Írjon be egy tárgyat és törzset az előnézet megtekintéséhez\",\"khyScF\":\"Enter a time to shift by.\",\"SKx/0u\":\"Adja meg a helyszín nevét vagy címét\",\"ppwojw\":\"Személyes eseményekhez adjon meg helyszínnevet vagy címet\",\"j+eCIq\":\"Cím megadása kézzel\",\"3bR1r4\":\"Adja meg a partner e-mail címét (opcionális)\",\"ARkzso\":\"Adja meg a partner nevét\",\"ej4L8b\":\"Enter capacity\",\"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)\",\"RRlWVA\":\"Teljes rendelés\",\"o21Y+P\":\"entries\",\"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\",\"+v+GW0\":\"Esemény dátumának megjelenítése\",\"7u9/DO\":\"Az esemény sikeresen törölve\",\"imgKgl\":\"Esemény leírása\",\"IzR/Fc\":\"Event lifetime\",\"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ő\",\"mImacG\":\"Eseményoldal\",\"Hk9Ki/\":\"Az esemény sikeresen visszaállítva\",\"JyD0LH\":\"Esemény beállítások\",\"XVLu2v\":\"Esemény címe\",\"OfmsI9\":\"Az esemény túl új\",\"4SILkp\":\"Event totals\",\"YDVUVl\":\"Eseménytípusok\",\"+HeiVx\":\"Esemény frissítve\",\"19j6uh\":\"Események teljesítménye\",\"PC3/fk\":\"Következő 24 órában kezdődő események\",\"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\":\"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 sikertelen\",\"PO0cfn\":\"Failed to cancel date\",\"YUX+f+\":\"Failed to cancel dates\",\"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\":\"Failed to create schedule\",\"U66oUa\":\"A sablon létrehozása sikertelen\",\"aFk48v\":\"A konfiguráció törlése sikertelen\",\"n1CYMH\":\"Failed to delete date\",\"KXv+Qn\":\"Failed to delete date. It may have existing orders.\",\"JJ0uRo\":\"Failed to delete dates\",\"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\",\"5E23qd\":\"Failed to delete product. Please try again.\",\"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\":\"Failed to reactivate date\",\"7zyx8a\":\"Nem sikerült eltávolítani a várólistáról\",\"A/P7PX\":\"Failed to remove override\",\"ogWc1z\":\"Failed to reopen date\",\"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\":\"Failed to save override\",\"sj/eZA\":\"Failed to save price override\",\"780n8A\":\"Failed to save product settings\",\"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 sikertelen\",\"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\":\"Family\",\"5LO38w\":\"Fast payouts to your bank\",\"4lgLew\":\"February\",\"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\":\"Filter attendees\",\"8OvVZZ\":\"Résztvevők szűrése\",\"N/H3++\":\"Filter by date\",\"mvrlBO\":\"Szűrés esemény szerint\",\"g+xRXP\":\"Finish setting up Stripe\",\"LHH461\":\"Finish setup\",\"syyeb9\":\"First\",\"Vj6wk9\":\"First 30 days\",\"/bpZYb\":\"First 7 days\",\"ziEnjY\":\"First 90 days\",\"1vBhpG\":\"Első résztvevő\",\"4pwejF\":\"A keresztnév kötelező\",\"rVogsf\":\"A közzétételhez javítsd a problémákat\",\"3lkYdQ\":\"Fixed fee\",\"6bBh3/\":\"Fix díj\",\"zWqUyJ\":\"Tranzakciónkénti fix díj\",\"LWL3Bs\":\"A fix díjnak 0 vagy nagyobbnak kell lennie\",\"0RI8m4\":\"Flash off\",\"q0923e\":\"Flash on\",\"X+U6/w\":\"Betűcsalád\",\"lWxAUo\":\"Étel és ital\",\"nFm+5u\":\"Lábléc szövege\",\"a8nooQ\":\"Fourth\",\"wtuVU4\":\"Frequency\",\"xVhQZV\":\"Fri\",\"39y5bn\":\"Friday\",\"f5UbZ0\":\"Full data ownership\",\"cfvx/y\":\"Full event\",\"MY2SVM\":\"Teljes visszatérítés\",\"PGQLdy\":\"future\",\"8N/j1s\":\"Future dates only\",\"yRx/6K\":\"Future dates will be copied with capacity reset to zero\",\"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\":\"Get Paid\",\"lGYzP6\":\"Get paid with Stripe\",\"ZDIydz\":\"Kezdés\",\"u6FPxT\":\"Jegyek vásárlása\",\"8KDgYV\":\"Készítse elő eseményét\",\"RkXlPZ\":\"GitHub\",\"sr0UJD\":\"Go Back\",\"oNL5vN\":\"Esemény oldalra\",\"gHSuV/\":\"Ugrás a főoldalra\",\"8+Cj55\":\"Go to Schedule\",\"6nDzTl\":\"Jó olvashatóság\",\"76gPWk\":\"Got it\",\"CZXzs4\":\"Görög\",\"aGWZUr\":\"Bruttó bevétel\",\"n8IUs7\":\"Bruttó bevétel\",\"O1wAlQ\":\"Guest\",\"LIYoRQ\":\"Vendégkezelés\",\"NUsTc4\":\"Happening now\",\"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\":\"Hi,\",\"/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\":\"Hide details\",\"FmogyU\":\"Opciók elrejtése\",\"uXNYjR\":\"Elkelt időpontok elrejtése\",\"g9RcYX\":\"Dátum elrejtése\",\"uMwTx7\":\"Elrejti ezt a kategóriát?\",\"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\":\"Hobbies\",\"yY8wAv\":\"Hours\",\"49Tkiw\":\"Hogyan kerül alkalmazásra a kedvezmény?\",\"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\":\"How long does the schedule run?\",\"DMr2XN\":\"How often?\",\"cceMns\":\"How VAT is applied to the platform fees we charge you.\",\"FONsLE\":\"https://awesome-events.com\",\"htoh8N\":\"https://webhook-domain.com/webhook\",\"mkWad2\":\"Magyar\",\"8Wgd41\":\"Elismerem az adatkezelői felelősségeimet\",\"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\",\"CY3yHL\":\"Ha be van jelölve, ez a kategória rejtve marad a nyilvánosság elől.\",\"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\":[\"in last \",[\"0\"],\" min\"],\"u7r0G5\":\"In person — set a venue\",\"/LCAwL\":\"Folyamatban\",\"F1Xp97\":\"Egyéni résztvevők\",\"85e6zs\":\"Liquid token beszúrása\",\"CTWsuc\":\"Instagram\",\"VopR6B\":\"Instant Stripe payouts\",\"nbfdhU\":\"Integrációk\",\"I8eJ6/\":\"Internal notes on the attendee's ticket\",\"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\",\"Dn4OyV\":\"Meghívva\",\"IuMGvq\":\"Számla\",\"a/bUcL\":\"It happens on more than one date\",\"d+Oe9r\":\"It may have been unpublished or removed. Please check the link and try again.\",\"Lj7sBL\":\"Olasz\",\"F5/CBH\":\"tétel(ek)\",\"BzfzPK\":\"Tételek\",\"rjyWPb\":\"January\",\"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\":[\"Csatlakozás a várólistához: \",[\"productDisplayName\"]],\"2gMuHR\":\"Csatlakozott\",\"u4ex5r\":\"July\",\"zeEQd/\":\"June\",\"MxjCqk\":\"Csak a jegyeit keresi?\",\"xOTzt5\":\"just now\",\"0RihU9\":\"Just wrapped\",\"lB2hSG\":[\"Tartsanak naprakészen a \",[\"0\"],\" híreivel és eseményeivel\"],\"ioFA9i\":\"Keep the profit.\",\"o66QSP\":\"label updates\",\"RtKKbA\":\"Last\",\"DruLRc\":\"Elmúlt 14 nap\",\"ve9JTU\":\"A vezetéknév kötelező\",\"h0Q9Iw\":\"Utolsó válasz\",\"gw3Ur5\":\"Utoljára aktiválva\",\"FIq1Ba\":\"Later\",\"xvnLMP\":\"Latest check-ins\",\"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\":\"Világos\",\"1qY5Ue\":\"A link lejárt vagy érvénytelen\",\"gggTBm\":\"LinkedIn\",\"nvOPBA\":\"Linkek engedélyezve\",\"2BBAbc\":\"List\",\"dF6vP6\":\"Élő\",\"fpMs2Z\":\"ÉLŐ\",\"D9zTjx\":\"Élő események\",\"C33p4q\":\"Loaded dates\",\"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\",\"7w8lJU\":\"Helyszín mentve\",\"YsRXDD\":\"Helyszín frissítve\",\"A/kIva\":\"location updates\",\"iyZPPR\":\"helyszín\",\"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\",\"PSRm6/\":\"Jegyeim keresése\",\"yJFu/X\":\"Központi iroda\",\"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\":\"Kezelje eseménye várólistáját, tekintse meg a statisztikákat és ajánljon jegyeket a résztvevőknek.\",\"g2npA5\":\"Manuális ajánlat\",\"hg6l4j\":\"March\",\"pqRBOz\":\"Mark as validated (admin override)\",\"2L3vle\":\"Max üzenetek / 24ó\",\"Qp4HWD\":\"Max címzettek / üzenet\",\"3JzsDb\":\"May\",\"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\":\"Minutes\",\"zz/Wd/\":\"Mode\",\"fpMgHS\":\"Mon\",\"hty0d5\":\"Monday\",\"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\":\"month\",\"HajiZl\":\"Hónap\",\"+8Nek/\":\"Monthly\",\"1LkxnU\":\"Monthly Pattern\",\"6jefe3\":\"months\",\"f8jrkd\":\"more\",\"JcD7qf\":\"More actions\",\"w36OkR\":\"Legnézettebb események (Elmúlt 14 nap)\",\"+Y/na7\":\"Move all dates earlier or later\",\"3DIpY0\":\"Multiple locations\",\"g9cQCP\":\"Multiple ticket types\",\"GfaxEk\":\"Zene\",\"oVGCGh\":\"Jegyeim\",\"8/brI5\":\"Név kötelező\",\"sFFArG\":\"A névnek rövidebbnek kell lennie 255 karakternél\",\"xxU3NX\":\"Nettó bevétel\",\"7I8LlL\":\"New capacity\",\"n1GRql\":\"New label\",\"y0Fcpd\":\"Új helyszín\",\"ArHT/C\":\"Új regisztrációk\",\"uK7xWf\":\"New time:\",\"veT5Br\":\"Next occurrence\",\"WXtl5X\":[\"Next: \",[\"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\":\"No attendees to show\",\"PKySlW\":\"No attendees yet for this date.\",\"/UC6qk\":\"Nem található hozzárendelési adat\",\"E2vYsO\":\"No capabilities reported by Stripe yet.\",\"amMkpL\":\"Nincs kapacitás\",\"d2Jf1f\":\"No change\",\"99ntUF\":\"Nincs elérhető bejelentkezési lista ehhez az eseményhez.\",\"wG+knX\":\"No check-ins yet\",\"+dAKxg\":\"Nem találhatók konfigurációk\",\"LiLk8u\":\"No connections available\",\"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.\",\"Zc216S\":\"No date added\",\"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\",\"OtJSnL\":\"Nincsenek ütemezett időpontok\",\"gEdNe8\":\"No dates scheduled yet\",\"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\":\"Még nincsenek események\",\"Yc5YW6\":\"Nincs sikertelen feladat\",\"EpvBAp\":\"Nincs számla\",\"XZkeaI\":\"Nem található napló\",\"IcAC6J\":\"Nincs találat\",\"nrSs2u\":\"Nem található üzenet\",\"Rj99yx\":\"No occurrences available\",\"IFU1IG\":\"No occurrences on this date\",\"OVFwlg\":\"Még nincsenek rendelési kérdések\",\"EJ7bVz\":\"Nem találhatók rendelések\",\"NEmyqy\":\"Még nincsenek megrendelések\",\"a77B6w\":\"No orders yet for this date.\",\"wUv5xQ\":\"Nincs szervezői tevékenység az elmúlt 14 napban\",\"vLd1tV\":\"No organizer context available.\",\"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\":\"No products configured for this event.\",\"kY7XDn\":\"Nincs várólistás bejegyzéssel rendelkező termék\",\"8mw4tm\":\"Üzenet termékek hiányában\",\"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\",\"59OWd3\":\"Nincsenek mentett helyszínek\",\"mPdY6W\":\"Nincsenek javaslatok\",\"3sRuiW\":\"Nem találhatók jegyek\",\"debCrL\":\"Nincsenek eladható jegyek\",\"k2C0ZR\":\"No upcoming dates\",\"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\":\"non-edited\",\"Itw24Q\":\"Not checked in\",\"x5+Lcz\":\"Nincs bejelentkezve\",\"8n10sz\":\"Nem jogosult\",\"kLvU3F\":\"Notify attendees and stop sales\",\"t9QlBd\":\"November\",\"kAREMN\":\"Number of dates to create\",\"6u1B3O\":\"Occurrence\",\"mmoE62\":\"Occurrence Cancelled\",\"V9flmL\":\"Occurrence Schedule\",\"Kh3WO8\":\"Occurrence Summary\",\"byXCTu\":\"Occurrences\",\"KATw3p\":\"Occurrences (future only)\",\"85rTR2\":\"Occurrences can be configured after creation\",\"dzQfDY\":\"October\",\"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.\"],\"6Aih4U\":\"Offline\",\"nO3VbP\":[\"Értékesítésben \",[\"0\"]],\"oXOSPE\":\"Online\",\"aqmy5k\":\"Online — provide connection details\",\"LuZBbx\":\"Online & in-person\",\"IXuOqt\":\"Online & in-person — see schedule\",\"WjSpu5\":\"Online esemény\",\"scPxI/\":[\"Már csak \",[\"capacity\"],\" maradt\"],\"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\",\"wkpaqp\":\"Csak a kezdési dátum és időpont megjelenítése\",\"DMk8F0\":\"Only tickets count toward capacity\",\"M2w1ni\":\"Csak promóciós kóddal látható\",\"y8Bm7C\":\"Open check-in\",\"RLz7P+\":\"Open occurrence\",\"cDSdPb\":\"A választókban megjelenő opcionális elnevezés, 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\":\"or add a single date\",\"eBskDE\":\"Vagy engedélyezd az offline fizetést és tiltsd le a Stripe-ot\",\"dSeVIm\":\"order\",\"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\",\"xtQzag\":\"Order details\",\"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\",\"RQCXz6\":\"Rendelési limitek\",\"SO9AEF\":\"Rendelési limitek beállítva\",\"vu6Arl\":\"Megrendelés fizetettként megjelölve\",\"sLbJQz\":\"Rendelés nem található\",\"kvYpYu\":\"Rendelés nem található\",\"eJ8SvM\":\"Order number, purchase date, purchaser email\",\"FaPYw+\":\"Megrendelő\",\"eB5vce\":\"Megrendelők meghatározott termékkel\",\"CxLoxM\":\"Megrendelők termékekkel\",\"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\",\"3NT0Ck\":\"Rendelés törölve lett\",\"V5khLm\":\"orders\",\"sd5IMt\":\"Befejezett rendelések\",\"5It1cQ\":\"Exportált megrendelések\",\"UQ0ACV\":\"Rendelések összesen\",\"B/EBQv\":\"Rendelések:\",\"qtGTNu\":\"Organikus fiókok\",\"P/JHA4\":\"A szervező sikeresen archiválva\",\"S3CZ5M\":\"Szervezői irányítópult\",\"GzjTd0\":\"A szervező sikeresen törölve\",\"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\":\"Organizers\",\"/IX/7x\":\"Egyéb\",\"RsiDDQ\":\"Egyéb listák (Jegy nem szerepel)\",\"aDfajK\":\"Outdoors\",\"qMASRF\":\"Kimenő üzenetek\",\"iCOVQO\":\"Override\",\"GpFTEc\":\"Override fees on this organizer\",\"M9ZhMP\":\"Override price\",\"cnVIpl\":\"Override removed\",\"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\":\"Past due\",\"xTPjSy\":\"Múltbeli események\",\"/l/ckQ\":\"URL beillesztése\",\"URAE3q\":\"Szüneteltetve\",\"4fL/V7\":\"Fizetés\",\"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\":\"Payouts\",\"UbRKMZ\":\"Pending\",\"UkM20g\":\"Áttekintésre vár\",\"dPYu1F\":\"Résztvevőnként\",\"mQV/nJ\":\"per min\",\"+kvxv+\":\"rendelésenként\",\"VlXNyK\":\"Rendelésenként\",\"NhuGd7\":\"termékenként\",\"hauDFf\":\"Jegyenként\",\"mnF83a\":\"Százalékos díj\",\"TNLuRD\":\"Percentage fee (%)\",\"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\":\"Permanently remove this date\",\"6kPk3+\":\"Személyes adatok\",\"zmwvG2\":\"Telefon\",\"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\":\"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\":\"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\":\"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\":\"Please select a date and time\",\"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\":\"Position\",\"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\",\"Jm2AC3\":\"Price Tier\",\"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\":\"Product settings cannot be edited for cancelled dates.\",\"2339ej\":\"Product settings saved successfully\",\"ldVIlB\":\"Termék frissítve\",\"CP3D8G\":\"Progress\",\"JoKGiJ\":\"Promóciós kód\",\"k3wH7i\":\"Promóciós kód felhasználás és kedvezmény bontás\",\"tZqL0q\":\"promo codes\",\"oCHiz3\":\"Promo codes\",\"uEhdRh\":\"Csak promócióval\",\"dLm8V5\":\"A promóciós e-mailek fiók felfüggesztéshez vezethetnek\",\"W0ETyY\":\"Adjon meg legalább egy címmezőt (helyszín, utca, város vagy ország).\",\"2W/7Gz\":\"Provide the following before Stripe's next review to keep payouts flowing.\",\"EEYbdt\":\"Közzététel\",\"JcgJKc\":\"Közzététel mindenképp\",\"evDBV8\":\"Esemény közzététele\",\"2zEfOd\":\"Publish your event\",\"L7nrC8\":\"A közzététellel az eseményoldalad nyilvánossá válik, és megnyílik a regisztráció.\",\"dsFmM+\":\"Megvásárolt\",\"JunetL\":\"Purchaser\",\"phmeUH\":\"Purchaser email\",\"ywR4ZL\":\"QR code check-in\",\"oWXNE5\":\"Menny.\",\"biEyJ4\":\"Question answers\",\"k/bJj0\":\"Kérdések átrendezve\",\"b24kPi\":\"Várakozási sor\",\"lTPqpM\":\"Quick Tip\",\"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\":\"Reactivate this date? It will be reopened for future sales.\",\"RENQ6j\":\"Készen állsz az élesítésre?\",\"uqoRbb\":\"Real-time analytics\",\"xzRvs4\":[\"Termékfrissítések fogadása a \",[\"0\"],\"-től.\"],\"pLXbi8\":\"Legutóbbi fiók regisztrációk\",\"M1HGuR\":\"Recent activity\",\"3kJ0gv\":\"Recent Attendees\",\"qhfiwV\":\"Recent check-ins\",\"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\",\"WEYdDv\":\"Recommended\",\"wuhHPE\":\"Recurring\",\"asLqwt\":\"Ismétlődő esemény\",\"s3uzsK\":\"Ismétlődő esemény beállításai\",\"D0tAMe\":\"Recurring events\",\"JjMIKU\":\"Reddit\",\"HiGkFu\":\"Átirányítás a Stripe-ra...\",\"pnoTN5\":\"Ajánlási fiókok\",\"ACKu03\":\"Előnézet frissítése\",\"vuFYA6\":\"Refund all orders for these dates\",\"4cRUK3\":\"Refund all orders for this date\",\"fKn/k6\":\"Visszatérítés összege\",\"qY4rpA\":\"Visszatérítés sikertelen\",\"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\":\"Remaining\",\"Bjh87R\":\"Remove label from all dates\",\"IVZaEo\":\"Teljesen eltávolítja az elkelt időpontokat az esemény oldaláról. Ha ki van kapcsolva, láthatóak maradnak, és elkeltként jelennek meg.\",\"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\":\"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\":\"Reset to base price\",\"kCn6wb\":\"Visszaállítás...\",\"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\":\"results\",\"6gRgw8\":\"Újrapróbálás\",\"1BG8ga\":\"Összes újrapróbálása\",\"rDC+T6\":\"Feladat újrapróbálása\",\"CbnrWb\":\"Vissza az eseményhez\",\"Lf7TCn\":\"Az újrafelhasználható helyszínek automatikusan megjelennek itt, amikor címmel rendelkező eseményeket hoz létre, és sajátokat is hozzáadhat.\",\"mdQ0zb\":\"Újrafelhasználható helyszínek az eseményeihez. Az automatikus kiegészítésből létrehozott helyszínek automatikusan ide kerülnek mentésre.\",\"XFOPle\":\"Reuse\",\"1Zehp4\":\"Reuse a Stripe connection from another organizer in this account.\",\"Oo/PLb\":\"Bevételi összefoglaló\",\"CfuueU\":\"Ajánlat visszavonása\",\"RIgKv+\":\"Run until a specific date\",\"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\":\"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\":\"É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\":\"Sales, attendance, and check-in breakdown per occurrence\",\"3VnlS9\":\"Értékesítések, rendelések és teljesítménymutatók minden eseményhez\",\"3Q1AWe\":\"Értékesítések:\",\"LeuERW\":\"Same as event\",\"B4nE3N\":\"Minta jegyár\",\"8BRPoH\":\"Minta helyszín\",\"PiK6Ld\":\"Sat\",\"+5kO8P\":\"Saturday\",\"zJiuDn\":\"Save fee override\",\"NB8Uxt\":\"Save Schedule\",\"KZrfYJ\":\"Közösségi linkek mentése\",\"9Y3hAT\":\"Sablon mentése\",\"C8ne4X\":\"Jegytervezés mentése\",\"cTI8IK\":\"Save VAT settings\",\"6/TNCd\":\"ÁFA beállítások mentése\",\"4RvD9q\":\"Mentett helyszín\",\"cgw0cL\":\"Mentett helyszínek\",\"Fbqm/I\":\"Saving an override creates a dedicated configuration for this organizer if it's currently on the system default.\",\"I+FvbD\":\"Beolvasás\",\"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\":\"Ütemezés későbbre\",\"NAzVVw\":\"Üzenet ütemezése\",\"Fz09JP\":\"Schedule starts on\",\"4ba0NE\":\"Ütemezett\",\"qcP/8K\":\"Ütemezett időpont\",\"A1taO8\":\"Search\",\"ftNXma\":\"Partnerek keresése...\",\"VMU+zM\":\"Search attendees\",\"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...\",\"YnMfsK\":\"Keresés név vagy cím 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\":\"Search by name, order #, ticket # or email\",\"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\":\"Search dates...\",\"iRtEpV\":\"Search dates…\",\"JRM7ao\":\"Search for an address\",\"BWF1kC\":\"Üzenetek keresése...\",\"5WYZKZ\":\"Keresési találatok\",\"IG85fV\":\"Keressen mentett helyszínek között, vagy találjon meg egy címet...\",\"3aD3GF\":\"Seasonal\",\"ku//5b\":\"Second\",\"Mck5ht\":\"Biztonságos pénztár\",\"s7tXqF\":\"See schedule\",\"JFap6u\":\"See what Stripe still needs\",\"p7xUrt\":\"Válasszon egy kategóriát\",\"hTKQwS\":\"Select a Date & Time\",\"Ps6Xtf\":\"Select a date to see available times\",\"e4L7bF\":\"Válasszon egy üzenetet a tartalom megtekintéséhez\",\"zPRPMf\":\"Válasszon szintet\",\"BFRSTT\":\"Fiók kiválasztása\",\"wgNoIs\":\"Select all\",\"mCB6Je\":\"Összes kiválasztása\",\"aCEysm\":[\"Select all on \",[\"0\"]],\"a6+167\":\"Válasszon eseményt\",\"CFbaPk\":\"Résztvevő csoport kiválasztása\",\"88a49s\":\"Select camera\",\"tVW/yo\":\"Pénznem kiválasztása\",\"SJQM1I\":\"Select date\",\"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\":\"Select occurrence\",\"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\":\"selected\",\"ylXj1N\":\"Kiválasztva\",\"uq3CXQ\":\"Sell out your event.\",\"oBXbO4\":\"Selling a physical product? Cap its quantity on the <0>products page instead.\",\"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\":\"Send to all occurrences, or choose a specific one\",\"QEQlnV\":\"Küldje el első üzenetét\",\"IoAuJG\":\"Küldés...\",\"h69WC6\":\"Elküldve\",\"BVu2Hz\":\"Küldte\",\"ZFa8wv\":\"Sent to attendees when a scheduled date is cancelled\",\"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\":\"September\",\"5sN96e\":\"Session cancelled\",\"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\":\"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\":\"Bejelentkezési listák beállítása különböző bejáratokhoz, munkamenetekhez vagy napokhoz.\",\"TaWVGe\":\"Set up payouts\",\"JA//e6\":\"Set up schedule\",\"gzXY7l\":\"Set Up Schedule\",\"0Ls9qe\":\"Set up the tickets you'll sell and their prices\",\"xMO+Ao\":\"Állítsa be szervezetét\",\"5pEFnq\":\"Set up your schedule\",\"h/9JiC\":\"Set Up Your Schedule\",\"zRRuUD\":\"Set up your schedule in the next steps\",\"ETC76A\":\"Set, change, or remove the date's location or online details\",\"C3htzi\":\"Beállítás frissítve\",\"Ohn74G\":\"Beállítás és tervezés\",\"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\":\"Partnerlink megosztása\",\"hL7sDJ\":\"Szervezői oldal megosztása\",\"jy6QDF\":\"Megosztott kapacitás kezelés\",\"jDNHW4\":\"Shift times\",\"tPfIaW\":[\"Shifted times for \",[\"count\"],\" date(s)\"],\"WwlM8F\":\"Speciális beállítások megjelenítése\",\"cMW+gm\":[\"Összes platform megjelenítése (további \",[\"0\"],\" értékkel)\"],\"wXi9pZ\":\"Show attendee notes to non-logged-in staff\",\"4LZFir\":\"Teljes dátumtartomány megjelenítése\",\"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\",\"b33PL9\":\"Több platform megjelenítése\",\"Eut7p9\":\"Show order details to non-logged-in staff\",\"+RoWKN\":\"Show question answers to non-logged-in staff\",\"jbcx6L\":\"Show remaining capacity on event dates\",\"rXxBOx\":\"Show remaining capacity to buyers\",\"t1LIQW\":[[\"0\"],\" / \",[\"totalRows\"],\" rekord megjelenítése\"],\"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\":\"Regisztrált\",\"5C7J+P\":\"Single Event\",\"E//btK\":\"Skip manually edited dates\",\"paESr6\":\"Szlovák\",\"9wu8nm\":\"Snapchat\",\"kIKb9e\":\"Közösségi\",\"d0rUsW\":\"Közösségi linkek\",\"j/TOB3\":\"Közösségi linkek és weboldal\",\"s9KGXU\":\"Eladva\",\"yp+0jj\":\"sold out\",\"1hupow\":\"Elfogyott, várólista elérhető\",\"iACSrw\":\"Some details are hidden from public access. Log in to view everything.\",\"Dia6iz\":\"Something went wrong while deleting the image. Please try again.\",\"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\":\"Spirituality\",\"oPaRES\":\"Split check-in across days, areas, or ticket types. Share the link with staff — no account needed on their end.\",\"7JFNej\":\"Sport\",\"/bfV1Y\":\"Staff instructions\",\"tXkhj/\":\"Start\",\"StWUH4\":\"Start check-in\",\"JcQp9p\":\"Kezdés dátuma és ideje\",\"0m/ekX\":\"Kezdés dátuma és ideje\",\"izRfYP\":\"Kezdés dátuma kötelező\",\"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/\":\"Statisztikák\",\"GVUxAX\":\"A statisztikák a fiók létrehozásának dátumán alapulnak\",\"29Hx9U\":\"Stats\",\"5ia+r6\":\"Still needed\",\"wuV0bK\":\"Megszemélyesítés leállítása\",\"s/KaDb\":\"Stripe connected\",\"Bk06QI\":\"Stripe csatlakoztatva\",\"akZMv8\":[\"Stripe connection copied from \",[\"0\"],\".\"],\"v0aRY1\":\"Stripe didn't return a setup link. Please try again.\",\"aKtF0O\":\"Stripe nincs csatlakoztatva\",\"9i0++A\":\"Stripe fizetési azonosító\",\"R1lIMV\":\"Stripe will need a few more details soon\",\"FzcCHA\":\"Stripe will walk you through a few quick questions to finish setup.\",\"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\",\"kRWc2g\":\"Az ismétlődő esemény beállításai 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\":\"Sun\",\"DBC3t5\":\"Sunday\",\"UaISq3\":\"Svéd\",\"JZTQI0\":\"Szervező váltása\",\"9YHrNC\":\"Rendszer alapértelmezett\",\"lruQkA\":\"Tap this screen to resume scanning\",\"TJUrME\":[\"Targeting attendees across \",[\"0\"],\" selected sessions.\"],\"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\":\"Team collaboration\",\"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\":\"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\":\"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\",\"nm3Iz/\":\"Köszönjük, hogy részt vett!\",\"pYwj0k\":\"Thanks,\",\"k3IitN\":\"That's a wrap\",\"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.\",\"7oksH+\":[\"A kedvezmény minden jogosult termékből levonásra kerül. Pl. \",[\"currencySymbol\"],\"10 kedvezmény × 3 jegy = \",[\"currencySymbol\"],\"30 kedvezmény.\"],\"sKL8k2\":\"A kedvezmény egyszer kerül levonásra a rendelés végösszegéből.\",\"cDHM1d\":\"Az e-mail cím megváltozott. A résztvevő új jegyet kap a frissített e-mail címre.\",\"tXadb0\":\"A keresett esemény jelenleg nem elérhető. Lehet, hogy eltávolították, lejárt, vagy az URL hibás.\",\"5fPdZe\":\"The first date this schedule will generate from.\",\"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.\",\"Np4eLs\":[\"The maximum is \",[\"MAX_PREVIEW\"],\" sessions. Please reduce the date range, frequency, or number of sessions per day.\"],\"sYLeDq\":\"A keresett szervező nem található. Lehet, hogy az oldalt áthelyezték, törölték, vagy az URL hibás.\",\"PCr4zw\":\"The override is recorded in the order audit log.\",\"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\",\"OVSkIF\":\"A gyors barna róka átugrik a lusta kutyán.\",\"z0KrIG\":\"Az ütemezett időpont megadása kötelező\",\"EWErQh\":\"Az ütemezett időpontnak a jövőben kell lennie\",\"UNd0OU\":[\"The session for \\\"\",[\"title\"],\"\\\" originally scheduled for \",[\"0\"],\" has been rescheduled.\"],\"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\",\"ybBP2H\":\"There are no products available for this date. Please choose another date.\",\"O7g4eR\":\"There are no upcoming dates for this event\",\"062KsE\":\"These details are shown on the attendee's ticket and order summary for this date only.\",\"5Eu+tn\":\"Ezek az adatok csak a rendelés sikeres teljesítése után jelennek meg.\",\"jQjwR+\":\"These details will replace any existing location on the affected dates and show on attendee tickets.\",\"6eaLu/\":\"Ezek az árak a menetrend összes időpontjára érvényesek, a szintek mennyiségei pedig az összes időpont együttes eladásait korlátozzák. A szintek értékesítési dátumai globálisan érvényesek. Az egyes időpontok árait az <0>Időpontok ütemezése oldalon írhatja felül.\",\"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\":\"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\":\"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/\":[\"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.\",\"E9BqZw\":\"This date only\",\"RzEvf5\":\"Ez az esemény véget ért\",\"kc4bIA\":\"Ennek az eseménynek még nincsenek jegyei vagy termékei, így a résztvevők nem tudnak regisztrálni.\",\"eMaNd0\":\"This event is not available\",\"YClrdK\":\"Ez az esemény még nem került közzétételre.\",\"GL6z+k\":\"Erre az eseményre minden jegy elkelt\",\"pIwDhS\":\"This event's dates and times are set on the occurrence schedule.\",\"ny5rgr\":\"This is a recurring event\",\"tc64Zz\":\"Ez a kategória neve, amely az esemény oldalán jelenik meg.\",\"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.\",\"5DpZrC\":\"Ez az összes időpont együttes eladásait korlátozza – nem időpontonkénti korlát. Az egyes időpontok létszámának korlátozásához állítson be kapacitást az <0>Időpontok ütemezése oldalon.\",\"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\":\"This occurrence is at capacity\",\"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\",\"qEGn8I\":\"Ennek az ismétlődő eseménynek még nincsenek időpontjai, így a résztvevők nem tudnak foglalni.\",\"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.\",\"1LuJNw\":\"Ez a jegy már nem érvényes\",\"0Ew0uk\":\"Ez a jegy most lett beolvasva. Kérjük, várjon mielőtt újra beolvassa.\",\"FYXq7k\":[\"This will affect \",[\"loadedAffectedCount\"],\" date(s).\"],\"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\":\"Throughput\",\"+FjWgX\":\"Thu\",\"kkDQ8m\":\"Thursday\",\"0GSPnc\":\"Jegy tervezés\",\"EZC/Cu\":\"Jegy tervezés sikeresen mentve\",\"bbslmb\":\"Jegy tervező\",\"1BPctx\":\"Jegy ehhez:\",\"HGuXjF\":\"Jegytulajdonosok\",\"CMUt3Y\":\"Jegytulajdonosok\",\"awHmAT\":\"Jegy azonosító\",\"6czJik\":\"Jegy logó\",\"t79rDv\":\"Jegy nem található\",\"6tmWch\":\"Jegy vagy termék\",\"1tfWrD\":\"Jegy előnézet ehhez:\",\"KnjoUA\":\"Jegyár\",\"pGZOcL\":\"Jegy sikeresen újraküldve\",\"o02GZM\":\"Ticket sales have ended for this event\",\"8jLPgH\":\"Jegy típusa\",\"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\":\"Time\",\"fXf2r5\":[\"Times shown in \",[\"timezoneAbbr\"]],\"dMtLDE\":\"to\",\"/jQctM\":\"Címzett\",\"tiI71C\":\"A korlátozások emeléséhez lépjen kapcsolatba velünk\",\"ecUA8p\":\"Today\",\"W428WC\":\"Oszlopok kapcsolása\",\"BRMXj0\":\"Tomorrow\",\"UBSG1X\":\"Legjobb szervezők (Elmúlt 14 nap)\",\"3sZ0xx\":\"Összes fiók\",\"SMDzqJ\":\"Összes résztvevő\",\"orBECM\":\"Összesen beszedve\",\"k5CU8c\":\"Összes bejegyzés\",\"4B7oCp\":\"Összesített díj\",\"sMMlTX\":\"Total fees\",\"mlvCEl\":\"Total orders\",\"2AW/k5\":\"Teljes mennyiség az összes időpontra\",\"dp8BCb\":\"Total tax\",\"vb0Q0/\":\"Összes felhasználó\",\"oJjplO\":\"Összes megtekintés\",\"rBZ9pz\":\"Tours\",\"orluER\":\"Kövesse nyomon a fióknövekedést és teljesítményt hozzárendelési forrás szerint\",\"YwKzpH\":\"Követés és elemzés\",\"GUA0Jy\":\"Try a different search term or filter\",\"2P/OWN\":\"Try adjusting your filters to see more dates.\",\"ouM5IM\":\"Próbáljon másik e-mailt\",\"3DZvE7\":\"Próbálja ki a Hi.Events-et ingyen\",\"vq2WxD\":\"Tue\",\"G3myU+\":\"Tuesday\",\"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\",\"nWRfmt\":\"Tipográfia\",\"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\":\"Unable to load attendee details.\",\"GlnD5Y\":\"Unable to load products for this date. Please try again.\",\"17VbmV\":\"Unable to undo check-in\",\"n57zCW\":\"Nem hozzárendelt fiókok\",\"9uI/rE\":\"Undo\",\"Ef7StM\":\"Ismeretlen\",\"ZBAScj\":\"Ismeretlen résztvevő\",\"MEIAzV\":\"Névtelen\",\"K6L5Mx\":\"Névtelen helyszín\",\"7yiFvZ\":\"Fizetetlen\",\"X13xGn\":\"Nem megbízható\",\"gyXpQN\":\"Upcoming events\",\"Pp1sWX\":\"Partner frissítése\",\"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\":\"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 scanner listening\",\"dyTklH\":\"USB scanner paused\",\"OHJXlK\":\"Használjon <0>Liquid sablonokat az e-mailek személyre szabásához\",\"/rsy72\":\"Use event default\",\"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.\",\"bA31T4\":\"Vásárló adatainak használata minden résztvevőhöz\",\"PpgtnC\":\"Cím használata\",\"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\":\"VAT number\",\"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\":\"VAT registered\",\"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\":\"VAT settings updated\",\"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\":\"VAT: not registered\",\"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\":\"View All\",\"yA/6BX\":\"View all →\",\"6CQ7/B\":\"View all capabilities\",\"YSE15b\":\"View all check-in lists\",\"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\":[\"View details for \",[\"0\"],\" \",[\"1\"]],\"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\":\"Waiting for scan…\",\"u0n+wz\":\"Várólista\",\"3RXFtE\":\"Várólista engedélyezve\",\"TwnTPy\":\"Várólista ajánlat lejárt\",\"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.\",\"aT/44s\":\"We couldn't copy that Stripe connection. Please try again.\",\"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.\",\"Fjj/5/\":\"We couldn't load the check-in lists. Please try again.\",\"ADsQ23\":\"We couldn't reach Stripe just now. Please try again in a moment.\",\"HJKdzP\":\"Hiba történt az oldal betöltésekor. Kérjük, próbálja újra.\",\"jegrvW\":\"We partner with Stripe to send payouts straight to your bank account.\",\"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 annak megértéséhez, hogyan használják az oldalt, és hogy javítsuk az élményt.\",\"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.\",\"mfM/HJ\":[\"E-mailben értesítjük, ha hely szabadul fel a(z) \",[\"productDisplayName\"],\" számára ekkor: \",[\"occurrenceDate\"],\".\"],\"iy+M+c\":[\"E-mailben értesítjük, ha hely szabadul fel a(z) \",[\"productDisplayName\"],\" számára.\"],\"McuGND\":\"We'll open a message composer with a pre-filled template after saving. You review and send it — nothing is sent automatically.\",\"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\":[\"We've made changes to the schedule for \\\"\",[\"title\"],\"\\\" — \",[\"description\"],\" affecting \",[\"affectedCount\"],\" session(s).\"],\"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 integrations\",\"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\":\"Wed\",\"VAcXNz\":\"Wednesday\",\"64X6l4\":\"week\",\"4XSc4l\":\"Weekly\",\"IAUiSh\":\"weeks\",\"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\":\"What time?\",\"FaSXqR\":\"Milyen típusú esemény?\",\"0WyYF4\":\"What unauthenticated staff can see\",\"2+ExvJ\":\"WhatsApp\",\"cxsKvw\":\"Amikor egy bejelentkezés törölve lett\",\"RPe6bE\":\"When a date is cancelled on a recurring event\",\"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 csatlakozhatnak egy várólistához, hogy értesítést kapjanak, amikor helyek szabadulnak fel.\",\"OIkHj+\":\"Amikor egy termék elfogy, az ügyfelek csatlakozhatnak egy várólistához, hogy értesítést kapjanak, amikor helyek szabadulnak fel. Az ügyfelek egy adott dátumra iratkoznak fel a várólistára, és az ajánlatok dátumonként történnek.\",\"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ény archiválásra kerül\",\"gtoSzE\":\"Amikor egy esemény frissül\",\"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\":\"Amikor az ügyfelek jegyeket vásárolnak, megrendeléseik itt fognak megjelenni.\",\"pm9tpn\":\"Ha engedélyezve van, a vásárlók egyszerre másolhatják át nevüket és e-mail-címüket az összes résztvevőhöz. Kapcsolja ki, hogy eltávolítsa az \\\"Összes résztvevő\\\" lehetőséget; a vásárlók továbbra is átmásolhatják adataikat az első résztvevőhöz, a többit egyenként kell megadni.\",\"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.\",\"uchB0M\":\"Widget előnézet\",\"uvIqcj\":\"Műhely\",\"EpknJA\":\"Írja ide üzenetét...\",\"nhtR6Y\":\"X (Twitter)\",\"7qI8sJ\":\"year\",\"zkWmBh\":\"Yearly\",\"+BGee5\":\"years\",\"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+\":\"You can override this for individual dates later.\",\"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.\",\"D8baxD\":\"Fizetős jegyeid vannak, de a Stripe még nincs összekötve, így nem tudsz fizetéseket fogadni.\",\"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\":\"El kell ismernie felelősségeit a mentés előtt\",\"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/\":\"You need to create at least one occurrence before you can add attendees to this recurring event.\",\"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\":\"You'll be able to set up dates, schedules, and recurrence rules in the next step.\",\"zKAheG\":\"You're changing session times\",\"MNFIxz\":[\"El fog menni ide: \",[\"0\"],\"!\"],\"ZlLcht\":[\"Ön a következő dátumra iratkozik fel a várólistára: \",[\"occurrenceDate\"],\".\"],\"qGZz0m\":\"Felkerült a várólistára!\",\"/5HL6k\":\"Helyet ajánlottak neked!\",\"gbjFFH\":\"You've changed the session time\",\"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\":\"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\":\"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\":\"Várólista ajánlata lejárt és nem tudtuk teljesíteni rendelését. Kérjük, csatlakozzon újra a várólistához, hogy értesítést kapjon, amikor több hely szabadul fel.\",\"9Q6UKX\":\"YouTube\"}")}; \ No newline at end of file +/*eslint-disable*/module.exports={messages:JSON.parse("{\"f8qS7T\":\"'Még nincs semmi megjeleníthető'\",\"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 Main Street\",\"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\":\"Are you sure you want to make this event public? This will make the event visible to the public\",\"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\":\"Attendee Notes\",\"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\":\"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\":\"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\":\"Check-in\",\"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\":\"Testreszabhatja eseményoldalát\",\"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\":\"Dismiss\",\"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\":\"Event URL\",\"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\":\"No attendees have been added to this order.\",\"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\":\"No product associated with this attendee.\",\"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\":\"No questions answered by this attendee.\",\"SnlQeq\":\"No questions have been asked for this order.\",\"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 event\",\"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\":\"Order #\",\"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\":\"Order Notes\",\"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\":\"Üzemelteti\",\"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,\\nirányelvek vagy bármilyen fontos információ hozzáadásához, amelyet a résztvevőknek tudniuk kell a válaszadás 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\":\"Suite 100\",\"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\":\"View\",\"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\":\"(none)\",\"xYxQCZ\":[[\"0\"],\" \",[\"1\"]],\"lAOy2r\":[[\"0\"],\" \",[\"1\"],\" már bejelentkezett\"],\"3beCx0\":[[\"0\"],\" <0>checked in\"],\"S4PqS9\":[[\"0\"],\" aktív webhook\"],\"6MIiOI\":[[\"0\"],\" maradt\"],\"COnw8D\":[[\"0\"],\" logó\"],\"xG9N0H\":[[\"0\"],\" of \",[\"1\"],\" seats are taken.\"],\"B7pZfX\":[[\"0\"],\" szervező\"],\"/HkCs4\":[[\"0\"],\" jegy\"],\"30bTiU\":[[\"activeCount\"],\" enabled\"],\"jTs4am\":[[\"appName\"],\" logo\"],\"gbJOk9\":[[\"attendeeCount\"],\" attendees are registered for this session.\"],\"TjbIUI\":[[\"availableCount\"],\" / \",[\"totalCount\"],\" elérhető\"],\"PSChHo\":[[\"capacity\"],\" hely maradt\"],\"lzQ8/M\":[[\"checkedIn\"],\" / \",[\"total\"],\" checked in\"],\"RZ0JX3\":[[\"chipTime\"],\", elkelt\"],\"M4KnFs\":[[\"chipTime\"],\", Elfogyott, várólista elérhető\"],\"SeyN12\":[[\"completedCount\"],\" of \",[\"totalCount\"],\" steps complete\"],\"f2rhaD\":[[\"diffHr\"],\"h ago\"],\"NRSLBe\":[[\"diffMin\"],\"m ago\"],\"iYfwJE\":[[\"diffSec\"],\"s ago\"],\"OJnhhX\":[[\"eventCount\"],\" esemény\"],\"mhZbzw\":[[\"loadedAffectedAttendees\"],\" attendees are registered across the affected sessions.\"],\"RBuxIl\":[[\"productCount\"],\" ticket types configured\"],\"VFLd0I\":[[\"slotCount\"],\" times available\"],\"3IEF7U\":[[\"totalCount\"],\" jegytípus\"],\"0cLzoF\":[[\"totalOccurrences\"],\" dates\"],\"AEGc4t\":[[\"totalOccurrences\"],\" sessions across \",[\"0\"],\" dates (\",[\"1\",\"plural\",{\"one\":[\"#\",\" session\"],\"other\":[\"#\",\" sessions\"]}],\" per day)\"],\"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.\",\"Il5Uid\":\"<0>Ez az összes időpontra együttesen elérhető teljes mennyiség – nem időpontonkénti korlát. Az egyes időpontok létszámának korlátozásához állítson be kapacitást az <1>Időpontok ütemezése 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 attendee is registered across the affected sessions.\",\"qOyE2U\":\"1 attendee is registered for this session.\",\"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\",\"y2Jh0m\":\"1 time available\",\"cGtUz6\":\"1 héttel az esemény előtt\",\"HR/cvw\":\"Minta utca 123\",\"dgKxZ5\":\"135+ currencies & 40+ payment methods\",\"kMU5aM\":\"Lemondási értesítés elküldve ide:\",\"o++0qa\":\"a change in duration\",\"WuWSX5\":\"A few quick steps and you're ready to start selling.\",\"RQ5kDd\":\"Üzenet, amely akkor jelenik meg, ha nincsenek termékek ebben a kategóriában.\",\"V53XzQ\":\"Új ellenőrző kód került elküldésre az e-mail címére.\",\"sr2Je0\":\"a shift in start/end times\",\"/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\":\"Elfogadás\",\"K5+3xg\":\"Meghívó elfogadása\",\"jzb4Ep\":[\"Account · \",[\"0\"]],\"UqH1Q6\":[\"Account · \",[\"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\":\"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\":\"Egyedi kérdések hozzáadása további információk gyűjtéséhez a pénztárnál\",\"Z/dcxc\":\"Add Date\",\"QeupRg\":\"Időpontok hozzáadása\",\"Q219NT\":\"Add Dates\",\"yjB5VC\":\"Add dates and times for your recurring event\",\"Z8idyM\":\"Add details\",\"wpirGs\":\"Add event details\",\"VX6WUv\":\"Helyszín hozzáadása\",\"GCQlV2\":\"Add multiple times if you run several sessions per day.\",\"7JF9w9\":\"Kérdés hozzáadása\",\"NLbIb6\":\"Add this attendee anyway (override capacity)\",\"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ő kezdőlapjához. Egy cookie-hozzájárulási banner jelenik meg a látogatóknak, amikor a követés aktív.\",\"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\":\"Affiliate program\",\"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.\",\"3e31kI\":\"After your event is created, you can choose how often it repeats from the dashboard.\",\"z7GAMJ\":\"all\",\"N40H+G\":\"All\",\"7rLTkE\":\"Összes archivált esemény\",\"gKq1fa\":\"Minden résztvevő\",\"63gRoO\":\"All attendees of the selected sessions\",\"uWxIoH\":\"All attendees of this occurrence\",\"pMLul+\":\"Minden pénznem\",\"sgUdRZ\":\"All dates\",\"e4q4uO\":\"All Dates\",\"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\":\"All matching dates\",\"F1/VgK\":\"All occurrences\",\"OpWjMq\":\"All Occurrences\",\"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.\",\"VZdky1\":\"A vásárlók átmásolhatják adataikat az összes résztvevőhöz\",\"F3mW5G\":\"Lehetővé teszi az ügyfelek számára, hogy feliratkozzanak a várólistára, ha ez a termék elfogyott\",\"4CMO/q\":\"Lehetővé teszi az ügyfelek számára, hogy feliratkozzanak a várólistára, ha ez a termék elfogyott. Az ügyfelek egy adott dátumra iratkoznak fel a várólistára.\",\"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\":\"Already in\",\"/H326L\":\"Már visszatérítve\",\"USEpOK\":\"Already use Stripe on another organizer? Reuse that connection.\",\"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.\",\"OPFdAM\":\"A kategória opcionális leírása, amely az esemény oldalán jelenik meg.\",\"eusccx\":\"Opcionális üzenet a kiemelt termék megjelenítéséhez, pl. \\\"Gyorsan fogy 🔥\\\" vagy \\\"Legjobb ár\\\"\",\"5GJuNp\":[\"and \",[\"0\"],\" more...\"],\"QNrkms\":\"Válasz sikeresen frissítve.\",\"+qygei\":\"Answers\",\"GK7Lnt\":\"Answers provided at checkout (e.g. meal choice)\",\"lE8PgT\":\"Any dates you've manually customized will be kept.\",\"jVoYha\":[\"alkalmazva — \",[\"0\"],\" kedvezmény a rendelésére\"],\"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\":\"Üzenet jóváhagyása\",\"naCW6Z\":\"April\",\"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\":[\"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\":\"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/\":\"Are you sure you want to delete this date? This action cannot be undone.\",\"RiF/yT\":\"Are you sure you want to delete this image?\",\"b3+Qku\":\"Are you sure you want to delete this tax or fee? It will no longer be applied to new orders.\",\"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\":\"Are you sure you want to permanently delete this date? This cannot be undone.\",\"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?\",\"b7tkGp\":\"Are you sure you want to revoke this invitation?\",\"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\":\"Assign plan\",\"xdiER7\":\"Hozzárendelt szint\",\"F2rX0R\":\"Legalább egy eseménytípust ki kell választani.\",\"Z44eZS\":\"At least one product must stay available for this date. To make the date inaccessible, cancel it from the schedule instead.\",\"BCmibk\":\"Próbálkozások\",\"6PecK3\":\"Részvétel és bejelentkezési arányok minden eseményen\",\"K2tp3v\":\"attendee\",\"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\",\"94aQMU\":\"Résztvevő információk\",\"KkrBiR\":\"Résztvevői információk gyűjtése\",\"sjPjOg\":\"Attendee notes\",\"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\":\"attendees\",\"zLRobu\":\"attendees checked in\",\"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/\":\"August\",\"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 ajánljon jegyeket a következő személynek, amikor kapacitás szabadul fel. Ha letiltva, manuálisan dolgozhatja fel a várólistát a Várólista oldalról.\",\"csDS2L\":\"Elérhető\",\"Xp+ywP\":\"A fizetés befejezése után lesz elérhető\",\"dwDH1K\":[\"Available times on \",[\"dayName\"]],\"clF06r\":\"Visszatérítésre elérhető\",\"NB5+UG\":\"Elérhető tokenek\",\"L+wGOG\":\"Awaiting\",\"qcw2OD\":\"Awaiting pay\",\"kNmmvE\":\"Awesome Events Kft.\",\"TeSaQO\":\"Vissza a fiókokhoz\",\"kYqM1A\":\"Vissza az eseményhez\",\"s5QRF3\":\"Vissza az üzenetekhez\",\"td/bh+\":\"Vissza a jelentésekhez\",\"nsm7BA\":\"Vissza a kereséshez\",\"imjKVx\":\"Bank account connected\",\"D9LTCH\":\"Base Price\",\"hviJef\":\"Based on the global sale period above, not per date\",\"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\":\"Built-in fraud protection\",\"cr7kGH\":\"Bulk Edit\",\"1Fbd6n\":\"Bulk Edit Dates\",\"Eq6Tu9\":\"Bulk update failed.\",\"9N+p+g\":\"Üzlet\",\"SWnN1L\":\"Business address\",\"kQekXw\":\"Business name\",\"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. Ön felelős azért, hogy jogszerű alappal rendelkezzen ehhez az adatkezeléshez az alkalmazandó adatvédelmi jogszabályok (GDPR, CCPA stb.) szerint.\",\"DFqasq\":[\"A folytatással elfogadja a(z) <0>\",[\"0\"],\" Szolgáltatási feltételeket\"],\"wVSa+U\":\"By day of month\",\"0MnNgi\":\"By day of week\",\"CetOZE\":\"By ticket type\",\"lFdbRS\":\"Alkalmazási díjak megkerülése\",\"AjVXBS\":\"Calendar\",\"2VLZwd\":\"Cselekvésre ösztönző gomb\",\"rT2cV+\":\"Camera\",\"7hYa9y\":\"Camera permission was denied. <0>Request permission again, or grant this page camera access in your browser settings.\",\"D02dD9\":\"Kampány\",\"RRPA79\":\"Can't check in\",\"OcVwAd\":[\"Cancel \",[\"count\"],\" date(s)\"],\"H4nE+E\":\"Minden termék törlése és visszahelyezése a készletbe\",\"Py78q9\":\"Cancel Date\",\"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.\",\"FPpqc7\":[\"Cancelling \",[\"0\"],\" date(s). This may take a moment to complete.\"],\"01sEfm\":\"A rendszer alapértelmezett konfigurációja nem törölhető\",\"VsM1HH\":\"Kapacitás-hozzárendelések\",\"9bIMVF\":\"Capacity management\",\"H7K8og\":\"Capacity must be 0 or greater\",\"nzao08\":\"capacity updates\",\"4cp9NP\":\"Capacity Used\",\"K7tIrx\":\"Kategória\",\"DRK3Bq\":\"Category deleted successfully\",\"o+XJ9D\":\"Módosítás\",\"kJkjoB\":\"Change duration\",\"J0KExZ\":\"Change the attendee limit\",\"ssospy\":\"Change time\",\"CIHJJf\":\"Várólistás beállítások módosítása\",\"B5icLR\":[\"Changed duration for \",[\"count\"],\" date(s)\"],\"Kb+0BT\":\"Charges\",\"2tbLdK\":\"Jótékonyság\",\"BPWGKn\":\"Check in\",\"6uFFoY\":\"Check out\",\"FjAlwK\":[\"Check out this event: \",[\"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\":\"Check-In\",\"udRwQs\":\"Bejelentkezés létrehozva\",\"F4SRy3\":\"Bejelentkezés törölve\",\"as6XfO\":[\"Check-in for \",[\"0\"],\" was undone\"],\"9s/wrQ\":\"Check-in history\",\"Wwztk4\":\"Check-In List\",\"9gPPUY\":\"Bejelentkezési lista létrehozva\",\"dwjiJt\":\"Check-in list info\",\"7od0PV\":\"check-in lists\",\"f2vU9t\":\"Bejelentkezési listák\",\"XprdTn\":\"Check-in navigation\",\"5tV1in\":\"Check-in progress\",\"SHJwyq\":\"Bejelentkezési arány\",\"qCqdg6\":\"Bejelentkezési állapot\",\"cKj6OE\":\"Bejelentkezési összefoglaló\",\"7B5M35\":\"Bejelentkezések\",\"VrmydS\":\"Checked in\",\"DM4gBB\":\"Kínai (hagyományos)\",\"p8Jvp4\":\"Choose a configuration\",\"ElShBO\":\"Choose a different action\",\"pHEhf+\":\"Válasszon olyan betűtípust, amely illik a márkájához. A betűtípusokat a Bunny Fonts szolgáltatja.\",\"Zok1Gx\":\"Choose an organizer\",\"pkk46Q\":\"Válasszon szervezőt\",\"Ag32+c\":\"Choose another date\",\"Crr3pG\":\"Naptár kiválasztása\",\"Z38ZJu\":\"Válassza ki, hogyan jelenjen meg az esemény dátuma a jegyen\",\"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\":\"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\":\"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\":\"complete\",\"bUQMpb\":\"Complete Stripe setup\",\"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\":\"Configuration assigned\",\"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\":\"Configure which products are available for this occurrence and optionally adjust pricing.\",\"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\",\"/K4Vqr\":\"Kösd össze a Stripe-ot a fizetések fogadásához\",\"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\":\"Online eseményekhez kötelező megadni a csatlakozási adatokat\",\"jfC/xh\":\"Kapcsolat\",\"LOFgda\":[\"Kapcsolatfelvétel \",[\"0\"]],\"41BQ3k\":\"Kapcsolattartási e-mail\",\"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\",\"s30OcA\":\"Szabályozza, hogyan jelenjenek meg a dátumok és időpontok az esemény oldalán\",\"p2FRHj\":\"Szabályozza, hogyan kezelje a platformdíjakat ezen eseménynél\",\"NqfabH\":\"Control who gets in for this date\",\"fmYxZx\":\"Control who gets in, and when\",\"1JnTgU\":\"Másolva a fentiekből\",\"FxVG/l\":\"Vágólapra másolva\",\"PiH3UR\":\"Másolva!\",\"4i7smN\":\"Copy account ID\",\"uUPbPg\":\"Partneri link másolása\",\"iVm46+\":\"Kód másolása\",\"cF2ICc\":\"Ügyféllink 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\":\"Could not prepare the bulk update.\",\"KOavaU\":\"Nem sikerült lekérni a cím adatait\",\"/lq4oO\":\"Could not save date\",\"mHu0az\":\"Couldn't send verification email. Please try again.\",\"QOIm+S\":\"A számok az összes közelgő dátumot tartalmazzák. Mindenki arra a dátumra kap helyet, amelyre feliratkozott.\",\"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\":\"Covers every ticket\",\"zg4oSu\":[[\"0\"],\" sablon létrehozása\"],\"RKKhnW\":\"Hozzon létre egyedi widgetet jegyek értékesítéséhez a webhelyén.\",\"6sk7PP\":\"Create a fixed number\",\"jqhTmw\":\"Create a list for this date\",\"PhioFp\":\"Create a new check-in list for an active session, or contact the organizer if you think this is a mistake.\",\"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\":\"Create Date\",\"Nc3l/D\":\"Kedvezmények, hozzáférési kódok rejtett jegyekhez és különleges ajánlatok létrehozása.\",\"PybJS2\":\"Create event\",\"eWEV9G\":\"Új jelszó létrehozása\",\"wl2iai\":\"Create Schedule\",\"8AiKIu\":\"Jegy vagy termék létrehozása\",\"/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\":\"Hozza létre első eseményét, hogy elkezdhesse a jegyek értékesítését és a résztvevők kezelését.\",\"ZCSSd+\":\"Hozza létre saját eseményét\",\"qdv10s\":[[\"0\"],\" időpont létrehozása folyamatban. Ez eltarthat egy pillanatig.\"],\"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\":\"Currently assigned\",\"iTvh6I\":\"Jelenleg megvásárolható\",\"A42Dqn\":\"Custom branding\",\"Guo0lU\":\"Egyéni dátum és idő\",\"WDMdn8\":\"Custom questions\",\"O6mra8\":\"Egyedi kérdések\",\"axv/Mi\":\"Egyedi sablon\",\"2YeVGY\":\"Ügyféllink vágólapra másolva\",\"QMHSMS\":\"A vásárló e-mailt kap a visszatérítés megerősítéséről\",\"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\":\"Daily\",\"/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\":\"Dance\",\"pvnfJD\":\"Sötét\",\"MaB9wW\":\"Date Cancellation\",\"e6cAxJ\":\"Date cancelled\",\"81jBnC\":\"Date cancelled successfully\",\"a/C/6R\":\"Date created successfully\",\"IW7Q+u\":\"Date deleted\",\"rngCAz\":\"Date deleted successfully\",\"vHbfoQ\":\"Date reactivated\",\"hvah+S\":\"Date reopened for new sales\",\"Ez0YsD\":\"Date updated successfully\",\"Te33mU\":\"Dates are managed per occurrence\",\"91zCxb\":\"Dates with sessions\",\"/ITcnz\":\"day\",\"H7OUPr\":\"Day\",\"JtHrX9\":\"Day of Month\",\"J/Upwb\":\"days\",\"vDVA2I\":\"Days of Month\",\"rDLvlL\":\"Days of Week\",\"r6zgGo\":\"December\",\"jbq7j2\":\"Elutasítás\",\"ovBPCi\":\"Alapértelmezett\",\"JtI4vj\":\"Alapértelmezett résztvevői információgyűjtés\",\"ULjv90\":\"Default capacity per date\",\"3R/Tu2\":\"Alapértelmezett díjkezelés\",\"1bZAZA\":\"Alapértelmezett sablon lesz használva\",\"HNlEFZ\":\"törlés\",\"KpnwJK\":[\"Törli a következőt: \\\"\",[\"0\"],\"\\\"?\"],\"BlII4o\":[\"Delete \",[\"count\"],\" selected date(s)? Dates with orders will be skipped. This cannot be undone.\"],\"vu7gDm\":\"Partner törlése\",\"KZN4Lc\":\"Összes törlése\",\"6EkaOO\":\"Delete Date\",\"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\":\"Delete Permanently\",\"dPyJ15\":\"Sablon törlése\",\"IQTR34\":\"Delete this category? Any products in it will also be deleted. This cannot be undone.\",\"/1wMxk\":\"Delete this product? This cannot be undone.\",\"mxsm1o\":\"Törli ezt a kérdést? Ez nem vonható vissza.\",\"snMaH4\":\"Webhook törlése\",\"LIZZLY\":[\"Deleted \",[\"0\"],\" date(s)\"],\"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\":\"Different location\",\"E/QGRL\":\"Disabled\",\"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.\",\"HtaSQp\":\"Megjeleníti, hány hely maradt az egyes időpontokra a jegyvásárló felületen. Ezt időpontonként felülbírálhatja.\",\"pfa8F0\":\"Megjelenített név\",\"Kdpf90\":\"Ne felejtse el!\",\"352VU2\":\"Nincs fiókja? <0>Regisztráljon\",\"AXXqG+\":\"Adomány\",\"DPfwMq\":\"Kész\",\"JoPiZ2\":\"Door staff instructions\",\"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 Stripe-fiókot kell csatlakoztatnia, mielőtt üzeneteket küldhetne a résztvevőknek.\\nEz biztosítja, hogy minden rendezvényszervező ellenőrzött és felelősségre vonható legyen.\",\"euc6Ns\":\"Duplikálás\",\"YueC+F\":\"Duplicate Date\",\"KRmTkx\":\"Termék másolása\",\"Jd3ymG\":\"Duration must be at least 1 minute.\",\"KIjvtr\":\"Holland\",\"22xieU\":\"pl. 180 (3 óra)\",\"/zajIE\":\"e.g. Morning Session\",\"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.\",\"Xfsjel\":\"Minden termék\",\"5oD9f/\":\"Earlier\",\"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\":\"Edit Date\",\"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\":\"Edited\",\"uBAxNB\":\"Szerkesztő\",\"aqxYLv\":\"Oktatás\",\"iiWXDL\":\"Jogosultsági hibák\",\"zPiC+q\":\"Jogosult bejelentkezési listák\",\"SiVstt\":\"Email & scheduled messages\",\"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\":\"Embeddable 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\":\"End\",\"sGjBEq\":\"Befejezés dátuma és ideje (opcionális)\",\"PKXt9R\":\"A befejezés dátumának a kezdő dátum után kell lennie.\",\"ZayGC7\":\"End on a date\",\"48Y16Q\":\"Befejezés ideje (opcionális)\",\"TbaYrr\":[\"Ended \",[\"0\"]],\"CFgwiw\":[\"Ends \",[\"0\"]],\"SqOIQU\":\"Enter a capacity value or choose unlimited.\",\"h37gRz\":\"Enter a label or choose to remove it.\",\"7YZofi\":\"Írjon be egy tárgyat és törzset az előnézet megtekintéséhez\",\"khyScF\":\"Enter a time to shift by.\",\"SKx/0u\":\"Adja meg a helyszín nevét vagy címét\",\"ppwojw\":\"Személyes eseményekhez adjon meg helyszínnevet vagy címet\",\"j+eCIq\":\"Cím megadása kézzel\",\"3bR1r4\":\"Adja meg a partner e-mail címét (opcionális)\",\"ARkzso\":\"Adja meg a partner nevét\",\"ej4L8b\":\"Enter capacity\",\"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)\",\"RRlWVA\":\"Teljes rendelés\",\"o21Y+P\":\"entries\",\"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\",\"+v+GW0\":\"Esemény dátumának megjelenítése\",\"7u9/DO\":\"Az esemény sikeresen törölve\",\"imgKgl\":\"Esemény leírása\",\"IzR/Fc\":\"Event lifetime\",\"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ő\",\"mImacG\":\"Eseményoldal\",\"Hk9Ki/\":\"Az esemény sikeresen visszaállítva\",\"JyD0LH\":\"Esemény beállítások\",\"XVLu2v\":\"Esemény címe\",\"OfmsI9\":\"Az esemény túl új\",\"4SILkp\":\"Event totals\",\"YDVUVl\":\"Eseménytípusok\",\"+HeiVx\":\"Esemény frissítve\",\"19j6uh\":\"Események teljesítménye\",\"PC3/fk\":\"Következő 24 órában kezdődő események\",\"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\":\"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 sikertelen\",\"PO0cfn\":\"Failed to cancel date\",\"YUX+f+\":\"Failed to cancel dates\",\"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\":\"Failed to create schedule\",\"4yLYTb\":\"Nem sikerült létrehozni az ütemezést. Kérjük, próbálja újra.\",\"U66oUa\":\"A sablon létrehozása sikertelen\",\"aFk48v\":\"A konfiguráció törlése sikertelen\",\"n1CYMH\":\"Failed to delete date\",\"KXv+Qn\":\"Failed to delete date. It may have existing orders.\",\"JJ0uRo\":\"Failed to delete dates\",\"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\",\"5E23qd\":\"Failed to delete product. Please try again.\",\"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\":\"Failed to reactivate date\",\"7zyx8a\":\"Nem sikerült eltávolítani a várólistáról\",\"A/P7PX\":\"Failed to remove override\",\"ogWc1z\":\"Failed to reopen date\",\"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\":\"Failed to save override\",\"sj/eZA\":\"Failed to save price override\",\"780n8A\":\"Failed to save product settings\",\"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 sikertelen\",\"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\":\"Family\",\"5LO38w\":\"Fast payouts to your bank\",\"4lgLew\":\"February\",\"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\":\"Filter attendees\",\"8OvVZZ\":\"Résztvevők szűrése\",\"N/H3++\":\"Filter by date\",\"mvrlBO\":\"Szűrés esemény szerint\",\"g+xRXP\":\"Finish setting up Stripe\",\"LHH461\":\"Finish setup\",\"syyeb9\":\"First\",\"Vj6wk9\":\"First 30 days\",\"/bpZYb\":\"First 7 days\",\"ziEnjY\":\"First 90 days\",\"1vBhpG\":\"Első résztvevő\",\"4pwejF\":\"A keresztnév kötelező\",\"rVogsf\":\"A közzétételhez javítsd a problémákat\",\"3lkYdQ\":\"Fixed fee\",\"6bBh3/\":\"Fix díj\",\"zWqUyJ\":\"Tranzakciónkénti fix díj\",\"LWL3Bs\":\"A fix díjnak 0 vagy nagyobbnak kell lennie\",\"0RI8m4\":\"Flash off\",\"q0923e\":\"Flash on\",\"X+U6/w\":\"Betűcsalád\",\"lWxAUo\":\"Étel és ital\",\"nFm+5u\":\"Lábléc szövege\",\"a8nooQ\":\"Fourth\",\"wtuVU4\":\"Frequency\",\"xVhQZV\":\"Fri\",\"39y5bn\":\"Friday\",\"f5UbZ0\":\"Full data ownership\",\"cfvx/y\":\"Full event\",\"MY2SVM\":\"Teljes visszatérítés\",\"PGQLdy\":\"future\",\"8N/j1s\":\"Future dates only\",\"yRx/6K\":\"Future dates will be copied with capacity reset to zero\",\"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\":\"Get Paid\",\"lGYzP6\":\"Get paid with Stripe\",\"ZDIydz\":\"Kezdés\",\"u6FPxT\":\"Jegyek vásárlása\",\"8KDgYV\":\"Készítse elő eseményét\",\"RkXlPZ\":\"GitHub\",\"sr0UJD\":\"Go Back\",\"oNL5vN\":\"Esemény oldalra\",\"gHSuV/\":\"Ugrás a főoldalra\",\"8+Cj55\":\"Go to Schedule\",\"6nDzTl\":\"Jó olvashatóság\",\"76gPWk\":\"Got it\",\"CZXzs4\":\"Görög\",\"aGWZUr\":\"Bruttó bevétel\",\"n8IUs7\":\"Bruttó bevétel\",\"O1wAlQ\":\"Guest\",\"LIYoRQ\":\"Vendégkezelés\",\"NUsTc4\":\"Happening now\",\"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\":\"Hi,\",\"/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\":\"Hide details\",\"FmogyU\":\"Opciók elrejtése\",\"uXNYjR\":\"Elkelt időpontok elrejtése\",\"g9RcYX\":\"Dátum elrejtése\",\"uMwTx7\":\"Elrejti ezt a kategóriát?\",\"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\":\"Hobbies\",\"yY8wAv\":\"Hours\",\"49Tkiw\":\"Hogyan kerül alkalmazásra a kedvezmény?\",\"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\":\"How long does the schedule run?\",\"DMr2XN\":\"How often?\",\"cceMns\":\"How VAT is applied to the platform fees we charge you.\",\"FONsLE\":\"https://awesome-events.com\",\"htoh8N\":\"https://webhook-domain.com/webhook\",\"mkWad2\":\"Magyar\",\"8Wgd41\":\"Elismerem az adatkezelői felelősségeimet\",\"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\",\"CY3yHL\":\"Ha be van jelölve, ez a kategória rejtve marad a nyilvánosság elől.\",\"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\":[\"in last \",[\"0\"],\" min\"],\"u7r0G5\":\"In person — set a venue\",\"/LCAwL\":\"Folyamatban\",\"F1Xp97\":\"Egyéni résztvevők\",\"85e6zs\":\"Liquid token beszúrása\",\"CTWsuc\":\"Instagram\",\"VopR6B\":\"Instant Stripe payouts\",\"nbfdhU\":\"Integrációk\",\"I8eJ6/\":\"Internal notes on the attendee's ticket\",\"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\",\"Dn4OyV\":\"Meghívva\",\"IuMGvq\":\"Számla\",\"a/bUcL\":\"It happens on more than one date\",\"d+Oe9r\":\"It may have been unpublished or removed. Please check the link and try again.\",\"Lj7sBL\":\"Olasz\",\"F5/CBH\":\"tétel(ek)\",\"BzfzPK\":\"Tételek\",\"rjyWPb\":\"January\",\"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\":[\"Csatlakozás a várólistához: \",[\"productDisplayName\"]],\"2gMuHR\":\"Csatlakozott\",\"u4ex5r\":\"July\",\"zeEQd/\":\"June\",\"MxjCqk\":\"Csak a jegyeit keresi?\",\"xOTzt5\":\"just now\",\"0RihU9\":\"Just wrapped\",\"lB2hSG\":[\"Tartsanak naprakészen a \",[\"0\"],\" híreivel és eseményeivel\"],\"ioFA9i\":\"Keep the profit.\",\"o66QSP\":\"label updates\",\"RtKKbA\":\"Last\",\"DruLRc\":\"Elmúlt 14 nap\",\"ve9JTU\":\"A vezetéknév kötelező\",\"h0Q9Iw\":\"Utolsó válasz\",\"gw3Ur5\":\"Utoljára aktiválva\",\"FIq1Ba\":\"Later\",\"xvnLMP\":\"Latest check-ins\",\"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\":\"Világos\",\"1qY5Ue\":\"A link lejárt vagy érvénytelen\",\"gggTBm\":\"LinkedIn\",\"nvOPBA\":\"Linkek engedélyezve\",\"2BBAbc\":\"List\",\"dF6vP6\":\"Élő\",\"fpMs2Z\":\"ÉLŐ\",\"D9zTjx\":\"Élő események\",\"C33p4q\":\"Loaded dates\",\"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\",\"7w8lJU\":\"Helyszín mentve\",\"YsRXDD\":\"Helyszín frissítve\",\"A/kIva\":\"location updates\",\"iyZPPR\":\"helyszín\",\"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\",\"PSRm6/\":\"Jegyeim keresése\",\"yJFu/X\":\"Központi iroda\",\"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\":\"Kezelje eseménye várólistáját, tekintse meg a statisztikákat és ajánljon jegyeket a résztvevőknek.\",\"g2npA5\":\"Manuális ajánlat\",\"hg6l4j\":\"March\",\"pqRBOz\":\"Mark as validated (admin override)\",\"2L3vle\":\"Max üzenetek / 24ó\",\"Qp4HWD\":\"Max címzettek / üzenet\",\"3JzsDb\":\"May\",\"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\":\"Minutes\",\"zz/Wd/\":\"Mode\",\"fpMgHS\":\"Mon\",\"hty0d5\":\"Monday\",\"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\":\"month\",\"HajiZl\":\"Hónap\",\"+8Nek/\":\"Monthly\",\"1LkxnU\":\"Monthly Pattern\",\"6jefe3\":\"months\",\"f8jrkd\":\"more\",\"JcD7qf\":\"More actions\",\"w36OkR\":\"Legnézettebb események (Elmúlt 14 nap)\",\"+Y/na7\":\"Move all dates earlier or later\",\"3DIpY0\":\"Multiple locations\",\"g9cQCP\":\"Multiple ticket types\",\"GfaxEk\":\"Zene\",\"oVGCGh\":\"Jegyeim\",\"8/brI5\":\"Név kötelező\",\"sFFArG\":\"A névnek rövidebbnek kell lennie 255 karakternél\",\"xxU3NX\":\"Nettó bevétel\",\"7I8LlL\":\"New capacity\",\"n1GRql\":\"New label\",\"y0Fcpd\":\"Új helyszín\",\"ArHT/C\":\"Új regisztrációk\",\"uK7xWf\":\"New time:\",\"veT5Br\":\"Next occurrence\",\"WXtl5X\":[\"Next: \",[\"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\":\"No attendees to show\",\"PKySlW\":\"No attendees yet for this date.\",\"/UC6qk\":\"Nem található hozzárendelési adat\",\"E2vYsO\":\"No capabilities reported by Stripe yet.\",\"amMkpL\":\"Nincs kapacitás\",\"d2Jf1f\":\"No change\",\"99ntUF\":\"Nincs elérhető bejelentkezési lista ehhez az eseményhez.\",\"wG+knX\":\"No check-ins yet\",\"+dAKxg\":\"Nem találhatók konfigurációk\",\"LiLk8u\":\"No connections available\",\"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.\",\"Zc216S\":\"No date added\",\"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\",\"OtJSnL\":\"Nincsenek ütemezett időpontok\",\"gEdNe8\":\"No dates scheduled yet\",\"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\":\"Még nincsenek események\",\"Yc5YW6\":\"Nincs sikertelen feladat\",\"EpvBAp\":\"Nincs számla\",\"XZkeaI\":\"Nem található napló\",\"IcAC6J\":\"Nincs találat\",\"nrSs2u\":\"Nem található üzenet\",\"Rj99yx\":\"No occurrences available\",\"IFU1IG\":\"No occurrences on this date\",\"OVFwlg\":\"Még nincsenek rendelési kérdések\",\"EJ7bVz\":\"Nem találhatók rendelések\",\"NEmyqy\":\"Még nincsenek megrendelések\",\"a77B6w\":\"No orders yet for this date.\",\"wUv5xQ\":\"Nincs szervezői tevékenység az elmúlt 14 napban\",\"vLd1tV\":\"No organizer context available.\",\"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\":\"No products configured for this event.\",\"kY7XDn\":\"Nincs várólistás bejegyzéssel rendelkező termék\",\"8mw4tm\":\"Üzenet termékek hiányában\",\"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\",\"59OWd3\":\"Nincsenek mentett helyszínek\",\"mPdY6W\":\"Nincsenek javaslatok\",\"3sRuiW\":\"Nem találhatók jegyek\",\"debCrL\":\"Nincsenek eladható jegyek\",\"k2C0ZR\":\"No upcoming dates\",\"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\":\"non-edited\",\"Itw24Q\":\"Not checked in\",\"x5+Lcz\":\"Nincs bejelentkezve\",\"8n10sz\":\"Nem jogosult\",\"kLvU3F\":\"Notify attendees and stop sales\",\"t9QlBd\":\"November\",\"kAREMN\":\"Number of dates to create\",\"6u1B3O\":\"Occurrence\",\"mmoE62\":\"Occurrence Cancelled\",\"V9flmL\":\"Occurrence Schedule\",\"Kh3WO8\":\"Occurrence Summary\",\"byXCTu\":\"Occurrences\",\"KATw3p\":\"Occurrences (future only)\",\"85rTR2\":\"Occurrences can be configured after creation\",\"dzQfDY\":\"October\",\"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.\"],\"6Aih4U\":\"Offline\",\"nO3VbP\":[\"Értékesítésben \",[\"0\"]],\"oXOSPE\":\"Online\",\"aqmy5k\":\"Online — provide connection details\",\"LuZBbx\":\"Online & in-person\",\"IXuOqt\":\"Online & in-person — see schedule\",\"WjSpu5\":\"Online esemény\",\"scPxI/\":[\"Már csak \",[\"capacity\"],\" maradt\"],\"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\",\"wkpaqp\":\"Csak a kezdési dátum és időpont megjelenítése\",\"DMk8F0\":\"Only tickets count toward capacity\",\"M2w1ni\":\"Csak promóciós kóddal látható\",\"y8Bm7C\":\"Open check-in\",\"RLz7P+\":\"Open occurrence\",\"cDSdPb\":\"A választókban megjelenő opcionális elnevezés, 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\":\"or add a single date\",\"eBskDE\":\"Vagy engedélyezd az offline fizetést és tiltsd le a Stripe-ot\",\"dSeVIm\":\"order\",\"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\",\"xtQzag\":\"Order details\",\"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\",\"RQCXz6\":\"Rendelési limitek\",\"SO9AEF\":\"Rendelési limitek beállítva\",\"vu6Arl\":\"Megrendelés fizetettként megjelölve\",\"sLbJQz\":\"Rendelés nem található\",\"kvYpYu\":\"Rendelés nem található\",\"eJ8SvM\":\"Order number, purchase date, purchaser email\",\"FaPYw+\":\"Megrendelő\",\"eB5vce\":\"Megrendelők meghatározott termékkel\",\"CxLoxM\":\"Megrendelők termékekkel\",\"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\",\"3NT0Ck\":\"Rendelés törölve lett\",\"V5khLm\":\"orders\",\"sd5IMt\":\"Befejezett rendelések\",\"5It1cQ\":\"Exportált megrendelések\",\"UQ0ACV\":\"Rendelések összesen\",\"B/EBQv\":\"Rendelések:\",\"qtGTNu\":\"Organikus fiókok\",\"P/JHA4\":\"A szervező sikeresen archiválva\",\"S3CZ5M\":\"Szervezői irányítópult\",\"GzjTd0\":\"A szervező sikeresen törölve\",\"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\":\"Organizers\",\"/IX/7x\":\"Egyéb\",\"RsiDDQ\":\"Egyéb listák (Jegy nem szerepel)\",\"aDfajK\":\"Outdoors\",\"qMASRF\":\"Kimenő üzenetek\",\"iCOVQO\":\"Override\",\"GpFTEc\":\"Override fees on this organizer\",\"M9ZhMP\":\"Override price\",\"cnVIpl\":\"Override removed\",\"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\":\"Past due\",\"xTPjSy\":\"Múltbeli események\",\"/l/ckQ\":\"URL beillesztése\",\"URAE3q\":\"Szüneteltetve\",\"4fL/V7\":\"Fizetés\",\"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\":\"Payouts\",\"UbRKMZ\":\"Pending\",\"UkM20g\":\"Áttekintésre vár\",\"dPYu1F\":\"Résztvevőnként\",\"mQV/nJ\":\"per min\",\"+kvxv+\":\"rendelésenként\",\"VlXNyK\":\"Rendelésenként\",\"NhuGd7\":\"termékenként\",\"hauDFf\":\"Jegyenként\",\"mnF83a\":\"Százalékos díj\",\"TNLuRD\":\"Percentage fee (%)\",\"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\":\"Permanently remove this date\",\"6kPk3+\":\"Személyes adatok\",\"zmwvG2\":\"Telefon\",\"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\":\"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\":\"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\":\"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\":\"Please select a date and time\",\"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\":\"Position\",\"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\",\"Jm2AC3\":\"Price Tier\",\"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\":\"Product settings cannot be edited for cancelled dates.\",\"2339ej\":\"Product settings saved successfully\",\"ldVIlB\":\"Termék frissítve\",\"CP3D8G\":\"Progress\",\"JoKGiJ\":\"Promóciós kód\",\"k3wH7i\":\"Promóciós kód felhasználás és kedvezmény bontás\",\"tZqL0q\":\"promo codes\",\"oCHiz3\":\"Promo codes\",\"uEhdRh\":\"Csak promócióval\",\"dLm8V5\":\"A promóciós e-mailek fiók felfüggesztéshez vezethetnek\",\"W0ETyY\":\"Adjon meg legalább egy címmezőt (helyszín, utca, város vagy ország).\",\"2W/7Gz\":\"Provide the following before Stripe's next review to keep payouts flowing.\",\"EEYbdt\":\"Közzététel\",\"JcgJKc\":\"Közzététel mindenképp\",\"evDBV8\":\"Esemény közzététele\",\"2zEfOd\":\"Publish your event\",\"L7nrC8\":\"A közzététellel az eseményoldalad nyilvánossá válik, és megnyílik a regisztráció.\",\"dsFmM+\":\"Megvásárolt\",\"JunetL\":\"Purchaser\",\"phmeUH\":\"Purchaser email\",\"ywR4ZL\":\"QR code check-in\",\"oWXNE5\":\"Menny.\",\"biEyJ4\":\"Question answers\",\"k/bJj0\":\"Kérdések átrendezve\",\"b24kPi\":\"Várakozási sor\",\"lTPqpM\":\"Quick Tip\",\"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\":\"Reactivate this date? It will be reopened for future sales.\",\"RENQ6j\":\"Készen állsz az élesítésre?\",\"uqoRbb\":\"Real-time analytics\",\"xzRvs4\":[\"Termékfrissítések fogadása a \",[\"0\"],\"-től.\"],\"pLXbi8\":\"Legutóbbi fiók regisztrációk\",\"M1HGuR\":\"Recent activity\",\"3kJ0gv\":\"Recent Attendees\",\"qhfiwV\":\"Recent check-ins\",\"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\",\"WEYdDv\":\"Recommended\",\"wuhHPE\":\"Recurring\",\"asLqwt\":\"Ismétlődő esemény\",\"s3uzsK\":\"Ismétlődő esemény beállításai\",\"D0tAMe\":\"Recurring events\",\"JjMIKU\":\"Reddit\",\"HiGkFu\":\"Átirányítás a Stripe-ra...\",\"pnoTN5\":\"Ajánlási fiókok\",\"ACKu03\":\"Előnézet frissítése\",\"vuFYA6\":\"Refund all orders for these dates\",\"4cRUK3\":\"Refund all orders for this date\",\"fKn/k6\":\"Visszatérítés összege\",\"qY4rpA\":\"Visszatérítés sikertelen\",\"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\":\"Remaining\",\"Bjh87R\":\"Remove label from all dates\",\"IVZaEo\":\"Teljesen eltávolítja az elkelt időpontokat az esemény oldaláról. Ha ki van kapcsolva, láthatóak maradnak, és elkeltként jelennek meg.\",\"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\":\"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\":\"Reset to base price\",\"kCn6wb\":\"Visszaállítás...\",\"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\":\"results\",\"6gRgw8\":\"Újrapróbálás\",\"1BG8ga\":\"Összes újrapróbálása\",\"rDC+T6\":\"Feladat újrapróbálása\",\"CbnrWb\":\"Vissza az eseményhez\",\"Lf7TCn\":\"Az újrafelhasználható helyszínek automatikusan megjelennek itt, amikor címmel rendelkező eseményeket hoz létre, és sajátokat is hozzáadhat.\",\"mdQ0zb\":\"Újrafelhasználható helyszínek az eseményeihez. Az automatikus kiegészítésből létrehozott helyszínek automatikusan ide kerülnek mentésre.\",\"XFOPle\":\"Reuse\",\"1Zehp4\":\"Reuse a Stripe connection from another organizer in this account.\",\"Oo/PLb\":\"Bevételi összefoglaló\",\"CfuueU\":\"Ajánlat visszavonása\",\"RIgKv+\":\"Run until a specific date\",\"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\":\"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\":\"É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\":\"Sales, attendance, and check-in breakdown per occurrence\",\"3VnlS9\":\"Értékesítések, rendelések és teljesítménymutatók minden eseményhez\",\"3Q1AWe\":\"Értékesítések:\",\"LeuERW\":\"Same as event\",\"B4nE3N\":\"Minta jegyár\",\"8BRPoH\":\"Minta helyszín\",\"PiK6Ld\":\"Sat\",\"+5kO8P\":\"Saturday\",\"zJiuDn\":\"Save fee override\",\"NB8Uxt\":\"Save Schedule\",\"KZrfYJ\":\"Közösségi linkek mentése\",\"9Y3hAT\":\"Sablon mentése\",\"C8ne4X\":\"Jegytervezés mentése\",\"cTI8IK\":\"Save VAT settings\",\"6/TNCd\":\"ÁFA beállítások mentése\",\"4RvD9q\":\"Mentett helyszín\",\"cgw0cL\":\"Mentett helyszínek\",\"Fbqm/I\":\"Saving an override creates a dedicated configuration for this organizer if it's currently on the system default.\",\"I+FvbD\":\"Beolvasás\",\"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\":\"Ütemezés későbbre\",\"NAzVVw\":\"Üzenet ütemezése\",\"Fz09JP\":\"Schedule starts on\",\"4ba0NE\":\"Ütemezett\",\"qcP/8K\":\"Ütemezett időpont\",\"A1taO8\":\"Search\",\"ftNXma\":\"Partnerek keresése...\",\"VMU+zM\":\"Search attendees\",\"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...\",\"YnMfsK\":\"Keresés név vagy cím 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\":\"Search by name, order #, ticket # or email\",\"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\":\"Search dates...\",\"iRtEpV\":\"Search dates…\",\"JRM7ao\":\"Search for an address\",\"BWF1kC\":\"Üzenetek keresése...\",\"5WYZKZ\":\"Keresési találatok\",\"IG85fV\":\"Keressen mentett helyszínek között, vagy találjon meg egy címet...\",\"3aD3GF\":\"Seasonal\",\"ku//5b\":\"Second\",\"Mck5ht\":\"Biztonságos pénztár\",\"s7tXqF\":\"See schedule\",\"JFap6u\":\"See what Stripe still needs\",\"p7xUrt\":\"Válasszon egy kategóriát\",\"hTKQwS\":\"Select a Date & Time\",\"Ps6Xtf\":\"Select a date to see available times\",\"e4L7bF\":\"Válasszon egy üzenetet a tartalom megtekintéséhez\",\"zPRPMf\":\"Válasszon szintet\",\"BFRSTT\":\"Fiók kiválasztása\",\"wgNoIs\":\"Select all\",\"mCB6Je\":\"Összes kiválasztása\",\"aCEysm\":[\"Select all on \",[\"0\"]],\"a6+167\":\"Válasszon eseményt\",\"CFbaPk\":\"Résztvevő csoport kiválasztása\",\"88a49s\":\"Select camera\",\"tVW/yo\":\"Pénznem kiválasztása\",\"SJQM1I\":\"Select date\",\"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\":\"Select occurrence\",\"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\":\"selected\",\"ylXj1N\":\"Kiválasztva\",\"uq3CXQ\":\"Sell out your event.\",\"oBXbO4\":\"Selling a physical product? Cap its quantity on the <0>products page instead.\",\"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\":\"Send to all occurrences, or choose a specific one\",\"QEQlnV\":\"Küldje el első üzenetét\",\"IoAuJG\":\"Küldés...\",\"h69WC6\":\"Elküldve\",\"BVu2Hz\":\"Küldte\",\"ZFa8wv\":\"Sent to attendees when a scheduled date is cancelled\",\"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\":\"September\",\"5sN96e\":\"Session cancelled\",\"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\":\"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\":\"Bejelentkezési listák beállítása különböző bejáratokhoz, munkamenetekhez vagy napokhoz.\",\"TaWVGe\":\"Set up payouts\",\"JA//e6\":\"Set up schedule\",\"gzXY7l\":\"Set Up Schedule\",\"0Ls9qe\":\"Set up the tickets you'll sell and their prices\",\"xMO+Ao\":\"Állítsa be szervezetét\",\"5pEFnq\":\"Set up your schedule\",\"h/9JiC\":\"Set Up Your Schedule\",\"zRRuUD\":\"Set up your schedule in the next steps\",\"ETC76A\":\"Set, change, or remove the date's location or online details\",\"C3htzi\":\"Beállítás frissítve\",\"Ohn74G\":\"Beállítás és tervezés\",\"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\":\"Partnerlink megosztása\",\"hL7sDJ\":\"Szervezői oldal megosztása\",\"jy6QDF\":\"Megosztott kapacitás kezelés\",\"jDNHW4\":\"Shift times\",\"tPfIaW\":[\"Shifted times for \",[\"count\"],\" date(s)\"],\"WwlM8F\":\"Speciális beállítások megjelenítése\",\"cMW+gm\":[\"Összes platform megjelenítése (további \",[\"0\"],\" értékkel)\"],\"wXi9pZ\":\"Show attendee notes to non-logged-in staff\",\"4LZFir\":\"Teljes dátumtartomány megjelenítése\",\"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\",\"b33PL9\":\"Több platform megjelenítése\",\"Eut7p9\":\"Show order details to non-logged-in staff\",\"+RoWKN\":\"Show question answers to non-logged-in staff\",\"jbcx6L\":\"Show remaining capacity on event dates\",\"rXxBOx\":\"Show remaining capacity to buyers\",\"t1LIQW\":[[\"0\"],\" / \",[\"totalRows\"],\" rekord megjelenítése\"],\"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\":\"Regisztrált\",\"5C7J+P\":\"Single Event\",\"E//btK\":\"Skip manually edited dates\",\"paESr6\":\"Szlovák\",\"9wu8nm\":\"Snapchat\",\"kIKb9e\":\"Közösségi\",\"d0rUsW\":\"Közösségi linkek\",\"j/TOB3\":\"Közösségi linkek és weboldal\",\"s9KGXU\":\"Eladva\",\"yp+0jj\":\"sold out\",\"1hupow\":\"Elfogyott, várólista elérhető\",\"iACSrw\":\"Some details are hidden from public access. Log in to view everything.\",\"Dia6iz\":\"Something went wrong while deleting the image. Please try again.\",\"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\":\"Spirituality\",\"oPaRES\":\"Split check-in across days, areas, or ticket types. Share the link with staff — no account needed on their end.\",\"7JFNej\":\"Sport\",\"/bfV1Y\":\"Staff instructions\",\"tXkhj/\":\"Start\",\"StWUH4\":\"Start check-in\",\"JcQp9p\":\"Kezdés dátuma és ideje\",\"0m/ekX\":\"Kezdés dátuma és ideje\",\"izRfYP\":\"Kezdés dátuma kötelező\",\"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/\":\"Statisztikák\",\"GVUxAX\":\"A statisztikák a fiók létrehozásának dátumán alapulnak\",\"29Hx9U\":\"Stats\",\"5ia+r6\":\"Still needed\",\"wuV0bK\":\"Megszemélyesítés leállítása\",\"s/KaDb\":\"Stripe connected\",\"Bk06QI\":\"Stripe csatlakoztatva\",\"akZMv8\":[\"Stripe connection copied from \",[\"0\"],\".\"],\"v0aRY1\":\"Stripe didn't return a setup link. Please try again.\",\"aKtF0O\":\"Stripe nincs csatlakoztatva\",\"9i0++A\":\"Stripe fizetési azonosító\",\"R1lIMV\":\"Stripe will need a few more details soon\",\"FzcCHA\":\"Stripe will walk you through a few quick questions to finish setup.\",\"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\",\"kRWc2g\":\"Az ismétlődő esemény beállításai 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\":\"Sun\",\"DBC3t5\":\"Sunday\",\"UaISq3\":\"Svéd\",\"JZTQI0\":\"Szervező váltása\",\"9YHrNC\":\"Rendszer alapértelmezett\",\"lruQkA\":\"Tap this screen to resume scanning\",\"TJUrME\":[\"Targeting attendees across \",[\"0\"],\" selected sessions.\"],\"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\":\"Team collaboration\",\"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\":\"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\":\"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\",\"nm3Iz/\":\"Köszönjük, hogy részt vett!\",\"pYwj0k\":\"Thanks,\",\"k3IitN\":\"That's a wrap\",\"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.\",\"7oksH+\":[\"A kedvezmény minden jogosult termékből levonásra kerül. Pl. \",[\"currencySymbol\"],\"10 kedvezmény × 3 jegy = \",[\"currencySymbol\"],\"30 kedvezmény.\"],\"sKL8k2\":\"A kedvezmény egyszer kerül levonásra a rendelés végösszegéből.\",\"cDHM1d\":\"Az e-mail cím megváltozott. A résztvevő új jegyet kap a frissített e-mail címre.\",\"tXadb0\":\"A keresett esemény jelenleg nem elérhető. Lehet, hogy eltávolították, lejárt, vagy az URL hibás.\",\"5fPdZe\":\"The first date this schedule will generate from.\",\"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.\",\"Np4eLs\":[\"The maximum is \",[\"MAX_PREVIEW\"],\" sessions. Please reduce the date range, frequency, or number of sessions per day.\"],\"sYLeDq\":\"A keresett szervező nem található. Lehet, hogy az oldalt áthelyezték, törölték, vagy az URL hibás.\",\"PCr4zw\":\"The override is recorded in the order audit log.\",\"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\",\"OVSkIF\":\"A gyors barna róka átugrik a lusta kutyán.\",\"z0KrIG\":\"Az ütemezett időpont megadása kötelező\",\"EWErQh\":\"Az ütemezett időpontnak a jövőben kell lennie\",\"UNd0OU\":[\"The session for \\\"\",[\"title\"],\"\\\" originally scheduled for \",[\"0\"],\" has been rescheduled.\"],\"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\",\"ybBP2H\":\"There are no products available for this date. Please choose another date.\",\"O7g4eR\":\"There are no upcoming dates for this event\",\"062KsE\":\"These details are shown on the attendee's ticket and order summary for this date only.\",\"5Eu+tn\":\"Ezek az adatok csak a rendelés sikeres teljesítése után jelennek meg.\",\"jQjwR+\":\"These details will replace any existing location on the affected dates and show on attendee tickets.\",\"6eaLu/\":\"Ezek az árak a menetrend összes időpontjára érvényesek, a szintek mennyiségei pedig az összes időpont együttes eladásait korlátozzák. A szintek értékesítési dátumai globálisan érvényesek. Az egyes időpontok árait az <0>Időpontok ütemezése oldalon írhatja felül.\",\"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\":\"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\":\"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/\":[\"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.\",\"E9BqZw\":\"This date only\",\"RzEvf5\":\"Ez az esemény véget ért\",\"kc4bIA\":\"Ennek az eseménynek még nincsenek jegyei vagy termékei, így a résztvevők nem tudnak regisztrálni.\",\"eMaNd0\":\"This event is not available\",\"YClrdK\":\"Ez az esemény még nem került közzétételre.\",\"GL6z+k\":\"Erre az eseményre minden jegy elkelt\",\"pIwDhS\":\"This event's dates and times are set on the occurrence schedule.\",\"ny5rgr\":\"This is a recurring event\",\"tc64Zz\":\"Ez a kategória neve, amely az esemény oldalán jelenik meg.\",\"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.\",\"5DpZrC\":\"Ez az összes időpont együttes eladásait korlátozza – nem időpontonkénti korlát. Az egyes időpontok létszámának korlátozásához állítson be kapacitást az <0>Időpontok ütemezése oldalon.\",\"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\":\"This occurrence is at capacity\",\"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\",\"qEGn8I\":\"Ennek az ismétlődő eseménynek még nincsenek időpontjai, így a résztvevők nem tudnak foglalni.\",\"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.\",\"1LuJNw\":\"Ez a jegy már nem érvényes\",\"0Ew0uk\":\"Ez a jegy most lett beolvasva. Kérjük, várjon mielőtt újra beolvassa.\",\"FYXq7k\":[\"This will affect \",[\"loadedAffectedCount\"],\" date(s).\"],\"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\":\"Throughput\",\"+FjWgX\":\"Thu\",\"kkDQ8m\":\"Thursday\",\"0GSPnc\":\"Jegy tervezés\",\"EZC/Cu\":\"Jegy tervezés sikeresen mentve\",\"bbslmb\":\"Jegy tervező\",\"1BPctx\":\"Jegy ehhez:\",\"HGuXjF\":\"Jegytulajdonosok\",\"CMUt3Y\":\"Jegytulajdonosok\",\"awHmAT\":\"Jegy azonosító\",\"6czJik\":\"Jegy logó\",\"t79rDv\":\"Jegy nem található\",\"6tmWch\":\"Jegy vagy termék\",\"1tfWrD\":\"Jegy előnézet ehhez:\",\"KnjoUA\":\"Jegyár\",\"pGZOcL\":\"Jegy sikeresen újraküldve\",\"o02GZM\":\"Ticket sales have ended for this event\",\"8jLPgH\":\"Jegy típusa\",\"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\":\"Time\",\"fXf2r5\":[\"Times shown in \",[\"timezoneAbbr\"]],\"dMtLDE\":\"to\",\"/jQctM\":\"Címzett\",\"tiI71C\":\"A korlátozások emeléséhez lépjen kapcsolatba velünk\",\"ecUA8p\":\"Today\",\"W428WC\":\"Oszlopok kapcsolása\",\"BRMXj0\":\"Tomorrow\",\"UBSG1X\":\"Legjobb szervezők (Elmúlt 14 nap)\",\"3sZ0xx\":\"Összes fiók\",\"SMDzqJ\":\"Összes résztvevő\",\"orBECM\":\"Összesen beszedve\",\"k5CU8c\":\"Összes bejegyzés\",\"4B7oCp\":\"Összesített díj\",\"sMMlTX\":\"Total fees\",\"mlvCEl\":\"Total orders\",\"2AW/k5\":\"Teljes mennyiség az összes időpontra\",\"dp8BCb\":\"Total tax\",\"vb0Q0/\":\"Összes felhasználó\",\"oJjplO\":\"Összes megtekintés\",\"rBZ9pz\":\"Tours\",\"orluER\":\"Kövesse nyomon a fióknövekedést és teljesítményt hozzárendelési forrás szerint\",\"YwKzpH\":\"Követés és elemzés\",\"GUA0Jy\":\"Try a different search term or filter\",\"2P/OWN\":\"Try adjusting your filters to see more dates.\",\"ouM5IM\":\"Próbáljon másik e-mailt\",\"3DZvE7\":\"Próbálja ki a Hi.Events-et ingyen\",\"vq2WxD\":\"Tue\",\"G3myU+\":\"Tuesday\",\"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\",\"nWRfmt\":\"Tipográfia\",\"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\":\"Unable to load attendee details.\",\"GlnD5Y\":\"Unable to load products for this date. Please try again.\",\"17VbmV\":\"Unable to undo check-in\",\"n57zCW\":\"Nem hozzárendelt fiókok\",\"9uI/rE\":\"Undo\",\"Ef7StM\":\"Ismeretlen\",\"ZBAScj\":\"Ismeretlen résztvevő\",\"MEIAzV\":\"Névtelen\",\"K6L5Mx\":\"Névtelen helyszín\",\"7yiFvZ\":\"Fizetetlen\",\"X13xGn\":\"Nem megbízható\",\"gyXpQN\":\"Upcoming events\",\"Pp1sWX\":\"Partner frissítése\",\"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\":\"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 scanner listening\",\"dyTklH\":\"USB scanner paused\",\"OHJXlK\":\"Használjon <0>Liquid sablonokat az e-mailek személyre szabásához\",\"/rsy72\":\"Use event default\",\"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.\",\"bA31T4\":\"Vásárló adatainak használata minden résztvevőhöz\",\"PpgtnC\":\"Cím használata\",\"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\":\"VAT number\",\"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\":\"VAT registered\",\"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\":\"VAT settings updated\",\"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\":\"VAT: not registered\",\"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\":\"View All\",\"yA/6BX\":\"View all →\",\"6CQ7/B\":\"View all capabilities\",\"YSE15b\":\"View all check-in lists\",\"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\":[\"View details for \",[\"0\"],\" \",[\"1\"]],\"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\":\"Waiting for scan…\",\"u0n+wz\":\"Várólista\",\"3RXFtE\":\"Várólista engedélyezve\",\"TwnTPy\":\"Várólista ajánlat lejárt\",\"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.\",\"aT/44s\":\"We couldn't copy that Stripe connection. Please try again.\",\"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.\",\"Fjj/5/\":\"We couldn't load the check-in lists. Please try again.\",\"ADsQ23\":\"We couldn't reach Stripe just now. Please try again in a moment.\",\"HJKdzP\":\"Hiba történt az oldal betöltésekor. Kérjük, próbálja újra.\",\"jegrvW\":\"We partner with Stripe to send payouts straight to your bank account.\",\"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 annak megértéséhez, hogyan használják az oldalt, és hogy javítsuk az élményt.\",\"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.\",\"mfM/HJ\":[\"E-mailben értesítjük, ha hely szabadul fel a(z) \",[\"productDisplayName\"],\" számára ekkor: \",[\"occurrenceDate\"],\".\"],\"iy+M+c\":[\"E-mailben értesítjük, ha hely szabadul fel a(z) \",[\"productDisplayName\"],\" számára.\"],\"McuGND\":\"We'll open a message composer with a pre-filled template after saving. You review and send it — nothing is sent automatically.\",\"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\":[\"We've made changes to the schedule for \\\"\",[\"title\"],\"\\\" — \",[\"description\"],\" affecting \",[\"affectedCount\"],\" session(s).\"],\"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 integrations\",\"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\":\"Wed\",\"VAcXNz\":\"Wednesday\",\"64X6l4\":\"week\",\"4XSc4l\":\"Weekly\",\"IAUiSh\":\"weeks\",\"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\":\"What time?\",\"FaSXqR\":\"Milyen típusú esemény?\",\"0WyYF4\":\"What unauthenticated staff can see\",\"2+ExvJ\":\"WhatsApp\",\"cxsKvw\":\"Amikor egy bejelentkezés törölve lett\",\"RPe6bE\":\"When a date is cancelled on a recurring event\",\"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 csatlakozhatnak egy várólistához, hogy értesítést kapjanak, amikor helyek szabadulnak fel.\",\"OIkHj+\":\"Amikor egy termék elfogy, az ügyfelek csatlakozhatnak egy várólistához, hogy értesítést kapjanak, amikor helyek szabadulnak fel. Az ügyfelek egy adott dátumra iratkoznak fel a várólistára, és az ajánlatok dátumonként történnek.\",\"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ény archiválásra kerül\",\"gtoSzE\":\"Amikor egy esemény frissül\",\"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\":\"Amikor az ügyfelek jegyeket vásárolnak, megrendeléseik itt fognak megjelenni.\",\"pm9tpn\":\"Ha engedélyezve van, a vásárlók egyszerre másolhatják át nevüket és e-mail-címüket az összes résztvevőhöz. Kapcsolja ki, hogy eltávolítsa az \\\"Összes résztvevő\\\" lehetőséget; a vásárlók továbbra is átmásolhatják adataikat az első résztvevőhöz, a többit egyenként kell megadni.\",\"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.\",\"uchB0M\":\"Widget előnézet\",\"uvIqcj\":\"Műhely\",\"EpknJA\":\"Írja ide üzenetét...\",\"nhtR6Y\":\"X (Twitter)\",\"7qI8sJ\":\"year\",\"zkWmBh\":\"Yearly\",\"+BGee5\":\"years\",\"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+\":\"You can override this for individual dates later.\",\"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.\",\"D8baxD\":\"Fizetős jegyeid vannak, de a Stripe még nincs összekötve, így nem tudsz fizetéseket fogadni.\",\"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\":\"El kell ismernie felelősségeit a mentés előtt\",\"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/\":\"You need to create at least one occurrence before you can add attendees to this recurring event.\",\"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\":\"You'll be able to set up dates, schedules, and recurrence rules in the next step.\",\"zKAheG\":\"You're changing session times\",\"MNFIxz\":[\"El fog menni ide: \",[\"0\"],\"!\"],\"ZlLcht\":[\"Ön a következő dátumra iratkozik fel a várólistára: \",[\"occurrenceDate\"],\".\"],\"qGZz0m\":\"Felkerült a várólistára!\",\"/5HL6k\":\"Helyet ajánlottak neked!\",\"gbjFFH\":\"You've changed the session time\",\"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\":\"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\":\"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\":\"Várólista ajánlata lejárt és nem tudtuk teljesíteni rendelését. Kérjük, csatlakozzon újra a várólistához, hogy értesítést kapjon, amikor több hely szabadul fel.\",\"9Q6UKX\":\"YouTube\"}")}; \ No newline at end of file diff --git a/frontend/src/locales/hu.po b/frontend/src/locales/hu.po index d6cbc6dcda..54959f2271 100644 --- a/frontend/src/locales/hu.po +++ b/frontend/src/locales/hu.po @@ -179,11 +179,11 @@ msgstr "" msgid "{totalCount} ticket types" msgstr "{totalCount} jegytípus" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:554 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:567 msgid "{totalOccurrences} dates" msgstr "" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:547 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:560 msgid "{totalOccurrences} sessions across {0} dates ({1, plural, one {# session} other {# sessions}} per day)" msgstr "" @@ -516,7 +516,7 @@ msgstr "Aktív események" msgid "Active payment methods" msgstr "" -#: src/components/routes/event/OccurrencesTab/index.tsx:400 +#: src/components/routes/event/OccurrencesTab/index.tsx:402 msgid "Activity" msgstr "" @@ -536,11 +536,11 @@ msgstr "" msgid "Add a description for this check-in list" msgstr "Adjon leírást ehhez a bejelentkezési listához" -#: src/components/routes/event/OccurrencesTab/index.tsx:538 +#: src/components/routes/event/OccurrencesTab/index.tsx:541 msgid "Add a Single Date" msgstr "" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:739 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:752 msgid "Add another time" msgstr "" @@ -560,7 +560,7 @@ msgstr "Adjon hozzá bármilyen megjegyzést a megrendeléshez. Ezek nem lesznek msgid "Add any notes about the order..." msgstr "Adjon hozzá bármilyen megjegyzést a megrendeléshez..." -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:375 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:382 msgid "Add at least one time" msgstr "" @@ -580,7 +580,7 @@ msgstr "" msgid "Add dates" msgstr "Időpontok hozzáadása" -#: src/components/routes/event/OccurrencesTab/index.tsx:524 +#: src/components/routes/event/OccurrencesTab/index.tsx:526 msgid "Add Dates" msgstr "" @@ -611,7 +611,7 @@ msgstr "Adjon hozzá utasításokat az offline fizetésekhez (pl. banki átutal msgid "Add Location" msgstr "Helyszín hozzáadása" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:743 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:756 msgid "Add multiple times if you run several sessions per day." msgstr "" @@ -796,7 +796,7 @@ msgid "all" msgstr "" #: src/components/layouts/CheckIn/tabs/SearchTab.tsx:133 -#: src/components/routes/event/OccurrencesTab/index.tsx:485 +#: src/components/routes/event/OccurrencesTab/index.tsx:487 msgid "All" msgstr "" @@ -987,7 +987,7 @@ msgstr "Váratlan hiba történt." msgid "An unexpected error occurred. Please try again." msgstr "Váratlan hiba történt. Kérjük, próbálja újra." -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:849 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:862 msgid "and {0} more..." msgstr "" @@ -1003,7 +1003,7 @@ msgstr "" msgid "Answers provided at checkout (e.g. meal choice)" msgstr "" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:564 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:577 msgid "Any dates you've manually customized will be kept." msgstr "" @@ -1071,7 +1071,7 @@ msgstr "" msgid "Approve Message" msgstr "Üzenet jóváhagyása" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:74 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:76 msgid "April" msgstr "" @@ -1127,7 +1127,7 @@ msgstr "Biztosan archiválja ezt az eseményt? Nem lesz többé látható a nyil 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." -#: src/components/routes/event/OccurrencesTab/index.tsx:213 +#: src/components/routes/event/OccurrencesTab/index.tsx:215 msgid "Are you sure you want to cancel {count} date(s)? Affected attendees will be notified by email." msgstr "" @@ -1159,7 +1159,7 @@ msgstr "Biztosan törölni szeretné ezt a konfigurációt? Ez hatással lehet a #: src/components/modals/ManageOccurrenceModal/index.tsx:58 #: src/components/routes/event/OccurrenceDetail/index.tsx:84 -#: src/components/routes/event/OccurrencesTab/index.tsx:182 +#: src/components/routes/event/OccurrencesTab/index.tsx:184 msgid "Are you sure you want to delete this date? This action cannot be undone." msgstr "" @@ -1446,7 +1446,7 @@ msgstr "Hozzárendelési bontás" msgid "Attribution Value" msgstr "Hozzárendelési érték" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:78 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:80 msgid "August" msgstr "" @@ -1625,7 +1625,7 @@ msgstr "Brazíliai portugál" msgid "Built-in fraud protection" msgstr "" -#: src/components/routes/event/OccurrencesTab/index.tsx:515 +#: src/components/routes/event/OccurrencesTab/index.tsx:517 msgid "Bulk Edit" msgstr "" @@ -1674,11 +1674,11 @@ msgstr "A követőpixelek hozzáadásával elismeri, hogy Ön és ez a platform 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" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:628 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:641 msgid "By day of month" msgstr "" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:629 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:642 msgid "By day of week" msgstr "" @@ -1698,7 +1698,7 @@ msgstr "Alkalmazási díjak megkerülése" msgid "Calculation Type" msgstr "Számítás típusa" -#: src/components/routes/event/OccurrencesTab/index.tsx:471 +#: src/components/routes/event/OccurrencesTab/index.tsx:473 msgid "Calendar" msgstr "" @@ -1735,7 +1735,7 @@ msgstr "" #: src/components/modals/ManageOrderModal/index.tsx:209 #: src/components/modals/PublishEventModal/index.tsx:208 #: src/components/routes/event/messages.tsx:80 -#: src/components/routes/event/OccurrencesTab/index.tsx:497 +#: src/components/routes/event/OccurrencesTab/index.tsx:499 #: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:272 #: src/components/routes/event/OccurrencesTab/OccurrenceEditModal/index.tsx:306 #: src/components/routes/event/OccurrencesTab/OccurrenceMenu.tsx:61 @@ -1748,8 +1748,8 @@ msgstr "" msgid "Cancel" msgstr "Mégsem" -#: src/components/routes/event/OccurrencesTab/index.tsx:209 -#: src/components/routes/event/OccurrencesTab/index.tsx:221 +#: src/components/routes/event/OccurrencesTab/index.tsx:211 +#: src/components/routes/event/OccurrencesTab/index.tsx:223 msgid "Cancel {count} date(s)" msgstr "" @@ -1809,7 +1809,7 @@ msgstr "A törlés törli az összes ehhez a rendeléshez tartozó résztvevőt, msgid "Cancelled" msgstr "Törölve" -#: src/components/routes/event/OccurrencesTab/index.tsx:235 +#: src/components/routes/event/OccurrencesTab/index.tsx:237 msgid "Cancelling {0} date(s). This may take a moment to complete." msgstr "" @@ -1819,7 +1819,7 @@ msgstr "A rendszer alapértelmezett konfigurációja nem törölhető" #: src/components/forms/CapaciyAssigmentForm/index.tsx:42 #: src/components/routes/event/OccurrencesTab/OccurrenceEditModal/index.tsx:503 -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:811 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:824 msgid "Capacity" msgstr "Kapacitás" @@ -2154,7 +2154,7 @@ msgid "City" msgstr "Város" #: src/components/common/OccurrenceSelect/index.tsx:133 -#: src/components/routes/event/OccurrencesTab/index.tsx:503 +#: src/components/routes/event/OccurrencesTab/index.tsx:505 msgid "Clear" msgstr "" @@ -2174,7 +2174,7 @@ msgstr "Keresési szöveg törlése" msgid "Clearing removes any per-date override. Affected dates will fall back to the event's default location." msgstr "" -#: src/components/routes/event/OccurrencesTab/index.tsx:331 +#: src/components/routes/event/OccurrencesTab/index.tsx:333 msgid "Click to cancel" msgstr "" @@ -2182,7 +2182,7 @@ msgstr "" msgid "Click to copy" msgstr "Kattintson a másoláshoz" -#: src/components/routes/event/OccurrencesTab/index.tsx:333 +#: src/components/routes/event/OccurrencesTab/index.tsx:335 msgid "Click to reopen for new sales" msgstr "" @@ -2743,7 +2743,7 @@ msgstr "{0} sablon létrehozása" msgid "Create a custom widget to sell tickets on your site." msgstr "Hozzon létre egyedi widgetet jegyek értékesítéséhez a webhelyén." -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:785 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:798 msgid "Create a fixed number" msgstr "" @@ -2879,7 +2879,7 @@ msgstr "Promóciós kód létrehozása" msgid "Create Question" msgstr "Kérdés létrehozása" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:864 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:877 msgid "Create Schedule" msgstr "" @@ -2927,6 +2927,10 @@ msgstr "Hozza létre saját eseményét" msgid "Created" msgstr "Létrehozva" +#: src/components/routes/event/OccurrencesTab/index.tsx:549 +msgid "Creating {0} dates. This may take a moment." +msgstr "{0} időpont létrehozása folyamatban. Ez eltarthat egy pillanatig." + #: src/components/routes/welcome/index.tsx:472 msgid "Creating Event..." msgstr "Esemény létrehozása..." @@ -3066,7 +3070,7 @@ msgstr "Testreszabhatja eseményoldalát" msgid "Customize your organizer page appearance" msgstr "Testreszabhatja szervezői oldalának megjelenését." -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:56 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:58 #: src/components/routes/product-widget/OccurrenceSelector/index.tsx:32 msgid "Daily" msgstr "" @@ -3155,7 +3159,7 @@ msgstr "" #: src/components/modals/ManageOccurrenceModal/index.tsx:61 #: src/components/routes/event/OccurrenceDetail/index.tsx:87 -#: src/components/routes/event/OccurrencesTab/index.tsx:184 +#: src/components/routes/event/OccurrencesTab/index.tsx:186 msgid "Date deleted" msgstr "" @@ -3168,7 +3172,7 @@ msgstr "" msgid "Date reactivated" msgstr "" -#: src/components/routes/event/OccurrencesTab/index.tsx:198 +#: src/components/routes/event/OccurrencesTab/index.tsx:200 msgid "Date reopened for new sales" msgstr "" @@ -3184,15 +3188,15 @@ msgstr "" msgid "Dates with sessions" msgstr "" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:93 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:95 msgid "day" msgstr "" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:659 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:672 msgid "Day" msgstr "" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:676 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:689 msgid "Day of Month" msgstr "" @@ -3200,19 +3204,19 @@ msgstr "" msgid "Day one capacity" msgstr "Első nap kapacitás" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:101 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:103 msgid "days" msgstr "" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:635 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:648 msgid "Days of Month" msgstr "" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:605 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:618 msgid "Days of Week" msgstr "" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:82 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:84 msgid "December" msgstr "" @@ -3230,7 +3234,7 @@ msgstr "Alapértelmezett" msgid "Default attendee information collection" msgstr "Alapértelmezett résztvevői információgyűjtés" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:815 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:828 msgid "Default capacity per date" msgstr "" @@ -3253,7 +3257,7 @@ msgstr "törlés" #: src/components/common/QuestionsTable/index.tsx:150 #: src/components/common/TaxAndFeeList/index.tsx:81 #: src/components/routes/admin/FailedJobs/index.tsx:209 -#: src/components/routes/event/OccurrencesTab/index.tsx:500 +#: src/components/routes/event/OccurrencesTab/index.tsx:502 #: src/components/routes/event/OccurrencesTab/OccurrenceMenu.tsx:62 msgid "Delete" msgstr "Törlés" @@ -3262,7 +3266,7 @@ msgstr "Törlés" msgid "Delete \"{0}\"?" msgstr "Törli a következőt: \"{0}\"?" -#: src/components/routes/event/OccurrencesTab/index.tsx:247 +#: src/components/routes/event/OccurrencesTab/index.tsx:249 msgid "Delete {count} selected date(s)? Dates with orders will be skipped. This cannot be undone." msgstr "" @@ -3344,7 +3348,7 @@ msgstr "Törli ezt a kérdést? Ez nem vonható vissza." msgid "Delete webhook" msgstr "Webhook törlése" -#: src/components/routes/event/OccurrencesTab/index.tsx:253 +#: src/components/routes/event/OccurrencesTab/index.tsx:255 msgid "Deleted {0} date(s)" msgstr "" @@ -3565,7 +3569,7 @@ msgstr "pl. 180 (3 óra)" #: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:452 #: src/components/routes/event/OccurrencesTab/OccurrenceEditModal/index.tsx:450 -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:714 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:727 msgid "e.g. Morning Session" msgstr "" @@ -3724,7 +3728,7 @@ msgstr "Webhook szerkesztése" msgid "Edit Webhook" msgstr "Webhook szerkesztése" -#: src/components/routes/event/OccurrencesTab/index.tsx:306 +#: src/components/routes/event/OccurrencesTab/index.tsx:308 msgid "Edited" msgstr "" @@ -3913,7 +3917,7 @@ msgstr "Várólista engedélyezése" msgid "Enabled" msgstr "Engedélyezve" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:704 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:717 msgid "End" msgstr "" @@ -3934,7 +3938,7 @@ msgstr "Befejezés dátuma és ideje (opcionális)" msgid "End date must be after start date" msgstr "A befejezés dátumának a kezdő dátum után kell lennie." -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:771 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:784 msgid "End on a date" msgstr "" @@ -4409,7 +4413,7 @@ msgstr "Nem sikerült törölni a résztvevőt." msgid "Failed to cancel date" msgstr "" -#: src/components/routes/event/OccurrencesTab/index.tsx:239 +#: src/components/routes/event/OccurrencesTab/index.tsx:241 msgid "Failed to cancel dates" msgstr "" @@ -4429,10 +4433,14 @@ msgstr "Nem sikerült létrehozni a partnert." msgid "Failed to create configuration" msgstr "A konfiguráció létrehozása sikertelen" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:530 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:543 msgid "Failed to create schedule" msgstr "" +#: src/hooks/useOccurrenceGenerationPolling.ts:44 +msgid "Failed to create schedule. Please try again." +msgstr "Nem sikerült létrehozni az ütemezést. Kérjük, próbálja újra." + #: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:192 #: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:195 msgid "Failed to create template" @@ -4444,7 +4452,7 @@ msgstr "A konfiguráció törlése sikertelen" #: src/components/modals/ManageOccurrenceModal/index.tsx:64 #: src/components/routes/event/OccurrenceDetail/index.tsx:90 -#: src/components/routes/event/OccurrencesTab/index.tsx:185 +#: src/components/routes/event/OccurrencesTab/index.tsx:187 msgid "Failed to delete date" msgstr "" @@ -4452,7 +4460,7 @@ msgstr "" msgid "Failed to delete date. It may have existing orders." msgstr "" -#: src/components/routes/event/OccurrencesTab/index.tsx:256 +#: src/components/routes/event/OccurrencesTab/index.tsx:258 msgid "Failed to delete dates" msgstr "" @@ -4540,7 +4548,7 @@ msgstr "Nem sikerült eltávolítani a várólistáról" msgid "Failed to remove override" msgstr "" -#: src/components/routes/event/OccurrencesTab/index.tsx:199 +#: src/components/routes/event/OccurrencesTab/index.tsx:201 msgid "Failed to reopen date" msgstr "" @@ -4677,7 +4685,7 @@ msgstr "" msgid "Fast payouts to your bank" msgstr "" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:72 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:74 msgid "February" msgstr "" @@ -4769,7 +4777,7 @@ msgstr "" msgid "Finish setup" msgstr "" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:63 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:65 msgid "First" msgstr "" @@ -4882,7 +4890,7 @@ msgstr "Lábléc szövege" msgid "Forgot password?" msgstr "Elfelejtette jelszavát?" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:66 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:68 msgid "Fourth" msgstr "" @@ -4909,11 +4917,11 @@ msgstr "Ingyenes termék, fizetési információ nem szükséges" msgid "French" msgstr "Francia" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:586 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:599 msgid "Frequency" msgstr "" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:50 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:52 msgid "Fri" msgstr "" @@ -5004,7 +5012,7 @@ msgstr "GitHub" #: src/components/routes/event/OccurrenceDetail/index.tsx:72 #: src/components/routes/event/OccurrencesTab/cancelOccurrenceDialog.tsx:49 -#: src/components/routes/event/OccurrencesTab/index.tsx:221 +#: src/components/routes/event/OccurrencesTab/index.tsx:223 #: src/components/routes/event/OccurrencesTab/OccurrenceEditModal/index.tsx:339 #: src/components/routes/event/OccurrencesTab/OccurrenceEditModal/index.tsx:363 msgid "Go Back" @@ -5271,7 +5279,7 @@ msgstr "Hogyan kerül alkalmazásra a kedvezmény?" msgid "How long a customer has to complete their purchase after receiving an offer. Leave empty for no timeout." msgstr "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." -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:750 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:763 msgid "How long does the schedule run?" msgstr "" @@ -5283,7 +5291,7 @@ msgstr "Hány perc áll az ügyfél rendelkezésére a megrendelés befejezésé msgid "How many times can this code be used?" msgstr "Hányszor használható fel ez a kód?" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:581 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:594 msgid "How often?" msgstr "" @@ -5589,7 +5597,7 @@ msgstr "tétel(ek)" msgid "Items" msgstr "Tételek" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:71 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:73 msgid "January" msgstr "" @@ -5640,11 +5648,11 @@ msgstr "Csatlakozás a várólistához: {productDisplayName}" msgid "Joined" msgstr "Csatlakozott" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:77 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:79 msgid "July" msgstr "" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:76 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:78 msgid "June" msgstr "" @@ -5670,7 +5678,7 @@ msgstr "" #: src/components/forms/ProductForm/index.tsx:108 #: src/components/routes/event/OccurrencesTab/OccurrenceEditModal/index.tsx:449 -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:711 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:724 #: src/components/routes/event/Reports/OccurrenceSummaryReport/index.tsx:45 msgid "Label" msgstr "Címke" @@ -5685,7 +5693,7 @@ msgstr "" msgid "Language" msgstr "Nyelv" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:67 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:69 msgid "Last" msgstr "" @@ -5794,7 +5802,7 @@ msgid "Leave blank to use the default word \"Invoice\"" msgstr "Hagyja üresen az alapértelmezett „Számla” szó használatához" #: src/components/routes/event/OccurrencesTab/OccurrenceEditModal/index.tsx:507 -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:816 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:829 msgid "Leave empty for unlimited" msgstr "" @@ -5834,7 +5842,7 @@ msgstr "LinkedIn" msgid "Links Allowed" msgstr "Linkek engedélyezve" -#: src/components/routes/event/OccurrencesTab/index.tsx:470 +#: src/components/routes/event/OccurrencesTab/index.tsx:472 msgid "List" msgstr "" @@ -6003,7 +6011,7 @@ msgstr "" msgid "Manage attendee" msgstr "Résztvevő kezelése" -#: src/components/routes/event/OccurrencesTab/index.tsx:460 +#: src/components/routes/event/OccurrencesTab/index.tsx:462 msgid "Manage dates and times for your recurring event" msgstr "" @@ -6074,7 +6082,7 @@ msgstr "Résztvevő manuális hozzáadása" msgid "Manually Add Attendee" msgstr "Résztvevő manuális hozzáadása" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:73 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:75 msgid "March" msgstr "" @@ -6098,7 +6106,7 @@ msgstr "Max címzettek / üzenet" msgid "Maximum Per Order" msgstr "Maximum megrendelésenként" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:75 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:77 msgid "May" msgstr "" @@ -6214,7 +6222,7 @@ msgstr "Egyéb beállítások" msgid "Mode" msgstr "" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:46 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:48 msgid "Mon" msgstr "" @@ -6230,24 +6238,24 @@ msgstr "A pénzértékek az összes pénznem hozzávetőleges összegei" msgid "Monitor and manage failed background jobs" msgstr "Sikertelen háttérfeladatok figyelése és kezelése" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:95 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:97 msgid "month" msgstr "" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:671 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:684 msgid "Month" msgstr "Hónap" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:58 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:60 #: src/components/routes/product-widget/OccurrenceSelector/index.tsx:41 msgid "Monthly" msgstr "" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:624 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:637 msgid "Monthly Pattern" msgstr "" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:103 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:105 msgid "months" msgstr "" @@ -6516,7 +6524,7 @@ msgstr "" msgid "No dates match the current filters." msgstr "" -#: src/components/routes/event/OccurrencesTab/index.tsx:570 +#: src/components/routes/event/OccurrencesTab/index.tsx:580 msgid "No dates match your filters" msgstr "" @@ -6529,7 +6537,7 @@ msgstr "" msgid "No dates scheduled" msgstr "Nincsenek ütemezett időpontok" -#: src/components/routes/event/OccurrencesTab/index.tsx:570 +#: src/components/routes/event/OccurrencesTab/index.tsx:580 msgid "No dates scheduled yet" msgstr "" @@ -6820,11 +6828,11 @@ msgstr "" msgid "Notify organizer of new orders" msgstr "Szervező értesítése új megrendelésekről" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:81 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:83 msgid "November" msgstr "" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:800 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:813 msgid "Number of dates to create" msgstr "" @@ -6849,7 +6857,7 @@ msgid "Occurrence Cancelled" msgstr "" #: src/components/layouts/Event/index.tsx:113 -#: src/components/routes/event/OccurrencesTab/index.tsx:461 +#: src/components/routes/event/OccurrencesTab/index.tsx:463 msgid "Occurrence Schedule" msgstr "" @@ -6871,7 +6879,7 @@ msgstr "" msgid "Occurrences can be configured after creation" msgstr "" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:80 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:82 msgid "October" msgstr "" @@ -6965,7 +6973,7 @@ msgstr "Folyamatban" #: src/components/common/EventCard/index.tsx:103 #: src/components/layouts/OrganizerHomepage/EventCard/index.tsx:49 -#: src/components/routes/event/OccurrencesTab/index.tsx:316 +#: src/components/routes/event/OccurrencesTab/index.tsx:318 #: src/components/routes/event/OccurrencesTab/OccurrenceEditModal/index.tsx:473 #: src/components/routes/my-tickets/index.tsx:56 #: src/components/routes/product-widget/OccurrenceSelector/index.tsx:122 @@ -7080,7 +7088,7 @@ msgstr "Opciók" msgid "or" msgstr "vagy" -#: src/components/routes/event/OccurrencesTab/index.tsx:593 +#: src/components/routes/event/OccurrencesTab/index.tsx:603 msgid "or add a single date" msgstr "" @@ -7088,7 +7096,7 @@ msgstr "" msgid "Or enable offline payments and disable Stripe" msgstr "Vagy engedélyezd az offline fizetést és tiltsd le a Stripe-ot" -#: src/components/routes/event/OccurrencesTab/index.tsx:413 +#: src/components/routes/event/OccurrencesTab/index.tsx:415 msgid "order" msgstr "" @@ -7250,7 +7258,7 @@ msgstr "A rendelés sikeresen frissítve" msgid "Order was cancelled" msgstr "Rendelés törölve lett" -#: src/components/routes/event/OccurrencesTab/index.tsx:413 +#: src/components/routes/event/OccurrencesTab/index.tsx:415 #: src/components/routes/event/orders.tsx:197 msgid "orders" msgstr "" @@ -7503,7 +7511,7 @@ msgid "Passwords are not the same" msgstr "A jelszavak nem egyeznek." #: src/components/layouts/OrganizerHomepage/index.tsx:291 -#: src/components/routes/event/OccurrencesTab/index.tsx:484 +#: src/components/routes/event/OccurrencesTab/index.tsx:486 #: src/components/routes/organizer/Reports/EventsPerformanceReport/index.tsx:30 msgid "Past" msgstr "Múlt" @@ -7707,15 +7715,15 @@ msgstr "Személyes adatok" msgid "Phone" msgstr "Telefon" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:372 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:379 msgid "Pick an end date" msgstr "" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:380 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:387 msgid "Pick at least one day of the month" msgstr "" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:369 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:376 msgid "Pick at least one day of the week" msgstr "" @@ -7765,7 +7773,7 @@ msgstr "Platform bevétel" msgid "Please add at least one option" msgstr "Kérjük, adjon hozzá legalább egy opciót." -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:527 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:540 #: src/hooks/useFormErrorResponseHandler.tsx:18 msgid "Please check the provided information is correct" msgstr "Kérjük, ellenőrizze, hogy a megadott információk helyesek-e." @@ -7895,7 +7903,7 @@ msgstr "Népszerű események (Elmúlt 14 nap)" msgid "Portuguese" msgstr "Portugál" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:654 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:667 msgid "Position" msgstr "" @@ -8385,7 +8393,7 @@ msgstr "Ajánlási fiókok" msgid "Refresh Preview" msgstr "Előnézet frissítése" -#: src/components/routes/event/OccurrencesTab/index.tsx:216 +#: src/components/routes/event/OccurrencesTab/index.tsx:218 msgid "Refund all orders for these dates" msgstr "" @@ -8494,11 +8502,11 @@ msgstr "Teljesen eltávolítja az elkelt időpontokat az esemény oldaláról. H msgid "Reopen for new sales" msgstr "" -#: src/components/routes/event/OccurrencesTab/index.tsx:192 +#: src/components/routes/event/OccurrencesTab/index.tsx:194 msgid "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." msgstr "" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:591 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:604 msgid "Repeat every" msgstr "" @@ -8699,7 +8707,7 @@ msgstr "Ajánlat visszavonása" msgid "Role" msgstr "Szerep" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:772 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:785 msgid "Run until a specific date" msgstr "" @@ -8786,7 +8794,7 @@ msgstr "Minta jegyár" msgid "Sample Venue" msgstr "Minta helyszín" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:51 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:53 msgid "Sat" msgstr "" @@ -8836,7 +8844,7 @@ msgstr "" msgid "Save Organizer" msgstr "Szervező mentése" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:864 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:877 msgid "Save Schedule" msgstr "" @@ -8900,11 +8908,12 @@ msgstr "" msgid "Schedule added" msgstr "" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:520 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:530 +#: src/hooks/useOccurrenceGenerationPolling.ts:36 msgid "Schedule created successfully" msgstr "" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:793 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:806 msgid "Schedule ends on" msgstr "" @@ -8916,7 +8925,7 @@ msgstr "Ütemezés későbbre" msgid "Schedule Message" msgstr "Üzenet ütemezése" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:755 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:768 msgid "Schedule starts on" msgstr "" @@ -9039,7 +9048,7 @@ msgstr "Keresés..." msgid "Seasonal" msgstr "" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:64 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:66 msgid "Second" msgstr "" @@ -9215,7 +9224,7 @@ msgstr "Válassza ki, mely események indítják el ezt a webhookot." msgid "Select..." msgstr "Válasszon..." -#: src/components/routes/event/OccurrencesTab/index.tsx:495 +#: src/components/routes/event/OccurrencesTab/index.tsx:497 msgid "selected" msgstr "" @@ -9345,7 +9354,7 @@ msgstr "Keresőoptimalizálási beállítások" msgid "SEO Title" msgstr "Keresőoptimalizálási cím" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:79 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:81 msgid "September" msgstr "" @@ -9373,7 +9382,7 @@ msgstr "Alapértelmezett beállítások megadása az e szervező alatt létrehoz msgid "Set how long each date lasts" msgstr "" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:784 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:797 msgid "Set number of dates" msgstr "" @@ -9393,7 +9402,7 @@ msgstr "Állítsa be a számlaszámozás kezdő számát. Ez nem módosítható, msgid "Set to unlimited (remove limit)" msgstr "" -#: src/components/routes/event/OccurrencesTab/index.tsx:575 +#: src/components/routes/event/OccurrencesTab/index.tsx:585 msgid "Set up a recurring schedule to automatically create dates, or add them one at a time." msgstr "" @@ -9410,8 +9419,8 @@ msgstr "" msgid "Set up schedule" msgstr "" -#: src/components/routes/event/OccurrencesTab/index.tsx:532 -#: src/components/routes/event/OccurrencesTab/index.tsx:586 +#: src/components/routes/event/OccurrencesTab/index.tsx:535 +#: src/components/routes/event/OccurrencesTab/index.tsx:596 msgid "Set Up Schedule" msgstr "" @@ -9427,7 +9436,7 @@ msgstr "Állítsa be szervezetét" msgid "Set up your schedule" msgstr "" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:569 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:582 msgid "Set Up Your Schedule" msgstr "" @@ -9564,7 +9573,7 @@ msgstr "Adó és díjak külön megjelenítése" msgid "Showing {0} of {totalRows} records" msgstr "{0} / {totalRows} rekord megjelenítése" -#: src/components/routes/event/OccurrencesTab/index.tsx:614 +#: src/components/routes/event/OccurrencesTab/index.tsx:624 msgid "Showing {0}–{1} of {2}" msgstr "" @@ -9645,7 +9654,7 @@ msgstr "Közösségi linkek és weboldal" #: src/components/common/ProductsTable/SortableProduct/index.tsx:387 #: src/components/modals/ManageOccurrenceModal/index.tsx:186 -#: src/components/routes/event/OccurrencesTab/index.tsx:369 +#: src/components/routes/event/OccurrencesTab/index.tsx:371 msgid "Sold" msgstr "Eladva" @@ -9753,7 +9762,7 @@ msgstr "" msgid "Standard product with a fixed price" msgstr "Standard termék fix árral" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:696 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:709 msgid "Start" msgstr "" @@ -9846,7 +9855,7 @@ msgstr "" #: src/components/routes/admin/Messages/index.tsx:120 #: src/components/routes/admin/Messages/index.tsx:167 #: src/components/routes/admin/Messages/index.tsx:294 -#: src/components/routes/event/OccurrencesTab/index.tsx:326 +#: src/components/routes/event/OccurrencesTab/index.tsx:328 #: src/components/routes/event/Reports/OccurrenceSummaryReport/index.tsx:51 #: src/components/routes/event/Reports/PromoCodesReport/index.tsx:88 #: src/components/routes/organizer/Reports/EventsPerformanceReport/index.tsx:62 @@ -10104,7 +10113,7 @@ msgstr "Nyári Zenei Fesztivál {0}" msgid "Summer Music Festival 2025" msgstr "Nyári Zenei Fesztivál 2025" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:52 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:54 msgid "Sun" msgstr "" @@ -10231,7 +10240,7 @@ msgstr "Meséljen nekünk az eseményéről." msgid "Tell us about your organization. This information will be displayed on your event pages." msgstr "Meséljen nekünk a szervezetéről. Ez az információ megjelenik az eseményoldalain." -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:573 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:586 msgid "Tell us how often your event repeats and we'll create all the dates for you." msgstr "" @@ -10325,7 +10334,7 @@ msgstr "Az e-mail cím megváltozott. A résztvevő új jegyet kap a frissített msgid "The event you're looking for is not available at the moment. It may have been removed, expired, or the URL might be incorrect." msgstr "A keresett esemény jelenleg nem elérhető. Lehet, hogy eltávolították, lejárt, vagy az URL hibás." -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:756 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:769 msgid "The first date this schedule will generate from." msgstr "" @@ -10345,7 +10354,7 @@ msgstr "A link, amelyet meg próbál nyitni, lejárt vagy már nem érvényes. K msgid "The link you clicked is invalid." msgstr "A link, amire kattintott, érvénytelen." -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:840 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:853 msgid "The maximum is {MAX_PREVIEW} sessions. Please reduce the date range, frequency, or number of sessions per day." msgstr "" @@ -10481,7 +10490,7 @@ msgstr "Ezek a sablonok alapértelmezettként lesznek használva a szervezet ös 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." -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:65 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:67 msgid "Third" msgstr "" @@ -10744,7 +10753,7 @@ msgstr "Ez nem lesz látható az ügyfelek számára, de segít azonosítani a p msgid "Throughput" msgstr "" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:49 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:51 msgid "Thu" msgstr "" @@ -10881,7 +10890,7 @@ msgstr "A többszintű termékek lehetővé teszik, hogy ugyanahhoz a termékhez msgid "TikTok" msgstr "TikTok" -#: src/components/routes/event/OccurrencesTab/index.tsx:290 +#: src/components/routes/event/OccurrencesTab/index.tsx:292 msgid "Time" msgstr "" @@ -10912,7 +10921,7 @@ msgstr "Felhasználások száma" msgid "Timezone" msgstr "Időzóna" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:702 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:715 msgid "to" msgstr "" @@ -11056,7 +11065,7 @@ msgstr "Követés és elemzés" msgid "Try a different search term or filter" msgstr "" -#: src/components/routes/event/OccurrencesTab/index.tsx:574 +#: src/components/routes/event/OccurrencesTab/index.tsx:584 msgid "Try adjusting your filters to see more dates." msgstr "" @@ -11069,7 +11078,7 @@ msgstr "Próbáljon másik e-mailt" msgid "Try Hi.Events Free" msgstr "Próbálja ki a Hi.Events-et ingyen" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:47 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:49 msgid "Tue" msgstr "" @@ -11232,7 +11241,7 @@ msgstr "Nem megbízható" #: src/components/common/EventsDashboardStatusButtons/index.tsx:20 #: src/components/common/EventStatusBadge/index.tsx:16 #: src/components/layouts/OrganizerHomepage/index.tsx:285 -#: src/components/routes/event/OccurrencesTab/index.tsx:483 +#: src/components/routes/event/OccurrencesTab/index.tsx:485 #: src/components/routes/organizer/Reports/EventsPerformanceReport/index.tsx:33 msgid "Upcoming" msgstr "Közelgő" @@ -11880,7 +11889,7 @@ msgstr "Webhookok" msgid "Website" msgstr "Weboldal" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:48 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:50 msgid "Wed" msgstr "" @@ -11888,16 +11897,16 @@ msgstr "" msgid "Wednesday" msgstr "" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:94 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:96 msgid "week" msgstr "" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:57 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:59 #: src/components/routes/product-widget/OccurrenceSelector/index.tsx:35 msgid "Weekly" msgstr "" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:102 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:104 msgid "weeks" msgstr "" @@ -11953,7 +11962,7 @@ msgstr "Mely termékekre kell vonatkoznia ennek a kapacitásnak?" msgid "What time will you be arriving?" msgstr "Mikor érkezik?" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:688 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:701 msgid "What time?" msgstr "" @@ -12140,7 +12149,7 @@ msgstr "Írja ide üzenetét..." msgid "X (Twitter)" msgstr "X (Twitter)" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:96 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:98 msgid "year" msgstr "" @@ -12150,12 +12159,12 @@ msgstr "" msgid "Year to date" msgstr "Év elejétől napjainkig" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:59 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:61 #: src/components/routes/product-widget/OccurrenceSelector/index.tsx:43 msgid "Yearly" msgstr "" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:104 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:106 msgid "years" msgstr "" @@ -12200,7 +12209,7 @@ msgstr "További szolgáltatási díjakat és adókat konfigurálhat a fiókbeá msgid "You can create a promo code which targets this product on the" msgstr "Létrehozhat egy promóciós kódot, amely ezt a terméket célozza meg a" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:823 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:836 msgid "You can override this for individual dates later." msgstr "" diff --git a/frontend/src/locales/it.js b/frontend/src/locales/it.js index 5c7b298b82..6158d8200b 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 niente 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\":\"123 Main Street\",\"IoRZzD\":\"20\",\"+H1RMb\":\"2024-01-01 10:00\",\"Q/T49U\":\"2024-01-01 18:00\",\"hMT8+2\":\"94103\",\"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\":\"Are you sure you want to make this event public? This will make the event visible to the public\",\"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\":\"Attendee Notes\",\"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\":\"Personalizza la pagina del tuo evento\",\"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\":\"Dismiss\",\"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\":\"Event URL\",\"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\":\"No attendees have been added to this order.\",\"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\":\"No product associated with this attendee.\",\"Ya1JhR\":\"Nessun prodotto disponibile in questa categoria.\",\"FTfObB\":\"Ancora Nessun Prodotto\",\"+Y976X\":\"Nessun Codice Promozionale da mostrare\",\"MAavyl\":\"No questions answered by this attendee.\",\"SnlQeq\":\"No questions have been asked for this order.\",\"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\":\"Online event\",\"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\":\"Order #\",\"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\":\"Order Notes\",\"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\":\"Realizzato con\",\"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 ulteriori informazioni o istruzioni per questa domanda. Utilizza questo campo per aggiungere termini\\ne condizioni, linee guida o qualsiasi altra informazione importante che i partecipanti debbano 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\":\"View\",\"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\":\"(none)\",\"xYxQCZ\":[[\"0\"],\" \",[\"1\"]],\"lAOy2r\":[[\"0\"],\" \",[\"1\"],\" ha già effettuato il check-in\"],\"3beCx0\":[[\"0\"],\" <0>checked in\"],\"S4PqS9\":[[\"0\"],\" Webhook Attivi\"],\"6MIiOI\":[[\"0\"],\" rimasti\"],\"COnw8D\":[\"Logo \",[\"0\"]],\"xG9N0H\":[[\"0\"],\" of \",[\"1\"],\" seats are taken.\"],\"B7pZfX\":[[\"0\"],\" organizzatori\"],\"/HkCs4\":[[\"0\"],\" biglietti\"],\"30bTiU\":[[\"activeCount\"],\" enabled\"],\"jTs4am\":[[\"appName\"],\" logo\"],\"gbJOk9\":[[\"attendeeCount\"],\" attendees are registered for this session.\"],\"TjbIUI\":[[\"availableCount\"],\" di \",[\"totalCount\"],\" disponibile\"],\"PSChHo\":[[\"capacity\"],\" posti rimasti\"],\"lzQ8/M\":[[\"checkedIn\"],\" / \",[\"total\"],\" checked in\"],\"RZ0JX3\":[[\"chipTime\"],\", esaurito\"],\"M4KnFs\":[[\"chipTime\"],\", Esaurito, lista d'attesa disponibile\"],\"SeyN12\":[[\"completedCount\"],\" of \",[\"totalCount\"],\" steps complete\"],\"f2rhaD\":[[\"diffHr\"],\"h ago\"],\"NRSLBe\":[[\"diffMin\"],\"m ago\"],\"iYfwJE\":[[\"diffSec\"],\"s ago\"],\"OJnhhX\":[[\"eventCount\"],\" eventi\"],\"mhZbzw\":[[\"loadedAffectedAttendees\"],\" attendees are registered across the affected sessions.\"],\"RBuxIl\":[[\"productCount\"],\" ticket types configured\"],\"VFLd0I\":[[\"slotCount\"],\" times available\"],\"3IEF7U\":[[\"totalCount\"],\" tipi di biglietto\"],\"0cLzoF\":[[\"totalOccurrences\"],\" dates\"],\"AEGc4t\":[[\"totalOccurrences\"],\" sessions across \",[\"0\"],\" dates (\",[\"1\",\"plural\",{\"one\":[\"#\",\" session\"],\"other\":[\"#\",\" sessions\"]}],\" per day)\"],\"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.\",\"Il5Uid\":\"<0>Questa è la quantità totale disponibile per tutte le date del programma nel loro insieme: non è un limite per data. Per limitare la partecipazione a ogni data, imposta una capacità nella <1>pagina Programmazione delle date.\",\"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 attendee is registered across the affected sessions.\",\"qOyE2U\":\"1 attendee is registered for this session.\",\"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\",\"y2Jh0m\":\"1 time available\",\"cGtUz6\":\"1 settimana prima dell'evento\",\"HR/cvw\":\"Via Esempio 123\",\"dgKxZ5\":\"135+ currencies & 40+ payment methods\",\"kMU5aM\":\"Un avviso di annullamento è stato inviato a\",\"o++0qa\":\"a change in duration\",\"WuWSX5\":\"A few quick steps and you're ready to start selling.\",\"RQ5kDd\":\"Un messaggio da visualizzare quando non ci sono prodotti in questa categoria.\",\"V53XzQ\":\"Un nuovo codice di verifica è stato inviato alla tua email\",\"sr2Je0\":\"a shift in start/end times\",\"/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\":\"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\":\"Aggiungi domande personalizzate per raccogliere informazioni aggiuntive durante il checkout\",\"Z/dcxc\":\"Add Date\",\"QeupRg\":\"Aggiungi date\",\"Q219NT\":\"Add Dates\",\"yjB5VC\":\"Add dates and times for your recurring event\",\"Z8idyM\":\"Add details\",\"wpirGs\":\"Add event details\",\"VX6WUv\":\"Aggiungi luogo\",\"GCQlV2\":\"Add multiple times if you run several sessions per day.\",\"7JF9w9\":\"Aggiungi domanda\",\"NLbIb6\":\"Add this attendee anyway (override capacity)\",\"6PNlRV\":\"Aggiungi questo evento al tuo calendario\",\"BGD9Yt\":\"Aggiungi biglietti\",\"uIv4Op\":\"Aggiungi i pixel di tracciamento alle pagine pubbliche dei tuoi eventi e alla homepage 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\":\"Affiliate program\",\"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.\",\"3e31kI\":\"After your event is created, you can choose how often it repeats from the dashboard.\",\"z7GAMJ\":\"all\",\"N40H+G\":\"All\",\"7rLTkE\":\"Tutti gli eventi archiviati\",\"gKq1fa\":\"Tutti i partecipanti\",\"63gRoO\":\"All attendees of the selected sessions\",\"uWxIoH\":\"All attendees of this occurrence\",\"pMLul+\":\"Tutte le valute\",\"sgUdRZ\":\"All dates\",\"e4q4uO\":\"All Dates\",\"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\":\"All matching dates\",\"F1/VgK\":\"All occurrences\",\"OpWjMq\":\"All Occurrences\",\"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.\",\"VZdky1\":\"Consenti agli acquirenti di copiare i propri dati su tutti i partecipanti\",\"F3mW5G\":\"Consenti ai clienti di iscriversi a una lista d'attesa quando questo prodotto è esaurito\",\"4CMO/q\":\"Consenti ai clienti di iscriversi a una lista d'attesa quando questo prodotto è esaurito. I clienti si iscrivono alla lista d'attesa per una data specifica.\",\"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\":\"Already in\",\"/H326L\":\"Già rimborsato\",\"USEpOK\":\"Already use Stripe on another organizer? Reuse that connection.\",\"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.\",\"OPFdAM\":\"Una descrizione facoltativa di questa categoria da visualizzare sulla pagina dell'evento.\",\"eusccx\":\"Un messaggio facoltativo da visualizzare sul prodotto evidenziato, ad esempio \\\"In vendita veloce 🔥\\\" o \\\"Miglior rapporto qualità-prezzo\\\"\",\"5GJuNp\":[\"and \",[\"0\"],\" more...\"],\"QNrkms\":\"Risposta aggiornata con successo.\",\"+qygei\":\"Answers\",\"GK7Lnt\":\"Answers provided at checkout (e.g. meal choice)\",\"lE8PgT\":\"Any dates you've manually customized will be kept.\",\"jVoYha\":[\"applicato — \",[\"0\"],\" di sconto sul tuo ordine\"],\"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\":\"Approva messaggio\",\"naCW6Z\":\"April\",\"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\":[\"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\":\"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/\":\"Are you sure you want to delete this date? This action cannot be undone.\",\"RiF/yT\":\"Are you sure you want to delete this image?\",\"b3+Qku\":\"Are you sure you want to delete this tax or fee? It will no longer be applied to new orders.\",\"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\":\"Are you sure you want to permanently delete this date? This cannot be undone.\",\"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?\",\"b7tkGp\":\"Are you sure you want to revoke this invitation?\",\"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\":\"Assign plan\",\"xdiER7\":\"Livello assegnato\",\"F2rX0R\":\"Deve essere selezionato almeno un tipo di evento\",\"Z44eZS\":\"At least one product must stay available for this date. To make the date inaccessible, cancel it from the schedule instead.\",\"BCmibk\":\"Tentativi\",\"6PecK3\":\"Presenze e tassi di check-in per tutti gli eventi\",\"K2tp3v\":\"attendee\",\"AJ4rvK\":\"Partecipante Cancellato\",\"qvylEK\":\"Partecipante Creato\",\"Aspq3b\":\"Raccolta dati partecipanti\",\"fpb0rX\":\"Dati del partecipante copiati dall'ordine\",\"94aQMU\":\"Informazioni partecipante\",\"KkrBiR\":\"Raccolta delle informazioni sui partecipanti\",\"sjPjOg\":\"Attendee notes\",\"cosfD8\":\"Stato del Partecipante\",\"D2qlBU\":\"Partecipante Aggiornato\",\"22BOve\":\"Partecipante aggiornato con successo\",\"x8Vnvf\":\"Il biglietto del partecipante non è incluso in questa lista\",\"/Ywywr\":\"attendees\",\"zLRobu\":\"attendees checked in\",\"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/\":\"August\",\"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\",\"Xp+ywP\":\"Disponibile al completamento del pagamento\",\"dwDH1K\":[\"Available times on \",[\"dayName\"]],\"clF06r\":\"Disponibile per rimborso\",\"NB5+UG\":\"Token Disponibili\",\"L+wGOG\":\"Awaiting\",\"qcw2OD\":\"Awaiting pay\",\"kNmmvE\":\"Awesome Events S.r.l.\",\"TeSaQO\":\"Torna a Account\",\"kYqM1A\":\"Torna all'evento\",\"s5QRF3\":\"Torna ai messaggi\",\"td/bh+\":\"Torna ai Report\",\"nsm7BA\":\"Torna alla ricerca\",\"imjKVx\":\"Bank account connected\",\"D9LTCH\":\"Base Price\",\"hviJef\":\"Based on the global sale period above, not per date\",\"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\":\"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\":\"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 garantire di avere una base giuridica per questo trattamento ai sensi delle leggi sulla privacy applicabili (GDPR, CCPA, ecc.).\",\"DFqasq\":[\"Continuando, accetti i <0>\",[\"0\"],\"Termini del servizio\"],\"wVSa+U\":\"By day of month\",\"0MnNgi\":\"By day of week\",\"CetOZE\":\"By ticket type\",\"lFdbRS\":\"Ignora commissioni applicazione\",\"AjVXBS\":\"Calendar\",\"2VLZwd\":\"Pulsante di Invito all'Azione\",\"rT2cV+\":\"Camera\",\"7hYa9y\":\"Camera permission was denied. <0>Request permission again, or grant this page camera access in your browser settings.\",\"D02dD9\":\"Campagna\",\"RRPA79\":\"Can't check in\",\"OcVwAd\":[\"Cancel \",[\"count\"],\" date(s)\"],\"H4nE+E\":\"Cancella tutti i prodotti e rilasciali nel pool disponibile\",\"Py78q9\":\"Cancel Date\",\"tOXAdc\":\"La cancellazione cancellerà tutti i partecipanti associati a questo ordine e rilascerà i biglietti nel pool disponibile.\",\"FPpqc7\":[\"Cancelling \",[\"0\"],\" date(s). This may take a moment to complete.\"],\"01sEfm\":\"Impossibile eliminare la configurazione predefinita del sistema\",\"VsM1HH\":\"Assegnazioni di capacità\",\"9bIMVF\":\"Capacity management\",\"H7K8og\":\"Capacity must be 0 or greater\",\"nzao08\":\"capacity updates\",\"4cp9NP\":\"Capacity Used\",\"K7tIrx\":\"Categoria\",\"DRK3Bq\":\"Category deleted successfully\",\"o+XJ9D\":\"Cambia\",\"kJkjoB\":\"Change duration\",\"J0KExZ\":\"Change the attendee limit\",\"ssospy\":\"Change time\",\"CIHJJf\":\"Modifica impostazioni lista di attesa\",\"B5icLR\":[\"Changed duration for \",[\"count\"],\" date(s)\"],\"Kb+0BT\":\"Charges\",\"2tbLdK\":\"Beneficenza\",\"BPWGKn\":\"Check in\",\"6uFFoY\":\"Check out\",\"FjAlwK\":[\"Check out this event: \",[\"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 for \",[\"0\"],\" was undone\"],\"9s/wrQ\":\"Check-in history\",\"Wwztk4\":\"Check-In List\",\"9gPPUY\":\"Lista di Check-In Creata!\",\"dwjiJt\":\"Check-in list info\",\"7od0PV\":\"check-in lists\",\"f2vU9t\":\"Liste di Check-in\",\"XprdTn\":\"Check-in navigation\",\"5tV1in\":\"Check-in progress\",\"SHJwyq\":\"Tasso di check-in\",\"qCqdg6\":\"Stato del Check-In\",\"cKj6OE\":\"Riepilogo Check-in\",\"7B5M35\":\"Check-In\",\"VrmydS\":\"Checked in\",\"DM4gBB\":\"Cinese (Tradizionale)\",\"p8Jvp4\":\"Choose a configuration\",\"ElShBO\":\"Choose a different action\",\"pHEhf+\":\"Scegli un carattere adatto al tuo brand. I caratteri sono ospitati tramite Bunny Fonts.\",\"Zok1Gx\":\"Choose an organizer\",\"pkk46Q\":\"Scegli un organizzatore\",\"Ag32+c\":\"Choose another date\",\"Crr3pG\":\"Scegli calendario\",\"Z38ZJu\":\"Scegli come viene mostrata la data dell'evento sul biglietto\",\"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\":\"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\":\"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\":\"complete\",\"bUQMpb\":\"Complete Stripe setup\",\"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\":\"Configuration assigned\",\"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\":\"Configure which products are available for this occurrence and optionally adjust pricing.\",\"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\",\"/K4Vqr\":\"Collega Stripe per accettare pagamenti\",\"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\":\"I dettagli di connessione sono obbligatori per gli eventi online\",\"jfC/xh\":\"Contatto\",\"LOFgda\":[\"Contatta \",[\"0\"]],\"41BQ3k\":\"Email di contatto\",\"m8WD6t\":\"Continua configurazione\",\"0GwUT4\":\"Procedi al pagamento\",\"sBV87H\":\"Continua alla creazione dell'evento\",\"nKtyYu\":\"Continua al passo successivo\",\"F3/nus\":\"Continua al pagamento\",\"s30OcA\":\"Controlla come date e orari vengono mostrati sulla pagina dell'evento\",\"p2FRHj\":\"Controlla come vengono gestite le commissioni della piattaforma per questo evento\",\"NqfabH\":\"Control who gets in for this date\",\"fmYxZx\":\"Control who gets in, and when\",\"1JnTgU\":\"Copiato da sopra\",\"FxVG/l\":\"Copiato negli appunti\",\"PiH3UR\":\"Copiato!\",\"4i7smN\":\"Copy account ID\",\"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\":\"Could not prepare the bulk update.\",\"KOavaU\":\"Impossibile recuperare i dettagli dell'indirizzo\",\"/lq4oO\":\"Could not save date\",\"mHu0az\":\"Couldn't send verification email. Please try again.\",\"QOIm+S\":\"I conteggi includono tutte le date future. A ogni persona viene offerto un posto per la data scelta al momento dell'iscrizione.\",\"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\":\"Covers every ticket\",\"zg4oSu\":[\"Crea Modello \",[\"0\"]],\"RKKhnW\":\"Crea un widget personalizzato per vendere biglietti sul tuo sito.\",\"6sk7PP\":\"Create a fixed number\",\"jqhTmw\":\"Create a list for this date\",\"PhioFp\":\"Create a new check-in list for an active session, or contact the organizer if you think this is a mistake.\",\"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\":\"Create Date\",\"Nc3l/D\":\"Crea sconti, codici di accesso per biglietti nascosti e offerte speciali.\",\"PybJS2\":\"Create event\",\"eWEV9G\":\"Crea una nuova password\",\"wl2iai\":\"Create Schedule\",\"8AiKIu\":\"Crea biglietto o prodotto\",\"/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\":\"Crea il tuo primo evento per iniziare a vendere biglietti e gestire i partecipanti.\",\"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\":\"Currently assigned\",\"iTvh6I\":\"Attualmente disponibile per l'acquisto\",\"A42Dqn\":\"Custom branding\",\"Guo0lU\":\"Data e ora personalizzate\",\"WDMdn8\":\"Custom questions\",\"O6mra8\":\"Domande personalizzate\",\"axv/Mi\":\"Modello personalizzato\",\"2YeVGY\":\"Link cliente copiato negli appunti\",\"QMHSMS\":\"Il cliente riceverà un'email di conferma del rimborso\",\"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\":\"Daily\",\"/gWrVZ\":\"Ricavi giornalieri, tasse, commissioni e rimborsi per tutti gli eventi\",\"zgCHnE\":\"Report Vendite Giornaliere\",\"nHm0AI\":\"Ripartizione giornaliera di vendite, tasse e commissioni\",\"1aPnDT\":\"Dance\",\"pvnfJD\":\"Scuro\",\"MaB9wW\":\"Date Cancellation\",\"e6cAxJ\":\"Date cancelled\",\"81jBnC\":\"Date cancelled successfully\",\"a/C/6R\":\"Date created successfully\",\"IW7Q+u\":\"Date deleted\",\"rngCAz\":\"Date deleted successfully\",\"vHbfoQ\":\"Date reactivated\",\"hvah+S\":\"Date reopened for new sales\",\"Ez0YsD\":\"Date updated successfully\",\"Te33mU\":\"Dates are managed per occurrence\",\"91zCxb\":\"Dates with sessions\",\"/ITcnz\":\"day\",\"H7OUPr\":\"Day\",\"JtHrX9\":\"Day of Month\",\"J/Upwb\":\"days\",\"vDVA2I\":\"Days of Month\",\"rDLvlL\":\"Days of Week\",\"r6zgGo\":\"December\",\"jbq7j2\":\"Rifiuta\",\"ovBPCi\":\"Predefinito\",\"JtI4vj\":\"Raccolta predefinita delle informazioni sui partecipanti\",\"ULjv90\":\"Default capacity per date\",\"3R/Tu2\":\"Gestione predefinita delle commissioni\",\"1bZAZA\":\"Verrà utilizzato il modello predefinito\",\"HNlEFZ\":\"elimina\",\"KpnwJK\":[\"Eliminare \\\"\",[\"0\"],\"\\\"?\"],\"BlII4o\":[\"Delete \",[\"count\"],\" selected date(s)? Dates with orders will be skipped. This cannot be undone.\"],\"vu7gDm\":\"Elimina affiliato\",\"KZN4Lc\":\"Elimina tutto\",\"6EkaOO\":\"Delete Date\",\"io0G93\":\"Elimina evento\",\"+jw/c1\":\"Elimina immagine\",\"hdyeZ0\":\"Elimina lavoro\",\"xxjZeP\":\"Elimina luogo\",\"sY3tIw\":\"Elimina organizzatore\",\"UBv8UK\":\"Delete Permanently\",\"dPyJ15\":\"Elimina Modello\",\"IQTR34\":\"Delete this category? Any products in it will also be deleted. This cannot be undone.\",\"/1wMxk\":\"Delete this product? This cannot be undone.\",\"mxsm1o\":\"Eliminare questa domanda? Questa azione non può essere annullata.\",\"snMaH4\":\"Elimina webhook\",\"LIZZLY\":[\"Deleted \",[\"0\"],\" date(s)\"],\"7w0Wev\":\"Description and venue added\",\"vYgeDk\":\"Deseleziona tutto\",\"NvuEhl\":\"Elementi di Design\",\"H8kMHT\":\"Non hai ricevuto il codice?\",\"G8KNgd\":\"Different location\",\"E/QGRL\":\"Disabled\",\"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.\",\"HtaSQp\":\"Mostra quanti posti restano per ogni data nel widget dei biglietti. Puoi modificarlo per le singole date.\",\"pfa8F0\":\"Nome visualizzato\",\"Kdpf90\":\"Non dimenticare!\",\"352VU2\":\"\\\"Non hai un account? <0>Registrati\",\"AXXqG+\":\"Donazione\",\"DPfwMq\":\"Fatto\",\"JoPiZ2\":\"Door staff instructions\",\"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+\":\"A causa dell'elevato rischio di spam, è necessario collegare un account Stripe prima di poter inviare messaggi ai partecipanti.\\nQuesto per garantire che tutti gli organizzatori dell'evento siano verificati e responsabili.\",\"euc6Ns\":\"Duplica\",\"YueC+F\":\"Duplicate Date\",\"KRmTkx\":\"Duplica Prodotto\",\"Jd3ymG\":\"Duration must be at least 1 minute.\",\"KIjvtr\":\"Olandese\",\"22xieU\":\"es. 180 (3 ore)\",\"/zajIE\":\"e.g. Morning Session\",\"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.\",\"Xfsjel\":\"Ogni prodotto\",\"5oD9f/\":\"Earlier\",\"LTzmgK\":[\"Modifica Modello \",[\"0\"]],\"v4+lcZ\":\"Modifica affiliato\",\"2iZEz7\":\"Modifica Risposta\",\"t2bbp8\":\"Modifica partecipante\",\"etaWtB\":\"Modifica dettagli partecipante\",\"+guao5\":\"Modifica configurazione\",\"1Mp/A4\":\"Edit Date\",\"m0ZqOT\":\"Modifica luogo\",\"8oivFT\":\"Modifica luogo\",\"vRWOrM\":\"Modifica dettagli ordine\",\"fW5sSv\":\"Modifica webhook\",\"nP7CdQ\":\"Modifica Webhook\",\"MRZxAn\":\"Edited\",\"uBAxNB\":\"Editor\",\"aqxYLv\":\"Istruzione\",\"iiWXDL\":\"Errori di idoneità\",\"zPiC+q\":\"Liste Check-In Idonee\",\"SiVstt\":\"Email & scheduled messages\",\"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\":\"Embeddable widget\",\"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\":\"End\",\"sGjBEq\":\"Data e ora di fine (opzionale)\",\"PKXt9R\":\"La data di fine deve essere successiva alla data di inizio\",\"ZayGC7\":\"End on a date\",\"48Y16Q\":\"Ora di fine (facoltativo)\",\"TbaYrr\":[\"Ended \",[\"0\"]],\"CFgwiw\":[\"Ends \",[\"0\"]],\"SqOIQU\":\"Enter a capacity value or choose unlimited.\",\"h37gRz\":\"Enter a label or choose to remove it.\",\"7YZofi\":\"Inserisci un oggetto e un corpo per vedere l'anteprima\",\"khyScF\":\"Enter a time to shift by.\",\"SKx/0u\":\"Inserisci il nome di un luogo o un indirizzo\",\"ppwojw\":\"Inserisci il nome di una sede o un indirizzo per gli eventi in presenza\",\"j+eCIq\":\"Inserisci l'indirizzo manualmente\",\"3bR1r4\":\"Inserisci email affiliato (facoltativo)\",\"ARkzso\":\"Inserisci nome affiliato\",\"ej4L8b\":\"Enter capacity\",\"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)\",\"RRlWVA\":\"Intero ordine\",\"o21Y+P\":\"entries\",\"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\",\"+v+GW0\":\"Visualizzazione della data dell'evento\",\"7u9/DO\":\"Evento eliminato con successo\",\"imgKgl\":\"Descrizione dell'evento\",\"IzR/Fc\":\"Event lifetime\",\"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\",\"mImacG\":\"Pagina dell'evento\",\"Hk9Ki/\":\"Evento ripristinato con successo\",\"JyD0LH\":\"Impostazioni evento\",\"XVLu2v\":\"Titolo dell'evento\",\"OfmsI9\":\"Evento troppo recente\",\"4SILkp\":\"Event totals\",\"YDVUVl\":\"Tipi di Evento\",\"+HeiVx\":\"Evento aggiornato\",\"19j6uh\":\"Performance Eventi\",\"PC3/fk\":\"Eventi che iniziano nelle prossime 24 ore\",\"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\":\"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\":\"Failed to cancel date\",\"YUX+f+\":\"Failed to cancel dates\",\"SIHgVQ\":\"Impossibile annullare il messaggio\",\"cEFg3R\":\"Creazione affiliato non riuscita\",\"dVgNF1\":\"Impossibile creare la configurazione\",\"fAoRRJ\":\"Failed to create schedule\",\"U66oUa\":\"Impossibile creare il modello\",\"aFk48v\":\"Impossibile eliminare la configurazione\",\"n1CYMH\":\"Failed to delete date\",\"KXv+Qn\":\"Failed to delete date. It may have existing orders.\",\"JJ0uRo\":\"Failed to delete dates\",\"rgoBnv\":\"Impossibile eliminare l'evento\",\"Zw6LWb\":\"Impossibile eliminare il lavoro\",\"tq0abZ\":\"Impossibile eliminare i lavori\",\"2mkc3c\":\"Impossibile eliminare l'organizzatore\",\"5E23qd\":\"Failed to delete product. Please try again.\",\"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\":\"Failed to reactivate date\",\"7zyx8a\":\"Impossibile rimuovere dalla lista d'attesa\",\"A/P7PX\":\"Failed to remove override\",\"ogWc1z\":\"Failed to reopen date\",\"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\":\"Failed to save override\",\"sj/eZA\":\"Failed to save price override\",\"780n8A\":\"Failed to save product settings\",\"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\":\"Family\",\"5LO38w\":\"Fast payouts to your bank\",\"4lgLew\":\"February\",\"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\":\"Filter attendees\",\"8OvVZZ\":\"Filtra Partecipanti\",\"N/H3++\":\"Filter by date\",\"mvrlBO\":\"Filtra per evento\",\"g+xRXP\":\"Finish setting up Stripe\",\"LHH461\":\"Finish setup\",\"syyeb9\":\"First\",\"Vj6wk9\":\"First 30 days\",\"/bpZYb\":\"First 7 days\",\"ziEnjY\":\"First 90 days\",\"1vBhpG\":\"Primo partecipante\",\"4pwejF\":\"Il nome è obbligatorio\",\"rVogsf\":\"Risolvi i problemi per pubblicare\",\"3lkYdQ\":\"Fixed fee\",\"6bBh3/\":\"Tariffa fissa\",\"zWqUyJ\":\"Commissione fissa applicata per transazione\",\"LWL3Bs\":\"La tariffa fissa deve essere pari o superiore a 0\",\"0RI8m4\":\"Flash off\",\"q0923e\":\"Flash on\",\"X+U6/w\":\"Famiglia di caratteri\",\"lWxAUo\":\"Cibo e bevande\",\"nFm+5u\":\"Testo del Piè di Pagina\",\"a8nooQ\":\"Fourth\",\"wtuVU4\":\"Frequency\",\"xVhQZV\":\"Fri\",\"39y5bn\":\"Friday\",\"f5UbZ0\":\"Full data ownership\",\"cfvx/y\":\"Full event\",\"MY2SVM\":\"Rimborso completo\",\"PGQLdy\":\"future\",\"8N/j1s\":\"Future dates only\",\"yRx/6K\":\"Future dates will be copied with capacity reset to zero\",\"T02gNN\":\"Ingresso Generale\",\"3ep0Gx\":\"Informazioni generali sul tuo organizzatore\",\"ziAjHi\":\"Genera\",\"exy8uo\":\"Genera codice\",\"4CETZY\":\"Indicazioni stradali\",\"pjkEcB\":\"Get Paid\",\"lGYzP6\":\"Get paid with Stripe\",\"ZDIydz\":\"Iniziare\",\"u6FPxT\":\"Ottieni i biglietti\",\"8KDgYV\":\"Prepara il tuo evento\",\"RkXlPZ\":\"GitHub\",\"sr0UJD\":\"Go Back\",\"oNL5vN\":\"Vai alla pagina dell'evento\",\"gHSuV/\":\"Vai alla pagina iniziale\",\"8+Cj55\":\"Go to Schedule\",\"6nDzTl\":\"Buona leggibilità\",\"76gPWk\":\"Got it\",\"CZXzs4\":\"Greco\",\"aGWZUr\":\"Ricavi lordi\",\"n8IUs7\":\"Ricavi Lordi\",\"O1wAlQ\":\"Guest\",\"LIYoRQ\":\"Gestione ospiti\",\"NUsTc4\":\"Happening now\",\"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\":\"Hi,\",\"/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\":\"Hide details\",\"FmogyU\":\"Nascondi opzioni\",\"uXNYjR\":\"Nascondi date e orari esauriti\",\"g9RcYX\":\"Nascondi la data\",\"uMwTx7\":\"Nascondere questa categoria?\",\"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\":\"Hobbies\",\"yY8wAv\":\"Hours\",\"49Tkiw\":\"Come viene applicato lo sconto?\",\"sy9anN\":\"Quanto tempo ha un cliente per completare l'acquisto dopo aver ricevuto un'offerta. Lascia vuoto per nessun limite di tempo.\",\"n2ilNh\":\"How long does the schedule run?\",\"DMr2XN\":\"How often?\",\"cceMns\":\"How VAT is applied to the platform fees we charge you.\",\"FONsLE\":\"https://awesome-events.com\",\"htoh8N\":\"https://webhook-domain.com/webhook\",\"mkWad2\":\"Ungherese\",\"8Wgd41\":\"Riconosco le mie responsabilità come 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\",\"CY3yHL\":\"Se selezionato, questa categoria sarà nascosta al pubblico.\",\"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\":[\"in last \",[\"0\"],\" min\"],\"u7r0G5\":\"In person — set a venue\",\"/LCAwL\":\"In corso\",\"F1Xp97\":\"Partecipanti individuali\",\"85e6zs\":\"Inserisci Token Liquid\",\"CTWsuc\":\"Instagram\",\"VopR6B\":\"Instant Stripe payouts\",\"nbfdhU\":\"Integrazioni\",\"I8eJ6/\":\"Internal notes on the attendee's ticket\",\"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\",\"Dn4OyV\":\"Invitato\",\"IuMGvq\":\"Fattura\",\"a/bUcL\":\"It happens on more than one date\",\"d+Oe9r\":\"It may have been unpublished or removed. Please check the link and try again.\",\"Lj7sBL\":\"Italiano\",\"F5/CBH\":\"articolo(i)\",\"BzfzPK\":\"Articoli\",\"rjyWPb\":\"January\",\"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\":\"July\",\"zeEQd/\":\"June\",\"MxjCqk\":\"Stai solo cercando i tuoi biglietti?\",\"xOTzt5\":\"just now\",\"0RihU9\":\"Just wrapped\",\"lB2hSG\":[\"Tienimi aggiornato sulle novità e gli eventi di \",[\"0\"]],\"ioFA9i\":\"Keep the profit.\",\"o66QSP\":\"label updates\",\"RtKKbA\":\"Last\",\"DruLRc\":\"Ultimi 14 giorni\",\"ve9JTU\":\"Il cognome è obbligatorio\",\"h0Q9Iw\":\"Ultima Risposta\",\"gw3Ur5\":\"Ultimo Attivato\",\"FIq1Ba\":\"Later\",\"xvnLMP\":\"Latest check-ins\",\"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\":\"Chiaro\",\"1qY5Ue\":\"Link scaduto o non valido\",\"gggTBm\":\"LinkedIn\",\"nvOPBA\":\"Link consentiti\",\"2BBAbc\":\"List\",\"dF6vP6\":\"Online\",\"fpMs2Z\":\"LIVE\",\"D9zTjx\":\"Eventi in Diretta\",\"C33p4q\":\"Loaded dates\",\"WdmJIX\":\"Caricamento anteprima...\",\"IoDI2o\":\"Caricamento token...\",\"G3Ge9Z\":\"Caricamento dei log del webhook...\",\"NFxlHW\":\"Caricamento Webhooks\",\"E0DoRM\":\"Luogo eliminato\",\"7w8lJU\":\"Luogo salvato\",\"YsRXDD\":\"Luogo aggiornato\",\"A/kIva\":\"location updates\",\"iyZPPR\":\"luoghi\",\"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\",\"PSRm6/\":\"Cerca i miei biglietti\",\"yJFu/X\":\"Ufficio principale\",\"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\":\"Gestisci la lista d'attesa del tuo evento, visualizza le statistiche e offri i biglietti ai partecipanti.\",\"g2npA5\":\"Offerta manuale\",\"hg6l4j\":\"March\",\"pqRBOz\":\"Mark as validated (admin override)\",\"2L3vle\":\"Max messaggi / 24h\",\"Qp4HWD\":\"Max destinatari / messaggio\",\"3JzsDb\":\"May\",\"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\":\"Minutes\",\"zz/Wd/\":\"Mode\",\"fpMgHS\":\"Mon\",\"hty0d5\":\"Monday\",\"JbIgPz\":\"I valori monetari sono totali approssimativi in tutte le valute\",\"qvF+MT\":\"Monitora e gestisci i lavori in background falliti\",\"kY2ll9\":\"month\",\"HajiZl\":\"Mese\",\"+8Nek/\":\"Monthly\",\"1LkxnU\":\"Monthly Pattern\",\"6jefe3\":\"months\",\"f8jrkd\":\"more\",\"JcD7qf\":\"More actions\",\"w36OkR\":\"Eventi più visti (Ultimi 14 giorni)\",\"+Y/na7\":\"Move all dates earlier or later\",\"3DIpY0\":\"Multiple locations\",\"g9cQCP\":\"Multiple ticket types\",\"GfaxEk\":\"Musica\",\"oVGCGh\":\"I Miei Biglietti\",\"8/brI5\":\"Il nome è obbligatorio\",\"sFFArG\":\"Il nome deve contenere meno di 255 caratteri\",\"xxU3NX\":\"Ricavi Netti\",\"7I8LlL\":\"New capacity\",\"n1GRql\":\"New label\",\"y0Fcpd\":\"Nuovo luogo\",\"ArHT/C\":\"Nuove iscrizioni\",\"uK7xWf\":\"New time:\",\"veT5Br\":\"Next occurrence\",\"WXtl5X\":[\"Next: \",[\"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\":\"No attendees to show\",\"PKySlW\":\"No attendees yet for this date.\",\"/UC6qk\":\"Nessun dato di attribuzione trovato\",\"E2vYsO\":\"No capabilities reported by Stripe yet.\",\"amMkpL\":\"Nessuna capacità\",\"d2Jf1f\":\"No change\",\"99ntUF\":\"Nessuna lista di check-in disponibile per questo evento.\",\"wG+knX\":\"No check-ins yet\",\"+dAKxg\":\"Nessuna configurazione trovata\",\"LiLk8u\":\"No connections available\",\"eb47T5\":\"Nessun dato trovato per i filtri selezionati. Prova a modificare l'intervallo di date o la valuta.\",\"Zc216S\":\"No date added\",\"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\",\"OtJSnL\":\"Nessuna data in programma\",\"gEdNe8\":\"No dates scheduled yet\",\"pZNOT9\":\"Nessuna data di fine\",\"dW40Uz\":\"Nessun evento trovato\",\"8pQ3NJ\":\"Nessun evento in programma nelle prossime 24 ore\",\"8zCZQf\":\"Nessun evento disponibile\",\"Yc5YW6\":\"Nessun lavoro fallito\",\"EpvBAp\":\"Nessuna fattura\",\"XZkeaI\":\"Nessun log trovato\",\"IcAC6J\":\"Nessun carattere corrispondente\",\"nrSs2u\":\"Nessun messaggio trovato\",\"Rj99yx\":\"No occurrences available\",\"IFU1IG\":\"No occurrences on this date\",\"OVFwlg\":\"Nessuna domanda d'ordine ancora\",\"EJ7bVz\":\"Nessun ordine trovato\",\"NEmyqy\":\"Nessun ordine disponibile\",\"a77B6w\":\"No orders yet for this date.\",\"wUv5xQ\":\"Nessuna attività dell'organizzatore negli ultimi 14 giorni\",\"vLd1tV\":\"No organizer context available.\",\"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\":\"No products configured for this event.\",\"kY7XDn\":\"Nessun prodotto ha voci nella lista d'attesa\",\"8mw4tm\":\"Messaggio di nessun prodotto\",\"wYiAtV\":\"Nessuna iscrizione recente\",\"UW90md\":\"Nessun destinatario trovato\",\"QoAi8D\":\"Nessuna risposta\",\"JeO7SI\":\"Nessuna risposta\",\"EK/G11\":\"Ancora nessuna risposta\",\"59OWd3\":\"Nessun luogo salvato\",\"mPdY6W\":\"Nessun suggerimento\",\"3sRuiW\":\"Nessun biglietto trovato\",\"debCrL\":\"Nessun biglietto in vendita\",\"k2C0ZR\":\"No upcoming dates\",\"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-edited\",\"Itw24Q\":\"Not checked in\",\"x5+Lcz\":\"Non Registrato\",\"8n10sz\":\"Non Idoneo\",\"kLvU3F\":\"Notify attendees and stop sales\",\"t9QlBd\":\"November\",\"kAREMN\":\"Number of dates to create\",\"6u1B3O\":\"Occurrence\",\"mmoE62\":\"Occurrence Cancelled\",\"V9flmL\":\"Occurrence Schedule\",\"Kh3WO8\":\"Occurrence Summary\",\"byXCTu\":\"Occurrences\",\"KATw3p\":\"Occurrences (future only)\",\"85rTR2\":\"Occurrences can be configured after creation\",\"dzQfDY\":\"October\",\"BwJKBw\":\"di\",\"9h7RDh\":\"Offrire\",\"EfK2O6\":\"Offri posto\",\"3sVRey\":\"Offri biglietti\",\"2O7Ybb\":\"Scadenza dell'offerta\",\"1jUg5D\":\"Offerto\",\"l+/HS6\":[\"Le offerte scadono dopo \",[\"timeoutHours\"],\" ore.\"],\"6Aih4U\":\"Offline\",\"nO3VbP\":[\"In vendita \",[\"0\"]],\"oXOSPE\":\"Online\",\"aqmy5k\":\"Online — provide connection details\",\"LuZBbx\":\"Online & in-person\",\"IXuOqt\":\"Online & in-person — see schedule\",\"WjSpu5\":\"Evento online\",\"scPxI/\":[\"Solo \",[\"capacity\"],\" rimasti\"],\"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\",\"wkpaqp\":\"Mostra solo data e ora di inizio\",\"DMk8F0\":\"Only tickets count toward capacity\",\"M2w1ni\":\"Visibile solo con codice promozionale\",\"y8Bm7C\":\"Open check-in\",\"RLz7P+\":\"Open occurrence\",\"cDSdPb\":\"Soprannome facoltativo mostrato nei selettori, ad es. \\\"Sala conferenze\\\"\",\"HXMJxH\":\"Testo opzionale per disclaimer, informazioni di contatto o note di ringraziamento (solo una riga)\",\"L565X2\":\"opzioni\",\"8m9emP\":\"or add a single date\",\"eBskDE\":\"Oppure abilita i pagamenti offline e disabilita Stripe\",\"dSeVIm\":\"order\",\"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\",\"xtQzag\":\"Order details\",\"vrSW9M\":\"L'ordine è stato cancellato e rimborsato. Il proprietario dell'ordine è stato notificato.\",\"rzw+wS\":\"Titolari degli ordini\",\"oI/hGR\":\"ID ordine\",\"RQCXz6\":\"Limiti degli ordini\",\"SO9AEF\":\"Limiti di ordine impostati\",\"vu6Arl\":\"Ordine Contrassegnato come Pagato\",\"sLbJQz\":\"Ordine non trovato\",\"kvYpYu\":\"Ordine non trovato\",\"eJ8SvM\":\"Order number, purchase date, purchaser email\",\"FaPYw+\":\"Proprietario ordine\",\"eB5vce\":\"Proprietari di ordini con un prodotto specifico\",\"CxLoxM\":\"Proprietari di ordini con prodotti\",\"UkHo4c\":\"Rif. ordine\",\"EZy55F\":\"Ordine Rimborsato\",\"6eSHqs\":\"Stati ordine\",\"oW5877\":\"Totale Ordine\",\"e7eZuA\":\"Ordine Aggiornato\",\"1SQRYo\":\"Ordine aggiornato con successo\",\"3NT0Ck\":\"L'ordine è stato annullato\",\"V5khLm\":\"orders\",\"sd5IMt\":\"Ordini completati\",\"5It1cQ\":\"Ordini Esportati\",\"UQ0ACV\":\"Totale ordini\",\"B/EBQv\":\"Ordini:\",\"qtGTNu\":\"Account organici\",\"P/JHA4\":\"Organizzatore archiviato con successo\",\"S3CZ5M\":\"Dashboard organizzatore\",\"GzjTd0\":\"Organizzatore eliminato con successo\",\"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\":\"Organizers\",\"/IX/7x\":\"Altro\",\"RsiDDQ\":\"Altre Liste (Biglietto Non Incluso)\",\"aDfajK\":\"Outdoors\",\"qMASRF\":\"Messaggi in uscita\",\"iCOVQO\":\"Override\",\"GpFTEc\":\"Override fees on this organizer\",\"M9ZhMP\":\"Override price\",\"cnVIpl\":\"Override removed\",\"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\":\"Past due\",\"xTPjSy\":\"Eventi passati\",\"/l/ckQ\":\"Incolla URL\",\"URAE3q\":\"In pausa\",\"4fL/V7\":\"Paga\",\"c2/9VE\":\"Payload\",\"5cxUwd\":\"Data di pagamento\",\"ENEPLY\":\"Metodo di pagamento\",\"8Lx2X7\":\"Pagamento ricevuto\",\"fx8BTd\":\"Pagamenti non disponibili\",\"C+ylwF\":\"Payouts\",\"UbRKMZ\":\"Pending\",\"UkM20g\":\"In attesa di revisione\",\"dPYu1F\":\"Per partecipante\",\"mQV/nJ\":\"per min\",\"+kvxv+\":\"per ordine\",\"VlXNyK\":\"Per ordine\",\"NhuGd7\":\"per prodotto\",\"hauDFf\":\"Per biglietto\",\"mnF83a\":\"percentuale Commissione\",\"TNLuRD\":\"Percentage fee (%)\",\"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\":\"Permanently remove this date\",\"6kPk3+\":\"Informazioni personali\",\"zmwvG2\":\"Telefono\",\"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\":\"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\":\"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\":\"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\":\"Please select a date and time\",\"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\":\"Position\",\"OESu7I\":\"Evita l'overselling condividendo l'inventario tra più tipi di biglietto.\",\"NgVUL2\":\"Anteprima modulo di checkout\",\"cs5muu\":\"Anteprima pagina evento\",\"Jm2AC3\":\"Price Tier\",\"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\":\"Product settings cannot be edited for cancelled dates.\",\"2339ej\":\"Product settings saved successfully\",\"ldVIlB\":\"Prodotto Aggiornato\",\"CP3D8G\":\"Progress\",\"JoKGiJ\":\"Codice promo\",\"k3wH7i\":\"Ripartizione utilizzo codici promo e sconti\",\"tZqL0q\":\"promo codes\",\"oCHiz3\":\"Promo codes\",\"uEhdRh\":\"Solo promo\",\"dLm8V5\":\"Le email promozionali potrebbero comportare la sospensione dell'account\",\"W0ETyY\":\"Fornisci almeno un campo dell'indirizzo (sede, via, città o paese).\",\"2W/7Gz\":\"Provide the following before Stripe's next review to keep payouts flowing.\",\"EEYbdt\":\"Pubblica\",\"JcgJKc\":\"Pubblica comunque\",\"evDBV8\":\"Pubblica evento\",\"2zEfOd\":\"Publish your event\",\"L7nrC8\":\"Con la pubblicazione la pagina del tuo evento diventa pubblica e si aprono le iscrizioni.\",\"dsFmM+\":\"Acquistato\",\"JunetL\":\"Purchaser\",\"phmeUH\":\"Purchaser email\",\"ywR4ZL\":\"QR code check-in\",\"oWXNE5\":\"Qtà\",\"biEyJ4\":\"Question answers\",\"k/bJj0\":\"Domande riordinate\",\"b24kPi\":\"Coda\",\"lTPqpM\":\"Quick Tip\",\"fqDzSu\":\"Tasso\",\"mnUGVC\":\"Limite di frequenza superato. Per favore riprova più tardi.\",\"t41hVI\":\"Rioffri posto\",\"TNclgc\":\"Reactivate this date? It will be reopened for future sales.\",\"RENQ6j\":\"Pronto per andare online?\",\"uqoRbb\":\"Real-time analytics\",\"xzRvs4\":[\"Ricevi aggiornamenti sui prodotti da \",[\"0\"],\".\"],\"pLXbi8\":\"Iscrizioni recenti\",\"M1HGuR\":\"Recent activity\",\"3kJ0gv\":\"Recent Attendees\",\"qhfiwV\":\"Recent check-ins\",\"S+0XMX\":\"Recent orders\",\"Fi3b48\":\"Ordini recenti\",\"7hPBBn\":\"destinatario\",\"jp5bq8\":\"destinatari\",\"yPrbsy\":\"Destinatari\",\"E1F5Ji\":\"I destinatari sono disponibili dopo l'invio del messaggio\",\"WEYdDv\":\"Recommended\",\"wuhHPE\":\"Recurring\",\"asLqwt\":\"Evento ricorrente\",\"s3uzsK\":\"Impostazioni evento ricorrente\",\"D0tAMe\":\"Recurring events\",\"JjMIKU\":\"Reddit\",\"HiGkFu\":\"Reindirizzamento a Stripe...\",\"pnoTN5\":\"Account di riferimento\",\"ACKu03\":\"Aggiorna Anteprima\",\"vuFYA6\":\"Refund all orders for these dates\",\"4cRUK3\":\"Refund all orders for this date\",\"fKn/k6\":\"Importo rimborso\",\"qY4rpA\":\"Rimborso fallito\",\"FaK/8G\":[\"Rimborsa ordine \",[\"0\"]],\"MGbi9P\":\"Rimborso in sospeso\",\"BDSRuX\":[\"Rimborsato: \",[\"0\"]],\"bU4bS1\":\"Rimborsi\",\"rYXfOA\":\"Impostazioni regionali\",\"5tl0Bp\":\"Domande di registrazione\",\"ZNo5k1\":\"Remaining\",\"Bjh87R\":\"Remove label from all dates\",\"IVZaEo\":\"Rimuove completamente le date e gli orari esauriti dalla pagina dell'evento. Se disattivato, restano visibili e vengono contrassegnati come esauriti.\",\"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 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\":\"Reset to base price\",\"kCn6wb\":\"Reimpostazione in corso...\",\"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\":\"results\",\"6gRgw8\":\"Riprova\",\"1BG8ga\":\"Riprova tutto\",\"rDC+T6\":\"Riprova lavoro\",\"CbnrWb\":\"Torna all'evento\",\"Lf7TCn\":\"I luoghi riutilizzabili compaiono qui automaticamente quando crei eventi con indirizzi, e puoi aggiungerne di tuoi.\",\"mdQ0zb\":\"Luoghi riutilizzabili per i tuoi eventi. I luoghi creati dal completamento automatico vengono salvati qui automaticamente.\",\"XFOPle\":\"Reuse\",\"1Zehp4\":\"Reuse a Stripe connection from another organizer in this account.\",\"Oo/PLb\":\"Riepilogo Ricavi\",\"CfuueU\":\"Revoca l'offerta\",\"RIgKv+\":\"Run until a specific date\",\"dFFW9L\":[\"Vendita terminata \",[\"0\"]],\"loCKGB\":[\"La vendita termina il \",[\"0\"]],\"wlfBad\":\"Periodo di vendita\",\"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\":\"Periodo di vendita stabilito\",\"ftzaMf\":\"Periodo di vendita, limiti di ordine, visibilità\",\"zpekWp\":[\"Inizio vendita \",[\"0\"]],\"mUv9U4\":\"Vendite\",\"9KnRdL\":\"Le vendite sono sospese\",\"JC3J0k\":\"Sales, attendance, and check-in breakdown per occurrence\",\"3VnlS9\":\"Vendite, ordini e metriche di performance per tutti gli eventi\",\"3Q1AWe\":\"Vendite:\",\"LeuERW\":\"Same as event\",\"B4nE3N\":\"Prezzo del biglietto di esempio\",\"8BRPoH\":\"Luogo di Esempio\",\"PiK6Ld\":\"Sat\",\"+5kO8P\":\"Saturday\",\"zJiuDn\":\"Save fee override\",\"NB8Uxt\":\"Save Schedule\",\"KZrfYJ\":\"Salva link social\",\"9Y3hAT\":\"Salva Modello\",\"C8ne4X\":\"Salva Design del Biglietto\",\"cTI8IK\":\"Save VAT settings\",\"6/TNCd\":\"Salva impostazioni IVA\",\"4RvD9q\":\"Luogo salvato\",\"cgw0cL\":\"Luoghi salvati\",\"Fbqm/I\":\"Saving an override creates a dedicated configuration for this organizer if it's currently on the system default.\",\"I+FvbD\":\"Scansiona\",\"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\":\"Programma per dopo\",\"NAzVVw\":\"Programma messaggio\",\"Fz09JP\":\"Schedule starts on\",\"4ba0NE\":\"Programmata\",\"qcP/8K\":\"Orario programmato\",\"A1taO8\":\"Search\",\"ftNXma\":\"Cerca affiliati...\",\"VMU+zM\":\"Search attendees\",\"VY+Bdn\":\"Cerca per nome account o e-mail...\",\"VX+B3I\":\"Cerca per titolo evento o organizzatore...\",\"R0wEyA\":\"Cerca per nome lavoro o eccezione...\",\"YnMfsK\":\"Cerca per nome o indirizzo...\",\"VT+urE\":\"Cerca per nome o email...\",\"GHdjuo\":\"Cerca per nome, email o account...\",\"4mBFO7\":\"Search by name, order #, ticket # or email\",\"20ce0U\":\"Cerca per ID ordine, nome cliente o email...\",\"4DSz7Z\":\"Cerca per oggetto, evento o account...\",\"nQC7Z9\":\"Search dates...\",\"iRtEpV\":\"Search dates…\",\"JRM7ao\":\"Search for an address\",\"BWF1kC\":\"Cerca messaggi...\",\"5WYZKZ\":\"Risultati della ricerca\",\"IG85fV\":\"Cerca luoghi salvati o trova un indirizzo...\",\"3aD3GF\":\"Seasonal\",\"ku//5b\":\"Second\",\"Mck5ht\":\"Pagamento sicuro\",\"s7tXqF\":\"See schedule\",\"JFap6u\":\"See what Stripe still needs\",\"p7xUrt\":\"Seleziona una categoria\",\"hTKQwS\":\"Select a Date & Time\",\"Ps6Xtf\":\"Select a date to see available times\",\"e4L7bF\":\"Seleziona un messaggio per visualizzarne il contenuto\",\"zPRPMf\":\"Seleziona un livello\",\"BFRSTT\":\"Seleziona Account\",\"wgNoIs\":\"Select all\",\"mCB6Je\":\"Seleziona tutto\",\"aCEysm\":[\"Select all on \",[\"0\"]],\"a6+167\":\"Seleziona un evento\",\"CFbaPk\":\"Seleziona il gruppo di partecipanti\",\"88a49s\":\"Select camera\",\"tVW/yo\":\"Seleziona valuta\",\"SJQM1I\":\"Select date\",\"n9ZhRa\":\"Seleziona data e ora di fine\",\"gTN6Ws\":\"Seleziona ora di fine\",\"0U6E9W\":\"Seleziona categoria evento\",\"j9cPeF\":\"Seleziona tipi di evento\",\"ypTjHL\":\"Select occurrence\",\"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\":\"selected\",\"ylXj1N\":\"Selezionato\",\"uq3CXQ\":\"Sell out your event.\",\"oBXbO4\":\"Selling a physical product? Cap its quantity on the <0>products page instead.\",\"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\":\"Send to all occurrences, or choose a specific one\",\"QEQlnV\":\"Invia il tuo primo messaggio\",\"IoAuJG\":\"Invio in corso...\",\"h69WC6\":\"Inviato\",\"BVu2Hz\":\"Inviato da\",\"ZFa8wv\":\"Sent to attendees when a scheduled date is cancelled\",\"SPdzrs\":\"Inviato ai clienti quando effettuano un ordine\",\"LxSN5F\":\"Inviato a ogni partecipante con i dettagli del biglietto\",\"hgvbYY\":\"September\",\"5sN96e\":\"Session cancelled\",\"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\":\"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\":\"Configura liste di check-in per diversi ingressi, sessioni o giorni.\",\"TaWVGe\":\"Set up payouts\",\"JA//e6\":\"Set up schedule\",\"gzXY7l\":\"Set Up Schedule\",\"0Ls9qe\":\"Set up the tickets you'll sell and their prices\",\"xMO+Ao\":\"Configura la tua organizzazione\",\"5pEFnq\":\"Set up your schedule\",\"h/9JiC\":\"Set Up Your Schedule\",\"zRRuUD\":\"Set up your schedule in the next steps\",\"ETC76A\":\"Set, change, or remove the date's location or online details\",\"C3htzi\":\"Impostazione aggiornata\",\"Ohn74G\":\"Configurazione e 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\":\"Condividi link affiliato\",\"hL7sDJ\":\"Condividi pagina dell'organizzatore\",\"jy6QDF\":\"Gestione capacità condivisa\",\"jDNHW4\":\"Shift times\",\"tPfIaW\":[\"Shifted times for \",[\"count\"],\" date(s)\"],\"WwlM8F\":\"Mostra opzioni avanzate\",\"cMW+gm\":[\"Mostra tutte le piattaforme (\",[\"0\"],\" con valori)\"],\"wXi9pZ\":\"Show attendee notes to non-logged-in staff\",\"4LZFir\":\"Mostra l'intero intervallo di date\",\"UVPI5D\":\"Mostra meno piattaforme\",\"Eu/N/d\":\"Mostra casella di opt-in marketing\",\"SXzpzO\":\"Mostra casella di opt-in marketing per impostazione predefinita\",\"b33PL9\":\"Mostra più piattaforme\",\"Eut7p9\":\"Show order details to non-logged-in staff\",\"+RoWKN\":\"Show question answers to non-logged-in staff\",\"jbcx6L\":\"Show remaining capacity on event dates\",\"rXxBOx\":\"Show remaining capacity to buyers\",\"t1LIQW\":[\"Visualizzazione di \",[\"0\"],\" record su \",[\"totalRows\"]],\"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\":\"Iscritto\",\"5C7J+P\":\"Single Event\",\"E//btK\":\"Skip manually edited dates\",\"paESr6\":\"Slovacco\",\"9wu8nm\":\"Snapchat\",\"kIKb9e\":\"Sociale\",\"d0rUsW\":\"Link social\",\"j/TOB3\":\"Link social e sito web\",\"s9KGXU\":\"Venduto\",\"yp+0jj\":\"sold out\",\"1hupow\":\"Esaurito, lista d'attesa disponibile\",\"iACSrw\":\"Some details are hidden from public access. Log in to view everything.\",\"Dia6iz\":\"Something went wrong while deleting the image. Please try again.\",\"KTxc6k\":\"Qualcosa è andato storto, riprova o contatta l'assistenza se il problema persiste\",\"lkE00/\":\"Qualcosa è andato storto. Riprova più tardi.\",\"wdxz7K\":\"Fonte\",\"fDG2by\":\"Spirituality\",\"oPaRES\":\"Split check-in across days, areas, or ticket types. Share the link with staff — no account needed on their end.\",\"7JFNej\":\"Sport\",\"/bfV1Y\":\"Staff instructions\",\"tXkhj/\":\"Start\",\"StWUH4\":\"Start check-in\",\"JcQp9p\":\"Data e ora di inizio\",\"0m/ekX\":\"Data e ora di inizio\",\"izRfYP\":\"La data di inizio è obbligatoria\",\"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/\":\"Statistiche\",\"GVUxAX\":\"Le statistiche si basano sulla data di creazione dell'account\",\"29Hx9U\":\"Stats\",\"5ia+r6\":\"Still needed\",\"wuV0bK\":\"Interrompi Impersonificazione\",\"s/KaDb\":\"Stripe connected\",\"Bk06QI\":\"Stripe connesso\",\"akZMv8\":[\"Stripe connection copied from \",[\"0\"],\".\"],\"v0aRY1\":\"Stripe didn't return a setup link. Please try again.\",\"aKtF0O\":\"Stripe non connesso\",\"9i0++A\":\"ID pagamento Stripe\",\"R1lIMV\":\"Stripe will need a few more details soon\",\"FzcCHA\":\"Stripe will walk you through a few quick questions to finish setup.\",\"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\",\"kRWc2g\":\"Impostazioni evento ricorrente 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\":\"Sun\",\"DBC3t5\":\"Sunday\",\"UaISq3\":\"Svedese\",\"JZTQI0\":\"Cambia organizzatore\",\"9YHrNC\":\"Predefinito del sistema\",\"lruQkA\":\"Tap this screen to resume scanning\",\"TJUrME\":[\"Targeting attendees across \",[\"0\"],\" selected sessions.\"],\"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\":\"Team collaboration\",\"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\":\"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\":\"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\",\"nm3Iz/\":\"Grazie per aver partecipato!\",\"pYwj0k\":\"Thanks,\",\"k3IitN\":\"That's a wrap\",\"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.\",\"7oksH+\":[\"Lo sconto viene detratto da ogni prodotto idoneo. Es.: \",[\"currencySymbol\"],\"10 di sconto × 3 biglietti = \",[\"currencySymbol\"],\"30 di sconto.\"],\"sKL8k2\":\"Lo sconto viene detratto una sola volta dal totale dell'ordine.\",\"cDHM1d\":\"L'indirizzo e-mail è stato modificato. Il partecipante riceverà un nuovo biglietto all'indirizzo e-mail aggiornato.\",\"tXadb0\":\"L'evento che stai cercando non è disponibile al momento. Potrebbe essere stato rimosso, scaduto o l'URL potrebbe essere errato.\",\"5fPdZe\":\"The first date this schedule will generate from.\",\"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.\",\"Np4eLs\":[\"The maximum is \",[\"MAX_PREVIEW\"],\" sessions. Please reduce the date range, frequency, or number of sessions per day.\"],\"sYLeDq\":\"L'organizzatore che stai cercando non è stato trovato. La pagina potrebbe essere stata spostata, eliminata o l'URL potrebbe essere errato.\",\"PCr4zw\":\"The override is recorded in the order audit log.\",\"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\",\"OVSkIF\":\"La rapida volpe marrone salta sopra il cane pigro.\",\"z0KrIG\":\"L'orario programmato è obbligatorio\",\"EWErQh\":\"L'orario programmato deve essere nel futuro\",\"UNd0OU\":[\"The session for \\\"\",[\"title\"],\"\\\" originally scheduled for \",[\"0\"],\" has been rescheduled.\"],\"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\",\"ybBP2H\":\"There are no products available for this date. Please choose another date.\",\"O7g4eR\":\"There are no upcoming dates for this event\",\"062KsE\":\"These details are shown on the attendee's ticket and order summary for this date only.\",\"5Eu+tn\":\"Questi dettagli saranno mostrati solo se l'ordine viene completato con successo.\",\"jQjwR+\":\"These details will replace any existing location on the affected dates and show on attendee tickets.\",\"6eaLu/\":\"Questi prezzi si applicano a tutte le date del programma e le quantità dei livelli limitano le vendite totali di tutte le date nel loro insieme. Le date di vendita dei livelli si applicano globalmente. Puoi sostituire i prezzi per singole date nella <0>pagina Programmazione delle date.\",\"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\":\"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\":\"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/\":[\"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.\",\"E9BqZw\":\"This date only\",\"RzEvf5\":\"Questo evento è terminato\",\"kc4bIA\":\"Questo evento non ha ancora biglietti o prodotti, quindi i partecipanti non potranno registrarsi.\",\"eMaNd0\":\"This event is not available\",\"YClrdK\":\"Questo evento non è ancora pubblicato\",\"GL6z+k\":\"Questo evento è esaurito\",\"pIwDhS\":\"This event's dates and times are set on the occurrence schedule.\",\"ny5rgr\":\"This is a recurring event\",\"tc64Zz\":\"Questo è il nome della categoria che verrà visualizzato sulla pagina dell'evento.\",\"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.\",\"5DpZrC\":\"Questo limita le vendite totali di tutte le date del programma nel loro insieme: non è un limite per data. Per limitare la partecipazione a ogni data, imposta una capacità nella <0>pagina Programmazione delle date.\",\"L7dIM7\":\"Questo link non è valido o è scaduto.\",\"MR5ygV\":\"Questo link non è più valido\",\"9LEqK0\":\"Questo nome è visibile agli utenti finali\",\"QdUMM9\":\"This occurrence is at capacity\",\"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\",\"qEGn8I\":\"Questo evento ricorrente non ha ancora date, quindi i partecipanti non hanno nulla da prenotare.\",\"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.\",\"1LuJNw\":\"Questo biglietto non è più valido\",\"0Ew0uk\":\"Questo biglietto è stato appena scansionato. Attendi prima di scansionare di nuovo.\",\"FYXq7k\":[\"This will affect \",[\"loadedAffectedCount\"],\" date(s).\"],\"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\":\"Throughput\",\"+FjWgX\":\"Thu\",\"kkDQ8m\":\"Thursday\",\"0GSPnc\":\"Design del Biglietto\",\"EZC/Cu\":\"Design del biglietto salvato con successo\",\"bbslmb\":\"Designer biglietti\",\"1BPctx\":\"Biglietto per\",\"HGuXjF\":\"Possessori di biglietti\",\"CMUt3Y\":\"Titolari dei biglietti\",\"awHmAT\":\"ID biglietto\",\"6czJik\":\"Logo del Biglietto\",\"t79rDv\":\"Biglietto non trovato\",\"6tmWch\":\"Biglietto o prodotto\",\"1tfWrD\":\"Anteprima biglietto per\",\"KnjoUA\":\"Prezzo del biglietto\",\"pGZOcL\":\"Biglietto reinviato con successo\",\"o02GZM\":\"Ticket sales have ended for this event\",\"8jLPgH\":\"Tipo di 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\":\"Time\",\"fXf2r5\":[\"Times shown in \",[\"timezoneAbbr\"]],\"dMtLDE\":\"to\",\"/jQctM\":\"A\",\"tiI71C\":\"Per aumentare i tuoi limiti, contattaci a\",\"ecUA8p\":\"Today\",\"W428WC\":\"Attiva colonne\",\"BRMXj0\":\"Tomorrow\",\"UBSG1X\":\"Migliori organizzatori (Ultimi 14 giorni)\",\"3sZ0xx\":\"Account Totali\",\"SMDzqJ\":\"Totale Partecipanti\",\"orBECM\":\"Totale Raccolto\",\"k5CU8c\":\"Totale iscrizioni\",\"4B7oCp\":\"Commissione totale\",\"sMMlTX\":\"Total fees\",\"mlvCEl\":\"Total orders\",\"2AW/k5\":\"Quantità totale su tutte le date\",\"dp8BCb\":\"Total tax\",\"vb0Q0/\":\"Utenti Totali\",\"oJjplO\":\"Visualizzazioni totali\",\"rBZ9pz\":\"Tours\",\"orluER\":\"Traccia la crescita e le prestazioni dell'account per fonte di attribuzione\",\"YwKzpH\":\"Monitoraggio & Analytics\",\"GUA0Jy\":\"Try a different search term or filter\",\"2P/OWN\":\"Try adjusting your filters to see more dates.\",\"ouM5IM\":\"Prova un'altra email\",\"3DZvE7\":\"Prova Hi.Events Gratis\",\"vq2WxD\":\"Tue\",\"G3myU+\":\"Tuesday\",\"Kz91g/\":\"Turco\",\"GdOhw6\":\"Disattiva audio\",\"KUOhTy\":\"Attiva audio\",\"dBeuY2\":\"Twitch\",\"QytzQr\":\"Digita \\\"elimina\\\" per confermare\",\"nWRfmt\":\"Tipografia\",\"IrVSu+\":\"Impossibile duplicare il prodotto. Controlla i tuoi dati\",\"Vx2J6x\":\"Impossibile recuperare il partecipante\",\"h0dx5e\":\"Impossibile unirsi alla lista d'attesa\",\"DaE0Hg\":\"Unable to load attendee details.\",\"GlnD5Y\":\"Unable to load products for this date. Please try again.\",\"17VbmV\":\"Unable to undo check-in\",\"n57zCW\":\"Account non attribuiti\",\"9uI/rE\":\"Undo\",\"Ef7StM\":\"Sconosciuto\",\"ZBAScj\":\"Partecipante Sconosciuto\",\"MEIAzV\":\"Senza nome\",\"K6L5Mx\":\"Luogo senza nome\",\"7yiFvZ\":\"Non pagato\",\"X13xGn\":\"Non attendibile\",\"gyXpQN\":\"Upcoming events\",\"Pp1sWX\":\"Aggiorna affiliato\",\"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\":\"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\":\"USB scanner listening\",\"dyTklH\":\"USB scanner paused\",\"OHJXlK\":\"Usa <0>i template Liquid per personalizzare le tue email\",\"/rsy72\":\"Use event default\",\"0k4cdb\":\"Utilizza i dettagli dell'ordine per tutti i partecipanti. I nomi e gli indirizzi email dei partecipanti corrisponderanno alle informazioni dell'acquirente.\",\"bA31T4\":\"Usa i dati dell'acquirente per tutti i partecipanti\",\"PpgtnC\":\"Usa questo indirizzo\",\"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\":\"VAT number\",\"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\":\"VAT registered\",\"Nfbg76\":\"Impostazioni IVA salvate con successo\",\"UvYql/\":\"Impostazioni IVA salvate. Stiamo convalidando il tuo numero di partita IVA in background.\",\"bXn1Jz\":\"VAT settings updated\",\"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\":\"VAT: not registered\",\"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\":\"View All\",\"yA/6BX\":\"View all →\",\"6CQ7/B\":\"View all capabilities\",\"YSE15b\":\"View all check-in lists\",\"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\":[\"View details for \",[\"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\":\"Waiting for scan…\",\"u0n+wz\":\"Lista d'attesa\",\"3RXFtE\":\"Lista d'attesa abilitata\",\"TwnTPy\":\"L'offerta per la lista d'attesa è scaduta.\",\"aUi/Dz\":\"Attenzione: questa è la configurazione predefinita del sistema. Le modifiche interesseranno tutti gli account a cui non è assegnata una configurazione specifica.\",\"aT/44s\":\"We couldn't copy that Stripe connection. Please try again.\",\"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.\",\"Fjj/5/\":\"We couldn't load the check-in lists. Please try again.\",\"ADsQ23\":\"We couldn't reach Stripe just now. Please try again in a moment.\",\"HJKdzP\":\"Si è verificato un problema durante il caricamento di questa pagina. Riprova.\",\"jegrvW\":\"We partner with Stripe to send payouts straight to your bank account.\",\"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 capire come viene utilizzato il sito e 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.\",\"mfM/HJ\":[\"Ti avviseremo via email se si libererà un posto per \",[\"productDisplayName\"],\" il \",[\"occurrenceDate\"],\".\"],\"iy+M+c\":[\"Ti avviseremo via email se si libererà un posto per \",[\"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\":\"Invieremo i tuoi biglietti a questa email\",\"ZOmUYW\":\"Convalideremo la tua partita IVA in background. In caso di problemi, ti informeremo.\",\"LKjHr4\":[\"We've made changes to the schedule for \\\"\",[\"title\"],\"\\\" — \",[\"description\"],\" affecting \",[\"affectedCount\"],\" session(s).\"],\"Fq/Nx7\":\"Abbiamo inviato un codice di verifica a 5 cifre a:\",\"GdWB+V\":\"Webhook creato con successo\",\"2X4ecw\":\"Webhook eliminato con successo\",\"ndBv0v\":\"Webhook integrations\",\"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\":\"Wed\",\"VAcXNz\":\"Wednesday\",\"64X6l4\":\"week\",\"4XSc4l\":\"Weekly\",\"IAUiSh\":\"weeks\",\"vKLEXy\":\"Weibo\",\"9eF5oV\":\"Bentornato\",\"QDWsl9\":[\"Benvenuto su \",[\"0\"],\", \",[\"1\"],\" 👋\"],\"LETnBR\":[\"Benvenuto su \",[\"0\"],\", ecco un elenco di tutti i tuoi eventi\"],\"DDbx7K\":\"Wellness\",\"ywRaYa\":\"What time?\",\"FaSXqR\":\"Che tipo di evento?\",\"0WyYF4\":\"What unauthenticated staff can see\",\"2+ExvJ\":\"WhatsApp\",\"cxsKvw\":\"Quando un check-in viene eliminato\",\"RPe6bE\":\"When a date is cancelled on a recurring event\",\"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 va esaurito, i clienti possono iscriversi a una lista d'attesa per essere avvisati non appena si liberano dei posti.\",\"OIkHj+\":\"Quando un prodotto va esaurito, i clienti possono iscriversi a una lista d'attesa per essere avvisati non appena si liberano dei posti. I clienti si iscrivono alla lista d'attesa per una data specifica e le offerte vengono fatte per data.\",\"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\":\"Quando i clienti acquistano biglietti, i loro ordini appariranno qui.\",\"pm9tpn\":\"Se attivato, gli acquirenti possono copiare il proprio nome ed e-mail su tutti i partecipanti in una sola volta. Disattivalo per rimuovere l'opzione \\\"Tutti i partecipanti\\\"; gli acquirenti potranno comunque copiare i dati sul primo partecipante, mentre gli altri dovranno essere inseriti singolarmente.\",\"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.\",\"uchB0M\":\"Anteprima widget\",\"uvIqcj\":\"Workshop\",\"EpknJA\":\"Scrivi qui il tuo messaggio...\",\"nhtR6Y\":\"X (Twitter)\",\"7qI8sJ\":\"year\",\"zkWmBh\":\"Yearly\",\"+BGee5\":\"years\",\"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+\":\"You can override this for individual dates later.\",\"paWwQ0\":\"È comunque possibile offrire biglietti manualmente se necessario.\",\"jTDzpA\":\"Non puoi archiviare l'ultimo organizzatore attivo del tuo account.\",\"D8baxD\":\"Hai biglietti a pagamento, ma Stripe non è ancora collegato, quindi non puoi accettare pagamenti.\",\"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/\":\"You need to create at least one occurrence before you can add attendees to this recurring event.\",\"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\":\"You'll be able to set up dates, schedules, and recurrence rules in the next step.\",\"zKAheG\":\"You're changing session times\",\"MNFIxz\":[\"Stai per partecipare a \",[\"0\"],\"!\"],\"ZlLcht\":[\"Ti stai iscrivendo alla lista d'attesa per il \",[\"occurrenceDate\"],\".\"],\"qGZz0m\":\"Sei nella lista d'attesa!\",\"/5HL6k\":\"Ti è stato offerto un posto!\",\"gbjFFH\":\"You've changed the session time\",\"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\":\"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\":\"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 niente 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\":\"123 Main Street\",\"IoRZzD\":\"20\",\"+H1RMb\":\"2024-01-01 10:00\",\"Q/T49U\":\"2024-01-01 18:00\",\"hMT8+2\":\"94103\",\"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\":\"Are you sure you want to make this event public? This will make the event visible to the public\",\"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\":\"Attendee Notes\",\"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\":\"Personalizza la pagina del tuo evento\",\"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\":\"Dismiss\",\"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\":\"Event URL\",\"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\":\"No attendees have been added to this order.\",\"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\":\"No product associated with this attendee.\",\"Ya1JhR\":\"Nessun prodotto disponibile in questa categoria.\",\"FTfObB\":\"Ancora Nessun Prodotto\",\"+Y976X\":\"Nessun Codice Promozionale da mostrare\",\"MAavyl\":\"No questions answered by this attendee.\",\"SnlQeq\":\"No questions have been asked for this order.\",\"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\":\"Online event\",\"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\":\"Order #\",\"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\":\"Order Notes\",\"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\":\"Realizzato con\",\"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 ulteriori informazioni o istruzioni per questa domanda. Utilizza questo campo per aggiungere termini\\ne condizioni, linee guida o qualsiasi altra informazione importante che i partecipanti debbano 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\":\"View\",\"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\":\"(none)\",\"xYxQCZ\":[[\"0\"],\" \",[\"1\"]],\"lAOy2r\":[[\"0\"],\" \",[\"1\"],\" ha già effettuato il check-in\"],\"3beCx0\":[[\"0\"],\" <0>checked in\"],\"S4PqS9\":[[\"0\"],\" Webhook Attivi\"],\"6MIiOI\":[[\"0\"],\" rimasti\"],\"COnw8D\":[\"Logo \",[\"0\"]],\"xG9N0H\":[[\"0\"],\" of \",[\"1\"],\" seats are taken.\"],\"B7pZfX\":[[\"0\"],\" organizzatori\"],\"/HkCs4\":[[\"0\"],\" biglietti\"],\"30bTiU\":[[\"activeCount\"],\" enabled\"],\"jTs4am\":[[\"appName\"],\" logo\"],\"gbJOk9\":[[\"attendeeCount\"],\" attendees are registered for this session.\"],\"TjbIUI\":[[\"availableCount\"],\" di \",[\"totalCount\"],\" disponibile\"],\"PSChHo\":[[\"capacity\"],\" posti rimasti\"],\"lzQ8/M\":[[\"checkedIn\"],\" / \",[\"total\"],\" checked in\"],\"RZ0JX3\":[[\"chipTime\"],\", esaurito\"],\"M4KnFs\":[[\"chipTime\"],\", Esaurito, lista d'attesa disponibile\"],\"SeyN12\":[[\"completedCount\"],\" of \",[\"totalCount\"],\" steps complete\"],\"f2rhaD\":[[\"diffHr\"],\"h ago\"],\"NRSLBe\":[[\"diffMin\"],\"m ago\"],\"iYfwJE\":[[\"diffSec\"],\"s ago\"],\"OJnhhX\":[[\"eventCount\"],\" eventi\"],\"mhZbzw\":[[\"loadedAffectedAttendees\"],\" attendees are registered across the affected sessions.\"],\"RBuxIl\":[[\"productCount\"],\" ticket types configured\"],\"VFLd0I\":[[\"slotCount\"],\" times available\"],\"3IEF7U\":[[\"totalCount\"],\" tipi di biglietto\"],\"0cLzoF\":[[\"totalOccurrences\"],\" dates\"],\"AEGc4t\":[[\"totalOccurrences\"],\" sessions across \",[\"0\"],\" dates (\",[\"1\",\"plural\",{\"one\":[\"#\",\" session\"],\"other\":[\"#\",\" sessions\"]}],\" per day)\"],\"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.\",\"Il5Uid\":\"<0>Questa è la quantità totale disponibile per tutte le date del programma nel loro insieme: non è un limite per data. Per limitare la partecipazione a ogni data, imposta una capacità nella <1>pagina Programmazione delle date.\",\"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 attendee is registered across the affected sessions.\",\"qOyE2U\":\"1 attendee is registered for this session.\",\"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\",\"y2Jh0m\":\"1 time available\",\"cGtUz6\":\"1 settimana prima dell'evento\",\"HR/cvw\":\"Via Esempio 123\",\"dgKxZ5\":\"135+ currencies & 40+ payment methods\",\"kMU5aM\":\"Un avviso di annullamento è stato inviato a\",\"o++0qa\":\"a change in duration\",\"WuWSX5\":\"A few quick steps and you're ready to start selling.\",\"RQ5kDd\":\"Un messaggio da visualizzare quando non ci sono prodotti in questa categoria.\",\"V53XzQ\":\"Un nuovo codice di verifica è stato inviato alla tua email\",\"sr2Je0\":\"a shift in start/end times\",\"/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\":\"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\":\"Aggiungi domande personalizzate per raccogliere informazioni aggiuntive durante il checkout\",\"Z/dcxc\":\"Add Date\",\"QeupRg\":\"Aggiungi date\",\"Q219NT\":\"Add Dates\",\"yjB5VC\":\"Add dates and times for your recurring event\",\"Z8idyM\":\"Add details\",\"wpirGs\":\"Add event details\",\"VX6WUv\":\"Aggiungi luogo\",\"GCQlV2\":\"Add multiple times if you run several sessions per day.\",\"7JF9w9\":\"Aggiungi domanda\",\"NLbIb6\":\"Add this attendee anyway (override capacity)\",\"6PNlRV\":\"Aggiungi questo evento al tuo calendario\",\"BGD9Yt\":\"Aggiungi biglietti\",\"uIv4Op\":\"Aggiungi i pixel di tracciamento alle pagine pubbliche dei tuoi eventi e alla homepage 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\":\"Affiliate program\",\"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.\",\"3e31kI\":\"After your event is created, you can choose how often it repeats from the dashboard.\",\"z7GAMJ\":\"all\",\"N40H+G\":\"All\",\"7rLTkE\":\"Tutti gli eventi archiviati\",\"gKq1fa\":\"Tutti i partecipanti\",\"63gRoO\":\"All attendees of the selected sessions\",\"uWxIoH\":\"All attendees of this occurrence\",\"pMLul+\":\"Tutte le valute\",\"sgUdRZ\":\"All dates\",\"e4q4uO\":\"All Dates\",\"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\":\"All matching dates\",\"F1/VgK\":\"All occurrences\",\"OpWjMq\":\"All Occurrences\",\"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.\",\"VZdky1\":\"Consenti agli acquirenti di copiare i propri dati su tutti i partecipanti\",\"F3mW5G\":\"Consenti ai clienti di iscriversi a una lista d'attesa quando questo prodotto è esaurito\",\"4CMO/q\":\"Consenti ai clienti di iscriversi a una lista d'attesa quando questo prodotto è esaurito. I clienti si iscrivono alla lista d'attesa per una data specifica.\",\"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\":\"Already in\",\"/H326L\":\"Già rimborsato\",\"USEpOK\":\"Already use Stripe on another organizer? Reuse that connection.\",\"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.\",\"OPFdAM\":\"Una descrizione facoltativa di questa categoria da visualizzare sulla pagina dell'evento.\",\"eusccx\":\"Un messaggio facoltativo da visualizzare sul prodotto evidenziato, ad esempio \\\"In vendita veloce 🔥\\\" o \\\"Miglior rapporto qualità-prezzo\\\"\",\"5GJuNp\":[\"and \",[\"0\"],\" more...\"],\"QNrkms\":\"Risposta aggiornata con successo.\",\"+qygei\":\"Answers\",\"GK7Lnt\":\"Answers provided at checkout (e.g. meal choice)\",\"lE8PgT\":\"Any dates you've manually customized will be kept.\",\"jVoYha\":[\"applicato — \",[\"0\"],\" di sconto sul tuo ordine\"],\"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\":\"Approva messaggio\",\"naCW6Z\":\"April\",\"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\":[\"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\":\"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/\":\"Are you sure you want to delete this date? This action cannot be undone.\",\"RiF/yT\":\"Are you sure you want to delete this image?\",\"b3+Qku\":\"Are you sure you want to delete this tax or fee? It will no longer be applied to new orders.\",\"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\":\"Are you sure you want to permanently delete this date? This cannot be undone.\",\"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?\",\"b7tkGp\":\"Are you sure you want to revoke this invitation?\",\"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\":\"Assign plan\",\"xdiER7\":\"Livello assegnato\",\"F2rX0R\":\"Deve essere selezionato almeno un tipo di evento\",\"Z44eZS\":\"At least one product must stay available for this date. To make the date inaccessible, cancel it from the schedule instead.\",\"BCmibk\":\"Tentativi\",\"6PecK3\":\"Presenze e tassi di check-in per tutti gli eventi\",\"K2tp3v\":\"attendee\",\"AJ4rvK\":\"Partecipante Cancellato\",\"qvylEK\":\"Partecipante Creato\",\"Aspq3b\":\"Raccolta dati partecipanti\",\"fpb0rX\":\"Dati del partecipante copiati dall'ordine\",\"94aQMU\":\"Informazioni partecipante\",\"KkrBiR\":\"Raccolta delle informazioni sui partecipanti\",\"sjPjOg\":\"Attendee notes\",\"cosfD8\":\"Stato del Partecipante\",\"D2qlBU\":\"Partecipante Aggiornato\",\"22BOve\":\"Partecipante aggiornato con successo\",\"x8Vnvf\":\"Il biglietto del partecipante non è incluso in questa lista\",\"/Ywywr\":\"attendees\",\"zLRobu\":\"attendees checked in\",\"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/\":\"August\",\"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\",\"Xp+ywP\":\"Disponibile al completamento del pagamento\",\"dwDH1K\":[\"Available times on \",[\"dayName\"]],\"clF06r\":\"Disponibile per rimborso\",\"NB5+UG\":\"Token Disponibili\",\"L+wGOG\":\"Awaiting\",\"qcw2OD\":\"Awaiting pay\",\"kNmmvE\":\"Awesome Events S.r.l.\",\"TeSaQO\":\"Torna a Account\",\"kYqM1A\":\"Torna all'evento\",\"s5QRF3\":\"Torna ai messaggi\",\"td/bh+\":\"Torna ai Report\",\"nsm7BA\":\"Torna alla ricerca\",\"imjKVx\":\"Bank account connected\",\"D9LTCH\":\"Base Price\",\"hviJef\":\"Based on the global sale period above, not per date\",\"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\":\"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\":\"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 garantire di avere una base giuridica per questo trattamento ai sensi delle leggi sulla privacy applicabili (GDPR, CCPA, ecc.).\",\"DFqasq\":[\"Continuando, accetti i <0>\",[\"0\"],\"Termini del servizio\"],\"wVSa+U\":\"By day of month\",\"0MnNgi\":\"By day of week\",\"CetOZE\":\"By ticket type\",\"lFdbRS\":\"Ignora commissioni applicazione\",\"AjVXBS\":\"Calendar\",\"2VLZwd\":\"Pulsante di Invito all'Azione\",\"rT2cV+\":\"Camera\",\"7hYa9y\":\"Camera permission was denied. <0>Request permission again, or grant this page camera access in your browser settings.\",\"D02dD9\":\"Campagna\",\"RRPA79\":\"Can't check in\",\"OcVwAd\":[\"Cancel \",[\"count\"],\" date(s)\"],\"H4nE+E\":\"Cancella tutti i prodotti e rilasciali nel pool disponibile\",\"Py78q9\":\"Cancel Date\",\"tOXAdc\":\"La cancellazione cancellerà tutti i partecipanti associati a questo ordine e rilascerà i biglietti nel pool disponibile.\",\"FPpqc7\":[\"Cancelling \",[\"0\"],\" date(s). This may take a moment to complete.\"],\"01sEfm\":\"Impossibile eliminare la configurazione predefinita del sistema\",\"VsM1HH\":\"Assegnazioni di capacità\",\"9bIMVF\":\"Capacity management\",\"H7K8og\":\"Capacity must be 0 or greater\",\"nzao08\":\"capacity updates\",\"4cp9NP\":\"Capacity Used\",\"K7tIrx\":\"Categoria\",\"DRK3Bq\":\"Category deleted successfully\",\"o+XJ9D\":\"Cambia\",\"kJkjoB\":\"Change duration\",\"J0KExZ\":\"Change the attendee limit\",\"ssospy\":\"Change time\",\"CIHJJf\":\"Modifica impostazioni lista di attesa\",\"B5icLR\":[\"Changed duration for \",[\"count\"],\" date(s)\"],\"Kb+0BT\":\"Charges\",\"2tbLdK\":\"Beneficenza\",\"BPWGKn\":\"Check in\",\"6uFFoY\":\"Check out\",\"FjAlwK\":[\"Check out this event: \",[\"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 for \",[\"0\"],\" was undone\"],\"9s/wrQ\":\"Check-in history\",\"Wwztk4\":\"Check-In List\",\"9gPPUY\":\"Lista di Check-In Creata!\",\"dwjiJt\":\"Check-in list info\",\"7od0PV\":\"check-in lists\",\"f2vU9t\":\"Liste di Check-in\",\"XprdTn\":\"Check-in navigation\",\"5tV1in\":\"Check-in progress\",\"SHJwyq\":\"Tasso di check-in\",\"qCqdg6\":\"Stato del Check-In\",\"cKj6OE\":\"Riepilogo Check-in\",\"7B5M35\":\"Check-In\",\"VrmydS\":\"Checked in\",\"DM4gBB\":\"Cinese (Tradizionale)\",\"p8Jvp4\":\"Choose a configuration\",\"ElShBO\":\"Choose a different action\",\"pHEhf+\":\"Scegli un carattere adatto al tuo brand. I caratteri sono ospitati tramite Bunny Fonts.\",\"Zok1Gx\":\"Choose an organizer\",\"pkk46Q\":\"Scegli un organizzatore\",\"Ag32+c\":\"Choose another date\",\"Crr3pG\":\"Scegli calendario\",\"Z38ZJu\":\"Scegli come viene mostrata la data dell'evento sul biglietto\",\"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\":\"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\":\"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\":\"complete\",\"bUQMpb\":\"Complete Stripe setup\",\"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\":\"Configuration assigned\",\"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\":\"Configure which products are available for this occurrence and optionally adjust pricing.\",\"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\",\"/K4Vqr\":\"Collega Stripe per accettare pagamenti\",\"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\":\"I dettagli di connessione sono obbligatori per gli eventi online\",\"jfC/xh\":\"Contatto\",\"LOFgda\":[\"Contatta \",[\"0\"]],\"41BQ3k\":\"Email di contatto\",\"m8WD6t\":\"Continua configurazione\",\"0GwUT4\":\"Procedi al pagamento\",\"sBV87H\":\"Continua alla creazione dell'evento\",\"nKtyYu\":\"Continua al passo successivo\",\"F3/nus\":\"Continua al pagamento\",\"s30OcA\":\"Controlla come date e orari vengono mostrati sulla pagina dell'evento\",\"p2FRHj\":\"Controlla come vengono gestite le commissioni della piattaforma per questo evento\",\"NqfabH\":\"Control who gets in for this date\",\"fmYxZx\":\"Control who gets in, and when\",\"1JnTgU\":\"Copiato da sopra\",\"FxVG/l\":\"Copiato negli appunti\",\"PiH3UR\":\"Copiato!\",\"4i7smN\":\"Copy account ID\",\"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\":\"Could not prepare the bulk update.\",\"KOavaU\":\"Impossibile recuperare i dettagli dell'indirizzo\",\"/lq4oO\":\"Could not save date\",\"mHu0az\":\"Couldn't send verification email. Please try again.\",\"QOIm+S\":\"I conteggi includono tutte le date future. A ogni persona viene offerto un posto per la data scelta al momento dell'iscrizione.\",\"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\":\"Covers every ticket\",\"zg4oSu\":[\"Crea Modello \",[\"0\"]],\"RKKhnW\":\"Crea un widget personalizzato per vendere biglietti sul tuo sito.\",\"6sk7PP\":\"Create a fixed number\",\"jqhTmw\":\"Create a list for this date\",\"PhioFp\":\"Create a new check-in list for an active session, or contact the organizer if you think this is a mistake.\",\"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\":\"Create Date\",\"Nc3l/D\":\"Crea sconti, codici di accesso per biglietti nascosti e offerte speciali.\",\"PybJS2\":\"Create event\",\"eWEV9G\":\"Crea una nuova password\",\"wl2iai\":\"Create Schedule\",\"8AiKIu\":\"Crea biglietto o prodotto\",\"/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\":\"Crea il tuo primo evento per iniziare a vendere biglietti e gestire i partecipanti.\",\"ZCSSd+\":\"Crea il tuo evento\",\"qdv10s\":[\"Creazione di \",[\"0\"],\" date in corso. Potrebbe volerci un momento.\"],\"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\":\"Currently assigned\",\"iTvh6I\":\"Attualmente disponibile per l'acquisto\",\"A42Dqn\":\"Custom branding\",\"Guo0lU\":\"Data e ora personalizzate\",\"WDMdn8\":\"Custom questions\",\"O6mra8\":\"Domande personalizzate\",\"axv/Mi\":\"Modello personalizzato\",\"2YeVGY\":\"Link cliente copiato negli appunti\",\"QMHSMS\":\"Il cliente riceverà un'email di conferma del rimborso\",\"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\":\"Daily\",\"/gWrVZ\":\"Ricavi giornalieri, tasse, commissioni e rimborsi per tutti gli eventi\",\"zgCHnE\":\"Report Vendite Giornaliere\",\"nHm0AI\":\"Ripartizione giornaliera di vendite, tasse e commissioni\",\"1aPnDT\":\"Dance\",\"pvnfJD\":\"Scuro\",\"MaB9wW\":\"Date Cancellation\",\"e6cAxJ\":\"Date cancelled\",\"81jBnC\":\"Date cancelled successfully\",\"a/C/6R\":\"Date created successfully\",\"IW7Q+u\":\"Date deleted\",\"rngCAz\":\"Date deleted successfully\",\"vHbfoQ\":\"Date reactivated\",\"hvah+S\":\"Date reopened for new sales\",\"Ez0YsD\":\"Date updated successfully\",\"Te33mU\":\"Dates are managed per occurrence\",\"91zCxb\":\"Dates with sessions\",\"/ITcnz\":\"day\",\"H7OUPr\":\"Day\",\"JtHrX9\":\"Day of Month\",\"J/Upwb\":\"days\",\"vDVA2I\":\"Days of Month\",\"rDLvlL\":\"Days of Week\",\"r6zgGo\":\"December\",\"jbq7j2\":\"Rifiuta\",\"ovBPCi\":\"Predefinito\",\"JtI4vj\":\"Raccolta predefinita delle informazioni sui partecipanti\",\"ULjv90\":\"Default capacity per date\",\"3R/Tu2\":\"Gestione predefinita delle commissioni\",\"1bZAZA\":\"Verrà utilizzato il modello predefinito\",\"HNlEFZ\":\"elimina\",\"KpnwJK\":[\"Eliminare \\\"\",[\"0\"],\"\\\"?\"],\"BlII4o\":[\"Delete \",[\"count\"],\" selected date(s)? Dates with orders will be skipped. This cannot be undone.\"],\"vu7gDm\":\"Elimina affiliato\",\"KZN4Lc\":\"Elimina tutto\",\"6EkaOO\":\"Delete Date\",\"io0G93\":\"Elimina evento\",\"+jw/c1\":\"Elimina immagine\",\"hdyeZ0\":\"Elimina lavoro\",\"xxjZeP\":\"Elimina luogo\",\"sY3tIw\":\"Elimina organizzatore\",\"UBv8UK\":\"Delete Permanently\",\"dPyJ15\":\"Elimina Modello\",\"IQTR34\":\"Delete this category? Any products in it will also be deleted. This cannot be undone.\",\"/1wMxk\":\"Delete this product? This cannot be undone.\",\"mxsm1o\":\"Eliminare questa domanda? Questa azione non può essere annullata.\",\"snMaH4\":\"Elimina webhook\",\"LIZZLY\":[\"Deleted \",[\"0\"],\" date(s)\"],\"7w0Wev\":\"Description and venue added\",\"vYgeDk\":\"Deseleziona tutto\",\"NvuEhl\":\"Elementi di Design\",\"H8kMHT\":\"Non hai ricevuto il codice?\",\"G8KNgd\":\"Different location\",\"E/QGRL\":\"Disabled\",\"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.\",\"HtaSQp\":\"Mostra quanti posti restano per ogni data nel widget dei biglietti. Puoi modificarlo per le singole date.\",\"pfa8F0\":\"Nome visualizzato\",\"Kdpf90\":\"Non dimenticare!\",\"352VU2\":\"\\\"Non hai un account? <0>Registrati\",\"AXXqG+\":\"Donazione\",\"DPfwMq\":\"Fatto\",\"JoPiZ2\":\"Door staff instructions\",\"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+\":\"A causa dell'elevato rischio di spam, è necessario collegare un account Stripe prima di poter inviare messaggi ai partecipanti.\\nQuesto per garantire che tutti gli organizzatori dell'evento siano verificati e responsabili.\",\"euc6Ns\":\"Duplica\",\"YueC+F\":\"Duplicate Date\",\"KRmTkx\":\"Duplica Prodotto\",\"Jd3ymG\":\"Duration must be at least 1 minute.\",\"KIjvtr\":\"Olandese\",\"22xieU\":\"es. 180 (3 ore)\",\"/zajIE\":\"e.g. Morning Session\",\"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.\",\"Xfsjel\":\"Ogni prodotto\",\"5oD9f/\":\"Earlier\",\"LTzmgK\":[\"Modifica Modello \",[\"0\"]],\"v4+lcZ\":\"Modifica affiliato\",\"2iZEz7\":\"Modifica Risposta\",\"t2bbp8\":\"Modifica partecipante\",\"etaWtB\":\"Modifica dettagli partecipante\",\"+guao5\":\"Modifica configurazione\",\"1Mp/A4\":\"Edit Date\",\"m0ZqOT\":\"Modifica luogo\",\"8oivFT\":\"Modifica luogo\",\"vRWOrM\":\"Modifica dettagli ordine\",\"fW5sSv\":\"Modifica webhook\",\"nP7CdQ\":\"Modifica Webhook\",\"MRZxAn\":\"Edited\",\"uBAxNB\":\"Editor\",\"aqxYLv\":\"Istruzione\",\"iiWXDL\":\"Errori di idoneità\",\"zPiC+q\":\"Liste Check-In Idonee\",\"SiVstt\":\"Email & scheduled messages\",\"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\":\"Embeddable widget\",\"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\":\"End\",\"sGjBEq\":\"Data e ora di fine (opzionale)\",\"PKXt9R\":\"La data di fine deve essere successiva alla data di inizio\",\"ZayGC7\":\"End on a date\",\"48Y16Q\":\"Ora di fine (facoltativo)\",\"TbaYrr\":[\"Ended \",[\"0\"]],\"CFgwiw\":[\"Ends \",[\"0\"]],\"SqOIQU\":\"Enter a capacity value or choose unlimited.\",\"h37gRz\":\"Enter a label or choose to remove it.\",\"7YZofi\":\"Inserisci un oggetto e un corpo per vedere l'anteprima\",\"khyScF\":\"Enter a time to shift by.\",\"SKx/0u\":\"Inserisci il nome di un luogo o un indirizzo\",\"ppwojw\":\"Inserisci il nome di una sede o un indirizzo per gli eventi in presenza\",\"j+eCIq\":\"Inserisci l'indirizzo manualmente\",\"3bR1r4\":\"Inserisci email affiliato (facoltativo)\",\"ARkzso\":\"Inserisci nome affiliato\",\"ej4L8b\":\"Enter capacity\",\"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)\",\"RRlWVA\":\"Intero ordine\",\"o21Y+P\":\"entries\",\"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\",\"+v+GW0\":\"Visualizzazione della data dell'evento\",\"7u9/DO\":\"Evento eliminato con successo\",\"imgKgl\":\"Descrizione dell'evento\",\"IzR/Fc\":\"Event lifetime\",\"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\",\"mImacG\":\"Pagina dell'evento\",\"Hk9Ki/\":\"Evento ripristinato con successo\",\"JyD0LH\":\"Impostazioni evento\",\"XVLu2v\":\"Titolo dell'evento\",\"OfmsI9\":\"Evento troppo recente\",\"4SILkp\":\"Event totals\",\"YDVUVl\":\"Tipi di Evento\",\"+HeiVx\":\"Evento aggiornato\",\"19j6uh\":\"Performance Eventi\",\"PC3/fk\":\"Eventi che iniziano nelle prossime 24 ore\",\"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\":\"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\":\"Failed to cancel date\",\"YUX+f+\":\"Failed to cancel dates\",\"SIHgVQ\":\"Impossibile annullare il messaggio\",\"cEFg3R\":\"Creazione affiliato non riuscita\",\"dVgNF1\":\"Impossibile creare la configurazione\",\"fAoRRJ\":\"Failed to create schedule\",\"4yLYTb\":\"Impossibile creare il calendario. Riprova.\",\"U66oUa\":\"Impossibile creare il modello\",\"aFk48v\":\"Impossibile eliminare la configurazione\",\"n1CYMH\":\"Failed to delete date\",\"KXv+Qn\":\"Failed to delete date. It may have existing orders.\",\"JJ0uRo\":\"Failed to delete dates\",\"rgoBnv\":\"Impossibile eliminare l'evento\",\"Zw6LWb\":\"Impossibile eliminare il lavoro\",\"tq0abZ\":\"Impossibile eliminare i lavori\",\"2mkc3c\":\"Impossibile eliminare l'organizzatore\",\"5E23qd\":\"Failed to delete product. Please try again.\",\"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\":\"Failed to reactivate date\",\"7zyx8a\":\"Impossibile rimuovere dalla lista d'attesa\",\"A/P7PX\":\"Failed to remove override\",\"ogWc1z\":\"Failed to reopen date\",\"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\":\"Failed to save override\",\"sj/eZA\":\"Failed to save price override\",\"780n8A\":\"Failed to save product settings\",\"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\":\"Family\",\"5LO38w\":\"Fast payouts to your bank\",\"4lgLew\":\"February\",\"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\":\"Filter attendees\",\"8OvVZZ\":\"Filtra Partecipanti\",\"N/H3++\":\"Filter by date\",\"mvrlBO\":\"Filtra per evento\",\"g+xRXP\":\"Finish setting up Stripe\",\"LHH461\":\"Finish setup\",\"syyeb9\":\"First\",\"Vj6wk9\":\"First 30 days\",\"/bpZYb\":\"First 7 days\",\"ziEnjY\":\"First 90 days\",\"1vBhpG\":\"Primo partecipante\",\"4pwejF\":\"Il nome è obbligatorio\",\"rVogsf\":\"Risolvi i problemi per pubblicare\",\"3lkYdQ\":\"Fixed fee\",\"6bBh3/\":\"Tariffa fissa\",\"zWqUyJ\":\"Commissione fissa applicata per transazione\",\"LWL3Bs\":\"La tariffa fissa deve essere pari o superiore a 0\",\"0RI8m4\":\"Flash off\",\"q0923e\":\"Flash on\",\"X+U6/w\":\"Famiglia di caratteri\",\"lWxAUo\":\"Cibo e bevande\",\"nFm+5u\":\"Testo del Piè di Pagina\",\"a8nooQ\":\"Fourth\",\"wtuVU4\":\"Frequency\",\"xVhQZV\":\"Fri\",\"39y5bn\":\"Friday\",\"f5UbZ0\":\"Full data ownership\",\"cfvx/y\":\"Full event\",\"MY2SVM\":\"Rimborso completo\",\"PGQLdy\":\"future\",\"8N/j1s\":\"Future dates only\",\"yRx/6K\":\"Future dates will be copied with capacity reset to zero\",\"T02gNN\":\"Ingresso Generale\",\"3ep0Gx\":\"Informazioni generali sul tuo organizzatore\",\"ziAjHi\":\"Genera\",\"exy8uo\":\"Genera codice\",\"4CETZY\":\"Indicazioni stradali\",\"pjkEcB\":\"Get Paid\",\"lGYzP6\":\"Get paid with Stripe\",\"ZDIydz\":\"Iniziare\",\"u6FPxT\":\"Ottieni i biglietti\",\"8KDgYV\":\"Prepara il tuo evento\",\"RkXlPZ\":\"GitHub\",\"sr0UJD\":\"Go Back\",\"oNL5vN\":\"Vai alla pagina dell'evento\",\"gHSuV/\":\"Vai alla pagina iniziale\",\"8+Cj55\":\"Go to Schedule\",\"6nDzTl\":\"Buona leggibilità\",\"76gPWk\":\"Got it\",\"CZXzs4\":\"Greco\",\"aGWZUr\":\"Ricavi lordi\",\"n8IUs7\":\"Ricavi Lordi\",\"O1wAlQ\":\"Guest\",\"LIYoRQ\":\"Gestione ospiti\",\"NUsTc4\":\"Happening now\",\"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\":\"Hi,\",\"/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\":\"Hide details\",\"FmogyU\":\"Nascondi opzioni\",\"uXNYjR\":\"Nascondi date e orari esauriti\",\"g9RcYX\":\"Nascondi la data\",\"uMwTx7\":\"Nascondere questa categoria?\",\"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\":\"Hobbies\",\"yY8wAv\":\"Hours\",\"49Tkiw\":\"Come viene applicato lo sconto?\",\"sy9anN\":\"Quanto tempo ha un cliente per completare l'acquisto dopo aver ricevuto un'offerta. Lascia vuoto per nessun limite di tempo.\",\"n2ilNh\":\"How long does the schedule run?\",\"DMr2XN\":\"How often?\",\"cceMns\":\"How VAT is applied to the platform fees we charge you.\",\"FONsLE\":\"https://awesome-events.com\",\"htoh8N\":\"https://webhook-domain.com/webhook\",\"mkWad2\":\"Ungherese\",\"8Wgd41\":\"Riconosco le mie responsabilità come 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\",\"CY3yHL\":\"Se selezionato, questa categoria sarà nascosta al pubblico.\",\"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\":[\"in last \",[\"0\"],\" min\"],\"u7r0G5\":\"In person — set a venue\",\"/LCAwL\":\"In corso\",\"F1Xp97\":\"Partecipanti individuali\",\"85e6zs\":\"Inserisci Token Liquid\",\"CTWsuc\":\"Instagram\",\"VopR6B\":\"Instant Stripe payouts\",\"nbfdhU\":\"Integrazioni\",\"I8eJ6/\":\"Internal notes on the attendee's ticket\",\"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\",\"Dn4OyV\":\"Invitato\",\"IuMGvq\":\"Fattura\",\"a/bUcL\":\"It happens on more than one date\",\"d+Oe9r\":\"It may have been unpublished or removed. Please check the link and try again.\",\"Lj7sBL\":\"Italiano\",\"F5/CBH\":\"articolo(i)\",\"BzfzPK\":\"Articoli\",\"rjyWPb\":\"January\",\"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\":\"July\",\"zeEQd/\":\"June\",\"MxjCqk\":\"Stai solo cercando i tuoi biglietti?\",\"xOTzt5\":\"just now\",\"0RihU9\":\"Just wrapped\",\"lB2hSG\":[\"Tienimi aggiornato sulle novità e gli eventi di \",[\"0\"]],\"ioFA9i\":\"Keep the profit.\",\"o66QSP\":\"label updates\",\"RtKKbA\":\"Last\",\"DruLRc\":\"Ultimi 14 giorni\",\"ve9JTU\":\"Il cognome è obbligatorio\",\"h0Q9Iw\":\"Ultima Risposta\",\"gw3Ur5\":\"Ultimo Attivato\",\"FIq1Ba\":\"Later\",\"xvnLMP\":\"Latest check-ins\",\"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\":\"Chiaro\",\"1qY5Ue\":\"Link scaduto o non valido\",\"gggTBm\":\"LinkedIn\",\"nvOPBA\":\"Link consentiti\",\"2BBAbc\":\"List\",\"dF6vP6\":\"Online\",\"fpMs2Z\":\"LIVE\",\"D9zTjx\":\"Eventi in Diretta\",\"C33p4q\":\"Loaded dates\",\"WdmJIX\":\"Caricamento anteprima...\",\"IoDI2o\":\"Caricamento token...\",\"G3Ge9Z\":\"Caricamento dei log del webhook...\",\"NFxlHW\":\"Caricamento Webhooks\",\"E0DoRM\":\"Luogo eliminato\",\"7w8lJU\":\"Luogo salvato\",\"YsRXDD\":\"Luogo aggiornato\",\"A/kIva\":\"location updates\",\"iyZPPR\":\"luoghi\",\"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\",\"PSRm6/\":\"Cerca i miei biglietti\",\"yJFu/X\":\"Ufficio principale\",\"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\":\"Gestisci la lista d'attesa del tuo evento, visualizza le statistiche e offri i biglietti ai partecipanti.\",\"g2npA5\":\"Offerta manuale\",\"hg6l4j\":\"March\",\"pqRBOz\":\"Mark as validated (admin override)\",\"2L3vle\":\"Max messaggi / 24h\",\"Qp4HWD\":\"Max destinatari / messaggio\",\"3JzsDb\":\"May\",\"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\":\"Minutes\",\"zz/Wd/\":\"Mode\",\"fpMgHS\":\"Mon\",\"hty0d5\":\"Monday\",\"JbIgPz\":\"I valori monetari sono totali approssimativi in tutte le valute\",\"qvF+MT\":\"Monitora e gestisci i lavori in background falliti\",\"kY2ll9\":\"month\",\"HajiZl\":\"Mese\",\"+8Nek/\":\"Monthly\",\"1LkxnU\":\"Monthly Pattern\",\"6jefe3\":\"months\",\"f8jrkd\":\"more\",\"JcD7qf\":\"More actions\",\"w36OkR\":\"Eventi più visti (Ultimi 14 giorni)\",\"+Y/na7\":\"Move all dates earlier or later\",\"3DIpY0\":\"Multiple locations\",\"g9cQCP\":\"Multiple ticket types\",\"GfaxEk\":\"Musica\",\"oVGCGh\":\"I Miei Biglietti\",\"8/brI5\":\"Il nome è obbligatorio\",\"sFFArG\":\"Il nome deve contenere meno di 255 caratteri\",\"xxU3NX\":\"Ricavi Netti\",\"7I8LlL\":\"New capacity\",\"n1GRql\":\"New label\",\"y0Fcpd\":\"Nuovo luogo\",\"ArHT/C\":\"Nuove iscrizioni\",\"uK7xWf\":\"New time:\",\"veT5Br\":\"Next occurrence\",\"WXtl5X\":[\"Next: \",[\"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\":\"No attendees to show\",\"PKySlW\":\"No attendees yet for this date.\",\"/UC6qk\":\"Nessun dato di attribuzione trovato\",\"E2vYsO\":\"No capabilities reported by Stripe yet.\",\"amMkpL\":\"Nessuna capacità\",\"d2Jf1f\":\"No change\",\"99ntUF\":\"Nessuna lista di check-in disponibile per questo evento.\",\"wG+knX\":\"No check-ins yet\",\"+dAKxg\":\"Nessuna configurazione trovata\",\"LiLk8u\":\"No connections available\",\"eb47T5\":\"Nessun dato trovato per i filtri selezionati. Prova a modificare l'intervallo di date o la valuta.\",\"Zc216S\":\"No date added\",\"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\",\"OtJSnL\":\"Nessuna data in programma\",\"gEdNe8\":\"No dates scheduled yet\",\"pZNOT9\":\"Nessuna data di fine\",\"dW40Uz\":\"Nessun evento trovato\",\"8pQ3NJ\":\"Nessun evento in programma nelle prossime 24 ore\",\"8zCZQf\":\"Nessun evento disponibile\",\"Yc5YW6\":\"Nessun lavoro fallito\",\"EpvBAp\":\"Nessuna fattura\",\"XZkeaI\":\"Nessun log trovato\",\"IcAC6J\":\"Nessun carattere corrispondente\",\"nrSs2u\":\"Nessun messaggio trovato\",\"Rj99yx\":\"No occurrences available\",\"IFU1IG\":\"No occurrences on this date\",\"OVFwlg\":\"Nessuna domanda d'ordine ancora\",\"EJ7bVz\":\"Nessun ordine trovato\",\"NEmyqy\":\"Nessun ordine disponibile\",\"a77B6w\":\"No orders yet for this date.\",\"wUv5xQ\":\"Nessuna attività dell'organizzatore negli ultimi 14 giorni\",\"vLd1tV\":\"No organizer context available.\",\"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\":\"No products configured for this event.\",\"kY7XDn\":\"Nessun prodotto ha voci nella lista d'attesa\",\"8mw4tm\":\"Messaggio di nessun prodotto\",\"wYiAtV\":\"Nessuna iscrizione recente\",\"UW90md\":\"Nessun destinatario trovato\",\"QoAi8D\":\"Nessuna risposta\",\"JeO7SI\":\"Nessuna risposta\",\"EK/G11\":\"Ancora nessuna risposta\",\"59OWd3\":\"Nessun luogo salvato\",\"mPdY6W\":\"Nessun suggerimento\",\"3sRuiW\":\"Nessun biglietto trovato\",\"debCrL\":\"Nessun biglietto in vendita\",\"k2C0ZR\":\"No upcoming dates\",\"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-edited\",\"Itw24Q\":\"Not checked in\",\"x5+Lcz\":\"Non Registrato\",\"8n10sz\":\"Non Idoneo\",\"kLvU3F\":\"Notify attendees and stop sales\",\"t9QlBd\":\"November\",\"kAREMN\":\"Number of dates to create\",\"6u1B3O\":\"Occurrence\",\"mmoE62\":\"Occurrence Cancelled\",\"V9flmL\":\"Occurrence Schedule\",\"Kh3WO8\":\"Occurrence Summary\",\"byXCTu\":\"Occurrences\",\"KATw3p\":\"Occurrences (future only)\",\"85rTR2\":\"Occurrences can be configured after creation\",\"dzQfDY\":\"October\",\"BwJKBw\":\"di\",\"9h7RDh\":\"Offrire\",\"EfK2O6\":\"Offri posto\",\"3sVRey\":\"Offri biglietti\",\"2O7Ybb\":\"Scadenza dell'offerta\",\"1jUg5D\":\"Offerto\",\"l+/HS6\":[\"Le offerte scadono dopo \",[\"timeoutHours\"],\" ore.\"],\"6Aih4U\":\"Offline\",\"nO3VbP\":[\"In vendita \",[\"0\"]],\"oXOSPE\":\"Online\",\"aqmy5k\":\"Online — provide connection details\",\"LuZBbx\":\"Online & in-person\",\"IXuOqt\":\"Online & in-person — see schedule\",\"WjSpu5\":\"Evento online\",\"scPxI/\":[\"Solo \",[\"capacity\"],\" rimasti\"],\"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\",\"wkpaqp\":\"Mostra solo data e ora di inizio\",\"DMk8F0\":\"Only tickets count toward capacity\",\"M2w1ni\":\"Visibile solo con codice promozionale\",\"y8Bm7C\":\"Open check-in\",\"RLz7P+\":\"Open occurrence\",\"cDSdPb\":\"Soprannome facoltativo mostrato nei selettori, ad es. \\\"Sala conferenze\\\"\",\"HXMJxH\":\"Testo opzionale per disclaimer, informazioni di contatto o note di ringraziamento (solo una riga)\",\"L565X2\":\"opzioni\",\"8m9emP\":\"or add a single date\",\"eBskDE\":\"Oppure abilita i pagamenti offline e disabilita Stripe\",\"dSeVIm\":\"order\",\"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\",\"xtQzag\":\"Order details\",\"vrSW9M\":\"L'ordine è stato cancellato e rimborsato. Il proprietario dell'ordine è stato notificato.\",\"rzw+wS\":\"Titolari degli ordini\",\"oI/hGR\":\"ID ordine\",\"RQCXz6\":\"Limiti degli ordini\",\"SO9AEF\":\"Limiti di ordine impostati\",\"vu6Arl\":\"Ordine Contrassegnato come Pagato\",\"sLbJQz\":\"Ordine non trovato\",\"kvYpYu\":\"Ordine non trovato\",\"eJ8SvM\":\"Order number, purchase date, purchaser email\",\"FaPYw+\":\"Proprietario ordine\",\"eB5vce\":\"Proprietari di ordini con un prodotto specifico\",\"CxLoxM\":\"Proprietari di ordini con prodotti\",\"UkHo4c\":\"Rif. ordine\",\"EZy55F\":\"Ordine Rimborsato\",\"6eSHqs\":\"Stati ordine\",\"oW5877\":\"Totale Ordine\",\"e7eZuA\":\"Ordine Aggiornato\",\"1SQRYo\":\"Ordine aggiornato con successo\",\"3NT0Ck\":\"L'ordine è stato annullato\",\"V5khLm\":\"orders\",\"sd5IMt\":\"Ordini completati\",\"5It1cQ\":\"Ordini Esportati\",\"UQ0ACV\":\"Totale ordini\",\"B/EBQv\":\"Ordini:\",\"qtGTNu\":\"Account organici\",\"P/JHA4\":\"Organizzatore archiviato con successo\",\"S3CZ5M\":\"Dashboard organizzatore\",\"GzjTd0\":\"Organizzatore eliminato con successo\",\"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\":\"Organizers\",\"/IX/7x\":\"Altro\",\"RsiDDQ\":\"Altre Liste (Biglietto Non Incluso)\",\"aDfajK\":\"Outdoors\",\"qMASRF\":\"Messaggi in uscita\",\"iCOVQO\":\"Override\",\"GpFTEc\":\"Override fees on this organizer\",\"M9ZhMP\":\"Override price\",\"cnVIpl\":\"Override removed\",\"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\":\"Past due\",\"xTPjSy\":\"Eventi passati\",\"/l/ckQ\":\"Incolla URL\",\"URAE3q\":\"In pausa\",\"4fL/V7\":\"Paga\",\"c2/9VE\":\"Payload\",\"5cxUwd\":\"Data di pagamento\",\"ENEPLY\":\"Metodo di pagamento\",\"8Lx2X7\":\"Pagamento ricevuto\",\"fx8BTd\":\"Pagamenti non disponibili\",\"C+ylwF\":\"Payouts\",\"UbRKMZ\":\"Pending\",\"UkM20g\":\"In attesa di revisione\",\"dPYu1F\":\"Per partecipante\",\"mQV/nJ\":\"per min\",\"+kvxv+\":\"per ordine\",\"VlXNyK\":\"Per ordine\",\"NhuGd7\":\"per prodotto\",\"hauDFf\":\"Per biglietto\",\"mnF83a\":\"percentuale Commissione\",\"TNLuRD\":\"Percentage fee (%)\",\"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\":\"Permanently remove this date\",\"6kPk3+\":\"Informazioni personali\",\"zmwvG2\":\"Telefono\",\"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\":\"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\":\"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\":\"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\":\"Please select a date and time\",\"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\":\"Position\",\"OESu7I\":\"Evita l'overselling condividendo l'inventario tra più tipi di biglietto.\",\"NgVUL2\":\"Anteprima modulo di checkout\",\"cs5muu\":\"Anteprima pagina evento\",\"Jm2AC3\":\"Price Tier\",\"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\":\"Product settings cannot be edited for cancelled dates.\",\"2339ej\":\"Product settings saved successfully\",\"ldVIlB\":\"Prodotto Aggiornato\",\"CP3D8G\":\"Progress\",\"JoKGiJ\":\"Codice promo\",\"k3wH7i\":\"Ripartizione utilizzo codici promo e sconti\",\"tZqL0q\":\"promo codes\",\"oCHiz3\":\"Promo codes\",\"uEhdRh\":\"Solo promo\",\"dLm8V5\":\"Le email promozionali potrebbero comportare la sospensione dell'account\",\"W0ETyY\":\"Fornisci almeno un campo dell'indirizzo (sede, via, città o paese).\",\"2W/7Gz\":\"Provide the following before Stripe's next review to keep payouts flowing.\",\"EEYbdt\":\"Pubblica\",\"JcgJKc\":\"Pubblica comunque\",\"evDBV8\":\"Pubblica evento\",\"2zEfOd\":\"Publish your event\",\"L7nrC8\":\"Con la pubblicazione la pagina del tuo evento diventa pubblica e si aprono le iscrizioni.\",\"dsFmM+\":\"Acquistato\",\"JunetL\":\"Purchaser\",\"phmeUH\":\"Purchaser email\",\"ywR4ZL\":\"QR code check-in\",\"oWXNE5\":\"Qtà\",\"biEyJ4\":\"Question answers\",\"k/bJj0\":\"Domande riordinate\",\"b24kPi\":\"Coda\",\"lTPqpM\":\"Quick Tip\",\"fqDzSu\":\"Tasso\",\"mnUGVC\":\"Limite di frequenza superato. Per favore riprova più tardi.\",\"t41hVI\":\"Rioffri posto\",\"TNclgc\":\"Reactivate this date? It will be reopened for future sales.\",\"RENQ6j\":\"Pronto per andare online?\",\"uqoRbb\":\"Real-time analytics\",\"xzRvs4\":[\"Ricevi aggiornamenti sui prodotti da \",[\"0\"],\".\"],\"pLXbi8\":\"Iscrizioni recenti\",\"M1HGuR\":\"Recent activity\",\"3kJ0gv\":\"Recent Attendees\",\"qhfiwV\":\"Recent check-ins\",\"S+0XMX\":\"Recent orders\",\"Fi3b48\":\"Ordini recenti\",\"7hPBBn\":\"destinatario\",\"jp5bq8\":\"destinatari\",\"yPrbsy\":\"Destinatari\",\"E1F5Ji\":\"I destinatari sono disponibili dopo l'invio del messaggio\",\"WEYdDv\":\"Recommended\",\"wuhHPE\":\"Recurring\",\"asLqwt\":\"Evento ricorrente\",\"s3uzsK\":\"Impostazioni evento ricorrente\",\"D0tAMe\":\"Recurring events\",\"JjMIKU\":\"Reddit\",\"HiGkFu\":\"Reindirizzamento a Stripe...\",\"pnoTN5\":\"Account di riferimento\",\"ACKu03\":\"Aggiorna Anteprima\",\"vuFYA6\":\"Refund all orders for these dates\",\"4cRUK3\":\"Refund all orders for this date\",\"fKn/k6\":\"Importo rimborso\",\"qY4rpA\":\"Rimborso fallito\",\"FaK/8G\":[\"Rimborsa ordine \",[\"0\"]],\"MGbi9P\":\"Rimborso in sospeso\",\"BDSRuX\":[\"Rimborsato: \",[\"0\"]],\"bU4bS1\":\"Rimborsi\",\"rYXfOA\":\"Impostazioni regionali\",\"5tl0Bp\":\"Domande di registrazione\",\"ZNo5k1\":\"Remaining\",\"Bjh87R\":\"Remove label from all dates\",\"IVZaEo\":\"Rimuove completamente le date e gli orari esauriti dalla pagina dell'evento. Se disattivato, restano visibili e vengono contrassegnati come esauriti.\",\"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 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\":\"Reset to base price\",\"kCn6wb\":\"Reimpostazione in corso...\",\"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\":\"results\",\"6gRgw8\":\"Riprova\",\"1BG8ga\":\"Riprova tutto\",\"rDC+T6\":\"Riprova lavoro\",\"CbnrWb\":\"Torna all'evento\",\"Lf7TCn\":\"I luoghi riutilizzabili compaiono qui automaticamente quando crei eventi con indirizzi, e puoi aggiungerne di tuoi.\",\"mdQ0zb\":\"Luoghi riutilizzabili per i tuoi eventi. I luoghi creati dal completamento automatico vengono salvati qui automaticamente.\",\"XFOPle\":\"Reuse\",\"1Zehp4\":\"Reuse a Stripe connection from another organizer in this account.\",\"Oo/PLb\":\"Riepilogo Ricavi\",\"CfuueU\":\"Revoca l'offerta\",\"RIgKv+\":\"Run until a specific date\",\"dFFW9L\":[\"Vendita terminata \",[\"0\"]],\"loCKGB\":[\"La vendita termina il \",[\"0\"]],\"wlfBad\":\"Periodo di vendita\",\"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\":\"Periodo di vendita stabilito\",\"ftzaMf\":\"Periodo di vendita, limiti di ordine, visibilità\",\"zpekWp\":[\"Inizio vendita \",[\"0\"]],\"mUv9U4\":\"Vendite\",\"9KnRdL\":\"Le vendite sono sospese\",\"JC3J0k\":\"Sales, attendance, and check-in breakdown per occurrence\",\"3VnlS9\":\"Vendite, ordini e metriche di performance per tutti gli eventi\",\"3Q1AWe\":\"Vendite:\",\"LeuERW\":\"Same as event\",\"B4nE3N\":\"Prezzo del biglietto di esempio\",\"8BRPoH\":\"Luogo di Esempio\",\"PiK6Ld\":\"Sat\",\"+5kO8P\":\"Saturday\",\"zJiuDn\":\"Save fee override\",\"NB8Uxt\":\"Save Schedule\",\"KZrfYJ\":\"Salva link social\",\"9Y3hAT\":\"Salva Modello\",\"C8ne4X\":\"Salva Design del Biglietto\",\"cTI8IK\":\"Save VAT settings\",\"6/TNCd\":\"Salva impostazioni IVA\",\"4RvD9q\":\"Luogo salvato\",\"cgw0cL\":\"Luoghi salvati\",\"Fbqm/I\":\"Saving an override creates a dedicated configuration for this organizer if it's currently on the system default.\",\"I+FvbD\":\"Scansiona\",\"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\":\"Programma per dopo\",\"NAzVVw\":\"Programma messaggio\",\"Fz09JP\":\"Schedule starts on\",\"4ba0NE\":\"Programmata\",\"qcP/8K\":\"Orario programmato\",\"A1taO8\":\"Search\",\"ftNXma\":\"Cerca affiliati...\",\"VMU+zM\":\"Search attendees\",\"VY+Bdn\":\"Cerca per nome account o e-mail...\",\"VX+B3I\":\"Cerca per titolo evento o organizzatore...\",\"R0wEyA\":\"Cerca per nome lavoro o eccezione...\",\"YnMfsK\":\"Cerca per nome o indirizzo...\",\"VT+urE\":\"Cerca per nome o email...\",\"GHdjuo\":\"Cerca per nome, email o account...\",\"4mBFO7\":\"Search by name, order #, ticket # or email\",\"20ce0U\":\"Cerca per ID ordine, nome cliente o email...\",\"4DSz7Z\":\"Cerca per oggetto, evento o account...\",\"nQC7Z9\":\"Search dates...\",\"iRtEpV\":\"Search dates…\",\"JRM7ao\":\"Search for an address\",\"BWF1kC\":\"Cerca messaggi...\",\"5WYZKZ\":\"Risultati della ricerca\",\"IG85fV\":\"Cerca luoghi salvati o trova un indirizzo...\",\"3aD3GF\":\"Seasonal\",\"ku//5b\":\"Second\",\"Mck5ht\":\"Pagamento sicuro\",\"s7tXqF\":\"See schedule\",\"JFap6u\":\"See what Stripe still needs\",\"p7xUrt\":\"Seleziona una categoria\",\"hTKQwS\":\"Select a Date & Time\",\"Ps6Xtf\":\"Select a date to see available times\",\"e4L7bF\":\"Seleziona un messaggio per visualizzarne il contenuto\",\"zPRPMf\":\"Seleziona un livello\",\"BFRSTT\":\"Seleziona Account\",\"wgNoIs\":\"Select all\",\"mCB6Je\":\"Seleziona tutto\",\"aCEysm\":[\"Select all on \",[\"0\"]],\"a6+167\":\"Seleziona un evento\",\"CFbaPk\":\"Seleziona il gruppo di partecipanti\",\"88a49s\":\"Select camera\",\"tVW/yo\":\"Seleziona valuta\",\"SJQM1I\":\"Select date\",\"n9ZhRa\":\"Seleziona data e ora di fine\",\"gTN6Ws\":\"Seleziona ora di fine\",\"0U6E9W\":\"Seleziona categoria evento\",\"j9cPeF\":\"Seleziona tipi di evento\",\"ypTjHL\":\"Select occurrence\",\"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\":\"selected\",\"ylXj1N\":\"Selezionato\",\"uq3CXQ\":\"Sell out your event.\",\"oBXbO4\":\"Selling a physical product? Cap its quantity on the <0>products page instead.\",\"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\":\"Send to all occurrences, or choose a specific one\",\"QEQlnV\":\"Invia il tuo primo messaggio\",\"IoAuJG\":\"Invio in corso...\",\"h69WC6\":\"Inviato\",\"BVu2Hz\":\"Inviato da\",\"ZFa8wv\":\"Sent to attendees when a scheduled date is cancelled\",\"SPdzrs\":\"Inviato ai clienti quando effettuano un ordine\",\"LxSN5F\":\"Inviato a ogni partecipante con i dettagli del biglietto\",\"hgvbYY\":\"September\",\"5sN96e\":\"Session cancelled\",\"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\":\"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\":\"Configura liste di check-in per diversi ingressi, sessioni o giorni.\",\"TaWVGe\":\"Set up payouts\",\"JA//e6\":\"Set up schedule\",\"gzXY7l\":\"Set Up Schedule\",\"0Ls9qe\":\"Set up the tickets you'll sell and their prices\",\"xMO+Ao\":\"Configura la tua organizzazione\",\"5pEFnq\":\"Set up your schedule\",\"h/9JiC\":\"Set Up Your Schedule\",\"zRRuUD\":\"Set up your schedule in the next steps\",\"ETC76A\":\"Set, change, or remove the date's location or online details\",\"C3htzi\":\"Impostazione aggiornata\",\"Ohn74G\":\"Configurazione e 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\":\"Condividi link affiliato\",\"hL7sDJ\":\"Condividi pagina dell'organizzatore\",\"jy6QDF\":\"Gestione capacità condivisa\",\"jDNHW4\":\"Shift times\",\"tPfIaW\":[\"Shifted times for \",[\"count\"],\" date(s)\"],\"WwlM8F\":\"Mostra opzioni avanzate\",\"cMW+gm\":[\"Mostra tutte le piattaforme (\",[\"0\"],\" con valori)\"],\"wXi9pZ\":\"Show attendee notes to non-logged-in staff\",\"4LZFir\":\"Mostra l'intero intervallo di date\",\"UVPI5D\":\"Mostra meno piattaforme\",\"Eu/N/d\":\"Mostra casella di opt-in marketing\",\"SXzpzO\":\"Mostra casella di opt-in marketing per impostazione predefinita\",\"b33PL9\":\"Mostra più piattaforme\",\"Eut7p9\":\"Show order details to non-logged-in staff\",\"+RoWKN\":\"Show question answers to non-logged-in staff\",\"jbcx6L\":\"Show remaining capacity on event dates\",\"rXxBOx\":\"Show remaining capacity to buyers\",\"t1LIQW\":[\"Visualizzazione di \",[\"0\"],\" record su \",[\"totalRows\"]],\"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\":\"Iscritto\",\"5C7J+P\":\"Single Event\",\"E//btK\":\"Skip manually edited dates\",\"paESr6\":\"Slovacco\",\"9wu8nm\":\"Snapchat\",\"kIKb9e\":\"Sociale\",\"d0rUsW\":\"Link social\",\"j/TOB3\":\"Link social e sito web\",\"s9KGXU\":\"Venduto\",\"yp+0jj\":\"sold out\",\"1hupow\":\"Esaurito, lista d'attesa disponibile\",\"iACSrw\":\"Some details are hidden from public access. Log in to view everything.\",\"Dia6iz\":\"Something went wrong while deleting the image. Please try again.\",\"KTxc6k\":\"Qualcosa è andato storto, riprova o contatta l'assistenza se il problema persiste\",\"lkE00/\":\"Qualcosa è andato storto. Riprova più tardi.\",\"wdxz7K\":\"Fonte\",\"fDG2by\":\"Spirituality\",\"oPaRES\":\"Split check-in across days, areas, or ticket types. Share the link with staff — no account needed on their end.\",\"7JFNej\":\"Sport\",\"/bfV1Y\":\"Staff instructions\",\"tXkhj/\":\"Start\",\"StWUH4\":\"Start check-in\",\"JcQp9p\":\"Data e ora di inizio\",\"0m/ekX\":\"Data e ora di inizio\",\"izRfYP\":\"La data di inizio è obbligatoria\",\"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/\":\"Statistiche\",\"GVUxAX\":\"Le statistiche si basano sulla data di creazione dell'account\",\"29Hx9U\":\"Stats\",\"5ia+r6\":\"Still needed\",\"wuV0bK\":\"Interrompi Impersonificazione\",\"s/KaDb\":\"Stripe connected\",\"Bk06QI\":\"Stripe connesso\",\"akZMv8\":[\"Stripe connection copied from \",[\"0\"],\".\"],\"v0aRY1\":\"Stripe didn't return a setup link. Please try again.\",\"aKtF0O\":\"Stripe non connesso\",\"9i0++A\":\"ID pagamento Stripe\",\"R1lIMV\":\"Stripe will need a few more details soon\",\"FzcCHA\":\"Stripe will walk you through a few quick questions to finish setup.\",\"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\",\"kRWc2g\":\"Impostazioni evento ricorrente 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\":\"Sun\",\"DBC3t5\":\"Sunday\",\"UaISq3\":\"Svedese\",\"JZTQI0\":\"Cambia organizzatore\",\"9YHrNC\":\"Predefinito del sistema\",\"lruQkA\":\"Tap this screen to resume scanning\",\"TJUrME\":[\"Targeting attendees across \",[\"0\"],\" selected sessions.\"],\"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\":\"Team collaboration\",\"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\":\"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\":\"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\",\"nm3Iz/\":\"Grazie per aver partecipato!\",\"pYwj0k\":\"Thanks,\",\"k3IitN\":\"That's a wrap\",\"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.\",\"7oksH+\":[\"Lo sconto viene detratto da ogni prodotto idoneo. Es.: \",[\"currencySymbol\"],\"10 di sconto × 3 biglietti = \",[\"currencySymbol\"],\"30 di sconto.\"],\"sKL8k2\":\"Lo sconto viene detratto una sola volta dal totale dell'ordine.\",\"cDHM1d\":\"L'indirizzo e-mail è stato modificato. Il partecipante riceverà un nuovo biglietto all'indirizzo e-mail aggiornato.\",\"tXadb0\":\"L'evento che stai cercando non è disponibile al momento. Potrebbe essere stato rimosso, scaduto o l'URL potrebbe essere errato.\",\"5fPdZe\":\"The first date this schedule will generate from.\",\"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.\",\"Np4eLs\":[\"The maximum is \",[\"MAX_PREVIEW\"],\" sessions. Please reduce the date range, frequency, or number of sessions per day.\"],\"sYLeDq\":\"L'organizzatore che stai cercando non è stato trovato. La pagina potrebbe essere stata spostata, eliminata o l'URL potrebbe essere errato.\",\"PCr4zw\":\"The override is recorded in the order audit log.\",\"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\",\"OVSkIF\":\"La rapida volpe marrone salta sopra il cane pigro.\",\"z0KrIG\":\"L'orario programmato è obbligatorio\",\"EWErQh\":\"L'orario programmato deve essere nel futuro\",\"UNd0OU\":[\"The session for \\\"\",[\"title\"],\"\\\" originally scheduled for \",[\"0\"],\" has been rescheduled.\"],\"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\",\"ybBP2H\":\"There are no products available for this date. Please choose another date.\",\"O7g4eR\":\"There are no upcoming dates for this event\",\"062KsE\":\"These details are shown on the attendee's ticket and order summary for this date only.\",\"5Eu+tn\":\"Questi dettagli saranno mostrati solo se l'ordine viene completato con successo.\",\"jQjwR+\":\"These details will replace any existing location on the affected dates and show on attendee tickets.\",\"6eaLu/\":\"Questi prezzi si applicano a tutte le date del programma e le quantità dei livelli limitano le vendite totali di tutte le date nel loro insieme. Le date di vendita dei livelli si applicano globalmente. Puoi sostituire i prezzi per singole date nella <0>pagina Programmazione delle date.\",\"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\":\"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\":\"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/\":[\"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.\",\"E9BqZw\":\"This date only\",\"RzEvf5\":\"Questo evento è terminato\",\"kc4bIA\":\"Questo evento non ha ancora biglietti o prodotti, quindi i partecipanti non potranno registrarsi.\",\"eMaNd0\":\"This event is not available\",\"YClrdK\":\"Questo evento non è ancora pubblicato\",\"GL6z+k\":\"Questo evento è esaurito\",\"pIwDhS\":\"This event's dates and times are set on the occurrence schedule.\",\"ny5rgr\":\"This is a recurring event\",\"tc64Zz\":\"Questo è il nome della categoria che verrà visualizzato sulla pagina dell'evento.\",\"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.\",\"5DpZrC\":\"Questo limita le vendite totali di tutte le date del programma nel loro insieme: non è un limite per data. Per limitare la partecipazione a ogni data, imposta una capacità nella <0>pagina Programmazione delle date.\",\"L7dIM7\":\"Questo link non è valido o è scaduto.\",\"MR5ygV\":\"Questo link non è più valido\",\"9LEqK0\":\"Questo nome è visibile agli utenti finali\",\"QdUMM9\":\"This occurrence is at capacity\",\"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\",\"qEGn8I\":\"Questo evento ricorrente non ha ancora date, quindi i partecipanti non hanno nulla da prenotare.\",\"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.\",\"1LuJNw\":\"Questo biglietto non è più valido\",\"0Ew0uk\":\"Questo biglietto è stato appena scansionato. Attendi prima di scansionare di nuovo.\",\"FYXq7k\":[\"This will affect \",[\"loadedAffectedCount\"],\" date(s).\"],\"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\":\"Throughput\",\"+FjWgX\":\"Thu\",\"kkDQ8m\":\"Thursday\",\"0GSPnc\":\"Design del Biglietto\",\"EZC/Cu\":\"Design del biglietto salvato con successo\",\"bbslmb\":\"Designer biglietti\",\"1BPctx\":\"Biglietto per\",\"HGuXjF\":\"Possessori di biglietti\",\"CMUt3Y\":\"Titolari dei biglietti\",\"awHmAT\":\"ID biglietto\",\"6czJik\":\"Logo del Biglietto\",\"t79rDv\":\"Biglietto non trovato\",\"6tmWch\":\"Biglietto o prodotto\",\"1tfWrD\":\"Anteprima biglietto per\",\"KnjoUA\":\"Prezzo del biglietto\",\"pGZOcL\":\"Biglietto reinviato con successo\",\"o02GZM\":\"Ticket sales have ended for this event\",\"8jLPgH\":\"Tipo di 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\":\"Time\",\"fXf2r5\":[\"Times shown in \",[\"timezoneAbbr\"]],\"dMtLDE\":\"to\",\"/jQctM\":\"A\",\"tiI71C\":\"Per aumentare i tuoi limiti, contattaci a\",\"ecUA8p\":\"Today\",\"W428WC\":\"Attiva colonne\",\"BRMXj0\":\"Tomorrow\",\"UBSG1X\":\"Migliori organizzatori (Ultimi 14 giorni)\",\"3sZ0xx\":\"Account Totali\",\"SMDzqJ\":\"Totale Partecipanti\",\"orBECM\":\"Totale Raccolto\",\"k5CU8c\":\"Totale iscrizioni\",\"4B7oCp\":\"Commissione totale\",\"sMMlTX\":\"Total fees\",\"mlvCEl\":\"Total orders\",\"2AW/k5\":\"Quantità totale su tutte le date\",\"dp8BCb\":\"Total tax\",\"vb0Q0/\":\"Utenti Totali\",\"oJjplO\":\"Visualizzazioni totali\",\"rBZ9pz\":\"Tours\",\"orluER\":\"Traccia la crescita e le prestazioni dell'account per fonte di attribuzione\",\"YwKzpH\":\"Monitoraggio & Analytics\",\"GUA0Jy\":\"Try a different search term or filter\",\"2P/OWN\":\"Try adjusting your filters to see more dates.\",\"ouM5IM\":\"Prova un'altra email\",\"3DZvE7\":\"Prova Hi.Events Gratis\",\"vq2WxD\":\"Tue\",\"G3myU+\":\"Tuesday\",\"Kz91g/\":\"Turco\",\"GdOhw6\":\"Disattiva audio\",\"KUOhTy\":\"Attiva audio\",\"dBeuY2\":\"Twitch\",\"QytzQr\":\"Digita \\\"elimina\\\" per confermare\",\"nWRfmt\":\"Tipografia\",\"IrVSu+\":\"Impossibile duplicare il prodotto. Controlla i tuoi dati\",\"Vx2J6x\":\"Impossibile recuperare il partecipante\",\"h0dx5e\":\"Impossibile unirsi alla lista d'attesa\",\"DaE0Hg\":\"Unable to load attendee details.\",\"GlnD5Y\":\"Unable to load products for this date. Please try again.\",\"17VbmV\":\"Unable to undo check-in\",\"n57zCW\":\"Account non attribuiti\",\"9uI/rE\":\"Undo\",\"Ef7StM\":\"Sconosciuto\",\"ZBAScj\":\"Partecipante Sconosciuto\",\"MEIAzV\":\"Senza nome\",\"K6L5Mx\":\"Luogo senza nome\",\"7yiFvZ\":\"Non pagato\",\"X13xGn\":\"Non attendibile\",\"gyXpQN\":\"Upcoming events\",\"Pp1sWX\":\"Aggiorna affiliato\",\"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\":\"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\":\"USB scanner listening\",\"dyTklH\":\"USB scanner paused\",\"OHJXlK\":\"Usa <0>i template Liquid per personalizzare le tue email\",\"/rsy72\":\"Use event default\",\"0k4cdb\":\"Utilizza i dettagli dell'ordine per tutti i partecipanti. I nomi e gli indirizzi email dei partecipanti corrisponderanno alle informazioni dell'acquirente.\",\"bA31T4\":\"Usa i dati dell'acquirente per tutti i partecipanti\",\"PpgtnC\":\"Usa questo indirizzo\",\"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\":\"VAT number\",\"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\":\"VAT registered\",\"Nfbg76\":\"Impostazioni IVA salvate con successo\",\"UvYql/\":\"Impostazioni IVA salvate. Stiamo convalidando il tuo numero di partita IVA in background.\",\"bXn1Jz\":\"VAT settings updated\",\"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\":\"VAT: not registered\",\"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\":\"View All\",\"yA/6BX\":\"View all →\",\"6CQ7/B\":\"View all capabilities\",\"YSE15b\":\"View all check-in lists\",\"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\":[\"View details for \",[\"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\":\"Waiting for scan…\",\"u0n+wz\":\"Lista d'attesa\",\"3RXFtE\":\"Lista d'attesa abilitata\",\"TwnTPy\":\"L'offerta per la lista d'attesa è scaduta.\",\"aUi/Dz\":\"Attenzione: questa è la configurazione predefinita del sistema. Le modifiche interesseranno tutti gli account a cui non è assegnata una configurazione specifica.\",\"aT/44s\":\"We couldn't copy that Stripe connection. Please try again.\",\"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.\",\"Fjj/5/\":\"We couldn't load the check-in lists. Please try again.\",\"ADsQ23\":\"We couldn't reach Stripe just now. Please try again in a moment.\",\"HJKdzP\":\"Si è verificato un problema durante il caricamento di questa pagina. Riprova.\",\"jegrvW\":\"We partner with Stripe to send payouts straight to your bank account.\",\"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 capire come viene utilizzato il sito e 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.\",\"mfM/HJ\":[\"Ti avviseremo via email se si libererà un posto per \",[\"productDisplayName\"],\" il \",[\"occurrenceDate\"],\".\"],\"iy+M+c\":[\"Ti avviseremo via email se si libererà un posto per \",[\"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\":\"Invieremo i tuoi biglietti a questa email\",\"ZOmUYW\":\"Convalideremo la tua partita IVA in background. In caso di problemi, ti informeremo.\",\"LKjHr4\":[\"We've made changes to the schedule for \\\"\",[\"title\"],\"\\\" — \",[\"description\"],\" affecting \",[\"affectedCount\"],\" session(s).\"],\"Fq/Nx7\":\"Abbiamo inviato un codice di verifica a 5 cifre a:\",\"GdWB+V\":\"Webhook creato con successo\",\"2X4ecw\":\"Webhook eliminato con successo\",\"ndBv0v\":\"Webhook integrations\",\"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\":\"Wed\",\"VAcXNz\":\"Wednesday\",\"64X6l4\":\"week\",\"4XSc4l\":\"Weekly\",\"IAUiSh\":\"weeks\",\"vKLEXy\":\"Weibo\",\"9eF5oV\":\"Bentornato\",\"QDWsl9\":[\"Benvenuto su \",[\"0\"],\", \",[\"1\"],\" 👋\"],\"LETnBR\":[\"Benvenuto su \",[\"0\"],\", ecco un elenco di tutti i tuoi eventi\"],\"DDbx7K\":\"Wellness\",\"ywRaYa\":\"What time?\",\"FaSXqR\":\"Che tipo di evento?\",\"0WyYF4\":\"What unauthenticated staff can see\",\"2+ExvJ\":\"WhatsApp\",\"cxsKvw\":\"Quando un check-in viene eliminato\",\"RPe6bE\":\"When a date is cancelled on a recurring event\",\"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 va esaurito, i clienti possono iscriversi a una lista d'attesa per essere avvisati non appena si liberano dei posti.\",\"OIkHj+\":\"Quando un prodotto va esaurito, i clienti possono iscriversi a una lista d'attesa per essere avvisati non appena si liberano dei posti. I clienti si iscrivono alla lista d'attesa per una data specifica e le offerte vengono fatte per data.\",\"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\":\"Quando i clienti acquistano biglietti, i loro ordini appariranno qui.\",\"pm9tpn\":\"Se attivato, gli acquirenti possono copiare il proprio nome ed e-mail su tutti i partecipanti in una sola volta. Disattivalo per rimuovere l'opzione \\\"Tutti i partecipanti\\\"; gli acquirenti potranno comunque copiare i dati sul primo partecipante, mentre gli altri dovranno essere inseriti singolarmente.\",\"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.\",\"uchB0M\":\"Anteprima widget\",\"uvIqcj\":\"Workshop\",\"EpknJA\":\"Scrivi qui il tuo messaggio...\",\"nhtR6Y\":\"X (Twitter)\",\"7qI8sJ\":\"year\",\"zkWmBh\":\"Yearly\",\"+BGee5\":\"years\",\"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+\":\"You can override this for individual dates later.\",\"paWwQ0\":\"È comunque possibile offrire biglietti manualmente se necessario.\",\"jTDzpA\":\"Non puoi archiviare l'ultimo organizzatore attivo del tuo account.\",\"D8baxD\":\"Hai biglietti a pagamento, ma Stripe non è ancora collegato, quindi non puoi accettare pagamenti.\",\"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/\":\"You need to create at least one occurrence before you can add attendees to this recurring event.\",\"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\":\"You'll be able to set up dates, schedules, and recurrence rules in the next step.\",\"zKAheG\":\"You're changing session times\",\"MNFIxz\":[\"Stai per partecipare a \",[\"0\"],\"!\"],\"ZlLcht\":[\"Ti stai iscrivendo alla lista d'attesa per il \",[\"occurrenceDate\"],\".\"],\"qGZz0m\":\"Sei nella lista d'attesa!\",\"/5HL6k\":\"Ti è stato offerto un posto!\",\"gbjFFH\":\"You've changed the session time\",\"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\":\"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\":\"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 8ecce1dcba..1f837ba47d 100644 --- a/frontend/src/locales/it.po +++ b/frontend/src/locales/it.po @@ -179,11 +179,11 @@ msgstr "" msgid "{totalCount} ticket types" msgstr "{totalCount} tipi di biglietto" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:554 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:567 msgid "{totalOccurrences} dates" msgstr "" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:547 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:560 msgid "{totalOccurrences} sessions across {0} dates ({1, plural, one {# session} other {# sessions}} per day)" msgstr "" @@ -516,7 +516,7 @@ msgstr "Eventi attivi" msgid "Active payment methods" msgstr "" -#: src/components/routes/event/OccurrencesTab/index.tsx:400 +#: src/components/routes/event/OccurrencesTab/index.tsx:402 msgid "Activity" msgstr "" @@ -536,11 +536,11 @@ msgstr "" msgid "Add a description for this check-in list" msgstr "Aggiungi una descrizione per questa lista di check-in" -#: src/components/routes/event/OccurrencesTab/index.tsx:538 +#: src/components/routes/event/OccurrencesTab/index.tsx:541 msgid "Add a Single Date" msgstr "" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:739 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:752 msgid "Add another time" msgstr "" @@ -560,7 +560,7 @@ msgstr "Aggiungi eventuali note sull'ordine. Queste non saranno visibili al clie msgid "Add any notes about the order..." msgstr "Aggiungi eventuali note sull'ordine..." -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:375 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:382 msgid "Add at least one time" msgstr "" @@ -580,7 +580,7 @@ msgstr "" msgid "Add dates" msgstr "Aggiungi date" -#: src/components/routes/event/OccurrencesTab/index.tsx:524 +#: src/components/routes/event/OccurrencesTab/index.tsx:526 msgid "Add Dates" msgstr "" @@ -611,7 +611,7 @@ msgstr "Aggiungi istruzioni per i pagamenti offline (es. dettagli del bonifico b msgid "Add Location" msgstr "Aggiungi luogo" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:743 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:756 msgid "Add multiple times if you run several sessions per day." msgstr "" @@ -796,7 +796,7 @@ msgid "all" msgstr "" #: src/components/layouts/CheckIn/tabs/SearchTab.tsx:133 -#: src/components/routes/event/OccurrencesTab/index.tsx:485 +#: src/components/routes/event/OccurrencesTab/index.tsx:487 msgid "All" msgstr "" @@ -987,7 +987,7 @@ msgstr "Si è verificato un errore imprevisto." msgid "An unexpected error occurred. Please try again." msgstr "Si è verificato un errore imprevisto. Per favore riprova." -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:849 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:862 msgid "and {0} more..." msgstr "" @@ -1003,7 +1003,7 @@ msgstr "" msgid "Answers provided at checkout (e.g. meal choice)" msgstr "" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:564 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:577 msgid "Any dates you've manually customized will be kept." msgstr "" @@ -1071,7 +1071,7 @@ msgstr "" msgid "Approve Message" msgstr "Approva messaggio" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:74 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:76 msgid "April" msgstr "" @@ -1127,7 +1127,7 @@ msgstr "Sei sicuro di voler archiviare questo evento? Non sarà più visibile al 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." -#: src/components/routes/event/OccurrencesTab/index.tsx:213 +#: src/components/routes/event/OccurrencesTab/index.tsx:215 msgid "Are you sure you want to cancel {count} date(s)? Affected attendees will be notified by email." msgstr "" @@ -1159,7 +1159,7 @@ msgstr "Vuoi davvero eliminare questa configurazione? Ciò potrebbe influire sug #: src/components/modals/ManageOccurrenceModal/index.tsx:58 #: src/components/routes/event/OccurrenceDetail/index.tsx:84 -#: src/components/routes/event/OccurrencesTab/index.tsx:182 +#: src/components/routes/event/OccurrencesTab/index.tsx:184 msgid "Are you sure you want to delete this date? This action cannot be undone." msgstr "" @@ -1446,7 +1446,7 @@ msgstr "Ripartizione dell'attribuzione" msgid "Attribution Value" msgstr "Valore di attribuzione" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:78 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:80 msgid "August" msgstr "" @@ -1625,7 +1625,7 @@ msgstr "Portoghese Brasiliano" msgid "Built-in fraud protection" msgstr "" -#: src/components/routes/event/OccurrencesTab/index.tsx:515 +#: src/components/routes/event/OccurrencesTab/index.tsx:517 msgid "Bulk Edit" msgstr "" @@ -1674,11 +1674,11 @@ msgstr "Aggiungendo i pixel di tracciamento, riconosci che tu e questa piattafor msgid "By continuing, you agree to the <0>{0} Terms of Service" msgstr "Continuando, accetti i <0>{0}Termini del servizio" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:628 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:641 msgid "By day of month" msgstr "" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:629 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:642 msgid "By day of week" msgstr "" @@ -1698,7 +1698,7 @@ msgstr "Ignora commissioni applicazione" msgid "Calculation Type" msgstr "Tipo di Calcolo" -#: src/components/routes/event/OccurrencesTab/index.tsx:471 +#: src/components/routes/event/OccurrencesTab/index.tsx:473 msgid "Calendar" msgstr "" @@ -1735,7 +1735,7 @@ msgstr "" #: src/components/modals/ManageOrderModal/index.tsx:209 #: src/components/modals/PublishEventModal/index.tsx:208 #: src/components/routes/event/messages.tsx:80 -#: src/components/routes/event/OccurrencesTab/index.tsx:497 +#: src/components/routes/event/OccurrencesTab/index.tsx:499 #: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:272 #: src/components/routes/event/OccurrencesTab/OccurrenceEditModal/index.tsx:306 #: src/components/routes/event/OccurrencesTab/OccurrenceMenu.tsx:61 @@ -1748,8 +1748,8 @@ msgstr "" msgid "Cancel" msgstr "Annulla" -#: src/components/routes/event/OccurrencesTab/index.tsx:209 -#: src/components/routes/event/OccurrencesTab/index.tsx:221 +#: src/components/routes/event/OccurrencesTab/index.tsx:211 +#: src/components/routes/event/OccurrencesTab/index.tsx:223 msgid "Cancel {count} date(s)" msgstr "" @@ -1809,7 +1809,7 @@ msgstr "La cancellazione cancellerà tutti i partecipanti associati a questo ord msgid "Cancelled" msgstr "Annullato" -#: src/components/routes/event/OccurrencesTab/index.tsx:235 +#: src/components/routes/event/OccurrencesTab/index.tsx:237 msgid "Cancelling {0} date(s). This may take a moment to complete." msgstr "" @@ -1819,7 +1819,7 @@ msgstr "Impossibile eliminare la configurazione predefinita del sistema" #: src/components/forms/CapaciyAssigmentForm/index.tsx:42 #: src/components/routes/event/OccurrencesTab/OccurrenceEditModal/index.tsx:503 -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:811 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:824 msgid "Capacity" msgstr "Capacità" @@ -2154,7 +2154,7 @@ msgid "City" msgstr "Città" #: src/components/common/OccurrenceSelect/index.tsx:133 -#: src/components/routes/event/OccurrencesTab/index.tsx:503 +#: src/components/routes/event/OccurrencesTab/index.tsx:505 msgid "Clear" msgstr "" @@ -2174,7 +2174,7 @@ msgstr "Cancella Testo di Ricerca" msgid "Clearing removes any per-date override. Affected dates will fall back to the event's default location." msgstr "" -#: src/components/routes/event/OccurrencesTab/index.tsx:331 +#: src/components/routes/event/OccurrencesTab/index.tsx:333 msgid "Click to cancel" msgstr "" @@ -2182,7 +2182,7 @@ msgstr "" msgid "Click to copy" msgstr "Clicca per copiare" -#: src/components/routes/event/OccurrencesTab/index.tsx:333 +#: src/components/routes/event/OccurrencesTab/index.tsx:335 msgid "Click to reopen for new sales" msgstr "" @@ -2743,7 +2743,7 @@ msgstr "Crea Modello {0}" msgid "Create a custom widget to sell tickets on your site." msgstr "Crea un widget personalizzato per vendere biglietti sul tuo sito." -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:785 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:798 msgid "Create a fixed number" msgstr "" @@ -2879,7 +2879,7 @@ msgstr "Crea Codice Promozionale" msgid "Create Question" msgstr "Crea Domanda" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:864 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:877 msgid "Create Schedule" msgstr "" @@ -2927,6 +2927,10 @@ msgstr "Crea il tuo evento" msgid "Created" msgstr "Creato" +#: src/components/routes/event/OccurrencesTab/index.tsx:549 +msgid "Creating {0} dates. This may take a moment." +msgstr "Creazione di {0} date in corso. Potrebbe volerci un momento." + #: src/components/routes/welcome/index.tsx:472 msgid "Creating Event..." msgstr "Creazione evento..." @@ -3066,7 +3070,7 @@ msgstr "Personalizza la pagina del tuo evento" msgid "Customize your organizer page appearance" msgstr "Personalizza l'aspetto della pagina del tuo organizzatore" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:56 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:58 #: src/components/routes/product-widget/OccurrenceSelector/index.tsx:32 msgid "Daily" msgstr "" @@ -3155,7 +3159,7 @@ msgstr "" #: src/components/modals/ManageOccurrenceModal/index.tsx:61 #: src/components/routes/event/OccurrenceDetail/index.tsx:87 -#: src/components/routes/event/OccurrencesTab/index.tsx:184 +#: src/components/routes/event/OccurrencesTab/index.tsx:186 msgid "Date deleted" msgstr "" @@ -3168,7 +3172,7 @@ msgstr "" msgid "Date reactivated" msgstr "" -#: src/components/routes/event/OccurrencesTab/index.tsx:198 +#: src/components/routes/event/OccurrencesTab/index.tsx:200 msgid "Date reopened for new sales" msgstr "" @@ -3184,15 +3188,15 @@ msgstr "" msgid "Dates with sessions" msgstr "" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:93 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:95 msgid "day" msgstr "" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:659 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:672 msgid "Day" msgstr "" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:676 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:689 msgid "Day of Month" msgstr "" @@ -3200,19 +3204,19 @@ msgstr "" msgid "Day one capacity" msgstr "Capacità primo giorno" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:101 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:103 msgid "days" msgstr "" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:635 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:648 msgid "Days of Month" msgstr "" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:605 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:618 msgid "Days of Week" msgstr "" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:82 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:84 msgid "December" msgstr "" @@ -3230,7 +3234,7 @@ msgstr "Predefinito" msgid "Default attendee information collection" msgstr "Raccolta predefinita delle informazioni sui partecipanti" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:815 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:828 msgid "Default capacity per date" msgstr "" @@ -3253,7 +3257,7 @@ msgstr "elimina" #: src/components/common/QuestionsTable/index.tsx:150 #: src/components/common/TaxAndFeeList/index.tsx:81 #: src/components/routes/admin/FailedJobs/index.tsx:209 -#: src/components/routes/event/OccurrencesTab/index.tsx:500 +#: src/components/routes/event/OccurrencesTab/index.tsx:502 #: src/components/routes/event/OccurrencesTab/OccurrenceMenu.tsx:62 msgid "Delete" msgstr "Elimina" @@ -3262,7 +3266,7 @@ msgstr "Elimina" msgid "Delete \"{0}\"?" msgstr "Eliminare \"{0}\"?" -#: src/components/routes/event/OccurrencesTab/index.tsx:247 +#: src/components/routes/event/OccurrencesTab/index.tsx:249 msgid "Delete {count} selected date(s)? Dates with orders will be skipped. This cannot be undone." msgstr "" @@ -3344,7 +3348,7 @@ msgstr "Eliminare questa domanda? Questa azione non può essere annullata." msgid "Delete webhook" msgstr "Elimina webhook" -#: src/components/routes/event/OccurrencesTab/index.tsx:253 +#: src/components/routes/event/OccurrencesTab/index.tsx:255 msgid "Deleted {0} date(s)" msgstr "" @@ -3565,7 +3569,7 @@ msgstr "es. 180 (3 ore)" #: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:452 #: src/components/routes/event/OccurrencesTab/OccurrenceEditModal/index.tsx:450 -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:714 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:727 msgid "e.g. Morning Session" msgstr "" @@ -3724,7 +3728,7 @@ msgstr "Modifica webhook" msgid "Edit Webhook" msgstr "Modifica Webhook" -#: src/components/routes/event/OccurrencesTab/index.tsx:306 +#: src/components/routes/event/OccurrencesTab/index.tsx:308 msgid "Edited" msgstr "" @@ -3913,7 +3917,7 @@ msgstr "Abilita lista d'attesa" msgid "Enabled" msgstr "Abilitato" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:704 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:717 msgid "End" msgstr "" @@ -3934,7 +3938,7 @@ msgstr "Data e ora di fine (opzionale)" msgid "End date must be after start date" msgstr "La data di fine deve essere successiva alla data di inizio" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:771 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:784 msgid "End on a date" msgstr "" @@ -4409,7 +4413,7 @@ msgstr "Impossibile annullare il partecipante" msgid "Failed to cancel date" msgstr "" -#: src/components/routes/event/OccurrencesTab/index.tsx:239 +#: src/components/routes/event/OccurrencesTab/index.tsx:241 msgid "Failed to cancel dates" msgstr "" @@ -4429,10 +4433,14 @@ msgstr "Creazione affiliato non riuscita" msgid "Failed to create configuration" msgstr "Impossibile creare la configurazione" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:530 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:543 msgid "Failed to create schedule" msgstr "" +#: src/hooks/useOccurrenceGenerationPolling.ts:44 +msgid "Failed to create schedule. Please try again." +msgstr "Impossibile creare il calendario. Riprova." + #: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:192 #: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:195 msgid "Failed to create template" @@ -4444,7 +4452,7 @@ msgstr "Impossibile eliminare la configurazione" #: src/components/modals/ManageOccurrenceModal/index.tsx:64 #: src/components/routes/event/OccurrenceDetail/index.tsx:90 -#: src/components/routes/event/OccurrencesTab/index.tsx:185 +#: src/components/routes/event/OccurrencesTab/index.tsx:187 msgid "Failed to delete date" msgstr "" @@ -4452,7 +4460,7 @@ msgstr "" msgid "Failed to delete date. It may have existing orders." msgstr "" -#: src/components/routes/event/OccurrencesTab/index.tsx:256 +#: src/components/routes/event/OccurrencesTab/index.tsx:258 msgid "Failed to delete dates" msgstr "" @@ -4540,7 +4548,7 @@ msgstr "Impossibile rimuovere dalla lista d'attesa" msgid "Failed to remove override" msgstr "" -#: src/components/routes/event/OccurrencesTab/index.tsx:199 +#: src/components/routes/event/OccurrencesTab/index.tsx:201 msgid "Failed to reopen date" msgstr "" @@ -4677,7 +4685,7 @@ msgstr "" msgid "Fast payouts to your bank" msgstr "" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:72 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:74 msgid "February" msgstr "" @@ -4769,7 +4777,7 @@ msgstr "" msgid "Finish setup" msgstr "" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:63 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:65 msgid "First" msgstr "" @@ -4882,7 +4890,7 @@ msgstr "Testo del Piè di Pagina" msgid "Forgot password?" msgstr "Password dimenticata?" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:66 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:68 msgid "Fourth" msgstr "" @@ -4909,11 +4917,11 @@ msgstr "Prodotto gratuito, nessuna informazione di pagamento richiesta" msgid "French" msgstr "Francese" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:586 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:599 msgid "Frequency" msgstr "" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:50 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:52 msgid "Fri" msgstr "" @@ -5004,7 +5012,7 @@ msgstr "GitHub" #: src/components/routes/event/OccurrenceDetail/index.tsx:72 #: src/components/routes/event/OccurrencesTab/cancelOccurrenceDialog.tsx:49 -#: src/components/routes/event/OccurrencesTab/index.tsx:221 +#: src/components/routes/event/OccurrencesTab/index.tsx:223 #: src/components/routes/event/OccurrencesTab/OccurrenceEditModal/index.tsx:339 #: src/components/routes/event/OccurrencesTab/OccurrenceEditModal/index.tsx:363 msgid "Go Back" @@ -5271,7 +5279,7 @@ msgstr "Come viene applicato lo sconto?" msgid "How long a customer has to complete their purchase after receiving an offer. Leave empty for no timeout." msgstr "Quanto tempo ha un cliente per completare l'acquisto dopo aver ricevuto un'offerta. Lascia vuoto per nessun limite di tempo." -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:750 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:763 msgid "How long does the schedule run?" msgstr "" @@ -5283,7 +5291,7 @@ msgstr "Quanti minuti ha il cliente per completare il proprio ordine. Consigliam msgid "How many times can this code be used?" msgstr "Quante volte può essere utilizzato questo codice?" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:581 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:594 msgid "How often?" msgstr "" @@ -5589,7 +5597,7 @@ msgstr "articolo(i)" msgid "Items" msgstr "Articoli" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:71 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:73 msgid "January" msgstr "" @@ -5640,11 +5648,11 @@ msgstr "Iscriviti alla lista d'attesa per {productDisplayName}" msgid "Joined" msgstr "Iscritto" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:77 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:79 msgid "July" msgstr "" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:76 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:78 msgid "June" msgstr "" @@ -5670,7 +5678,7 @@ msgstr "" #: src/components/forms/ProductForm/index.tsx:108 #: src/components/routes/event/OccurrencesTab/OccurrenceEditModal/index.tsx:449 -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:711 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:724 #: src/components/routes/event/Reports/OccurrenceSummaryReport/index.tsx:45 msgid "Label" msgstr "Etichetta" @@ -5685,7 +5693,7 @@ msgstr "" msgid "Language" msgstr "Lingua" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:67 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:69 msgid "Last" msgstr "" @@ -5794,7 +5802,7 @@ msgid "Leave blank to use the default word \"Invoice\"" msgstr "Lascia vuoto per utilizzare la parola predefinita \"Fattura\"" #: src/components/routes/event/OccurrencesTab/OccurrenceEditModal/index.tsx:507 -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:816 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:829 msgid "Leave empty for unlimited" msgstr "" @@ -5834,7 +5842,7 @@ msgstr "LinkedIn" msgid "Links Allowed" msgstr "Link consentiti" -#: src/components/routes/event/OccurrencesTab/index.tsx:470 +#: src/components/routes/event/OccurrencesTab/index.tsx:472 msgid "List" msgstr "" @@ -6003,7 +6011,7 @@ msgstr "" msgid "Manage attendee" msgstr "Gestisci partecipante" -#: src/components/routes/event/OccurrencesTab/index.tsx:460 +#: src/components/routes/event/OccurrencesTab/index.tsx:462 msgid "Manage dates and times for your recurring event" msgstr "" @@ -6074,7 +6082,7 @@ msgstr "Aggiungi manualmente un Partecipante" msgid "Manually Add Attendee" msgstr "Aggiungi Manualmente Partecipante" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:73 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:75 msgid "March" msgstr "" @@ -6098,7 +6106,7 @@ msgstr "Max destinatari / messaggio" msgid "Maximum Per Order" msgstr "Massimo Per Ordine" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:75 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:77 msgid "May" msgstr "" @@ -6214,7 +6222,7 @@ msgstr "Impostazioni Varie" msgid "Mode" msgstr "" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:46 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:48 msgid "Mon" msgstr "" @@ -6230,24 +6238,24 @@ msgstr "I valori monetari sono totali approssimativi in tutte le valute" msgid "Monitor and manage failed background jobs" msgstr "Monitora e gestisci i lavori in background falliti" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:95 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:97 msgid "month" msgstr "" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:671 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:684 msgid "Month" msgstr "Mese" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:58 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:60 #: src/components/routes/product-widget/OccurrenceSelector/index.tsx:41 msgid "Monthly" msgstr "" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:624 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:637 msgid "Monthly Pattern" msgstr "" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:103 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:105 msgid "months" msgstr "" @@ -6516,7 +6524,7 @@ msgstr "" msgid "No dates match the current filters." msgstr "" -#: src/components/routes/event/OccurrencesTab/index.tsx:570 +#: src/components/routes/event/OccurrencesTab/index.tsx:580 msgid "No dates match your filters" msgstr "" @@ -6529,7 +6537,7 @@ msgstr "" msgid "No dates scheduled" msgstr "Nessuna data in programma" -#: src/components/routes/event/OccurrencesTab/index.tsx:570 +#: src/components/routes/event/OccurrencesTab/index.tsx:580 msgid "No dates scheduled yet" msgstr "" @@ -6820,11 +6828,11 @@ msgstr "" msgid "Notify organizer of new orders" msgstr "Notifica all'organizzatore i nuovi ordini" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:81 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:83 msgid "November" msgstr "" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:800 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:813 msgid "Number of dates to create" msgstr "" @@ -6849,7 +6857,7 @@ msgid "Occurrence Cancelled" msgstr "" #: src/components/layouts/Event/index.tsx:113 -#: src/components/routes/event/OccurrencesTab/index.tsx:461 +#: src/components/routes/event/OccurrencesTab/index.tsx:463 msgid "Occurrence Schedule" msgstr "" @@ -6871,7 +6879,7 @@ msgstr "" msgid "Occurrences can be configured after creation" msgstr "" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:80 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:82 msgid "October" msgstr "" @@ -6965,7 +6973,7 @@ msgstr "In Corso" #: src/components/common/EventCard/index.tsx:103 #: src/components/layouts/OrganizerHomepage/EventCard/index.tsx:49 -#: src/components/routes/event/OccurrencesTab/index.tsx:316 +#: src/components/routes/event/OccurrencesTab/index.tsx:318 #: src/components/routes/event/OccurrencesTab/OccurrenceEditModal/index.tsx:473 #: src/components/routes/my-tickets/index.tsx:56 #: src/components/routes/product-widget/OccurrenceSelector/index.tsx:122 @@ -7080,7 +7088,7 @@ msgstr "Opzioni" msgid "or" msgstr "o" -#: src/components/routes/event/OccurrencesTab/index.tsx:593 +#: src/components/routes/event/OccurrencesTab/index.tsx:603 msgid "or add a single date" msgstr "" @@ -7088,7 +7096,7 @@ msgstr "" msgid "Or enable offline payments and disable Stripe" msgstr "Oppure abilita i pagamenti offline e disabilita Stripe" -#: src/components/routes/event/OccurrencesTab/index.tsx:413 +#: src/components/routes/event/OccurrencesTab/index.tsx:415 msgid "order" msgstr "" @@ -7250,7 +7258,7 @@ msgstr "Ordine aggiornato con successo" msgid "Order was cancelled" msgstr "L'ordine è stato annullato" -#: src/components/routes/event/OccurrencesTab/index.tsx:413 +#: src/components/routes/event/OccurrencesTab/index.tsx:415 #: src/components/routes/event/orders.tsx:197 msgid "orders" msgstr "" @@ -7503,7 +7511,7 @@ msgid "Passwords are not the same" msgstr "Le password non sono uguali" #: src/components/layouts/OrganizerHomepage/index.tsx:291 -#: src/components/routes/event/OccurrencesTab/index.tsx:484 +#: src/components/routes/event/OccurrencesTab/index.tsx:486 #: src/components/routes/organizer/Reports/EventsPerformanceReport/index.tsx:30 msgid "Past" msgstr "Passato" @@ -7707,15 +7715,15 @@ msgstr "Informazioni personali" msgid "Phone" msgstr "Telefono" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:372 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:379 msgid "Pick an end date" msgstr "" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:380 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:387 msgid "Pick at least one day of the month" msgstr "" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:369 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:376 msgid "Pick at least one day of the week" msgstr "" @@ -7765,7 +7773,7 @@ msgstr "Ricavi della piattaforma" msgid "Please add at least one option" msgstr "Aggiungi almeno un'opzione" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:527 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:540 #: src/hooks/useFormErrorResponseHandler.tsx:18 msgid "Please check the provided information is correct" msgstr "Verifica che le informazioni fornite siano corrette" @@ -7895,7 +7903,7 @@ msgstr "Eventi popolari (Ultimi 14 giorni)" msgid "Portuguese" msgstr "Portoghese" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:654 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:667 msgid "Position" msgstr "" @@ -8385,7 +8393,7 @@ msgstr "Account di riferimento" msgid "Refresh Preview" msgstr "Aggiorna Anteprima" -#: src/components/routes/event/OccurrencesTab/index.tsx:216 +#: src/components/routes/event/OccurrencesTab/index.tsx:218 msgid "Refund all orders for these dates" msgstr "" @@ -8494,11 +8502,11 @@ msgstr "Rimuove completamente le date e gli orari esauriti dalla pagina dell'eve msgid "Reopen for new sales" msgstr "" -#: src/components/routes/event/OccurrencesTab/index.tsx:192 +#: src/components/routes/event/OccurrencesTab/index.tsx:194 msgid "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." msgstr "" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:591 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:604 msgid "Repeat every" msgstr "" @@ -8699,7 +8707,7 @@ msgstr "Revoca l'offerta" msgid "Role" msgstr "Ruolo" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:772 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:785 msgid "Run until a specific date" msgstr "" @@ -8786,7 +8794,7 @@ msgstr "Prezzo del biglietto di esempio" msgid "Sample Venue" msgstr "Luogo di Esempio" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:51 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:53 msgid "Sat" msgstr "" @@ -8836,7 +8844,7 @@ msgstr "" msgid "Save Organizer" msgstr "Salva Organizzatore" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:864 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:877 msgid "Save Schedule" msgstr "" @@ -8900,11 +8908,12 @@ msgstr "" msgid "Schedule added" msgstr "" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:520 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:530 +#: src/hooks/useOccurrenceGenerationPolling.ts:36 msgid "Schedule created successfully" msgstr "" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:793 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:806 msgid "Schedule ends on" msgstr "" @@ -8916,7 +8925,7 @@ msgstr "Programma per dopo" msgid "Schedule Message" msgstr "Programma messaggio" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:755 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:768 msgid "Schedule starts on" msgstr "" @@ -9039,7 +9048,7 @@ msgstr "Cerca..." msgid "Seasonal" msgstr "" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:64 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:66 msgid "Second" msgstr "" @@ -9215,7 +9224,7 @@ msgstr "Seleziona quali eventi attiveranno questo webhook" msgid "Select..." msgstr "Seleziona..." -#: src/components/routes/event/OccurrencesTab/index.tsx:495 +#: src/components/routes/event/OccurrencesTab/index.tsx:497 msgid "selected" msgstr "" @@ -9345,7 +9354,7 @@ msgstr "Impostazioni SEO" msgid "SEO Title" msgstr "Titolo SEO" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:79 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:81 msgid "September" msgstr "" @@ -9373,7 +9382,7 @@ msgstr "Imposta le impostazioni predefinite per i nuovi eventi creati con questo msgid "Set how long each date lasts" msgstr "" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:784 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:797 msgid "Set number of dates" msgstr "" @@ -9393,7 +9402,7 @@ msgstr "Imposta il numero iniziale per la numerazione delle fatture. Questo non msgid "Set to unlimited (remove limit)" msgstr "" -#: src/components/routes/event/OccurrencesTab/index.tsx:575 +#: src/components/routes/event/OccurrencesTab/index.tsx:585 msgid "Set up a recurring schedule to automatically create dates, or add them one at a time." msgstr "" @@ -9410,8 +9419,8 @@ msgstr "" msgid "Set up schedule" msgstr "" -#: src/components/routes/event/OccurrencesTab/index.tsx:532 -#: src/components/routes/event/OccurrencesTab/index.tsx:586 +#: src/components/routes/event/OccurrencesTab/index.tsx:535 +#: src/components/routes/event/OccurrencesTab/index.tsx:596 msgid "Set Up Schedule" msgstr "" @@ -9427,7 +9436,7 @@ msgstr "Configura la tua organizzazione" msgid "Set up your schedule" msgstr "" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:569 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:582 msgid "Set Up Your Schedule" msgstr "" @@ -9564,7 +9573,7 @@ msgstr "Mostra tasse e commissioni separatamente" msgid "Showing {0} of {totalRows} records" msgstr "Visualizzazione di {0} record su {totalRows}" -#: src/components/routes/event/OccurrencesTab/index.tsx:614 +#: src/components/routes/event/OccurrencesTab/index.tsx:624 msgid "Showing {0}–{1} of {2}" msgstr "" @@ -9645,7 +9654,7 @@ msgstr "Link social e sito web" #: src/components/common/ProductsTable/SortableProduct/index.tsx:387 #: src/components/modals/ManageOccurrenceModal/index.tsx:186 -#: src/components/routes/event/OccurrencesTab/index.tsx:369 +#: src/components/routes/event/OccurrencesTab/index.tsx:371 msgid "Sold" msgstr "Venduto" @@ -9753,7 +9762,7 @@ msgstr "" msgid "Standard product with a fixed price" msgstr "Prodotto standard con prezzo fisso" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:696 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:709 msgid "Start" msgstr "" @@ -9846,7 +9855,7 @@ msgstr "" #: src/components/routes/admin/Messages/index.tsx:120 #: src/components/routes/admin/Messages/index.tsx:167 #: src/components/routes/admin/Messages/index.tsx:294 -#: src/components/routes/event/OccurrencesTab/index.tsx:326 +#: src/components/routes/event/OccurrencesTab/index.tsx:328 #: src/components/routes/event/Reports/OccurrenceSummaryReport/index.tsx:51 #: src/components/routes/event/Reports/PromoCodesReport/index.tsx:88 #: src/components/routes/organizer/Reports/EventsPerformanceReport/index.tsx:62 @@ -10104,7 +10113,7 @@ msgstr "Festival musicale estivo {0}" msgid "Summer Music Festival 2025" msgstr "Festival Musicale Estivo 2025" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:52 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:54 msgid "Sun" msgstr "" @@ -10231,7 +10240,7 @@ msgstr "Parlaci del tuo evento" msgid "Tell us about your organization. This information will be displayed on your event pages." msgstr "Parlaci della tua organizzazione. Queste informazioni saranno visualizzate sulle pagine dei tuoi eventi." -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:573 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:586 msgid "Tell us how often your event repeats and we'll create all the dates for you." msgstr "" @@ -10325,7 +10334,7 @@ msgstr "L'indirizzo e-mail è stato modificato. Il partecipante riceverà un nuo msgid "The event you're looking for is not available at the moment. It may have been removed, expired, or the URL might be incorrect." msgstr "L'evento che stai cercando non è disponibile al momento. Potrebbe essere stato rimosso, scaduto o l'URL potrebbe essere errato." -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:756 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:769 msgid "The first date this schedule will generate from." msgstr "" @@ -10345,7 +10354,7 @@ msgstr "Il link che stai cercando di accedere è scaduto o non è più valido. C msgid "The link you clicked is invalid." msgstr "Il link che hai cliccato non è valido." -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:840 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:853 msgid "The maximum is {MAX_PREVIEW} sessions. Please reduce the date range, frequency, or number of sessions per day." msgstr "" @@ -10481,7 +10490,7 @@ msgstr "Questi modelli verranno utilizzati come predefiniti per tutti gli eventi 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." -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:65 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:67 msgid "Third" msgstr "" @@ -10744,7 +10753,7 @@ msgstr "Questo non sarà visibile ai clienti, ma ti aiuta a identificare l'affil msgid "Throughput" msgstr "" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:49 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:51 msgid "Thu" msgstr "" @@ -10881,7 +10890,7 @@ msgstr "I prodotti a livelli ti permettono di offrire più opzioni di prezzo per msgid "TikTok" msgstr "TikTok" -#: src/components/routes/event/OccurrencesTab/index.tsx:290 +#: src/components/routes/event/OccurrencesTab/index.tsx:292 msgid "Time" msgstr "" @@ -10912,7 +10921,7 @@ msgstr "Volte Utilizzato" msgid "Timezone" msgstr "Fuso orario" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:702 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:715 msgid "to" msgstr "" @@ -11056,7 +11065,7 @@ msgstr "Monitoraggio & Analytics" msgid "Try a different search term or filter" msgstr "" -#: src/components/routes/event/OccurrencesTab/index.tsx:574 +#: src/components/routes/event/OccurrencesTab/index.tsx:584 msgid "Try adjusting your filters to see more dates." msgstr "" @@ -11069,7 +11078,7 @@ msgstr "Prova un'altra email" msgid "Try Hi.Events Free" msgstr "Prova Hi.Events Gratis" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:47 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:49 msgid "Tue" msgstr "" @@ -11232,7 +11241,7 @@ msgstr "Non attendibile" #: src/components/common/EventsDashboardStatusButtons/index.tsx:20 #: src/components/common/EventStatusBadge/index.tsx:16 #: src/components/layouts/OrganizerHomepage/index.tsx:285 -#: src/components/routes/event/OccurrencesTab/index.tsx:483 +#: src/components/routes/event/OccurrencesTab/index.tsx:485 #: src/components/routes/organizer/Reports/EventsPerformanceReport/index.tsx:33 msgid "Upcoming" msgstr "In Arrivo" @@ -11880,7 +11889,7 @@ msgstr "Webhooks" msgid "Website" msgstr "Sito web" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:48 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:50 msgid "Wed" msgstr "" @@ -11888,16 +11897,16 @@ msgstr "" msgid "Wednesday" msgstr "" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:94 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:96 msgid "week" msgstr "" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:57 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:59 #: src/components/routes/product-widget/OccurrenceSelector/index.tsx:35 msgid "Weekly" msgstr "" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:102 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:104 msgid "weeks" msgstr "" @@ -11953,7 +11962,7 @@ msgstr "A quali prodotti dovrebbe applicarsi questa capacità?" msgid "What time will you be arriving?" msgstr "A che ora arriverai?" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:688 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:701 msgid "What time?" msgstr "" @@ -12140,7 +12149,7 @@ msgstr "Scrivi qui il tuo messaggio..." msgid "X (Twitter)" msgstr "X (Twitter)" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:96 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:98 msgid "year" msgstr "" @@ -12150,12 +12159,12 @@ msgstr "" msgid "Year to date" msgstr "Da inizio anno" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:59 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:61 #: src/components/routes/product-widget/OccurrenceSelector/index.tsx:43 msgid "Yearly" msgstr "" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:104 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:106 msgid "years" msgstr "" @@ -12200,7 +12209,7 @@ msgstr "Puoi configurare commissioni di servizio aggiuntive e tasse nelle impost msgid "You can create a promo code which targets this product on the" msgstr "Puoi creare un codice promo che ha come target questo prodotto nella" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:823 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:836 msgid "You can override this for individual dates later." msgstr "" diff --git a/frontend/src/locales/nl.js b/frontend/src/locales/nl.js index 6ebc2d10e3..9107f8eff0 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\":\"123 Main Street\",\"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\":\"Are you sure you want to make this event public? This will make the event visible to the public\",\"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\":\"Attendee Notes\",\"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\":\"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\":\"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\":\"Je evenementpagina aanpassen\",\"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\":\"Dismiss\",\"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\":\"Event 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\":\"No attendees have been added to this order.\",\"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\":\"No product associated with this attendee.\",\"Ya1JhR\":\"Geen producten beschikbaar in deze categorie.\",\"FTfObB\":\"Nog geen producten\",\"+Y976X\":\"Geen promotiecodes om te tonen\",\"MAavyl\":\"No questions answered by this attendee.\",\"SnlQeq\":\"No questions have been asked for this order.\",\"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 event\",\"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\":\"Order #\",\"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\":\"Order Notes\",\"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\":\"Mogelijk gemaakt 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 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\":\"View\",\"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\":\"(none)\",\"xYxQCZ\":[[\"0\"],\" \",[\"1\"]],\"lAOy2r\":[[\"0\"],\" \",[\"1\"],\" is al ingecheckt\"],\"3beCx0\":[[\"0\"],\" <0>checked in\"],\"S4PqS9\":[[\"0\"],\" Actieve webhooks\"],\"6MIiOI\":[\"nog \",[\"0\"]],\"COnw8D\":[[\"0\"],\" logo\"],\"xG9N0H\":[[\"0\"],\" of \",[\"1\"],\" seats are taken.\"],\"B7pZfX\":[[\"0\"],\" organisatoren\"],\"/HkCs4\":[[\"0\"],\" tickets\"],\"30bTiU\":[[\"activeCount\"],\" enabled\"],\"jTs4am\":[[\"appName\"],\" logo\"],\"gbJOk9\":[[\"attendeeCount\"],\" attendees are registered for this session.\"],\"TjbIUI\":[[\"availableCount\"],\" van \",[\"totalCount\"],\" beschikbaar\"],\"PSChHo\":[[\"capacity\"],\" plekken over\"],\"lzQ8/M\":[[\"checkedIn\"],\" / \",[\"total\"],\" checked in\"],\"RZ0JX3\":[[\"chipTime\"],\", uitverkocht\"],\"M4KnFs\":[[\"chipTime\"],\", Uitverkocht, wachtlijst beschikbaar\"],\"SeyN12\":[[\"completedCount\"],\" of \",[\"totalCount\"],\" steps complete\"],\"f2rhaD\":[[\"diffHr\"],\"h ago\"],\"NRSLBe\":[[\"diffMin\"],\"m ago\"],\"iYfwJE\":[[\"diffSec\"],\"s ago\"],\"OJnhhX\":[[\"eventCount\"],\" evenementen\"],\"mhZbzw\":[[\"loadedAffectedAttendees\"],\" attendees are registered across the affected sessions.\"],\"RBuxIl\":[[\"productCount\"],\" ticket types configured\"],\"VFLd0I\":[[\"slotCount\"],\" times available\"],\"3IEF7U\":[[\"totalCount\"],\" tickettypen\"],\"0cLzoF\":[[\"totalOccurrences\"],\" dates\"],\"AEGc4t\":[[\"totalOccurrences\"],\" sessions across \",[\"0\"],\" dates (\",[\"1\",\"plural\",{\"one\":[\"#\",\" session\"],\"other\":[\"#\",\" sessions\"]}],\" per day)\"],\"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.\",\"Il5Uid\":\"<0>Dit is het totale beschikbare aantal voor alle datums in je schema samen — geen limiet per datum. Om het aantal deelnemers per datum te beperken, stel je een capaciteit in op de <1>pagina Datumschema.\",\"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 attendee is registered across the affected sessions.\",\"qOyE2U\":\"1 attendee is registered for this session.\",\"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\",\"y2Jh0m\":\"1 time available\",\"cGtUz6\":\"1 week voor het evenement\",\"HR/cvw\":\"Voorbeeldstraat 123\",\"dgKxZ5\":\"135+ currencies & 40+ payment methods\",\"kMU5aM\":\"Een annuleringsmelding is verzonden naar\",\"o++0qa\":\"a change in duration\",\"WuWSX5\":\"A few quick steps and you're ready to start selling.\",\"RQ5kDd\":\"Een bericht dat wordt weergegeven wanneer er geen producten in deze categorie zijn.\",\"V53XzQ\":\"Er is een nieuwe verificatiecode naar je e-mail verzonden\",\"sr2Je0\":\"a shift in start/end times\",\"/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\":\"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\":\"Voeg aangepaste vragen toe om extra informatie te verzamelen tijdens het afrekenen\",\"Z/dcxc\":\"Add Date\",\"QeupRg\":\"Data toevoegen\",\"Q219NT\":\"Add Dates\",\"yjB5VC\":\"Add dates and times for your recurring event\",\"Z8idyM\":\"Add details\",\"wpirGs\":\"Add event details\",\"VX6WUv\":\"Locatie toevoegen\",\"GCQlV2\":\"Add multiple times if you run several sessions per day.\",\"7JF9w9\":\"Vraag toevoegen\",\"NLbIb6\":\"Add this attendee anyway (override capacity)\",\"6PNlRV\":\"Voeg dit evenement toe aan je agenda\",\"BGD9Yt\":\"Tickets toevoegen\",\"uIv4Op\":\"Voeg trackingpixels toe aan uw openbare evenementpagina's en organisator-homepage. Een cookietoestemmingsbanner wordt 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\":\"Affiliate program\",\"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.\",\"3e31kI\":\"After your event is created, you can choose how often it repeats from the dashboard.\",\"z7GAMJ\":\"all\",\"N40H+G\":\"All\",\"7rLTkE\":\"Alle gearchiveerde evenementen\",\"gKq1fa\":\"Alle deelnemers\",\"63gRoO\":\"All attendees of the selected sessions\",\"uWxIoH\":\"All attendees of this occurrence\",\"pMLul+\":\"Alle valuta's\",\"sgUdRZ\":\"All dates\",\"e4q4uO\":\"All Dates\",\"ZS/D7f\":\"Alle afgelopen evenementen\",\"QsYjci\":\"Alle evenementen\",\"31KB8w\":\"Alle mislukte taken verwijderd\",\"D2g7C7\":\"Alle taken in wachtrij voor opnieuw proberen\",\"B4RFBk\":\"All matching dates\",\"F1/VgK\":\"All occurrences\",\"OpWjMq\":\"All Occurrences\",\"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.\",\"VZdky1\":\"Kopers toestaan hun gegevens naar alle deelnemers te kopiëren\",\"F3mW5G\":\"Klanten toestaan zich aan te melden voor een wachtlijst wanneer dit product is uitverkocht\",\"4CMO/q\":\"Klanten toestaan zich aan te melden voor een wachtlijst wanneer dit product is uitverkocht. Klanten melden zich aan voor de wachtlijst voor een specifieke datum.\",\"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\":\"Already in\",\"/H326L\":\"Al terugbetaald\",\"USEpOK\":\"Already use Stripe on another organizer? Reuse that connection.\",\"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.\",\"OPFdAM\":\"Een optionele beschrijving van deze categorie die op de evenementpagina wordt weergegeven.\",\"eusccx\":\"Een optioneel bericht om weer te geven op het uitgelichte product, bijv. \\\"Snel uitverkocht 🔥\\\" of \\\"Beste waarde\\\"\",\"5GJuNp\":[\"and \",[\"0\"],\" more...\"],\"QNrkms\":\"Antwoord succesvol bijgewerkt.\",\"+qygei\":\"Answers\",\"GK7Lnt\":\"Answers provided at checkout (e.g. meal choice)\",\"lE8PgT\":\"Any dates you've manually customized will be kept.\",\"jVoYha\":[\"toegepast — \",[\"0\"],\" korting op je bestelling\"],\"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\":\"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\":[\"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\":\"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/\":\"Are you sure you want to delete this date? This action cannot be undone.\",\"RiF/yT\":\"Are you sure you want to delete this image?\",\"b3+Qku\":\"Are you sure you want to delete this tax or fee? It will no longer be applied to new orders.\",\"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\":\"Are you sure you want to permanently delete this date? This cannot be undone.\",\"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?\",\"b7tkGp\":\"Are you sure you want to revoke this invitation?\",\"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\":\"Assign plan\",\"xdiER7\":\"Toegewezen niveau\",\"F2rX0R\":\"Er moet minstens één evenement type worden geselecteerd\",\"Z44eZS\":\"At least one product must stay available for this date. To make the date inaccessible, cancel it from the schedule instead.\",\"BCmibk\":\"Pogingen\",\"6PecK3\":\"Aanwezigheid en incheckpercentages voor alle evenementen\",\"K2tp3v\":\"attendee\",\"AJ4rvK\":\"Deelnemer geannuleerd\",\"qvylEK\":\"Deelnemer Gemaakt\",\"Aspq3b\":\"Verzameling deelnemergegevens\",\"fpb0rX\":\"Deelnemergegevens gekopieerd van bestelling\",\"94aQMU\":\"Deelnemersinformatie\",\"KkrBiR\":\"Verzameling deelnemersinformatie\",\"sjPjOg\":\"Attendee notes\",\"cosfD8\":\"Deelnemersstatus\",\"D2qlBU\":\"Deelnemer bijgewerkt\",\"22BOve\":\"Deelnemer succesvol bijgewerkt\",\"x8Vnvf\":\"Ticket van deelnemer niet opgenomen in deze lijst\",\"/Ywywr\":\"attendees\",\"zLRobu\":\"attendees checked in\",\"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/\":\"August\",\"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, kunt u de wachtlijst handmatig verwerken vanaf de Wachtlijstpagina.\",\"csDS2L\":\"Beschikbaar\",\"Xp+ywP\":\"Beschikbaar zodra de betaling is voltooid\",\"dwDH1K\":[\"Available times on \",[\"dayName\"]],\"clF06r\":\"Beschikbaar voor terugbetaling\",\"NB5+UG\":\"Beschikbare Tokens\",\"L+wGOG\":\"Awaiting\",\"qcw2OD\":\"Awaiting pay\",\"kNmmvE\":\"Awesome Events B.V.\",\"TeSaQO\":\"Terug naar Accounts\",\"kYqM1A\":\"Terug naar evenement\",\"s5QRF3\":\"Terug naar berichten\",\"td/bh+\":\"Terug naar rapporten\",\"nsm7BA\":\"Terug naar zoeken\",\"imjKVx\":\"Bank account connected\",\"D9LTCH\":\"Base Price\",\"hviJef\":\"Based on the global sale period above, not per date\",\"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\":\"Built-in fraud protection\",\"cr7kGH\":\"Bulk Edit\",\"1Fbd6n\":\"Bulk Edit Dates\",\"Eq6Tu9\":\"Bulk update failed.\",\"9N+p+g\":\"Zakelijk\",\"SWnN1L\":\"Business address\",\"kQekXw\":\"Business name\",\"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, erkent u dat u en dit platform gezamenlijke verwerkingsverantwoordelijken zijn van de verzamelde gegevens. U bent verantwoordelijk voor het waarborgen van een rechtmatige grondslag voor deze verwerking onder toepasselijke privacywetgeving (AVG, CCPA, enz.).\",\"DFqasq\":[\"Door verder te gaan, gaat u akkoord met de <0>\",[\"0\"],\" Servicevoorwaarden\"],\"wVSa+U\":\"By day of month\",\"0MnNgi\":\"By day of week\",\"CetOZE\":\"By ticket type\",\"lFdbRS\":\"Applicatiekosten omzeilen\",\"AjVXBS\":\"Calendar\",\"2VLZwd\":\"Call-to-Action Knop\",\"rT2cV+\":\"Camera\",\"7hYa9y\":\"Camera permission was denied. <0>Request permission again, or grant this page camera access in your browser settings.\",\"D02dD9\":\"Campagne\",\"RRPA79\":\"Can't check in\",\"OcVwAd\":[\"Cancel \",[\"count\"],\" date(s)\"],\"H4nE+E\":\"Alle producten annuleren en terugzetten in de beschikbare pool\",\"Py78q9\":\"Cancel Date\",\"tOXAdc\":\"Annuleren zal alle deelnemers geassocieerd met deze bestelling annuleren en de tickets terugzetten in de beschikbare pool.\",\"FPpqc7\":[\"Cancelling \",[\"0\"],\" date(s). This may take a moment to complete.\"],\"01sEfm\":\"Kan de standaardsysteemconfiguratie niet verwijderen\",\"VsM1HH\":\"Capaciteitstoewijzingen\",\"9bIMVF\":\"Capacity management\",\"H7K8og\":\"Capacity must be 0 or greater\",\"nzao08\":\"capacity updates\",\"4cp9NP\":\"Capacity Used\",\"K7tIrx\":\"Categorie\",\"DRK3Bq\":\"Category deleted successfully\",\"o+XJ9D\":\"Wijzigen\",\"kJkjoB\":\"Change duration\",\"J0KExZ\":\"Change the attendee limit\",\"ssospy\":\"Change time\",\"CIHJJf\":\"Wachtlijstinstellingen wijzigen\",\"B5icLR\":[\"Changed duration for \",[\"count\"],\" date(s)\"],\"Kb+0BT\":\"Charges\",\"2tbLdK\":\"Liefdadigheid\",\"BPWGKn\":\"Check in\",\"6uFFoY\":\"Check out\",\"FjAlwK\":[\"Check out this event: \",[\"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 for \",[\"0\"],\" was undone\"],\"9s/wrQ\":\"Check-in history\",\"Wwztk4\":\"Check-In List\",\"9gPPUY\":\"Check-In Lijst Aangemaakt!\",\"dwjiJt\":\"Check-in list info\",\"7od0PV\":\"check-in lists\",\"f2vU9t\":\"Inchecklijsten\",\"XprdTn\":\"Check-in navigation\",\"5tV1in\":\"Check-in progress\",\"SHJwyq\":\"Incheckpercentage\",\"qCqdg6\":\"Incheck Status\",\"cKj6OE\":\"Incheckoverzicht\",\"7B5M35\":\"Check-Ins\",\"VrmydS\":\"Checked in\",\"DM4gBB\":\"Chinees (Traditioneel)\",\"p8Jvp4\":\"Choose a configuration\",\"ElShBO\":\"Choose a different action\",\"pHEhf+\":\"Kies een lettertype dat past bij je merk. Lettertypen worden zelf gehost via Bunny Fonts.\",\"Zok1Gx\":\"Choose an organizer\",\"pkk46Q\":\"Kies een organisator\",\"Ag32+c\":\"Choose another date\",\"Crr3pG\":\"Kies agenda\",\"Z38ZJu\":\"Kies hoe de evenementdatum op het ticket wordt weergegeven\",\"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\":\"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\":\"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\":\"complete\",\"bUQMpb\":\"Complete Stripe setup\",\"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\":\"Configuration assigned\",\"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\":\"Configure which products are available for this occurrence and optionally adjust pricing.\",\"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\",\"/K4Vqr\":\"Verbind Stripe om betalingen te accepteren\",\"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\":\"Verbindingsgegevens zijn verplicht voor online evenementen\",\"jfC/xh\":\"Contact\",\"LOFgda\":[\"Contact \",[\"0\"]],\"41BQ3k\":\"Contact e-mail\",\"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\",\"s30OcA\":\"Bepaal hoe datums en tijden op de evenementpagina worden weergegeven\",\"p2FRHj\":\"Bepaal hoe platformkosten worden behandeld voor dit evenement\",\"NqfabH\":\"Control who gets in for this date\",\"fmYxZx\":\"Control who gets in, and when\",\"1JnTgU\":\"Gekopieerd van boven\",\"FxVG/l\":\"Gekopieerd naar klembord\",\"PiH3UR\":\"Gekopieerd!\",\"4i7smN\":\"Copy account ID\",\"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\":\"Kon locatie niet verwijderen\",\"vkiDx2\":\"Could not prepare the bulk update.\",\"KOavaU\":\"Kon adresgegevens niet ophalen\",\"/lq4oO\":\"Could not save date\",\"mHu0az\":\"Couldn't send verification email. Please try again.\",\"QOIm+S\":\"De aantallen omvatten alle aankomende datums. Iedereen krijgt een plek aangeboden voor de datum waarvoor hij of zij zich heeft aangemeld.\",\"P0rbCt\":\"Omslagafbeelding\",\"p4kqHr\":\"Cover image added\",\"60u+dQ\":\"Omslagafbeelding wordt bovenaan je evenementpagina weergegeven\",\"2NLjA6\":\"De omslagafbeelding wordt bovenaan je organisatorpagina weergegeven\",\"GkrqoY\":\"Covers every ticket\",\"zg4oSu\":[\"Maak \",[\"0\"],\" Sjabloon\"],\"RKKhnW\":\"Maak een aangepaste widget om tickets te verkopen op je site.\",\"6sk7PP\":\"Create a fixed number\",\"jqhTmw\":\"Create a list for this date\",\"PhioFp\":\"Create a new check-in list for an active session, or contact the organizer if you think this is a mistake.\",\"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\":\"Create Date\",\"Nc3l/D\":\"Maak kortingen, toegangscodes voor verborgen tickets en speciale aanbiedingen.\",\"PybJS2\":\"Create event\",\"eWEV9G\":\"Nieuw wachtwoord aanmaken\",\"wl2iai\":\"Create Schedule\",\"8AiKIu\":\"Maak ticket of product aan\",\"/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\":\"Maak je eerste evenement aan om tickets te verkopen en deelnemers te beheren.\",\"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\":\"Currently assigned\",\"iTvh6I\":\"Momenteel beschikbaar voor aankoop\",\"A42Dqn\":\"Custom branding\",\"Guo0lU\":\"Aangepaste datum en tijd\",\"WDMdn8\":\"Custom questions\",\"O6mra8\":\"Aangepaste vragen\",\"axv/Mi\":\"Aangepaste sjabloon\",\"2YeVGY\":\"Klantlink gekopieerd naar klembord\",\"QMHSMS\":\"Klant ontvangt een e-mail ter bevestiging van de terugbetaling\",\"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\":\"Daily\",\"/gWrVZ\":\"Dagelijkse omzet, belastingen, kosten en terugbetalingen voor alle evenementen\",\"zgCHnE\":\"Dagelijks verkooprapport\",\"nHm0AI\":\"Dagelijkse uitsplitsing naar verkoop, belasting en kosten\",\"1aPnDT\":\"Dance\",\"pvnfJD\":\"Donker\",\"MaB9wW\":\"Date Cancellation\",\"e6cAxJ\":\"Date cancelled\",\"81jBnC\":\"Date cancelled successfully\",\"a/C/6R\":\"Date created successfully\",\"IW7Q+u\":\"Date deleted\",\"rngCAz\":\"Date deleted successfully\",\"vHbfoQ\":\"Date reactivated\",\"hvah+S\":\"Date reopened for new sales\",\"Ez0YsD\":\"Date updated successfully\",\"Te33mU\":\"Dates are managed per occurrence\",\"91zCxb\":\"Dates with sessions\",\"/ITcnz\":\"day\",\"H7OUPr\":\"Day\",\"JtHrX9\":\"Day of Month\",\"J/Upwb\":\"days\",\"vDVA2I\":\"Days of Month\",\"rDLvlL\":\"Days of Week\",\"r6zgGo\":\"December\",\"jbq7j2\":\"Weigeren\",\"ovBPCi\":\"Standaard\",\"JtI4vj\":\"Standaard verzameling deelnemersinformatie\",\"ULjv90\":\"Default capacity per date\",\"3R/Tu2\":\"Standaard kostenafhandeling\",\"1bZAZA\":\"Standaardsjabloon wordt gebruikt\",\"HNlEFZ\":\"verwijderen\",\"KpnwJK\":[\"\\\"\",[\"0\"],\"\\\" verwijderen?\"],\"BlII4o\":[\"Delete \",[\"count\"],\" selected date(s)? Dates with orders will be skipped. This cannot be undone.\"],\"vu7gDm\":\"Verwijder affiliate\",\"KZN4Lc\":\"Alles verwijderen\",\"6EkaOO\":\"Delete Date\",\"io0G93\":\"Evenement verwijderen\",\"+jw/c1\":\"Verwijder afbeelding\",\"hdyeZ0\":\"Taak verwijderen\",\"xxjZeP\":\"Locatie verwijderen\",\"sY3tIw\":\"Organisator verwijderen\",\"UBv8UK\":\"Delete Permanently\",\"dPyJ15\":\"Sjabloon Verwijderen\",\"IQTR34\":\"Delete this category? Any products in it will also be deleted. This cannot be undone.\",\"/1wMxk\":\"Delete this product? This cannot be undone.\",\"mxsm1o\":\"Deze vraag verwijderen? Dit kan niet ongedaan worden gemaakt.\",\"snMaH4\":\"Webhook verwijderen\",\"LIZZLY\":[\"Deleted \",[\"0\"],\" date(s)\"],\"7w0Wev\":\"Description and venue added\",\"vYgeDk\":\"Deselecteer alles\",\"NvuEhl\":\"Ontwerpelementen\",\"H8kMHT\":\"Geen code ontvangen?\",\"G8KNgd\":\"Different location\",\"E/QGRL\":\"Disabled\",\"OdPOhy\":\"Discord\",\"nZJ8tu\":\"Dismiss setup checklist\",\"QotGhf\":\"Dit bericht negeren\",\"BREO0S\":\"Toon een selectievakje waarmee klanten zich kunnen aanmelden voor marketingcommunicatie van deze evenementenorganisator.\",\"HtaSQp\":\"Toont hoeveel plekken er per datum over zijn in de ticketwidget. Je kunt dit per datum aanpassen.\",\"pfa8F0\":\"Weergavenaam\",\"Kdpf90\":\"Niet vergeten!\",\"352VU2\":\"Heeft u geen account? <0>Aanmelden\",\"AXXqG+\":\"Donatie\",\"DPfwMq\":\"Klaar\",\"JoPiZ2\":\"Door staff instructions\",\"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 u een Stripe-account koppelen voordat u berichten naar deelnemers kunt sturen.\\nDit is om ervoor te zorgen dat alle evenementorganisatoren geverifieerd en verantwoordelijk zijn.\",\"euc6Ns\":\"Dupliceren\",\"YueC+F\":\"Duplicate Date\",\"KRmTkx\":\"Dupliceer product\",\"Jd3ymG\":\"Duration must be at least 1 minute.\",\"KIjvtr\":\"Nederlands\",\"22xieU\":\"bijv. 180 (3 uur)\",\"/zajIE\":\"e.g. Morning Session\",\"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.\",\"Xfsjel\":\"Elk product\",\"5oD9f/\":\"Earlier\",\"LTzmgK\":[\"Bewerk \",[\"0\"],\" Sjabloon\"],\"v4+lcZ\":\"Bewerk affiliate\",\"2iZEz7\":\"Antwoord bewerken\",\"t2bbp8\":\"Deelnemer bewerken\",\"etaWtB\":\"Deelnemergegevens bewerken\",\"+guao5\":\"Configuratie bewerken\",\"1Mp/A4\":\"Edit Date\",\"m0ZqOT\":\"Locatie bewerken\",\"8oivFT\":\"Locatie bewerken\",\"vRWOrM\":\"Bestelgegevens bewerken\",\"fW5sSv\":\"Webhook bewerken\",\"nP7CdQ\":\"Webhook bewerken\",\"MRZxAn\":\"Edited\",\"uBAxNB\":\"Editor\",\"aqxYLv\":\"Educatie\",\"iiWXDL\":\"Geschiktheidsfouten\",\"zPiC+q\":\"In Aanmerking Komende Incheck Lijsten\",\"SiVstt\":\"Email & scheduled messages\",\"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\":\"Embeddable 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\":\"End\",\"sGjBEq\":\"Einddatum & tijd (optioneel)\",\"PKXt9R\":\"Einddatum moet na begindatum liggen\",\"ZayGC7\":\"End on a date\",\"48Y16Q\":\"Eindtijd (optioneel)\",\"TbaYrr\":[\"Ended \",[\"0\"]],\"CFgwiw\":[\"Ends \",[\"0\"]],\"SqOIQU\":\"Enter a capacity value or choose unlimited.\",\"h37gRz\":\"Enter a label or choose to remove it.\",\"7YZofi\":\"Voer een onderwerp en hoofdtekst in om het voorbeeld te zien\",\"khyScF\":\"Enter a time to shift by.\",\"SKx/0u\":\"Voer een locatienaam of adres in\",\"ppwojw\":\"Voer een locatienaam of adres in voor fysieke evenementen\",\"j+eCIq\":\"Adres handmatig invoeren\",\"3bR1r4\":\"Voer affiliate e-mail in (optioneel)\",\"ARkzso\":\"Voer affiliatenaam in\",\"ej4L8b\":\"Enter capacity\",\"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)\",\"RRlWVA\":\"Volledige bestelling\",\"o21Y+P\":\"entries\",\"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\",\"+v+GW0\":\"Weergave van de evenementdatum\",\"7u9/DO\":\"Evenement succesvol verwijderd\",\"imgKgl\":\"Evenementbeschrijving\",\"IzR/Fc\":\"Event lifetime\",\"PYs3rP\":\"Evenementnaam\",\"HhwcTQ\":\"Naam van het evenement\",\"WZZzB6\":\"Evenementnaam is verplicht\",\"Wd5CDM\":\"Evenementnaam moet minder dan 150 tekens bevatten\",\"4JzCvP\":\"Evenement niet beschikbaar\",\"mImacG\":\"Evenementpagina\",\"Hk9Ki/\":\"Evenement succesvol hersteld\",\"JyD0LH\":\"Evenement instellingen\",\"XVLu2v\":\"Evenement titel\",\"OfmsI9\":\"Evenement te nieuw\",\"4SILkp\":\"Event totals\",\"YDVUVl\":\"Soorten evenementen\",\"+HeiVx\":\"Evenement bijgewerkt\",\"19j6uh\":\"Evenementenprestaties\",\"PC3/fk\":\"Evenementen die beginnen in de komende 24 uur\",\"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\":\"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\":\"Kan configuratie niet toewijzen\",\"PO0cfn\":\"Failed to cancel date\",\"YUX+f+\":\"Failed to cancel dates\",\"SIHgVQ\":\"Bericht annuleren mislukt\",\"cEFg3R\":\"Aanmaken affiliate mislukt\",\"dVgNF1\":\"Kan configuratie niet aanmaken\",\"fAoRRJ\":\"Failed to create schedule\",\"U66oUa\":\"Sjabloon maken mislukt\",\"aFk48v\":\"Kan configuratie niet verwijderen\",\"n1CYMH\":\"Failed to delete date\",\"KXv+Qn\":\"Failed to delete date. It may have existing orders.\",\"JJ0uRo\":\"Failed to delete dates\",\"rgoBnv\":\"Evenement verwijderen mislukt\",\"Zw6LWb\":\"Taak verwijderen mislukt\",\"tq0abZ\":\"Taken verwijderen mislukt\",\"2mkc3c\":\"Organisator verwijderen mislukt\",\"5E23qd\":\"Failed to delete product. Please try again.\",\"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\":\"Failed to reactivate date\",\"7zyx8a\":\"Verwijderen van wachtlijst mislukt\",\"A/P7PX\":\"Failed to remove override\",\"ogWc1z\":\"Failed to reopen date\",\"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\":\"Failed to save override\",\"sj/eZA\":\"Failed to save price override\",\"780n8A\":\"Failed to save product settings\",\"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\":\"Kan BTW-instellingen niet bijwerken\",\"7/9RFs\":\"Afbeelding uploaden mislukt.\",\"nkNfWu\":\"Uploaden van afbeelding mislukt. Probeer het opnieuw.\",\"rxy0tG\":\"Verifiëren e-mail mislukt\",\"QRUpCk\":\"Family\",\"5LO38w\":\"Fast payouts to your bank\",\"4lgLew\":\"February\",\"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\":\"Filter attendees\",\"8OvVZZ\":\"Filter Deelnemers\",\"N/H3++\":\"Filter by date\",\"mvrlBO\":\"Filteren op evenement\",\"g+xRXP\":\"Finish setting up Stripe\",\"LHH461\":\"Finish setup\",\"syyeb9\":\"First\",\"Vj6wk9\":\"First 30 days\",\"/bpZYb\":\"First 7 days\",\"ziEnjY\":\"First 90 days\",\"1vBhpG\":\"Eerste deelnemer\",\"4pwejF\":\"Voornaam is verplicht\",\"rVogsf\":\"Los de problemen op om te publiceren\",\"3lkYdQ\":\"Fixed fee\",\"6bBh3/\":\"Vaste vergoeding\",\"zWqUyJ\":\"Vaste kosten per transactie\",\"LWL3Bs\":\"Vaste vergoeding moet 0 of hoger zijn\",\"0RI8m4\":\"Flash off\",\"q0923e\":\"Flash on\",\"X+U6/w\":\"Lettertype\",\"lWxAUo\":\"Eten & Drinken\",\"nFm+5u\":\"Voettekst\",\"a8nooQ\":\"Fourth\",\"wtuVU4\":\"Frequency\",\"xVhQZV\":\"Fri\",\"39y5bn\":\"Friday\",\"f5UbZ0\":\"Full data ownership\",\"cfvx/y\":\"Full event\",\"MY2SVM\":\"Volledige terugbetaling\",\"PGQLdy\":\"future\",\"8N/j1s\":\"Future dates only\",\"yRx/6K\":\"Future dates will be copied with capacity reset to zero\",\"T02gNN\":\"Algemene Toegang\",\"3ep0Gx\":\"Algemene informatie over je organisator\",\"ziAjHi\":\"Genereer\",\"exy8uo\":\"Genereer code\",\"4CETZY\":\"Routebeschrijving\",\"pjkEcB\":\"Get Paid\",\"lGYzP6\":\"Get paid with Stripe\",\"ZDIydz\":\"Aan de slag\",\"u6FPxT\":\"Koop Tickets\",\"8KDgYV\":\"Bereid je evenement voor\",\"RkXlPZ\":\"GitHub\",\"sr0UJD\":\"Go Back\",\"oNL5vN\":\"Ga naar evenementpagina\",\"gHSuV/\":\"Ga naar de startpagina\",\"8+Cj55\":\"Go to Schedule\",\"6nDzTl\":\"Goede leesbaarheid\",\"76gPWk\":\"Got it\",\"CZXzs4\":\"Grieks\",\"aGWZUr\":\"Bruto-omzet\",\"n8IUs7\":\"Bruto-omzet\",\"O1wAlQ\":\"Guest\",\"LIYoRQ\":\"Gastenbeheer\",\"NUsTc4\":\"Happening now\",\"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\":\"Hi,\",\"/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\":\"Hide details\",\"FmogyU\":\"Opties verbergen\",\"uXNYjR\":\"Uitverkochte datums en tijden verbergen\",\"g9RcYX\":\"Datum verbergen\",\"uMwTx7\":\"Deze categorie 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\":\"Hobbies\",\"yY8wAv\":\"Hours\",\"49Tkiw\":\"Hoe wordt de korting toegepast?\",\"sy9anN\":\"Hoe lang een klant heeft om de aankoop te voltooien na ontvangst van een aanbod. Laat leeg voor geen tijdslimiet.\",\"n2ilNh\":\"How long does the schedule run?\",\"DMr2XN\":\"How often?\",\"cceMns\":\"How VAT is applied to the platform fees we charge you.\",\"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\",\"CY3yHL\":\"Indien aangevinkt, wordt deze categorie verborgen voor het publiek.\",\"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 last \",[\"0\"],\" min\"],\"u7r0G5\":\"In person — set a venue\",\"/LCAwL\":\"Bezig\",\"F1Xp97\":\"Individuele deelnemers\",\"85e6zs\":\"Liquid Token Invoegen\",\"CTWsuc\":\"Instagram\",\"VopR6B\":\"Instant Stripe payouts\",\"nbfdhU\":\"Integraties\",\"I8eJ6/\":\"Internal notes on the attendee's ticket\",\"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\",\"Dn4OyV\":\"Uitgenodigd\",\"IuMGvq\":\"Factuur\",\"a/bUcL\":\"It happens on more than one date\",\"d+Oe9r\":\"It may have been unpublished or removed. Please check the link and try again.\",\"Lj7sBL\":\"Italiaans\",\"F5/CBH\":\"artikel(en)\",\"BzfzPK\":\"Artikelen\",\"rjyWPb\":\"January\",\"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\":[\"Wachtlijst voor \",[\"productDisplayName\"],\" bijtreden\"],\"2gMuHR\":\"Aangemeld\",\"u4ex5r\":\"July\",\"zeEQd/\":\"June\",\"MxjCqk\":\"Alleen op zoek naar je tickets?\",\"xOTzt5\":\"just now\",\"0RihU9\":\"Just wrapped\",\"lB2hSG\":[\"Houd mij op de hoogte van nieuws en evenementen van \",[\"0\"]],\"ioFA9i\":\"Keep the profit.\",\"o66QSP\":\"label updates\",\"RtKKbA\":\"Last\",\"DruLRc\":\"Laatste 14 dagen\",\"ve9JTU\":\"Achternaam is verplicht\",\"h0Q9Iw\":\"Laatste reactie\",\"gw3Ur5\":\"Laatst geactiveerd\",\"FIq1Ba\":\"Later\",\"xvnLMP\":\"Latest check-ins\",\"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\":\"Licht\",\"1qY5Ue\":\"Link verlopen of ongeldig\",\"gggTBm\":\"LinkedIn\",\"nvOPBA\":\"Links toegestaan\",\"2BBAbc\":\"List\",\"dF6vP6\":\"Live\",\"fpMs2Z\":\"LIVE\",\"D9zTjx\":\"Live Evenementen\",\"C33p4q\":\"Loaded dates\",\"WdmJIX\":\"Voorvertoning laden...\",\"IoDI2o\":\"Tokens laden...\",\"G3Ge9Z\":\"Webhook-logs laden...\",\"NFxlHW\":\"Webhooks laden\",\"E0DoRM\":\"Locatie verwijderd\",\"7w8lJU\":\"Locatie opgeslagen\",\"YsRXDD\":\"Locatie bijgewerkt\",\"A/kIva\":\"location updates\",\"iyZPPR\":\"locaties\",\"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\",\"PSRm6/\":\"Zoek mijn tickets op\",\"yJFu/X\":\"Hoofdkantoor\",\"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\":\"Beheer de wachtlijst van uw evenement, bekijk statistieken en bied tickets aan deelnemers aan.\",\"g2npA5\":\"Handmatig aanbod\",\"hg6l4j\":\"March\",\"pqRBOz\":\"Mark as validated (admin override)\",\"2L3vle\":\"Max berichten / 24u\",\"Qp4HWD\":\"Max ontvangers / bericht\",\"3JzsDb\":\"May\",\"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\":\"Minutes\",\"zz/Wd/\":\"Mode\",\"fpMgHS\":\"Mon\",\"hty0d5\":\"Monday\",\"JbIgPz\":\"Geldbedragen zijn geschatte totalen over alle valuta's\",\"qvF+MT\":\"Bewaak en beheer mislukte achtergrondtaken\",\"kY2ll9\":\"month\",\"HajiZl\":\"Maand\",\"+8Nek/\":\"Monthly\",\"1LkxnU\":\"Monthly Pattern\",\"6jefe3\":\"months\",\"f8jrkd\":\"more\",\"JcD7qf\":\"More actions\",\"w36OkR\":\"Meest bekeken evenementen (Laatste 14 dagen)\",\"+Y/na7\":\"Move all dates earlier or later\",\"3DIpY0\":\"Multiple locations\",\"g9cQCP\":\"Multiple ticket types\",\"GfaxEk\":\"Muziek\",\"oVGCGh\":\"Mijn Tickets\",\"8/brI5\":\"Naam is verplicht\",\"sFFArG\":\"Naam moet minder dan 255 tekens bevatten\",\"xxU3NX\":\"Netto-omzet\",\"7I8LlL\":\"New capacity\",\"n1GRql\":\"New label\",\"y0Fcpd\":\"Nieuwe locatie\",\"ArHT/C\":\"Nieuwe aanmeldingen\",\"uK7xWf\":\"New time:\",\"veT5Br\":\"Next occurrence\",\"WXtl5X\":[\"Next: \",[\"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\":\"No attendees to show\",\"PKySlW\":\"No attendees yet for this date.\",\"/UC6qk\":\"Geen attributiegegevens gevonden\",\"E2vYsO\":\"No capabilities reported by Stripe yet.\",\"amMkpL\":\"Geen capaciteit\",\"d2Jf1f\":\"No change\",\"99ntUF\":\"Geen incheck lijsten beschikbaar voor dit evenement.\",\"wG+knX\":\"No check-ins yet\",\"+dAKxg\":\"Geen configuraties gevonden\",\"LiLk8u\":\"No connections available\",\"eb47T5\":\"Geen gegevens gevonden voor de geselecteerde filters. Probeer het datumbereik of de valuta aan te passen.\",\"Zc216S\":\"No date added\",\"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\",\"OtJSnL\":\"Geen data gepland\",\"gEdNe8\":\"No dates scheduled yet\",\"pZNOT9\":\"Geen einddatum\",\"dW40Uz\":\"Geen evenementen gevonden\",\"8pQ3NJ\":\"Geen evenementen die beginnen in de komende 24 uur\",\"8zCZQf\":\"Nog geen evenementen\",\"Yc5YW6\":\"Geen mislukte taken\",\"EpvBAp\":\"Geen factuur\",\"XZkeaI\":\"Geen logboeken gevonden\",\"IcAC6J\":\"Geen overeenkomende lettertypen\",\"nrSs2u\":\"Geen berichten gevonden\",\"Rj99yx\":\"No occurrences available\",\"IFU1IG\":\"No occurrences on this date\",\"OVFwlg\":\"Nog geen bestellingsvragen\",\"EJ7bVz\":\"Geen bestellingen gevonden\",\"NEmyqy\":\"Nog geen bestellingen\",\"a77B6w\":\"No orders yet for this date.\",\"wUv5xQ\":\"Geen organisatoractiviteit in de laatste 14 dagen\",\"vLd1tV\":\"No organizer context available.\",\"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\":\"No products configured for this event.\",\"kY7XDn\":\"Geen producten hebben wachtlijstvermeldingen\",\"8mw4tm\":\"Bericht bij geen producten\",\"wYiAtV\":\"Geen recente accountaanmeldingen\",\"UW90md\":\"Geen ontvangers gevonden\",\"QoAi8D\":\"Geen reactie\",\"JeO7SI\":\"Geen antwoord\",\"EK/G11\":\"Nog geen reacties\",\"59OWd3\":\"Geen opgeslagen locaties\",\"mPdY6W\":\"Geen suggesties\",\"3sRuiW\":\"Geen tickets gevonden\",\"debCrL\":\"Geen tickets te koop\",\"k2C0ZR\":\"No upcoming dates\",\"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\":\"non-edited\",\"Itw24Q\":\"Not checked in\",\"x5+Lcz\":\"Niet Ingecheckt\",\"8n10sz\":\"Niet in Aanmerking\",\"kLvU3F\":\"Notify attendees and stop sales\",\"t9QlBd\":\"November\",\"kAREMN\":\"Number of dates to create\",\"6u1B3O\":\"Occurrence\",\"mmoE62\":\"Occurrence Cancelled\",\"V9flmL\":\"Occurrence Schedule\",\"Kh3WO8\":\"Occurrence Summary\",\"byXCTu\":\"Occurrences\",\"KATw3p\":\"Occurrences (future only)\",\"85rTR2\":\"Occurrences can be configured after creation\",\"dzQfDY\":\"October\",\"BwJKBw\":\"van\",\"9h7RDh\":\"Aanbieden\",\"EfK2O6\":\"Plek aanbieden\",\"3sVRey\":\"Tickets aanbieden\",\"2O7Ybb\":\"Aanbod-tijdslimiet\",\"1jUg5D\":\"Aangeboden\",\"l+/HS6\":[\"Aanbiedingen verlopen na \",[\"timeoutHours\"],\" uur.\"],\"6Aih4U\":\"Offline\",\"nO3VbP\":[\"In de verkoop \",[\"0\"]],\"oXOSPE\":\"Online\",\"aqmy5k\":\"Online — provide connection details\",\"LuZBbx\":\"Online & in-person\",\"IXuOqt\":\"Online & in-person — see schedule\",\"WjSpu5\":\"Online evenement\",\"scPxI/\":[\"Nog maar \",[\"capacity\"],\" over\"],\"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\",\"wkpaqp\":\"Alleen startdatum en -tijd tonen\",\"DMk8F0\":\"Only tickets count toward capacity\",\"M2w1ni\":\"Alleen zichtbaar met promocode\",\"y8Bm7C\":\"Open check-in\",\"RLz7P+\":\"Open occurrence\",\"cDSdPb\":\"Optionele bijnaam die in keuzelijsten wordt getoond, bijv. \\\"HQ-vergaderruimte\\\"\",\"HXMJxH\":\"Optionele tekst voor disclaimers, contactinfo of danknotities (alleen één regel)\",\"L565X2\":\"opties\",\"8m9emP\":\"or add a single date\",\"eBskDE\":\"Of schakel offline betalingen in en schakel Stripe uit\",\"dSeVIm\":\"order\",\"c/TIyD\":\"Bestelling & Ticket\",\"H5qWhm\":\"Bestelling geannuleerd\",\"b6+Y+n\":\"Bestelling voltooid\",\"x4MLWE\":\"Bestelling Bevestiging\",\"CsTTH0\":\"Bestelbevestiging succesvol opnieuw verzonden\",\"ppuQR4\":\"Bestelling aangemaakt\",\"xtQzag\":\"Order details\",\"vrSW9M\":\"Bestelling is geannuleerd en terugbetaald. De eigenaar van de bestelling is op de hoogte gesteld.\",\"rzw+wS\":\"Bestelhouders\",\"oI/hGR\":\"Bestelling-ID\",\"RQCXz6\":\"Bestellimieten\",\"SO9AEF\":\"Bestellingslimieten ingesteld\",\"vu6Arl\":\"Bestelling gemarkeerd als betaald\",\"sLbJQz\":\"Bestelling niet gevonden\",\"kvYpYu\":\"Bestelling niet gevonden\",\"eJ8SvM\":\"Order number, purchase date, purchaser email\",\"FaPYw+\":\"Eigenaar bestelling\",\"eB5vce\":\"Bestel eigenaars met een specifiek product\",\"CxLoxM\":\"Besteleigenaars met producten\",\"UkHo4c\":\"Bestelref.\",\"EZy55F\":\"Bestelling terugbetaald\",\"6eSHqs\":\"Bestelstatussen\",\"oW5877\":\"Bestelling Totaal\",\"e7eZuA\":\"Bijgewerkte bestelling\",\"1SQRYo\":\"Bestelling succesvol bijgewerkt\",\"3NT0Ck\":\"Bestelling is geannuleerd\",\"V5khLm\":\"orders\",\"sd5IMt\":\"Voltooide bestellingen\",\"5It1cQ\":\"Geëxporteerde bestellingen\",\"UQ0ACV\":\"Totaal bestellingen\",\"B/EBQv\":\"Bestellingen:\",\"qtGTNu\":\"Organische accounts\",\"P/JHA4\":\"Organisator succesvol gearchiveerd\",\"S3CZ5M\":\"Organisator-dashboard\",\"GzjTd0\":\"Organisator succesvol verwijderd\",\"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\":\"Organizers\",\"/IX/7x\":\"Overig\",\"RsiDDQ\":\"Andere Lijsten (Ticket Niet Inbegrepen)\",\"aDfajK\":\"Outdoors\",\"qMASRF\":\"Uitgaande berichten\",\"iCOVQO\":\"Override\",\"GpFTEc\":\"Override fees on this organizer\",\"M9ZhMP\":\"Override price\",\"cnVIpl\":\"Override removed\",\"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\":\"Past due\",\"xTPjSy\":\"Afgelopen evenementen\",\"/l/ckQ\":\"Plak URL\",\"URAE3q\":\"Gepauzeerd\",\"4fL/V7\":\"Betalen\",\"c2/9VE\":\"Payload\",\"5cxUwd\":\"Betaaldatum\",\"ENEPLY\":\"Betaalmethode\",\"8Lx2X7\":\"Betaling ontvangen\",\"fx8BTd\":\"Betalingen niet beschikbaar\",\"C+ylwF\":\"Payouts\",\"UbRKMZ\":\"Pending\",\"UkM20g\":\"In afwachting van beoordeling\",\"dPYu1F\":\"Per deelnemer\",\"mQV/nJ\":\"per min\",\"+kvxv+\":\"per bestelling\",\"VlXNyK\":\"Per bestelling\",\"NhuGd7\":\"per product\",\"hauDFf\":\"Per ticket\",\"mnF83a\":\"Percentage vergoeding\",\"TNLuRD\":\"Percentage fee (%)\",\"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\":\"Permanently remove this date\",\"6kPk3+\":\"Persoonlijke gegevens\",\"zmwvG2\":\"Telefoon\",\"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\":\"Een evenement plannen?\",\"J3lhKT\":\"Platformkosten\",\"RD51+P\":[\"Platformkosten van \",[\"0\"],\" afgetrokken van uw uitbetaling\"],\"br3Y/y\":\"Platformkosten\",\"3buiaw\":\"Platformkosten rapport\",\"kv9dM4\":\"Platformomzet\",\"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\":\"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\":\"Please select a date and time\",\"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\":\"Position\",\"OESu7I\":\"Voorkom oververkoop door voorraad te delen over meerdere tickettypes.\",\"NgVUL2\":\"Voorbeeld afrekenformulier\",\"cs5muu\":\"Voorbeeld van de evenementpagina\",\"Jm2AC3\":\"Price Tier\",\"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\":\"Product settings cannot be edited for cancelled dates.\",\"2339ej\":\"Product settings saved successfully\",\"ldVIlB\":\"Bijgewerkt product\",\"CP3D8G\":\"Progress\",\"JoKGiJ\":\"Kortingscode\",\"k3wH7i\":\"Gebruik van promocodes en uitsplitsing van kortingen\",\"tZqL0q\":\"promo codes\",\"oCHiz3\":\"Promo codes\",\"uEhdRh\":\"Alleen promo\",\"dLm8V5\":\"Promotionele e-mails kunnen leiden tot accountopschorting\",\"W0ETyY\":\"Vul minimaal één adresveld in (locatie, straat, stad of land).\",\"2W/7Gz\":\"Provide the following before Stripe's next review to keep payouts flowing.\",\"EEYbdt\":\"Publiceren\",\"JcgJKc\":\"Toch publiceren\",\"evDBV8\":\"Evenement publiceren\",\"2zEfOd\":\"Publish your event\",\"L7nrC8\":\"Door te publiceren wordt je evenementpagina openbaar en worden registraties geopend.\",\"dsFmM+\":\"Gekocht\",\"JunetL\":\"Purchaser\",\"phmeUH\":\"Purchaser email\",\"ywR4ZL\":\"QR code check-in\",\"oWXNE5\":\"Aant.\",\"biEyJ4\":\"Question answers\",\"k/bJj0\":\"Vragen herschikt\",\"b24kPi\":\"Wachtrij\",\"lTPqpM\":\"Quick Tip\",\"fqDzSu\":\"Tarief\",\"mnUGVC\":\"Limiet overschreden. Probeer het later opnieuw.\",\"t41hVI\":\"Plek opnieuw aanbieden\",\"TNclgc\":\"Reactivate this date? It will be reopened for future sales.\",\"RENQ6j\":\"Klaar om live te gaan?\",\"uqoRbb\":\"Real-time analytics\",\"xzRvs4\":[\"Productupdates van \",[\"0\"],\" ontvangen.\"],\"pLXbi8\":\"Recente accountaanmeldingen\",\"M1HGuR\":\"Recent activity\",\"3kJ0gv\":\"Recent Attendees\",\"qhfiwV\":\"Recent check-ins\",\"S+0XMX\":\"Recent orders\",\"Fi3b48\":\"Recente bestellingen\",\"7hPBBn\":\"ontvanger\",\"jp5bq8\":\"ontvangers\",\"yPrbsy\":\"Ontvangers\",\"E1F5Ji\":\"Ontvangers zijn beschikbaar nadat het bericht is verzonden\",\"WEYdDv\":\"Recommended\",\"wuhHPE\":\"Recurring\",\"asLqwt\":\"Terugkerend evenement\",\"s3uzsK\":\"Instellingen terugkerend evenement\",\"D0tAMe\":\"Recurring events\",\"JjMIKU\":\"Reddit\",\"HiGkFu\":\"Doorverwijzen naar Stripe...\",\"pnoTN5\":\"Verwijzingsaccounts\",\"ACKu03\":\"Voorbeeld Vernieuwen\",\"vuFYA6\":\"Refund all orders for these dates\",\"4cRUK3\":\"Refund all orders for this date\",\"fKn/k6\":\"Terugbetalingsbedrag\",\"qY4rpA\":\"Terugbetaling mislukt\",\"FaK/8G\":[\"Bestelling \",[\"0\"],\" terugbetalen\"],\"MGbi9P\":\"Terugbetaling in behandeling\",\"BDSRuX\":[\"Terugbetaald: \",[\"0\"]],\"bU4bS1\":\"Terugbetalingen\",\"rYXfOA\":\"Regionale instellingen\",\"5tl0Bp\":\"Registratievragen\",\"ZNo5k1\":\"Remaining\",\"Bjh87R\":\"Remove label from all dates\",\"IVZaEo\":\"Verwijdert uitverkochte datums en tijden volledig van de evenementpagina. Indien uitgeschakeld blijven ze zichtbaar en worden ze als uitverkocht gemarkeerd.\",\"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\":\"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\":\"Reset to base price\",\"kCn6wb\":\"Opnieuw instellen...\",\"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\":\"results\",\"6gRgw8\":\"Opnieuw proberen\",\"1BG8ga\":\"Alles opnieuw proberen\",\"rDC+T6\":\"Taak opnieuw proberen\",\"CbnrWb\":\"Terug naar evenement\",\"Lf7TCn\":\"Herbruikbare locaties verschijnen hier automatisch wanneer je evenementen met adressen aanmaakt, en je kunt ook zelf locaties toevoegen.\",\"mdQ0zb\":\"Herbruikbare locaties voor je evenementen. Locaties die via automatisch aanvullen zijn aangemaakt, worden hier automatisch opgeslagen.\",\"XFOPle\":\"Reuse\",\"1Zehp4\":\"Reuse a Stripe connection from another organizer in this account.\",\"Oo/PLb\":\"Omzetoverzicht\",\"CfuueU\":\"Aanbod intrekken\",\"RIgKv+\":\"Run until a specific date\",\"dFFW9L\":[\"Uitverkoop eindigde \",[\"0\"]],\"loCKGB\":[\"Uitverkoop eindigt \",[\"0\"]],\"wlfBad\":\"Uitverkoopperiode\",\"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\":\"Verkoopperiode ingesteld\",\"ftzaMf\":\"Verkoopperiode, bestellingslimieten, zichtbaarheid\",\"zpekWp\":[\"Uitverkoop begint \",[\"0\"]],\"mUv9U4\":\"Verkoop\",\"9KnRdL\":\"Verkoop is gepauzeerd\",\"JC3J0k\":\"Sales, attendance, and check-in breakdown per occurrence\",\"3VnlS9\":\"Verkopen, bestellingen en prestatie-indicatoren voor alle evenementen\",\"3Q1AWe\":\"Verkoop:\",\"LeuERW\":\"Same as event\",\"B4nE3N\":\"Voorbeeldticketprijs\",\"8BRPoH\":\"Voorbeeldlocatie\",\"PiK6Ld\":\"Sat\",\"+5kO8P\":\"Saturday\",\"zJiuDn\":\"Save fee override\",\"NB8Uxt\":\"Save Schedule\",\"KZrfYJ\":\"Sociale links opslaan\",\"9Y3hAT\":\"Sjabloon Opslaan\",\"C8ne4X\":\"Ticketontwerp Opslaan\",\"cTI8IK\":\"Save VAT settings\",\"6/TNCd\":\"BTW-instellingen opslaan\",\"4RvD9q\":\"Opgeslagen locatie\",\"cgw0cL\":\"Opgeslagen locaties\",\"Fbqm/I\":\"Saving an override creates a dedicated configuration for this organizer if it's currently on the system default.\",\"I+FvbD\":\"Scannen\",\"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\":\"Later plannen\",\"NAzVVw\":\"Bericht plannen\",\"Fz09JP\":\"Schedule starts on\",\"4ba0NE\":\"Gepland\",\"qcP/8K\":\"Geplande tijd\",\"A1taO8\":\"Search\",\"ftNXma\":\"Zoek affiliates...\",\"VMU+zM\":\"Search attendees\",\"VY+Bdn\":\"Zoeken op accountnaam of e-mail...\",\"VX+B3I\":\"Zoeken op evenement titel of organisator...\",\"R0wEyA\":\"Zoeken op taaknaam of uitzondering...\",\"YnMfsK\":\"Zoeken op naam of adres...\",\"VT+urE\":\"Zoeken op naam of e-mail...\",\"GHdjuo\":\"Zoeken op naam, e-mail of account...\",\"4mBFO7\":\"Search by name, order #, ticket # or email\",\"20ce0U\":\"Zoeken op bestelling-ID, klantnaam of e-mail...\",\"4DSz7Z\":\"Zoeken op onderwerp, evenement of account...\",\"nQC7Z9\":\"Search dates...\",\"iRtEpV\":\"Search dates…\",\"JRM7ao\":\"Search for an address\",\"BWF1kC\":\"Berichten zoeken...\",\"5WYZKZ\":\"Zoekresultaten\",\"IG85fV\":\"Zoek opgeslagen locaties of vind een adres...\",\"3aD3GF\":\"Seasonal\",\"ku//5b\":\"Second\",\"Mck5ht\":\"Veilige afrekening\",\"s7tXqF\":\"See schedule\",\"JFap6u\":\"See what Stripe still needs\",\"p7xUrt\":\"Selecteer een categorie\",\"hTKQwS\":\"Select a Date & Time\",\"Ps6Xtf\":\"Select a date to see available times\",\"e4L7bF\":\"Selecteer een bericht om de inhoud te bekijken\",\"zPRPMf\":\"Selecteer een niveau\",\"BFRSTT\":\"Selecteer Account\",\"wgNoIs\":\"Select all\",\"mCB6Je\":\"Selecteer alles\",\"aCEysm\":[\"Select all on \",[\"0\"]],\"a6+167\":\"Selecteer een evenement\",\"CFbaPk\":\"Selecteer deelnemersgroep\",\"88a49s\":\"Select camera\",\"tVW/yo\":\"Selecteer valuta\",\"SJQM1I\":\"Select date\",\"n9ZhRa\":\"Selecteer einddatum en tijd\",\"gTN6Ws\":\"Selecteer eindtijd\",\"0U6E9W\":\"Selecteer evenementcategorie\",\"j9cPeF\":\"Soorten evenementen selecteren\",\"ypTjHL\":\"Select occurrence\",\"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\":\"selected\",\"ylXj1N\":\"Geselecteerd\",\"uq3CXQ\":\"Sell out your event.\",\"oBXbO4\":\"Selling a physical product? Cap its quantity on the <0>products page instead.\",\"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\":\"Send to all occurrences, or choose a specific one\",\"QEQlnV\":\"Verstuur uw eerste bericht\",\"IoAuJG\":\"Verzenden...\",\"h69WC6\":\"Verzonden\",\"BVu2Hz\":\"Verzonden door\",\"ZFa8wv\":\"Sent to attendees when a scheduled date is cancelled\",\"SPdzrs\":\"Verzonden naar klanten wanneer ze een bestelling plaatsen\",\"LxSN5F\":\"Verzonden naar elke deelnemer met hun ticketgegevens\",\"hgvbYY\":\"September\",\"5sN96e\":\"Session cancelled\",\"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\":\"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\":\"Stel inchecklijsten in voor verschillende ingangen, sessies of dagen.\",\"TaWVGe\":\"Set up payouts\",\"JA//e6\":\"Set up schedule\",\"gzXY7l\":\"Set Up Schedule\",\"0Ls9qe\":\"Set up the tickets you'll sell and their prices\",\"xMO+Ao\":\"Stel je organisatie in\",\"5pEFnq\":\"Set up your schedule\",\"h/9JiC\":\"Set Up Your Schedule\",\"zRRuUD\":\"Set up your schedule in the next steps\",\"ETC76A\":\"Set, change, or remove the date's location or online details\",\"C3htzi\":\"Instelling bijgewerkt\",\"Ohn74G\":\"Instellingen & ontwerp\",\"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\":\"Deel affiliatelink\",\"hL7sDJ\":\"Deel organisatorpagina\",\"jy6QDF\":\"Gedeeld capaciteitsbeheer\",\"jDNHW4\":\"Shift times\",\"tPfIaW\":[\"Shifted times for \",[\"count\"],\" date(s)\"],\"WwlM8F\":\"Geavanceerde opties tonen\",\"cMW+gm\":[\"Toon alle platforms (\",[\"0\"],\" meer met waarden)\"],\"wXi9pZ\":\"Show attendee notes to non-logged-in staff\",\"4LZFir\":\"Volledige datumbereik tonen\",\"UVPI5D\":\"Toon minder platforms\",\"Eu/N/d\":\"Toon marketing opt-in selectievakje\",\"SXzpzO\":\"Toon marketing opt-in selectievakje standaard\",\"b33PL9\":\"Toon meer platforms\",\"Eut7p9\":\"Show order details to non-logged-in staff\",\"+RoWKN\":\"Show question answers to non-logged-in staff\",\"jbcx6L\":\"Show remaining capacity on event dates\",\"rXxBOx\":\"Show remaining capacity to buyers\",\"t1LIQW\":[\"Toont \",[\"0\"],\" van \",[\"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\":\"Aangemeld\",\"5C7J+P\":\"Single Event\",\"E//btK\":\"Skip manually edited dates\",\"paESr6\":\"Slowaaks\",\"9wu8nm\":\"Snapchat\",\"kIKb9e\":\"Sociaal\",\"d0rUsW\":\"Sociale links\",\"j/TOB3\":\"Sociale links & website\",\"s9KGXU\":\"Verkocht\",\"yp+0jj\":\"sold out\",\"1hupow\":\"Uitverkocht, wachtlijst beschikbaar\",\"iACSrw\":\"Some details are hidden from public access. Log in to view everything.\",\"Dia6iz\":\"Something went wrong while deleting the image. Please try again.\",\"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\":\"Spirituality\",\"oPaRES\":\"Split check-in across days, areas, or ticket types. Share the link with staff — no account needed on their end.\",\"7JFNej\":\"Sport\",\"/bfV1Y\":\"Staff instructions\",\"tXkhj/\":\"Start\",\"StWUH4\":\"Start check-in\",\"JcQp9p\":\"Startdatum & tijd\",\"0m/ekX\":\"Startdatum & tijd\",\"izRfYP\":\"Startdatum is verplicht\",\"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/\":\"Statistieken\",\"GVUxAX\":\"Statistieken zijn gebaseerd op de aanmaakdatum van het account\",\"29Hx9U\":\"Stats\",\"5ia+r6\":\"Still needed\",\"wuV0bK\":\"Stop Imiteren\",\"s/KaDb\":\"Stripe connected\",\"Bk06QI\":\"Stripe verbonden\",\"akZMv8\":[\"Stripe connection copied from \",[\"0\"],\".\"],\"v0aRY1\":\"Stripe didn't return a setup link. Please try again.\",\"aKtF0O\":\"Stripe niet verbonden\",\"9i0++A\":\"Stripe betalings-ID\",\"R1lIMV\":\"Stripe will need a few more details soon\",\"FzcCHA\":\"Stripe will walk you through a few quick questions to finish setup.\",\"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\",\"kRWc2g\":\"Instellingen terugkerend evenement 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\":\"Sun\",\"DBC3t5\":\"Sunday\",\"UaISq3\":\"Zweeds\",\"JZTQI0\":\"Wissel van organisator\",\"9YHrNC\":\"Systeemstandaard\",\"lruQkA\":\"Tap this screen to resume scanning\",\"TJUrME\":[\"Targeting attendees across \",[\"0\"],\" selected sessions.\"],\"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\":\"Team collaboration\",\"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\":\"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\":\"Sjabloon Actief\",\"QHhZeE\":\"Sjabloon succesvol aangemaakt\",\"xrWdPR\":\"Sjabloon succesvol verwijderd\",\"G04Zjt\":\"Sjabloon succesvol opgeslagen\",\"xowcRf\":\"Servicevoorwaarden\",\"6K0GjX\":\"Tekst kan moeilijk leesbaar zijn\",\"nm3Iz/\":\"Bedankt voor uw aanwezigheid!\",\"pYwj0k\":\"Thanks,\",\"k3IitN\":\"That's a wrap\",\"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.\",\"7oksH+\":[\"De korting wordt afgetrokken van elk in aanmerking komend product. Bijv. \",[\"currencySymbol\"],\"10 korting × 3 tickets = \",[\"currencySymbol\"],\"30 korting.\"],\"sKL8k2\":\"De korting wordt eenmalig afgetrokken van het ordertotaal.\",\"cDHM1d\":\"Het e-mailadres is gewijzigd. De deelnemer ontvangt een nieuw ticket op het bijgewerkte e-mailadres.\",\"tXadb0\":\"Het evenement dat je zoekt is momenteel niet beschikbaar. Mogelijk is het verwijderd, verlopen of is de URL onjuist.\",\"5fPdZe\":\"The first date this schedule will generate from.\",\"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.\",\"Np4eLs\":[\"The maximum is \",[\"MAX_PREVIEW\"],\" sessions. Please reduce the date range, frequency, or number of sessions per day.\"],\"sYLeDq\":\"De organisator die je zoekt is niet gevonden. De pagina is mogelijk verplaatst, verwijderd of de URL is onjuist.\",\"PCr4zw\":\"The override is recorded in the order audit log.\",\"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\",\"OVSkIF\":\"De snelle bruine vos springt over de luie hond.\",\"z0KrIG\":\"De geplande tijd is vereist\",\"EWErQh\":\"De geplande tijd moet in de toekomst liggen\",\"UNd0OU\":[\"The session for \\\"\",[\"title\"],\"\\\" originally scheduled for \",[\"0\"],\" has been rescheduled.\"],\"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\",\"ybBP2H\":\"There are no products available for this date. Please choose another date.\",\"O7g4eR\":\"There are no upcoming dates for this event\",\"062KsE\":\"These details are shown on the attendee's ticket and order summary for this date only.\",\"5Eu+tn\":\"Deze gegevens worden alleen getoond als de bestelling succesvol is afgerond.\",\"jQjwR+\":\"These details will replace any existing location on the affected dates and show on attendee tickets.\",\"6eaLu/\":\"Deze prijzen gelden voor alle datums in je schema, en de aantallen per niveau beperken de totale verkoop van alle datums samen. Verkoopdatums van niveaus gelden globaal. Je kunt prijzen voor afzonderlijke datums overschrijven op de <0>pagina Datumschema.\",\"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\":\"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\":\"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/\":[\"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.\",\"E9BqZw\":\"This date only\",\"RzEvf5\":\"Dit evenement is afgelopen\",\"kc4bIA\":\"Dit evenement heeft nog geen tickets of producten, dus deelnemers kunnen zich niet registreren.\",\"eMaNd0\":\"This event is not available\",\"YClrdK\":\"Dit evenement is nog niet gepubliceerd\",\"GL6z+k\":\"Dit evenement is uitverkocht\",\"pIwDhS\":\"This event's dates and times are set on the occurrence schedule.\",\"ny5rgr\":\"This is a recurring event\",\"tc64Zz\":\"Dit is de naam van de categorie die op de evenementpagina wordt weergegeven.\",\"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.\",\"5DpZrC\":\"Dit beperkt de totale verkoop van alle datums in je schema samen — het is geen limiet per datum. Om het aantal deelnemers per datum te beperken, stel je een capaciteit in op de <0>pagina Datumschema.\",\"L7dIM7\":\"Deze link is ongeldig of verlopen.\",\"MR5ygV\":\"Deze link is niet meer geldig\",\"9LEqK0\":\"Deze naam is zichtbaar voor eindgebruikers\",\"QdUMM9\":\"This occurrence is at capacity\",\"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\",\"qEGn8I\":\"Dit terugkerende evenement heeft nog geen data, dus er valt voor deelnemers niets te boeken.\",\"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.\",\"1LuJNw\":\"Dit ticket is niet langer geldig\",\"0Ew0uk\":\"Dit ticket is net gescand. Wacht even voordat u opnieuw scant.\",\"FYXq7k\":[\"This will affect \",[\"loadedAffectedCount\"],\" date(s).\"],\"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\":\"Throughput\",\"+FjWgX\":\"Thu\",\"kkDQ8m\":\"Thursday\",\"0GSPnc\":\"Ticketontwerp\",\"EZC/Cu\":\"Ticketontwerp succesvol opgeslagen\",\"bbslmb\":\"Ticket ontwerper\",\"1BPctx\":\"Ticket voor\",\"HGuXjF\":\"Tickethouders\",\"CMUt3Y\":\"Tickethouders\",\"awHmAT\":\"Ticket-ID\",\"6czJik\":\"Ticket Logo\",\"t79rDv\":\"Ticket niet gevonden\",\"6tmWch\":\"Ticket of product\",\"1tfWrD\":\"Ticketvoorbeeld voor\",\"KnjoUA\":\"Ticketprijs\",\"pGZOcL\":\"Ticket succesvol opnieuw verzonden\",\"o02GZM\":\"Ticket sales have ended for this event\",\"8jLPgH\":\"Tickettype\",\"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\":\"Time\",\"fXf2r5\":[\"Times shown in \",[\"timezoneAbbr\"]],\"dMtLDE\":\"to\",\"/jQctM\":\"Aan\",\"tiI71C\":\"Om uw limieten te verhogen, neem contact met ons op via\",\"ecUA8p\":\"Today\",\"W428WC\":\"Kolommen schakelen\",\"BRMXj0\":\"Tomorrow\",\"UBSG1X\":\"Top organisatoren (Laatste 14 dagen)\",\"3sZ0xx\":\"Totaal Accounts\",\"SMDzqJ\":\"Totaal deelnemers\",\"orBECM\":\"Totaal geïnd\",\"k5CU8c\":\"Totaal inschrijvingen\",\"4B7oCp\":\"Totale kosten\",\"sMMlTX\":\"Total fees\",\"mlvCEl\":\"Total orders\",\"2AW/k5\":\"Totaal aantal voor alle datums\",\"dp8BCb\":\"Total tax\",\"vb0Q0/\":\"Totaal Gebruikers\",\"oJjplO\":\"Totaal weergaven\",\"rBZ9pz\":\"Tours\",\"orluER\":\"Volg accountgroei en prestaties per attributiebron\",\"YwKzpH\":\"Tracking & Analyse\",\"GUA0Jy\":\"Try a different search term or filter\",\"2P/OWN\":\"Try adjusting your filters to see more dates.\",\"ouM5IM\":\"Probeer een ander e-mailadres\",\"3DZvE7\":\"Probeer Hi.Events Gratis\",\"vq2WxD\":\"Tue\",\"G3myU+\":\"Tuesday\",\"Kz91g/\":\"Turks\",\"GdOhw6\":\"Geluid uitschakelen\",\"KUOhTy\":\"Geluid inschakelen\",\"dBeuY2\":\"Twitch\",\"QytzQr\":\"Typ \\\"verwijderen\\\" om te bevestigen\",\"nWRfmt\":\"Typografie\",\"IrVSu+\":\"Kan product niet dupliceren. Controleer uw gegevens\",\"Vx2J6x\":\"Kan deelnemer niet ophalen\",\"h0dx5e\":\"Kan niet aan de wachtlijst worden toegevoegd\",\"DaE0Hg\":\"Unable to load attendee details.\",\"GlnD5Y\":\"Unable to load products for this date. Please try again.\",\"17VbmV\":\"Unable to undo check-in\",\"n57zCW\":\"Niet-toegewezen accounts\",\"9uI/rE\":\"Undo\",\"Ef7StM\":\"Onbekend\",\"ZBAScj\":\"Onbekende deelnemer\",\"MEIAzV\":\"Naamloos\",\"K6L5Mx\":\"Naamloze locatie\",\"7yiFvZ\":\"Onbetaald\",\"X13xGn\":\"Niet vertrouwd\",\"gyXpQN\":\"Upcoming events\",\"Pp1sWX\":\"Affiliate bijwerken\",\"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 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 listening\",\"dyTklH\":\"USB scanner paused\",\"OHJXlK\":\"Gebruik <0>Liquid-templating om uw e-mails te personaliseren\",\"/rsy72\":\"Use event default\",\"0k4cdb\":\"Gebruik bestelgegevens voor alle deelnemers. Namen en e-mailadressen van deelnemers komen overeen met de informatie van de koper.\",\"bA31T4\":\"Gebruik de gegevens van de koper voor alle deelnemers\",\"PpgtnC\":\"Dit adres gebruiken\",\"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\":\"VAT number\",\"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\":\"VAT registered\",\"Nfbg76\":\"BTW-instellingen succesvol opgeslagen\",\"UvYql/\":\"BTW-instellingen opgeslagen. We valideren uw BTW-nummer op de achtergrond.\",\"bXn1Jz\":\"VAT settings updated\",\"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\":\"VAT: not registered\",\"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\":\"View All\",\"yA/6BX\":\"View all →\",\"6CQ7/B\":\"View all capabilities\",\"YSE15b\":\"View all check-in lists\",\"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\":[\"View details for \",[\"0\"],\" \",[\"1\"]],\"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\":\"Waiting for scan…\",\"u0n+wz\":\"Wachtlijst\",\"3RXFtE\":\"Wachtlijst ingeschakeld\",\"TwnTPy\":\"Wachtlijstaanbod verlopen\",\"aUi/Dz\":\"Waarschuwing: dit is de standaardsysteemconfiguratie. Wijzigingen zijn van invloed op alle accounts die geen specifieke configuratie toegewezen hebben.\",\"aT/44s\":\"We couldn't copy that Stripe connection. Please try again.\",\"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.\",\"Fjj/5/\":\"We couldn't load the check-in lists. Please try again.\",\"ADsQ23\":\"We couldn't reach Stripe just now. Please try again in a moment.\",\"HJKdzP\":\"Er is een probleem opgetreden bij het laden van deze pagina. Probeer het opnieuw.\",\"jegrvW\":\"We partner with Stripe to send payouts straight to your bank account.\",\"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 uw ervaring te verbeteren.\",\"x8rEDQ\":\"We konden uw BTW-nummer niet valideren na meerdere pogingen. We blijven het op de achtergrond proberen. Kom later terug.\",\"mfM/HJ\":[\"We sturen u een e-mail als er een plek beschikbaar komt voor \",[\"productDisplayName\"],\" op \",[\"occurrenceDate\"],\".\"],\"iy+M+c\":[\"We sturen u een e-mail als er een plek beschikbaar komt voor \",[\"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 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've made changes to the schedule for \\\"\",[\"title\"],\"\\\" — \",[\"description\"],\" affecting \",[\"affectedCount\"],\" session(s).\"],\"Fq/Nx7\":\"We hebben een 5-cijferige verificatiecode verzonden naar:\",\"GdWB+V\":\"Webhook succesvol aangemaakt\",\"2X4ecw\":\"Webhook succesvol verwijderd\",\"ndBv0v\":\"Webhook integrations\",\"CThMKa\":\"Webhook logboeken\",\"I0adYQ\":\"Webhook-ondertekeningsgeheim\",\"nuh/Wq\":\"Webhook URL\",\"8BMPMe\":\"Webhook verzendt geen meldingen\",\"FSaY52\":\"Webhook stuurt meldingen\",\"v1kQyJ\":\"Webhooks\",\"On0aF2\":\"Website\",\"0f7U0k\":\"Wed\",\"VAcXNz\":\"Wednesday\",\"64X6l4\":\"week\",\"4XSc4l\":\"Weekly\",\"IAUiSh\":\"weeks\",\"vKLEXy\":\"Weibo\",\"9eF5oV\":\"Welkom terug\",\"QDWsl9\":[\"Welkom bij \",[\"0\"],\", \",[\"1\"],\" 👋\"],\"LETnBR\":[\"Welkom bij \",[\"0\"],\", hier is een overzicht van al je evenementen\"],\"DDbx7K\":\"Wellness\",\"ywRaYa\":\"What time?\",\"FaSXqR\":\"Wat voor type evenement?\",\"0WyYF4\":\"What unauthenticated staff can see\",\"2+ExvJ\":\"WhatsApp\",\"cxsKvw\":\"Wanneer een check-in wordt verwijderd\",\"RPe6bE\":\"When a date is cancelled on a recurring event\",\"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 aanmelden voor een wachtlijst om op de hoogte te worden gebracht wanneer er plekken beschikbaar komen.\",\"OIkHj+\":\"Wanneer een product uitverkocht is, kunnen klanten zich aanmelden voor een wachtlijst om op de hoogte te worden gebracht wanneer er plekken beschikbaar komen. Klanten melden zich aan voor de wachtlijst voor een specifieke datum en aanbiedingen worden per datum gedaan.\",\"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\":\"Wanneer klanten tickets kopen, verschijnen hun bestellingen hier.\",\"pm9tpn\":\"Indien ingeschakeld, kunnen kopers hun naam en e-mailadres in één keer naar alle deelnemers kopiëren. Schakel dit uit om de optie \\\"Alle deelnemers\\\" te verwijderen; kopers kunnen hun gegevens nog steeds naar de eerste deelnemer kopiëren, de rest moet afzonderlijk worden ingevoerd.\",\"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.\",\"uchB0M\":\"Widget voorbeeld\",\"uvIqcj\":\"Workshop\",\"EpknJA\":\"Schrijf hier je bericht...\",\"nhtR6Y\":\"X (Twitter)\",\"7qI8sJ\":\"year\",\"zkWmBh\":\"Yearly\",\"+BGee5\":\"years\",\"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+\":\"You can override this for individual dates later.\",\"paWwQ0\":\"U kunt tickets indien nodig nog steeds handmatig aanbieden.\",\"jTDzpA\":\"U kunt de laatste actieve organisator van uw account niet archiveren.\",\"D8baxD\":\"Je hebt betaalde tickets, maar Stripe is nog niet verbonden, dus je kunt geen betalingen ontvangen.\",\"5VGIlq\":\"U heeft uw berichtenlimiet bereikt.\",\"casL1O\":\"Je hebt belastingen en kosten toegevoegd aan een Gratis product. Wilt u deze verwijderen?\",\"9jJNZY\":\"U moet uw verantwoordelijkheden erkennen voordat u 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/\":\"You need to create at least one occurrence before you can add attendees to this recurring event.\",\"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\":\"You'll be able to set up dates, schedules, and recurrence rules in the next step.\",\"zKAheG\":\"You're changing session times\",\"MNFIxz\":[\"Je gaat naar \",[\"0\"],\"!\"],\"ZlLcht\":[\"U meldt zich aan voor de wachtlijst voor \",[\"occurrenceDate\"],\".\"],\"qGZz0m\":\"Je staat op de wachtlijst!\",\"/5HL6k\":\"Je hebt een plek aangeboden gekregen!\",\"gbjFFH\":\"You've changed the session time\",\"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\":\"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\":\"Je tickets zijn bevestigd.\",\"EmFsMZ\":\"Uw BTW-nummer staat in de wachtrij voor validatie\",\"QBlhh4\":\"Uw BTW-nummer wordt gevalideerd wanneer u opslaat\",\"fT9VLt\":\"Uw wachtlijstaanbod is verlopen en we konden uw bestelling niet voltooien. Meld u opnieuw aan voor de wachtlijst om op de hoogte te worden gebracht 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\":\"123 Main Street\",\"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\":\"Are you sure you want to make this event public? This will make the event visible to the public\",\"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\":\"Attendee Notes\",\"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\":\"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\":\"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\":\"Je evenementpagina aanpassen\",\"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\":\"Dismiss\",\"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\":\"Event 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\":\"No attendees have been added to this order.\",\"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\":\"No product associated with this attendee.\",\"Ya1JhR\":\"Geen producten beschikbaar in deze categorie.\",\"FTfObB\":\"Nog geen producten\",\"+Y976X\":\"Geen promotiecodes om te tonen\",\"MAavyl\":\"No questions answered by this attendee.\",\"SnlQeq\":\"No questions have been asked for this order.\",\"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 event\",\"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\":\"Order #\",\"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\":\"Order Notes\",\"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\":\"Mogelijk gemaakt 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 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\":\"View\",\"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\":\"(none)\",\"xYxQCZ\":[[\"0\"],\" \",[\"1\"]],\"lAOy2r\":[[\"0\"],\" \",[\"1\"],\" is al ingecheckt\"],\"3beCx0\":[[\"0\"],\" <0>checked in\"],\"S4PqS9\":[[\"0\"],\" Actieve webhooks\"],\"6MIiOI\":[\"nog \",[\"0\"]],\"COnw8D\":[[\"0\"],\" logo\"],\"xG9N0H\":[[\"0\"],\" of \",[\"1\"],\" seats are taken.\"],\"B7pZfX\":[[\"0\"],\" organisatoren\"],\"/HkCs4\":[[\"0\"],\" tickets\"],\"30bTiU\":[[\"activeCount\"],\" enabled\"],\"jTs4am\":[[\"appName\"],\" logo\"],\"gbJOk9\":[[\"attendeeCount\"],\" attendees are registered for this session.\"],\"TjbIUI\":[[\"availableCount\"],\" van \",[\"totalCount\"],\" beschikbaar\"],\"PSChHo\":[[\"capacity\"],\" plekken over\"],\"lzQ8/M\":[[\"checkedIn\"],\" / \",[\"total\"],\" checked in\"],\"RZ0JX3\":[[\"chipTime\"],\", uitverkocht\"],\"M4KnFs\":[[\"chipTime\"],\", Uitverkocht, wachtlijst beschikbaar\"],\"SeyN12\":[[\"completedCount\"],\" of \",[\"totalCount\"],\" steps complete\"],\"f2rhaD\":[[\"diffHr\"],\"h ago\"],\"NRSLBe\":[[\"diffMin\"],\"m ago\"],\"iYfwJE\":[[\"diffSec\"],\"s ago\"],\"OJnhhX\":[[\"eventCount\"],\" evenementen\"],\"mhZbzw\":[[\"loadedAffectedAttendees\"],\" attendees are registered across the affected sessions.\"],\"RBuxIl\":[[\"productCount\"],\" ticket types configured\"],\"VFLd0I\":[[\"slotCount\"],\" times available\"],\"3IEF7U\":[[\"totalCount\"],\" tickettypen\"],\"0cLzoF\":[[\"totalOccurrences\"],\" dates\"],\"AEGc4t\":[[\"totalOccurrences\"],\" sessions across \",[\"0\"],\" dates (\",[\"1\",\"plural\",{\"one\":[\"#\",\" session\"],\"other\":[\"#\",\" sessions\"]}],\" per day)\"],\"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.\",\"Il5Uid\":\"<0>Dit is het totale beschikbare aantal voor alle datums in je schema samen — geen limiet per datum. Om het aantal deelnemers per datum te beperken, stel je een capaciteit in op de <1>pagina Datumschema.\",\"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 attendee is registered across the affected sessions.\",\"qOyE2U\":\"1 attendee is registered for this session.\",\"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\",\"y2Jh0m\":\"1 time available\",\"cGtUz6\":\"1 week voor het evenement\",\"HR/cvw\":\"Voorbeeldstraat 123\",\"dgKxZ5\":\"135+ currencies & 40+ payment methods\",\"kMU5aM\":\"Een annuleringsmelding is verzonden naar\",\"o++0qa\":\"a change in duration\",\"WuWSX5\":\"A few quick steps and you're ready to start selling.\",\"RQ5kDd\":\"Een bericht dat wordt weergegeven wanneer er geen producten in deze categorie zijn.\",\"V53XzQ\":\"Er is een nieuwe verificatiecode naar je e-mail verzonden\",\"sr2Je0\":\"a shift in start/end times\",\"/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\":\"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\":\"Voeg aangepaste vragen toe om extra informatie te verzamelen tijdens het afrekenen\",\"Z/dcxc\":\"Add Date\",\"QeupRg\":\"Data toevoegen\",\"Q219NT\":\"Add Dates\",\"yjB5VC\":\"Add dates and times for your recurring event\",\"Z8idyM\":\"Add details\",\"wpirGs\":\"Add event details\",\"VX6WUv\":\"Locatie toevoegen\",\"GCQlV2\":\"Add multiple times if you run several sessions per day.\",\"7JF9w9\":\"Vraag toevoegen\",\"NLbIb6\":\"Add this attendee anyway (override capacity)\",\"6PNlRV\":\"Voeg dit evenement toe aan je agenda\",\"BGD9Yt\":\"Tickets toevoegen\",\"uIv4Op\":\"Voeg trackingpixels toe aan uw openbare evenementpagina's en organisator-homepage. Een cookietoestemmingsbanner wordt 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\":\"Affiliate program\",\"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.\",\"3e31kI\":\"After your event is created, you can choose how often it repeats from the dashboard.\",\"z7GAMJ\":\"all\",\"N40H+G\":\"All\",\"7rLTkE\":\"Alle gearchiveerde evenementen\",\"gKq1fa\":\"Alle deelnemers\",\"63gRoO\":\"All attendees of the selected sessions\",\"uWxIoH\":\"All attendees of this occurrence\",\"pMLul+\":\"Alle valuta's\",\"sgUdRZ\":\"All dates\",\"e4q4uO\":\"All Dates\",\"ZS/D7f\":\"Alle afgelopen evenementen\",\"QsYjci\":\"Alle evenementen\",\"31KB8w\":\"Alle mislukte taken verwijderd\",\"D2g7C7\":\"Alle taken in wachtrij voor opnieuw proberen\",\"B4RFBk\":\"All matching dates\",\"F1/VgK\":\"All occurrences\",\"OpWjMq\":\"All Occurrences\",\"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.\",\"VZdky1\":\"Kopers toestaan hun gegevens naar alle deelnemers te kopiëren\",\"F3mW5G\":\"Klanten toestaan zich aan te melden voor een wachtlijst wanneer dit product is uitverkocht\",\"4CMO/q\":\"Klanten toestaan zich aan te melden voor een wachtlijst wanneer dit product is uitverkocht. Klanten melden zich aan voor de wachtlijst voor een specifieke datum.\",\"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\":\"Already in\",\"/H326L\":\"Al terugbetaald\",\"USEpOK\":\"Already use Stripe on another organizer? Reuse that connection.\",\"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.\",\"OPFdAM\":\"Een optionele beschrijving van deze categorie die op de evenementpagina wordt weergegeven.\",\"eusccx\":\"Een optioneel bericht om weer te geven op het uitgelichte product, bijv. \\\"Snel uitverkocht 🔥\\\" of \\\"Beste waarde\\\"\",\"5GJuNp\":[\"and \",[\"0\"],\" more...\"],\"QNrkms\":\"Antwoord succesvol bijgewerkt.\",\"+qygei\":\"Answers\",\"GK7Lnt\":\"Answers provided at checkout (e.g. meal choice)\",\"lE8PgT\":\"Any dates you've manually customized will be kept.\",\"jVoYha\":[\"toegepast — \",[\"0\"],\" korting op je bestelling\"],\"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\":\"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\":[\"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\":\"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/\":\"Are you sure you want to delete this date? This action cannot be undone.\",\"RiF/yT\":\"Are you sure you want to delete this image?\",\"b3+Qku\":\"Are you sure you want to delete this tax or fee? It will no longer be applied to new orders.\",\"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\":\"Are you sure you want to permanently delete this date? This cannot be undone.\",\"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?\",\"b7tkGp\":\"Are you sure you want to revoke this invitation?\",\"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\":\"Assign plan\",\"xdiER7\":\"Toegewezen niveau\",\"F2rX0R\":\"Er moet minstens één evenement type worden geselecteerd\",\"Z44eZS\":\"At least one product must stay available for this date. To make the date inaccessible, cancel it from the schedule instead.\",\"BCmibk\":\"Pogingen\",\"6PecK3\":\"Aanwezigheid en incheckpercentages voor alle evenementen\",\"K2tp3v\":\"attendee\",\"AJ4rvK\":\"Deelnemer geannuleerd\",\"qvylEK\":\"Deelnemer Gemaakt\",\"Aspq3b\":\"Verzameling deelnemergegevens\",\"fpb0rX\":\"Deelnemergegevens gekopieerd van bestelling\",\"94aQMU\":\"Deelnemersinformatie\",\"KkrBiR\":\"Verzameling deelnemersinformatie\",\"sjPjOg\":\"Attendee notes\",\"cosfD8\":\"Deelnemersstatus\",\"D2qlBU\":\"Deelnemer bijgewerkt\",\"22BOve\":\"Deelnemer succesvol bijgewerkt\",\"x8Vnvf\":\"Ticket van deelnemer niet opgenomen in deze lijst\",\"/Ywywr\":\"attendees\",\"zLRobu\":\"attendees checked in\",\"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/\":\"August\",\"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, kunt u de wachtlijst handmatig verwerken vanaf de Wachtlijstpagina.\",\"csDS2L\":\"Beschikbaar\",\"Xp+ywP\":\"Beschikbaar zodra de betaling is voltooid\",\"dwDH1K\":[\"Available times on \",[\"dayName\"]],\"clF06r\":\"Beschikbaar voor terugbetaling\",\"NB5+UG\":\"Beschikbare Tokens\",\"L+wGOG\":\"Awaiting\",\"qcw2OD\":\"Awaiting pay\",\"kNmmvE\":\"Awesome Events B.V.\",\"TeSaQO\":\"Terug naar Accounts\",\"kYqM1A\":\"Terug naar evenement\",\"s5QRF3\":\"Terug naar berichten\",\"td/bh+\":\"Terug naar rapporten\",\"nsm7BA\":\"Terug naar zoeken\",\"imjKVx\":\"Bank account connected\",\"D9LTCH\":\"Base Price\",\"hviJef\":\"Based on the global sale period above, not per date\",\"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\":\"Built-in fraud protection\",\"cr7kGH\":\"Bulk Edit\",\"1Fbd6n\":\"Bulk Edit Dates\",\"Eq6Tu9\":\"Bulk update failed.\",\"9N+p+g\":\"Zakelijk\",\"SWnN1L\":\"Business address\",\"kQekXw\":\"Business name\",\"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, erkent u dat u en dit platform gezamenlijke verwerkingsverantwoordelijken zijn van de verzamelde gegevens. U bent verantwoordelijk voor het waarborgen van een rechtmatige grondslag voor deze verwerking onder toepasselijke privacywetgeving (AVG, CCPA, enz.).\",\"DFqasq\":[\"Door verder te gaan, gaat u akkoord met de <0>\",[\"0\"],\" Servicevoorwaarden\"],\"wVSa+U\":\"By day of month\",\"0MnNgi\":\"By day of week\",\"CetOZE\":\"By ticket type\",\"lFdbRS\":\"Applicatiekosten omzeilen\",\"AjVXBS\":\"Calendar\",\"2VLZwd\":\"Call-to-Action Knop\",\"rT2cV+\":\"Camera\",\"7hYa9y\":\"Camera permission was denied. <0>Request permission again, or grant this page camera access in your browser settings.\",\"D02dD9\":\"Campagne\",\"RRPA79\":\"Can't check in\",\"OcVwAd\":[\"Cancel \",[\"count\"],\" date(s)\"],\"H4nE+E\":\"Alle producten annuleren en terugzetten in de beschikbare pool\",\"Py78q9\":\"Cancel Date\",\"tOXAdc\":\"Annuleren zal alle deelnemers geassocieerd met deze bestelling annuleren en de tickets terugzetten in de beschikbare pool.\",\"FPpqc7\":[\"Cancelling \",[\"0\"],\" date(s). This may take a moment to complete.\"],\"01sEfm\":\"Kan de standaardsysteemconfiguratie niet verwijderen\",\"VsM1HH\":\"Capaciteitstoewijzingen\",\"9bIMVF\":\"Capacity management\",\"H7K8og\":\"Capacity must be 0 or greater\",\"nzao08\":\"capacity updates\",\"4cp9NP\":\"Capacity Used\",\"K7tIrx\":\"Categorie\",\"DRK3Bq\":\"Category deleted successfully\",\"o+XJ9D\":\"Wijzigen\",\"kJkjoB\":\"Change duration\",\"J0KExZ\":\"Change the attendee limit\",\"ssospy\":\"Change time\",\"CIHJJf\":\"Wachtlijstinstellingen wijzigen\",\"B5icLR\":[\"Changed duration for \",[\"count\"],\" date(s)\"],\"Kb+0BT\":\"Charges\",\"2tbLdK\":\"Liefdadigheid\",\"BPWGKn\":\"Check in\",\"6uFFoY\":\"Check out\",\"FjAlwK\":[\"Check out this event: \",[\"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 for \",[\"0\"],\" was undone\"],\"9s/wrQ\":\"Check-in history\",\"Wwztk4\":\"Check-In List\",\"9gPPUY\":\"Check-In Lijst Aangemaakt!\",\"dwjiJt\":\"Check-in list info\",\"7od0PV\":\"check-in lists\",\"f2vU9t\":\"Inchecklijsten\",\"XprdTn\":\"Check-in navigation\",\"5tV1in\":\"Check-in progress\",\"SHJwyq\":\"Incheckpercentage\",\"qCqdg6\":\"Incheck Status\",\"cKj6OE\":\"Incheckoverzicht\",\"7B5M35\":\"Check-Ins\",\"VrmydS\":\"Checked in\",\"DM4gBB\":\"Chinees (Traditioneel)\",\"p8Jvp4\":\"Choose a configuration\",\"ElShBO\":\"Choose a different action\",\"pHEhf+\":\"Kies een lettertype dat past bij je merk. Lettertypen worden zelf gehost via Bunny Fonts.\",\"Zok1Gx\":\"Choose an organizer\",\"pkk46Q\":\"Kies een organisator\",\"Ag32+c\":\"Choose another date\",\"Crr3pG\":\"Kies agenda\",\"Z38ZJu\":\"Kies hoe de evenementdatum op het ticket wordt weergegeven\",\"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\":\"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\":\"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\":\"complete\",\"bUQMpb\":\"Complete Stripe setup\",\"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\":\"Configuration assigned\",\"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\":\"Configure which products are available for this occurrence and optionally adjust pricing.\",\"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\",\"/K4Vqr\":\"Verbind Stripe om betalingen te accepteren\",\"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\":\"Verbindingsgegevens zijn verplicht voor online evenementen\",\"jfC/xh\":\"Contact\",\"LOFgda\":[\"Contact \",[\"0\"]],\"41BQ3k\":\"Contact e-mail\",\"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\",\"s30OcA\":\"Bepaal hoe datums en tijden op de evenementpagina worden weergegeven\",\"p2FRHj\":\"Bepaal hoe platformkosten worden behandeld voor dit evenement\",\"NqfabH\":\"Control who gets in for this date\",\"fmYxZx\":\"Control who gets in, and when\",\"1JnTgU\":\"Gekopieerd van boven\",\"FxVG/l\":\"Gekopieerd naar klembord\",\"PiH3UR\":\"Gekopieerd!\",\"4i7smN\":\"Copy account ID\",\"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\":\"Kon locatie niet verwijderen\",\"vkiDx2\":\"Could not prepare the bulk update.\",\"KOavaU\":\"Kon adresgegevens niet ophalen\",\"/lq4oO\":\"Could not save date\",\"mHu0az\":\"Couldn't send verification email. Please try again.\",\"QOIm+S\":\"De aantallen omvatten alle aankomende datums. Iedereen krijgt een plek aangeboden voor de datum waarvoor hij of zij zich heeft aangemeld.\",\"P0rbCt\":\"Omslagafbeelding\",\"p4kqHr\":\"Cover image added\",\"60u+dQ\":\"Omslagafbeelding wordt bovenaan je evenementpagina weergegeven\",\"2NLjA6\":\"De omslagafbeelding wordt bovenaan je organisatorpagina weergegeven\",\"GkrqoY\":\"Covers every ticket\",\"zg4oSu\":[\"Maak \",[\"0\"],\" Sjabloon\"],\"RKKhnW\":\"Maak een aangepaste widget om tickets te verkopen op je site.\",\"6sk7PP\":\"Create a fixed number\",\"jqhTmw\":\"Create a list for this date\",\"PhioFp\":\"Create a new check-in list for an active session, or contact the organizer if you think this is a mistake.\",\"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\":\"Create Date\",\"Nc3l/D\":\"Maak kortingen, toegangscodes voor verborgen tickets en speciale aanbiedingen.\",\"PybJS2\":\"Create event\",\"eWEV9G\":\"Nieuw wachtwoord aanmaken\",\"wl2iai\":\"Create Schedule\",\"8AiKIu\":\"Maak ticket of product aan\",\"/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\":\"Maak je eerste evenement aan om tickets te verkopen en deelnemers te beheren.\",\"ZCSSd+\":\"Maak je eigen evenement\",\"qdv10s\":[[\"0\"],\" data worden aangemaakt. Dit kan even duren.\"],\"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\":\"Currently assigned\",\"iTvh6I\":\"Momenteel beschikbaar voor aankoop\",\"A42Dqn\":\"Custom branding\",\"Guo0lU\":\"Aangepaste datum en tijd\",\"WDMdn8\":\"Custom questions\",\"O6mra8\":\"Aangepaste vragen\",\"axv/Mi\":\"Aangepaste sjabloon\",\"2YeVGY\":\"Klantlink gekopieerd naar klembord\",\"QMHSMS\":\"Klant ontvangt een e-mail ter bevestiging van de terugbetaling\",\"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\":\"Daily\",\"/gWrVZ\":\"Dagelijkse omzet, belastingen, kosten en terugbetalingen voor alle evenementen\",\"zgCHnE\":\"Dagelijks verkooprapport\",\"nHm0AI\":\"Dagelijkse uitsplitsing naar verkoop, belasting en kosten\",\"1aPnDT\":\"Dance\",\"pvnfJD\":\"Donker\",\"MaB9wW\":\"Date Cancellation\",\"e6cAxJ\":\"Date cancelled\",\"81jBnC\":\"Date cancelled successfully\",\"a/C/6R\":\"Date created successfully\",\"IW7Q+u\":\"Date deleted\",\"rngCAz\":\"Date deleted successfully\",\"vHbfoQ\":\"Date reactivated\",\"hvah+S\":\"Date reopened for new sales\",\"Ez0YsD\":\"Date updated successfully\",\"Te33mU\":\"Dates are managed per occurrence\",\"91zCxb\":\"Dates with sessions\",\"/ITcnz\":\"day\",\"H7OUPr\":\"Day\",\"JtHrX9\":\"Day of Month\",\"J/Upwb\":\"days\",\"vDVA2I\":\"Days of Month\",\"rDLvlL\":\"Days of Week\",\"r6zgGo\":\"December\",\"jbq7j2\":\"Weigeren\",\"ovBPCi\":\"Standaard\",\"JtI4vj\":\"Standaard verzameling deelnemersinformatie\",\"ULjv90\":\"Default capacity per date\",\"3R/Tu2\":\"Standaard kostenafhandeling\",\"1bZAZA\":\"Standaardsjabloon wordt gebruikt\",\"HNlEFZ\":\"verwijderen\",\"KpnwJK\":[\"\\\"\",[\"0\"],\"\\\" verwijderen?\"],\"BlII4o\":[\"Delete \",[\"count\"],\" selected date(s)? Dates with orders will be skipped. This cannot be undone.\"],\"vu7gDm\":\"Verwijder affiliate\",\"KZN4Lc\":\"Alles verwijderen\",\"6EkaOO\":\"Delete Date\",\"io0G93\":\"Evenement verwijderen\",\"+jw/c1\":\"Verwijder afbeelding\",\"hdyeZ0\":\"Taak verwijderen\",\"xxjZeP\":\"Locatie verwijderen\",\"sY3tIw\":\"Organisator verwijderen\",\"UBv8UK\":\"Delete Permanently\",\"dPyJ15\":\"Sjabloon Verwijderen\",\"IQTR34\":\"Delete this category? Any products in it will also be deleted. This cannot be undone.\",\"/1wMxk\":\"Delete this product? This cannot be undone.\",\"mxsm1o\":\"Deze vraag verwijderen? Dit kan niet ongedaan worden gemaakt.\",\"snMaH4\":\"Webhook verwijderen\",\"LIZZLY\":[\"Deleted \",[\"0\"],\" date(s)\"],\"7w0Wev\":\"Description and venue added\",\"vYgeDk\":\"Deselecteer alles\",\"NvuEhl\":\"Ontwerpelementen\",\"H8kMHT\":\"Geen code ontvangen?\",\"G8KNgd\":\"Different location\",\"E/QGRL\":\"Disabled\",\"OdPOhy\":\"Discord\",\"nZJ8tu\":\"Dismiss setup checklist\",\"QotGhf\":\"Dit bericht negeren\",\"BREO0S\":\"Toon een selectievakje waarmee klanten zich kunnen aanmelden voor marketingcommunicatie van deze evenementenorganisator.\",\"HtaSQp\":\"Toont hoeveel plekken er per datum over zijn in de ticketwidget. Je kunt dit per datum aanpassen.\",\"pfa8F0\":\"Weergavenaam\",\"Kdpf90\":\"Niet vergeten!\",\"352VU2\":\"Heeft u geen account? <0>Aanmelden\",\"AXXqG+\":\"Donatie\",\"DPfwMq\":\"Klaar\",\"JoPiZ2\":\"Door staff instructions\",\"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 u een Stripe-account koppelen voordat u berichten naar deelnemers kunt sturen.\\nDit is om ervoor te zorgen dat alle evenementorganisatoren geverifieerd en verantwoordelijk zijn.\",\"euc6Ns\":\"Dupliceren\",\"YueC+F\":\"Duplicate Date\",\"KRmTkx\":\"Dupliceer product\",\"Jd3ymG\":\"Duration must be at least 1 minute.\",\"KIjvtr\":\"Nederlands\",\"22xieU\":\"bijv. 180 (3 uur)\",\"/zajIE\":\"e.g. Morning Session\",\"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.\",\"Xfsjel\":\"Elk product\",\"5oD9f/\":\"Earlier\",\"LTzmgK\":[\"Bewerk \",[\"0\"],\" Sjabloon\"],\"v4+lcZ\":\"Bewerk affiliate\",\"2iZEz7\":\"Antwoord bewerken\",\"t2bbp8\":\"Deelnemer bewerken\",\"etaWtB\":\"Deelnemergegevens bewerken\",\"+guao5\":\"Configuratie bewerken\",\"1Mp/A4\":\"Edit Date\",\"m0ZqOT\":\"Locatie bewerken\",\"8oivFT\":\"Locatie bewerken\",\"vRWOrM\":\"Bestelgegevens bewerken\",\"fW5sSv\":\"Webhook bewerken\",\"nP7CdQ\":\"Webhook bewerken\",\"MRZxAn\":\"Edited\",\"uBAxNB\":\"Editor\",\"aqxYLv\":\"Educatie\",\"iiWXDL\":\"Geschiktheidsfouten\",\"zPiC+q\":\"In Aanmerking Komende Incheck Lijsten\",\"SiVstt\":\"Email & scheduled messages\",\"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\":\"Embeddable 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\":\"End\",\"sGjBEq\":\"Einddatum & tijd (optioneel)\",\"PKXt9R\":\"Einddatum moet na begindatum liggen\",\"ZayGC7\":\"End on a date\",\"48Y16Q\":\"Eindtijd (optioneel)\",\"TbaYrr\":[\"Ended \",[\"0\"]],\"CFgwiw\":[\"Ends \",[\"0\"]],\"SqOIQU\":\"Enter a capacity value or choose unlimited.\",\"h37gRz\":\"Enter a label or choose to remove it.\",\"7YZofi\":\"Voer een onderwerp en hoofdtekst in om het voorbeeld te zien\",\"khyScF\":\"Enter a time to shift by.\",\"SKx/0u\":\"Voer een locatienaam of adres in\",\"ppwojw\":\"Voer een locatienaam of adres in voor fysieke evenementen\",\"j+eCIq\":\"Adres handmatig invoeren\",\"3bR1r4\":\"Voer affiliate e-mail in (optioneel)\",\"ARkzso\":\"Voer affiliatenaam in\",\"ej4L8b\":\"Enter capacity\",\"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)\",\"RRlWVA\":\"Volledige bestelling\",\"o21Y+P\":\"entries\",\"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\",\"+v+GW0\":\"Weergave van de evenementdatum\",\"7u9/DO\":\"Evenement succesvol verwijderd\",\"imgKgl\":\"Evenementbeschrijving\",\"IzR/Fc\":\"Event lifetime\",\"PYs3rP\":\"Evenementnaam\",\"HhwcTQ\":\"Naam van het evenement\",\"WZZzB6\":\"Evenementnaam is verplicht\",\"Wd5CDM\":\"Evenementnaam moet minder dan 150 tekens bevatten\",\"4JzCvP\":\"Evenement niet beschikbaar\",\"mImacG\":\"Evenementpagina\",\"Hk9Ki/\":\"Evenement succesvol hersteld\",\"JyD0LH\":\"Evenement instellingen\",\"XVLu2v\":\"Evenement titel\",\"OfmsI9\":\"Evenement te nieuw\",\"4SILkp\":\"Event totals\",\"YDVUVl\":\"Soorten evenementen\",\"+HeiVx\":\"Evenement bijgewerkt\",\"19j6uh\":\"Evenementenprestaties\",\"PC3/fk\":\"Evenementen die beginnen in de komende 24 uur\",\"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\":\"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\":\"Kan configuratie niet toewijzen\",\"PO0cfn\":\"Failed to cancel date\",\"YUX+f+\":\"Failed to cancel dates\",\"SIHgVQ\":\"Bericht annuleren mislukt\",\"cEFg3R\":\"Aanmaken affiliate mislukt\",\"dVgNF1\":\"Kan configuratie niet aanmaken\",\"fAoRRJ\":\"Failed to create schedule\",\"4yLYTb\":\"Het schema kon niet worden aangemaakt. Probeer het opnieuw.\",\"U66oUa\":\"Sjabloon maken mislukt\",\"aFk48v\":\"Kan configuratie niet verwijderen\",\"n1CYMH\":\"Failed to delete date\",\"KXv+Qn\":\"Failed to delete date. It may have existing orders.\",\"JJ0uRo\":\"Failed to delete dates\",\"rgoBnv\":\"Evenement verwijderen mislukt\",\"Zw6LWb\":\"Taak verwijderen mislukt\",\"tq0abZ\":\"Taken verwijderen mislukt\",\"2mkc3c\":\"Organisator verwijderen mislukt\",\"5E23qd\":\"Failed to delete product. Please try again.\",\"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\":\"Failed to reactivate date\",\"7zyx8a\":\"Verwijderen van wachtlijst mislukt\",\"A/P7PX\":\"Failed to remove override\",\"ogWc1z\":\"Failed to reopen date\",\"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\":\"Failed to save override\",\"sj/eZA\":\"Failed to save price override\",\"780n8A\":\"Failed to save product settings\",\"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\":\"Kan BTW-instellingen niet bijwerken\",\"7/9RFs\":\"Afbeelding uploaden mislukt.\",\"nkNfWu\":\"Uploaden van afbeelding mislukt. Probeer het opnieuw.\",\"rxy0tG\":\"Verifiëren e-mail mislukt\",\"QRUpCk\":\"Family\",\"5LO38w\":\"Fast payouts to your bank\",\"4lgLew\":\"February\",\"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\":\"Filter attendees\",\"8OvVZZ\":\"Filter Deelnemers\",\"N/H3++\":\"Filter by date\",\"mvrlBO\":\"Filteren op evenement\",\"g+xRXP\":\"Finish setting up Stripe\",\"LHH461\":\"Finish setup\",\"syyeb9\":\"First\",\"Vj6wk9\":\"First 30 days\",\"/bpZYb\":\"First 7 days\",\"ziEnjY\":\"First 90 days\",\"1vBhpG\":\"Eerste deelnemer\",\"4pwejF\":\"Voornaam is verplicht\",\"rVogsf\":\"Los de problemen op om te publiceren\",\"3lkYdQ\":\"Fixed fee\",\"6bBh3/\":\"Vaste vergoeding\",\"zWqUyJ\":\"Vaste kosten per transactie\",\"LWL3Bs\":\"Vaste vergoeding moet 0 of hoger zijn\",\"0RI8m4\":\"Flash off\",\"q0923e\":\"Flash on\",\"X+U6/w\":\"Lettertype\",\"lWxAUo\":\"Eten & Drinken\",\"nFm+5u\":\"Voettekst\",\"a8nooQ\":\"Fourth\",\"wtuVU4\":\"Frequency\",\"xVhQZV\":\"Fri\",\"39y5bn\":\"Friday\",\"f5UbZ0\":\"Full data ownership\",\"cfvx/y\":\"Full event\",\"MY2SVM\":\"Volledige terugbetaling\",\"PGQLdy\":\"future\",\"8N/j1s\":\"Future dates only\",\"yRx/6K\":\"Future dates will be copied with capacity reset to zero\",\"T02gNN\":\"Algemene Toegang\",\"3ep0Gx\":\"Algemene informatie over je organisator\",\"ziAjHi\":\"Genereer\",\"exy8uo\":\"Genereer code\",\"4CETZY\":\"Routebeschrijving\",\"pjkEcB\":\"Get Paid\",\"lGYzP6\":\"Get paid with Stripe\",\"ZDIydz\":\"Aan de slag\",\"u6FPxT\":\"Koop Tickets\",\"8KDgYV\":\"Bereid je evenement voor\",\"RkXlPZ\":\"GitHub\",\"sr0UJD\":\"Go Back\",\"oNL5vN\":\"Ga naar evenementpagina\",\"gHSuV/\":\"Ga naar de startpagina\",\"8+Cj55\":\"Go to Schedule\",\"6nDzTl\":\"Goede leesbaarheid\",\"76gPWk\":\"Got it\",\"CZXzs4\":\"Grieks\",\"aGWZUr\":\"Bruto-omzet\",\"n8IUs7\":\"Bruto-omzet\",\"O1wAlQ\":\"Guest\",\"LIYoRQ\":\"Gastenbeheer\",\"NUsTc4\":\"Happening now\",\"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\":\"Hi,\",\"/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\":\"Hide details\",\"FmogyU\":\"Opties verbergen\",\"uXNYjR\":\"Uitverkochte datums en tijden verbergen\",\"g9RcYX\":\"Datum verbergen\",\"uMwTx7\":\"Deze categorie 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\":\"Hobbies\",\"yY8wAv\":\"Hours\",\"49Tkiw\":\"Hoe wordt de korting toegepast?\",\"sy9anN\":\"Hoe lang een klant heeft om de aankoop te voltooien na ontvangst van een aanbod. Laat leeg voor geen tijdslimiet.\",\"n2ilNh\":\"How long does the schedule run?\",\"DMr2XN\":\"How often?\",\"cceMns\":\"How VAT is applied to the platform fees we charge you.\",\"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\",\"CY3yHL\":\"Indien aangevinkt, wordt deze categorie verborgen voor het publiek.\",\"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 last \",[\"0\"],\" min\"],\"u7r0G5\":\"In person — set a venue\",\"/LCAwL\":\"Bezig\",\"F1Xp97\":\"Individuele deelnemers\",\"85e6zs\":\"Liquid Token Invoegen\",\"CTWsuc\":\"Instagram\",\"VopR6B\":\"Instant Stripe payouts\",\"nbfdhU\":\"Integraties\",\"I8eJ6/\":\"Internal notes on the attendee's ticket\",\"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\",\"Dn4OyV\":\"Uitgenodigd\",\"IuMGvq\":\"Factuur\",\"a/bUcL\":\"It happens on more than one date\",\"d+Oe9r\":\"It may have been unpublished or removed. Please check the link and try again.\",\"Lj7sBL\":\"Italiaans\",\"F5/CBH\":\"artikel(en)\",\"BzfzPK\":\"Artikelen\",\"rjyWPb\":\"January\",\"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\":[\"Wachtlijst voor \",[\"productDisplayName\"],\" bijtreden\"],\"2gMuHR\":\"Aangemeld\",\"u4ex5r\":\"July\",\"zeEQd/\":\"June\",\"MxjCqk\":\"Alleen op zoek naar je tickets?\",\"xOTzt5\":\"just now\",\"0RihU9\":\"Just wrapped\",\"lB2hSG\":[\"Houd mij op de hoogte van nieuws en evenementen van \",[\"0\"]],\"ioFA9i\":\"Keep the profit.\",\"o66QSP\":\"label updates\",\"RtKKbA\":\"Last\",\"DruLRc\":\"Laatste 14 dagen\",\"ve9JTU\":\"Achternaam is verplicht\",\"h0Q9Iw\":\"Laatste reactie\",\"gw3Ur5\":\"Laatst geactiveerd\",\"FIq1Ba\":\"Later\",\"xvnLMP\":\"Latest check-ins\",\"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\":\"Licht\",\"1qY5Ue\":\"Link verlopen of ongeldig\",\"gggTBm\":\"LinkedIn\",\"nvOPBA\":\"Links toegestaan\",\"2BBAbc\":\"List\",\"dF6vP6\":\"Live\",\"fpMs2Z\":\"LIVE\",\"D9zTjx\":\"Live Evenementen\",\"C33p4q\":\"Loaded dates\",\"WdmJIX\":\"Voorvertoning laden...\",\"IoDI2o\":\"Tokens laden...\",\"G3Ge9Z\":\"Webhook-logs laden...\",\"NFxlHW\":\"Webhooks laden\",\"E0DoRM\":\"Locatie verwijderd\",\"7w8lJU\":\"Locatie opgeslagen\",\"YsRXDD\":\"Locatie bijgewerkt\",\"A/kIva\":\"location updates\",\"iyZPPR\":\"locaties\",\"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\",\"PSRm6/\":\"Zoek mijn tickets op\",\"yJFu/X\":\"Hoofdkantoor\",\"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\":\"Beheer de wachtlijst van uw evenement, bekijk statistieken en bied tickets aan deelnemers aan.\",\"g2npA5\":\"Handmatig aanbod\",\"hg6l4j\":\"March\",\"pqRBOz\":\"Mark as validated (admin override)\",\"2L3vle\":\"Max berichten / 24u\",\"Qp4HWD\":\"Max ontvangers / bericht\",\"3JzsDb\":\"May\",\"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\":\"Minutes\",\"zz/Wd/\":\"Mode\",\"fpMgHS\":\"Mon\",\"hty0d5\":\"Monday\",\"JbIgPz\":\"Geldbedragen zijn geschatte totalen over alle valuta's\",\"qvF+MT\":\"Bewaak en beheer mislukte achtergrondtaken\",\"kY2ll9\":\"month\",\"HajiZl\":\"Maand\",\"+8Nek/\":\"Monthly\",\"1LkxnU\":\"Monthly Pattern\",\"6jefe3\":\"months\",\"f8jrkd\":\"more\",\"JcD7qf\":\"More actions\",\"w36OkR\":\"Meest bekeken evenementen (Laatste 14 dagen)\",\"+Y/na7\":\"Move all dates earlier or later\",\"3DIpY0\":\"Multiple locations\",\"g9cQCP\":\"Multiple ticket types\",\"GfaxEk\":\"Muziek\",\"oVGCGh\":\"Mijn Tickets\",\"8/brI5\":\"Naam is verplicht\",\"sFFArG\":\"Naam moet minder dan 255 tekens bevatten\",\"xxU3NX\":\"Netto-omzet\",\"7I8LlL\":\"New capacity\",\"n1GRql\":\"New label\",\"y0Fcpd\":\"Nieuwe locatie\",\"ArHT/C\":\"Nieuwe aanmeldingen\",\"uK7xWf\":\"New time:\",\"veT5Br\":\"Next occurrence\",\"WXtl5X\":[\"Next: \",[\"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\":\"No attendees to show\",\"PKySlW\":\"No attendees yet for this date.\",\"/UC6qk\":\"Geen attributiegegevens gevonden\",\"E2vYsO\":\"No capabilities reported by Stripe yet.\",\"amMkpL\":\"Geen capaciteit\",\"d2Jf1f\":\"No change\",\"99ntUF\":\"Geen incheck lijsten beschikbaar voor dit evenement.\",\"wG+knX\":\"No check-ins yet\",\"+dAKxg\":\"Geen configuraties gevonden\",\"LiLk8u\":\"No connections available\",\"eb47T5\":\"Geen gegevens gevonden voor de geselecteerde filters. Probeer het datumbereik of de valuta aan te passen.\",\"Zc216S\":\"No date added\",\"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\",\"OtJSnL\":\"Geen data gepland\",\"gEdNe8\":\"No dates scheduled yet\",\"pZNOT9\":\"Geen einddatum\",\"dW40Uz\":\"Geen evenementen gevonden\",\"8pQ3NJ\":\"Geen evenementen die beginnen in de komende 24 uur\",\"8zCZQf\":\"Nog geen evenementen\",\"Yc5YW6\":\"Geen mislukte taken\",\"EpvBAp\":\"Geen factuur\",\"XZkeaI\":\"Geen logboeken gevonden\",\"IcAC6J\":\"Geen overeenkomende lettertypen\",\"nrSs2u\":\"Geen berichten gevonden\",\"Rj99yx\":\"No occurrences available\",\"IFU1IG\":\"No occurrences on this date\",\"OVFwlg\":\"Nog geen bestellingsvragen\",\"EJ7bVz\":\"Geen bestellingen gevonden\",\"NEmyqy\":\"Nog geen bestellingen\",\"a77B6w\":\"No orders yet for this date.\",\"wUv5xQ\":\"Geen organisatoractiviteit in de laatste 14 dagen\",\"vLd1tV\":\"No organizer context available.\",\"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\":\"No products configured for this event.\",\"kY7XDn\":\"Geen producten hebben wachtlijstvermeldingen\",\"8mw4tm\":\"Bericht bij geen producten\",\"wYiAtV\":\"Geen recente accountaanmeldingen\",\"UW90md\":\"Geen ontvangers gevonden\",\"QoAi8D\":\"Geen reactie\",\"JeO7SI\":\"Geen antwoord\",\"EK/G11\":\"Nog geen reacties\",\"59OWd3\":\"Geen opgeslagen locaties\",\"mPdY6W\":\"Geen suggesties\",\"3sRuiW\":\"Geen tickets gevonden\",\"debCrL\":\"Geen tickets te koop\",\"k2C0ZR\":\"No upcoming dates\",\"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\":\"non-edited\",\"Itw24Q\":\"Not checked in\",\"x5+Lcz\":\"Niet Ingecheckt\",\"8n10sz\":\"Niet in Aanmerking\",\"kLvU3F\":\"Notify attendees and stop sales\",\"t9QlBd\":\"November\",\"kAREMN\":\"Number of dates to create\",\"6u1B3O\":\"Occurrence\",\"mmoE62\":\"Occurrence Cancelled\",\"V9flmL\":\"Occurrence Schedule\",\"Kh3WO8\":\"Occurrence Summary\",\"byXCTu\":\"Occurrences\",\"KATw3p\":\"Occurrences (future only)\",\"85rTR2\":\"Occurrences can be configured after creation\",\"dzQfDY\":\"October\",\"BwJKBw\":\"van\",\"9h7RDh\":\"Aanbieden\",\"EfK2O6\":\"Plek aanbieden\",\"3sVRey\":\"Tickets aanbieden\",\"2O7Ybb\":\"Aanbod-tijdslimiet\",\"1jUg5D\":\"Aangeboden\",\"l+/HS6\":[\"Aanbiedingen verlopen na \",[\"timeoutHours\"],\" uur.\"],\"6Aih4U\":\"Offline\",\"nO3VbP\":[\"In de verkoop \",[\"0\"]],\"oXOSPE\":\"Online\",\"aqmy5k\":\"Online — provide connection details\",\"LuZBbx\":\"Online & in-person\",\"IXuOqt\":\"Online & in-person — see schedule\",\"WjSpu5\":\"Online evenement\",\"scPxI/\":[\"Nog maar \",[\"capacity\"],\" over\"],\"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\",\"wkpaqp\":\"Alleen startdatum en -tijd tonen\",\"DMk8F0\":\"Only tickets count toward capacity\",\"M2w1ni\":\"Alleen zichtbaar met promocode\",\"y8Bm7C\":\"Open check-in\",\"RLz7P+\":\"Open occurrence\",\"cDSdPb\":\"Optionele bijnaam die in keuzelijsten wordt getoond, bijv. \\\"HQ-vergaderruimte\\\"\",\"HXMJxH\":\"Optionele tekst voor disclaimers, contactinfo of danknotities (alleen één regel)\",\"L565X2\":\"opties\",\"8m9emP\":\"or add a single date\",\"eBskDE\":\"Of schakel offline betalingen in en schakel Stripe uit\",\"dSeVIm\":\"order\",\"c/TIyD\":\"Bestelling & Ticket\",\"H5qWhm\":\"Bestelling geannuleerd\",\"b6+Y+n\":\"Bestelling voltooid\",\"x4MLWE\":\"Bestelling Bevestiging\",\"CsTTH0\":\"Bestelbevestiging succesvol opnieuw verzonden\",\"ppuQR4\":\"Bestelling aangemaakt\",\"xtQzag\":\"Order details\",\"vrSW9M\":\"Bestelling is geannuleerd en terugbetaald. De eigenaar van de bestelling is op de hoogte gesteld.\",\"rzw+wS\":\"Bestelhouders\",\"oI/hGR\":\"Bestelling-ID\",\"RQCXz6\":\"Bestellimieten\",\"SO9AEF\":\"Bestellingslimieten ingesteld\",\"vu6Arl\":\"Bestelling gemarkeerd als betaald\",\"sLbJQz\":\"Bestelling niet gevonden\",\"kvYpYu\":\"Bestelling niet gevonden\",\"eJ8SvM\":\"Order number, purchase date, purchaser email\",\"FaPYw+\":\"Eigenaar bestelling\",\"eB5vce\":\"Bestel eigenaars met een specifiek product\",\"CxLoxM\":\"Besteleigenaars met producten\",\"UkHo4c\":\"Bestelref.\",\"EZy55F\":\"Bestelling terugbetaald\",\"6eSHqs\":\"Bestelstatussen\",\"oW5877\":\"Bestelling Totaal\",\"e7eZuA\":\"Bijgewerkte bestelling\",\"1SQRYo\":\"Bestelling succesvol bijgewerkt\",\"3NT0Ck\":\"Bestelling is geannuleerd\",\"V5khLm\":\"orders\",\"sd5IMt\":\"Voltooide bestellingen\",\"5It1cQ\":\"Geëxporteerde bestellingen\",\"UQ0ACV\":\"Totaal bestellingen\",\"B/EBQv\":\"Bestellingen:\",\"qtGTNu\":\"Organische accounts\",\"P/JHA4\":\"Organisator succesvol gearchiveerd\",\"S3CZ5M\":\"Organisator-dashboard\",\"GzjTd0\":\"Organisator succesvol verwijderd\",\"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\":\"Organizers\",\"/IX/7x\":\"Overig\",\"RsiDDQ\":\"Andere Lijsten (Ticket Niet Inbegrepen)\",\"aDfajK\":\"Outdoors\",\"qMASRF\":\"Uitgaande berichten\",\"iCOVQO\":\"Override\",\"GpFTEc\":\"Override fees on this organizer\",\"M9ZhMP\":\"Override price\",\"cnVIpl\":\"Override removed\",\"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\":\"Past due\",\"xTPjSy\":\"Afgelopen evenementen\",\"/l/ckQ\":\"Plak URL\",\"URAE3q\":\"Gepauzeerd\",\"4fL/V7\":\"Betalen\",\"c2/9VE\":\"Payload\",\"5cxUwd\":\"Betaaldatum\",\"ENEPLY\":\"Betaalmethode\",\"8Lx2X7\":\"Betaling ontvangen\",\"fx8BTd\":\"Betalingen niet beschikbaar\",\"C+ylwF\":\"Payouts\",\"UbRKMZ\":\"Pending\",\"UkM20g\":\"In afwachting van beoordeling\",\"dPYu1F\":\"Per deelnemer\",\"mQV/nJ\":\"per min\",\"+kvxv+\":\"per bestelling\",\"VlXNyK\":\"Per bestelling\",\"NhuGd7\":\"per product\",\"hauDFf\":\"Per ticket\",\"mnF83a\":\"Percentage vergoeding\",\"TNLuRD\":\"Percentage fee (%)\",\"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\":\"Permanently remove this date\",\"6kPk3+\":\"Persoonlijke gegevens\",\"zmwvG2\":\"Telefoon\",\"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\":\"Een evenement plannen?\",\"J3lhKT\":\"Platformkosten\",\"RD51+P\":[\"Platformkosten van \",[\"0\"],\" afgetrokken van uw uitbetaling\"],\"br3Y/y\":\"Platformkosten\",\"3buiaw\":\"Platformkosten rapport\",\"kv9dM4\":\"Platformomzet\",\"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\":\"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\":\"Please select a date and time\",\"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\":\"Position\",\"OESu7I\":\"Voorkom oververkoop door voorraad te delen over meerdere tickettypes.\",\"NgVUL2\":\"Voorbeeld afrekenformulier\",\"cs5muu\":\"Voorbeeld van de evenementpagina\",\"Jm2AC3\":\"Price Tier\",\"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\":\"Product settings cannot be edited for cancelled dates.\",\"2339ej\":\"Product settings saved successfully\",\"ldVIlB\":\"Bijgewerkt product\",\"CP3D8G\":\"Progress\",\"JoKGiJ\":\"Kortingscode\",\"k3wH7i\":\"Gebruik van promocodes en uitsplitsing van kortingen\",\"tZqL0q\":\"promo codes\",\"oCHiz3\":\"Promo codes\",\"uEhdRh\":\"Alleen promo\",\"dLm8V5\":\"Promotionele e-mails kunnen leiden tot accountopschorting\",\"W0ETyY\":\"Vul minimaal één adresveld in (locatie, straat, stad of land).\",\"2W/7Gz\":\"Provide the following before Stripe's next review to keep payouts flowing.\",\"EEYbdt\":\"Publiceren\",\"JcgJKc\":\"Toch publiceren\",\"evDBV8\":\"Evenement publiceren\",\"2zEfOd\":\"Publish your event\",\"L7nrC8\":\"Door te publiceren wordt je evenementpagina openbaar en worden registraties geopend.\",\"dsFmM+\":\"Gekocht\",\"JunetL\":\"Purchaser\",\"phmeUH\":\"Purchaser email\",\"ywR4ZL\":\"QR code check-in\",\"oWXNE5\":\"Aant.\",\"biEyJ4\":\"Question answers\",\"k/bJj0\":\"Vragen herschikt\",\"b24kPi\":\"Wachtrij\",\"lTPqpM\":\"Quick Tip\",\"fqDzSu\":\"Tarief\",\"mnUGVC\":\"Limiet overschreden. Probeer het later opnieuw.\",\"t41hVI\":\"Plek opnieuw aanbieden\",\"TNclgc\":\"Reactivate this date? It will be reopened for future sales.\",\"RENQ6j\":\"Klaar om live te gaan?\",\"uqoRbb\":\"Real-time analytics\",\"xzRvs4\":[\"Productupdates van \",[\"0\"],\" ontvangen.\"],\"pLXbi8\":\"Recente accountaanmeldingen\",\"M1HGuR\":\"Recent activity\",\"3kJ0gv\":\"Recent Attendees\",\"qhfiwV\":\"Recent check-ins\",\"S+0XMX\":\"Recent orders\",\"Fi3b48\":\"Recente bestellingen\",\"7hPBBn\":\"ontvanger\",\"jp5bq8\":\"ontvangers\",\"yPrbsy\":\"Ontvangers\",\"E1F5Ji\":\"Ontvangers zijn beschikbaar nadat het bericht is verzonden\",\"WEYdDv\":\"Recommended\",\"wuhHPE\":\"Recurring\",\"asLqwt\":\"Terugkerend evenement\",\"s3uzsK\":\"Instellingen terugkerend evenement\",\"D0tAMe\":\"Recurring events\",\"JjMIKU\":\"Reddit\",\"HiGkFu\":\"Doorverwijzen naar Stripe...\",\"pnoTN5\":\"Verwijzingsaccounts\",\"ACKu03\":\"Voorbeeld Vernieuwen\",\"vuFYA6\":\"Refund all orders for these dates\",\"4cRUK3\":\"Refund all orders for this date\",\"fKn/k6\":\"Terugbetalingsbedrag\",\"qY4rpA\":\"Terugbetaling mislukt\",\"FaK/8G\":[\"Bestelling \",[\"0\"],\" terugbetalen\"],\"MGbi9P\":\"Terugbetaling in behandeling\",\"BDSRuX\":[\"Terugbetaald: \",[\"0\"]],\"bU4bS1\":\"Terugbetalingen\",\"rYXfOA\":\"Regionale instellingen\",\"5tl0Bp\":\"Registratievragen\",\"ZNo5k1\":\"Remaining\",\"Bjh87R\":\"Remove label from all dates\",\"IVZaEo\":\"Verwijdert uitverkochte datums en tijden volledig van de evenementpagina. Indien uitgeschakeld blijven ze zichtbaar en worden ze als uitverkocht gemarkeerd.\",\"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\":\"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\":\"Reset to base price\",\"kCn6wb\":\"Opnieuw instellen...\",\"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\":\"results\",\"6gRgw8\":\"Opnieuw proberen\",\"1BG8ga\":\"Alles opnieuw proberen\",\"rDC+T6\":\"Taak opnieuw proberen\",\"CbnrWb\":\"Terug naar evenement\",\"Lf7TCn\":\"Herbruikbare locaties verschijnen hier automatisch wanneer je evenementen met adressen aanmaakt, en je kunt ook zelf locaties toevoegen.\",\"mdQ0zb\":\"Herbruikbare locaties voor je evenementen. Locaties die via automatisch aanvullen zijn aangemaakt, worden hier automatisch opgeslagen.\",\"XFOPle\":\"Reuse\",\"1Zehp4\":\"Reuse a Stripe connection from another organizer in this account.\",\"Oo/PLb\":\"Omzetoverzicht\",\"CfuueU\":\"Aanbod intrekken\",\"RIgKv+\":\"Run until a specific date\",\"dFFW9L\":[\"Uitverkoop eindigde \",[\"0\"]],\"loCKGB\":[\"Uitverkoop eindigt \",[\"0\"]],\"wlfBad\":\"Uitverkoopperiode\",\"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\":\"Verkoopperiode ingesteld\",\"ftzaMf\":\"Verkoopperiode, bestellingslimieten, zichtbaarheid\",\"zpekWp\":[\"Uitverkoop begint \",[\"0\"]],\"mUv9U4\":\"Verkoop\",\"9KnRdL\":\"Verkoop is gepauzeerd\",\"JC3J0k\":\"Sales, attendance, and check-in breakdown per occurrence\",\"3VnlS9\":\"Verkopen, bestellingen en prestatie-indicatoren voor alle evenementen\",\"3Q1AWe\":\"Verkoop:\",\"LeuERW\":\"Same as event\",\"B4nE3N\":\"Voorbeeldticketprijs\",\"8BRPoH\":\"Voorbeeldlocatie\",\"PiK6Ld\":\"Sat\",\"+5kO8P\":\"Saturday\",\"zJiuDn\":\"Save fee override\",\"NB8Uxt\":\"Save Schedule\",\"KZrfYJ\":\"Sociale links opslaan\",\"9Y3hAT\":\"Sjabloon Opslaan\",\"C8ne4X\":\"Ticketontwerp Opslaan\",\"cTI8IK\":\"Save VAT settings\",\"6/TNCd\":\"BTW-instellingen opslaan\",\"4RvD9q\":\"Opgeslagen locatie\",\"cgw0cL\":\"Opgeslagen locaties\",\"Fbqm/I\":\"Saving an override creates a dedicated configuration for this organizer if it's currently on the system default.\",\"I+FvbD\":\"Scannen\",\"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\":\"Later plannen\",\"NAzVVw\":\"Bericht plannen\",\"Fz09JP\":\"Schedule starts on\",\"4ba0NE\":\"Gepland\",\"qcP/8K\":\"Geplande tijd\",\"A1taO8\":\"Search\",\"ftNXma\":\"Zoek affiliates...\",\"VMU+zM\":\"Search attendees\",\"VY+Bdn\":\"Zoeken op accountnaam of e-mail...\",\"VX+B3I\":\"Zoeken op evenement titel of organisator...\",\"R0wEyA\":\"Zoeken op taaknaam of uitzondering...\",\"YnMfsK\":\"Zoeken op naam of adres...\",\"VT+urE\":\"Zoeken op naam of e-mail...\",\"GHdjuo\":\"Zoeken op naam, e-mail of account...\",\"4mBFO7\":\"Search by name, order #, ticket # or email\",\"20ce0U\":\"Zoeken op bestelling-ID, klantnaam of e-mail...\",\"4DSz7Z\":\"Zoeken op onderwerp, evenement of account...\",\"nQC7Z9\":\"Search dates...\",\"iRtEpV\":\"Search dates…\",\"JRM7ao\":\"Search for an address\",\"BWF1kC\":\"Berichten zoeken...\",\"5WYZKZ\":\"Zoekresultaten\",\"IG85fV\":\"Zoek opgeslagen locaties of vind een adres...\",\"3aD3GF\":\"Seasonal\",\"ku//5b\":\"Second\",\"Mck5ht\":\"Veilige afrekening\",\"s7tXqF\":\"See schedule\",\"JFap6u\":\"See what Stripe still needs\",\"p7xUrt\":\"Selecteer een categorie\",\"hTKQwS\":\"Select a Date & Time\",\"Ps6Xtf\":\"Select a date to see available times\",\"e4L7bF\":\"Selecteer een bericht om de inhoud te bekijken\",\"zPRPMf\":\"Selecteer een niveau\",\"BFRSTT\":\"Selecteer Account\",\"wgNoIs\":\"Select all\",\"mCB6Je\":\"Selecteer alles\",\"aCEysm\":[\"Select all on \",[\"0\"]],\"a6+167\":\"Selecteer een evenement\",\"CFbaPk\":\"Selecteer deelnemersgroep\",\"88a49s\":\"Select camera\",\"tVW/yo\":\"Selecteer valuta\",\"SJQM1I\":\"Select date\",\"n9ZhRa\":\"Selecteer einddatum en tijd\",\"gTN6Ws\":\"Selecteer eindtijd\",\"0U6E9W\":\"Selecteer evenementcategorie\",\"j9cPeF\":\"Soorten evenementen selecteren\",\"ypTjHL\":\"Select occurrence\",\"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\":\"selected\",\"ylXj1N\":\"Geselecteerd\",\"uq3CXQ\":\"Sell out your event.\",\"oBXbO4\":\"Selling a physical product? Cap its quantity on the <0>products page instead.\",\"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\":\"Send to all occurrences, or choose a specific one\",\"QEQlnV\":\"Verstuur uw eerste bericht\",\"IoAuJG\":\"Verzenden...\",\"h69WC6\":\"Verzonden\",\"BVu2Hz\":\"Verzonden door\",\"ZFa8wv\":\"Sent to attendees when a scheduled date is cancelled\",\"SPdzrs\":\"Verzonden naar klanten wanneer ze een bestelling plaatsen\",\"LxSN5F\":\"Verzonden naar elke deelnemer met hun ticketgegevens\",\"hgvbYY\":\"September\",\"5sN96e\":\"Session cancelled\",\"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\":\"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\":\"Stel inchecklijsten in voor verschillende ingangen, sessies of dagen.\",\"TaWVGe\":\"Set up payouts\",\"JA//e6\":\"Set up schedule\",\"gzXY7l\":\"Set Up Schedule\",\"0Ls9qe\":\"Set up the tickets you'll sell and their prices\",\"xMO+Ao\":\"Stel je organisatie in\",\"5pEFnq\":\"Set up your schedule\",\"h/9JiC\":\"Set Up Your Schedule\",\"zRRuUD\":\"Set up your schedule in the next steps\",\"ETC76A\":\"Set, change, or remove the date's location or online details\",\"C3htzi\":\"Instelling bijgewerkt\",\"Ohn74G\":\"Instellingen & ontwerp\",\"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\":\"Deel affiliatelink\",\"hL7sDJ\":\"Deel organisatorpagina\",\"jy6QDF\":\"Gedeeld capaciteitsbeheer\",\"jDNHW4\":\"Shift times\",\"tPfIaW\":[\"Shifted times for \",[\"count\"],\" date(s)\"],\"WwlM8F\":\"Geavanceerde opties tonen\",\"cMW+gm\":[\"Toon alle platforms (\",[\"0\"],\" meer met waarden)\"],\"wXi9pZ\":\"Show attendee notes to non-logged-in staff\",\"4LZFir\":\"Volledige datumbereik tonen\",\"UVPI5D\":\"Toon minder platforms\",\"Eu/N/d\":\"Toon marketing opt-in selectievakje\",\"SXzpzO\":\"Toon marketing opt-in selectievakje standaard\",\"b33PL9\":\"Toon meer platforms\",\"Eut7p9\":\"Show order details to non-logged-in staff\",\"+RoWKN\":\"Show question answers to non-logged-in staff\",\"jbcx6L\":\"Show remaining capacity on event dates\",\"rXxBOx\":\"Show remaining capacity to buyers\",\"t1LIQW\":[\"Toont \",[\"0\"],\" van \",[\"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\":\"Aangemeld\",\"5C7J+P\":\"Single Event\",\"E//btK\":\"Skip manually edited dates\",\"paESr6\":\"Slowaaks\",\"9wu8nm\":\"Snapchat\",\"kIKb9e\":\"Sociaal\",\"d0rUsW\":\"Sociale links\",\"j/TOB3\":\"Sociale links & website\",\"s9KGXU\":\"Verkocht\",\"yp+0jj\":\"sold out\",\"1hupow\":\"Uitverkocht, wachtlijst beschikbaar\",\"iACSrw\":\"Some details are hidden from public access. Log in to view everything.\",\"Dia6iz\":\"Something went wrong while deleting the image. Please try again.\",\"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\":\"Spirituality\",\"oPaRES\":\"Split check-in across days, areas, or ticket types. Share the link with staff — no account needed on their end.\",\"7JFNej\":\"Sport\",\"/bfV1Y\":\"Staff instructions\",\"tXkhj/\":\"Start\",\"StWUH4\":\"Start check-in\",\"JcQp9p\":\"Startdatum & tijd\",\"0m/ekX\":\"Startdatum & tijd\",\"izRfYP\":\"Startdatum is verplicht\",\"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/\":\"Statistieken\",\"GVUxAX\":\"Statistieken zijn gebaseerd op de aanmaakdatum van het account\",\"29Hx9U\":\"Stats\",\"5ia+r6\":\"Still needed\",\"wuV0bK\":\"Stop Imiteren\",\"s/KaDb\":\"Stripe connected\",\"Bk06QI\":\"Stripe verbonden\",\"akZMv8\":[\"Stripe connection copied from \",[\"0\"],\".\"],\"v0aRY1\":\"Stripe didn't return a setup link. Please try again.\",\"aKtF0O\":\"Stripe niet verbonden\",\"9i0++A\":\"Stripe betalings-ID\",\"R1lIMV\":\"Stripe will need a few more details soon\",\"FzcCHA\":\"Stripe will walk you through a few quick questions to finish setup.\",\"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\",\"kRWc2g\":\"Instellingen terugkerend evenement 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\":\"Sun\",\"DBC3t5\":\"Sunday\",\"UaISq3\":\"Zweeds\",\"JZTQI0\":\"Wissel van organisator\",\"9YHrNC\":\"Systeemstandaard\",\"lruQkA\":\"Tap this screen to resume scanning\",\"TJUrME\":[\"Targeting attendees across \",[\"0\"],\" selected sessions.\"],\"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\":\"Team collaboration\",\"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\":\"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\":\"Sjabloon Actief\",\"QHhZeE\":\"Sjabloon succesvol aangemaakt\",\"xrWdPR\":\"Sjabloon succesvol verwijderd\",\"G04Zjt\":\"Sjabloon succesvol opgeslagen\",\"xowcRf\":\"Servicevoorwaarden\",\"6K0GjX\":\"Tekst kan moeilijk leesbaar zijn\",\"nm3Iz/\":\"Bedankt voor uw aanwezigheid!\",\"pYwj0k\":\"Thanks,\",\"k3IitN\":\"That's a wrap\",\"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.\",\"7oksH+\":[\"De korting wordt afgetrokken van elk in aanmerking komend product. Bijv. \",[\"currencySymbol\"],\"10 korting × 3 tickets = \",[\"currencySymbol\"],\"30 korting.\"],\"sKL8k2\":\"De korting wordt eenmalig afgetrokken van het ordertotaal.\",\"cDHM1d\":\"Het e-mailadres is gewijzigd. De deelnemer ontvangt een nieuw ticket op het bijgewerkte e-mailadres.\",\"tXadb0\":\"Het evenement dat je zoekt is momenteel niet beschikbaar. Mogelijk is het verwijderd, verlopen of is de URL onjuist.\",\"5fPdZe\":\"The first date this schedule will generate from.\",\"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.\",\"Np4eLs\":[\"The maximum is \",[\"MAX_PREVIEW\"],\" sessions. Please reduce the date range, frequency, or number of sessions per day.\"],\"sYLeDq\":\"De organisator die je zoekt is niet gevonden. De pagina is mogelijk verplaatst, verwijderd of de URL is onjuist.\",\"PCr4zw\":\"The override is recorded in the order audit log.\",\"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\",\"OVSkIF\":\"De snelle bruine vos springt over de luie hond.\",\"z0KrIG\":\"De geplande tijd is vereist\",\"EWErQh\":\"De geplande tijd moet in de toekomst liggen\",\"UNd0OU\":[\"The session for \\\"\",[\"title\"],\"\\\" originally scheduled for \",[\"0\"],\" has been rescheduled.\"],\"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\",\"ybBP2H\":\"There are no products available for this date. Please choose another date.\",\"O7g4eR\":\"There are no upcoming dates for this event\",\"062KsE\":\"These details are shown on the attendee's ticket and order summary for this date only.\",\"5Eu+tn\":\"Deze gegevens worden alleen getoond als de bestelling succesvol is afgerond.\",\"jQjwR+\":\"These details will replace any existing location on the affected dates and show on attendee tickets.\",\"6eaLu/\":\"Deze prijzen gelden voor alle datums in je schema, en de aantallen per niveau beperken de totale verkoop van alle datums samen. Verkoopdatums van niveaus gelden globaal. Je kunt prijzen voor afzonderlijke datums overschrijven op de <0>pagina Datumschema.\",\"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\":\"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\":\"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/\":[\"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.\",\"E9BqZw\":\"This date only\",\"RzEvf5\":\"Dit evenement is afgelopen\",\"kc4bIA\":\"Dit evenement heeft nog geen tickets of producten, dus deelnemers kunnen zich niet registreren.\",\"eMaNd0\":\"This event is not available\",\"YClrdK\":\"Dit evenement is nog niet gepubliceerd\",\"GL6z+k\":\"Dit evenement is uitverkocht\",\"pIwDhS\":\"This event's dates and times are set on the occurrence schedule.\",\"ny5rgr\":\"This is a recurring event\",\"tc64Zz\":\"Dit is de naam van de categorie die op de evenementpagina wordt weergegeven.\",\"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.\",\"5DpZrC\":\"Dit beperkt de totale verkoop van alle datums in je schema samen — het is geen limiet per datum. Om het aantal deelnemers per datum te beperken, stel je een capaciteit in op de <0>pagina Datumschema.\",\"L7dIM7\":\"Deze link is ongeldig of verlopen.\",\"MR5ygV\":\"Deze link is niet meer geldig\",\"9LEqK0\":\"Deze naam is zichtbaar voor eindgebruikers\",\"QdUMM9\":\"This occurrence is at capacity\",\"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\",\"qEGn8I\":\"Dit terugkerende evenement heeft nog geen data, dus er valt voor deelnemers niets te boeken.\",\"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.\",\"1LuJNw\":\"Dit ticket is niet langer geldig\",\"0Ew0uk\":\"Dit ticket is net gescand. Wacht even voordat u opnieuw scant.\",\"FYXq7k\":[\"This will affect \",[\"loadedAffectedCount\"],\" date(s).\"],\"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\":\"Throughput\",\"+FjWgX\":\"Thu\",\"kkDQ8m\":\"Thursday\",\"0GSPnc\":\"Ticketontwerp\",\"EZC/Cu\":\"Ticketontwerp succesvol opgeslagen\",\"bbslmb\":\"Ticket ontwerper\",\"1BPctx\":\"Ticket voor\",\"HGuXjF\":\"Tickethouders\",\"CMUt3Y\":\"Tickethouders\",\"awHmAT\":\"Ticket-ID\",\"6czJik\":\"Ticket Logo\",\"t79rDv\":\"Ticket niet gevonden\",\"6tmWch\":\"Ticket of product\",\"1tfWrD\":\"Ticketvoorbeeld voor\",\"KnjoUA\":\"Ticketprijs\",\"pGZOcL\":\"Ticket succesvol opnieuw verzonden\",\"o02GZM\":\"Ticket sales have ended for this event\",\"8jLPgH\":\"Tickettype\",\"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\":\"Time\",\"fXf2r5\":[\"Times shown in \",[\"timezoneAbbr\"]],\"dMtLDE\":\"to\",\"/jQctM\":\"Aan\",\"tiI71C\":\"Om uw limieten te verhogen, neem contact met ons op via\",\"ecUA8p\":\"Today\",\"W428WC\":\"Kolommen schakelen\",\"BRMXj0\":\"Tomorrow\",\"UBSG1X\":\"Top organisatoren (Laatste 14 dagen)\",\"3sZ0xx\":\"Totaal Accounts\",\"SMDzqJ\":\"Totaal deelnemers\",\"orBECM\":\"Totaal geïnd\",\"k5CU8c\":\"Totaal inschrijvingen\",\"4B7oCp\":\"Totale kosten\",\"sMMlTX\":\"Total fees\",\"mlvCEl\":\"Total orders\",\"2AW/k5\":\"Totaal aantal voor alle datums\",\"dp8BCb\":\"Total tax\",\"vb0Q0/\":\"Totaal Gebruikers\",\"oJjplO\":\"Totaal weergaven\",\"rBZ9pz\":\"Tours\",\"orluER\":\"Volg accountgroei en prestaties per attributiebron\",\"YwKzpH\":\"Tracking & Analyse\",\"GUA0Jy\":\"Try a different search term or filter\",\"2P/OWN\":\"Try adjusting your filters to see more dates.\",\"ouM5IM\":\"Probeer een ander e-mailadres\",\"3DZvE7\":\"Probeer Hi.Events Gratis\",\"vq2WxD\":\"Tue\",\"G3myU+\":\"Tuesday\",\"Kz91g/\":\"Turks\",\"GdOhw6\":\"Geluid uitschakelen\",\"KUOhTy\":\"Geluid inschakelen\",\"dBeuY2\":\"Twitch\",\"QytzQr\":\"Typ \\\"verwijderen\\\" om te bevestigen\",\"nWRfmt\":\"Typografie\",\"IrVSu+\":\"Kan product niet dupliceren. Controleer uw gegevens\",\"Vx2J6x\":\"Kan deelnemer niet ophalen\",\"h0dx5e\":\"Kan niet aan de wachtlijst worden toegevoegd\",\"DaE0Hg\":\"Unable to load attendee details.\",\"GlnD5Y\":\"Unable to load products for this date. Please try again.\",\"17VbmV\":\"Unable to undo check-in\",\"n57zCW\":\"Niet-toegewezen accounts\",\"9uI/rE\":\"Undo\",\"Ef7StM\":\"Onbekend\",\"ZBAScj\":\"Onbekende deelnemer\",\"MEIAzV\":\"Naamloos\",\"K6L5Mx\":\"Naamloze locatie\",\"7yiFvZ\":\"Onbetaald\",\"X13xGn\":\"Niet vertrouwd\",\"gyXpQN\":\"Upcoming events\",\"Pp1sWX\":\"Affiliate bijwerken\",\"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 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 listening\",\"dyTklH\":\"USB scanner paused\",\"OHJXlK\":\"Gebruik <0>Liquid-templating om uw e-mails te personaliseren\",\"/rsy72\":\"Use event default\",\"0k4cdb\":\"Gebruik bestelgegevens voor alle deelnemers. Namen en e-mailadressen van deelnemers komen overeen met de informatie van de koper.\",\"bA31T4\":\"Gebruik de gegevens van de koper voor alle deelnemers\",\"PpgtnC\":\"Dit adres gebruiken\",\"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\":\"VAT number\",\"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\":\"VAT registered\",\"Nfbg76\":\"BTW-instellingen succesvol opgeslagen\",\"UvYql/\":\"BTW-instellingen opgeslagen. We valideren uw BTW-nummer op de achtergrond.\",\"bXn1Jz\":\"VAT settings updated\",\"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\":\"VAT: not registered\",\"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\":\"View All\",\"yA/6BX\":\"View all →\",\"6CQ7/B\":\"View all capabilities\",\"YSE15b\":\"View all check-in lists\",\"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\":[\"View details for \",[\"0\"],\" \",[\"1\"]],\"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\":\"Waiting for scan…\",\"u0n+wz\":\"Wachtlijst\",\"3RXFtE\":\"Wachtlijst ingeschakeld\",\"TwnTPy\":\"Wachtlijstaanbod verlopen\",\"aUi/Dz\":\"Waarschuwing: dit is de standaardsysteemconfiguratie. Wijzigingen zijn van invloed op alle accounts die geen specifieke configuratie toegewezen hebben.\",\"aT/44s\":\"We couldn't copy that Stripe connection. Please try again.\",\"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.\",\"Fjj/5/\":\"We couldn't load the check-in lists. Please try again.\",\"ADsQ23\":\"We couldn't reach Stripe just now. Please try again in a moment.\",\"HJKdzP\":\"Er is een probleem opgetreden bij het laden van deze pagina. Probeer het opnieuw.\",\"jegrvW\":\"We partner with Stripe to send payouts straight to your bank account.\",\"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 uw ervaring te verbeteren.\",\"x8rEDQ\":\"We konden uw BTW-nummer niet valideren na meerdere pogingen. We blijven het op de achtergrond proberen. Kom later terug.\",\"mfM/HJ\":[\"We sturen u een e-mail als er een plek beschikbaar komt voor \",[\"productDisplayName\"],\" op \",[\"occurrenceDate\"],\".\"],\"iy+M+c\":[\"We sturen u een e-mail als er een plek beschikbaar komt voor \",[\"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 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've made changes to the schedule for \\\"\",[\"title\"],\"\\\" — \",[\"description\"],\" affecting \",[\"affectedCount\"],\" session(s).\"],\"Fq/Nx7\":\"We hebben een 5-cijferige verificatiecode verzonden naar:\",\"GdWB+V\":\"Webhook succesvol aangemaakt\",\"2X4ecw\":\"Webhook succesvol verwijderd\",\"ndBv0v\":\"Webhook integrations\",\"CThMKa\":\"Webhook logboeken\",\"I0adYQ\":\"Webhook-ondertekeningsgeheim\",\"nuh/Wq\":\"Webhook URL\",\"8BMPMe\":\"Webhook verzendt geen meldingen\",\"FSaY52\":\"Webhook stuurt meldingen\",\"v1kQyJ\":\"Webhooks\",\"On0aF2\":\"Website\",\"0f7U0k\":\"Wed\",\"VAcXNz\":\"Wednesday\",\"64X6l4\":\"week\",\"4XSc4l\":\"Weekly\",\"IAUiSh\":\"weeks\",\"vKLEXy\":\"Weibo\",\"9eF5oV\":\"Welkom terug\",\"QDWsl9\":[\"Welkom bij \",[\"0\"],\", \",[\"1\"],\" 👋\"],\"LETnBR\":[\"Welkom bij \",[\"0\"],\", hier is een overzicht van al je evenementen\"],\"DDbx7K\":\"Wellness\",\"ywRaYa\":\"What time?\",\"FaSXqR\":\"Wat voor type evenement?\",\"0WyYF4\":\"What unauthenticated staff can see\",\"2+ExvJ\":\"WhatsApp\",\"cxsKvw\":\"Wanneer een check-in wordt verwijderd\",\"RPe6bE\":\"When a date is cancelled on a recurring event\",\"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 aanmelden voor een wachtlijst om op de hoogte te worden gebracht wanneer er plekken beschikbaar komen.\",\"OIkHj+\":\"Wanneer een product uitverkocht is, kunnen klanten zich aanmelden voor een wachtlijst om op de hoogte te worden gebracht wanneer er plekken beschikbaar komen. Klanten melden zich aan voor de wachtlijst voor een specifieke datum en aanbiedingen worden per datum gedaan.\",\"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\":\"Wanneer klanten tickets kopen, verschijnen hun bestellingen hier.\",\"pm9tpn\":\"Indien ingeschakeld, kunnen kopers hun naam en e-mailadres in één keer naar alle deelnemers kopiëren. Schakel dit uit om de optie \\\"Alle deelnemers\\\" te verwijderen; kopers kunnen hun gegevens nog steeds naar de eerste deelnemer kopiëren, de rest moet afzonderlijk worden ingevoerd.\",\"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.\",\"uchB0M\":\"Widget voorbeeld\",\"uvIqcj\":\"Workshop\",\"EpknJA\":\"Schrijf hier je bericht...\",\"nhtR6Y\":\"X (Twitter)\",\"7qI8sJ\":\"year\",\"zkWmBh\":\"Yearly\",\"+BGee5\":\"years\",\"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+\":\"You can override this for individual dates later.\",\"paWwQ0\":\"U kunt tickets indien nodig nog steeds handmatig aanbieden.\",\"jTDzpA\":\"U kunt de laatste actieve organisator van uw account niet archiveren.\",\"D8baxD\":\"Je hebt betaalde tickets, maar Stripe is nog niet verbonden, dus je kunt geen betalingen ontvangen.\",\"5VGIlq\":\"U heeft uw berichtenlimiet bereikt.\",\"casL1O\":\"Je hebt belastingen en kosten toegevoegd aan een Gratis product. Wilt u deze verwijderen?\",\"9jJNZY\":\"U moet uw verantwoordelijkheden erkennen voordat u 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/\":\"You need to create at least one occurrence before you can add attendees to this recurring event.\",\"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\":\"You'll be able to set up dates, schedules, and recurrence rules in the next step.\",\"zKAheG\":\"You're changing session times\",\"MNFIxz\":[\"Je gaat naar \",[\"0\"],\"!\"],\"ZlLcht\":[\"U meldt zich aan voor de wachtlijst voor \",[\"occurrenceDate\"],\".\"],\"qGZz0m\":\"Je staat op de wachtlijst!\",\"/5HL6k\":\"Je hebt een plek aangeboden gekregen!\",\"gbjFFH\":\"You've changed the session time\",\"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\":\"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\":\"Je tickets zijn bevestigd.\",\"EmFsMZ\":\"Uw BTW-nummer staat in de wachtrij voor validatie\",\"QBlhh4\":\"Uw BTW-nummer wordt gevalideerd wanneer u opslaat\",\"fT9VLt\":\"Uw wachtlijstaanbod is verlopen en we konden uw bestelling niet voltooien. Meld u opnieuw aan voor de wachtlijst om op de hoogte te worden gebracht 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 905ca3b3b9..b00cedb456 100644 --- a/frontend/src/locales/nl.po +++ b/frontend/src/locales/nl.po @@ -180,11 +180,11 @@ msgstr "" msgid "{totalCount} ticket types" msgstr "{totalCount} tickettypen" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:554 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:567 msgid "{totalOccurrences} dates" msgstr "" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:547 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:560 msgid "{totalOccurrences} sessions across {0} dates ({1, plural, one {# session} other {# sessions}} per day)" msgstr "" @@ -517,7 +517,7 @@ msgstr "Actieve evenementen" msgid "Active payment methods" msgstr "" -#: src/components/routes/event/OccurrencesTab/index.tsx:400 +#: src/components/routes/event/OccurrencesTab/index.tsx:402 msgid "Activity" msgstr "" @@ -537,11 +537,11 @@ msgstr "" msgid "Add a description for this check-in list" msgstr "Voeg een beschrijving toe voor deze check-in lijst" -#: src/components/routes/event/OccurrencesTab/index.tsx:538 +#: src/components/routes/event/OccurrencesTab/index.tsx:541 msgid "Add a Single Date" msgstr "" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:739 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:752 msgid "Add another time" msgstr "" @@ -561,7 +561,7 @@ msgstr "Voeg eventuele notities over de bestelling toe. Deze zijn niet zichtbaar msgid "Add any notes about the order..." msgstr "Opmerkingen over de bestelling toevoegen..." -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:375 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:382 msgid "Add at least one time" msgstr "" @@ -581,7 +581,7 @@ msgstr "" msgid "Add dates" msgstr "Data toevoegen" -#: src/components/routes/event/OccurrencesTab/index.tsx:524 +#: src/components/routes/event/OccurrencesTab/index.tsx:526 msgid "Add Dates" msgstr "" @@ -612,7 +612,7 @@ msgstr "Instructies voor offline betalingen toevoegen (bijv. details voor bankov msgid "Add Location" msgstr "Locatie toevoegen" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:743 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:756 msgid "Add multiple times if you run several sessions per day." msgstr "" @@ -797,7 +797,7 @@ msgid "all" msgstr "" #: src/components/layouts/CheckIn/tabs/SearchTab.tsx:133 -#: src/components/routes/event/OccurrencesTab/index.tsx:485 +#: src/components/routes/event/OccurrencesTab/index.tsx:487 msgid "All" msgstr "" @@ -988,7 +988,7 @@ msgstr "Er is een onverwachte fout opgetreden." msgid "An unexpected error occurred. Please try again." msgstr "Er is een onverwachte fout opgetreden. Probeer het opnieuw." -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:849 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:862 msgid "and {0} more..." msgstr "" @@ -1004,7 +1004,7 @@ msgstr "" msgid "Answers provided at checkout (e.g. meal choice)" msgstr "" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:564 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:577 msgid "Any dates you've manually customized will be kept." msgstr "" @@ -1072,7 +1072,7 @@ msgstr "" msgid "Approve Message" msgstr "Bericht goedkeuren" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:74 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:76 msgid "April" msgstr "" @@ -1128,7 +1128,7 @@ msgstr "Weet u zeker dat u dit evenement wilt archiveren? Het zal niet langer zi 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." -#: src/components/routes/event/OccurrencesTab/index.tsx:213 +#: src/components/routes/event/OccurrencesTab/index.tsx:215 msgid "Are you sure you want to cancel {count} date(s)? Affected attendees will be notified by email." msgstr "" @@ -1160,7 +1160,7 @@ msgstr "Weet u zeker dat u deze configuratie wilt verwijderen? Dit kan van invlo #: src/components/modals/ManageOccurrenceModal/index.tsx:58 #: src/components/routes/event/OccurrenceDetail/index.tsx:84 -#: src/components/routes/event/OccurrencesTab/index.tsx:182 +#: src/components/routes/event/OccurrencesTab/index.tsx:184 msgid "Are you sure you want to delete this date? This action cannot be undone." msgstr "" @@ -1447,7 +1447,7 @@ msgstr "Attributie-uitsplitsing" msgid "Attribution Value" msgstr "Attributiewaarde" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:78 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:80 msgid "August" msgstr "" @@ -1626,7 +1626,7 @@ msgstr "Braziliaans Portugees" msgid "Built-in fraud protection" msgstr "" -#: src/components/routes/event/OccurrencesTab/index.tsx:515 +#: src/components/routes/event/OccurrencesTab/index.tsx:517 msgid "Bulk Edit" msgstr "" @@ -1675,11 +1675,11 @@ msgstr "Door trackingpixels toe te voegen, erkent u dat u en dit platform gezame 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" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:628 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:641 msgid "By day of month" msgstr "" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:629 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:642 msgid "By day of week" msgstr "" @@ -1699,7 +1699,7 @@ msgstr "Applicatiekosten omzeilen" msgid "Calculation Type" msgstr "Type berekening" -#: src/components/routes/event/OccurrencesTab/index.tsx:471 +#: src/components/routes/event/OccurrencesTab/index.tsx:473 msgid "Calendar" msgstr "" @@ -1736,7 +1736,7 @@ msgstr "" #: src/components/modals/ManageOrderModal/index.tsx:209 #: src/components/modals/PublishEventModal/index.tsx:208 #: src/components/routes/event/messages.tsx:80 -#: src/components/routes/event/OccurrencesTab/index.tsx:497 +#: src/components/routes/event/OccurrencesTab/index.tsx:499 #: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:272 #: src/components/routes/event/OccurrencesTab/OccurrenceEditModal/index.tsx:306 #: src/components/routes/event/OccurrencesTab/OccurrenceMenu.tsx:61 @@ -1749,8 +1749,8 @@ msgstr "" msgid "Cancel" msgstr "Annuleren" -#: src/components/routes/event/OccurrencesTab/index.tsx:209 -#: src/components/routes/event/OccurrencesTab/index.tsx:221 +#: src/components/routes/event/OccurrencesTab/index.tsx:211 +#: src/components/routes/event/OccurrencesTab/index.tsx:223 msgid "Cancel {count} date(s)" msgstr "" @@ -1810,7 +1810,7 @@ msgstr "Annuleren zal alle deelnemers geassocieerd met deze bestelling annuleren msgid "Cancelled" msgstr "Geannuleerd" -#: src/components/routes/event/OccurrencesTab/index.tsx:235 +#: src/components/routes/event/OccurrencesTab/index.tsx:237 msgid "Cancelling {0} date(s). This may take a moment to complete." msgstr "" @@ -1820,7 +1820,7 @@ msgstr "Kan de standaardsysteemconfiguratie niet verwijderen" #: src/components/forms/CapaciyAssigmentForm/index.tsx:42 #: src/components/routes/event/OccurrencesTab/OccurrenceEditModal/index.tsx:503 -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:811 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:824 msgid "Capacity" msgstr "Capaciteit" @@ -2155,7 +2155,7 @@ msgid "City" msgstr "Stad" #: src/components/common/OccurrenceSelect/index.tsx:133 -#: src/components/routes/event/OccurrencesTab/index.tsx:503 +#: src/components/routes/event/OccurrencesTab/index.tsx:505 msgid "Clear" msgstr "" @@ -2175,7 +2175,7 @@ msgstr "Zoektekst wissen" msgid "Clearing removes any per-date override. Affected dates will fall back to the event's default location." msgstr "" -#: src/components/routes/event/OccurrencesTab/index.tsx:331 +#: src/components/routes/event/OccurrencesTab/index.tsx:333 msgid "Click to cancel" msgstr "" @@ -2183,7 +2183,7 @@ msgstr "" msgid "Click to copy" msgstr "Klik om te kopiëren" -#: src/components/routes/event/OccurrencesTab/index.tsx:333 +#: src/components/routes/event/OccurrencesTab/index.tsx:335 msgid "Click to reopen for new sales" msgstr "" @@ -2744,7 +2744,7 @@ msgstr "Maak {0} Sjabloon" msgid "Create a custom widget to sell tickets on your site." msgstr "Maak een aangepaste widget om tickets te verkopen op je site." -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:785 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:798 msgid "Create a fixed number" msgstr "" @@ -2880,7 +2880,7 @@ msgstr "Promocode maken" msgid "Create Question" msgstr "Vraag maken" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:864 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:877 msgid "Create Schedule" msgstr "" @@ -2928,6 +2928,10 @@ msgstr "Maak je eigen evenement" msgid "Created" msgstr "Aangemaakt" +#: src/components/routes/event/OccurrencesTab/index.tsx:549 +msgid "Creating {0} dates. This may take a moment." +msgstr "{0} data worden aangemaakt. Dit kan even duren." + #: src/components/routes/welcome/index.tsx:472 msgid "Creating Event..." msgstr "Evenement aanmaken..." @@ -3067,7 +3071,7 @@ msgstr "Je evenementpagina aanpassen" msgid "Customize your organizer page appearance" msgstr "Pas het uiterlijk van je organisatorpagina aan" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:56 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:58 #: src/components/routes/product-widget/OccurrenceSelector/index.tsx:32 msgid "Daily" msgstr "" @@ -3156,7 +3160,7 @@ msgstr "" #: src/components/modals/ManageOccurrenceModal/index.tsx:61 #: src/components/routes/event/OccurrenceDetail/index.tsx:87 -#: src/components/routes/event/OccurrencesTab/index.tsx:184 +#: src/components/routes/event/OccurrencesTab/index.tsx:186 msgid "Date deleted" msgstr "" @@ -3169,7 +3173,7 @@ msgstr "" msgid "Date reactivated" msgstr "" -#: src/components/routes/event/OccurrencesTab/index.tsx:198 +#: src/components/routes/event/OccurrencesTab/index.tsx:200 msgid "Date reopened for new sales" msgstr "" @@ -3185,15 +3189,15 @@ msgstr "" msgid "Dates with sessions" msgstr "" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:93 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:95 msgid "day" msgstr "" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:659 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:672 msgid "Day" msgstr "" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:676 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:689 msgid "Day of Month" msgstr "" @@ -3201,19 +3205,19 @@ msgstr "" msgid "Day one capacity" msgstr "Capaciteit op dag één" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:101 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:103 msgid "days" msgstr "" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:635 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:648 msgid "Days of Month" msgstr "" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:605 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:618 msgid "Days of Week" msgstr "" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:82 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:84 msgid "December" msgstr "" @@ -3231,7 +3235,7 @@ msgstr "Standaard" msgid "Default attendee information collection" msgstr "Standaard verzameling deelnemersinformatie" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:815 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:828 msgid "Default capacity per date" msgstr "" @@ -3254,7 +3258,7 @@ msgstr "verwijderen" #: src/components/common/QuestionsTable/index.tsx:150 #: src/components/common/TaxAndFeeList/index.tsx:81 #: src/components/routes/admin/FailedJobs/index.tsx:209 -#: src/components/routes/event/OccurrencesTab/index.tsx:500 +#: src/components/routes/event/OccurrencesTab/index.tsx:502 #: src/components/routes/event/OccurrencesTab/OccurrenceMenu.tsx:62 msgid "Delete" msgstr "Verwijder" @@ -3263,7 +3267,7 @@ msgstr "Verwijder" msgid "Delete \"{0}\"?" msgstr "\"{0}\" verwijderen?" -#: src/components/routes/event/OccurrencesTab/index.tsx:247 +#: src/components/routes/event/OccurrencesTab/index.tsx:249 msgid "Delete {count} selected date(s)? Dates with orders will be skipped. This cannot be undone." msgstr "" @@ -3345,7 +3349,7 @@ msgstr "Deze vraag verwijderen? Dit kan niet ongedaan worden gemaakt." msgid "Delete webhook" msgstr "Webhook verwijderen" -#: src/components/routes/event/OccurrencesTab/index.tsx:253 +#: src/components/routes/event/OccurrencesTab/index.tsx:255 msgid "Deleted {0} date(s)" msgstr "" @@ -3566,7 +3570,7 @@ msgstr "bijv. 180 (3 uur)" #: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:452 #: src/components/routes/event/OccurrencesTab/OccurrenceEditModal/index.tsx:450 -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:714 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:727 msgid "e.g. Morning Session" msgstr "" @@ -3725,7 +3729,7 @@ msgstr "Webhook bewerken" msgid "Edit Webhook" msgstr "Webhook bewerken" -#: src/components/routes/event/OccurrencesTab/index.tsx:306 +#: src/components/routes/event/OccurrencesTab/index.tsx:308 msgid "Edited" msgstr "" @@ -3914,7 +3918,7 @@ msgstr "Wachtlijst inschakelen" msgid "Enabled" msgstr "Ingeschakeld" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:704 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:717 msgid "End" msgstr "" @@ -3935,7 +3939,7 @@ msgstr "Einddatum & tijd (optioneel)" msgid "End date must be after start date" msgstr "Einddatum moet na begindatum liggen" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:771 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:784 msgid "End on a date" msgstr "" @@ -4410,7 +4414,7 @@ msgstr "Deelnemer niet geannuleerd" msgid "Failed to cancel date" msgstr "" -#: src/components/routes/event/OccurrencesTab/index.tsx:239 +#: src/components/routes/event/OccurrencesTab/index.tsx:241 msgid "Failed to cancel dates" msgstr "" @@ -4430,10 +4434,14 @@ msgstr "Aanmaken affiliate mislukt" msgid "Failed to create configuration" msgstr "Kan configuratie niet aanmaken" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:530 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:543 msgid "Failed to create schedule" msgstr "" +#: src/hooks/useOccurrenceGenerationPolling.ts:44 +msgid "Failed to create schedule. Please try again." +msgstr "Het schema kon niet worden aangemaakt. Probeer het opnieuw." + #: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:192 #: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:195 msgid "Failed to create template" @@ -4445,7 +4453,7 @@ msgstr "Kan configuratie niet verwijderen" #: src/components/modals/ManageOccurrenceModal/index.tsx:64 #: src/components/routes/event/OccurrenceDetail/index.tsx:90 -#: src/components/routes/event/OccurrencesTab/index.tsx:185 +#: src/components/routes/event/OccurrencesTab/index.tsx:187 msgid "Failed to delete date" msgstr "" @@ -4453,7 +4461,7 @@ msgstr "" msgid "Failed to delete date. It may have existing orders." msgstr "" -#: src/components/routes/event/OccurrencesTab/index.tsx:256 +#: src/components/routes/event/OccurrencesTab/index.tsx:258 msgid "Failed to delete dates" msgstr "" @@ -4541,7 +4549,7 @@ msgstr "Verwijderen van wachtlijst mislukt" msgid "Failed to remove override" msgstr "" -#: src/components/routes/event/OccurrencesTab/index.tsx:199 +#: src/components/routes/event/OccurrencesTab/index.tsx:201 msgid "Failed to reopen date" msgstr "" @@ -4678,7 +4686,7 @@ msgstr "" msgid "Fast payouts to your bank" msgstr "" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:72 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:74 msgid "February" msgstr "" @@ -4770,7 +4778,7 @@ msgstr "" msgid "Finish setup" msgstr "" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:63 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:65 msgid "First" msgstr "" @@ -4883,7 +4891,7 @@ msgstr "Voettekst" msgid "Forgot password?" msgstr "Wachtwoord vergeten?" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:66 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:68 msgid "Fourth" msgstr "" @@ -4910,11 +4918,11 @@ msgstr "Gratis product, geen betalingsgegevens nodig" msgid "French" msgstr "Frans" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:586 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:599 msgid "Frequency" msgstr "" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:50 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:52 msgid "Fri" msgstr "" @@ -5005,7 +5013,7 @@ msgstr "GitHub" #: src/components/routes/event/OccurrenceDetail/index.tsx:72 #: src/components/routes/event/OccurrencesTab/cancelOccurrenceDialog.tsx:49 -#: src/components/routes/event/OccurrencesTab/index.tsx:221 +#: src/components/routes/event/OccurrencesTab/index.tsx:223 #: src/components/routes/event/OccurrencesTab/OccurrenceEditModal/index.tsx:339 #: src/components/routes/event/OccurrencesTab/OccurrenceEditModal/index.tsx:363 msgid "Go Back" @@ -5272,7 +5280,7 @@ msgstr "Hoe wordt de korting toegepast?" msgid "How long a customer has to complete their purchase after receiving an offer. Leave empty for no timeout." msgstr "Hoe lang een klant heeft om de aankoop te voltooien na ontvangst van een aanbod. Laat leeg voor geen tijdslimiet." -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:750 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:763 msgid "How long does the schedule run?" msgstr "" @@ -5284,7 +5292,7 @@ msgstr "Hoeveel minuten de klant heeft om zijn bestelling af te ronden. We raden msgid "How many times can this code be used?" msgstr "Hoe vaak kan deze code worden gebruikt?" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:581 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:594 msgid "How often?" msgstr "" @@ -5590,7 +5598,7 @@ msgstr "artikel(en)" msgid "Items" msgstr "Artikelen" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:71 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:73 msgid "January" msgstr "" @@ -5641,11 +5649,11 @@ msgstr "Wachtlijst voor {productDisplayName} bijtreden" msgid "Joined" msgstr "Aangemeld" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:77 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:79 msgid "July" msgstr "" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:76 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:78 msgid "June" msgstr "" @@ -5671,7 +5679,7 @@ msgstr "" #: src/components/forms/ProductForm/index.tsx:108 #: src/components/routes/event/OccurrencesTab/OccurrenceEditModal/index.tsx:449 -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:711 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:724 #: src/components/routes/event/Reports/OccurrenceSummaryReport/index.tsx:45 msgid "Label" msgstr "Label" @@ -5686,7 +5694,7 @@ msgstr "" msgid "Language" msgstr "Taal" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:67 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:69 msgid "Last" msgstr "" @@ -5795,7 +5803,7 @@ msgid "Leave blank to use the default word \"Invoice\"" msgstr "Laat leeg om het standaardwoord te gebruiken" #: src/components/routes/event/OccurrencesTab/OccurrenceEditModal/index.tsx:507 -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:816 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:829 msgid "Leave empty for unlimited" msgstr "" @@ -5835,7 +5843,7 @@ msgstr "LinkedIn" msgid "Links Allowed" msgstr "Links toegestaan" -#: src/components/routes/event/OccurrencesTab/index.tsx:470 +#: src/components/routes/event/OccurrencesTab/index.tsx:472 msgid "List" msgstr "" @@ -6004,7 +6012,7 @@ msgstr "" msgid "Manage attendee" msgstr "Deelnemer beheren" -#: src/components/routes/event/OccurrencesTab/index.tsx:460 +#: src/components/routes/event/OccurrencesTab/index.tsx:462 msgid "Manage dates and times for your recurring event" msgstr "" @@ -6075,7 +6083,7 @@ msgstr "Handmatig een genodigde toevoegen" msgid "Manually Add Attendee" msgstr "Deelnemer handmatig toevoegen" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:73 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:75 msgid "March" msgstr "" @@ -6099,7 +6107,7 @@ msgstr "Max ontvangers / bericht" msgid "Maximum Per Order" msgstr "Maximum per bestelling" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:75 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:77 msgid "May" msgstr "" @@ -6215,7 +6223,7 @@ msgstr "Diverse instellingen" msgid "Mode" msgstr "" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:46 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:48 msgid "Mon" msgstr "" @@ -6231,24 +6239,24 @@ msgstr "Geldbedragen zijn geschatte totalen over alle valuta's" msgid "Monitor and manage failed background jobs" msgstr "Bewaak en beheer mislukte achtergrondtaken" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:95 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:97 msgid "month" msgstr "" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:671 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:684 msgid "Month" msgstr "Maand" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:58 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:60 #: src/components/routes/product-widget/OccurrenceSelector/index.tsx:41 msgid "Monthly" msgstr "" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:624 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:637 msgid "Monthly Pattern" msgstr "" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:103 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:105 msgid "months" msgstr "" @@ -6517,7 +6525,7 @@ msgstr "" msgid "No dates match the current filters." msgstr "" -#: src/components/routes/event/OccurrencesTab/index.tsx:570 +#: src/components/routes/event/OccurrencesTab/index.tsx:580 msgid "No dates match your filters" msgstr "" @@ -6530,7 +6538,7 @@ msgstr "" msgid "No dates scheduled" msgstr "Geen data gepland" -#: src/components/routes/event/OccurrencesTab/index.tsx:570 +#: src/components/routes/event/OccurrencesTab/index.tsx:580 msgid "No dates scheduled yet" msgstr "" @@ -6821,11 +6829,11 @@ msgstr "" msgid "Notify organizer of new orders" msgstr "Organisator op de hoogte stellen van nieuwe bestellingen" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:81 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:83 msgid "November" msgstr "" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:800 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:813 msgid "Number of dates to create" msgstr "" @@ -6850,7 +6858,7 @@ msgid "Occurrence Cancelled" msgstr "" #: src/components/layouts/Event/index.tsx:113 -#: src/components/routes/event/OccurrencesTab/index.tsx:461 +#: src/components/routes/event/OccurrencesTab/index.tsx:463 msgid "Occurrence Schedule" msgstr "" @@ -6872,7 +6880,7 @@ msgstr "" msgid "Occurrences can be configured after creation" msgstr "" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:80 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:82 msgid "October" msgstr "" @@ -6966,7 +6974,7 @@ msgstr "Doorlopend" #: src/components/common/EventCard/index.tsx:103 #: src/components/layouts/OrganizerHomepage/EventCard/index.tsx:49 -#: src/components/routes/event/OccurrencesTab/index.tsx:316 +#: src/components/routes/event/OccurrencesTab/index.tsx:318 #: src/components/routes/event/OccurrencesTab/OccurrenceEditModal/index.tsx:473 #: src/components/routes/my-tickets/index.tsx:56 #: src/components/routes/product-widget/OccurrenceSelector/index.tsx:122 @@ -7081,7 +7089,7 @@ msgstr "Opties" msgid "or" msgstr "of" -#: src/components/routes/event/OccurrencesTab/index.tsx:593 +#: src/components/routes/event/OccurrencesTab/index.tsx:603 msgid "or add a single date" msgstr "" @@ -7089,7 +7097,7 @@ msgstr "" msgid "Or enable offline payments and disable Stripe" msgstr "Of schakel offline betalingen in en schakel Stripe uit" -#: src/components/routes/event/OccurrencesTab/index.tsx:413 +#: src/components/routes/event/OccurrencesTab/index.tsx:415 msgid "order" msgstr "" @@ -7251,7 +7259,7 @@ msgstr "Bestelling succesvol bijgewerkt" msgid "Order was cancelled" msgstr "Bestelling is geannuleerd" -#: src/components/routes/event/OccurrencesTab/index.tsx:413 +#: src/components/routes/event/OccurrencesTab/index.tsx:415 #: src/components/routes/event/orders.tsx:197 msgid "orders" msgstr "" @@ -7504,7 +7512,7 @@ msgid "Passwords are not the same" msgstr "Wachtwoorden zijn niet hetzelfde" #: src/components/layouts/OrganizerHomepage/index.tsx:291 -#: src/components/routes/event/OccurrencesTab/index.tsx:484 +#: src/components/routes/event/OccurrencesTab/index.tsx:486 #: src/components/routes/organizer/Reports/EventsPerformanceReport/index.tsx:30 msgid "Past" msgstr "Verleden" @@ -7708,15 +7716,15 @@ msgstr "Persoonlijke gegevens" msgid "Phone" msgstr "Telefoon" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:372 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:379 msgid "Pick an end date" msgstr "" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:380 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:387 msgid "Pick at least one day of the month" msgstr "" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:369 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:376 msgid "Pick at least one day of the week" msgstr "" @@ -7766,7 +7774,7 @@ msgstr "Platformomzet" msgid "Please add at least one option" msgstr "Voeg ten minste één optie toe" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:527 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:540 #: src/hooks/useFormErrorResponseHandler.tsx:18 msgid "Please check the provided information is correct" msgstr "Controleer of de verstrekte informatie correct is" @@ -7896,7 +7904,7 @@ msgstr "Populaire evenementen (Laatste 14 dagen)" msgid "Portuguese" msgstr "Portugees" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:654 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:667 msgid "Position" msgstr "" @@ -8386,7 +8394,7 @@ msgstr "Verwijzingsaccounts" msgid "Refresh Preview" msgstr "Voorbeeld Vernieuwen" -#: src/components/routes/event/OccurrencesTab/index.tsx:216 +#: src/components/routes/event/OccurrencesTab/index.tsx:218 msgid "Refund all orders for these dates" msgstr "" @@ -8495,11 +8503,11 @@ msgstr "Verwijdert uitverkochte datums en tijden volledig van de evenementpagina msgid "Reopen for new sales" msgstr "" -#: src/components/routes/event/OccurrencesTab/index.tsx:192 +#: src/components/routes/event/OccurrencesTab/index.tsx:194 msgid "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." msgstr "" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:591 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:604 msgid "Repeat every" msgstr "" @@ -8700,7 +8708,7 @@ msgstr "Aanbod intrekken" msgid "Role" msgstr "Rol" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:772 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:785 msgid "Run until a specific date" msgstr "" @@ -8787,7 +8795,7 @@ msgstr "Voorbeeldticketprijs" msgid "Sample Venue" msgstr "Voorbeeldlocatie" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:51 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:53 msgid "Sat" msgstr "" @@ -8837,7 +8845,7 @@ msgstr "" msgid "Save Organizer" msgstr "Organisator opslaan" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:864 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:877 msgid "Save Schedule" msgstr "" @@ -8901,11 +8909,12 @@ msgstr "" msgid "Schedule added" msgstr "" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:520 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:530 +#: src/hooks/useOccurrenceGenerationPolling.ts:36 msgid "Schedule created successfully" msgstr "" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:793 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:806 msgid "Schedule ends on" msgstr "" @@ -8917,7 +8926,7 @@ msgstr "Later plannen" msgid "Schedule Message" msgstr "Bericht plannen" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:755 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:768 msgid "Schedule starts on" msgstr "" @@ -9040,7 +9049,7 @@ msgstr "Zoeken..." msgid "Seasonal" msgstr "" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:64 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:66 msgid "Second" msgstr "" @@ -9216,7 +9225,7 @@ msgstr "Selecteer welke evenementen deze webhook activeren" msgid "Select..." msgstr "Selecteer..." -#: src/components/routes/event/OccurrencesTab/index.tsx:495 +#: src/components/routes/event/OccurrencesTab/index.tsx:497 msgid "selected" msgstr "" @@ -9346,7 +9355,7 @@ msgstr "SEO-instellingen" msgid "SEO Title" msgstr "SEO titel" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:79 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:81 msgid "September" msgstr "" @@ -9374,7 +9383,7 @@ msgstr "Stel standaardinstellingen in voor nieuwe evenementen die onder deze org msgid "Set how long each date lasts" msgstr "" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:784 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:797 msgid "Set number of dates" msgstr "" @@ -9394,7 +9403,7 @@ msgstr "Stel het startnummer voor factuurnummering in. Dit kan niet worden gewij msgid "Set to unlimited (remove limit)" msgstr "" -#: src/components/routes/event/OccurrencesTab/index.tsx:575 +#: src/components/routes/event/OccurrencesTab/index.tsx:585 msgid "Set up a recurring schedule to automatically create dates, or add them one at a time." msgstr "" @@ -9411,8 +9420,8 @@ msgstr "" msgid "Set up schedule" msgstr "" -#: src/components/routes/event/OccurrencesTab/index.tsx:532 -#: src/components/routes/event/OccurrencesTab/index.tsx:586 +#: src/components/routes/event/OccurrencesTab/index.tsx:535 +#: src/components/routes/event/OccurrencesTab/index.tsx:596 msgid "Set Up Schedule" msgstr "" @@ -9428,7 +9437,7 @@ msgstr "Stel je organisatie in" msgid "Set up your schedule" msgstr "" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:569 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:582 msgid "Set Up Your Schedule" msgstr "" @@ -9565,7 +9574,7 @@ msgstr "Belastingen en toeslagen apart weergeven" msgid "Showing {0} of {totalRows} records" msgstr "Toont {0} van {totalRows} records" -#: src/components/routes/event/OccurrencesTab/index.tsx:614 +#: src/components/routes/event/OccurrencesTab/index.tsx:624 msgid "Showing {0}–{1} of {2}" msgstr "" @@ -9646,7 +9655,7 @@ msgstr "Sociale links & website" #: src/components/common/ProductsTable/SortableProduct/index.tsx:387 #: src/components/modals/ManageOccurrenceModal/index.tsx:186 -#: src/components/routes/event/OccurrencesTab/index.tsx:369 +#: src/components/routes/event/OccurrencesTab/index.tsx:371 msgid "Sold" msgstr "Verkocht" @@ -9754,7 +9763,7 @@ msgstr "" msgid "Standard product with a fixed price" msgstr "Standaardproduct met een vaste prijs" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:696 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:709 msgid "Start" msgstr "" @@ -9847,7 +9856,7 @@ msgstr "" #: src/components/routes/admin/Messages/index.tsx:120 #: src/components/routes/admin/Messages/index.tsx:167 #: src/components/routes/admin/Messages/index.tsx:294 -#: src/components/routes/event/OccurrencesTab/index.tsx:326 +#: src/components/routes/event/OccurrencesTab/index.tsx:328 #: src/components/routes/event/Reports/OccurrenceSummaryReport/index.tsx:51 #: src/components/routes/event/Reports/PromoCodesReport/index.tsx:88 #: src/components/routes/organizer/Reports/EventsPerformanceReport/index.tsx:62 @@ -10105,7 +10114,7 @@ msgstr "Zomer Muziekfestival {0}" msgid "Summer Music Festival 2025" msgstr "Zomer Muziekfestival 2025" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:52 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:54 msgid "Sun" msgstr "" @@ -10232,7 +10241,7 @@ msgstr "Vertel ons over je evenement" msgid "Tell us about your organization. This information will be displayed on your event pages." msgstr "Vertel ons over je organisatie. Deze informatie wordt weergegeven op je evenementpagina's." -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:573 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:586 msgid "Tell us how often your event repeats and we'll create all the dates for you." msgstr "" @@ -10326,7 +10335,7 @@ msgstr "Het e-mailadres is gewijzigd. De deelnemer ontvangt een nieuw ticket op msgid "The event you're looking for is not available at the moment. It may have been removed, expired, or the URL might be incorrect." msgstr "Het evenement dat je zoekt is momenteel niet beschikbaar. Mogelijk is het verwijderd, verlopen of is de URL onjuist." -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:756 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:769 msgid "The first date this schedule will generate from." msgstr "" @@ -10346,7 +10355,7 @@ msgstr "De link die u probeert te openen is verlopen of niet meer geldig. Contro msgid "The link you clicked is invalid." msgstr "De link waarop je hebt geklikt is ongeldig." -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:840 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:853 msgid "The maximum is {MAX_PREVIEW} sessions. Please reduce the date range, frequency, or number of sessions per day." msgstr "" @@ -10482,7 +10491,7 @@ msgstr "Deze sjablonen worden gebruikt als standaard voor alle evenementen in uw 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." -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:65 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:67 msgid "Third" msgstr "" @@ -10745,7 +10754,7 @@ msgstr "Dit is niet zichtbaar voor klanten, maar helpt je de affiliate te identi msgid "Throughput" msgstr "" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:49 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:51 msgid "Thu" msgstr "" @@ -10882,7 +10891,7 @@ msgstr "Met gelaagde producten kun je meerdere prijsopties aanbieden voor hetzel msgid "TikTok" msgstr "TikTok" -#: src/components/routes/event/OccurrencesTab/index.tsx:290 +#: src/components/routes/event/OccurrencesTab/index.tsx:292 msgid "Time" msgstr "" @@ -10913,7 +10922,7 @@ msgstr "Gebruikte tijden" msgid "Timezone" msgstr "Tijdzone" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:702 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:715 msgid "to" msgstr "" @@ -11057,7 +11066,7 @@ msgstr "Tracking & Analyse" msgid "Try a different search term or filter" msgstr "" -#: src/components/routes/event/OccurrencesTab/index.tsx:574 +#: src/components/routes/event/OccurrencesTab/index.tsx:584 msgid "Try adjusting your filters to see more dates." msgstr "" @@ -11070,7 +11079,7 @@ msgstr "Probeer een ander e-mailadres" msgid "Try Hi.Events Free" msgstr "Probeer Hi.Events Gratis" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:47 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:49 msgid "Tue" msgstr "" @@ -11233,7 +11242,7 @@ msgstr "Niet vertrouwd" #: src/components/common/EventsDashboardStatusButtons/index.tsx:20 #: src/components/common/EventStatusBadge/index.tsx:16 #: src/components/layouts/OrganizerHomepage/index.tsx:285 -#: src/components/routes/event/OccurrencesTab/index.tsx:483 +#: src/components/routes/event/OccurrencesTab/index.tsx:485 #: src/components/routes/organizer/Reports/EventsPerformanceReport/index.tsx:33 msgid "Upcoming" msgstr "Komende" @@ -11881,7 +11890,7 @@ msgstr "Webhooks" msgid "Website" msgstr "Website" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:48 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:50 msgid "Wed" msgstr "" @@ -11889,16 +11898,16 @@ msgstr "" msgid "Wednesday" msgstr "" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:94 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:96 msgid "week" msgstr "" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:57 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:59 #: src/components/routes/product-widget/OccurrenceSelector/index.tsx:35 msgid "Weekly" msgstr "" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:102 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:104 msgid "weeks" msgstr "" @@ -11954,7 +11963,7 @@ msgstr "Op welke producten moet deze capaciteit van toepassing zijn?" msgid "What time will you be arriving?" msgstr "Hoe laat kom je aan?" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:688 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:701 msgid "What time?" msgstr "" @@ -12141,7 +12150,7 @@ msgstr "Schrijf hier je bericht..." msgid "X (Twitter)" msgstr "X (Twitter)" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:96 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:98 msgid "year" msgstr "" @@ -12151,12 +12160,12 @@ msgstr "" msgid "Year to date" msgstr "Jaar tot nu toe" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:59 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:61 #: src/components/routes/product-widget/OccurrenceSelector/index.tsx:43 msgid "Yearly" msgstr "" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:104 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:106 msgid "years" msgstr "" @@ -12201,7 +12210,7 @@ msgstr "U kunt extra servicekosten en belastingen configureren in uw accountinst msgid "You can create a promo code which targets this product on the" msgstr "Je kunt een promotiecode maken die gericht is op dit product op de" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:823 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:836 msgid "You can override this for individual dates later." msgstr "" diff --git a/frontend/src/locales/pl.js b/frontend/src/locales/pl.js index 0f9c6ce2d4..9b8ad2871f 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 wyświetlenia'\",\"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 Main Street\",\"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\":\"Are you sure you want to make this event public? This will make the event visible to the public\",\"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\":\"Attendee Notes\",\"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\":\"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\":\"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\":\"Check-in\",\"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\":\"Dostosuj swoją stronę wydarzenia\",\"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\":\"Dismiss\",\"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\":\"Event URL\",\"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\":\"No attendees have been added to this order.\",\"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\":\"No product associated with this attendee.\",\"Ya1JhR\":\"Brak produktów dostępnych w tej kategorii.\",\"FTfObB\":\"Brak produktów jeszcze\",\"+Y976X\":\"Brak kodów promocyjnych do wyświetlenia\",\"MAavyl\":\"No questions answered by this attendee.\",\"SnlQeq\":\"No questions have been asked for this order.\",\"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\":\"Online event\",\"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\":\"Order #\",\"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\":\"Order Notes\",\"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\":\"Obsługiwane przez\",\"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,\\nwytyczne lub 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\":\"Produkt zaktualizowany pomyślnie\",\"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 będzie otrzymywać 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\":\"View\",\"Pte1Hv\":\"Wyświetl szczegóły uczestnika\",\"/5PEQz\":\"Wyświetl stronę wydarzenia\",\"fFornT\":\"View full message\",\"YIsEhQ\":\"View map\",\"Ep3VfY\":\"Wyświetl 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\":\"(none)\",\"xYxQCZ\":[[\"0\"],\" \",[\"1\"]],\"lAOy2r\":[[\"0\"],\" \",[\"1\"],\" jest już zameldowany\"],\"3beCx0\":[[\"0\"],\" <0>checked in\"],\"S4PqS9\":[[\"0\"],\" Aktywne webhooki\"],\"6MIiOI\":[[\"0\"],\" pozostało\"],\"COnw8D\":[\"logo \",[\"0\"]],\"xG9N0H\":[[\"0\"],\" of \",[\"1\"],\" seats are taken.\"],\"B7pZfX\":[[\"0\"],\" organizatorów\"],\"/HkCs4\":[[\"0\"],\" biletów\"],\"30bTiU\":[[\"activeCount\"],\" enabled\"],\"jTs4am\":[[\"appName\"],\" logo\"],\"gbJOk9\":[[\"attendeeCount\"],\" attendees are registered for this session.\"],\"TjbIUI\":[[\"availableCount\"],\" z \",[\"totalCount\"],\" dostępnych\"],\"PSChHo\":[\"Pozostało miejsc: \",[\"capacity\"]],\"lzQ8/M\":[[\"checkedIn\"],\" / \",[\"total\"],\" checked in\"],\"RZ0JX3\":[[\"chipTime\"],\", wyprzedane\"],\"M4KnFs\":[[\"chipTime\"],\", Wyprzedane, dostępna lista oczekujących\"],\"SeyN12\":[[\"completedCount\"],\" of \",[\"totalCount\"],\" steps complete\"],\"f2rhaD\":[[\"diffHr\"],\"h ago\"],\"NRSLBe\":[[\"diffMin\"],\"m ago\"],\"iYfwJE\":[[\"diffSec\"],\"s ago\"],\"OJnhhX\":[[\"eventCount\"],\" wydarzeń\"],\"mhZbzw\":[[\"loadedAffectedAttendees\"],\" attendees are registered across the affected sessions.\"],\"RBuxIl\":[[\"productCount\"],\" ticket types configured\"],\"VFLd0I\":[[\"slotCount\"],\" times available\"],\"3IEF7U\":[[\"totalCount\"],\" typów biletów\"],\"0cLzoF\":[[\"totalOccurrences\"],\" dates\"],\"AEGc4t\":[[\"totalOccurrences\"],\" sessions across \",[\"0\"],\" dates (\",[\"1\",\"plural\",{\"one\":[\"#\",\" session\"],\"other\":[\"#\",\" sessions\"]}],\" per day)\"],\"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.\",\"Il5Uid\":\"<0>To łączna dostępna liczba dla wszystkich terminów w harmonogramie — nie jest to limit na termin. Aby ograniczyć liczbę uczestników każdego terminu, ustaw pojemność na <1>stronie Harmonogram terminów.\",\"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\":\"1 attendee is registered across the affected sessions.\",\"qOyE2U\":\"1 attendee is registered for this session.\",\"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\",\"y2Jh0m\":\"1 time available\",\"cGtUz6\":\"1 tydzień przed wydarzeniem\",\"HR/cvw\":\"123 Przykładowa Ulica\",\"dgKxZ5\":\"135+ currencies & 40+ payment methods\",\"kMU5aM\":\"Wiadomość o anulowaniu została wysłana do\",\"o++0qa\":\"a change in duration\",\"WuWSX5\":\"A few quick steps and you're ready to start selling.\",\"RQ5kDd\":\"Komunikat wyświetlany, gdy w tej kategorii nie ma produktów.\",\"V53XzQ\":\"Nowy kod weryfikacyjny został wysłany na Twój email\",\"sr2Je0\":\"a shift in start/end times\",\"/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\":[\"Account · \",[\"0\"],\" · \",[\"1\"]],\"vOuxvL\":\"Informacja o koncie\",\"EHNORh\":\"Konto nie znalezione\",\"bPwFdf\":\"Konta\",\"AhwTa1\":\"Wymagane działanie: Potrzebne informacje VAT\",\"APyAR/\":\"Aktywne wydarzenia\",\"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\":\"Dodaj niestandardowe pytania, aby zebrać dodatkowe informacje podczas płatności\",\"Z/dcxc\":\"Add Date\",\"QeupRg\":\"Dodaj terminy\",\"Q219NT\":\"Add Dates\",\"yjB5VC\":\"Add dates and times for your recurring event\",\"Z8idyM\":\"Add details\",\"wpirGs\":\"Add event details\",\"VX6WUv\":\"Dodaj lokalizację\",\"GCQlV2\":\"Add multiple times if you run several sessions per day.\",\"7JF9w9\":\"Dodaj pytanie\",\"NLbIb6\":\"Add this attendee anyway (override capacity)\",\"6PNlRV\":\"Dodaj to wydarzenie do swojego kalendarza\",\"BGD9Yt\":\"Dodaj bilety\",\"uIv4Op\":\"Dodaj piksele śledzące do swoich publicznych stron wydarzeń i strony głównej organizatora. Baner zgody na pliki cookie będzie wyświetlany odwiedzającym, gdy śledzenie jest aktywne.\",\"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\":\"Affiliate program\",\"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ść.\",\"3e31kI\":\"After your event is created, you can choose how often it repeats from the dashboard.\",\"z7GAMJ\":\"all\",\"N40H+G\":\"All\",\"7rLTkE\":\"Wszystkie zarchiwizowane wydarzenia\",\"gKq1fa\":\"Wszyscy uczestnicy\",\"63gRoO\":\"All attendees of the selected sessions\",\"uWxIoH\":\"All attendees of this occurrence\",\"pMLul+\":\"Wszystkie waluty\",\"sgUdRZ\":\"All dates\",\"e4q4uO\":\"All Dates\",\"ZS/D7f\":\"Wszystkie zakończone wydarzenia\",\"QsYjci\":\"Wszystkie wydarzenia\",\"31KB8w\":\"Wszystkie nieudane zadania usunięte\",\"D2g7C7\":\"Wszystkie zadania w kolejce do ponowienia\",\"B4RFBk\":\"All matching dates\",\"F1/VgK\":\"All occurrences\",\"OpWjMq\":\"All Occurrences\",\"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.\",\"VZdky1\":\"Pozwól kupującym kopiować swoje dane do wszystkich uczestników\",\"F3mW5G\":\"Pozwól klientom dołączyć do listy oczekujących, gdy ten produkt jest wyprzedany\",\"4CMO/q\":\"Pozwól klientom dołączyć do listy oczekujących, gdy ten produkt jest wyprzedany. Klienci dołączają do listy oczekujących na konkretną datę.\",\"c4uJfc\":\"Prawie gotowe! Czekamy tylko na przetworzenie Twojej płatności. To powinno zająć tylko kilka sekund.\",\"ocS8eq\":[\"Masz już konto? <0>\",[\"0\"],\"\"],\"uCuEqI\":\"Already in\",\"/H326L\":\"Już zwrócone\",\"USEpOK\":\"Already use Stripe on another organizer? Reuse that connection.\",\"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.\",\"OPFdAM\":\"Opcjonalny opis tej kategorii wyświetlany na stronie wydarzenia.\",\"eusccx\":\"Opcjonalna wiadomość do wyświetlenia na wyróżnionym produkcie, np. \\\"Sprzedaje się szybko 🔥\\\" lub \\\"Najlepsza wartość\\\"\",\"5GJuNp\":[\"and \",[\"0\"],\" more...\"],\"QNrkms\":\"Odpowiedź zaktualizowana pomyślnie.\",\"+qygei\":\"Answers\",\"GK7Lnt\":\"Answers provided at checkout (e.g. meal choice)\",\"lE8PgT\":\"Any dates you've manually customized will be kept.\",\"jVoYha\":[\"zastosowano — \",[\"0\"],\" zniżki na zamówienie\"],\"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\":\"Zatwierdź wiadomość\",\"naCW6Z\":\"April\",\"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\":[\"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\":\"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/\":\"Are you sure you want to delete this date? This action cannot be undone.\",\"RiF/yT\":\"Are you sure you want to delete this image?\",\"b3+Qku\":\"Are you sure you want to delete this tax or fee? It will no longer be applied to new orders.\",\"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 powiadomienie e-mail.\",\"yAXqWW\":\"Are you sure you want to permanently delete this date? This cannot be undone.\",\"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?\",\"b7tkGp\":\"Are you sure you want to revoke this invitation?\",\"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\":\"Assign plan\",\"xdiER7\":\"Przypisany poziom\",\"F2rX0R\":\"Musi być wybrany co najmniej jeden typ wydarzenia\",\"Z44eZS\":\"At least one product must stay available for this date. To make the date inaccessible, cancel it from the schedule instead.\",\"BCmibk\":\"Próby\",\"6PecK3\":\"Frekwencja i wskaźniki odpraw we wszystkich wydarzeniach\",\"K2tp3v\":\"attendee\",\"AJ4rvK\":\"Uczestnik anulowany\",\"qvylEK\":\"Uczestnik utworzony\",\"Aspq3b\":\"Zbieranie szczegółów uczestnika\",\"fpb0rX\":\"Szczegóły uczestnika skopiowane z zamówienia\",\"94aQMU\":\"Informacje o uczestniku\",\"KkrBiR\":\"Zbieranie informacji o uczestniku\",\"sjPjOg\":\"Attendee notes\",\"cosfD8\":\"Status uczestnika\",\"D2qlBU\":\"Uczestnik zaktualizowany\",\"22BOve\":\"Uczestnik zaktualizowany pomyślnie\",\"x8Vnvf\":\"Bilet uczestnika nie jest uwzględniony na tej liście\",\"/Ywywr\":\"attendees\",\"zLRobu\":\"attendees checked in\",\"k3Tngl\":\"Uczestnicy wyeksportowani\",\"UoIRW8\":\"Uczestnicy zarejestrowani\",\"5UbY+B\":\"Uczestnicy z konkretnym biletem\",\"4HVzhV\":\"Uczestnicy:\",\"HVkhy2\":\"Analityka atrybucji\",\"dMMjeD\":\"Podział atrybucji\",\"1oPDuj\":\"Wartość atrybucji\",\"DBHTm/\":\"August\",\"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 następnej osobie, gdy pojawi się dostępność. Jeśli wyłączone, możesz ręcznie przetwarzać listę oczekujących ze strony Listy oczekujących.\",\"csDS2L\":\"Dostępne\",\"Xp+ywP\":\"Dostępne po zakończeniu płatności\",\"dwDH1K\":[\"Available times on \",[\"dayName\"]],\"clF06r\":\"Dostępne do zwrotu\",\"NB5+UG\":\"Dostępne tokeny\",\"L+wGOG\":\"Awaiting\",\"qcw2OD\":\"Awaiting pay\",\"kNmmvE\":\"Świetne Wydarzenia Sp. z o.o.\",\"TeSaQO\":\"Powrót do kont\",\"kYqM1A\":\"Powrót do wydarzenia\",\"s5QRF3\":\"Powrót do wiadomości\",\"td/bh+\":\"Powrót do raportów\",\"nsm7BA\":\"Wróć do wyszukiwania\",\"imjKVx\":\"Bank account connected\",\"D9LTCH\":\"Base Price\",\"hviJef\":\"Based on the global sale period above, not per date\",\"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\":\"Built-in fraud protection\",\"cr7kGH\":\"Bulk Edit\",\"1Fbd6n\":\"Bulk Edit Dates\",\"Eq6Tu9\":\"Bulk update failed.\",\"9N+p+g\":\"Biznes\",\"SWnN1L\":\"Business address\",\"kQekXw\":\"Business name\",\"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 zebranych danych. Jesteś odpowiedzialny za zapewnienie, że masz podstawę prawną 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\":\"By day of month\",\"0MnNgi\":\"By day of week\",\"CetOZE\":\"By ticket type\",\"lFdbRS\":\"Pomiń opłaty aplikacji\",\"AjVXBS\":\"Calendar\",\"2VLZwd\":\"Przycisk wezwania do działania\",\"rT2cV+\":\"Camera\",\"7hYa9y\":\"Camera permission was denied. <0>Request permission again, or grant this page camera access in your browser settings.\",\"D02dD9\":\"Kampania\",\"RRPA79\":\"Can't check in\",\"OcVwAd\":[\"Cancel \",[\"count\"],\" date(s)\"],\"H4nE+E\":\"Anuluj wszystkie produkty i zwolnij je z powrotem do puli\",\"Py78q9\":\"Cancel Date\",\"tOXAdc\":\"Anulowanie anuluje wszystkich uczestników związanych z tym zamówieniem i zwolni bilety z powrotem do dostępnej puli.\",\"FPpqc7\":[\"Cancelling \",[\"0\"],\" date(s). This may take a moment to complete.\"],\"01sEfm\":\"Nie można usunąć domyślnej konfiguracji systemu\",\"VsM1HH\":\"Przypisania pojemności\",\"9bIMVF\":\"Capacity management\",\"H7K8og\":\"Capacity must be 0 or greater\",\"nzao08\":\"capacity updates\",\"4cp9NP\":\"Capacity Used\",\"K7tIrx\":\"Kategoria\",\"DRK3Bq\":\"Category deleted successfully\",\"o+XJ9D\":\"Zmień\",\"kJkjoB\":\"Change duration\",\"J0KExZ\":\"Change the attendee limit\",\"ssospy\":\"Change time\",\"CIHJJf\":\"Zmień ustawienia listy oczekujących\",\"B5icLR\":[\"Changed duration for \",[\"count\"],\" date(s)\"],\"Kb+0BT\":\"Charges\",\"2tbLdK\":\"Dobroczynność\",\"BPWGKn\":\"Check in\",\"6uFFoY\":\"Check out\",\"FjAlwK\":[\"Check out this event: \",[\"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\":\"Check-In\",\"udRwQs\":\"Odprawa utworzona\",\"F4SRy3\":\"Odprawa usunięta\",\"as6XfO\":[\"Check-in for \",[\"0\"],\" was undone\"],\"9s/wrQ\":\"Check-in history\",\"Wwztk4\":\"Check-In List\",\"9gPPUY\":\"Lista odpraw utworzona\",\"dwjiJt\":\"Check-in list info\",\"7od0PV\":\"check-in lists\",\"f2vU9t\":\"Listy odpraw\",\"XprdTn\":\"Check-in navigation\",\"5tV1in\":\"Check-in progress\",\"SHJwyq\":\"Wskaźnik zameldowań\",\"qCqdg6\":\"Status zameldowania\",\"cKj6OE\":\"Podsumowanie zameldowań\",\"7B5M35\":\"Zameldowania\",\"VrmydS\":\"Checked in\",\"DM4gBB\":\"Chiński (tradycyjny)\",\"p8Jvp4\":\"Choose a configuration\",\"ElShBO\":\"Choose a different action\",\"pHEhf+\":\"Wybierz krój pisma pasujący do Twojej marki. Czcionki są hostowane przez Bunny Fonts.\",\"Zok1Gx\":\"Choose an organizer\",\"pkk46Q\":\"Wybierz organizatora\",\"Ag32+c\":\"Choose another date\",\"Crr3pG\":\"Wybierz kalendarz\",\"Z38ZJu\":\"Wybierz, jak data wydarzenia jest pokazywana na bilecie\",\"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\":\"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\":\"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\":\"complete\",\"bUQMpb\":\"Complete Stripe setup\",\"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\":\"Configuration assigned\",\"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\":\"Configure which products are available for this occurrence and optionally adjust pricing.\",\"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\",\"/K4Vqr\":\"Połącz Stripe, aby przyjmować płatności\",\"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\":\"Szczegóły połączenia są wymagane dla wydarzeń online\",\"jfC/xh\":\"Kontakt\",\"LOFgda\":[\"Kontakt \",[\"0\"]],\"41BQ3k\":\"E-mail kontaktowy\",\"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\",\"s30OcA\":\"Kontroluj sposób wyświetlania dat i godzin na stronie wydarzenia\",\"p2FRHj\":\"Kontroluj, jak opłaty platformy są obsługiwane dla tego wydarzenia\",\"NqfabH\":\"Control who gets in for this date\",\"fmYxZx\":\"Control who gets in, and when\",\"1JnTgU\":\"Skopiowane z góry\",\"FxVG/l\":\"Skopiowane do schowka\",\"PiH3UR\":\"Skopiowane!\",\"4i7smN\":\"Copy account ID\",\"uUPbPg\":\"Kopiuj link partnera\",\"iVm46+\":\"Kopiuj kod\",\"cF2ICc\":\"Kopiuj link klienta\",\"+2ZJ7N\":\"Kopiuj szczegóły do pierwszego uczestnika\",\"ZN1WLO\":\"Kopiuj e-mail\",\"y1eoq1\":\"Kopiuj link\",\"tUGbi8\":\"Kopiuj moje szczegóły do:\",\"y22tv0\":\"Kopiuj ten link, aby udostępnić go wszędzie\",\"/4gGIX\":\"Kopiuj do schowka\",\"e0f4yB\":\"Nie udało się usunąć lokalizacji\",\"vkiDx2\":\"Could not prepare the bulk update.\",\"KOavaU\":\"Nie udało się pobrać szczegółów adresu\",\"/lq4oO\":\"Could not save date\",\"mHu0az\":\"Couldn't send verification email. Please try again.\",\"QOIm+S\":\"Liczby obejmują wszystkie nadchodzące daty. Każda osoba otrzymuje ofertę miejsca na datę, na którą się zapisała.\",\"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\":\"Covers every ticket\",\"zg4oSu\":[\"Utwórz szablon \",[\"0\"]],\"RKKhnW\":\"Utwórz niestandardowy widget do sprzedaży biletów na swojej stronie.\",\"6sk7PP\":\"Create a fixed number\",\"jqhTmw\":\"Create a list for this date\",\"PhioFp\":\"Create a new check-in list for an active session, or contact the organizer if you think this is a mistake.\",\"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\":\"Create Date\",\"Nc3l/D\":\"Utwórz rabaty, kody dostępu dla ukrytych biletów i specjalne oferty.\",\"PybJS2\":\"Create event\",\"eWEV9G\":\"Utwórz nowe hasło\",\"wl2iai\":\"Create Schedule\",\"8AiKIu\":\"Utwórz bilet lub produkt\",\"/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\":\"Utwórz swoje pierwsze wydarzenie, aby rozpocząć sprzedaż biletów i zarządzanie uczestnikami.\",\"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\":\"Currently assigned\",\"iTvh6I\":\"Obecnie dostępne do zakupu\",\"A42Dqn\":\"Custom branding\",\"Guo0lU\":\"Niestandardowa data i godzina\",\"WDMdn8\":\"Custom questions\",\"O6mra8\":\"Niestandardowe pytania\",\"axv/Mi\":\"Niestandardowy szablon\",\"2YeVGY\":\"Link klienta skopiowany do schowka\",\"QMHSMS\":\"Klient otrzyma e-mail potwierdzający zwrot\",\"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\":\"Daily\",\"/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\":\"Dance\",\"pvnfJD\":\"Ciemny\",\"MaB9wW\":\"Date Cancellation\",\"e6cAxJ\":\"Date cancelled\",\"81jBnC\":\"Date cancelled successfully\",\"a/C/6R\":\"Date created successfully\",\"IW7Q+u\":\"Date deleted\",\"rngCAz\":\"Date deleted successfully\",\"vHbfoQ\":\"Date reactivated\",\"hvah+S\":\"Date reopened for new sales\",\"Ez0YsD\":\"Date updated successfully\",\"Te33mU\":\"Dates are managed per occurrence\",\"91zCxb\":\"Dates with sessions\",\"/ITcnz\":\"day\",\"H7OUPr\":\"Day\",\"JtHrX9\":\"Day of Month\",\"J/Upwb\":\"days\",\"vDVA2I\":\"Days of Month\",\"rDLvlL\":\"Days of Week\",\"r6zgGo\":\"December\",\"jbq7j2\":\"Odrzuć\",\"ovBPCi\":\"Domyślny\",\"JtI4vj\":\"Domyślne zbieranie informacji o uczestniku\",\"ULjv90\":\"Default capacity per date\",\"3R/Tu2\":\"Domyślne obsługiwanie opłat\",\"1bZAZA\":\"Zostanie użyty domyślny szablon\",\"HNlEFZ\":\"usuń\",\"KpnwJK\":[\"Usunąć \\\"\",[\"0\"],\"\\\"?\"],\"BlII4o\":[\"Delete \",[\"count\"],\" selected date(s)? Dates with orders will be skipped. This cannot be undone.\"],\"vu7gDm\":\"Usuń partnera\",\"KZN4Lc\":\"Usuń wszystko\",\"6EkaOO\":\"Delete Date\",\"io0G93\":\"Usuń wydarzenie\",\"+jw/c1\":\"Usuń obraz\",\"hdyeZ0\":\"Usuń zadanie\",\"xxjZeP\":\"Usuń lokalizację\",\"sY3tIw\":\"Usuń organizatora\",\"UBv8UK\":\"Delete Permanently\",\"dPyJ15\":\"Usuń szablon\",\"IQTR34\":\"Delete this category? Any products in it will also be deleted. This cannot be undone.\",\"/1wMxk\":\"Delete this product? This cannot be undone.\",\"mxsm1o\":\"Usunąć to pytanie? Tej akcji nie można cofnąć.\",\"snMaH4\":\"Usuń webhook\",\"LIZZLY\":[\"Deleted \",[\"0\"],\" date(s)\"],\"7w0Wev\":\"Description and venue added\",\"vYgeDk\":\"Odznacz wszystko\",\"NvuEhl\":\"Elementy projektu\",\"H8kMHT\":\"Nie otrzymałeś kodu?\",\"G8KNgd\":\"Different location\",\"E/QGRL\":\"Disabled\",\"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.\",\"HtaSQp\":\"Wyświetla liczbę wolnych miejsc dla każdej daty w widżecie biletów. Możesz to zmienić dla poszczególnych dat.\",\"pfa8F0\":\"Nazwa wyświetlana\",\"Kdpf90\":\"Nie zapomnij!\",\"352VU2\":\"Nie masz konta? <0>Zarejestruj się\",\"AXXqG+\":\"Darowizna\",\"DPfwMq\":\"Gotowe\",\"JoPiZ2\":\"Door staff instructions\",\"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 na celu zapewnienie, że wszyscy organizatorzy wydarzeń są zweryfikowani i odpowiedzialni.\",\"euc6Ns\":\"Duplikuj\",\"YueC+F\":\"Duplicate Date\",\"KRmTkx\":\"Duplikuj produkt\",\"Jd3ymG\":\"Duration must be at least 1 minute.\",\"KIjvtr\":\"Holenderski\",\"22xieU\":\"np. 180 (3 godziny)\",\"/zajIE\":\"e.g. Morning Session\",\"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.\",\"Xfsjel\":\"Każdy produkt\",\"5oD9f/\":\"Earlier\",\"LTzmgK\":[\"Edytuj szablon \",[\"0\"]],\"v4+lcZ\":\"Edytuj partnera\",\"2iZEz7\":\"Edytuj odpowiedź\",\"t2bbp8\":\"Edytuj uczestnika\",\"etaWtB\":\"Edytuj szczegóły uczestnika\",\"+guao5\":\"Edytuj konfigurację\",\"1Mp/A4\":\"Edit Date\",\"m0ZqOT\":\"Edytuj lokalizację\",\"8oivFT\":\"Edytuj lokalizację\",\"vRWOrM\":\"Edytuj szczegóły zamówienia\",\"fW5sSv\":\"Edytuj webhook\",\"nP7CdQ\":\"Edytuj webhook\",\"MRZxAn\":\"Edited\",\"uBAxNB\":\"Edytor\",\"aqxYLv\":\"Edukacja\",\"iiWXDL\":\"Niepowodzenia kwalifikacji\",\"zPiC+q\":\"Kwalifikujące się listy zameldowań\",\"SiVstt\":\"Email & scheduled messages\",\"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ź widget\",\"z9NkYY\":\"Embeddable widget\",\"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\":\"End\",\"sGjBEq\":\"Data i czas zakończenia (opcjonalne)\",\"PKXt9R\":\"Data zakończenia musi być po dacie rozpoczęcia\",\"ZayGC7\":\"End on a date\",\"48Y16Q\":\"Czas zakończenia (opcjonalny)\",\"TbaYrr\":[\"Ended \",[\"0\"]],\"CFgwiw\":[\"Ends \",[\"0\"]],\"SqOIQU\":\"Enter a capacity value or choose unlimited.\",\"h37gRz\":\"Enter a label or choose to remove it.\",\"7YZofi\":\"Wprowadź temat i treść, aby zobaczyć podgląd\",\"khyScF\":\"Enter a time to shift by.\",\"SKx/0u\":\"Wpisz nazwę miejsca lub adres\",\"ppwojw\":\"Podaj nazwę miejsca lub adres dla wydarzeń stacjonarnych\",\"j+eCIq\":\"Wprowadź adres ręcznie\",\"3bR1r4\":\"Wprowadź e-mail partnera (opcjonalne)\",\"ARkzso\":\"Wprowadź nazwę partnera\",\"ej4L8b\":\"Enter capacity\",\"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)\",\"RRlWVA\":\"Całe zamówienie\",\"o21Y+P\":\"entries\",\"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\",\"+v+GW0\":\"Wyświetlanie daty wydarzenia\",\"7u9/DO\":\"Wydarzenie zostało pomyślnie usunięte\",\"imgKgl\":\"Opis wydarzenia\",\"IzR/Fc\":\"Event lifetime\",\"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\",\"mImacG\":\"Strona wydarzenia\",\"Hk9Ki/\":\"Wydarzenie zostało pomyślnie przywrócone\",\"JyD0LH\":\"Ustawienia wydarzenia\",\"XVLu2v\":\"Tytuł wydarzenia\",\"OfmsI9\":\"Wydarzenie zbyt nowe\",\"4SILkp\":\"Event totals\",\"YDVUVl\":\"Typy wydarzeń\",\"+HeiVx\":\"Wydarzenie zaktualizowane\",\"19j6uh\":\"Wydajność wydarzeń\",\"PC3/fk\":\"Wydarzenia rozpoczynające się w ciągu następnych 24 godzin\",\"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\":\"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\":\"Failed to cancel date\",\"YUX+f+\":\"Failed to cancel dates\",\"SIHgVQ\":\"Nie udało się anulować wiadomości\",\"cEFg3R\":\"Nie udało się utworzyć partnera\",\"dVgNF1\":\"Nie udało się utworzyć konfiguracji\",\"fAoRRJ\":\"Failed to create schedule\",\"U66oUa\":\"Nie udało się utworzyć szablonu\",\"aFk48v\":\"Nie udało się usunąć konfiguracji\",\"n1CYMH\":\"Failed to delete date\",\"KXv+Qn\":\"Failed to delete date. It may have existing orders.\",\"JJ0uRo\":\"Failed to delete dates\",\"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\",\"5E23qd\":\"Failed to delete product. Please try again.\",\"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\":\"Failed to reactivate date\",\"7zyx8a\":\"Nie udało się usunąć z listy oczekujących\",\"A/P7PX\":\"Failed to remove override\",\"ogWc1z\":\"Failed to reopen date\",\"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\":\"Failed to save override\",\"sj/eZA\":\"Failed to save price override\",\"780n8A\":\"Failed to save product settings\",\"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\":\"Family\",\"5LO38w\":\"Fast payouts to your bank\",\"4lgLew\":\"February\",\"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\":\"Filter attendees\",\"8OvVZZ\":\"Filtruj uczestników\",\"N/H3++\":\"Filter by date\",\"mvrlBO\":\"Filtruj według wydarzenia\",\"g+xRXP\":\"Finish setting up Stripe\",\"LHH461\":\"Finish setup\",\"syyeb9\":\"First\",\"Vj6wk9\":\"First 30 days\",\"/bpZYb\":\"First 7 days\",\"ziEnjY\":\"First 90 days\",\"1vBhpG\":\"Pierwszy uczestnik\",\"4pwejF\":\"Imię jest wymagane\",\"rVogsf\":\"Napraw problemy, aby opublikować\",\"3lkYdQ\":\"Fixed fee\",\"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\":\"Flash off\",\"q0923e\":\"Flash on\",\"X+U6/w\":\"Rodzina czcionek\",\"lWxAUo\":\"Jedzenie i napoje\",\"nFm+5u\":\"Tekst stopki\",\"a8nooQ\":\"Fourth\",\"wtuVU4\":\"Frequency\",\"xVhQZV\":\"Fri\",\"39y5bn\":\"Friday\",\"f5UbZ0\":\"Full data ownership\",\"cfvx/y\":\"Full event\",\"MY2SVM\":\"Pełny zwrot\",\"PGQLdy\":\"future\",\"8N/j1s\":\"Future dates only\",\"yRx/6K\":\"Future dates will be copied with capacity reset to zero\",\"T02gNN\":\"Wstęp ogólny\",\"3ep0Gx\":\"Ogólne informacje o organizatorze\",\"ziAjHi\":\"Generuj\",\"exy8uo\":\"Generuj kod\",\"4CETZY\":\"Uzyskaj wskazówki\",\"pjkEcB\":\"Get Paid\",\"lGYzP6\":\"Get paid with Stripe\",\"ZDIydz\":\"Zacznij\",\"u6FPxT\":\"Zdobądź bilety\",\"8KDgYV\":\"Przygotuj swoje wydarzenie\",\"RkXlPZ\":\"GitHub\",\"sr0UJD\":\"Go Back\",\"oNL5vN\":\"Przejdź do strony wydarzenia\",\"gHSuV/\":\"Przejdź do strony głównej\",\"8+Cj55\":\"Go to Schedule\",\"6nDzTl\":\"Dobra czytelność\",\"76gPWk\":\"Got it\",\"CZXzs4\":\"Grecki\",\"aGWZUr\":\"Przychód brutto\",\"n8IUs7\":\"Przychód brutto\",\"O1wAlQ\":\"Guest\",\"LIYoRQ\":\"Zarządzanie gośćmi\",\"NUsTc4\":\"Happening now\",\"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\":\"Hi,\",\"/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\":\"Hide details\",\"FmogyU\":\"Ukryj opcje\",\"uXNYjR\":\"Ukryj wyprzedane daty i godziny\",\"g9RcYX\":\"Ukryj datę\",\"uMwTx7\":\"Ukryć tę kategorię?\",\"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\":\"Hobbies\",\"yY8wAv\":\"Hours\",\"49Tkiw\":\"Jak stosowany jest rabat?\",\"sy9anN\":\"Jak długo klient ma na sfinalizowanie zakupu po otrzymaniu oferty. Pozostaw puste, aby nie było limitu czasu.\",\"n2ilNh\":\"How long does the schedule run?\",\"DMr2XN\":\"How often?\",\"cceMns\":\"How VAT is applied to the platform fees we charge you.\",\"FONsLE\":\"https://awesome-events.com\",\"htoh8N\":\"https://webhook-domain.com/webhook\",\"mkWad2\":\"Węgierski\",\"8Wgd41\":\"Potwierdzam moje obowiązki jako administrator 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\",\"CY3yHL\":\"Jeśli zaznaczone, ta kategoria będzie ukryta przed publicznością.\",\"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\":[\"in last \",[\"0\"],\" min\"],\"u7r0G5\":\"In person — set a venue\",\"/LCAwL\":\"W trakcie\",\"F1Xp97\":\"Pojedynczy uczestnicy\",\"85e6zs\":\"Wstaw token Liquid\",\"CTWsuc\":\"Instagram\",\"VopR6B\":\"Instant Stripe payouts\",\"nbfdhU\":\"Integracje\",\"I8eJ6/\":\"Internal notes on the attendee's ticket\",\"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ół\",\"Dn4OyV\":\"Zaproszony\",\"IuMGvq\":\"Faktura\",\"a/bUcL\":\"It happens on more than one date\",\"d+Oe9r\":\"It may have been unpublished or removed. Please check the link and try again.\",\"Lj7sBL\":\"Włoski\",\"F5/CBH\":\"przedmiot(y)\",\"BzfzPK\":\"Przedmioty\",\"rjyWPb\":\"January\",\"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 na \",[\"productDisplayName\"]],\"2gMuHR\":\"Dołączono\",\"u4ex5r\":\"July\",\"zeEQd/\":\"June\",\"MxjCqk\":\"Szukasz tylko swoich biletów?\",\"xOTzt5\":\"just now\",\"0RihU9\":\"Just wrapped\",\"lB2hSG\":[\"Informuj mnie o nowościach i wydarzeniach od \",[\"0\"]],\"ioFA9i\":\"Keep the profit.\",\"o66QSP\":\"label updates\",\"RtKKbA\":\"Last\",\"DruLRc\":\"Ostatnie 14 dni\",\"ve9JTU\":\"Nazwisko jest wymagane\",\"h0Q9Iw\":\"Ostatnia odpowiedź\",\"gw3Ur5\":\"Ostatnio uruchomiony\",\"FIq1Ba\":\"Later\",\"xvnLMP\":\"Latest check-ins\",\"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\":\"Jasny\",\"1qY5Ue\":\"Link wygasł lub jest nieprawidłowy\",\"gggTBm\":\"LinkedIn\",\"nvOPBA\":\"Linki dozwolone\",\"2BBAbc\":\"List\",\"dF6vP6\":\"Na żywo\",\"fpMs2Z\":\"NA ŻYWO\",\"D9zTjx\":\"Wydarzenia na żywo\",\"C33p4q\":\"Loaded dates\",\"WdmJIX\":\"Ładowanie podglądu...\",\"IoDI2o\":\"Ładowanie tokenów...\",\"G3Ge9Z\":\"Ładowanie logów webhook...\",\"NFxlHW\":\"Ładowanie webhooków\",\"E0DoRM\":\"Lokalizacja usunięta\",\"7w8lJU\":\"Lokalizacja zapisana\",\"YsRXDD\":\"Lokalizacja zaktualizowana\",\"A/kIva\":\"location updates\",\"iyZPPR\":\"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\",\"PSRm6/\":\"Znajdź moje bilety\",\"yJFu/X\":\"Biuro główne\",\"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\":\"Zarządzaj listą oczekujących wydarzenia, przeglądaj statystyki i oferuj bilety uczestnikom.\",\"g2npA5\":\"Oferta ręczna\",\"hg6l4j\":\"March\",\"pqRBOz\":\"Mark as validated (admin override)\",\"2L3vle\":\"Maks wiadomości / 24h\",\"Qp4HWD\":\"Maks odbiorców / wiadomość\",\"3JzsDb\":\"May\",\"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\":\"Minutes\",\"zz/Wd/\":\"Mode\",\"fpMgHS\":\"Mon\",\"hty0d5\":\"Monday\",\"JbIgPz\":\"Wartości pieniężne są przybliżonymi sumami we wszystkich walutach\",\"qvF+MT\":\"Monitoruj i zarządzaj nieudanymi zadaniami w tle\",\"kY2ll9\":\"month\",\"HajiZl\":\"Miesiąc\",\"+8Nek/\":\"Monthly\",\"1LkxnU\":\"Monthly Pattern\",\"6jefe3\":\"months\",\"f8jrkd\":\"more\",\"JcD7qf\":\"More actions\",\"w36OkR\":\"Najczęściej oglądane wydarzenia (ostatnie 14 dni)\",\"+Y/na7\":\"Move all dates earlier or later\",\"3DIpY0\":\"Multiple locations\",\"g9cQCP\":\"Multiple ticket types\",\"GfaxEk\":\"Muzyka\",\"oVGCGh\":\"Moje bilety\",\"8/brI5\":\"Nazwa jest wymagana\",\"sFFArG\":\"Nazwa musi mieć mniej niż 255 znaków\",\"xxU3NX\":\"Dochód netto\",\"7I8LlL\":\"New capacity\",\"n1GRql\":\"New label\",\"y0Fcpd\":\"Nowa lokalizacja\",\"ArHT/C\":\"Nowe rejestracje\",\"uK7xWf\":\"New time:\",\"veT5Br\":\"Next occurrence\",\"WXtl5X\":[\"Next: \",[\"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\":\"No attendees to show\",\"PKySlW\":\"No attendees yet for this date.\",\"/UC6qk\":\"Nie znaleziono danych atrybucji\",\"E2vYsO\":\"No capabilities reported by Stripe yet.\",\"amMkpL\":\"Brak miejsc\",\"d2Jf1f\":\"No change\",\"99ntUF\":\"Brak dostępnych list zameldowań dla tego wydarzenia.\",\"wG+knX\":\"No check-ins yet\",\"+dAKxg\":\"Nie znaleziono konfiguracji\",\"LiLk8u\":\"No connections available\",\"eb47T5\":\"Nie znaleziono danych dla wybranych filtrów. Spróbuj dostosować zakres dat lub walutę.\",\"Zc216S\":\"No date added\",\"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\",\"OtJSnL\":\"Brak zaplanowanych terminów\",\"gEdNe8\":\"No dates scheduled yet\",\"pZNOT9\":\"Brak daty zakończenia\",\"dW40Uz\":\"Nie znaleziono wydarzeń\",\"8pQ3NJ\":\"Brak wydarzeń rozpoczynających się w ciągu następnych 24 godzin\",\"8zCZQf\":\"Brak wydarzeń jeszcze\",\"Yc5YW6\":\"Brak nieudanych zadań\",\"EpvBAp\":\"Brak faktury\",\"XZkeaI\":\"Nie znaleziono logów\",\"IcAC6J\":\"Brak pasujących czcionek\",\"nrSs2u\":\"Nie znaleziono wiadomości\",\"Rj99yx\":\"No occurrences available\",\"IFU1IG\":\"No occurrences on this date\",\"OVFwlg\":\"Brak pytań dotyczących zamówienia jeszcze\",\"EJ7bVz\":\"Nie znaleziono zamówień\",\"NEmyqy\":\"Brak zamówień jeszcze\",\"a77B6w\":\"No orders yet for this date.\",\"wUv5xQ\":\"Brak aktywności organizatora w ciągu ostatnich 14 dni\",\"vLd1tV\":\"No organizer context available.\",\"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\":\"No products configured for this event.\",\"kY7XDn\":\"Żadne produkty nie mają wpisów na liście oczekujących\",\"8mw4tm\":\"Komunikat o braku produktów\",\"wYiAtV\":\"Brak ostatnich rejestracji kont\",\"UW90md\":\"Nie znaleziono odbiorców\",\"QoAi8D\":\"Brak odpowiedzi\",\"JeO7SI\":\"Brak odpowiedzi\",\"EK/G11\":\"Brak odpowiedzi jeszcze\",\"59OWd3\":\"Brak zapisanych lokalizacji\",\"mPdY6W\":\"Brak sugestii\",\"3sRuiW\":\"Nie znaleziono biletów\",\"debCrL\":\"Brak biletów do sprzedaży\",\"k2C0ZR\":\"No upcoming dates\",\"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\":\"non-edited\",\"Itw24Q\":\"Not checked in\",\"x5+Lcz\":\"Nie zameldowany\",\"8n10sz\":\"Nie kwalifikuje się\",\"kLvU3F\":\"Notify attendees and stop sales\",\"t9QlBd\":\"November\",\"kAREMN\":\"Number of dates to create\",\"6u1B3O\":\"Occurrence\",\"mmoE62\":\"Occurrence Cancelled\",\"V9flmL\":\"Occurrence Schedule\",\"Kh3WO8\":\"Occurrence Summary\",\"byXCTu\":\"Occurrences\",\"KATw3p\":\"Occurrences (future only)\",\"85rTR2\":\"Occurrences can be configured after creation\",\"dzQfDY\":\"October\",\"BwJKBw\":\"z\",\"9h7RDh\":\"Oferta\",\"EfK2O6\":\"Zaoferuj miejsce\",\"3sVRey\":\"Zaoferuj bilety\",\"2O7Ybb\":\"Limit czasu oferty\",\"1jUg5D\":\"Zaoferowano\",\"l+/HS6\":[\"Oferty wygasają po \",[\"timeoutHours\"],\" godzinach.\"],\"6Aih4U\":\"Offline\",\"nO3VbP\":[\"W sprzedaży \",[\"0\"]],\"oXOSPE\":\"Online\",\"aqmy5k\":\"Online — provide connection details\",\"LuZBbx\":\"Online & in-person\",\"IXuOqt\":\"Online & in-person — see schedule\",\"WjSpu5\":\"Wydarzenie online\",\"scPxI/\":[\"Zostało tylko \",[\"capacity\"]],\"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\",\"wkpaqp\":\"Pokaż tylko datę i godzinę rozpoczęcia\",\"DMk8F0\":\"Only tickets count toward capacity\",\"M2w1ni\":\"Widoczne tylko z kodem promocyjnym\",\"y8Bm7C\":\"Open check-in\",\"RLz7P+\":\"Open occurrence\",\"cDSdPb\":\"Opcjonalna nazwa wyświetlana w listach wyboru, np. \\\"Sala konferencyjna\\\"\",\"HXMJxH\":\"Opcjonalny tekst dla zastrzeżeń, informacji kontaktowych lub notek z podziękowaniami (tylko jedna linia)\",\"L565X2\":\"opcje\",\"8m9emP\":\"or add a single date\",\"eBskDE\":\"Lub włącz płatności offline i wyłącz Stripe\",\"dSeVIm\":\"order\",\"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\",\"xtQzag\":\"Order details\",\"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\",\"RQCXz6\":\"Limity zamówień\",\"SO9AEF\":\"Ustawione limity zamówień\",\"vu6Arl\":\"Zamówienie oznaczone jako opłacone\",\"sLbJQz\":\"Zamówienie nie znalezione\",\"kvYpYu\":\"Zamówienie nie znalezione\",\"eJ8SvM\":\"Order number, purchase date, purchaser email\",\"FaPYw+\":\"Właściciel zamówienia\",\"eB5vce\":\"Właściciele zamówień z konkretnym produktem\",\"CxLoxM\":\"Właściciele zamówień z produktami\",\"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\",\"3NT0Ck\":\"Zamówienie zostało anulowane\",\"V5khLm\":\"orders\",\"sd5IMt\":\"Zamówienia zakończone\",\"5It1cQ\":\"Zamówienia wyeksportowane\",\"UQ0ACV\":\"Suma zamówień\",\"B/EBQv\":\"Zamówienia:\",\"qtGTNu\":\"Konta organiczne\",\"P/JHA4\":\"Organizator został pomyślnie zarchiwizowany\",\"S3CZ5M\":\"Panel organizatora\",\"GzjTd0\":\"Organizator został pomyślnie usunięty\",\"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\":\"Organizers\",\"/IX/7x\":\"Inne\",\"RsiDDQ\":\"Inne listy (bilet nie włączony)\",\"aDfajK\":\"Outdoors\",\"qMASRF\":\"Wiadomości wychodzące\",\"iCOVQO\":\"Override\",\"GpFTEc\":\"Override fees on this organizer\",\"M9ZhMP\":\"Override price\",\"cnVIpl\":\"Override removed\",\"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\":\"Past due\",\"xTPjSy\":\"Przeszłe wydarzenia\",\"/l/ckQ\":\"Wklej URL\",\"URAE3q\":\"Wstrzymany\",\"4fL/V7\":\"Zapłać\",\"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\":\"Payouts\",\"UbRKMZ\":\"Pending\",\"UkM20g\":\"Oczekuje na recenzję\",\"dPYu1F\":\"Na uczestnika\",\"mQV/nJ\":\"per min\",\"+kvxv+\":\"na zamówienie\",\"VlXNyK\":\"Na zamówienie\",\"NhuGd7\":\"na produkt\",\"hauDFf\":\"Na bilet\",\"mnF83a\":\"Opłata procentowa\",\"TNLuRD\":\"Percentage fee (%)\",\"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\":\"Permanently remove this date\",\"6kPk3+\":\"Informacje osobiste\",\"zmwvG2\":\"Telefon\",\"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\":\"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\":\"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\":\"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\":\"Please select a date and time\",\"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\":\"Position\",\"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\",\"Jm2AC3\":\"Price Tier\",\"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\":\"Product settings cannot be edited for cancelled dates.\",\"2339ej\":\"Product settings saved successfully\",\"ldVIlB\":\"Produkt zaktualizowany\",\"CP3D8G\":\"Progress\",\"JoKGiJ\":\"Kod promocyjny\",\"k3wH7i\":\"Użycie kodu promocyjnego i podział rabatów\",\"tZqL0q\":\"promo codes\",\"oCHiz3\":\"Promo codes\",\"uEhdRh\":\"Tylko promocyjne\",\"dLm8V5\":\"E-maile promocyjne mogą skutkować zawieszeniem konta\",\"W0ETyY\":\"Podaj co najmniej jedno pole adresu (miejsce, ulica, miasto lub kraj).\",\"2W/7Gz\":\"Provide the following before Stripe's next review to keep payouts flowing.\",\"EEYbdt\":\"Opublikuj\",\"JcgJKc\":\"Opublikuj mimo to\",\"evDBV8\":\"Opublikuj wydarzenie\",\"2zEfOd\":\"Publish your event\",\"L7nrC8\":\"Po opublikowaniu strona Twojego wydarzenia stanie się publiczna i otworzą się zapisy.\",\"dsFmM+\":\"Zakupiony\",\"JunetL\":\"Purchaser\",\"phmeUH\":\"Purchaser email\",\"ywR4ZL\":\"QR code check-in\",\"oWXNE5\":\"Ilość\",\"biEyJ4\":\"Question answers\",\"k/bJj0\":\"Pytania zostały przeorganizowane\",\"b24kPi\":\"Kolejka\",\"lTPqpM\":\"Quick Tip\",\"fqDzSu\":\"Stawka\",\"mnUGVC\":\"Przekroczono limit stawki. Spróbuj ponownie później.\",\"t41hVI\":\"Ponownie zaoferuj miejsce\",\"TNclgc\":\"Reactivate this date? It will be reopened for future sales.\",\"RENQ6j\":\"Gotowy do publikacji?\",\"uqoRbb\":\"Real-time analytics\",\"xzRvs4\":[\"Otrzymuj aktualizacje produktów od \",[\"0\"],\".\"],\"pLXbi8\":\"Ostatnie rejestracje kont\",\"M1HGuR\":\"Recent activity\",\"3kJ0gv\":\"Recent Attendees\",\"qhfiwV\":\"Recent check-ins\",\"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\",\"WEYdDv\":\"Recommended\",\"wuhHPE\":\"Recurring\",\"asLqwt\":\"Wydarzenie cykliczne\",\"s3uzsK\":\"Ustawienia wydarzenia cyklicznego\",\"D0tAMe\":\"Recurring events\",\"JjMIKU\":\"Reddit\",\"HiGkFu\":\"Przekierowywanie do Stripe...\",\"pnoTN5\":\"Konta poleceń\",\"ACKu03\":\"Odśwież podgląd\",\"vuFYA6\":\"Refund all orders for these dates\",\"4cRUK3\":\"Refund all orders for this date\",\"fKn/k6\":\"Kwota zwrotu\",\"qY4rpA\":\"Zwrot nie powiódł się\",\"FaK/8G\":[\"Zwróć zamówienie \",[\"0\"]],\"MGbi9P\":\"Zwrot oczekuje\",\"BDSRuX\":[\"Zwrócony: \",[\"0\"]],\"bU4bS1\":\"Zwroty\",\"rYXfOA\":\"Ustawienia regionalne\",\"5tl0Bp\":\"Pytania rejestracyjne\",\"ZNo5k1\":\"Remaining\",\"Bjh87R\":\"Remove label from all dates\",\"IVZaEo\":\"Całkowicie usuwa wyprzedane daty i godziny ze strony wydarzenia. Gdy wyłączone, pozostają widoczne i są oznaczone jako wyprzedane.\",\"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\":\"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\":\"Reset to base price\",\"kCn6wb\":\"Resetowanie...\",\"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\":\"results\",\"6gRgw8\":\"Spróbuj ponownie\",\"1BG8ga\":\"Spróbuj ponownie wszystkie\",\"rDC+T6\":\"Spróbuj ponownie zadanie\",\"CbnrWb\":\"Wróć do wydarzenia\",\"Lf7TCn\":\"Lokalizacje wielokrotnego użytku pojawiają się tutaj automatycznie, gdy tworzysz wydarzenia z adresami; możesz też dodać własne.\",\"mdQ0zb\":\"Lokalizacje wielokrotnego użytku dla Twoich wydarzeń. Lokalizacje utworzone przez autouzupełnianie są zapisywane tutaj automatycznie.\",\"XFOPle\":\"Reuse\",\"1Zehp4\":\"Reuse a Stripe connection from another organizer in this account.\",\"Oo/PLb\":\"Podsumowanie przychodów\",\"CfuueU\":\"Cofnij ofertę\",\"RIgKv+\":\"Run until a specific date\",\"dFFW9L\":[\"Sprzedaż zakończona \",[\"0\"]],\"loCKGB\":[\"Sprzedaż kończy się \",[\"0\"]],\"wlfBad\":\"Okres sprzedaży\",\"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\":\"Ustawiony okres sprzedaży\",\"ftzaMf\":\"Okres sprzedaży, limity zamówień, widoczność\",\"zpekWp\":[\"Sprzedaż rozpoczyna się \",[\"0\"]],\"mUv9U4\":\"Sprzedaż\",\"9KnRdL\":\"Sprzedaż jest wstrzymana\",\"JC3J0k\":\"Sales, attendance, and check-in breakdown per occurrence\",\"3VnlS9\":\"Sprzedaż, zamówienia i metryki wydajności dla wszystkich wydarzeń\",\"3Q1AWe\":\"Sprzedaż:\",\"LeuERW\":\"Same as event\",\"B4nE3N\":\"Przykładowa cena biletu\",\"8BRPoH\":\"Przykładowa Sala\",\"PiK6Ld\":\"Sat\",\"+5kO8P\":\"Saturday\",\"zJiuDn\":\"Save fee override\",\"NB8Uxt\":\"Save Schedule\",\"KZrfYJ\":\"Zapisz linki społeczne\",\"9Y3hAT\":\"Zapisz szablon\",\"C8ne4X\":\"Zapisz projekt biletu\",\"cTI8IK\":\"Save VAT settings\",\"6/TNCd\":\"Zapisz ustawienia VAT\",\"4RvD9q\":\"Zapisana lokalizacja\",\"cgw0cL\":\"Zapisane lokalizacje\",\"Fbqm/I\":\"Saving an override creates a dedicated configuration for this organizer if it's currently on the system default.\",\"I+FvbD\":\"Skanuj\",\"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\":\"Zaplanuj na później\",\"NAzVVw\":\"Zaplanuj wiadomość\",\"Fz09JP\":\"Schedule starts on\",\"4ba0NE\":\"Zaplanowane\",\"qcP/8K\":\"Zaplanowany czas\",\"A1taO8\":\"Search\",\"ftNXma\":\"Szukaj partnerów...\",\"VMU+zM\":\"Search attendees\",\"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...\",\"YnMfsK\":\"Szukaj po nazwie lub adresie...\",\"VT+urE\":\"Szukaj po nazwie lub e-mailu...\",\"GHdjuo\":\"Szukaj po nazwie, e-mailu lub koncie...\",\"4mBFO7\":\"Search by name, order #, ticket # or email\",\"20ce0U\":\"Szukaj po identyfikatorze zamówienia, nazwie klienta lub e-mailu...\",\"4DSz7Z\":\"Szukaj po temacie, wydarzeniu lub koncie...\",\"nQC7Z9\":\"Search dates...\",\"iRtEpV\":\"Search dates…\",\"JRM7ao\":\"Search for an address\",\"BWF1kC\":\"Szukaj wiadomości...\",\"5WYZKZ\":\"Wyniki wyszukiwania\",\"IG85fV\":\"Szukaj zapisanych lokalizacji lub znajdź adres...\",\"3aD3GF\":\"Seasonal\",\"ku//5b\":\"Second\",\"Mck5ht\":\"Bezpieczne potwierdzenie\",\"s7tXqF\":\"See schedule\",\"JFap6u\":\"See what Stripe still needs\",\"p7xUrt\":\"Wybierz kategorię\",\"hTKQwS\":\"Select a Date & Time\",\"Ps6Xtf\":\"Select a date to see available times\",\"e4L7bF\":\"Wybierz wiadomość, aby zobaczyć jej treść\",\"zPRPMf\":\"Wybierz poziom\",\"BFRSTT\":\"Wybierz konto\",\"wgNoIs\":\"Select all\",\"mCB6Je\":\"Zaznacz wszystko\",\"aCEysm\":[\"Select all on \",[\"0\"]],\"a6+167\":\"Wybierz wydarzenie\",\"CFbaPk\":\"Wybierz grupę uczestników\",\"88a49s\":\"Select camera\",\"tVW/yo\":\"Wybierz walutę\",\"SJQM1I\":\"Select date\",\"n9ZhRa\":\"Wybierz datę i czas zakończenia\",\"gTN6Ws\":\"Wybierz czas zakończenia\",\"0U6E9W\":\"Wybierz kategorię wydarzenia\",\"j9cPeF\":\"Wybierz typy wydarzeń\",\"ypTjHL\":\"Select occurrence\",\"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\":\"selected\",\"ylXj1N\":\"Wybrane\",\"uq3CXQ\":\"Sell out your event.\",\"oBXbO4\":\"Selling a physical product? Cap its quantity on the <0>products page instead.\",\"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\":\"Send to all occurrences, or choose a specific one\",\"QEQlnV\":\"Wyślij swoją pierwszą wiadomość\",\"IoAuJG\":\"Wysyłanie...\",\"h69WC6\":\"Wysłane\",\"BVu2Hz\":\"Wysłane przez\",\"ZFa8wv\":\"Sent to attendees when a scheduled date is cancelled\",\"SPdzrs\":\"Wysłane do klientów, gdy złożą zamówienie\",\"LxSN5F\":\"Wysłane do każdego uczestnika z jego szczegółami biletu\",\"hgvbYY\":\"September\",\"5sN96e\":\"Session cancelled\",\"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\":\"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\":\"Ustaw listy odpraw dla różnych wejść, sesji lub dni.\",\"TaWVGe\":\"Set up payouts\",\"JA//e6\":\"Set up schedule\",\"gzXY7l\":\"Set Up Schedule\",\"0Ls9qe\":\"Set up the tickets you'll sell and their prices\",\"xMO+Ao\":\"Ustaw swoją organizację\",\"5pEFnq\":\"Set up your schedule\",\"h/9JiC\":\"Set Up Your Schedule\",\"zRRuUD\":\"Set up your schedule in the next steps\",\"ETC76A\":\"Set, change, or remove the date's location or online details\",\"C3htzi\":\"Ustawienie zaktualizowane\",\"Ohn74G\":\"Konfiguracja i projekt\",\"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\":\"Udostępnij link partnera\",\"hL7sDJ\":\"Udostępnij stronę organizatora\",\"jy6QDF\":\"Zarządzanie wspólną pojemnością\",\"jDNHW4\":\"Shift times\",\"tPfIaW\":[\"Shifted times for \",[\"count\"],\" date(s)\"],\"WwlM8F\":\"Pokaż opcje zaawansowane\",\"cMW+gm\":[\"Pokaż wszystkie platformy (\",[\"0\"],\" więcej z wartościami)\"],\"wXi9pZ\":\"Show attendee notes to non-logged-in staff\",\"4LZFir\":\"Pokaż cały zakres dat\",\"UVPI5D\":\"Pokaż mniej platform\",\"Eu/N/d\":\"Pokaż checkbox opt-in marketingu\",\"SXzpzO\":\"Pokaż checkbox opt-in marketingu domyślnie\",\"b33PL9\":\"Pokaż więcej platform\",\"Eut7p9\":\"Show order details to non-logged-in staff\",\"+RoWKN\":\"Show question answers to non-logged-in staff\",\"jbcx6L\":\"Show remaining capacity on event dates\",\"rXxBOx\":\"Show remaining capacity to buyers\",\"t1LIQW\":[\"Wyświetlanie \",[\"0\"],\" z \",[\"totalRows\"],\" rekordów\"],\"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\":\"Zarejestrowany\",\"5C7J+P\":\"Single Event\",\"E//btK\":\"Skip manually edited dates\",\"paESr6\":\"Słowacki\",\"9wu8nm\":\"Snapchat\",\"kIKb9e\":\"Społeczność\",\"d0rUsW\":\"Linki społeczne\",\"j/TOB3\":\"Linki społeczne i strona internetowa\",\"s9KGXU\":\"Sprzedane\",\"yp+0jj\":\"sold out\",\"1hupow\":\"Wyprzedane, dostępna lista oczekujących\",\"iACSrw\":\"Some details are hidden from public access. Log in to view everything.\",\"Dia6iz\":\"Something went wrong while deleting the image. Please try again.\",\"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\":\"Spirituality\",\"oPaRES\":\"Split check-in across days, areas, or ticket types. Share the link with staff — no account needed on their end.\",\"7JFNej\":\"Sport\",\"/bfV1Y\":\"Staff instructions\",\"tXkhj/\":\"Start\",\"StWUH4\":\"Start check-in\",\"JcQp9p\":\"Data i czas rozpoczęcia\",\"0m/ekX\":\"Data i czas rozpoczęcia\",\"izRfYP\":\"Data rozpoczęcia jest wymagana\",\"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/\":\"Statystyki\",\"GVUxAX\":\"Statystyki są oparte na dacie utworzenia konta\",\"29Hx9U\":\"Stats\",\"5ia+r6\":\"Still needed\",\"wuV0bK\":\"Zatrzymaj personifikację\",\"s/KaDb\":\"Stripe connected\",\"Bk06QI\":\"Stripe połączony\",\"akZMv8\":[\"Stripe connection copied from \",[\"0\"],\".\"],\"v0aRY1\":\"Stripe didn't return a setup link. Please try again.\",\"aKtF0O\":\"Stripe nie połączony\",\"9i0++A\":\"Identyfikator płatności Stripe\",\"R1lIMV\":\"Stripe will need a few more details soon\",\"FzcCHA\":\"Stripe will walk you through a few quick questions to finish setup.\",\"ii0qn/\":\"Temat jest wymagany\",\"M7Uapz\":\"Temat pojawi się tutaj\",\"6aXq+t\":\"Temat:\",\"JwTmB6\":\"Pomyślnie zduplikowany produkt\",\"WUOCgI\":\"Pomyślnie zaoferowano miejsce\",\"IvxA4G\":[\"Pomyślnie zaoferowano bilety \",[\"count\"],\" osobom\"],\"kKpkzy\":\"Pomyślnie zaoferowano 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\",\"kRWc2g\":\"Pomyślnie zaktualizowano ustawienia wydarzenia cyklicznego\",\"0Dk/l8\":\"Pomyślnie zaktualizowane ustawienia SEO\",\"S8Tua9\":\"Ustawienia zaktualizowane pomyślnie\",\"MhOoLQ\":\"Pomyślnie zaktualizowane linki społeczne\",\"CNSSfp\":\"Ustawienia śledzenia zaktualizowane pomyślnie\",\"kj7zYe\":\"Pomyślnie zaktualizowany Webhook\",\"dXoieq\":\"Podsumowanie\",\"/RfJXt\":[\"Letni Festiwal Muzyki \",[\"0\"]],\"CWOPIK\":\"Letni Festiwal Muzyki 2025\",\"D89zck\":\"Sun\",\"DBC3t5\":\"Sunday\",\"UaISq3\":\"Szwedzki\",\"JZTQI0\":\"Zmień organizatora\",\"9YHrNC\":\"Domyślnie systemowe\",\"lruQkA\":\"Tap this screen to resume scanning\",\"TJUrME\":[\"Targeting attendees across \",[\"0\"],\" selected sessions.\"],\"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\":\"Team collaboration\",\"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\":\"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\":\"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\",\"nm3Iz/\":\"Dziękujemy za udział!\",\"pYwj0k\":\"Thanks,\",\"k3IitN\":\"That's a wrap\",\"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.\",\"7oksH+\":[\"Rabat jest odejmowany od każdego kwalifikującego się produktu. Np. \",[\"currencySymbol\"],\"10 rabatu × 3 bilety = \",[\"currencySymbol\"],\"30 rabatu.\"],\"sKL8k2\":\"Rabat jest odejmowany jednorazowo od łącznej kwoty zamówienia.\",\"cDHM1d\":\"Adres e-mail został zmieniony. Uczestnik otrzyma nowy bilet na zaktualizowany adres e-mail.\",\"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\":\"The first date this schedule will generate from.\",\"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.\",\"Np4eLs\":[\"The maximum is \",[\"MAX_PREVIEW\"],\" sessions. Please reduce the date range, frequency, or number of sessions per day.\"],\"sYLeDq\":\"Organizator, którego szukasz, nie został znaleziony. Strona mogła być przeniesiona, usunięta lub adres URL może być nieprawidłowy.\",\"PCr4zw\":\"The override is recorded in the order audit log.\",\"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\",\"OVSkIF\":\"Szybki brązowy lis przeskakuje nad leniwym psem.\",\"z0KrIG\":\"Zaplanowany czas jest wymagany\",\"EWErQh\":\"Zaplanowany czas musi być w przyszłości\",\"UNd0OU\":[\"The session for \\\"\",[\"title\"],\"\\\" originally scheduled for \",[\"0\"],\" has been rescheduled.\"],\"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\",\"ybBP2H\":\"There are no products available for this date. Please choose another date.\",\"O7g4eR\":\"There are no upcoming dates for this event\",\"062KsE\":\"These details are shown on the attendee's ticket and order summary for this date only.\",\"5Eu+tn\":\"Te szczegóły zostaną pokazane tylko po pomyślnym zrealizowaniu zamówienia.\",\"jQjwR+\":\"These details will replace any existing location on the affected dates and show on attendee tickets.\",\"6eaLu/\":\"Te ceny obowiązują dla wszystkich terminów w harmonogramie, a liczby w progach ograniczają łączną sprzedaż dla wszystkich terminów razem. Daty sprzedaży progów obowiązują globalnie. Ceny dla poszczególnych terminów możesz nadpisać na <0>stronie Harmonogram terminó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\":\"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\":\"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/\":[\"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.\",\"E9BqZw\":\"This date only\",\"RzEvf5\":\"To wydarzenie się skończyło\",\"kc4bIA\":\"To wydarzenie nie ma jeszcze biletów ani produktów, więc uczestnicy nie będą mogli się zarejestrować.\",\"eMaNd0\":\"This event is not available\",\"YClrdK\":\"To wydarzenie nie zostało jeszcze opublikowane\",\"GL6z+k\":\"To wydarzenie jest wyprzedane\",\"pIwDhS\":\"This event's dates and times are set on the occurrence schedule.\",\"ny5rgr\":\"This is a recurring event\",\"tc64Zz\":\"To jest nazwa kategorii, która będzie wyświetlana na stronie wydarzenia.\",\"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.\",\"5DpZrC\":\"To ogranicza łączną sprzedaż dla wszystkich terminów w harmonogramie — nie jest to limit na termin. Aby ograniczyć liczbę uczestników każdego terminu, ustaw pojemność na <0>stronie Harmonogram terminów.\",\"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\":\"This occurrence is at capacity\",\"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\",\"qEGn8I\":\"To cykliczne wydarzenie nie ma jeszcze terminów, więc uczestnicy nie mają czego rezerwować.\",\"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.\",\"1LuJNw\":\"Ten bilet nie jest już ważny\",\"0Ew0uk\":\"Ten bilet właśnie został zeskanowany. Proszę czekać przed zeskanowaniem ponownie.\",\"FYXq7k\":[\"This will affect \",[\"loadedAffectedCount\"],\" date(s).\"],\"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\":\"Throughput\",\"+FjWgX\":\"Thu\",\"kkDQ8m\":\"Thursday\",\"0GSPnc\":\"Projektowanie biletów\",\"EZC/Cu\":\"Projekt biletów został pomyślnie zapisany\",\"bbslmb\":\"Projektant biletów\",\"1BPctx\":\"Bilet dla\",\"HGuXjF\":\"Posiadacze biletów\",\"CMUt3Y\":\"Posiadacze biletów\",\"awHmAT\":\"ID biletu\",\"6czJik\":\"Logo biletu\",\"t79rDv\":\"Bilet nie znaleziony\",\"6tmWch\":\"Bilet lub produkt\",\"1tfWrD\":\"Podgląd biletu dla\",\"KnjoUA\":\"Cena biletu\",\"pGZOcL\":\"Bilet został pomyślnie ponownie wysłany\",\"o02GZM\":\"Ticket sales have ended for this event\",\"8jLPgH\":\"Typ 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\":\"Time\",\"fXf2r5\":[\"Times shown in \",[\"timezoneAbbr\"]],\"dMtLDE\":\"to\",\"/jQctM\":\"Do\",\"tiI71C\":\"Aby zwiększyć swoje limity, skontaktuj się z nami pod adresem\",\"ecUA8p\":\"Today\",\"W428WC\":\"Przełącz kolumny\",\"BRMXj0\":\"Tomorrow\",\"UBSG1X\":\"Najlepsi organizatorzy (ostatnie 14 dni)\",\"3sZ0xx\":\"Razem kont\",\"SMDzqJ\":\"Łącznie uczestników\",\"orBECM\":\"Razem zebrano\",\"k5CU8c\":\"Łączna liczba wpisów\",\"4B7oCp\":\"Łączna opłata\",\"sMMlTX\":\"Total fees\",\"mlvCEl\":\"Total orders\",\"2AW/k5\":\"Łączna liczba dla wszystkich terminów\",\"dp8BCb\":\"Total tax\",\"vb0Q0/\":\"Razem użytkowników\",\"oJjplO\":\"Razem wyświetleń\",\"rBZ9pz\":\"Tours\",\"orluER\":\"Śledź wzrost konta i wydajność według źródła atrybuacji\",\"YwKzpH\":\"Śledzenie i analityka\",\"GUA0Jy\":\"Try a different search term or filter\",\"2P/OWN\":\"Try adjusting your filters to see more dates.\",\"ouM5IM\":\"Spróbuj innego e-maila\",\"3DZvE7\":\"Spróbuj Hi.Events za darmo\",\"vq2WxD\":\"Tue\",\"G3myU+\":\"Tuesday\",\"Kz91g/\":\"Turecki\",\"GdOhw6\":\"Wyłącz dźwięk\",\"KUOhTy\":\"Włącz dźwięk\",\"dBeuY2\":\"Twitch\",\"QytzQr\":\"Wpisz \\\"usuń\\\", aby potwierdzić\",\"nWRfmt\":\"Typografia\",\"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\":\"Unable to load attendee details.\",\"GlnD5Y\":\"Unable to load products for this date. Please try again.\",\"17VbmV\":\"Unable to undo check-in\",\"n57zCW\":\"Konta nieprzypisane\",\"9uI/rE\":\"Undo\",\"Ef7StM\":\"Nieznany\",\"ZBAScj\":\"Nieznany uczestnik\",\"MEIAzV\":\"Bez nazwy\",\"K6L5Mx\":\"Lokalizacja bez nazwy\",\"7yiFvZ\":\"Nieopłacony\",\"X13xGn\":\"Niezaufane\",\"gyXpQN\":\"Upcoming events\",\"Pp1sWX\":\"Aktualizuj partnera afiliacji\",\"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\":\"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\":\"USB scanner listening\",\"dyTklH\":\"USB scanner paused\",\"OHJXlK\":\"Użyj <0>szablonów Liquid do personalizacji e-maili\",\"/rsy72\":\"Use event default\",\"0k4cdb\":\"Użyj danych zamówienia dla wszystkich uczestników. Imiona i e-maile uczestników będą odpowiadać informacjom kupującego.\",\"bA31T4\":\"Użyj danych kupującego dla wszystkich uczestników\",\"PpgtnC\":\"Użyj tego adresu\",\"rnoQsz\":\"Używane do obramowań, wyróżnień i stylizacji kodów QR\",\"BV4L/Q\":\"Analityka UTM\",\"l5ackE\":\"UUID\",\"imLQ9Y\":\"Walidacja numeru VAT...\",\"t7caBM\":\"VAT country code\",\"WLkfqH\":\"VAT number\",\"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 zwalidowany pomyślnie\",\"RUMiLy\":\"Walidacja numeru VAT nie powiodła się\",\"vqji3Y\":\"Walidacja numeru VAT nie powiodła się. Sprawdź swój numer VAT.\",\"8dENF9\":\"VAT od opłaty\",\"ZutOKU\":\"Stawka VAT\",\"+KJZt3\":\"VAT registered\",\"Nfbg76\":\"Ustawienia VAT zapisane pomyślnie\",\"UvYql/\":\"Ustawienia VAT zapisane. Walidujemy Twój numer VAT w tle.\",\"bXn1Jz\":\"VAT settings updated\",\"tJylUv\":\"Traktowanie VAT dla opłat platformy\",\"FlGprQ\":\"Traktowanie VAT dla opłat platformy: firmy zarejestrowane jako podatnicy VAT w UE mogą stosować mechanizm odwrotnego obciążenia (0% - art. 196 Dyrektywy VAT 2006/112/WE). Firmy niezarejestrowane jako podatnicy VAT są obciążane irlandzkim VAT w wysokości 23%.\",\"516oLj\":\"Usługa walidacji VAT tymczasowo niedostępna\",\"p6QQLa\":[\"VAT: \",[\"0\"]],\"5q87Y9\":\"VAT: not registered\",\"AdWhjZ\":\"Kod weryfikacyjny\",\"kUAumu\":\"Verification email sent. Check your inbox.\",\"QDEWii\":\"Zweryfikowany\",\"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\":\"View All\",\"yA/6BX\":\"View all →\",\"6CQ7/B\":\"View all capabilities\",\"YSE15b\":\"View all check-in lists\",\"RnvnDc\":\"Wyświetl wszystkie wiadomości wysłane na platformie\",\"+WFMis\":\"Wyświetl i pobierz raporty ze wszystkich wydarzeń. Uwzględnione są tylko zrealizowane zamówienia.\",\"c7VN/A\":\"Wyświetl odpowiedzi\",\"SZw9tS\":\"Wyświetl szczegóły\",\"9+84uW\":[\"View details for \",[\"0\"],\" \",[\"1\"]],\"FCVmuU\":\"Wyświetl wydarzenie\",\"c6SXHN\":\"Wyświetl stronę wydarzenia\",\"n6EaWL\":\"Wyświetl logi\",\"OaKTzt\":\"Wyświetl mapę\",\"zNZNMs\":\"Wyświetl wiadomość\",\"67OJ7t\":\"Wyświetl zamówienie\",\"tKKZn0\":\"Wyświetl szczegóły zamówienia\",\"KeCXJu\":\"Wyświetl szczegóły zamówienia, wydawaj zwroty i ponownie wysyłaj potwierdzenia.\",\"9jnAcN\":\"Wyświetl stronę organizatora\",\"1J/AWD\":\"Zobacz bilet\",\"N9FyyW\":\"Wyświetl, edytuj i eksportuj zarejestrowanych uczestników.\",\"6dp/Hz\":\"Vimeo\",\"SS4mGB\":\"VK\",\"uUehLT\":\"Oczekuje\",\"quR8Qp\":\"Oczekiwanie na płatność\",\"KrurBH\":\"Waiting for scan…\",\"u0n+wz\":\"Lista oczekujących\",\"3RXFtE\":\"Lista oczekujących włączona\",\"TwnTPy\":\"Oferta z listy oczekujących wygasła\",\"aUi/Dz\":\"Ostrzeżenie: To jest domyślna konfiguracja systemu. Zmiany wpłyną na wszystkie konta, które nie mają przypisanej konkretnej konfiguracji.\",\"aT/44s\":\"We couldn't copy that Stripe connection. Please try again.\",\"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.\",\"Fjj/5/\":\"We couldn't load the check-in lists. Please try again.\",\"ADsQ23\":\"We couldn't reach Stripe just now. Please try again in a moment.\",\"HJKdzP\":\"Napotkaliśmy problem podczas ładowania tej strony. Proszę spróbować ponownie.\",\"jegrvW\":\"We partner with Stripe to send payouts straight to your bank account.\",\"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 lepiej zrozumieć, jak korzysta się z witryny, i poprawić Twoje wrażenia.\",\"x8rEDQ\":\"Nie mogliśmy zweryfikować numeru VAT po wielu próbach. Będziemy kontynuować próby w tle. Proszę sprawdzić później.\",\"mfM/HJ\":[\"Powiadomimy Cię e-mailem, jeśli miejsce stanie się dostępne dla \",[\"productDisplayName\"],\" w dniu \",[\"occurrenceDate\"],\".\"],\"iy+M+c\":[\"Powiadomimy Cię e-mailem, jeśli miejsce stanie się dostępne dla \",[\"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\":\"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\":[\"We've made changes to the schedule for \\\"\",[\"title\"],\"\\\" — \",[\"description\"],\" affecting \",[\"affectedCount\"],\" session(s).\"],\"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\":\"Webhook integrations\",\"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\":\"Wed\",\"VAcXNz\":\"Wednesday\",\"64X6l4\":\"week\",\"4XSc4l\":\"Weekly\",\"IAUiSh\":\"weeks\",\"vKLEXy\":\"Weibo\",\"9eF5oV\":\"Witamy ponownie\",\"QDWsl9\":[\"Witamy w \",[\"0\"],\", \",[\"1\"],\" 👋\"],\"LETnBR\":[\"Witamy w \",[\"0\"],\", oto lista wszystkich Twoich wydarzeń\"],\"DDbx7K\":\"Wellness\",\"ywRaYa\":\"What time?\",\"FaSXqR\":\"Jaki typ wydarzenia?\",\"0WyYF4\":\"What unauthenticated staff can see\",\"2+ExvJ\":\"WhatsApp\",\"cxsKvw\":\"Gdy odprawa zostanie usunięta\",\"RPe6bE\":\"When a date is cancelled on a recurring event\",\"Gmd0hv\":\"Gdy nowy uczestnik zostanie utworzony\",\"zyIyPe\":\"Gdy tworzone jest 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 się wyprzeda, klienci mogą dołączyć do listy oczekujących, aby otrzymać powiadomienie, gdy miejsca staną się dostępne.\",\"OIkHj+\":\"Gdy produkt się wyprzeda, klienci mogą dołączyć do listy oczekujących, aby otrzymać powiadomienie, gdy miejsca staną się dostępne. Klienci dołączają do listy oczekujących na konkretną datę, a oferty są składane dla poszczególnych dat.\",\"Q7CWxp\":\"Gdy uczestnik zostanie anulowany\",\"IuUoyV\":\"Gdy uczestnik zostanie odprawiony\",\"nBVOd7\":\"Gdy uczestnik zostanie zaktualizowany\",\"t7cuMp\":\"Gdy wydarzenie jest archiwizowane\",\"gtoSzE\":\"Gdy wydarzenie jest aktualizowane\",\"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\":\"Gdy klienci kupią bilety, ich zamówienia pojawią się tutaj.\",\"pm9tpn\":\"Po włączeniu kupujący mogą jednocześnie skopiować swoje imię i adres e-mail do wszystkich uczestników. Wyłącz, aby usunąć opcję \\\"Wszyscy uczestnicy\\\"; kupujący nadal będą mogli skopiować dane do pierwszego uczestnika, a pozostałych trzeba będzie wprowadzić osobno.\",\"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.\",\"uchB0M\":\"Podgląd widgetu\",\"uvIqcj\":\"Warsztaty\",\"EpknJA\":\"Napisz swoją wiadomość tutaj...\",\"nhtR6Y\":\"X (Twitter)\",\"7qI8sJ\":\"year\",\"zkWmBh\":\"Yearly\",\"+BGee5\":\"years\",\"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+\":\"You can override this for individual dates later.\",\"paWwQ0\":\"W razie potrzeby nadal możesz ręcznie oferować bilety.\",\"jTDzpA\":\"Nie możesz zarchiwizować ostatniego aktywnego organizatora na swoim koncie.\",\"D8baxD\":\"Masz płatne bilety, ale Stripe nie jest jeszcze połączony, więc nie możesz przyjmować płatności.\",\"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/\":\"You need to create at least one occurrence before you can add attendees to this recurring event.\",\"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\":\"You'll be able to set up dates, schedules, and recurrence rules in the next step.\",\"zKAheG\":\"You're changing session times\",\"MNFIxz\":[\"Idziesz na \",[\"0\"],\"!\"],\"ZlLcht\":[\"Dołączasz do listy oczekujących na \",[\"occurrenceDate\"],\".\"],\"qGZz0m\":\"Jesteś na liście oczekujących!\",\"/5HL6k\":\"Zaproponowano Ci miejsce!\",\"gbjFFH\":\"You've changed the session time\",\"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\":\"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\":\"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 mogliśmy zrealizować Twojego zamówienia. Dołącz ponownie do listy oczekujących, aby otrzymać powiadomienie, gdy więcej miejsc stanie się dostępnych.\",\"9Q6UKX\":\"YouTube\"}")}; \ No newline at end of file +/*eslint-disable*/module.exports={messages:JSON.parse("{\"f8qS7T\":\"'Nie ma jeszcze nic do wyświetlenia'\",\"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 Main Street\",\"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\":\"Are you sure you want to make this event public? This will make the event visible to the public\",\"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\":\"Attendee Notes\",\"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\":\"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\":\"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\":\"Check-in\",\"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\":\"Dostosuj swoją stronę wydarzenia\",\"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\":\"Dismiss\",\"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\":\"Event URL\",\"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\":\"No attendees have been added to this order.\",\"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\":\"No product associated with this attendee.\",\"Ya1JhR\":\"Brak produktów dostępnych w tej kategorii.\",\"FTfObB\":\"Brak produktów jeszcze\",\"+Y976X\":\"Brak kodów promocyjnych do wyświetlenia\",\"MAavyl\":\"No questions answered by this attendee.\",\"SnlQeq\":\"No questions have been asked for this order.\",\"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\":\"Online event\",\"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\":\"Order #\",\"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\":\"Order Notes\",\"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\":\"Obsługiwane przez\",\"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,\\nwytyczne lub 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\":\"Produkt zaktualizowany pomyślnie\",\"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 będzie otrzymywać 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\":\"View\",\"Pte1Hv\":\"Wyświetl szczegóły uczestnika\",\"/5PEQz\":\"Wyświetl stronę wydarzenia\",\"fFornT\":\"View full message\",\"YIsEhQ\":\"View map\",\"Ep3VfY\":\"Wyświetl 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\":\"(none)\",\"xYxQCZ\":[[\"0\"],\" \",[\"1\"]],\"lAOy2r\":[[\"0\"],\" \",[\"1\"],\" jest już zameldowany\"],\"3beCx0\":[[\"0\"],\" <0>checked in\"],\"S4PqS9\":[[\"0\"],\" Aktywne webhooki\"],\"6MIiOI\":[[\"0\"],\" pozostało\"],\"COnw8D\":[\"logo \",[\"0\"]],\"xG9N0H\":[[\"0\"],\" of \",[\"1\"],\" seats are taken.\"],\"B7pZfX\":[[\"0\"],\" organizatorów\"],\"/HkCs4\":[[\"0\"],\" biletów\"],\"30bTiU\":[[\"activeCount\"],\" enabled\"],\"jTs4am\":[[\"appName\"],\" logo\"],\"gbJOk9\":[[\"attendeeCount\"],\" attendees are registered for this session.\"],\"TjbIUI\":[[\"availableCount\"],\" z \",[\"totalCount\"],\" dostępnych\"],\"PSChHo\":[\"Pozostało miejsc: \",[\"capacity\"]],\"lzQ8/M\":[[\"checkedIn\"],\" / \",[\"total\"],\" checked in\"],\"RZ0JX3\":[[\"chipTime\"],\", wyprzedane\"],\"M4KnFs\":[[\"chipTime\"],\", Wyprzedane, dostępna lista oczekujących\"],\"SeyN12\":[[\"completedCount\"],\" of \",[\"totalCount\"],\" steps complete\"],\"f2rhaD\":[[\"diffHr\"],\"h ago\"],\"NRSLBe\":[[\"diffMin\"],\"m ago\"],\"iYfwJE\":[[\"diffSec\"],\"s ago\"],\"OJnhhX\":[[\"eventCount\"],\" wydarzeń\"],\"mhZbzw\":[[\"loadedAffectedAttendees\"],\" attendees are registered across the affected sessions.\"],\"RBuxIl\":[[\"productCount\"],\" ticket types configured\"],\"VFLd0I\":[[\"slotCount\"],\" times available\"],\"3IEF7U\":[[\"totalCount\"],\" typów biletów\"],\"0cLzoF\":[[\"totalOccurrences\"],\" dates\"],\"AEGc4t\":[[\"totalOccurrences\"],\" sessions across \",[\"0\"],\" dates (\",[\"1\",\"plural\",{\"one\":[\"#\",\" session\"],\"other\":[\"#\",\" sessions\"]}],\" per day)\"],\"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.\",\"Il5Uid\":\"<0>To łączna dostępna liczba dla wszystkich terminów w harmonogramie — nie jest to limit na termin. Aby ograniczyć liczbę uczestników każdego terminu, ustaw pojemność na <1>stronie Harmonogram terminów.\",\"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\":\"1 attendee is registered across the affected sessions.\",\"qOyE2U\":\"1 attendee is registered for this session.\",\"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\",\"y2Jh0m\":\"1 time available\",\"cGtUz6\":\"1 tydzień przed wydarzeniem\",\"HR/cvw\":\"123 Przykładowa Ulica\",\"dgKxZ5\":\"135+ currencies & 40+ payment methods\",\"kMU5aM\":\"Wiadomość o anulowaniu została wysłana do\",\"o++0qa\":\"a change in duration\",\"WuWSX5\":\"A few quick steps and you're ready to start selling.\",\"RQ5kDd\":\"Komunikat wyświetlany, gdy w tej kategorii nie ma produktów.\",\"V53XzQ\":\"Nowy kod weryfikacyjny został wysłany na Twój email\",\"sr2Je0\":\"a shift in start/end times\",\"/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\":[\"Account · \",[\"0\"],\" · \",[\"1\"]],\"vOuxvL\":\"Informacja o koncie\",\"EHNORh\":\"Konto nie znalezione\",\"bPwFdf\":\"Konta\",\"AhwTa1\":\"Wymagane działanie: Potrzebne informacje VAT\",\"APyAR/\":\"Aktywne wydarzenia\",\"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\":\"Dodaj niestandardowe pytania, aby zebrać dodatkowe informacje podczas płatności\",\"Z/dcxc\":\"Add Date\",\"QeupRg\":\"Dodaj terminy\",\"Q219NT\":\"Add Dates\",\"yjB5VC\":\"Add dates and times for your recurring event\",\"Z8idyM\":\"Add details\",\"wpirGs\":\"Add event details\",\"VX6WUv\":\"Dodaj lokalizację\",\"GCQlV2\":\"Add multiple times if you run several sessions per day.\",\"7JF9w9\":\"Dodaj pytanie\",\"NLbIb6\":\"Add this attendee anyway (override capacity)\",\"6PNlRV\":\"Dodaj to wydarzenie do swojego kalendarza\",\"BGD9Yt\":\"Dodaj bilety\",\"uIv4Op\":\"Dodaj piksele śledzące do swoich publicznych stron wydarzeń i strony głównej organizatora. Baner zgody na pliki cookie będzie wyświetlany odwiedzającym, gdy śledzenie jest aktywne.\",\"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\":\"Affiliate program\",\"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ść.\",\"3e31kI\":\"After your event is created, you can choose how often it repeats from the dashboard.\",\"z7GAMJ\":\"all\",\"N40H+G\":\"All\",\"7rLTkE\":\"Wszystkie zarchiwizowane wydarzenia\",\"gKq1fa\":\"Wszyscy uczestnicy\",\"63gRoO\":\"All attendees of the selected sessions\",\"uWxIoH\":\"All attendees of this occurrence\",\"pMLul+\":\"Wszystkie waluty\",\"sgUdRZ\":\"All dates\",\"e4q4uO\":\"All Dates\",\"ZS/D7f\":\"Wszystkie zakończone wydarzenia\",\"QsYjci\":\"Wszystkie wydarzenia\",\"31KB8w\":\"Wszystkie nieudane zadania usunięte\",\"D2g7C7\":\"Wszystkie zadania w kolejce do ponowienia\",\"B4RFBk\":\"All matching dates\",\"F1/VgK\":\"All occurrences\",\"OpWjMq\":\"All Occurrences\",\"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.\",\"VZdky1\":\"Pozwól kupującym kopiować swoje dane do wszystkich uczestników\",\"F3mW5G\":\"Pozwól klientom dołączyć do listy oczekujących, gdy ten produkt jest wyprzedany\",\"4CMO/q\":\"Pozwól klientom dołączyć do listy oczekujących, gdy ten produkt jest wyprzedany. Klienci dołączają do listy oczekujących na konkretną datę.\",\"c4uJfc\":\"Prawie gotowe! Czekamy tylko na przetworzenie Twojej płatności. To powinno zająć tylko kilka sekund.\",\"ocS8eq\":[\"Masz już konto? <0>\",[\"0\"],\"\"],\"uCuEqI\":\"Already in\",\"/H326L\":\"Już zwrócone\",\"USEpOK\":\"Already use Stripe on another organizer? Reuse that connection.\",\"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.\",\"OPFdAM\":\"Opcjonalny opis tej kategorii wyświetlany na stronie wydarzenia.\",\"eusccx\":\"Opcjonalna wiadomość do wyświetlenia na wyróżnionym produkcie, np. \\\"Sprzedaje się szybko 🔥\\\" lub \\\"Najlepsza wartość\\\"\",\"5GJuNp\":[\"and \",[\"0\"],\" more...\"],\"QNrkms\":\"Odpowiedź zaktualizowana pomyślnie.\",\"+qygei\":\"Answers\",\"GK7Lnt\":\"Answers provided at checkout (e.g. meal choice)\",\"lE8PgT\":\"Any dates you've manually customized will be kept.\",\"jVoYha\":[\"zastosowano — \",[\"0\"],\" zniżki na zamówienie\"],\"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\":\"Zatwierdź wiadomość\",\"naCW6Z\":\"April\",\"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\":[\"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\":\"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/\":\"Are you sure you want to delete this date? This action cannot be undone.\",\"RiF/yT\":\"Are you sure you want to delete this image?\",\"b3+Qku\":\"Are you sure you want to delete this tax or fee? It will no longer be applied to new orders.\",\"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 powiadomienie e-mail.\",\"yAXqWW\":\"Are you sure you want to permanently delete this date? This cannot be undone.\",\"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?\",\"b7tkGp\":\"Are you sure you want to revoke this invitation?\",\"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\":\"Assign plan\",\"xdiER7\":\"Przypisany poziom\",\"F2rX0R\":\"Musi być wybrany co najmniej jeden typ wydarzenia\",\"Z44eZS\":\"At least one product must stay available for this date. To make the date inaccessible, cancel it from the schedule instead.\",\"BCmibk\":\"Próby\",\"6PecK3\":\"Frekwencja i wskaźniki odpraw we wszystkich wydarzeniach\",\"K2tp3v\":\"attendee\",\"AJ4rvK\":\"Uczestnik anulowany\",\"qvylEK\":\"Uczestnik utworzony\",\"Aspq3b\":\"Zbieranie szczegółów uczestnika\",\"fpb0rX\":\"Szczegóły uczestnika skopiowane z zamówienia\",\"94aQMU\":\"Informacje o uczestniku\",\"KkrBiR\":\"Zbieranie informacji o uczestniku\",\"sjPjOg\":\"Attendee notes\",\"cosfD8\":\"Status uczestnika\",\"D2qlBU\":\"Uczestnik zaktualizowany\",\"22BOve\":\"Uczestnik zaktualizowany pomyślnie\",\"x8Vnvf\":\"Bilet uczestnika nie jest uwzględniony na tej liście\",\"/Ywywr\":\"attendees\",\"zLRobu\":\"attendees checked in\",\"k3Tngl\":\"Uczestnicy wyeksportowani\",\"UoIRW8\":\"Uczestnicy zarejestrowani\",\"5UbY+B\":\"Uczestnicy z konkretnym biletem\",\"4HVzhV\":\"Uczestnicy:\",\"HVkhy2\":\"Analityka atrybucji\",\"dMMjeD\":\"Podział atrybucji\",\"1oPDuj\":\"Wartość atrybucji\",\"DBHTm/\":\"August\",\"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 następnej osobie, gdy pojawi się dostępność. Jeśli wyłączone, możesz ręcznie przetwarzać listę oczekujących ze strony Listy oczekujących.\",\"csDS2L\":\"Dostępne\",\"Xp+ywP\":\"Dostępne po zakończeniu płatności\",\"dwDH1K\":[\"Available times on \",[\"dayName\"]],\"clF06r\":\"Dostępne do zwrotu\",\"NB5+UG\":\"Dostępne tokeny\",\"L+wGOG\":\"Awaiting\",\"qcw2OD\":\"Awaiting pay\",\"kNmmvE\":\"Świetne Wydarzenia Sp. z o.o.\",\"TeSaQO\":\"Powrót do kont\",\"kYqM1A\":\"Powrót do wydarzenia\",\"s5QRF3\":\"Powrót do wiadomości\",\"td/bh+\":\"Powrót do raportów\",\"nsm7BA\":\"Wróć do wyszukiwania\",\"imjKVx\":\"Bank account connected\",\"D9LTCH\":\"Base Price\",\"hviJef\":\"Based on the global sale period above, not per date\",\"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\":\"Built-in fraud protection\",\"cr7kGH\":\"Bulk Edit\",\"1Fbd6n\":\"Bulk Edit Dates\",\"Eq6Tu9\":\"Bulk update failed.\",\"9N+p+g\":\"Biznes\",\"SWnN1L\":\"Business address\",\"kQekXw\":\"Business name\",\"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 zebranych danych. Jesteś odpowiedzialny za zapewnienie, że masz podstawę prawną 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\":\"By day of month\",\"0MnNgi\":\"By day of week\",\"CetOZE\":\"By ticket type\",\"lFdbRS\":\"Pomiń opłaty aplikacji\",\"AjVXBS\":\"Calendar\",\"2VLZwd\":\"Przycisk wezwania do działania\",\"rT2cV+\":\"Camera\",\"7hYa9y\":\"Camera permission was denied. <0>Request permission again, or grant this page camera access in your browser settings.\",\"D02dD9\":\"Kampania\",\"RRPA79\":\"Can't check in\",\"OcVwAd\":[\"Cancel \",[\"count\"],\" date(s)\"],\"H4nE+E\":\"Anuluj wszystkie produkty i zwolnij je z powrotem do puli\",\"Py78q9\":\"Cancel Date\",\"tOXAdc\":\"Anulowanie anuluje wszystkich uczestników związanych z tym zamówieniem i zwolni bilety z powrotem do dostępnej puli.\",\"FPpqc7\":[\"Cancelling \",[\"0\"],\" date(s). This may take a moment to complete.\"],\"01sEfm\":\"Nie można usunąć domyślnej konfiguracji systemu\",\"VsM1HH\":\"Przypisania pojemności\",\"9bIMVF\":\"Capacity management\",\"H7K8og\":\"Capacity must be 0 or greater\",\"nzao08\":\"capacity updates\",\"4cp9NP\":\"Capacity Used\",\"K7tIrx\":\"Kategoria\",\"DRK3Bq\":\"Category deleted successfully\",\"o+XJ9D\":\"Zmień\",\"kJkjoB\":\"Change duration\",\"J0KExZ\":\"Change the attendee limit\",\"ssospy\":\"Change time\",\"CIHJJf\":\"Zmień ustawienia listy oczekujących\",\"B5icLR\":[\"Changed duration for \",[\"count\"],\" date(s)\"],\"Kb+0BT\":\"Charges\",\"2tbLdK\":\"Dobroczynność\",\"BPWGKn\":\"Check in\",\"6uFFoY\":\"Check out\",\"FjAlwK\":[\"Check out this event: \",[\"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\":\"Check-In\",\"udRwQs\":\"Odprawa utworzona\",\"F4SRy3\":\"Odprawa usunięta\",\"as6XfO\":[\"Check-in for \",[\"0\"],\" was undone\"],\"9s/wrQ\":\"Check-in history\",\"Wwztk4\":\"Check-In List\",\"9gPPUY\":\"Lista odpraw utworzona\",\"dwjiJt\":\"Check-in list info\",\"7od0PV\":\"check-in lists\",\"f2vU9t\":\"Listy odpraw\",\"XprdTn\":\"Check-in navigation\",\"5tV1in\":\"Check-in progress\",\"SHJwyq\":\"Wskaźnik zameldowań\",\"qCqdg6\":\"Status zameldowania\",\"cKj6OE\":\"Podsumowanie zameldowań\",\"7B5M35\":\"Zameldowania\",\"VrmydS\":\"Checked in\",\"DM4gBB\":\"Chiński (tradycyjny)\",\"p8Jvp4\":\"Choose a configuration\",\"ElShBO\":\"Choose a different action\",\"pHEhf+\":\"Wybierz krój pisma pasujący do Twojej marki. Czcionki są hostowane przez Bunny Fonts.\",\"Zok1Gx\":\"Choose an organizer\",\"pkk46Q\":\"Wybierz organizatora\",\"Ag32+c\":\"Choose another date\",\"Crr3pG\":\"Wybierz kalendarz\",\"Z38ZJu\":\"Wybierz, jak data wydarzenia jest pokazywana na bilecie\",\"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\":\"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\":\"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\":\"complete\",\"bUQMpb\":\"Complete Stripe setup\",\"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\":\"Configuration assigned\",\"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\":\"Configure which products are available for this occurrence and optionally adjust pricing.\",\"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\",\"/K4Vqr\":\"Połącz Stripe, aby przyjmować płatności\",\"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\":\"Szczegóły połączenia są wymagane dla wydarzeń online\",\"jfC/xh\":\"Kontakt\",\"LOFgda\":[\"Kontakt \",[\"0\"]],\"41BQ3k\":\"E-mail kontaktowy\",\"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\",\"s30OcA\":\"Kontroluj sposób wyświetlania dat i godzin na stronie wydarzenia\",\"p2FRHj\":\"Kontroluj, jak opłaty platformy są obsługiwane dla tego wydarzenia\",\"NqfabH\":\"Control who gets in for this date\",\"fmYxZx\":\"Control who gets in, and when\",\"1JnTgU\":\"Skopiowane z góry\",\"FxVG/l\":\"Skopiowane do schowka\",\"PiH3UR\":\"Skopiowane!\",\"4i7smN\":\"Copy account ID\",\"uUPbPg\":\"Kopiuj link partnera\",\"iVm46+\":\"Kopiuj kod\",\"cF2ICc\":\"Kopiuj link klienta\",\"+2ZJ7N\":\"Kopiuj szczegóły do pierwszego uczestnika\",\"ZN1WLO\":\"Kopiuj e-mail\",\"y1eoq1\":\"Kopiuj link\",\"tUGbi8\":\"Kopiuj moje szczegóły do:\",\"y22tv0\":\"Kopiuj ten link, aby udostępnić go wszędzie\",\"/4gGIX\":\"Kopiuj do schowka\",\"e0f4yB\":\"Nie udało się usunąć lokalizacji\",\"vkiDx2\":\"Could not prepare the bulk update.\",\"KOavaU\":\"Nie udało się pobrać szczegółów adresu\",\"/lq4oO\":\"Could not save date\",\"mHu0az\":\"Couldn't send verification email. Please try again.\",\"QOIm+S\":\"Liczby obejmują wszystkie nadchodzące daty. Każda osoba otrzymuje ofertę miejsca na datę, na którą się zapisała.\",\"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\":\"Covers every ticket\",\"zg4oSu\":[\"Utwórz szablon \",[\"0\"]],\"RKKhnW\":\"Utwórz niestandardowy widget do sprzedaży biletów na swojej stronie.\",\"6sk7PP\":\"Create a fixed number\",\"jqhTmw\":\"Create a list for this date\",\"PhioFp\":\"Create a new check-in list for an active session, or contact the organizer if you think this is a mistake.\",\"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\":\"Create Date\",\"Nc3l/D\":\"Utwórz rabaty, kody dostępu dla ukrytych biletów i specjalne oferty.\",\"PybJS2\":\"Create event\",\"eWEV9G\":\"Utwórz nowe hasło\",\"wl2iai\":\"Create Schedule\",\"8AiKIu\":\"Utwórz bilet lub produkt\",\"/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\":\"Utwórz swoje pierwsze wydarzenie, aby rozpocząć sprzedaż biletów i zarządzanie uczestnikami.\",\"ZCSSd+\":\"Utwórz własne wydarzenie\",\"qdv10s\":[\"Tworzenie \",[\"0\"],\" terminów. To może chwilę potrwać.\"],\"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\":\"Currently assigned\",\"iTvh6I\":\"Obecnie dostępne do zakupu\",\"A42Dqn\":\"Custom branding\",\"Guo0lU\":\"Niestandardowa data i godzina\",\"WDMdn8\":\"Custom questions\",\"O6mra8\":\"Niestandardowe pytania\",\"axv/Mi\":\"Niestandardowy szablon\",\"2YeVGY\":\"Link klienta skopiowany do schowka\",\"QMHSMS\":\"Klient otrzyma e-mail potwierdzający zwrot\",\"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\":\"Daily\",\"/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\":\"Dance\",\"pvnfJD\":\"Ciemny\",\"MaB9wW\":\"Date Cancellation\",\"e6cAxJ\":\"Date cancelled\",\"81jBnC\":\"Date cancelled successfully\",\"a/C/6R\":\"Date created successfully\",\"IW7Q+u\":\"Date deleted\",\"rngCAz\":\"Date deleted successfully\",\"vHbfoQ\":\"Date reactivated\",\"hvah+S\":\"Date reopened for new sales\",\"Ez0YsD\":\"Date updated successfully\",\"Te33mU\":\"Dates are managed per occurrence\",\"91zCxb\":\"Dates with sessions\",\"/ITcnz\":\"day\",\"H7OUPr\":\"Day\",\"JtHrX9\":\"Day of Month\",\"J/Upwb\":\"days\",\"vDVA2I\":\"Days of Month\",\"rDLvlL\":\"Days of Week\",\"r6zgGo\":\"December\",\"jbq7j2\":\"Odrzuć\",\"ovBPCi\":\"Domyślny\",\"JtI4vj\":\"Domyślne zbieranie informacji o uczestniku\",\"ULjv90\":\"Default capacity per date\",\"3R/Tu2\":\"Domyślne obsługiwanie opłat\",\"1bZAZA\":\"Zostanie użyty domyślny szablon\",\"HNlEFZ\":\"usuń\",\"KpnwJK\":[\"Usunąć \\\"\",[\"0\"],\"\\\"?\"],\"BlII4o\":[\"Delete \",[\"count\"],\" selected date(s)? Dates with orders will be skipped. This cannot be undone.\"],\"vu7gDm\":\"Usuń partnera\",\"KZN4Lc\":\"Usuń wszystko\",\"6EkaOO\":\"Delete Date\",\"io0G93\":\"Usuń wydarzenie\",\"+jw/c1\":\"Usuń obraz\",\"hdyeZ0\":\"Usuń zadanie\",\"xxjZeP\":\"Usuń lokalizację\",\"sY3tIw\":\"Usuń organizatora\",\"UBv8UK\":\"Delete Permanently\",\"dPyJ15\":\"Usuń szablon\",\"IQTR34\":\"Delete this category? Any products in it will also be deleted. This cannot be undone.\",\"/1wMxk\":\"Delete this product? This cannot be undone.\",\"mxsm1o\":\"Usunąć to pytanie? Tej akcji nie można cofnąć.\",\"snMaH4\":\"Usuń webhook\",\"LIZZLY\":[\"Deleted \",[\"0\"],\" date(s)\"],\"7w0Wev\":\"Description and venue added\",\"vYgeDk\":\"Odznacz wszystko\",\"NvuEhl\":\"Elementy projektu\",\"H8kMHT\":\"Nie otrzymałeś kodu?\",\"G8KNgd\":\"Different location\",\"E/QGRL\":\"Disabled\",\"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.\",\"HtaSQp\":\"Wyświetla liczbę wolnych miejsc dla każdej daty w widżecie biletów. Możesz to zmienić dla poszczególnych dat.\",\"pfa8F0\":\"Nazwa wyświetlana\",\"Kdpf90\":\"Nie zapomnij!\",\"352VU2\":\"Nie masz konta? <0>Zarejestruj się\",\"AXXqG+\":\"Darowizna\",\"DPfwMq\":\"Gotowe\",\"JoPiZ2\":\"Door staff instructions\",\"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 na celu zapewnienie, że wszyscy organizatorzy wydarzeń są zweryfikowani i odpowiedzialni.\",\"euc6Ns\":\"Duplikuj\",\"YueC+F\":\"Duplicate Date\",\"KRmTkx\":\"Duplikuj produkt\",\"Jd3ymG\":\"Duration must be at least 1 minute.\",\"KIjvtr\":\"Holenderski\",\"22xieU\":\"np. 180 (3 godziny)\",\"/zajIE\":\"e.g. Morning Session\",\"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.\",\"Xfsjel\":\"Każdy produkt\",\"5oD9f/\":\"Earlier\",\"LTzmgK\":[\"Edytuj szablon \",[\"0\"]],\"v4+lcZ\":\"Edytuj partnera\",\"2iZEz7\":\"Edytuj odpowiedź\",\"t2bbp8\":\"Edytuj uczestnika\",\"etaWtB\":\"Edytuj szczegóły uczestnika\",\"+guao5\":\"Edytuj konfigurację\",\"1Mp/A4\":\"Edit Date\",\"m0ZqOT\":\"Edytuj lokalizację\",\"8oivFT\":\"Edytuj lokalizację\",\"vRWOrM\":\"Edytuj szczegóły zamówienia\",\"fW5sSv\":\"Edytuj webhook\",\"nP7CdQ\":\"Edytuj webhook\",\"MRZxAn\":\"Edited\",\"uBAxNB\":\"Edytor\",\"aqxYLv\":\"Edukacja\",\"iiWXDL\":\"Niepowodzenia kwalifikacji\",\"zPiC+q\":\"Kwalifikujące się listy zameldowań\",\"SiVstt\":\"Email & scheduled messages\",\"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ź widget\",\"z9NkYY\":\"Embeddable widget\",\"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\":\"End\",\"sGjBEq\":\"Data i czas zakończenia (opcjonalne)\",\"PKXt9R\":\"Data zakończenia musi być po dacie rozpoczęcia\",\"ZayGC7\":\"End on a date\",\"48Y16Q\":\"Czas zakończenia (opcjonalny)\",\"TbaYrr\":[\"Ended \",[\"0\"]],\"CFgwiw\":[\"Ends \",[\"0\"]],\"SqOIQU\":\"Enter a capacity value or choose unlimited.\",\"h37gRz\":\"Enter a label or choose to remove it.\",\"7YZofi\":\"Wprowadź temat i treść, aby zobaczyć podgląd\",\"khyScF\":\"Enter a time to shift by.\",\"SKx/0u\":\"Wpisz nazwę miejsca lub adres\",\"ppwojw\":\"Podaj nazwę miejsca lub adres dla wydarzeń stacjonarnych\",\"j+eCIq\":\"Wprowadź adres ręcznie\",\"3bR1r4\":\"Wprowadź e-mail partnera (opcjonalne)\",\"ARkzso\":\"Wprowadź nazwę partnera\",\"ej4L8b\":\"Enter capacity\",\"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)\",\"RRlWVA\":\"Całe zamówienie\",\"o21Y+P\":\"entries\",\"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\",\"+v+GW0\":\"Wyświetlanie daty wydarzenia\",\"7u9/DO\":\"Wydarzenie zostało pomyślnie usunięte\",\"imgKgl\":\"Opis wydarzenia\",\"IzR/Fc\":\"Event lifetime\",\"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\",\"mImacG\":\"Strona wydarzenia\",\"Hk9Ki/\":\"Wydarzenie zostało pomyślnie przywrócone\",\"JyD0LH\":\"Ustawienia wydarzenia\",\"XVLu2v\":\"Tytuł wydarzenia\",\"OfmsI9\":\"Wydarzenie zbyt nowe\",\"4SILkp\":\"Event totals\",\"YDVUVl\":\"Typy wydarzeń\",\"+HeiVx\":\"Wydarzenie zaktualizowane\",\"19j6uh\":\"Wydajność wydarzeń\",\"PC3/fk\":\"Wydarzenia rozpoczynające się w ciągu następnych 24 godzin\",\"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\":\"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\":\"Failed to cancel date\",\"YUX+f+\":\"Failed to cancel dates\",\"SIHgVQ\":\"Nie udało się anulować wiadomości\",\"cEFg3R\":\"Nie udało się utworzyć partnera\",\"dVgNF1\":\"Nie udało się utworzyć konfiguracji\",\"fAoRRJ\":\"Failed to create schedule\",\"4yLYTb\":\"Nie udało się utworzyć harmonogramu. Spróbuj ponownie.\",\"U66oUa\":\"Nie udało się utworzyć szablonu\",\"aFk48v\":\"Nie udało się usunąć konfiguracji\",\"n1CYMH\":\"Failed to delete date\",\"KXv+Qn\":\"Failed to delete date. It may have existing orders.\",\"JJ0uRo\":\"Failed to delete dates\",\"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\",\"5E23qd\":\"Failed to delete product. Please try again.\",\"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\":\"Failed to reactivate date\",\"7zyx8a\":\"Nie udało się usunąć z listy oczekujących\",\"A/P7PX\":\"Failed to remove override\",\"ogWc1z\":\"Failed to reopen date\",\"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\":\"Failed to save override\",\"sj/eZA\":\"Failed to save price override\",\"780n8A\":\"Failed to save product settings\",\"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\":\"Family\",\"5LO38w\":\"Fast payouts to your bank\",\"4lgLew\":\"February\",\"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\":\"Filter attendees\",\"8OvVZZ\":\"Filtruj uczestników\",\"N/H3++\":\"Filter by date\",\"mvrlBO\":\"Filtruj według wydarzenia\",\"g+xRXP\":\"Finish setting up Stripe\",\"LHH461\":\"Finish setup\",\"syyeb9\":\"First\",\"Vj6wk9\":\"First 30 days\",\"/bpZYb\":\"First 7 days\",\"ziEnjY\":\"First 90 days\",\"1vBhpG\":\"Pierwszy uczestnik\",\"4pwejF\":\"Imię jest wymagane\",\"rVogsf\":\"Napraw problemy, aby opublikować\",\"3lkYdQ\":\"Fixed fee\",\"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\":\"Flash off\",\"q0923e\":\"Flash on\",\"X+U6/w\":\"Rodzina czcionek\",\"lWxAUo\":\"Jedzenie i napoje\",\"nFm+5u\":\"Tekst stopki\",\"a8nooQ\":\"Fourth\",\"wtuVU4\":\"Frequency\",\"xVhQZV\":\"Fri\",\"39y5bn\":\"Friday\",\"f5UbZ0\":\"Full data ownership\",\"cfvx/y\":\"Full event\",\"MY2SVM\":\"Pełny zwrot\",\"PGQLdy\":\"future\",\"8N/j1s\":\"Future dates only\",\"yRx/6K\":\"Future dates will be copied with capacity reset to zero\",\"T02gNN\":\"Wstęp ogólny\",\"3ep0Gx\":\"Ogólne informacje o organizatorze\",\"ziAjHi\":\"Generuj\",\"exy8uo\":\"Generuj kod\",\"4CETZY\":\"Uzyskaj wskazówki\",\"pjkEcB\":\"Get Paid\",\"lGYzP6\":\"Get paid with Stripe\",\"ZDIydz\":\"Zacznij\",\"u6FPxT\":\"Zdobądź bilety\",\"8KDgYV\":\"Przygotuj swoje wydarzenie\",\"RkXlPZ\":\"GitHub\",\"sr0UJD\":\"Go Back\",\"oNL5vN\":\"Przejdź do strony wydarzenia\",\"gHSuV/\":\"Przejdź do strony głównej\",\"8+Cj55\":\"Go to Schedule\",\"6nDzTl\":\"Dobra czytelność\",\"76gPWk\":\"Got it\",\"CZXzs4\":\"Grecki\",\"aGWZUr\":\"Przychód brutto\",\"n8IUs7\":\"Przychód brutto\",\"O1wAlQ\":\"Guest\",\"LIYoRQ\":\"Zarządzanie gośćmi\",\"NUsTc4\":\"Happening now\",\"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\":\"Hi,\",\"/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\":\"Hide details\",\"FmogyU\":\"Ukryj opcje\",\"uXNYjR\":\"Ukryj wyprzedane daty i godziny\",\"g9RcYX\":\"Ukryj datę\",\"uMwTx7\":\"Ukryć tę kategorię?\",\"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\":\"Hobbies\",\"yY8wAv\":\"Hours\",\"49Tkiw\":\"Jak stosowany jest rabat?\",\"sy9anN\":\"Jak długo klient ma na sfinalizowanie zakupu po otrzymaniu oferty. Pozostaw puste, aby nie było limitu czasu.\",\"n2ilNh\":\"How long does the schedule run?\",\"DMr2XN\":\"How often?\",\"cceMns\":\"How VAT is applied to the platform fees we charge you.\",\"FONsLE\":\"https://awesome-events.com\",\"htoh8N\":\"https://webhook-domain.com/webhook\",\"mkWad2\":\"Węgierski\",\"8Wgd41\":\"Potwierdzam moje obowiązki jako administrator 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\",\"CY3yHL\":\"Jeśli zaznaczone, ta kategoria będzie ukryta przed publicznością.\",\"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\":[\"in last \",[\"0\"],\" min\"],\"u7r0G5\":\"In person — set a venue\",\"/LCAwL\":\"W trakcie\",\"F1Xp97\":\"Pojedynczy uczestnicy\",\"85e6zs\":\"Wstaw token Liquid\",\"CTWsuc\":\"Instagram\",\"VopR6B\":\"Instant Stripe payouts\",\"nbfdhU\":\"Integracje\",\"I8eJ6/\":\"Internal notes on the attendee's ticket\",\"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ół\",\"Dn4OyV\":\"Zaproszony\",\"IuMGvq\":\"Faktura\",\"a/bUcL\":\"It happens on more than one date\",\"d+Oe9r\":\"It may have been unpublished or removed. Please check the link and try again.\",\"Lj7sBL\":\"Włoski\",\"F5/CBH\":\"przedmiot(y)\",\"BzfzPK\":\"Przedmioty\",\"rjyWPb\":\"January\",\"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 na \",[\"productDisplayName\"]],\"2gMuHR\":\"Dołączono\",\"u4ex5r\":\"July\",\"zeEQd/\":\"June\",\"MxjCqk\":\"Szukasz tylko swoich biletów?\",\"xOTzt5\":\"just now\",\"0RihU9\":\"Just wrapped\",\"lB2hSG\":[\"Informuj mnie o nowościach i wydarzeniach od \",[\"0\"]],\"ioFA9i\":\"Keep the profit.\",\"o66QSP\":\"label updates\",\"RtKKbA\":\"Last\",\"DruLRc\":\"Ostatnie 14 dni\",\"ve9JTU\":\"Nazwisko jest wymagane\",\"h0Q9Iw\":\"Ostatnia odpowiedź\",\"gw3Ur5\":\"Ostatnio uruchomiony\",\"FIq1Ba\":\"Later\",\"xvnLMP\":\"Latest check-ins\",\"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\":\"Jasny\",\"1qY5Ue\":\"Link wygasł lub jest nieprawidłowy\",\"gggTBm\":\"LinkedIn\",\"nvOPBA\":\"Linki dozwolone\",\"2BBAbc\":\"List\",\"dF6vP6\":\"Na żywo\",\"fpMs2Z\":\"NA ŻYWO\",\"D9zTjx\":\"Wydarzenia na żywo\",\"C33p4q\":\"Loaded dates\",\"WdmJIX\":\"Ładowanie podglądu...\",\"IoDI2o\":\"Ładowanie tokenów...\",\"G3Ge9Z\":\"Ładowanie logów webhook...\",\"NFxlHW\":\"Ładowanie webhooków\",\"E0DoRM\":\"Lokalizacja usunięta\",\"7w8lJU\":\"Lokalizacja zapisana\",\"YsRXDD\":\"Lokalizacja zaktualizowana\",\"A/kIva\":\"location updates\",\"iyZPPR\":\"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\",\"PSRm6/\":\"Znajdź moje bilety\",\"yJFu/X\":\"Biuro główne\",\"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\":\"Zarządzaj listą oczekujących wydarzenia, przeglądaj statystyki i oferuj bilety uczestnikom.\",\"g2npA5\":\"Oferta ręczna\",\"hg6l4j\":\"March\",\"pqRBOz\":\"Mark as validated (admin override)\",\"2L3vle\":\"Maks wiadomości / 24h\",\"Qp4HWD\":\"Maks odbiorców / wiadomość\",\"3JzsDb\":\"May\",\"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\":\"Minutes\",\"zz/Wd/\":\"Mode\",\"fpMgHS\":\"Mon\",\"hty0d5\":\"Monday\",\"JbIgPz\":\"Wartości pieniężne są przybliżonymi sumami we wszystkich walutach\",\"qvF+MT\":\"Monitoruj i zarządzaj nieudanymi zadaniami w tle\",\"kY2ll9\":\"month\",\"HajiZl\":\"Miesiąc\",\"+8Nek/\":\"Monthly\",\"1LkxnU\":\"Monthly Pattern\",\"6jefe3\":\"months\",\"f8jrkd\":\"more\",\"JcD7qf\":\"More actions\",\"w36OkR\":\"Najczęściej oglądane wydarzenia (ostatnie 14 dni)\",\"+Y/na7\":\"Move all dates earlier or later\",\"3DIpY0\":\"Multiple locations\",\"g9cQCP\":\"Multiple ticket types\",\"GfaxEk\":\"Muzyka\",\"oVGCGh\":\"Moje bilety\",\"8/brI5\":\"Nazwa jest wymagana\",\"sFFArG\":\"Nazwa musi mieć mniej niż 255 znaków\",\"xxU3NX\":\"Dochód netto\",\"7I8LlL\":\"New capacity\",\"n1GRql\":\"New label\",\"y0Fcpd\":\"Nowa lokalizacja\",\"ArHT/C\":\"Nowe rejestracje\",\"uK7xWf\":\"New time:\",\"veT5Br\":\"Next occurrence\",\"WXtl5X\":[\"Next: \",[\"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\":\"No attendees to show\",\"PKySlW\":\"No attendees yet for this date.\",\"/UC6qk\":\"Nie znaleziono danych atrybucji\",\"E2vYsO\":\"No capabilities reported by Stripe yet.\",\"amMkpL\":\"Brak miejsc\",\"d2Jf1f\":\"No change\",\"99ntUF\":\"Brak dostępnych list zameldowań dla tego wydarzenia.\",\"wG+knX\":\"No check-ins yet\",\"+dAKxg\":\"Nie znaleziono konfiguracji\",\"LiLk8u\":\"No connections available\",\"eb47T5\":\"Nie znaleziono danych dla wybranych filtrów. Spróbuj dostosować zakres dat lub walutę.\",\"Zc216S\":\"No date added\",\"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\",\"OtJSnL\":\"Brak zaplanowanych terminów\",\"gEdNe8\":\"No dates scheduled yet\",\"pZNOT9\":\"Brak daty zakończenia\",\"dW40Uz\":\"Nie znaleziono wydarzeń\",\"8pQ3NJ\":\"Brak wydarzeń rozpoczynających się w ciągu następnych 24 godzin\",\"8zCZQf\":\"Brak wydarzeń jeszcze\",\"Yc5YW6\":\"Brak nieudanych zadań\",\"EpvBAp\":\"Brak faktury\",\"XZkeaI\":\"Nie znaleziono logów\",\"IcAC6J\":\"Brak pasujących czcionek\",\"nrSs2u\":\"Nie znaleziono wiadomości\",\"Rj99yx\":\"No occurrences available\",\"IFU1IG\":\"No occurrences on this date\",\"OVFwlg\":\"Brak pytań dotyczących zamówienia jeszcze\",\"EJ7bVz\":\"Nie znaleziono zamówień\",\"NEmyqy\":\"Brak zamówień jeszcze\",\"a77B6w\":\"No orders yet for this date.\",\"wUv5xQ\":\"Brak aktywności organizatora w ciągu ostatnich 14 dni\",\"vLd1tV\":\"No organizer context available.\",\"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\":\"No products configured for this event.\",\"kY7XDn\":\"Żadne produkty nie mają wpisów na liście oczekujących\",\"8mw4tm\":\"Komunikat o braku produktów\",\"wYiAtV\":\"Brak ostatnich rejestracji kont\",\"UW90md\":\"Nie znaleziono odbiorców\",\"QoAi8D\":\"Brak odpowiedzi\",\"JeO7SI\":\"Brak odpowiedzi\",\"EK/G11\":\"Brak odpowiedzi jeszcze\",\"59OWd3\":\"Brak zapisanych lokalizacji\",\"mPdY6W\":\"Brak sugestii\",\"3sRuiW\":\"Nie znaleziono biletów\",\"debCrL\":\"Brak biletów do sprzedaży\",\"k2C0ZR\":\"No upcoming dates\",\"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\":\"non-edited\",\"Itw24Q\":\"Not checked in\",\"x5+Lcz\":\"Nie zameldowany\",\"8n10sz\":\"Nie kwalifikuje się\",\"kLvU3F\":\"Notify attendees and stop sales\",\"t9QlBd\":\"November\",\"kAREMN\":\"Number of dates to create\",\"6u1B3O\":\"Occurrence\",\"mmoE62\":\"Occurrence Cancelled\",\"V9flmL\":\"Occurrence Schedule\",\"Kh3WO8\":\"Occurrence Summary\",\"byXCTu\":\"Occurrences\",\"KATw3p\":\"Occurrences (future only)\",\"85rTR2\":\"Occurrences can be configured after creation\",\"dzQfDY\":\"October\",\"BwJKBw\":\"z\",\"9h7RDh\":\"Oferta\",\"EfK2O6\":\"Zaoferuj miejsce\",\"3sVRey\":\"Zaoferuj bilety\",\"2O7Ybb\":\"Limit czasu oferty\",\"1jUg5D\":\"Zaoferowano\",\"l+/HS6\":[\"Oferty wygasają po \",[\"timeoutHours\"],\" godzinach.\"],\"6Aih4U\":\"Offline\",\"nO3VbP\":[\"W sprzedaży \",[\"0\"]],\"oXOSPE\":\"Online\",\"aqmy5k\":\"Online — provide connection details\",\"LuZBbx\":\"Online & in-person\",\"IXuOqt\":\"Online & in-person — see schedule\",\"WjSpu5\":\"Wydarzenie online\",\"scPxI/\":[\"Zostało tylko \",[\"capacity\"]],\"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\",\"wkpaqp\":\"Pokaż tylko datę i godzinę rozpoczęcia\",\"DMk8F0\":\"Only tickets count toward capacity\",\"M2w1ni\":\"Widoczne tylko z kodem promocyjnym\",\"y8Bm7C\":\"Open check-in\",\"RLz7P+\":\"Open occurrence\",\"cDSdPb\":\"Opcjonalna nazwa wyświetlana w listach wyboru, np. \\\"Sala konferencyjna\\\"\",\"HXMJxH\":\"Opcjonalny tekst dla zastrzeżeń, informacji kontaktowych lub notek z podziękowaniami (tylko jedna linia)\",\"L565X2\":\"opcje\",\"8m9emP\":\"or add a single date\",\"eBskDE\":\"Lub włącz płatności offline i wyłącz Stripe\",\"dSeVIm\":\"order\",\"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\",\"xtQzag\":\"Order details\",\"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\",\"RQCXz6\":\"Limity zamówień\",\"SO9AEF\":\"Ustawione limity zamówień\",\"vu6Arl\":\"Zamówienie oznaczone jako opłacone\",\"sLbJQz\":\"Zamówienie nie znalezione\",\"kvYpYu\":\"Zamówienie nie znalezione\",\"eJ8SvM\":\"Order number, purchase date, purchaser email\",\"FaPYw+\":\"Właściciel zamówienia\",\"eB5vce\":\"Właściciele zamówień z konkretnym produktem\",\"CxLoxM\":\"Właściciele zamówień z produktami\",\"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\",\"3NT0Ck\":\"Zamówienie zostało anulowane\",\"V5khLm\":\"orders\",\"sd5IMt\":\"Zamówienia zakończone\",\"5It1cQ\":\"Zamówienia wyeksportowane\",\"UQ0ACV\":\"Suma zamówień\",\"B/EBQv\":\"Zamówienia:\",\"qtGTNu\":\"Konta organiczne\",\"P/JHA4\":\"Organizator został pomyślnie zarchiwizowany\",\"S3CZ5M\":\"Panel organizatora\",\"GzjTd0\":\"Organizator został pomyślnie usunięty\",\"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\":\"Organizers\",\"/IX/7x\":\"Inne\",\"RsiDDQ\":\"Inne listy (bilet nie włączony)\",\"aDfajK\":\"Outdoors\",\"qMASRF\":\"Wiadomości wychodzące\",\"iCOVQO\":\"Override\",\"GpFTEc\":\"Override fees on this organizer\",\"M9ZhMP\":\"Override price\",\"cnVIpl\":\"Override removed\",\"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\":\"Past due\",\"xTPjSy\":\"Przeszłe wydarzenia\",\"/l/ckQ\":\"Wklej URL\",\"URAE3q\":\"Wstrzymany\",\"4fL/V7\":\"Zapłać\",\"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\":\"Payouts\",\"UbRKMZ\":\"Pending\",\"UkM20g\":\"Oczekuje na recenzję\",\"dPYu1F\":\"Na uczestnika\",\"mQV/nJ\":\"per min\",\"+kvxv+\":\"na zamówienie\",\"VlXNyK\":\"Na zamówienie\",\"NhuGd7\":\"na produkt\",\"hauDFf\":\"Na bilet\",\"mnF83a\":\"Opłata procentowa\",\"TNLuRD\":\"Percentage fee (%)\",\"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\":\"Permanently remove this date\",\"6kPk3+\":\"Informacje osobiste\",\"zmwvG2\":\"Telefon\",\"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\":\"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\":\"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\":\"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\":\"Please select a date and time\",\"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\":\"Position\",\"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\",\"Jm2AC3\":\"Price Tier\",\"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\":\"Product settings cannot be edited for cancelled dates.\",\"2339ej\":\"Product settings saved successfully\",\"ldVIlB\":\"Produkt zaktualizowany\",\"CP3D8G\":\"Progress\",\"JoKGiJ\":\"Kod promocyjny\",\"k3wH7i\":\"Użycie kodu promocyjnego i podział rabatów\",\"tZqL0q\":\"promo codes\",\"oCHiz3\":\"Promo codes\",\"uEhdRh\":\"Tylko promocyjne\",\"dLm8V5\":\"E-maile promocyjne mogą skutkować zawieszeniem konta\",\"W0ETyY\":\"Podaj co najmniej jedno pole adresu (miejsce, ulica, miasto lub kraj).\",\"2W/7Gz\":\"Provide the following before Stripe's next review to keep payouts flowing.\",\"EEYbdt\":\"Opublikuj\",\"JcgJKc\":\"Opublikuj mimo to\",\"evDBV8\":\"Opublikuj wydarzenie\",\"2zEfOd\":\"Publish your event\",\"L7nrC8\":\"Po opublikowaniu strona Twojego wydarzenia stanie się publiczna i otworzą się zapisy.\",\"dsFmM+\":\"Zakupiony\",\"JunetL\":\"Purchaser\",\"phmeUH\":\"Purchaser email\",\"ywR4ZL\":\"QR code check-in\",\"oWXNE5\":\"Ilość\",\"biEyJ4\":\"Question answers\",\"k/bJj0\":\"Pytania zostały przeorganizowane\",\"b24kPi\":\"Kolejka\",\"lTPqpM\":\"Quick Tip\",\"fqDzSu\":\"Stawka\",\"mnUGVC\":\"Przekroczono limit stawki. Spróbuj ponownie później.\",\"t41hVI\":\"Ponownie zaoferuj miejsce\",\"TNclgc\":\"Reactivate this date? It will be reopened for future sales.\",\"RENQ6j\":\"Gotowy do publikacji?\",\"uqoRbb\":\"Real-time analytics\",\"xzRvs4\":[\"Otrzymuj aktualizacje produktów od \",[\"0\"],\".\"],\"pLXbi8\":\"Ostatnie rejestracje kont\",\"M1HGuR\":\"Recent activity\",\"3kJ0gv\":\"Recent Attendees\",\"qhfiwV\":\"Recent check-ins\",\"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\",\"WEYdDv\":\"Recommended\",\"wuhHPE\":\"Recurring\",\"asLqwt\":\"Wydarzenie cykliczne\",\"s3uzsK\":\"Ustawienia wydarzenia cyklicznego\",\"D0tAMe\":\"Recurring events\",\"JjMIKU\":\"Reddit\",\"HiGkFu\":\"Przekierowywanie do Stripe...\",\"pnoTN5\":\"Konta poleceń\",\"ACKu03\":\"Odśwież podgląd\",\"vuFYA6\":\"Refund all orders for these dates\",\"4cRUK3\":\"Refund all orders for this date\",\"fKn/k6\":\"Kwota zwrotu\",\"qY4rpA\":\"Zwrot nie powiódł się\",\"FaK/8G\":[\"Zwróć zamówienie \",[\"0\"]],\"MGbi9P\":\"Zwrot oczekuje\",\"BDSRuX\":[\"Zwrócony: \",[\"0\"]],\"bU4bS1\":\"Zwroty\",\"rYXfOA\":\"Ustawienia regionalne\",\"5tl0Bp\":\"Pytania rejestracyjne\",\"ZNo5k1\":\"Remaining\",\"Bjh87R\":\"Remove label from all dates\",\"IVZaEo\":\"Całkowicie usuwa wyprzedane daty i godziny ze strony wydarzenia. Gdy wyłączone, pozostają widoczne i są oznaczone jako wyprzedane.\",\"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\":\"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\":\"Reset to base price\",\"kCn6wb\":\"Resetowanie...\",\"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\":\"results\",\"6gRgw8\":\"Spróbuj ponownie\",\"1BG8ga\":\"Spróbuj ponownie wszystkie\",\"rDC+T6\":\"Spróbuj ponownie zadanie\",\"CbnrWb\":\"Wróć do wydarzenia\",\"Lf7TCn\":\"Lokalizacje wielokrotnego użytku pojawiają się tutaj automatycznie, gdy tworzysz wydarzenia z adresami; możesz też dodać własne.\",\"mdQ0zb\":\"Lokalizacje wielokrotnego użytku dla Twoich wydarzeń. Lokalizacje utworzone przez autouzupełnianie są zapisywane tutaj automatycznie.\",\"XFOPle\":\"Reuse\",\"1Zehp4\":\"Reuse a Stripe connection from another organizer in this account.\",\"Oo/PLb\":\"Podsumowanie przychodów\",\"CfuueU\":\"Cofnij ofertę\",\"RIgKv+\":\"Run until a specific date\",\"dFFW9L\":[\"Sprzedaż zakończona \",[\"0\"]],\"loCKGB\":[\"Sprzedaż kończy się \",[\"0\"]],\"wlfBad\":\"Okres sprzedaży\",\"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\":\"Ustawiony okres sprzedaży\",\"ftzaMf\":\"Okres sprzedaży, limity zamówień, widoczność\",\"zpekWp\":[\"Sprzedaż rozpoczyna się \",[\"0\"]],\"mUv9U4\":\"Sprzedaż\",\"9KnRdL\":\"Sprzedaż jest wstrzymana\",\"JC3J0k\":\"Sales, attendance, and check-in breakdown per occurrence\",\"3VnlS9\":\"Sprzedaż, zamówienia i metryki wydajności dla wszystkich wydarzeń\",\"3Q1AWe\":\"Sprzedaż:\",\"LeuERW\":\"Same as event\",\"B4nE3N\":\"Przykładowa cena biletu\",\"8BRPoH\":\"Przykładowa Sala\",\"PiK6Ld\":\"Sat\",\"+5kO8P\":\"Saturday\",\"zJiuDn\":\"Save fee override\",\"NB8Uxt\":\"Save Schedule\",\"KZrfYJ\":\"Zapisz linki społeczne\",\"9Y3hAT\":\"Zapisz szablon\",\"C8ne4X\":\"Zapisz projekt biletu\",\"cTI8IK\":\"Save VAT settings\",\"6/TNCd\":\"Zapisz ustawienia VAT\",\"4RvD9q\":\"Zapisana lokalizacja\",\"cgw0cL\":\"Zapisane lokalizacje\",\"Fbqm/I\":\"Saving an override creates a dedicated configuration for this organizer if it's currently on the system default.\",\"I+FvbD\":\"Skanuj\",\"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\":\"Zaplanuj na później\",\"NAzVVw\":\"Zaplanuj wiadomość\",\"Fz09JP\":\"Schedule starts on\",\"4ba0NE\":\"Zaplanowane\",\"qcP/8K\":\"Zaplanowany czas\",\"A1taO8\":\"Search\",\"ftNXma\":\"Szukaj partnerów...\",\"VMU+zM\":\"Search attendees\",\"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...\",\"YnMfsK\":\"Szukaj po nazwie lub adresie...\",\"VT+urE\":\"Szukaj po nazwie lub e-mailu...\",\"GHdjuo\":\"Szukaj po nazwie, e-mailu lub koncie...\",\"4mBFO7\":\"Search by name, order #, ticket # or email\",\"20ce0U\":\"Szukaj po identyfikatorze zamówienia, nazwie klienta lub e-mailu...\",\"4DSz7Z\":\"Szukaj po temacie, wydarzeniu lub koncie...\",\"nQC7Z9\":\"Search dates...\",\"iRtEpV\":\"Search dates…\",\"JRM7ao\":\"Search for an address\",\"BWF1kC\":\"Szukaj wiadomości...\",\"5WYZKZ\":\"Wyniki wyszukiwania\",\"IG85fV\":\"Szukaj zapisanych lokalizacji lub znajdź adres...\",\"3aD3GF\":\"Seasonal\",\"ku//5b\":\"Second\",\"Mck5ht\":\"Bezpieczne potwierdzenie\",\"s7tXqF\":\"See schedule\",\"JFap6u\":\"See what Stripe still needs\",\"p7xUrt\":\"Wybierz kategorię\",\"hTKQwS\":\"Select a Date & Time\",\"Ps6Xtf\":\"Select a date to see available times\",\"e4L7bF\":\"Wybierz wiadomość, aby zobaczyć jej treść\",\"zPRPMf\":\"Wybierz poziom\",\"BFRSTT\":\"Wybierz konto\",\"wgNoIs\":\"Select all\",\"mCB6Je\":\"Zaznacz wszystko\",\"aCEysm\":[\"Select all on \",[\"0\"]],\"a6+167\":\"Wybierz wydarzenie\",\"CFbaPk\":\"Wybierz grupę uczestników\",\"88a49s\":\"Select camera\",\"tVW/yo\":\"Wybierz walutę\",\"SJQM1I\":\"Select date\",\"n9ZhRa\":\"Wybierz datę i czas zakończenia\",\"gTN6Ws\":\"Wybierz czas zakończenia\",\"0U6E9W\":\"Wybierz kategorię wydarzenia\",\"j9cPeF\":\"Wybierz typy wydarzeń\",\"ypTjHL\":\"Select occurrence\",\"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\":\"selected\",\"ylXj1N\":\"Wybrane\",\"uq3CXQ\":\"Sell out your event.\",\"oBXbO4\":\"Selling a physical product? Cap its quantity on the <0>products page instead.\",\"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\":\"Send to all occurrences, or choose a specific one\",\"QEQlnV\":\"Wyślij swoją pierwszą wiadomość\",\"IoAuJG\":\"Wysyłanie...\",\"h69WC6\":\"Wysłane\",\"BVu2Hz\":\"Wysłane przez\",\"ZFa8wv\":\"Sent to attendees when a scheduled date is cancelled\",\"SPdzrs\":\"Wysłane do klientów, gdy złożą zamówienie\",\"LxSN5F\":\"Wysłane do każdego uczestnika z jego szczegółami biletu\",\"hgvbYY\":\"September\",\"5sN96e\":\"Session cancelled\",\"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\":\"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\":\"Ustaw listy odpraw dla różnych wejść, sesji lub dni.\",\"TaWVGe\":\"Set up payouts\",\"JA//e6\":\"Set up schedule\",\"gzXY7l\":\"Set Up Schedule\",\"0Ls9qe\":\"Set up the tickets you'll sell and their prices\",\"xMO+Ao\":\"Ustaw swoją organizację\",\"5pEFnq\":\"Set up your schedule\",\"h/9JiC\":\"Set Up Your Schedule\",\"zRRuUD\":\"Set up your schedule in the next steps\",\"ETC76A\":\"Set, change, or remove the date's location or online details\",\"C3htzi\":\"Ustawienie zaktualizowane\",\"Ohn74G\":\"Konfiguracja i projekt\",\"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\":\"Udostępnij link partnera\",\"hL7sDJ\":\"Udostępnij stronę organizatora\",\"jy6QDF\":\"Zarządzanie wspólną pojemnością\",\"jDNHW4\":\"Shift times\",\"tPfIaW\":[\"Shifted times for \",[\"count\"],\" date(s)\"],\"WwlM8F\":\"Pokaż opcje zaawansowane\",\"cMW+gm\":[\"Pokaż wszystkie platformy (\",[\"0\"],\" więcej z wartościami)\"],\"wXi9pZ\":\"Show attendee notes to non-logged-in staff\",\"4LZFir\":\"Pokaż cały zakres dat\",\"UVPI5D\":\"Pokaż mniej platform\",\"Eu/N/d\":\"Pokaż checkbox opt-in marketingu\",\"SXzpzO\":\"Pokaż checkbox opt-in marketingu domyślnie\",\"b33PL9\":\"Pokaż więcej platform\",\"Eut7p9\":\"Show order details to non-logged-in staff\",\"+RoWKN\":\"Show question answers to non-logged-in staff\",\"jbcx6L\":\"Show remaining capacity on event dates\",\"rXxBOx\":\"Show remaining capacity to buyers\",\"t1LIQW\":[\"Wyświetlanie \",[\"0\"],\" z \",[\"totalRows\"],\" rekordów\"],\"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\":\"Zarejestrowany\",\"5C7J+P\":\"Single Event\",\"E//btK\":\"Skip manually edited dates\",\"paESr6\":\"Słowacki\",\"9wu8nm\":\"Snapchat\",\"kIKb9e\":\"Społeczność\",\"d0rUsW\":\"Linki społeczne\",\"j/TOB3\":\"Linki społeczne i strona internetowa\",\"s9KGXU\":\"Sprzedane\",\"yp+0jj\":\"sold out\",\"1hupow\":\"Wyprzedane, dostępna lista oczekujących\",\"iACSrw\":\"Some details are hidden from public access. Log in to view everything.\",\"Dia6iz\":\"Something went wrong while deleting the image. Please try again.\",\"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\":\"Spirituality\",\"oPaRES\":\"Split check-in across days, areas, or ticket types. Share the link with staff — no account needed on their end.\",\"7JFNej\":\"Sport\",\"/bfV1Y\":\"Staff instructions\",\"tXkhj/\":\"Start\",\"StWUH4\":\"Start check-in\",\"JcQp9p\":\"Data i czas rozpoczęcia\",\"0m/ekX\":\"Data i czas rozpoczęcia\",\"izRfYP\":\"Data rozpoczęcia jest wymagana\",\"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/\":\"Statystyki\",\"GVUxAX\":\"Statystyki są oparte na dacie utworzenia konta\",\"29Hx9U\":\"Stats\",\"5ia+r6\":\"Still needed\",\"wuV0bK\":\"Zatrzymaj personifikację\",\"s/KaDb\":\"Stripe connected\",\"Bk06QI\":\"Stripe połączony\",\"akZMv8\":[\"Stripe connection copied from \",[\"0\"],\".\"],\"v0aRY1\":\"Stripe didn't return a setup link. Please try again.\",\"aKtF0O\":\"Stripe nie połączony\",\"9i0++A\":\"Identyfikator płatności Stripe\",\"R1lIMV\":\"Stripe will need a few more details soon\",\"FzcCHA\":\"Stripe will walk you through a few quick questions to finish setup.\",\"ii0qn/\":\"Temat jest wymagany\",\"M7Uapz\":\"Temat pojawi się tutaj\",\"6aXq+t\":\"Temat:\",\"JwTmB6\":\"Pomyślnie zduplikowany produkt\",\"WUOCgI\":\"Pomyślnie zaoferowano miejsce\",\"IvxA4G\":[\"Pomyślnie zaoferowano bilety \",[\"count\"],\" osobom\"],\"kKpkzy\":\"Pomyślnie zaoferowano 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\",\"kRWc2g\":\"Pomyślnie zaktualizowano ustawienia wydarzenia cyklicznego\",\"0Dk/l8\":\"Pomyślnie zaktualizowane ustawienia SEO\",\"S8Tua9\":\"Ustawienia zaktualizowane pomyślnie\",\"MhOoLQ\":\"Pomyślnie zaktualizowane linki społeczne\",\"CNSSfp\":\"Ustawienia śledzenia zaktualizowane pomyślnie\",\"kj7zYe\":\"Pomyślnie zaktualizowany Webhook\",\"dXoieq\":\"Podsumowanie\",\"/RfJXt\":[\"Letni Festiwal Muzyki \",[\"0\"]],\"CWOPIK\":\"Letni Festiwal Muzyki 2025\",\"D89zck\":\"Sun\",\"DBC3t5\":\"Sunday\",\"UaISq3\":\"Szwedzki\",\"JZTQI0\":\"Zmień organizatora\",\"9YHrNC\":\"Domyślnie systemowe\",\"lruQkA\":\"Tap this screen to resume scanning\",\"TJUrME\":[\"Targeting attendees across \",[\"0\"],\" selected sessions.\"],\"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\":\"Team collaboration\",\"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\":\"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\":\"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\",\"nm3Iz/\":\"Dziękujemy za udział!\",\"pYwj0k\":\"Thanks,\",\"k3IitN\":\"That's a wrap\",\"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.\",\"7oksH+\":[\"Rabat jest odejmowany od każdego kwalifikującego się produktu. Np. \",[\"currencySymbol\"],\"10 rabatu × 3 bilety = \",[\"currencySymbol\"],\"30 rabatu.\"],\"sKL8k2\":\"Rabat jest odejmowany jednorazowo od łącznej kwoty zamówienia.\",\"cDHM1d\":\"Adres e-mail został zmieniony. Uczestnik otrzyma nowy bilet na zaktualizowany adres e-mail.\",\"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\":\"The first date this schedule will generate from.\",\"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.\",\"Np4eLs\":[\"The maximum is \",[\"MAX_PREVIEW\"],\" sessions. Please reduce the date range, frequency, or number of sessions per day.\"],\"sYLeDq\":\"Organizator, którego szukasz, nie został znaleziony. Strona mogła być przeniesiona, usunięta lub adres URL może być nieprawidłowy.\",\"PCr4zw\":\"The override is recorded in the order audit log.\",\"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\",\"OVSkIF\":\"Szybki brązowy lis przeskakuje nad leniwym psem.\",\"z0KrIG\":\"Zaplanowany czas jest wymagany\",\"EWErQh\":\"Zaplanowany czas musi być w przyszłości\",\"UNd0OU\":[\"The session for \\\"\",[\"title\"],\"\\\" originally scheduled for \",[\"0\"],\" has been rescheduled.\"],\"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\",\"ybBP2H\":\"There are no products available for this date. Please choose another date.\",\"O7g4eR\":\"There are no upcoming dates for this event\",\"062KsE\":\"These details are shown on the attendee's ticket and order summary for this date only.\",\"5Eu+tn\":\"Te szczegóły zostaną pokazane tylko po pomyślnym zrealizowaniu zamówienia.\",\"jQjwR+\":\"These details will replace any existing location on the affected dates and show on attendee tickets.\",\"6eaLu/\":\"Te ceny obowiązują dla wszystkich terminów w harmonogramie, a liczby w progach ograniczają łączną sprzedaż dla wszystkich terminów razem. Daty sprzedaży progów obowiązują globalnie. Ceny dla poszczególnych terminów możesz nadpisać na <0>stronie Harmonogram terminó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\":\"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\":\"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/\":[\"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.\",\"E9BqZw\":\"This date only\",\"RzEvf5\":\"To wydarzenie się skończyło\",\"kc4bIA\":\"To wydarzenie nie ma jeszcze biletów ani produktów, więc uczestnicy nie będą mogli się zarejestrować.\",\"eMaNd0\":\"This event is not available\",\"YClrdK\":\"To wydarzenie nie zostało jeszcze opublikowane\",\"GL6z+k\":\"To wydarzenie jest wyprzedane\",\"pIwDhS\":\"This event's dates and times are set on the occurrence schedule.\",\"ny5rgr\":\"This is a recurring event\",\"tc64Zz\":\"To jest nazwa kategorii, która będzie wyświetlana na stronie wydarzenia.\",\"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.\",\"5DpZrC\":\"To ogranicza łączną sprzedaż dla wszystkich terminów w harmonogramie — nie jest to limit na termin. Aby ograniczyć liczbę uczestników każdego terminu, ustaw pojemność na <0>stronie Harmonogram terminów.\",\"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\":\"This occurrence is at capacity\",\"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\",\"qEGn8I\":\"To cykliczne wydarzenie nie ma jeszcze terminów, więc uczestnicy nie mają czego rezerwować.\",\"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.\",\"1LuJNw\":\"Ten bilet nie jest już ważny\",\"0Ew0uk\":\"Ten bilet właśnie został zeskanowany. Proszę czekać przed zeskanowaniem ponownie.\",\"FYXq7k\":[\"This will affect \",[\"loadedAffectedCount\"],\" date(s).\"],\"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\":\"Throughput\",\"+FjWgX\":\"Thu\",\"kkDQ8m\":\"Thursday\",\"0GSPnc\":\"Projektowanie biletów\",\"EZC/Cu\":\"Projekt biletów został pomyślnie zapisany\",\"bbslmb\":\"Projektant biletów\",\"1BPctx\":\"Bilet dla\",\"HGuXjF\":\"Posiadacze biletów\",\"CMUt3Y\":\"Posiadacze biletów\",\"awHmAT\":\"ID biletu\",\"6czJik\":\"Logo biletu\",\"t79rDv\":\"Bilet nie znaleziony\",\"6tmWch\":\"Bilet lub produkt\",\"1tfWrD\":\"Podgląd biletu dla\",\"KnjoUA\":\"Cena biletu\",\"pGZOcL\":\"Bilet został pomyślnie ponownie wysłany\",\"o02GZM\":\"Ticket sales have ended for this event\",\"8jLPgH\":\"Typ 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\":\"Time\",\"fXf2r5\":[\"Times shown in \",[\"timezoneAbbr\"]],\"dMtLDE\":\"to\",\"/jQctM\":\"Do\",\"tiI71C\":\"Aby zwiększyć swoje limity, skontaktuj się z nami pod adresem\",\"ecUA8p\":\"Today\",\"W428WC\":\"Przełącz kolumny\",\"BRMXj0\":\"Tomorrow\",\"UBSG1X\":\"Najlepsi organizatorzy (ostatnie 14 dni)\",\"3sZ0xx\":\"Razem kont\",\"SMDzqJ\":\"Łącznie uczestników\",\"orBECM\":\"Razem zebrano\",\"k5CU8c\":\"Łączna liczba wpisów\",\"4B7oCp\":\"Łączna opłata\",\"sMMlTX\":\"Total fees\",\"mlvCEl\":\"Total orders\",\"2AW/k5\":\"Łączna liczba dla wszystkich terminów\",\"dp8BCb\":\"Total tax\",\"vb0Q0/\":\"Razem użytkowników\",\"oJjplO\":\"Razem wyświetleń\",\"rBZ9pz\":\"Tours\",\"orluER\":\"Śledź wzrost konta i wydajność według źródła atrybuacji\",\"YwKzpH\":\"Śledzenie i analityka\",\"GUA0Jy\":\"Try a different search term or filter\",\"2P/OWN\":\"Try adjusting your filters to see more dates.\",\"ouM5IM\":\"Spróbuj innego e-maila\",\"3DZvE7\":\"Spróbuj Hi.Events za darmo\",\"vq2WxD\":\"Tue\",\"G3myU+\":\"Tuesday\",\"Kz91g/\":\"Turecki\",\"GdOhw6\":\"Wyłącz dźwięk\",\"KUOhTy\":\"Włącz dźwięk\",\"dBeuY2\":\"Twitch\",\"QytzQr\":\"Wpisz \\\"usuń\\\", aby potwierdzić\",\"nWRfmt\":\"Typografia\",\"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\":\"Unable to load attendee details.\",\"GlnD5Y\":\"Unable to load products for this date. Please try again.\",\"17VbmV\":\"Unable to undo check-in\",\"n57zCW\":\"Konta nieprzypisane\",\"9uI/rE\":\"Undo\",\"Ef7StM\":\"Nieznany\",\"ZBAScj\":\"Nieznany uczestnik\",\"MEIAzV\":\"Bez nazwy\",\"K6L5Mx\":\"Lokalizacja bez nazwy\",\"7yiFvZ\":\"Nieopłacony\",\"X13xGn\":\"Niezaufane\",\"gyXpQN\":\"Upcoming events\",\"Pp1sWX\":\"Aktualizuj partnera afiliacji\",\"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\":\"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\":\"USB scanner listening\",\"dyTklH\":\"USB scanner paused\",\"OHJXlK\":\"Użyj <0>szablonów Liquid do personalizacji e-maili\",\"/rsy72\":\"Use event default\",\"0k4cdb\":\"Użyj danych zamówienia dla wszystkich uczestników. Imiona i e-maile uczestników będą odpowiadać informacjom kupującego.\",\"bA31T4\":\"Użyj danych kupującego dla wszystkich uczestników\",\"PpgtnC\":\"Użyj tego adresu\",\"rnoQsz\":\"Używane do obramowań, wyróżnień i stylizacji kodów QR\",\"BV4L/Q\":\"Analityka UTM\",\"l5ackE\":\"UUID\",\"imLQ9Y\":\"Walidacja numeru VAT...\",\"t7caBM\":\"VAT country code\",\"WLkfqH\":\"VAT number\",\"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 zwalidowany pomyślnie\",\"RUMiLy\":\"Walidacja numeru VAT nie powiodła się\",\"vqji3Y\":\"Walidacja numeru VAT nie powiodła się. Sprawdź swój numer VAT.\",\"8dENF9\":\"VAT od opłaty\",\"ZutOKU\":\"Stawka VAT\",\"+KJZt3\":\"VAT registered\",\"Nfbg76\":\"Ustawienia VAT zapisane pomyślnie\",\"UvYql/\":\"Ustawienia VAT zapisane. Walidujemy Twój numer VAT w tle.\",\"bXn1Jz\":\"VAT settings updated\",\"tJylUv\":\"Traktowanie VAT dla opłat platformy\",\"FlGprQ\":\"Traktowanie VAT dla opłat platformy: firmy zarejestrowane jako podatnicy VAT w UE mogą stosować mechanizm odwrotnego obciążenia (0% - art. 196 Dyrektywy VAT 2006/112/WE). Firmy niezarejestrowane jako podatnicy VAT są obciążane irlandzkim VAT w wysokości 23%.\",\"516oLj\":\"Usługa walidacji VAT tymczasowo niedostępna\",\"p6QQLa\":[\"VAT: \",[\"0\"]],\"5q87Y9\":\"VAT: not registered\",\"AdWhjZ\":\"Kod weryfikacyjny\",\"kUAumu\":\"Verification email sent. Check your inbox.\",\"QDEWii\":\"Zweryfikowany\",\"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\":\"View All\",\"yA/6BX\":\"View all →\",\"6CQ7/B\":\"View all capabilities\",\"YSE15b\":\"View all check-in lists\",\"RnvnDc\":\"Wyświetl wszystkie wiadomości wysłane na platformie\",\"+WFMis\":\"Wyświetl i pobierz raporty ze wszystkich wydarzeń. Uwzględnione są tylko zrealizowane zamówienia.\",\"c7VN/A\":\"Wyświetl odpowiedzi\",\"SZw9tS\":\"Wyświetl szczegóły\",\"9+84uW\":[\"View details for \",[\"0\"],\" \",[\"1\"]],\"FCVmuU\":\"Wyświetl wydarzenie\",\"c6SXHN\":\"Wyświetl stronę wydarzenia\",\"n6EaWL\":\"Wyświetl logi\",\"OaKTzt\":\"Wyświetl mapę\",\"zNZNMs\":\"Wyświetl wiadomość\",\"67OJ7t\":\"Wyświetl zamówienie\",\"tKKZn0\":\"Wyświetl szczegóły zamówienia\",\"KeCXJu\":\"Wyświetl szczegóły zamówienia, wydawaj zwroty i ponownie wysyłaj potwierdzenia.\",\"9jnAcN\":\"Wyświetl stronę organizatora\",\"1J/AWD\":\"Zobacz bilet\",\"N9FyyW\":\"Wyświetl, edytuj i eksportuj zarejestrowanych uczestników.\",\"6dp/Hz\":\"Vimeo\",\"SS4mGB\":\"VK\",\"uUehLT\":\"Oczekuje\",\"quR8Qp\":\"Oczekiwanie na płatność\",\"KrurBH\":\"Waiting for scan…\",\"u0n+wz\":\"Lista oczekujących\",\"3RXFtE\":\"Lista oczekujących włączona\",\"TwnTPy\":\"Oferta z listy oczekujących wygasła\",\"aUi/Dz\":\"Ostrzeżenie: To jest domyślna konfiguracja systemu. Zmiany wpłyną na wszystkie konta, które nie mają przypisanej konkretnej konfiguracji.\",\"aT/44s\":\"We couldn't copy that Stripe connection. Please try again.\",\"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.\",\"Fjj/5/\":\"We couldn't load the check-in lists. Please try again.\",\"ADsQ23\":\"We couldn't reach Stripe just now. Please try again in a moment.\",\"HJKdzP\":\"Napotkaliśmy problem podczas ładowania tej strony. Proszę spróbować ponownie.\",\"jegrvW\":\"We partner with Stripe to send payouts straight to your bank account.\",\"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 lepiej zrozumieć, jak korzysta się z witryny, i poprawić Twoje wrażenia.\",\"x8rEDQ\":\"Nie mogliśmy zweryfikować numeru VAT po wielu próbach. Będziemy kontynuować próby w tle. Proszę sprawdzić później.\",\"mfM/HJ\":[\"Powiadomimy Cię e-mailem, jeśli miejsce stanie się dostępne dla \",[\"productDisplayName\"],\" w dniu \",[\"occurrenceDate\"],\".\"],\"iy+M+c\":[\"Powiadomimy Cię e-mailem, jeśli miejsce stanie się dostępne dla \",[\"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\":\"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\":[\"We've made changes to the schedule for \\\"\",[\"title\"],\"\\\" — \",[\"description\"],\" affecting \",[\"affectedCount\"],\" session(s).\"],\"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\":\"Webhook integrations\",\"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\":\"Wed\",\"VAcXNz\":\"Wednesday\",\"64X6l4\":\"week\",\"4XSc4l\":\"Weekly\",\"IAUiSh\":\"weeks\",\"vKLEXy\":\"Weibo\",\"9eF5oV\":\"Witamy ponownie\",\"QDWsl9\":[\"Witamy w \",[\"0\"],\", \",[\"1\"],\" 👋\"],\"LETnBR\":[\"Witamy w \",[\"0\"],\", oto lista wszystkich Twoich wydarzeń\"],\"DDbx7K\":\"Wellness\",\"ywRaYa\":\"What time?\",\"FaSXqR\":\"Jaki typ wydarzenia?\",\"0WyYF4\":\"What unauthenticated staff can see\",\"2+ExvJ\":\"WhatsApp\",\"cxsKvw\":\"Gdy odprawa zostanie usunięta\",\"RPe6bE\":\"When a date is cancelled on a recurring event\",\"Gmd0hv\":\"Gdy nowy uczestnik zostanie utworzony\",\"zyIyPe\":\"Gdy tworzone jest 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 się wyprzeda, klienci mogą dołączyć do listy oczekujących, aby otrzymać powiadomienie, gdy miejsca staną się dostępne.\",\"OIkHj+\":\"Gdy produkt się wyprzeda, klienci mogą dołączyć do listy oczekujących, aby otrzymać powiadomienie, gdy miejsca staną się dostępne. Klienci dołączają do listy oczekujących na konkretną datę, a oferty są składane dla poszczególnych dat.\",\"Q7CWxp\":\"Gdy uczestnik zostanie anulowany\",\"IuUoyV\":\"Gdy uczestnik zostanie odprawiony\",\"nBVOd7\":\"Gdy uczestnik zostanie zaktualizowany\",\"t7cuMp\":\"Gdy wydarzenie jest archiwizowane\",\"gtoSzE\":\"Gdy wydarzenie jest aktualizowane\",\"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\":\"Gdy klienci kupią bilety, ich zamówienia pojawią się tutaj.\",\"pm9tpn\":\"Po włączeniu kupujący mogą jednocześnie skopiować swoje imię i adres e-mail do wszystkich uczestników. Wyłącz, aby usunąć opcję \\\"Wszyscy uczestnicy\\\"; kupujący nadal będą mogli skopiować dane do pierwszego uczestnika, a pozostałych trzeba będzie wprowadzić osobno.\",\"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.\",\"uchB0M\":\"Podgląd widgetu\",\"uvIqcj\":\"Warsztaty\",\"EpknJA\":\"Napisz swoją wiadomość tutaj...\",\"nhtR6Y\":\"X (Twitter)\",\"7qI8sJ\":\"year\",\"zkWmBh\":\"Yearly\",\"+BGee5\":\"years\",\"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+\":\"You can override this for individual dates later.\",\"paWwQ0\":\"W razie potrzeby nadal możesz ręcznie oferować bilety.\",\"jTDzpA\":\"Nie możesz zarchiwizować ostatniego aktywnego organizatora na swoim koncie.\",\"D8baxD\":\"Masz płatne bilety, ale Stripe nie jest jeszcze połączony, więc nie możesz przyjmować płatności.\",\"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/\":\"You need to create at least one occurrence before you can add attendees to this recurring event.\",\"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\":\"You'll be able to set up dates, schedules, and recurrence rules in the next step.\",\"zKAheG\":\"You're changing session times\",\"MNFIxz\":[\"Idziesz na \",[\"0\"],\"!\"],\"ZlLcht\":[\"Dołączasz do listy oczekujących na \",[\"occurrenceDate\"],\".\"],\"qGZz0m\":\"Jesteś na liście oczekujących!\",\"/5HL6k\":\"Zaproponowano Ci miejsce!\",\"gbjFFH\":\"You've changed the session time\",\"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\":\"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\":\"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 mogliśmy zrealizować Twojego zamówienia. Dołącz ponownie do listy oczekujących, aby otrzymać powiadomienie, gdy więcej miejsc stanie się dostępnych.\",\"9Q6UKX\":\"YouTube\"}")}; \ No newline at end of file diff --git a/frontend/src/locales/pl.po b/frontend/src/locales/pl.po index 00fb0eb2cc..1626ad9827 100644 --- a/frontend/src/locales/pl.po +++ b/frontend/src/locales/pl.po @@ -179,11 +179,11 @@ msgstr "" msgid "{totalCount} ticket types" msgstr "{totalCount} typów biletów" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:554 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:567 msgid "{totalOccurrences} dates" msgstr "" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:547 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:560 msgid "{totalOccurrences} sessions across {0} dates ({1, plural, one {# session} other {# sessions}} per day)" msgstr "" @@ -516,7 +516,7 @@ msgstr "Aktywne wydarzenia" msgid "Active payment methods" msgstr "" -#: src/components/routes/event/OccurrencesTab/index.tsx:400 +#: src/components/routes/event/OccurrencesTab/index.tsx:402 msgid "Activity" msgstr "" @@ -536,11 +536,11 @@ msgstr "" msgid "Add a description for this check-in list" msgstr "Dodaj opis dla tej listy odpraw" -#: src/components/routes/event/OccurrencesTab/index.tsx:538 +#: src/components/routes/event/OccurrencesTab/index.tsx:541 msgid "Add a Single Date" msgstr "" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:739 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:752 msgid "Add another time" msgstr "" @@ -560,7 +560,7 @@ msgstr "Dodaj wszelkie notatki o zamówieniu. Nie będą widoczne dla klienta." msgid "Add any notes about the order..." msgstr "Dodaj wszelkie notatki o zamówieniu..." -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:375 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:382 msgid "Add at least one time" msgstr "" @@ -580,7 +580,7 @@ msgstr "" msgid "Add dates" msgstr "Dodaj terminy" -#: src/components/routes/event/OccurrencesTab/index.tsx:524 +#: src/components/routes/event/OccurrencesTab/index.tsx:526 msgid "Add Dates" msgstr "" @@ -611,7 +611,7 @@ msgstr "Dodaj instrukcje dla płatności offline (np. szczegóły przelewu banko msgid "Add Location" msgstr "Dodaj lokalizację" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:743 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:756 msgid "Add multiple times if you run several sessions per day." msgstr "" @@ -796,7 +796,7 @@ msgid "all" msgstr "" #: src/components/layouts/CheckIn/tabs/SearchTab.tsx:133 -#: src/components/routes/event/OccurrencesTab/index.tsx:485 +#: src/components/routes/event/OccurrencesTab/index.tsx:487 msgid "All" msgstr "" @@ -987,7 +987,7 @@ msgstr "Wystąpił nieoczekiwany błąd." msgid "An unexpected error occurred. Please try again." msgstr "Wystąpił nieoczekiwany błąd. Spróbuj ponownie." -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:849 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:862 msgid "and {0} more..." msgstr "" @@ -1003,7 +1003,7 @@ msgstr "" msgid "Answers provided at checkout (e.g. meal choice)" msgstr "" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:564 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:577 msgid "Any dates you've manually customized will be kept." msgstr "" @@ -1071,7 +1071,7 @@ msgstr "" msgid "Approve Message" msgstr "Zatwierdź wiadomość" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:74 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:76 msgid "April" msgstr "" @@ -1127,7 +1127,7 @@ msgstr "Czy na pewno chcesz zarchiwizować to wydarzenie? Nie będzie już widoc 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." -#: src/components/routes/event/OccurrencesTab/index.tsx:213 +#: src/components/routes/event/OccurrencesTab/index.tsx:215 msgid "Are you sure you want to cancel {count} date(s)? Affected attendees will be notified by email." msgstr "" @@ -1159,7 +1159,7 @@ msgstr "Czy na pewno chcesz usunąć tę konfigurację? Może to wpłynąć na k #: src/components/modals/ManageOccurrenceModal/index.tsx:58 #: src/components/routes/event/OccurrenceDetail/index.tsx:84 -#: src/components/routes/event/OccurrencesTab/index.tsx:182 +#: src/components/routes/event/OccurrencesTab/index.tsx:184 msgid "Are you sure you want to delete this date? This action cannot be undone." msgstr "" @@ -1446,7 +1446,7 @@ msgstr "Podział atrybucji" msgid "Attribution Value" msgstr "Wartość atrybucji" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:78 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:80 msgid "August" msgstr "" @@ -1625,7 +1625,7 @@ msgstr "Brazylijski portugalski" msgid "Built-in fraud protection" msgstr "" -#: src/components/routes/event/OccurrencesTab/index.tsx:515 +#: src/components/routes/event/OccurrencesTab/index.tsx:517 msgid "Bulk Edit" msgstr "" @@ -1674,11 +1674,11 @@ msgstr "Dodając piksele śledzące, potwierdzasz, że Ty i ta platforma jesteś 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" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:628 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:641 msgid "By day of month" msgstr "" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:629 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:642 msgid "By day of week" msgstr "" @@ -1698,7 +1698,7 @@ msgstr "Pomiń opłaty aplikacji" msgid "Calculation Type" msgstr "Typ kalkulacji" -#: src/components/routes/event/OccurrencesTab/index.tsx:471 +#: src/components/routes/event/OccurrencesTab/index.tsx:473 msgid "Calendar" msgstr "" @@ -1735,7 +1735,7 @@ msgstr "" #: src/components/modals/ManageOrderModal/index.tsx:209 #: src/components/modals/PublishEventModal/index.tsx:208 #: src/components/routes/event/messages.tsx:80 -#: src/components/routes/event/OccurrencesTab/index.tsx:497 +#: src/components/routes/event/OccurrencesTab/index.tsx:499 #: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:272 #: src/components/routes/event/OccurrencesTab/OccurrenceEditModal/index.tsx:306 #: src/components/routes/event/OccurrencesTab/OccurrenceMenu.tsx:61 @@ -1748,8 +1748,8 @@ msgstr "" msgid "Cancel" msgstr "Anuluj" -#: src/components/routes/event/OccurrencesTab/index.tsx:209 -#: src/components/routes/event/OccurrencesTab/index.tsx:221 +#: src/components/routes/event/OccurrencesTab/index.tsx:211 +#: src/components/routes/event/OccurrencesTab/index.tsx:223 msgid "Cancel {count} date(s)" msgstr "" @@ -1809,7 +1809,7 @@ msgstr "Anulowanie anuluje wszystkich uczestników związanych z tym zamówienie msgid "Cancelled" msgstr "Anulowane" -#: src/components/routes/event/OccurrencesTab/index.tsx:235 +#: src/components/routes/event/OccurrencesTab/index.tsx:237 msgid "Cancelling {0} date(s). This may take a moment to complete." msgstr "" @@ -1819,7 +1819,7 @@ msgstr "Nie można usunąć domyślnej konfiguracji systemu" #: src/components/forms/CapaciyAssigmentForm/index.tsx:42 #: src/components/routes/event/OccurrencesTab/OccurrenceEditModal/index.tsx:503 -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:811 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:824 msgid "Capacity" msgstr "Pojemność" @@ -2154,7 +2154,7 @@ msgid "City" msgstr "Miasto" #: src/components/common/OccurrenceSelect/index.tsx:133 -#: src/components/routes/event/OccurrencesTab/index.tsx:503 +#: src/components/routes/event/OccurrencesTab/index.tsx:505 msgid "Clear" msgstr "" @@ -2174,7 +2174,7 @@ msgstr "Wyczyść tekst wyszukiwania" msgid "Clearing removes any per-date override. Affected dates will fall back to the event's default location." msgstr "" -#: src/components/routes/event/OccurrencesTab/index.tsx:331 +#: src/components/routes/event/OccurrencesTab/index.tsx:333 msgid "Click to cancel" msgstr "" @@ -2182,7 +2182,7 @@ msgstr "" msgid "Click to copy" msgstr "Kliknij, aby skopiować" -#: src/components/routes/event/OccurrencesTab/index.tsx:333 +#: src/components/routes/event/OccurrencesTab/index.tsx:335 msgid "Click to reopen for new sales" msgstr "" @@ -2743,7 +2743,7 @@ msgstr "Utwórz szablon {0}" msgid "Create a custom widget to sell tickets on your site." msgstr "Utwórz niestandardowy widget do sprzedaży biletów na swojej stronie." -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:785 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:798 msgid "Create a fixed number" msgstr "" @@ -2879,7 +2879,7 @@ msgstr "Utwórz kod promocyjny" msgid "Create Question" msgstr "Utwórz pytanie" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:864 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:877 msgid "Create Schedule" msgstr "" @@ -2927,6 +2927,10 @@ msgstr "Utwórz własne wydarzenie" msgid "Created" msgstr "Utworzone" +#: src/components/routes/event/OccurrencesTab/index.tsx:549 +msgid "Creating {0} dates. This may take a moment." +msgstr "Tworzenie {0} terminów. To może chwilę potrwać." + #: src/components/routes/welcome/index.tsx:472 msgid "Creating Event..." msgstr "Tworzenie wydarzenia..." @@ -3066,7 +3070,7 @@ msgstr "Dostosuj swoją stronę wydarzenia" msgid "Customize your organizer page appearance" msgstr "Dostosuj wygląd strony organizatora" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:56 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:58 #: src/components/routes/product-widget/OccurrenceSelector/index.tsx:32 msgid "Daily" msgstr "" @@ -3155,7 +3159,7 @@ msgstr "" #: src/components/modals/ManageOccurrenceModal/index.tsx:61 #: src/components/routes/event/OccurrenceDetail/index.tsx:87 -#: src/components/routes/event/OccurrencesTab/index.tsx:184 +#: src/components/routes/event/OccurrencesTab/index.tsx:186 msgid "Date deleted" msgstr "" @@ -3168,7 +3172,7 @@ msgstr "" msgid "Date reactivated" msgstr "" -#: src/components/routes/event/OccurrencesTab/index.tsx:198 +#: src/components/routes/event/OccurrencesTab/index.tsx:200 msgid "Date reopened for new sales" msgstr "" @@ -3184,15 +3188,15 @@ msgstr "" msgid "Dates with sessions" msgstr "" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:93 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:95 msgid "day" msgstr "" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:659 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:672 msgid "Day" msgstr "" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:676 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:689 msgid "Day of Month" msgstr "" @@ -3200,19 +3204,19 @@ msgstr "" msgid "Day one capacity" msgstr "Pojemność pierwszego dnia" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:101 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:103 msgid "days" msgstr "" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:635 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:648 msgid "Days of Month" msgstr "" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:605 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:618 msgid "Days of Week" msgstr "" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:82 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:84 msgid "December" msgstr "" @@ -3230,7 +3234,7 @@ msgstr "Domyślny" msgid "Default attendee information collection" msgstr "Domyślne zbieranie informacji o uczestniku" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:815 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:828 msgid "Default capacity per date" msgstr "" @@ -3253,7 +3257,7 @@ msgstr "usuń" #: src/components/common/QuestionsTable/index.tsx:150 #: src/components/common/TaxAndFeeList/index.tsx:81 #: src/components/routes/admin/FailedJobs/index.tsx:209 -#: src/components/routes/event/OccurrencesTab/index.tsx:500 +#: src/components/routes/event/OccurrencesTab/index.tsx:502 #: src/components/routes/event/OccurrencesTab/OccurrenceMenu.tsx:62 msgid "Delete" msgstr "Usuń" @@ -3262,7 +3266,7 @@ msgstr "Usuń" msgid "Delete \"{0}\"?" msgstr "Usunąć \"{0}\"?" -#: src/components/routes/event/OccurrencesTab/index.tsx:247 +#: src/components/routes/event/OccurrencesTab/index.tsx:249 msgid "Delete {count} selected date(s)? Dates with orders will be skipped. This cannot be undone." msgstr "" @@ -3344,7 +3348,7 @@ msgstr "Usunąć to pytanie? Tej akcji nie można cofnąć." msgid "Delete webhook" msgstr "Usuń webhook" -#: src/components/routes/event/OccurrencesTab/index.tsx:253 +#: src/components/routes/event/OccurrencesTab/index.tsx:255 msgid "Deleted {0} date(s)" msgstr "" @@ -3565,7 +3569,7 @@ msgstr "np. 180 (3 godziny)" #: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:452 #: src/components/routes/event/OccurrencesTab/OccurrenceEditModal/index.tsx:450 -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:714 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:727 msgid "e.g. Morning Session" msgstr "" @@ -3724,7 +3728,7 @@ msgstr "Edytuj webhook" msgid "Edit Webhook" msgstr "Edytuj webhook" -#: src/components/routes/event/OccurrencesTab/index.tsx:306 +#: src/components/routes/event/OccurrencesTab/index.tsx:308 msgid "Edited" msgstr "" @@ -3913,7 +3917,7 @@ msgstr "Włącz listę oczekujących" msgid "Enabled" msgstr "Włączony" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:704 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:717 msgid "End" msgstr "" @@ -3934,7 +3938,7 @@ msgstr "Data i czas zakończenia (opcjonalne)" msgid "End date must be after start date" msgstr "Data zakończenia musi być po dacie rozpoczęcia" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:771 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:784 msgid "End on a date" msgstr "" @@ -4409,7 +4413,7 @@ msgstr "Nie udało się anulować uczestnika" msgid "Failed to cancel date" msgstr "" -#: src/components/routes/event/OccurrencesTab/index.tsx:239 +#: src/components/routes/event/OccurrencesTab/index.tsx:241 msgid "Failed to cancel dates" msgstr "" @@ -4429,10 +4433,14 @@ msgstr "Nie udało się utworzyć partnera" msgid "Failed to create configuration" msgstr "Nie udało się utworzyć konfiguracji" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:530 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:543 msgid "Failed to create schedule" msgstr "" +#: src/hooks/useOccurrenceGenerationPolling.ts:44 +msgid "Failed to create schedule. Please try again." +msgstr "Nie udało się utworzyć harmonogramu. Spróbuj ponownie." + #: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:192 #: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:195 msgid "Failed to create template" @@ -4444,7 +4452,7 @@ msgstr "Nie udało się usunąć konfiguracji" #: src/components/modals/ManageOccurrenceModal/index.tsx:64 #: src/components/routes/event/OccurrenceDetail/index.tsx:90 -#: src/components/routes/event/OccurrencesTab/index.tsx:185 +#: src/components/routes/event/OccurrencesTab/index.tsx:187 msgid "Failed to delete date" msgstr "" @@ -4452,7 +4460,7 @@ msgstr "" msgid "Failed to delete date. It may have existing orders." msgstr "" -#: src/components/routes/event/OccurrencesTab/index.tsx:256 +#: src/components/routes/event/OccurrencesTab/index.tsx:258 msgid "Failed to delete dates" msgstr "" @@ -4540,7 +4548,7 @@ msgstr "Nie udało się usunąć z listy oczekujących" msgid "Failed to remove override" msgstr "" -#: src/components/routes/event/OccurrencesTab/index.tsx:199 +#: src/components/routes/event/OccurrencesTab/index.tsx:201 msgid "Failed to reopen date" msgstr "" @@ -4677,7 +4685,7 @@ msgstr "" msgid "Fast payouts to your bank" msgstr "" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:72 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:74 msgid "February" msgstr "" @@ -4769,7 +4777,7 @@ msgstr "" msgid "Finish setup" msgstr "" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:63 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:65 msgid "First" msgstr "" @@ -4882,7 +4890,7 @@ msgstr "Tekst stopki" msgid "Forgot password?" msgstr "Zapomniałeś hasła?" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:66 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:68 msgid "Fourth" msgstr "" @@ -4909,11 +4917,11 @@ msgstr "Darmowy produkt, nie wymaga informacji o płatności" msgid "French" msgstr "Francuski" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:586 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:599 msgid "Frequency" msgstr "" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:50 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:52 msgid "Fri" msgstr "" @@ -5004,7 +5012,7 @@ msgstr "GitHub" #: src/components/routes/event/OccurrenceDetail/index.tsx:72 #: src/components/routes/event/OccurrencesTab/cancelOccurrenceDialog.tsx:49 -#: src/components/routes/event/OccurrencesTab/index.tsx:221 +#: src/components/routes/event/OccurrencesTab/index.tsx:223 #: src/components/routes/event/OccurrencesTab/OccurrenceEditModal/index.tsx:339 #: src/components/routes/event/OccurrencesTab/OccurrenceEditModal/index.tsx:363 msgid "Go Back" @@ -5271,7 +5279,7 @@ msgstr "Jak stosowany jest rabat?" msgid "How long a customer has to complete their purchase after receiving an offer. Leave empty for no timeout." msgstr "Jak długo klient ma na sfinalizowanie zakupu po otrzymaniu oferty. Pozostaw puste, aby nie było limitu czasu." -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:750 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:763 msgid "How long does the schedule run?" msgstr "" @@ -5283,7 +5291,7 @@ msgstr "Ile minut klient ma na ukończenie zamówienia. Zalecamy co najmniej 15 msgid "How many times can this code be used?" msgstr "Ile razy można użyć tego kodu?" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:581 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:594 msgid "How often?" msgstr "" @@ -5589,7 +5597,7 @@ msgstr "przedmiot(y)" msgid "Items" msgstr "Przedmioty" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:71 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:73 msgid "January" msgstr "" @@ -5640,11 +5648,11 @@ msgstr "Dołącz do listy oczekujących na {productDisplayName}" msgid "Joined" msgstr "Dołączono" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:77 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:79 msgid "July" msgstr "" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:76 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:78 msgid "June" msgstr "" @@ -5670,7 +5678,7 @@ msgstr "" #: src/components/forms/ProductForm/index.tsx:108 #: src/components/routes/event/OccurrencesTab/OccurrenceEditModal/index.tsx:449 -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:711 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:724 #: src/components/routes/event/Reports/OccurrenceSummaryReport/index.tsx:45 msgid "Label" msgstr "Etykieta" @@ -5685,7 +5693,7 @@ msgstr "" msgid "Language" msgstr "Język" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:67 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:69 msgid "Last" msgstr "" @@ -5794,7 +5802,7 @@ msgid "Leave blank to use the default word \"Invoice\"" msgstr "Pozostaw puste, aby użyć domyślnego słowa \"Faktura\"" #: src/components/routes/event/OccurrencesTab/OccurrenceEditModal/index.tsx:507 -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:816 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:829 msgid "Leave empty for unlimited" msgstr "" @@ -5834,7 +5842,7 @@ msgstr "LinkedIn" msgid "Links Allowed" msgstr "Linki dozwolone" -#: src/components/routes/event/OccurrencesTab/index.tsx:470 +#: src/components/routes/event/OccurrencesTab/index.tsx:472 msgid "List" msgstr "" @@ -6003,7 +6011,7 @@ msgstr "" msgid "Manage attendee" msgstr "Zarządzaj uczestnikiem" -#: src/components/routes/event/OccurrencesTab/index.tsx:460 +#: src/components/routes/event/OccurrencesTab/index.tsx:462 msgid "Manage dates and times for your recurring event" msgstr "" @@ -6074,7 +6082,7 @@ msgstr "Dodaj uczestnika ręcznie" msgid "Manually Add Attendee" msgstr "Dodaj uczestnika ręcznie" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:73 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:75 msgid "March" msgstr "" @@ -6098,7 +6106,7 @@ msgstr "Maks odbiorców / wiadomość" msgid "Maximum Per Order" msgstr "Maksimum na zamówienie" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:75 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:77 msgid "May" msgstr "" @@ -6214,7 +6222,7 @@ msgstr "Ustawienia różne" msgid "Mode" msgstr "" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:46 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:48 msgid "Mon" msgstr "" @@ -6230,24 +6238,24 @@ msgstr "Wartości pieniężne są przybliżonymi sumami we wszystkich walutach" msgid "Monitor and manage failed background jobs" msgstr "Monitoruj i zarządzaj nieudanymi zadaniami w tle" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:95 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:97 msgid "month" msgstr "" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:671 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:684 msgid "Month" msgstr "Miesiąc" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:58 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:60 #: src/components/routes/product-widget/OccurrenceSelector/index.tsx:41 msgid "Monthly" msgstr "" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:624 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:637 msgid "Monthly Pattern" msgstr "" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:103 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:105 msgid "months" msgstr "" @@ -6516,7 +6524,7 @@ msgstr "" msgid "No dates match the current filters." msgstr "" -#: src/components/routes/event/OccurrencesTab/index.tsx:570 +#: src/components/routes/event/OccurrencesTab/index.tsx:580 msgid "No dates match your filters" msgstr "" @@ -6529,7 +6537,7 @@ msgstr "" msgid "No dates scheduled" msgstr "Brak zaplanowanych terminów" -#: src/components/routes/event/OccurrencesTab/index.tsx:570 +#: src/components/routes/event/OccurrencesTab/index.tsx:580 msgid "No dates scheduled yet" msgstr "" @@ -6820,11 +6828,11 @@ msgstr "" msgid "Notify organizer of new orders" msgstr "Powiadom organizatora o nowych zamówieniach" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:81 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:83 msgid "November" msgstr "" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:800 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:813 msgid "Number of dates to create" msgstr "" @@ -6849,7 +6857,7 @@ msgid "Occurrence Cancelled" msgstr "" #: src/components/layouts/Event/index.tsx:113 -#: src/components/routes/event/OccurrencesTab/index.tsx:461 +#: src/components/routes/event/OccurrencesTab/index.tsx:463 msgid "Occurrence Schedule" msgstr "" @@ -6871,7 +6879,7 @@ msgstr "" msgid "Occurrences can be configured after creation" msgstr "" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:80 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:82 msgid "October" msgstr "" @@ -6965,7 +6973,7 @@ msgstr "Trwający" #: src/components/common/EventCard/index.tsx:103 #: src/components/layouts/OrganizerHomepage/EventCard/index.tsx:49 -#: src/components/routes/event/OccurrencesTab/index.tsx:316 +#: src/components/routes/event/OccurrencesTab/index.tsx:318 #: src/components/routes/event/OccurrencesTab/OccurrenceEditModal/index.tsx:473 #: src/components/routes/my-tickets/index.tsx:56 #: src/components/routes/product-widget/OccurrenceSelector/index.tsx:122 @@ -7080,7 +7088,7 @@ msgstr "Opcje" msgid "or" msgstr "lub" -#: src/components/routes/event/OccurrencesTab/index.tsx:593 +#: src/components/routes/event/OccurrencesTab/index.tsx:603 msgid "or add a single date" msgstr "" @@ -7088,7 +7096,7 @@ msgstr "" msgid "Or enable offline payments and disable Stripe" msgstr "Lub włącz płatności offline i wyłącz Stripe" -#: src/components/routes/event/OccurrencesTab/index.tsx:413 +#: src/components/routes/event/OccurrencesTab/index.tsx:415 msgid "order" msgstr "" @@ -7250,7 +7258,7 @@ msgstr "Zamówienie zostało pomyślnie zaktualizowane" msgid "Order was cancelled" msgstr "Zamówienie zostało anulowane" -#: src/components/routes/event/OccurrencesTab/index.tsx:413 +#: src/components/routes/event/OccurrencesTab/index.tsx:415 #: src/components/routes/event/orders.tsx:197 msgid "orders" msgstr "" @@ -7503,7 +7511,7 @@ msgid "Passwords are not the same" msgstr "Hasła nie są takie same" #: src/components/layouts/OrganizerHomepage/index.tsx:291 -#: src/components/routes/event/OccurrencesTab/index.tsx:484 +#: src/components/routes/event/OccurrencesTab/index.tsx:486 #: src/components/routes/organizer/Reports/EventsPerformanceReport/index.tsx:30 msgid "Past" msgstr "Przeszłe" @@ -7707,15 +7715,15 @@ msgstr "Informacje osobiste" msgid "Phone" msgstr "Telefon" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:372 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:379 msgid "Pick an end date" msgstr "" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:380 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:387 msgid "Pick at least one day of the month" msgstr "" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:369 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:376 msgid "Pick at least one day of the week" msgstr "" @@ -7765,7 +7773,7 @@ msgstr "Przychody platformy" msgid "Please add at least one option" msgstr "Dodaj co najmniej jedną opcję" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:527 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:540 #: src/hooks/useFormErrorResponseHandler.tsx:18 msgid "Please check the provided information is correct" msgstr "Sprawdź, czy podane informacje są poprawne" @@ -7895,7 +7903,7 @@ msgstr "Popularne wydarzenia (ostatnie 14 dni)" msgid "Portuguese" msgstr "Portugalski" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:654 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:667 msgid "Position" msgstr "" @@ -8385,7 +8393,7 @@ msgstr "Konta poleceń" msgid "Refresh Preview" msgstr "Odśwież podgląd" -#: src/components/routes/event/OccurrencesTab/index.tsx:216 +#: src/components/routes/event/OccurrencesTab/index.tsx:218 msgid "Refund all orders for these dates" msgstr "" @@ -8494,11 +8502,11 @@ msgstr "Całkowicie usuwa wyprzedane daty i godziny ze strony wydarzenia. Gdy wy msgid "Reopen for new sales" msgstr "" -#: src/components/routes/event/OccurrencesTab/index.tsx:192 +#: src/components/routes/event/OccurrencesTab/index.tsx:194 msgid "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." msgstr "" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:591 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:604 msgid "Repeat every" msgstr "" @@ -8699,7 +8707,7 @@ msgstr "Cofnij ofertę" msgid "Role" msgstr "Rola" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:772 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:785 msgid "Run until a specific date" msgstr "" @@ -8786,7 +8794,7 @@ msgstr "Przykładowa cena biletu" msgid "Sample Venue" msgstr "Przykładowa Sala" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:51 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:53 msgid "Sat" msgstr "" @@ -8836,7 +8844,7 @@ msgstr "" msgid "Save Organizer" msgstr "Zapisz organizatora" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:864 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:877 msgid "Save Schedule" msgstr "" @@ -8900,11 +8908,12 @@ msgstr "" msgid "Schedule added" msgstr "" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:520 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:530 +#: src/hooks/useOccurrenceGenerationPolling.ts:36 msgid "Schedule created successfully" msgstr "" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:793 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:806 msgid "Schedule ends on" msgstr "" @@ -8916,7 +8925,7 @@ msgstr "Zaplanuj na później" msgid "Schedule Message" msgstr "Zaplanuj wiadomość" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:755 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:768 msgid "Schedule starts on" msgstr "" @@ -9039,7 +9048,7 @@ msgstr "Szukaj..." msgid "Seasonal" msgstr "" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:64 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:66 msgid "Second" msgstr "" @@ -9215,7 +9224,7 @@ msgstr "Wybierz, które wydarzenia spowodują ten webhook" msgid "Select..." msgstr "Wybierz..." -#: src/components/routes/event/OccurrencesTab/index.tsx:495 +#: src/components/routes/event/OccurrencesTab/index.tsx:497 msgid "selected" msgstr "" @@ -9345,7 +9354,7 @@ msgstr "Ustawienia SEO" msgid "SEO Title" msgstr "Tytuł SEO" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:79 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:81 msgid "September" msgstr "" @@ -9373,7 +9382,7 @@ msgstr "Ustaw domyślne ustawienia dla nowych wydarzeń utworzonych pod tym orga msgid "Set how long each date lasts" msgstr "" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:784 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:797 msgid "Set number of dates" msgstr "" @@ -9393,7 +9402,7 @@ msgstr "Ustaw numer początkowy numeracji faktur. Nie można tego zmienić po wy msgid "Set to unlimited (remove limit)" msgstr "" -#: src/components/routes/event/OccurrencesTab/index.tsx:575 +#: src/components/routes/event/OccurrencesTab/index.tsx:585 msgid "Set up a recurring schedule to automatically create dates, or add them one at a time." msgstr "" @@ -9410,8 +9419,8 @@ msgstr "" msgid "Set up schedule" msgstr "" -#: src/components/routes/event/OccurrencesTab/index.tsx:532 -#: src/components/routes/event/OccurrencesTab/index.tsx:586 +#: src/components/routes/event/OccurrencesTab/index.tsx:535 +#: src/components/routes/event/OccurrencesTab/index.tsx:596 msgid "Set Up Schedule" msgstr "" @@ -9427,7 +9436,7 @@ msgstr "Ustaw swoją organizację" msgid "Set up your schedule" msgstr "" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:569 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:582 msgid "Set Up Your Schedule" msgstr "" @@ -9564,7 +9573,7 @@ msgstr "Pokaż podatki i opłaty oddzielnie" msgid "Showing {0} of {totalRows} records" msgstr "Wyświetlanie {0} z {totalRows} rekordów" -#: src/components/routes/event/OccurrencesTab/index.tsx:614 +#: src/components/routes/event/OccurrencesTab/index.tsx:624 msgid "Showing {0}–{1} of {2}" msgstr "" @@ -9645,7 +9654,7 @@ msgstr "Linki społeczne i strona internetowa" #: src/components/common/ProductsTable/SortableProduct/index.tsx:387 #: src/components/modals/ManageOccurrenceModal/index.tsx:186 -#: src/components/routes/event/OccurrencesTab/index.tsx:369 +#: src/components/routes/event/OccurrencesTab/index.tsx:371 msgid "Sold" msgstr "Sprzedane" @@ -9753,7 +9762,7 @@ msgstr "" msgid "Standard product with a fixed price" msgstr "Produkt standardowy o stałej cenie" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:696 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:709 msgid "Start" msgstr "" @@ -9846,7 +9855,7 @@ msgstr "" #: src/components/routes/admin/Messages/index.tsx:120 #: src/components/routes/admin/Messages/index.tsx:167 #: src/components/routes/admin/Messages/index.tsx:294 -#: src/components/routes/event/OccurrencesTab/index.tsx:326 +#: src/components/routes/event/OccurrencesTab/index.tsx:328 #: src/components/routes/event/Reports/OccurrenceSummaryReport/index.tsx:51 #: src/components/routes/event/Reports/PromoCodesReport/index.tsx:88 #: src/components/routes/organizer/Reports/EventsPerformanceReport/index.tsx:62 @@ -10104,7 +10113,7 @@ msgstr "Letni Festiwal Muzyki {0}" msgid "Summer Music Festival 2025" msgstr "Letni Festiwal Muzyki 2025" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:52 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:54 msgid "Sun" msgstr "" @@ -10231,7 +10240,7 @@ msgstr "Powiedz nam o Twojej imprezie" msgid "Tell us about your organization. This information will be displayed on your event pages." msgstr "Powiedz nam o Twojej organizacji. Informacja ta będzie wyświetlana na stronach Twoich imprez." -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:573 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:586 msgid "Tell us how often your event repeats and we'll create all the dates for you." msgstr "" @@ -10325,7 +10334,7 @@ msgstr "Adres e-mail został zmieniony. Uczestnik otrzyma nowy bilet na zaktuali msgid "The event you're looking for is not available at the moment. It may have been removed, expired, or the URL might be incorrect." msgstr "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." -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:756 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:769 msgid "The first date this schedule will generate from." msgstr "" @@ -10345,7 +10354,7 @@ msgstr "Link, który próbujesz otworzyć, wygasł lub nie jest już ważny. Spr msgid "The link you clicked is invalid." msgstr "Kliknięty link jest nieprawidłowy." -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:840 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:853 msgid "The maximum is {MAX_PREVIEW} sessions. Please reduce the date range, frequency, or number of sessions per day." msgstr "" @@ -10481,7 +10490,7 @@ msgstr "Te szablony będą używane jako domyślne dla wszystkich wydarzeń w Tw 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." -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:65 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:67 msgid "Third" msgstr "" @@ -10744,7 +10753,7 @@ msgstr "Nie będzie to widoczne dla klientów, ale pomaga Ci zidentyfikować par msgid "Throughput" msgstr "" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:49 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:51 msgid "Thu" msgstr "" @@ -10881,7 +10890,7 @@ msgstr "Produkty warstwowe pozwalają oferować wiele opcji cenowych dla tego sa msgid "TikTok" msgstr "TikTok" -#: src/components/routes/event/OccurrencesTab/index.tsx:290 +#: src/components/routes/event/OccurrencesTab/index.tsx:292 msgid "Time" msgstr "" @@ -10912,7 +10921,7 @@ msgstr "Liczba użyć" msgid "Timezone" msgstr "Strefa czasowa" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:702 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:715 msgid "to" msgstr "" @@ -11056,7 +11065,7 @@ msgstr "Śledzenie i analityka" msgid "Try a different search term or filter" msgstr "" -#: src/components/routes/event/OccurrencesTab/index.tsx:574 +#: src/components/routes/event/OccurrencesTab/index.tsx:584 msgid "Try adjusting your filters to see more dates." msgstr "" @@ -11069,7 +11078,7 @@ msgstr "Spróbuj innego e-maila" msgid "Try Hi.Events Free" msgstr "Spróbuj Hi.Events za darmo" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:47 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:49 msgid "Tue" msgstr "" @@ -11232,7 +11241,7 @@ msgstr "Niezaufane" #: src/components/common/EventsDashboardStatusButtons/index.tsx:20 #: src/components/common/EventStatusBadge/index.tsx:16 #: src/components/layouts/OrganizerHomepage/index.tsx:285 -#: src/components/routes/event/OccurrencesTab/index.tsx:483 +#: src/components/routes/event/OccurrencesTab/index.tsx:485 #: src/components/routes/organizer/Reports/EventsPerformanceReport/index.tsx:33 msgid "Upcoming" msgstr "Nadchodzące" @@ -11880,7 +11889,7 @@ msgstr "Webhooki" msgid "Website" msgstr "Strona internetowa" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:48 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:50 msgid "Wed" msgstr "" @@ -11888,16 +11897,16 @@ msgstr "" msgid "Wednesday" msgstr "" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:94 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:96 msgid "week" msgstr "" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:57 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:59 #: src/components/routes/product-widget/OccurrenceSelector/index.tsx:35 msgid "Weekly" msgstr "" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:102 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:104 msgid "weeks" msgstr "" @@ -11953,7 +11962,7 @@ msgstr "Do jakich produktów powinna dotyczyć ta pojemność?" msgid "What time will you be arriving?" msgstr "O której godzinie przyjedziesz?" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:688 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:701 msgid "What time?" msgstr "" @@ -12140,7 +12149,7 @@ msgstr "Napisz swoją wiadomość tutaj..." msgid "X (Twitter)" msgstr "X (Twitter)" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:96 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:98 msgid "year" msgstr "" @@ -12150,12 +12159,12 @@ msgstr "" msgid "Year to date" msgstr "Od początku roku" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:59 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:61 #: src/components/routes/product-widget/OccurrenceSelector/index.tsx:43 msgid "Yearly" msgstr "" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:104 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:106 msgid "years" msgstr "" @@ -12200,7 +12209,7 @@ msgstr "Możesz skonfigurować dodatkowe opłaty za usługi i podatki w ustawien msgid "You can create a promo code which targets this product on the" msgstr "Możesz utworzyć kod promocyjny, który jest ukierunkowany na ten produkt w" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:823 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:836 msgid "You can override this for individual dates later." msgstr "" diff --git a/frontend/src/locales/pt-br.js b/frontend/src/locales/pt-br.js index 3f986fefa6..1f3431126f 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\":\"Are you sure you want to make this event public? This will make the event visible to the public\",\"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\":\"Attendee Notes\",\"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\":\"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 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\":\"Personalize a página do seu evento\",\"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\":\"Dismiss\",\"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\":\"Event URL\",\"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\":\"No attendees have been added to this order.\",\"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\":\"No product associated with this attendee.\",\"Ya1JhR\":\"Nenhum produto disponível nesta categoria.\",\"FTfObB\":\"Nenhum Produto Ainda\",\"+Y976X\":\"Não há códigos promocionais a serem exibidos\",\"MAavyl\":\"No questions answered by this attendee.\",\"SnlQeq\":\"No questions have been asked for this order.\",\"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\":\"Online event\",\"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\":\"Order #\",\"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\":\"Order Notes\",\"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 qualquer informação importante que os participantes precisem 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\":\"San 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\":\"Suite 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\":\"View\",\"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\":\"(none)\",\"xYxQCZ\":[[\"0\"],\" \",[\"1\"]],\"lAOy2r\":[[\"0\"],\" \",[\"1\"],\" já fez check-in\"],\"3beCx0\":[[\"0\"],\" <0>checked in\"],\"S4PqS9\":[[\"0\"],\" webhooks ativos\"],\"6MIiOI\":[[\"0\"],\" restante\"],\"COnw8D\":[\"Logo \",[\"0\"]],\"xG9N0H\":[[\"0\"],\" of \",[\"1\"],\" seats are taken.\"],\"B7pZfX\":[[\"0\"],\" organizadores\"],\"/HkCs4\":[[\"0\"],\" ingressos\"],\"30bTiU\":[[\"activeCount\"],\" enabled\"],\"jTs4am\":[[\"appName\"],\" logo\"],\"gbJOk9\":[[\"attendeeCount\"],\" attendees are registered for this session.\"],\"TjbIUI\":[[\"availableCount\"],\" de \",[\"totalCount\"],\" disponíveis\"],\"PSChHo\":[[\"capacity\"],\" vagas restantes\"],\"lzQ8/M\":[[\"checkedIn\"],\" / \",[\"total\"],\" checked in\"],\"RZ0JX3\":[[\"chipTime\"],\", esgotado\"],\"M4KnFs\":[[\"chipTime\"],\", Esgotado, lista de espera disponível\"],\"SeyN12\":[[\"completedCount\"],\" of \",[\"totalCount\"],\" steps complete\"],\"f2rhaD\":[[\"diffHr\"],\"h ago\"],\"NRSLBe\":[[\"diffMin\"],\"m ago\"],\"iYfwJE\":[[\"diffSec\"],\"s ago\"],\"OJnhhX\":[[\"eventCount\"],\" eventos\"],\"mhZbzw\":[[\"loadedAffectedAttendees\"],\" attendees are registered across the affected sessions.\"],\"RBuxIl\":[[\"productCount\"],\" ticket types configured\"],\"VFLd0I\":[[\"slotCount\"],\" times available\"],\"3IEF7U\":[[\"totalCount\"],\" tipos de ingresso\"],\"0cLzoF\":[[\"totalOccurrences\"],\" dates\"],\"AEGc4t\":[[\"totalOccurrences\"],\" sessions across \",[\"0\"],\" dates (\",[\"1\",\"plural\",{\"one\":[\"#\",\" session\"],\"other\":[\"#\",\" sessions\"]}],\" per day)\"],\"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.\",\"Il5Uid\":\"<0>Esta é a quantidade total disponível para todas as datas da sua programação em conjunto — não é um limite por data. Para limitar o público de cada data, defina uma capacidade na <1>página de Programação de datas.\",\"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 attendee is registered across the affected sessions.\",\"qOyE2U\":\"1 attendee is registered for this session.\",\"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\",\"y2Jh0m\":\"1 time available\",\"cGtUz6\":\"1 semana antes do evento\",\"HR/cvw\":\"Rua Exemplo 123\",\"dgKxZ5\":\"135+ currencies & 40+ payment methods\",\"kMU5aM\":\"Um aviso de cancelamento foi enviado para\",\"o++0qa\":\"a change in duration\",\"WuWSX5\":\"A few quick steps and you're ready to start selling.\",\"RQ5kDd\":\"Uma mensagem a ser exibida quando não houver produtos nesta categoria.\",\"V53XzQ\":\"Um novo código de verificação foi enviado para o seu email\",\"sr2Je0\":\"a shift in start/end times\",\"/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\":[\"Account · \",[\"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\":\"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\":\"Adicione perguntas personalizadas para coletar informações adicionais durante o checkout\",\"Z/dcxc\":\"Add Date\",\"QeupRg\":\"Adicionar datas\",\"Q219NT\":\"Add Dates\",\"yjB5VC\":\"Add dates and times for your recurring event\",\"Z8idyM\":\"Add details\",\"wpirGs\":\"Add event details\",\"VX6WUv\":\"Adicionar localização\",\"GCQlV2\":\"Add multiple times if you run several sessions per day.\",\"7JF9w9\":\"Adicionar pergunta\",\"NLbIb6\":\"Add this attendee anyway (override capacity)\",\"6PNlRV\":\"Adicione este evento ao seu calendário\",\"BGD9Yt\":\"Adicionar ingressos\",\"uIv4Op\":\"Adicione pixels de rastreamento às suas páginas de eventos públicos 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\":\"Affiliate program\",\"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.\",\"3e31kI\":\"After your event is created, you can choose how often it repeats from the dashboard.\",\"z7GAMJ\":\"all\",\"N40H+G\":\"All\",\"7rLTkE\":\"Todos os eventos arquivados\",\"gKq1fa\":\"Todos os participantes\",\"63gRoO\":\"All attendees of the selected sessions\",\"uWxIoH\":\"All attendees of this occurrence\",\"pMLul+\":\"Todas as moedas\",\"sgUdRZ\":\"All dates\",\"e4q4uO\":\"All Dates\",\"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\":\"All matching dates\",\"F1/VgK\":\"All occurrences\",\"OpWjMq\":\"All Occurrences\",\"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.\",\"VZdky1\":\"Permitir que compradores copiem seus dados para todos os participantes\",\"F3mW5G\":\"Permitir que os clientes entrem em uma lista de espera quando este produto estiver esgotado\",\"4CMO/q\":\"Permitir que os clientes entrem em uma lista de espera quando este produto estiver esgotado. Os clientes entram na lista de espera para uma data específica.\",\"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\":\"Already in\",\"/H326L\":\"Já reembolsado\",\"USEpOK\":\"Already use Stripe on another organizer? Reuse that connection.\",\"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.\",\"OPFdAM\":\"Uma descrição opcional desta categoria para exibir na página do evento.\",\"eusccx\":\"Uma mensagem opcional para exibir no produto destacado, por exemplo \\\"Vendendo rápido 🔥\\\" ou \\\"Melhor valor\\\"\",\"5GJuNp\":[\"and \",[\"0\"],\" more...\"],\"QNrkms\":\"Resposta atualizada com sucesso.\",\"+qygei\":\"Answers\",\"GK7Lnt\":\"Answers provided at checkout (e.g. meal choice)\",\"lE8PgT\":\"Any dates you've manually customized will be kept.\",\"jVoYha\":[\"aplicado — \",[\"0\"],\" de desconto no seu pedido\"],\"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\":\"Aprovar mensagem\",\"naCW6Z\":\"April\",\"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\":[\"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\":\"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/\":\"Are you sure you want to delete this date? This action cannot be undone.\",\"RiF/yT\":\"Are you sure you want to delete this image?\",\"b3+Qku\":\"Are you sure you want to delete this tax or fee? It will no longer be applied to new orders.\",\"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\":\"Are you sure you want to permanently delete this date? This cannot be undone.\",\"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?\",\"b7tkGp\":\"Are you sure you want to revoke this invitation?\",\"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\":\"Assign plan\",\"xdiER7\":\"Nível atribuído\",\"F2rX0R\":\"Pelo menos um tipo de evento deve ser selecionado\",\"Z44eZS\":\"At least one product must stay available for this date. To make the date inaccessible, cancel it from the schedule instead.\",\"BCmibk\":\"Tentativas\",\"6PecK3\":\"Presença e taxas de check-in em todos os eventos\",\"K2tp3v\":\"attendee\",\"AJ4rvK\":\"Participante cancelado\",\"qvylEK\":\"Participante criado\",\"Aspq3b\":\"Coleta de dados dos participantes\",\"fpb0rX\":\"Dados do participante copiados do pedido\",\"94aQMU\":\"Informações do participante\",\"KkrBiR\":\"Coleta de informações do participante\",\"sjPjOg\":\"Attendee notes\",\"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\":\"attendees\",\"zLRobu\":\"attendees checked 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/\":\"August\",\"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 automaticamente ingressos para a próxima pessoa quando a capacidade ficar disponível. Se desativado, você pode processar manualmente a lista de espera na página Lista de Espera.\",\"csDS2L\":\"Disponível\",\"Xp+ywP\":\"Disponível assim que o pagamento for concluído\",\"dwDH1K\":[\"Available times on \",[\"dayName\"]],\"clF06r\":\"Disponível para reembolso\",\"NB5+UG\":\"Tokens Disponíveis\",\"L+wGOG\":\"Awaiting\",\"qcw2OD\":\"Awaiting pay\",\"kNmmvE\":\"Awesome Events Lda.\",\"TeSaQO\":\"Voltar para Contas\",\"kYqM1A\":\"Voltar ao evento\",\"s5QRF3\":\"Voltar para mensagens\",\"td/bh+\":\"Voltar aos Relatórios\",\"nsm7BA\":\"Voltar à pesquisa\",\"imjKVx\":\"Bank account connected\",\"D9LTCH\":\"Base Price\",\"hviJef\":\"Based on the global sale period above, not per date\",\"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\":\"Built-in fraud protection\",\"cr7kGH\":\"Bulk Edit\",\"1Fbd6n\":\"Bulk Edit Dates\",\"Eq6Tu9\":\"Bulk update failed.\",\"9N+p+g\":\"Negócios\",\"SWnN1L\":\"Business address\",\"kQekXw\":\"Business name\",\"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 possui uma base legal para este processamento sob 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\":\"By day of month\",\"0MnNgi\":\"By day of week\",\"CetOZE\":\"By ticket type\",\"lFdbRS\":\"Ignorar taxas de aplicação\",\"AjVXBS\":\"Calendar\",\"2VLZwd\":\"Botão de Chamada para Ação\",\"rT2cV+\":\"Camera\",\"7hYa9y\":\"Camera permission was denied. <0>Request permission again, or grant this page camera access in your browser settings.\",\"D02dD9\":\"Campanha\",\"RRPA79\":\"Can't check in\",\"OcVwAd\":[\"Cancel \",[\"count\"],\" date(s)\"],\"H4nE+E\":\"Cancelar todos os produtos e devolvê-los ao pool disponível\",\"Py78q9\":\"Cancel Date\",\"tOXAdc\":\"Cancelar irá cancelar todos os participantes associados a este pedido e devolver os ingressos ao pool disponível.\",\"FPpqc7\":[\"Cancelling \",[\"0\"],\" date(s). This may take a moment to complete.\"],\"01sEfm\":\"Não é possível excluir a configuração padrão do sistema\",\"VsM1HH\":\"Atribuições de capacidade\",\"9bIMVF\":\"Capacity management\",\"H7K8og\":\"Capacity must be 0 or greater\",\"nzao08\":\"capacity updates\",\"4cp9NP\":\"Capacity Used\",\"K7tIrx\":\"Categoria\",\"DRK3Bq\":\"Category deleted successfully\",\"o+XJ9D\":\"Alterar\",\"kJkjoB\":\"Change duration\",\"J0KExZ\":\"Change the attendee limit\",\"ssospy\":\"Change time\",\"CIHJJf\":\"Alterar configurações da lista de espera\",\"B5icLR\":[\"Changed duration for \",[\"count\"],\" date(s)\"],\"Kb+0BT\":\"Charges\",\"2tbLdK\":\"Caridade\",\"BPWGKn\":\"Check in\",\"6uFFoY\":\"Check out\",\"FjAlwK\":[\"Check out this event: \",[\"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 for \",[\"0\"],\" was undone\"],\"9s/wrQ\":\"Check-in history\",\"Wwztk4\":\"Check-In List\",\"9gPPUY\":\"Lista de Check-In Criada!\",\"dwjiJt\":\"Check-in list info\",\"7od0PV\":\"check-in lists\",\"f2vU9t\":\"Listas de Check-in\",\"XprdTn\":\"Check-in navigation\",\"5tV1in\":\"Check-in progress\",\"SHJwyq\":\"Taxa de check-in\",\"qCqdg6\":\"Status do Check-In\",\"cKj6OE\":\"Resumo de Check-in\",\"7B5M35\":\"Check-Ins\",\"VrmydS\":\"Checked in\",\"DM4gBB\":\"Chinês (Tradicional)\",\"p8Jvp4\":\"Choose a configuration\",\"ElShBO\":\"Choose a different action\",\"pHEhf+\":\"Escolha uma tipografia que combine com a sua marca. As fontes são auto-hospedadas via Bunny Fonts.\",\"Zok1Gx\":\"Choose an organizer\",\"pkk46Q\":\"Escolha um organizador\",\"Ag32+c\":\"Choose another date\",\"Crr3pG\":\"Escolher calendário\",\"Z38ZJu\":\"Escolha como a data do evento é exibida no ingresso\",\"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\":\"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\":\"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\":\"complete\",\"bUQMpb\":\"Complete Stripe setup\",\"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\":\"Configuration assigned\",\"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 which products are available for this occurrence and optionally adjust pricing.\",\"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\",\"/K4Vqr\":\"Conecte o Stripe para aceitar pagamentos\",\"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\":\"Os detalhes de conexão são obrigatórios para eventos online\",\"jfC/xh\":\"Contato\",\"LOFgda\":[\"Contato \",[\"0\"]],\"41BQ3k\":\"Email de contacto\",\"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\",\"s30OcA\":\"Controle como as datas e horários são exibidos na página do evento\",\"p2FRHj\":\"Controle como as taxas da plataforma são tratadas para este evento\",\"NqfabH\":\"Control who gets in for this date\",\"fmYxZx\":\"Control who gets in, and when\",\"1JnTgU\":\"Copiado de cima\",\"FxVG/l\":\"Copiado para a área de transferência\",\"PiH3UR\":\"Copiado!\",\"4i7smN\":\"Copy account ID\",\"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 a localização\",\"vkiDx2\":\"Could not prepare the bulk update.\",\"KOavaU\":\"Não foi possível obter os detalhes do endereço\",\"/lq4oO\":\"Could not save date\",\"mHu0az\":\"Couldn't send verification email. Please try again.\",\"QOIm+S\":\"As contagens incluem todas as datas futuras. Cada pessoa recebe uma oferta de vaga para a data em que se inscreveu.\",\"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\":\"Covers every ticket\",\"zg4oSu\":[\"Criar Modelo \",[\"0\"]],\"RKKhnW\":\"Crie um widget personalizado para vender ingressos no seu site.\",\"6sk7PP\":\"Create a fixed number\",\"jqhTmw\":\"Create a list for this date\",\"PhioFp\":\"Create a new check-in list for an active session, or contact the organizer if you think this is a mistake.\",\"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\":\"Create Date\",\"Nc3l/D\":\"Crie descontos, códigos de acesso para ingressos ocultos e ofertas especiais.\",\"PybJS2\":\"Create event\",\"eWEV9G\":\"Criar nova senha\",\"wl2iai\":\"Create Schedule\",\"8AiKIu\":\"Criar ingresso ou produto\",\"/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\":\"Crie seu primeiro evento para começar a vender ingressos e gerenciar participantes.\",\"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\":\"Currently assigned\",\"iTvh6I\":\"Atualmente disponível para compra\",\"A42Dqn\":\"Custom branding\",\"Guo0lU\":\"Data e hora personalizadas\",\"WDMdn8\":\"Custom questions\",\"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\",\"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\":\"Daily\",\"/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\":\"Dance\",\"pvnfJD\":\"Escuro\",\"MaB9wW\":\"Date Cancellation\",\"e6cAxJ\":\"Date cancelled\",\"81jBnC\":\"Date cancelled successfully\",\"a/C/6R\":\"Date created successfully\",\"IW7Q+u\":\"Date deleted\",\"rngCAz\":\"Date deleted successfully\",\"vHbfoQ\":\"Date reactivated\",\"hvah+S\":\"Date reopened for new sales\",\"Ez0YsD\":\"Date updated successfully\",\"Te33mU\":\"Dates are managed per occurrence\",\"91zCxb\":\"Dates with sessions\",\"/ITcnz\":\"day\",\"H7OUPr\":\"Day\",\"JtHrX9\":\"Day of Month\",\"J/Upwb\":\"days\",\"vDVA2I\":\"Days of Month\",\"rDLvlL\":\"Days of Week\",\"r6zgGo\":\"December\",\"jbq7j2\":\"Recusar\",\"ovBPCi\":\"Padrão\",\"JtI4vj\":\"Coleta padrão de informações do participante\",\"ULjv90\":\"Default capacity per date\",\"3R/Tu2\":\"Gestão de taxas padrão\",\"1bZAZA\":\"Modelo padrão será usado\",\"HNlEFZ\":\"excluir\",\"KpnwJK\":[\"Excluir \\\"\",[\"0\"],\"\\\"?\"],\"BlII4o\":[\"Delete \",[\"count\"],\" selected date(s)? Dates with orders will be skipped. This cannot be undone.\"],\"vu7gDm\":\"Eliminar afiliado\",\"KZN4Lc\":\"Excluir tudo\",\"6EkaOO\":\"Delete Date\",\"io0G93\":\"Excluir evento\",\"+jw/c1\":\"Excluir imagem\",\"hdyeZ0\":\"Excluir trabalho\",\"xxjZeP\":\"Excluir localização\",\"sY3tIw\":\"Excluir organizador\",\"UBv8UK\":\"Delete Permanently\",\"dPyJ15\":\"Excluir Modelo\",\"IQTR34\":\"Delete this category? Any products in it will also be deleted. This cannot be undone.\",\"/1wMxk\":\"Delete this product? This cannot be undone.\",\"mxsm1o\":\"Excluir esta pergunta? Isso não pode ser desfeito.\",\"snMaH4\":\"Excluir webhook\",\"LIZZLY\":[\"Deleted \",[\"0\"],\" date(s)\"],\"7w0Wev\":\"Description and venue added\",\"vYgeDk\":\"Desselecionar tudo\",\"NvuEhl\":\"Elementos de Design\",\"H8kMHT\":\"Não recebeu o código?\",\"G8KNgd\":\"Different location\",\"E/QGRL\":\"Disabled\",\"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.\",\"HtaSQp\":\"Exibe quantas vagas restam em cada data no widget de ingressos. Você pode substituir isso para datas individuais.\",\"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\":\"Door staff instructions\",\"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\":\"Duplicate Date\",\"KRmTkx\":\"Duplicar produto\",\"Jd3ymG\":\"Duration must be at least 1 minute.\",\"KIjvtr\":\"Holandês\",\"22xieU\":\"ex. 180 (3 horas)\",\"/zajIE\":\"e.g. Morning Session\",\"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.\",\"Xfsjel\":\"Cada produto\",\"5oD9f/\":\"Earlier\",\"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\":\"Edit Date\",\"m0ZqOT\":\"Editar localização\",\"8oivFT\":\"Editar localização\",\"vRWOrM\":\"Editar detalhes do pedido\",\"fW5sSv\":\"Editar webhook\",\"nP7CdQ\":\"Editar Webhook\",\"MRZxAn\":\"Edited\",\"uBAxNB\":\"Editor\",\"aqxYLv\":\"Educação\",\"iiWXDL\":\"Falhas de elegibilidade\",\"zPiC+q\":\"Listas de Check-In Elegíveis\",\"SiVstt\":\"Email & scheduled messages\",\"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\":\"Embeddable widget\",\"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\":\"End\",\"sGjBEq\":\"Data e hora de término (opcional)\",\"PKXt9R\":\"A data de término deve ser posterior à data de início\",\"ZayGC7\":\"End on a date\",\"48Y16Q\":\"Hora de fim (opcional)\",\"TbaYrr\":[\"Ended \",[\"0\"]],\"CFgwiw\":[\"Ends \",[\"0\"]],\"SqOIQU\":\"Enter a capacity value or choose unlimited.\",\"h37gRz\":\"Enter a label or choose to remove it.\",\"7YZofi\":\"Digite um assunto e corpo para ver a visualização\",\"khyScF\":\"Enter a time to shift by.\",\"SKx/0u\":\"Digite um nome de local ou um endereço\",\"ppwojw\":\"Informe um nome de local ou endereço para eventos presenciais\",\"j+eCIq\":\"Inserir o endereço manualmente\",\"3bR1r4\":\"Introduza o email do afiliado (opcional)\",\"ARkzso\":\"Introduza o nome do afiliado\",\"ej4L8b\":\"Enter capacity\",\"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)\",\"RRlWVA\":\"Pedido inteiro\",\"o21Y+P\":\"entries\",\"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\",\"+v+GW0\":\"Exibição da data do evento\",\"7u9/DO\":\"Evento excluído com sucesso\",\"imgKgl\":\"Descrição do evento\",\"IzR/Fc\":\"Event lifetime\",\"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\",\"mImacG\":\"Página do Evento\",\"Hk9Ki/\":\"Evento restaurado com sucesso\",\"JyD0LH\":\"Configurações do evento\",\"XVLu2v\":\"Título do evento\",\"OfmsI9\":\"Evento muito recente\",\"4SILkp\":\"Event totals\",\"YDVUVl\":\"Tipos de eventos\",\"+HeiVx\":\"Evento atualizado\",\"19j6uh\":\"Desempenho de Eventos\",\"PC3/fk\":\"Eventos Começando nas Próximas 24 Horas\",\"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\":\"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\":\"Failed to cancel date\",\"YUX+f+\":\"Failed to cancel dates\",\"SIHgVQ\":\"Falha ao cancelar mensagem\",\"cEFg3R\":\"Falha ao criar afiliado\",\"dVgNF1\":\"Falha ao criar configuração\",\"fAoRRJ\":\"Failed to create schedule\",\"U66oUa\":\"Falha ao criar modelo\",\"aFk48v\":\"Falha ao excluir configuração\",\"n1CYMH\":\"Failed to delete date\",\"KXv+Qn\":\"Failed to delete date. It may have existing orders.\",\"JJ0uRo\":\"Failed to delete dates\",\"rgoBnv\":\"Falha ao excluir o evento\",\"Zw6LWb\":\"Falha ao excluir trabalho\",\"tq0abZ\":\"Falha ao excluir trabalhos\",\"2mkc3c\":\"Falha ao excluir o organizador\",\"5E23qd\":\"Failed to delete product. Please try again.\",\"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\":\"Failed to reactivate date\",\"7zyx8a\":\"Falha ao remover da lista de espera\",\"A/P7PX\":\"Failed to remove override\",\"ogWc1z\":\"Failed to reopen date\",\"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\":\"Failed to save override\",\"sj/eZA\":\"Failed to save price override\",\"780n8A\":\"Failed to save product settings\",\"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\":\"Family\",\"5LO38w\":\"Fast payouts to your bank\",\"4lgLew\":\"February\",\"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\":\"Film\",\"L1qbUx\":\"Filter attendees\",\"8OvVZZ\":\"Filtrar Participantes\",\"N/H3++\":\"Filter by date\",\"mvrlBO\":\"Filtrar por evento\",\"g+xRXP\":\"Finish setting up Stripe\",\"LHH461\":\"Finish setup\",\"syyeb9\":\"First\",\"Vj6wk9\":\"First 30 days\",\"/bpZYb\":\"First 7 days\",\"ziEnjY\":\"First 90 days\",\"1vBhpG\":\"Primeiro participante\",\"4pwejF\":\"O primeiro nome é obrigatório\",\"rVogsf\":\"Corrija os problemas para publicar\",\"3lkYdQ\":\"Fixed fee\",\"6bBh3/\":\"Taxa Fixa\",\"zWqUyJ\":\"Taxa fixa cobrada por transação\",\"LWL3Bs\":\"A taxa fixa deve ser 0 ou maior\",\"0RI8m4\":\"Flash off\",\"q0923e\":\"Flash on\",\"X+U6/w\":\"Família da fonte\",\"lWxAUo\":\"Comida e bebida\",\"nFm+5u\":\"Texto do Rodapé\",\"a8nooQ\":\"Fourth\",\"wtuVU4\":\"Frequency\",\"xVhQZV\":\"Fri\",\"39y5bn\":\"Friday\",\"f5UbZ0\":\"Full data ownership\",\"cfvx/y\":\"Full event\",\"MY2SVM\":\"Reembolso total\",\"PGQLdy\":\"future\",\"8N/j1s\":\"Future dates only\",\"yRx/6K\":\"Future dates will be copied with capacity reset to zero\",\"T02gNN\":\"Admissão Geral\",\"3ep0Gx\":\"Informações gerais sobre seu organizador\",\"ziAjHi\":\"Gerar\",\"exy8uo\":\"Gerar código\",\"4CETZY\":\"Como chegar\",\"pjkEcB\":\"Get Paid\",\"lGYzP6\":\"Get paid with Stripe\",\"ZDIydz\":\"Começar\",\"u6FPxT\":\"Obter Ingressos\",\"8KDgYV\":\"Prepare seu evento\",\"RkXlPZ\":\"GitHub\",\"sr0UJD\":\"Go Back\",\"oNL5vN\":\"Ir para a página do evento\",\"gHSuV/\":\"Ir para a página inicial\",\"8+Cj55\":\"Go to Schedule\",\"6nDzTl\":\"Boa legibilidade\",\"76gPWk\":\"Got it\",\"CZXzs4\":\"Grego\",\"aGWZUr\":\"Receita bruta\",\"n8IUs7\":\"Receita Bruta\",\"O1wAlQ\":\"Guest\",\"LIYoRQ\":\"Gestão de convidados\",\"NUsTc4\":\"Happening now\",\"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\":\"Hi,\",\"/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\":\"Hide details\",\"FmogyU\":\"Ocultar Opções\",\"uXNYjR\":\"Ocultar datas e horários esgotados\",\"g9RcYX\":\"Ocultar a data\",\"uMwTx7\":\"Ocultar esta categoria?\",\"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\":\"Hours\",\"49Tkiw\":\"Como o desconto é aplicado?\",\"sy9anN\":\"Quanto tempo um cliente tem para concluir a compra após receber uma oferta. Deixe vazio para sem limite de tempo.\",\"n2ilNh\":\"How long does the schedule run?\",\"DMr2XN\":\"How often?\",\"cceMns\":\"How VAT is applied to the platform fees we charge you.\",\"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\",\"CY3yHL\":\"Se marcado, esta categoria ficará oculta do público.\",\"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\":[\"in last \",[\"0\"],\" min\"],\"u7r0G5\":\"In person — set a venue\",\"/LCAwL\":\"Em andamento\",\"F1Xp97\":\"Participantes individuais\",\"85e6zs\":\"Inserir Token Liquid\",\"CTWsuc\":\"Instagram\",\"VopR6B\":\"Instant Stripe payouts\",\"nbfdhU\":\"Integrações\",\"I8eJ6/\":\"Internal notes on the attendee's ticket\",\"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\",\"Dn4OyV\":\"Convidado\",\"IuMGvq\":\"Fatura\",\"a/bUcL\":\"It happens on more than one date\",\"d+Oe9r\":\"It may have been unpublished or removed. Please check the link and try again.\",\"Lj7sBL\":\"Italiano\",\"F5/CBH\":\"item(ns)\",\"BzfzPK\":\"Itens\",\"rjyWPb\":\"January\",\"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\":\"July\",\"zeEQd/\":\"June\",\"MxjCqk\":\"Apenas procurando seus ingressos?\",\"xOTzt5\":\"just now\",\"0RihU9\":\"Just wrapped\",\"lB2hSG\":[\"Manter-me atualizado sobre novidades e eventos de \",[\"0\"]],\"ioFA9i\":\"Keep the profit.\",\"o66QSP\":\"label updates\",\"RtKKbA\":\"Last\",\"DruLRc\":\"Últimos 14 dias\",\"ve9JTU\":\"O sobrenome é obrigatório\",\"h0Q9Iw\":\"Última resposta\",\"gw3Ur5\":\"Última ativação\",\"FIq1Ba\":\"Later\",\"xvnLMP\":\"Latest check-ins\",\"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\":\"Claro\",\"1qY5Ue\":\"Link expirado ou inválido\",\"gggTBm\":\"LinkedIn\",\"nvOPBA\":\"Links permitidos\",\"2BBAbc\":\"List\",\"dF6vP6\":\"Ao vivo\",\"fpMs2Z\":\"AO VIVO\",\"D9zTjx\":\"Eventos ao Vivo\",\"C33p4q\":\"Loaded dates\",\"WdmJIX\":\"Carregando visualização...\",\"IoDI2o\":\"Carregando tokens...\",\"G3Ge9Z\":\"Carregando logs de webhook...\",\"NFxlHW\":\"Carregando webhooks\",\"E0DoRM\":\"Localização excluída\",\"7w8lJU\":\"Localização salva\",\"YsRXDD\":\"Localização atualizada\",\"A/kIva\":\"location updates\",\"iyZPPR\":\"localizações\",\"VppBoU\":\"Localizações\",\"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\",\"PSRm6/\":\"Procurar meus ingressos\",\"yJFu/X\":\"Escritório principal\",\"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\":\"Gerencie a lista de espera do seu evento, veja estatísticas e ofereça ingressos aos participantes.\",\"g2npA5\":\"Oferta manual\",\"hg6l4j\":\"March\",\"pqRBOz\":\"Mark as validated (admin override)\",\"2L3vle\":\"Máx. mensagens / 24h\",\"Qp4HWD\":\"Máx. destinatários / mensagem\",\"3JzsDb\":\"May\",\"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\":\"Minutes\",\"zz/Wd/\":\"Mode\",\"fpMgHS\":\"Mon\",\"hty0d5\":\"Monday\",\"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\":\"month\",\"HajiZl\":\"Mês\",\"+8Nek/\":\"Monthly\",\"1LkxnU\":\"Monthly Pattern\",\"6jefe3\":\"months\",\"f8jrkd\":\"more\",\"JcD7qf\":\"More actions\",\"w36OkR\":\"Eventos mais vistos (Últimos 14 dias)\",\"+Y/na7\":\"Move all dates earlier or later\",\"3DIpY0\":\"Multiple locations\",\"g9cQCP\":\"Multiple ticket types\",\"GfaxEk\":\"Música\",\"oVGCGh\":\"Meus Ingressos\",\"8/brI5\":\"O nome é obrigatório\",\"sFFArG\":\"O nome deve ter menos de 255 caracteres\",\"xxU3NX\":\"Receita Líquida\",\"7I8LlL\":\"New capacity\",\"n1GRql\":\"New label\",\"y0Fcpd\":\"Nova localização\",\"ArHT/C\":\"Novos cadastros\",\"uK7xWf\":\"New time:\",\"veT5Br\":\"Next occurrence\",\"WXtl5X\":[\"Next: \",[\"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\":\"No attendees to show\",\"PKySlW\":\"No attendees yet for this date.\",\"/UC6qk\":\"Nenhum dado de atribuição encontrado\",\"E2vYsO\":\"No capabilities reported by Stripe yet.\",\"amMkpL\":\"Sem capacidade\",\"d2Jf1f\":\"No change\",\"99ntUF\":\"Nenhuma lista de check-in disponível para este evento.\",\"wG+knX\":\"No check-ins yet\",\"+dAKxg\":\"Nenhuma configuração encontrada\",\"LiLk8u\":\"No connections available\",\"eb47T5\":\"Nenhum dado encontrado para os filtros selecionados. Tente ajustar o período ou a moeda.\",\"Zc216S\":\"No date added\",\"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\",\"OtJSnL\":\"Nenhuma data agendada\",\"gEdNe8\":\"No dates scheduled yet\",\"pZNOT9\":\"Sem data de término\",\"dW40Uz\":\"Nenhum evento encontrado\",\"8pQ3NJ\":\"Nenhum evento começando nas próximas 24 horas\",\"8zCZQf\":\"Nenhum evento ainda\",\"Yc5YW6\":\"Sem trabalhos com falha\",\"EpvBAp\":\"Sem fatura\",\"XZkeaI\":\"Nenhum registro encontrado\",\"IcAC6J\":\"Nenhuma fonte correspondente\",\"nrSs2u\":\"Nenhuma mensagem encontrada\",\"Rj99yx\":\"No occurrences available\",\"IFU1IG\":\"No occurrences on this date\",\"OVFwlg\":\"Ainda não há perguntas de pedido\",\"EJ7bVz\":\"Nenhum pedido encontrado\",\"NEmyqy\":\"Nenhum pedido ainda\",\"a77B6w\":\"No orders yet for this date.\",\"wUv5xQ\":\"Sem atividade de organizador nos últimos 14 dias\",\"vLd1tV\":\"No organizer context available.\",\"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\":\"No products configured for this event.\",\"kY7XDn\":\"Nenhum produto tem entradas na lista de espera\",\"8mw4tm\":\"Mensagem de nenhum produto\",\"wYiAtV\":\"Sem cadastros de contas recentes\",\"UW90md\":\"Nenhum destinatário encontrado\",\"QoAi8D\":\"Sem resposta\",\"JeO7SI\":\"Sem resposta\",\"EK/G11\":\"Ainda sem respostas\",\"59OWd3\":\"Nenhuma localização salva\",\"mPdY6W\":\"Sem sugestões\",\"3sRuiW\":\"Nenhum ingresso encontrado\",\"debCrL\":\"Nenhum ingresso à venda\",\"k2C0ZR\":\"No upcoming dates\",\"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\":\"non-edited\",\"Itw24Q\":\"Not checked in\",\"x5+Lcz\":\"Não Registrado\",\"8n10sz\":\"Não Elegível\",\"kLvU3F\":\"Notify attendees and stop sales\",\"t9QlBd\":\"November\",\"kAREMN\":\"Number of dates to create\",\"6u1B3O\":\"Occurrence\",\"mmoE62\":\"Occurrence Cancelled\",\"V9flmL\":\"Occurrence Schedule\",\"Kh3WO8\":\"Occurrence Summary\",\"byXCTu\":\"Occurrences\",\"KATw3p\":\"Occurrences (future only)\",\"85rTR2\":\"Occurrences can be configured after creation\",\"dzQfDY\":\"October\",\"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.\"],\"6Aih4U\":\"Offline\",\"nO3VbP\":[\"À venda \",[\"0\"]],\"oXOSPE\":\"Online\",\"aqmy5k\":\"Online — provide connection details\",\"LuZBbx\":\"Online & in-person\",\"IXuOqt\":\"Online & in-person — see schedule\",\"WjSpu5\":\"Evento online\",\"scPxI/\":[\"Apenas \",[\"capacity\"],\" restantes\"],\"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\",\"wkpaqp\":\"Mostrar apenas a data e hora de início\",\"DMk8F0\":\"Only tickets count toward capacity\",\"M2w1ni\":\"Visível apenas com código promocional\",\"y8Bm7C\":\"Open check-in\",\"RLz7P+\":\"Open occurrence\",\"cDSdPb\":\"Apelido opcional exibido nos seletores, ex.: \\\"Sala de conferências\\\"\",\"HXMJxH\":\"Texto opcional para avisos legais, informações de contato ou notas de agradecimento (apenas uma linha)\",\"L565X2\":\"opções\",\"8m9emP\":\"or add a single date\",\"eBskDE\":\"Ou ative pagamentos offline e desative o Stripe\",\"dSeVIm\":\"order\",\"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\",\"xtQzag\":\"Order details\",\"vrSW9M\":\"O pedido foi cancelado e reembolsado. O proprietário do pedido foi notificado.\",\"rzw+wS\":\"Titulares de pedidos\",\"oI/hGR\":\"ID do Pedido\",\"RQCXz6\":\"Limites de Pedido\",\"SO9AEF\":\"Limites de pedido definidos\",\"vu6Arl\":\"Pedido marcado como pago\",\"sLbJQz\":\"Pedido não encontrado\",\"kvYpYu\":\"Pedido não encontrado\",\"eJ8SvM\":\"Order number, purchase date, purchaser email\",\"FaPYw+\":\"Proprietário do pedido\",\"eB5vce\":\"Proprietários de pedidos com um produto específico\",\"CxLoxM\":\"Proprietários de pedidos com produtos\",\"UkHo4c\":\"Ref. pedido\",\"EZy55F\":\"Pedido reembolsado\",\"6eSHqs\":\"Status dos pedidos\",\"oW5877\":\"Total do Pedido\",\"e7eZuA\":\"Pedido atualizado\",\"1SQRYo\":\"Pedido atualizado com sucesso\",\"3NT0Ck\":\"O pedido foi cancelado\",\"V5khLm\":\"orders\",\"sd5IMt\":\"Pedidos concluídos\",\"5It1cQ\":\"Pedidos exportados\",\"UQ0ACV\":\"Total de pedidos\",\"B/EBQv\":\"Pedidos:\",\"qtGTNu\":\"Contas orgânicas\",\"P/JHA4\":\"Organizador arquivado com sucesso\",\"S3CZ5M\":\"Painel do organizador\",\"GzjTd0\":\"Organizador excluído com sucesso\",\"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\":\"Organizers\",\"/IX/7x\":\"Outro\",\"RsiDDQ\":\"Outras Listas (Ingresso Não Incluído)\",\"aDfajK\":\"Outdoors\",\"qMASRF\":\"Mensagens enviadas\",\"iCOVQO\":\"Override\",\"GpFTEc\":\"Override fees on this organizer\",\"M9ZhMP\":\"Override price\",\"cnVIpl\":\"Override removed\",\"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\":\"Past due\",\"xTPjSy\":\"Eventos passados\",\"/l/ckQ\":\"Cole a URL\",\"URAE3q\":\"Pausado\",\"4fL/V7\":\"Pagar\",\"c2/9VE\":\"Payload\",\"5cxUwd\":\"Data de pagamento\",\"ENEPLY\":\"Método de pagamento\",\"8Lx2X7\":\"Pagamento recebido\",\"fx8BTd\":\"Pagamentos não disponíveis\",\"C+ylwF\":\"Payouts\",\"UbRKMZ\":\"Pending\",\"UkM20g\":\"Revisão pendente\",\"dPYu1F\":\"Por participante\",\"mQV/nJ\":\"per min\",\"+kvxv+\":\"por pedido\",\"VlXNyK\":\"Por pedido\",\"NhuGd7\":\"por produto\",\"hauDFf\":\"Por ingresso\",\"mnF83a\":\"Taxa Percentual\",\"TNLuRD\":\"Percentage fee (%)\",\"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\":\"Permanently remove this date\",\"6kPk3+\":\"Informações pessoais\",\"zmwvG2\":\"Telefone\",\"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\":\"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\":\"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\":\"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\":\"Please select a date and time\",\"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\":\"Position\",\"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\",\"Jm2AC3\":\"Price Tier\",\"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\":\"Product settings cannot be edited for cancelled dates.\",\"2339ej\":\"Product settings saved successfully\",\"ldVIlB\":\"Produto atualizado\",\"CP3D8G\":\"Progress\",\"JoKGiJ\":\"Código promocional\",\"k3wH7i\":\"Uso de códigos promocionais e detalhamento de descontos\",\"tZqL0q\":\"promo codes\",\"oCHiz3\":\"Promo codes\",\"uEhdRh\":\"Apenas Promocional\",\"dLm8V5\":\"E-mails promocionais podem resultar em suspensão da conta\",\"W0ETyY\":\"Informe pelo menos um campo de endereço (local, rua, cidade ou país).\",\"2W/7Gz\":\"Provide the following before Stripe's next review to keep payouts flowing.\",\"EEYbdt\":\"Publicar\",\"JcgJKc\":\"Publicar mesmo assim\",\"evDBV8\":\"Publicar evento\",\"2zEfOd\":\"Publish your event\",\"L7nrC8\":\"Ao publicar, a página do seu evento fica pública e as inscrições são abertas.\",\"dsFmM+\":\"Comprado\",\"JunetL\":\"Purchaser\",\"phmeUH\":\"Purchaser email\",\"ywR4ZL\":\"QR code check-in\",\"oWXNE5\":\"Qtd.\",\"biEyJ4\":\"Question answers\",\"k/bJj0\":\"Perguntas reordenadas\",\"b24kPi\":\"Fila\",\"lTPqpM\":\"Quick Tip\",\"fqDzSu\":\"Taxa\",\"mnUGVC\":\"Limite de taxa excedido. Por favor, tente novamente mais tarde.\",\"t41hVI\":\"Reoferecer vaga\",\"TNclgc\":\"Reactivate this date? It will be reopened for future sales.\",\"RENQ6j\":\"Pronto para publicar?\",\"uqoRbb\":\"Real-time analytics\",\"xzRvs4\":[\"Receber atualizações de produtos do \",[\"0\"],\".\"],\"pLXbi8\":\"Cadastros de contas recentes\",\"M1HGuR\":\"Recent activity\",\"3kJ0gv\":\"Recent Attendees\",\"qhfiwV\":\"Recent check-ins\",\"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\",\"WEYdDv\":\"Recommended\",\"wuhHPE\":\"Recurring\",\"asLqwt\":\"Evento recorrente\",\"s3uzsK\":\"Configurações de evento recorrente\",\"D0tAMe\":\"Recurring events\",\"JjMIKU\":\"Reddit\",\"HiGkFu\":\"Redirecionando para o Stripe...\",\"pnoTN5\":\"Contas de indicação\",\"ACKu03\":\"Atualizar Visualização\",\"vuFYA6\":\"Refund all orders for these dates\",\"4cRUK3\":\"Refund all orders for this date\",\"fKn/k6\":\"Valor do reembolso\",\"qY4rpA\":\"Reembolso falhou\",\"FaK/8G\":[\"Reembolsar pedido \",[\"0\"]],\"MGbi9P\":\"Reembolso pendente\",\"BDSRuX\":[\"Reembolsado: \",[\"0\"]],\"bU4bS1\":\"Reembolsos\",\"rYXfOA\":\"Configurações regionais\",\"5tl0Bp\":\"Perguntas de registro\",\"ZNo5k1\":\"Remaining\",\"Bjh87R\":\"Remove label from all dates\",\"IVZaEo\":\"Remove completamente as datas e horários esgotados da página do evento. Quando desativado, eles permanecem visíveis e são marcados como esgotados.\",\"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\":\"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\":\"Reset to base price\",\"kCn6wb\":\"Redefinindo...\",\"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\":\"results\",\"6gRgw8\":\"Tentar novamente\",\"1BG8ga\":\"Tentar tudo novamente\",\"rDC+T6\":\"Tentar trabalho novamente\",\"CbnrWb\":\"Voltar ao evento\",\"Lf7TCn\":\"Locais reutilizáveis aparecem aqui automaticamente conforme você cria eventos com endereços, e você também pode adicionar os seus.\",\"mdQ0zb\":\"Locais reutilizáveis para seus eventos. Localizações criadas pelo preenchimento automático são salvas aqui automaticamente.\",\"XFOPle\":\"Reuse\",\"1Zehp4\":\"Reuse a Stripe connection from another organizer in this account.\",\"Oo/PLb\":\"Resumo de Receita\",\"CfuueU\":\"Revogar oferta\",\"RIgKv+\":\"Run until a specific date\",\"dFFW9L\":[\"Venda encerrada \",[\"0\"]],\"loCKGB\":[\"Venda termina \",[\"0\"]],\"wlfBad\":\"Período de Venda\",\"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\":\"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\":\"Sales, attendance, and check-in breakdown per occurrence\",\"3VnlS9\":\"Vendas, pedidos e métricas de desempenho para todos os eventos\",\"3Q1AWe\":\"Vendas:\",\"LeuERW\":\"Same as event\",\"B4nE3N\":\"Preço do ingresso de exemplo\",\"8BRPoH\":\"Local Exemplo\",\"PiK6Ld\":\"Sat\",\"+5kO8P\":\"Saturday\",\"zJiuDn\":\"Save fee override\",\"NB8Uxt\":\"Save Schedule\",\"KZrfYJ\":\"Salvar links sociais\",\"9Y3hAT\":\"Salvar Modelo\",\"C8ne4X\":\"Salvar Design do Ingresso\",\"cTI8IK\":\"Save VAT settings\",\"6/TNCd\":\"Salvar Configurações de IVA\",\"4RvD9q\":\"Localização salva\",\"cgw0cL\":\"Localizações salvas\",\"Fbqm/I\":\"Saving an override creates a dedicated configuration for this organizer if it's currently on the system default.\",\"I+FvbD\":\"Escanear\",\"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\":\"Agendar para depois\",\"NAzVVw\":\"Agendar mensagem\",\"Fz09JP\":\"Schedule starts on\",\"4ba0NE\":\"Agendado\",\"qcP/8K\":\"Horário agendado\",\"A1taO8\":\"Search\",\"ftNXma\":\"Pesquisar afiliados...\",\"VMU+zM\":\"Search attendees\",\"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...\",\"YnMfsK\":\"Pesquisar por nome ou endereço...\",\"VT+urE\":\"Pesquisar por nome ou e-mail...\",\"GHdjuo\":\"Pesquisar por nome, e-mail ou conta...\",\"4mBFO7\":\"Search by name, order #, ticket # or email\",\"20ce0U\":\"Pesquisar por ID do pedido, nome do cliente ou e-mail...\",\"4DSz7Z\":\"Pesquisar por assunto, evento ou conta...\",\"nQC7Z9\":\"Search dates...\",\"iRtEpV\":\"Search dates…\",\"JRM7ao\":\"Search for an address\",\"BWF1kC\":\"Pesquisar mensagens...\",\"5WYZKZ\":\"Resultados da pesquisa\",\"IG85fV\":\"Pesquise localizações salvas ou encontre um endereço...\",\"3aD3GF\":\"Seasonal\",\"ku//5b\":\"Second\",\"Mck5ht\":\"Checkout Seguro\",\"s7tXqF\":\"See schedule\",\"JFap6u\":\"See what Stripe still needs\",\"p7xUrt\":\"Selecione uma categoria\",\"hTKQwS\":\"Select a Date & Time\",\"Ps6Xtf\":\"Select a date to see available times\",\"e4L7bF\":\"Selecione uma mensagem para ver seu conteúdo\",\"zPRPMf\":\"Selecionar um nível\",\"BFRSTT\":\"Selecionar Conta\",\"wgNoIs\":\"Select all\",\"mCB6Je\":\"Selecionar tudo\",\"aCEysm\":[\"Select all on \",[\"0\"]],\"a6+167\":\"Selecionar um evento\",\"CFbaPk\":\"Selecione o grupo de participantes\",\"88a49s\":\"Select camera\",\"tVW/yo\":\"Selecionar moeda\",\"SJQM1I\":\"Select date\",\"n9ZhRa\":\"Selecione data e hora de término\",\"gTN6Ws\":\"Selecionar hora de fim\",\"0U6E9W\":\"Selecionar categoria do evento\",\"j9cPeF\":\"Selecionar tipos de eventos\",\"ypTjHL\":\"Select occurrence\",\"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\":\"selected\",\"ylXj1N\":\"Selecionado\",\"uq3CXQ\":\"Sell out your event.\",\"oBXbO4\":\"Selling a physical product? Cap its quantity on the <0>products page instead.\",\"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\":\"Send to all occurrences, or choose a specific one\",\"QEQlnV\":\"Envie sua primeira mensagem\",\"IoAuJG\":\"Enviando...\",\"h69WC6\":\"Enviado\",\"BVu2Hz\":\"Enviado por\",\"ZFa8wv\":\"Sent to attendees when a scheduled date is cancelled\",\"SPdzrs\":\"Enviado aos clientes quando fazem um pedido\",\"LxSN5F\":\"Enviado a cada participante com detalhes do ingresso\",\"hgvbYY\":\"September\",\"5sN96e\":\"Session cancelled\",\"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\":\"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\":\"Configure listas de check-in para diferentes entradas, sessões ou dias.\",\"TaWVGe\":\"Set up payouts\",\"JA//e6\":\"Set up schedule\",\"gzXY7l\":\"Set Up Schedule\",\"0Ls9qe\":\"Set up the tickets you'll sell and their prices\",\"xMO+Ao\":\"Configure a sua organização\",\"5pEFnq\":\"Set up your schedule\",\"h/9JiC\":\"Set Up Your Schedule\",\"zRRuUD\":\"Set up your schedule in the next steps\",\"ETC76A\":\"Set, change, or remove the date's location or online details\",\"C3htzi\":\"Configuração atualizada\",\"Ohn74G\":\"Configuração e 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\":\"Partilhar link de afiliado\",\"hL7sDJ\":\"Compartilhar página do organizador\",\"jy6QDF\":\"Gestão de capacidade compartilhada\",\"jDNHW4\":\"Shift times\",\"tPfIaW\":[\"Shifted times for \",[\"count\"],\" date(s)\"],\"WwlM8F\":\"Mostrar opções avançadas\",\"cMW+gm\":[\"Mostrar todas as plataformas (\",[\"0\"],\" com valores)\"],\"wXi9pZ\":\"Show attendee notes to non-logged-in staff\",\"4LZFir\":\"Mostrar todo o intervalo de datas\",\"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\",\"b33PL9\":\"Mostrar mais plataformas\",\"Eut7p9\":\"Show order details to non-logged-in staff\",\"+RoWKN\":\"Show question answers to non-logged-in staff\",\"jbcx6L\":\"Show remaining capacity on event dates\",\"rXxBOx\":\"Show remaining capacity to buyers\",\"t1LIQW\":[\"Mostrando \",[\"0\"],\" de \",[\"totalRows\"],\" registros\"],\"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\":\"Cadastrado\",\"5C7J+P\":\"Single Event\",\"E//btK\":\"Skip manually edited dates\",\"paESr6\":\"Eslovaco\",\"9wu8nm\":\"Snapchat\",\"kIKb9e\":\"Social\",\"d0rUsW\":\"Links sociais\",\"j/TOB3\":\"Links sociais e site\",\"s9KGXU\":\"Vendido\",\"yp+0jj\":\"sold out\",\"1hupow\":\"Esgotado, lista de espera disponível\",\"iACSrw\":\"Some details are hidden from public access. Log in to view everything.\",\"Dia6iz\":\"Something went wrong while deleting the image. Please try again.\",\"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\":\"Spirituality\",\"oPaRES\":\"Split check-in across days, areas, or ticket types. Share the link with staff — no account needed on their end.\",\"7JFNej\":\"Desporto\",\"/bfV1Y\":\"Staff instructions\",\"tXkhj/\":\"Start\",\"StWUH4\":\"Start check-in\",\"JcQp9p\":\"Data e hora de início\",\"0m/ekX\":\"Data e hora de início\",\"izRfYP\":\"A data de início é obrigatória\",\"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/\":\"Estatísticas\",\"GVUxAX\":\"As estatísticas são baseadas na data de criação da conta\",\"29Hx9U\":\"Stats\",\"5ia+r6\":\"Still needed\",\"wuV0bK\":\"Parar Personificação\",\"s/KaDb\":\"Stripe connected\",\"Bk06QI\":\"Stripe conectado\",\"akZMv8\":[\"Stripe connection copied from \",[\"0\"],\".\"],\"v0aRY1\":\"Stripe didn't return a setup link. Please try again.\",\"aKtF0O\":\"Stripe não conectado\",\"9i0++A\":\"ID de pagamento Stripe\",\"R1lIMV\":\"Stripe will need a few more details soon\",\"FzcCHA\":\"Stripe will walk you through a few quick questions to finish setup.\",\"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\",\"kRWc2g\":\"Configurações de evento recorrente 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\":\"Sun\",\"DBC3t5\":\"Sunday\",\"UaISq3\":\"Sueco\",\"JZTQI0\":\"Trocar organizador\",\"9YHrNC\":\"Padrão do Sistema\",\"lruQkA\":\"Tap this screen to resume scanning\",\"TJUrME\":[\"Targeting attendees across \",[\"0\"],\" selected sessions.\"],\"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\":\"Team collaboration\",\"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\":\"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\":\"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\",\"nm3Iz/\":\"Obrigado por participar!\",\"pYwj0k\":\"Thanks,\",\"k3IitN\":\"That's a wrap\",\"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.\",\"7oksH+\":[\"O desconto é deduzido de cada produto elegível. Ex.: \",[\"currencySymbol\"],\"10 de desconto × 3 ingressos = \",[\"currencySymbol\"],\"30 de desconto.\"],\"sKL8k2\":\"O desconto é deduzido uma única vez do total do pedido.\",\"cDHM1d\":\"O endereço de e-mail foi alterado. O participante receberá um novo ingresso no endereço de e-mail atualizado.\",\"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\":\"The first date this schedule will generate from.\",\"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.\",\"Np4eLs\":[\"The maximum is \",[\"MAX_PREVIEW\"],\" sessions. Please reduce the date range, frequency, or number of sessions per day.\"],\"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\":\"The override is recorded in the order audit log.\",\"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\",\"OVSkIF\":\"A rápida raposa marrom pula sobre o cão preguiçoso.\",\"z0KrIG\":\"O horário agendado é obrigatório\",\"EWErQh\":\"O horário agendado deve ser no futuro\",\"UNd0OU\":[\"The session for \\\"\",[\"title\"],\"\\\" originally scheduled for \",[\"0\"],\" has been rescheduled.\"],\"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\",\"ybBP2H\":\"There are no products available for this date. Please choose another date.\",\"O7g4eR\":\"There are no upcoming dates for this event\",\"062KsE\":\"These details are shown on the attendee's ticket and order summary for this date only.\",\"5Eu+tn\":\"Esses detalhes só serão exibidos se o pedido for concluído com sucesso.\",\"jQjwR+\":\"These details will replace any existing location on the affected dates and show on attendee tickets.\",\"6eaLu/\":\"Esses preços se aplicam a todas as datas da sua programação, e as quantidades dos níveis limitam as vendas totais de todas as datas em conjunto. As datas de venda dos níveis se aplicam globalmente. Você pode substituir os preços de datas individuais na <0>página de Programação de datas.\",\"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\":\"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\":\"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/\":[\"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.\",\"E9BqZw\":\"This date only\",\"RzEvf5\":\"Este evento terminou\",\"kc4bIA\":\"Este evento ainda não tem ingressos ou produtos, então os participantes não poderão se inscrever.\",\"eMaNd0\":\"This event is not available\",\"YClrdK\":\"Este evento ainda não foi publicado\",\"GL6z+k\":\"Este evento está esgotado\",\"pIwDhS\":\"This event's dates and times are set on the occurrence schedule.\",\"ny5rgr\":\"This is a recurring event\",\"tc64Zz\":\"Este é o nome da categoria que será exibido na página do evento.\",\"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.\",\"5DpZrC\":\"Isso limita as vendas totais de todas as datas da sua programação em conjunto — não é um limite por data. Para limitar o público de cada data, defina uma capacidade na <0>página de Programação de datas.\",\"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\":\"This occurrence is at capacity\",\"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\",\"qEGn8I\":\"Este evento recorrente ainda não tem datas, então os participantes não têm nada para reservar.\",\"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.\",\"1LuJNw\":\"Este ingresso não é mais válido\",\"0Ew0uk\":\"Este ingresso acabou de ser escaneado. Aguarde antes de escanear novamente.\",\"FYXq7k\":[\"This will affect \",[\"loadedAffectedCount\"],\" date(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\":\"Throughput\",\"+FjWgX\":\"Thu\",\"kkDQ8m\":\"Thursday\",\"0GSPnc\":\"Design do Ingresso\",\"EZC/Cu\":\"Design do ingresso salvo com sucesso\",\"bbslmb\":\"Designer de ingressos\",\"1BPctx\":\"Ingresso para\",\"HGuXjF\":\"Portadores de ingressos\",\"CMUt3Y\":\"Titulares de ingressos\",\"awHmAT\":\"ID do ingresso\",\"6czJik\":\"Logotipo do Ingresso\",\"t79rDv\":\"Ingresso não encontrado\",\"6tmWch\":\"Ingresso ou produto\",\"1tfWrD\":\"Visualização do ingresso para\",\"KnjoUA\":\"Preço do ingresso\",\"pGZOcL\":\"Ingresso reenviado com sucesso\",\"o02GZM\":\"Ticket sales have ended for this event\",\"8jLPgH\":\"Tipo de 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\":\"Time\",\"fXf2r5\":[\"Times shown in \",[\"timezoneAbbr\"]],\"dMtLDE\":\"to\",\"/jQctM\":\"Para\",\"tiI71C\":\"Para aumentar seus limites, entre em contato conosco em\",\"ecUA8p\":\"Today\",\"W428WC\":\"Alternar colunas\",\"BRMXj0\":\"Tomorrow\",\"UBSG1X\":\"Melhores organizadores (Últimos 14 dias)\",\"3sZ0xx\":\"Total de Contas\",\"SMDzqJ\":\"Total de Participantes\",\"orBECM\":\"Total Coletado\",\"k5CU8c\":\"Total de inscrições\",\"4B7oCp\":\"Taxa total\",\"sMMlTX\":\"Total fees\",\"mlvCEl\":\"Total orders\",\"2AW/k5\":\"Quantidade total em todas as datas\",\"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álise\",\"GUA0Jy\":\"Try a different search term or filter\",\"2P/OWN\":\"Try adjusting your filters to see more dates.\",\"ouM5IM\":\"Tentar outro e-mail\",\"3DZvE7\":\"Experimente Hi.Events Grátis\",\"vq2WxD\":\"Tue\",\"G3myU+\":\"Tuesday\",\"Kz91g/\":\"Turco\",\"GdOhw6\":\"Desativar som\",\"KUOhTy\":\"Ativar som\",\"dBeuY2\":\"Twitch\",\"QytzQr\":\"Digite \\\"excluir\\\" para confirmar\",\"nWRfmt\":\"Tipografia\",\"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\":\"Unable to load attendee details.\",\"GlnD5Y\":\"Unable to load products for this date. Please try again.\",\"17VbmV\":\"Unable to undo check-in\",\"n57zCW\":\"Contas não atribuídas\",\"9uI/rE\":\"Undo\",\"Ef7StM\":\"Desconhecido\",\"ZBAScj\":\"Participante desconhecido\",\"MEIAzV\":\"Sem nome\",\"K6L5Mx\":\"Localização sem nome\",\"7yiFvZ\":\"Não pago\",\"X13xGn\":\"Não confiável\",\"gyXpQN\":\"Upcoming events\",\"Pp1sWX\":\"Atualizar afiliado\",\"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\":\"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\":\"USB scanner listening\",\"dyTklH\":\"USB scanner paused\",\"OHJXlK\":\"Use <0>templates Liquid para personalizar seus emails\",\"/rsy72\":\"Use event default\",\"0k4cdb\":\"Usar detalhes do pedido para todos os participantes. Os nomes e e-mails dos participantes corresponderão às informações do comprador.\",\"bA31T4\":\"Usar os dados do comprador para todos os participantes\",\"PpgtnC\":\"Usar este endereço\",\"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\":\"VAT number\",\"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\":\"VAT registered\",\"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\":\"VAT settings updated\",\"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\":\"VAT: not registered\",\"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\":\"View All\",\"yA/6BX\":\"View all →\",\"6CQ7/B\":\"View all capabilities\",\"YSE15b\":\"View all check-in lists\",\"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\":[\"View details for \",[\"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\":\"Waiting for scan…\",\"u0n+wz\":\"Lista de espera\",\"3RXFtE\":\"Lista de espera ativada\",\"TwnTPy\":\"Oferta da lista de espera expirou\",\"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.\",\"aT/44s\":\"We couldn't copy that Stripe connection. Please try again.\",\"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.\",\"Fjj/5/\":\"We couldn't load the check-in lists. Please try again.\",\"ADsQ23\":\"We couldn't reach Stripe just now. Please try again in a moment.\",\"HJKdzP\":\"Ocorreu um problema ao carregar esta página. Por favor, tente novamente.\",\"jegrvW\":\"We partner with Stripe to send payouts straight to your bank account.\",\"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 é usado e 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.\",\"mfM/HJ\":[\"Notificaremos você por e-mail se uma vaga ficar disponível para \",[\"productDisplayName\"],\" em \",[\"occurrenceDate\"],\".\"],\"iy+M+c\":[\"Notificaremos você por e-mail se uma vaga ficar disponível para \",[\"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\":\"Enviaremos seus ingressos para este e-mail\",\"ZOmUYW\":\"Validaremos seu número de IVA em segundo plano. Se houver algum problema, avisaremos.\",\"LKjHr4\":[\"We've made changes to the schedule for \\\"\",[\"title\"],\"\\\" — \",[\"description\"],\" affecting \",[\"affectedCount\"],\" session(s).\"],\"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\":\"Webhook integrations\",\"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\":\"Wed\",\"VAcXNz\":\"Wednesday\",\"64X6l4\":\"week\",\"4XSc4l\":\"Weekly\",\"IAUiSh\":\"weeks\",\"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\":\"Wellness\",\"ywRaYa\":\"What time?\",\"FaSXqR\":\"Que tipo de evento?\",\"0WyYF4\":\"What unauthenticated staff can see\",\"2+ExvJ\":\"WhatsApp\",\"cxsKvw\":\"Quando um check-in é excluído\",\"RPe6bE\":\"When a date is cancelled on a recurring event\",\"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 entrar em uma lista de espera para serem notificados quando vagas ficarem disponíveis.\",\"OIkHj+\":\"Quando um produto esgota, os clientes podem entrar em uma lista de espera para serem notificados quando vagas ficarem disponíveis. Os clientes entram na lista de espera para uma data específica e as ofertas são feitas por data.\",\"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\":\"Quando os clientes comprarem ingressos, os pedidos aparecerão aqui.\",\"pm9tpn\":\"Quando ativado, os compradores podem copiar seu nome e e-mail para todos os participantes de uma vez. Desative para remover a opção \\\"Todos os participantes\\\"; os compradores ainda poderão copiar para o primeiro participante, e os demais deverão ser inseridos individualmente.\",\"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.\",\"uchB0M\":\"Pré-visualização do widget\",\"uvIqcj\":\"Workshop\",\"EpknJA\":\"Escreva sua mensagem aqui...\",\"nhtR6Y\":\"X (Twitter)\",\"7qI8sJ\":\"year\",\"zkWmBh\":\"Yearly\",\"+BGee5\":\"years\",\"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+\":\"You can override this for individual dates later.\",\"paWwQ0\":\"Você ainda pode oferecer ingressos manualmente, se necessário.\",\"jTDzpA\":\"Você não pode arquivar o último organizador ativo da sua conta.\",\"D8baxD\":\"Você tem ingressos pagos, mas o Stripe ainda não está conectado, então não é possível receber pagamentos.\",\"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/\":\"You need to create at least one occurrence before you can add attendees to this recurring event.\",\"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\":\"You'll be able to set up dates, schedules, and recurrence rules in the next step.\",\"zKAheG\":\"You're changing session times\",\"MNFIxz\":[\"Você vai participar de \",[\"0\"],\"!\"],\"ZlLcht\":[\"Você está entrando na lista de espera para \",[\"occurrenceDate\"],\".\"],\"qGZz0m\":\"Você está na lista de espera!\",\"/5HL6k\":\"Você recebeu uma oferta de vaga!\",\"gbjFFH\":\"You've changed the session time\",\"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\":\"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\":\"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. Por favor, entre novamente na lista de espera para ser notificado quando mais vagas ficarem 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\":\"Are you sure you want to make this event public? This will make the event visible to the public\",\"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\":\"Attendee Notes\",\"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\":\"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 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\":\"Personalize a página do seu evento\",\"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\":\"Dismiss\",\"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\":\"Event URL\",\"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\":\"No attendees have been added to this order.\",\"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\":\"No product associated with this attendee.\",\"Ya1JhR\":\"Nenhum produto disponível nesta categoria.\",\"FTfObB\":\"Nenhum Produto Ainda\",\"+Y976X\":\"Não há códigos promocionais a serem exibidos\",\"MAavyl\":\"No questions answered by this attendee.\",\"SnlQeq\":\"No questions have been asked for this order.\",\"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\":\"Online event\",\"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\":\"Order #\",\"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\":\"Order Notes\",\"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 qualquer informação importante que os participantes precisem 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\":\"San 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\":\"Suite 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\":\"View\",\"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\":\"(none)\",\"xYxQCZ\":[[\"0\"],\" \",[\"1\"]],\"lAOy2r\":[[\"0\"],\" \",[\"1\"],\" já fez check-in\"],\"3beCx0\":[[\"0\"],\" <0>checked in\"],\"S4PqS9\":[[\"0\"],\" webhooks ativos\"],\"6MIiOI\":[[\"0\"],\" restante\"],\"COnw8D\":[\"Logo \",[\"0\"]],\"xG9N0H\":[[\"0\"],\" of \",[\"1\"],\" seats are taken.\"],\"B7pZfX\":[[\"0\"],\" organizadores\"],\"/HkCs4\":[[\"0\"],\" ingressos\"],\"30bTiU\":[[\"activeCount\"],\" enabled\"],\"jTs4am\":[[\"appName\"],\" logo\"],\"gbJOk9\":[[\"attendeeCount\"],\" attendees are registered for this session.\"],\"TjbIUI\":[[\"availableCount\"],\" de \",[\"totalCount\"],\" disponíveis\"],\"PSChHo\":[[\"capacity\"],\" vagas restantes\"],\"lzQ8/M\":[[\"checkedIn\"],\" / \",[\"total\"],\" checked in\"],\"RZ0JX3\":[[\"chipTime\"],\", esgotado\"],\"M4KnFs\":[[\"chipTime\"],\", Esgotado, lista de espera disponível\"],\"SeyN12\":[[\"completedCount\"],\" of \",[\"totalCount\"],\" steps complete\"],\"f2rhaD\":[[\"diffHr\"],\"h ago\"],\"NRSLBe\":[[\"diffMin\"],\"m ago\"],\"iYfwJE\":[[\"diffSec\"],\"s ago\"],\"OJnhhX\":[[\"eventCount\"],\" eventos\"],\"mhZbzw\":[[\"loadedAffectedAttendees\"],\" attendees are registered across the affected sessions.\"],\"RBuxIl\":[[\"productCount\"],\" ticket types configured\"],\"VFLd0I\":[[\"slotCount\"],\" times available\"],\"3IEF7U\":[[\"totalCount\"],\" tipos de ingresso\"],\"0cLzoF\":[[\"totalOccurrences\"],\" dates\"],\"AEGc4t\":[[\"totalOccurrences\"],\" sessions across \",[\"0\"],\" dates (\",[\"1\",\"plural\",{\"one\":[\"#\",\" session\"],\"other\":[\"#\",\" sessions\"]}],\" per day)\"],\"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.\",\"Il5Uid\":\"<0>Esta é a quantidade total disponível para todas as datas da sua programação em conjunto — não é um limite por data. Para limitar o público de cada data, defina uma capacidade na <1>página de Programação de datas.\",\"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 attendee is registered across the affected sessions.\",\"qOyE2U\":\"1 attendee is registered for this session.\",\"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\",\"y2Jh0m\":\"1 time available\",\"cGtUz6\":\"1 semana antes do evento\",\"HR/cvw\":\"Rua Exemplo 123\",\"dgKxZ5\":\"135+ currencies & 40+ payment methods\",\"kMU5aM\":\"Um aviso de cancelamento foi enviado para\",\"o++0qa\":\"a change in duration\",\"WuWSX5\":\"A few quick steps and you're ready to start selling.\",\"RQ5kDd\":\"Uma mensagem a ser exibida quando não houver produtos nesta categoria.\",\"V53XzQ\":\"Um novo código de verificação foi enviado para o seu email\",\"sr2Je0\":\"a shift in start/end times\",\"/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\":[\"Account · \",[\"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\":\"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\":\"Adicione perguntas personalizadas para coletar informações adicionais durante o checkout\",\"Z/dcxc\":\"Add Date\",\"QeupRg\":\"Adicionar datas\",\"Q219NT\":\"Add Dates\",\"yjB5VC\":\"Add dates and times for your recurring event\",\"Z8idyM\":\"Add details\",\"wpirGs\":\"Add event details\",\"VX6WUv\":\"Adicionar localização\",\"GCQlV2\":\"Add multiple times if you run several sessions per day.\",\"7JF9w9\":\"Adicionar pergunta\",\"NLbIb6\":\"Add this attendee anyway (override capacity)\",\"6PNlRV\":\"Adicione este evento ao seu calendário\",\"BGD9Yt\":\"Adicionar ingressos\",\"uIv4Op\":\"Adicione pixels de rastreamento às suas páginas de eventos públicos 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\":\"Affiliate program\",\"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.\",\"3e31kI\":\"After your event is created, you can choose how often it repeats from the dashboard.\",\"z7GAMJ\":\"all\",\"N40H+G\":\"All\",\"7rLTkE\":\"Todos os eventos arquivados\",\"gKq1fa\":\"Todos os participantes\",\"63gRoO\":\"All attendees of the selected sessions\",\"uWxIoH\":\"All attendees of this occurrence\",\"pMLul+\":\"Todas as moedas\",\"sgUdRZ\":\"All dates\",\"e4q4uO\":\"All Dates\",\"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\":\"All matching dates\",\"F1/VgK\":\"All occurrences\",\"OpWjMq\":\"All Occurrences\",\"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.\",\"VZdky1\":\"Permitir que compradores copiem seus dados para todos os participantes\",\"F3mW5G\":\"Permitir que os clientes entrem em uma lista de espera quando este produto estiver esgotado\",\"4CMO/q\":\"Permitir que os clientes entrem em uma lista de espera quando este produto estiver esgotado. Os clientes entram na lista de espera para uma data específica.\",\"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\":\"Already in\",\"/H326L\":\"Já reembolsado\",\"USEpOK\":\"Already use Stripe on another organizer? Reuse that connection.\",\"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.\",\"OPFdAM\":\"Uma descrição opcional desta categoria para exibir na página do evento.\",\"eusccx\":\"Uma mensagem opcional para exibir no produto destacado, por exemplo \\\"Vendendo rápido 🔥\\\" ou \\\"Melhor valor\\\"\",\"5GJuNp\":[\"and \",[\"0\"],\" more...\"],\"QNrkms\":\"Resposta atualizada com sucesso.\",\"+qygei\":\"Answers\",\"GK7Lnt\":\"Answers provided at checkout (e.g. meal choice)\",\"lE8PgT\":\"Any dates you've manually customized will be kept.\",\"jVoYha\":[\"aplicado — \",[\"0\"],\" de desconto no seu pedido\"],\"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\":\"Aprovar mensagem\",\"naCW6Z\":\"April\",\"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\":[\"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\":\"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/\":\"Are you sure you want to delete this date? This action cannot be undone.\",\"RiF/yT\":\"Are you sure you want to delete this image?\",\"b3+Qku\":\"Are you sure you want to delete this tax or fee? It will no longer be applied to new orders.\",\"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\":\"Are you sure you want to permanently delete this date? This cannot be undone.\",\"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?\",\"b7tkGp\":\"Are you sure you want to revoke this invitation?\",\"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\":\"Assign plan\",\"xdiER7\":\"Nível atribuído\",\"F2rX0R\":\"Pelo menos um tipo de evento deve ser selecionado\",\"Z44eZS\":\"At least one product must stay available for this date. To make the date inaccessible, cancel it from the schedule instead.\",\"BCmibk\":\"Tentativas\",\"6PecK3\":\"Presença e taxas de check-in em todos os eventos\",\"K2tp3v\":\"attendee\",\"AJ4rvK\":\"Participante cancelado\",\"qvylEK\":\"Participante criado\",\"Aspq3b\":\"Coleta de dados dos participantes\",\"fpb0rX\":\"Dados do participante copiados do pedido\",\"94aQMU\":\"Informações do participante\",\"KkrBiR\":\"Coleta de informações do participante\",\"sjPjOg\":\"Attendee notes\",\"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\":\"attendees\",\"zLRobu\":\"attendees checked 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/\":\"August\",\"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 automaticamente ingressos para a próxima pessoa quando a capacidade ficar disponível. Se desativado, você pode processar manualmente a lista de espera na página Lista de Espera.\",\"csDS2L\":\"Disponível\",\"Xp+ywP\":\"Disponível assim que o pagamento for concluído\",\"dwDH1K\":[\"Available times on \",[\"dayName\"]],\"clF06r\":\"Disponível para reembolso\",\"NB5+UG\":\"Tokens Disponíveis\",\"L+wGOG\":\"Awaiting\",\"qcw2OD\":\"Awaiting pay\",\"kNmmvE\":\"Awesome Events Lda.\",\"TeSaQO\":\"Voltar para Contas\",\"kYqM1A\":\"Voltar ao evento\",\"s5QRF3\":\"Voltar para mensagens\",\"td/bh+\":\"Voltar aos Relatórios\",\"nsm7BA\":\"Voltar à pesquisa\",\"imjKVx\":\"Bank account connected\",\"D9LTCH\":\"Base Price\",\"hviJef\":\"Based on the global sale period above, not per date\",\"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\":\"Built-in fraud protection\",\"cr7kGH\":\"Bulk Edit\",\"1Fbd6n\":\"Bulk Edit Dates\",\"Eq6Tu9\":\"Bulk update failed.\",\"9N+p+g\":\"Negócios\",\"SWnN1L\":\"Business address\",\"kQekXw\":\"Business name\",\"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 possui uma base legal para este processamento sob 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\":\"By day of month\",\"0MnNgi\":\"By day of week\",\"CetOZE\":\"By ticket type\",\"lFdbRS\":\"Ignorar taxas de aplicação\",\"AjVXBS\":\"Calendar\",\"2VLZwd\":\"Botão de Chamada para Ação\",\"rT2cV+\":\"Camera\",\"7hYa9y\":\"Camera permission was denied. <0>Request permission again, or grant this page camera access in your browser settings.\",\"D02dD9\":\"Campanha\",\"RRPA79\":\"Can't check in\",\"OcVwAd\":[\"Cancel \",[\"count\"],\" date(s)\"],\"H4nE+E\":\"Cancelar todos os produtos e devolvê-los ao pool disponível\",\"Py78q9\":\"Cancel Date\",\"tOXAdc\":\"Cancelar irá cancelar todos os participantes associados a este pedido e devolver os ingressos ao pool disponível.\",\"FPpqc7\":[\"Cancelling \",[\"0\"],\" date(s). This may take a moment to complete.\"],\"01sEfm\":\"Não é possível excluir a configuração padrão do sistema\",\"VsM1HH\":\"Atribuições de capacidade\",\"9bIMVF\":\"Capacity management\",\"H7K8og\":\"Capacity must be 0 or greater\",\"nzao08\":\"capacity updates\",\"4cp9NP\":\"Capacity Used\",\"K7tIrx\":\"Categoria\",\"DRK3Bq\":\"Category deleted successfully\",\"o+XJ9D\":\"Alterar\",\"kJkjoB\":\"Change duration\",\"J0KExZ\":\"Change the attendee limit\",\"ssospy\":\"Change time\",\"CIHJJf\":\"Alterar configurações da lista de espera\",\"B5icLR\":[\"Changed duration for \",[\"count\"],\" date(s)\"],\"Kb+0BT\":\"Charges\",\"2tbLdK\":\"Caridade\",\"BPWGKn\":\"Check in\",\"6uFFoY\":\"Check out\",\"FjAlwK\":[\"Check out this event: \",[\"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 for \",[\"0\"],\" was undone\"],\"9s/wrQ\":\"Check-in history\",\"Wwztk4\":\"Check-In List\",\"9gPPUY\":\"Lista de Check-In Criada!\",\"dwjiJt\":\"Check-in list info\",\"7od0PV\":\"check-in lists\",\"f2vU9t\":\"Listas de Check-in\",\"XprdTn\":\"Check-in navigation\",\"5tV1in\":\"Check-in progress\",\"SHJwyq\":\"Taxa de check-in\",\"qCqdg6\":\"Status do Check-In\",\"cKj6OE\":\"Resumo de Check-in\",\"7B5M35\":\"Check-Ins\",\"VrmydS\":\"Checked in\",\"DM4gBB\":\"Chinês (Tradicional)\",\"p8Jvp4\":\"Choose a configuration\",\"ElShBO\":\"Choose a different action\",\"pHEhf+\":\"Escolha uma tipografia que combine com a sua marca. As fontes são auto-hospedadas via Bunny Fonts.\",\"Zok1Gx\":\"Choose an organizer\",\"pkk46Q\":\"Escolha um organizador\",\"Ag32+c\":\"Choose another date\",\"Crr3pG\":\"Escolher calendário\",\"Z38ZJu\":\"Escolha como a data do evento é exibida no ingresso\",\"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\":\"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\":\"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\":\"complete\",\"bUQMpb\":\"Complete Stripe setup\",\"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\":\"Configuration assigned\",\"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 which products are available for this occurrence and optionally adjust pricing.\",\"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\",\"/K4Vqr\":\"Conecte o Stripe para aceitar pagamentos\",\"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\":\"Os detalhes de conexão são obrigatórios para eventos online\",\"jfC/xh\":\"Contato\",\"LOFgda\":[\"Contato \",[\"0\"]],\"41BQ3k\":\"Email de contacto\",\"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\",\"s30OcA\":\"Controle como as datas e horários são exibidos na página do evento\",\"p2FRHj\":\"Controle como as taxas da plataforma são tratadas para este evento\",\"NqfabH\":\"Control who gets in for this date\",\"fmYxZx\":\"Control who gets in, and when\",\"1JnTgU\":\"Copiado de cima\",\"FxVG/l\":\"Copiado para a área de transferência\",\"PiH3UR\":\"Copiado!\",\"4i7smN\":\"Copy account ID\",\"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 a localização\",\"vkiDx2\":\"Could not prepare the bulk update.\",\"KOavaU\":\"Não foi possível obter os detalhes do endereço\",\"/lq4oO\":\"Could not save date\",\"mHu0az\":\"Couldn't send verification email. Please try again.\",\"QOIm+S\":\"As contagens incluem todas as datas futuras. Cada pessoa recebe uma oferta de vaga para a data em que se inscreveu.\",\"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\":\"Covers every ticket\",\"zg4oSu\":[\"Criar Modelo \",[\"0\"]],\"RKKhnW\":\"Crie um widget personalizado para vender ingressos no seu site.\",\"6sk7PP\":\"Create a fixed number\",\"jqhTmw\":\"Create a list for this date\",\"PhioFp\":\"Create a new check-in list for an active session, or contact the organizer if you think this is a mistake.\",\"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\":\"Create Date\",\"Nc3l/D\":\"Crie descontos, códigos de acesso para ingressos ocultos e ofertas especiais.\",\"PybJS2\":\"Create event\",\"eWEV9G\":\"Criar nova senha\",\"wl2iai\":\"Create Schedule\",\"8AiKIu\":\"Criar ingresso ou produto\",\"/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\":\"Crie seu primeiro evento para começar a vender ingressos e gerenciar participantes.\",\"ZCSSd+\":\"Crie seu próprio evento\",\"qdv10s\":[\"Criando \",[\"0\"],\" datas. Isso pode levar um momento.\"],\"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\":\"Currently assigned\",\"iTvh6I\":\"Atualmente disponível para compra\",\"A42Dqn\":\"Custom branding\",\"Guo0lU\":\"Data e hora personalizadas\",\"WDMdn8\":\"Custom questions\",\"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\",\"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\":\"Daily\",\"/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\":\"Dance\",\"pvnfJD\":\"Escuro\",\"MaB9wW\":\"Date Cancellation\",\"e6cAxJ\":\"Date cancelled\",\"81jBnC\":\"Date cancelled successfully\",\"a/C/6R\":\"Date created successfully\",\"IW7Q+u\":\"Date deleted\",\"rngCAz\":\"Date deleted successfully\",\"vHbfoQ\":\"Date reactivated\",\"hvah+S\":\"Date reopened for new sales\",\"Ez0YsD\":\"Date updated successfully\",\"Te33mU\":\"Dates are managed per occurrence\",\"91zCxb\":\"Dates with sessions\",\"/ITcnz\":\"day\",\"H7OUPr\":\"Day\",\"JtHrX9\":\"Day of Month\",\"J/Upwb\":\"days\",\"vDVA2I\":\"Days of Month\",\"rDLvlL\":\"Days of Week\",\"r6zgGo\":\"December\",\"jbq7j2\":\"Recusar\",\"ovBPCi\":\"Padrão\",\"JtI4vj\":\"Coleta padrão de informações do participante\",\"ULjv90\":\"Default capacity per date\",\"3R/Tu2\":\"Gestão de taxas padrão\",\"1bZAZA\":\"Modelo padrão será usado\",\"HNlEFZ\":\"excluir\",\"KpnwJK\":[\"Excluir \\\"\",[\"0\"],\"\\\"?\"],\"BlII4o\":[\"Delete \",[\"count\"],\" selected date(s)? Dates with orders will be skipped. This cannot be undone.\"],\"vu7gDm\":\"Eliminar afiliado\",\"KZN4Lc\":\"Excluir tudo\",\"6EkaOO\":\"Delete Date\",\"io0G93\":\"Excluir evento\",\"+jw/c1\":\"Excluir imagem\",\"hdyeZ0\":\"Excluir trabalho\",\"xxjZeP\":\"Excluir localização\",\"sY3tIw\":\"Excluir organizador\",\"UBv8UK\":\"Delete Permanently\",\"dPyJ15\":\"Excluir Modelo\",\"IQTR34\":\"Delete this category? Any products in it will also be deleted. This cannot be undone.\",\"/1wMxk\":\"Delete this product? This cannot be undone.\",\"mxsm1o\":\"Excluir esta pergunta? Isso não pode ser desfeito.\",\"snMaH4\":\"Excluir webhook\",\"LIZZLY\":[\"Deleted \",[\"0\"],\" date(s)\"],\"7w0Wev\":\"Description and venue added\",\"vYgeDk\":\"Desselecionar tudo\",\"NvuEhl\":\"Elementos de Design\",\"H8kMHT\":\"Não recebeu o código?\",\"G8KNgd\":\"Different location\",\"E/QGRL\":\"Disabled\",\"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.\",\"HtaSQp\":\"Exibe quantas vagas restam em cada data no widget de ingressos. Você pode substituir isso para datas individuais.\",\"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\":\"Door staff instructions\",\"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\":\"Duplicate Date\",\"KRmTkx\":\"Duplicar produto\",\"Jd3ymG\":\"Duration must be at least 1 minute.\",\"KIjvtr\":\"Holandês\",\"22xieU\":\"ex. 180 (3 horas)\",\"/zajIE\":\"e.g. Morning Session\",\"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.\",\"Xfsjel\":\"Cada produto\",\"5oD9f/\":\"Earlier\",\"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\":\"Edit Date\",\"m0ZqOT\":\"Editar localização\",\"8oivFT\":\"Editar localização\",\"vRWOrM\":\"Editar detalhes do pedido\",\"fW5sSv\":\"Editar webhook\",\"nP7CdQ\":\"Editar Webhook\",\"MRZxAn\":\"Edited\",\"uBAxNB\":\"Editor\",\"aqxYLv\":\"Educação\",\"iiWXDL\":\"Falhas de elegibilidade\",\"zPiC+q\":\"Listas de Check-In Elegíveis\",\"SiVstt\":\"Email & scheduled messages\",\"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\":\"Embeddable widget\",\"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\":\"End\",\"sGjBEq\":\"Data e hora de término (opcional)\",\"PKXt9R\":\"A data de término deve ser posterior à data de início\",\"ZayGC7\":\"End on a date\",\"48Y16Q\":\"Hora de fim (opcional)\",\"TbaYrr\":[\"Ended \",[\"0\"]],\"CFgwiw\":[\"Ends \",[\"0\"]],\"SqOIQU\":\"Enter a capacity value or choose unlimited.\",\"h37gRz\":\"Enter a label or choose to remove it.\",\"7YZofi\":\"Digite um assunto e corpo para ver a visualização\",\"khyScF\":\"Enter a time to shift by.\",\"SKx/0u\":\"Digite um nome de local ou um endereço\",\"ppwojw\":\"Informe um nome de local ou endereço para eventos presenciais\",\"j+eCIq\":\"Inserir o endereço manualmente\",\"3bR1r4\":\"Introduza o email do afiliado (opcional)\",\"ARkzso\":\"Introduza o nome do afiliado\",\"ej4L8b\":\"Enter capacity\",\"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)\",\"RRlWVA\":\"Pedido inteiro\",\"o21Y+P\":\"entries\",\"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\",\"+v+GW0\":\"Exibição da data do evento\",\"7u9/DO\":\"Evento excluído com sucesso\",\"imgKgl\":\"Descrição do evento\",\"IzR/Fc\":\"Event lifetime\",\"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\",\"mImacG\":\"Página do Evento\",\"Hk9Ki/\":\"Evento restaurado com sucesso\",\"JyD0LH\":\"Configurações do evento\",\"XVLu2v\":\"Título do evento\",\"OfmsI9\":\"Evento muito recente\",\"4SILkp\":\"Event totals\",\"YDVUVl\":\"Tipos de eventos\",\"+HeiVx\":\"Evento atualizado\",\"19j6uh\":\"Desempenho de Eventos\",\"PC3/fk\":\"Eventos Começando nas Próximas 24 Horas\",\"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\":\"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\":\"Failed to cancel date\",\"YUX+f+\":\"Failed to cancel dates\",\"SIHgVQ\":\"Falha ao cancelar mensagem\",\"cEFg3R\":\"Falha ao criar afiliado\",\"dVgNF1\":\"Falha ao criar configuração\",\"fAoRRJ\":\"Failed to create schedule\",\"4yLYTb\":\"Falha ao criar a programação. Por favor, tente novamente.\",\"U66oUa\":\"Falha ao criar modelo\",\"aFk48v\":\"Falha ao excluir configuração\",\"n1CYMH\":\"Failed to delete date\",\"KXv+Qn\":\"Failed to delete date. It may have existing orders.\",\"JJ0uRo\":\"Failed to delete dates\",\"rgoBnv\":\"Falha ao excluir o evento\",\"Zw6LWb\":\"Falha ao excluir trabalho\",\"tq0abZ\":\"Falha ao excluir trabalhos\",\"2mkc3c\":\"Falha ao excluir o organizador\",\"5E23qd\":\"Failed to delete product. Please try again.\",\"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\":\"Failed to reactivate date\",\"7zyx8a\":\"Falha ao remover da lista de espera\",\"A/P7PX\":\"Failed to remove override\",\"ogWc1z\":\"Failed to reopen date\",\"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\":\"Failed to save override\",\"sj/eZA\":\"Failed to save price override\",\"780n8A\":\"Failed to save product settings\",\"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\":\"Family\",\"5LO38w\":\"Fast payouts to your bank\",\"4lgLew\":\"February\",\"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\":\"Film\",\"L1qbUx\":\"Filter attendees\",\"8OvVZZ\":\"Filtrar Participantes\",\"N/H3++\":\"Filter by date\",\"mvrlBO\":\"Filtrar por evento\",\"g+xRXP\":\"Finish setting up Stripe\",\"LHH461\":\"Finish setup\",\"syyeb9\":\"First\",\"Vj6wk9\":\"First 30 days\",\"/bpZYb\":\"First 7 days\",\"ziEnjY\":\"First 90 days\",\"1vBhpG\":\"Primeiro participante\",\"4pwejF\":\"O primeiro nome é obrigatório\",\"rVogsf\":\"Corrija os problemas para publicar\",\"3lkYdQ\":\"Fixed fee\",\"6bBh3/\":\"Taxa Fixa\",\"zWqUyJ\":\"Taxa fixa cobrada por transação\",\"LWL3Bs\":\"A taxa fixa deve ser 0 ou maior\",\"0RI8m4\":\"Flash off\",\"q0923e\":\"Flash on\",\"X+U6/w\":\"Família da fonte\",\"lWxAUo\":\"Comida e bebida\",\"nFm+5u\":\"Texto do Rodapé\",\"a8nooQ\":\"Fourth\",\"wtuVU4\":\"Frequency\",\"xVhQZV\":\"Fri\",\"39y5bn\":\"Friday\",\"f5UbZ0\":\"Full data ownership\",\"cfvx/y\":\"Full event\",\"MY2SVM\":\"Reembolso total\",\"PGQLdy\":\"future\",\"8N/j1s\":\"Future dates only\",\"yRx/6K\":\"Future dates will be copied with capacity reset to zero\",\"T02gNN\":\"Admissão Geral\",\"3ep0Gx\":\"Informações gerais sobre seu organizador\",\"ziAjHi\":\"Gerar\",\"exy8uo\":\"Gerar código\",\"4CETZY\":\"Como chegar\",\"pjkEcB\":\"Get Paid\",\"lGYzP6\":\"Get paid with Stripe\",\"ZDIydz\":\"Começar\",\"u6FPxT\":\"Obter Ingressos\",\"8KDgYV\":\"Prepare seu evento\",\"RkXlPZ\":\"GitHub\",\"sr0UJD\":\"Go Back\",\"oNL5vN\":\"Ir para a página do evento\",\"gHSuV/\":\"Ir para a página inicial\",\"8+Cj55\":\"Go to Schedule\",\"6nDzTl\":\"Boa legibilidade\",\"76gPWk\":\"Got it\",\"CZXzs4\":\"Grego\",\"aGWZUr\":\"Receita bruta\",\"n8IUs7\":\"Receita Bruta\",\"O1wAlQ\":\"Guest\",\"LIYoRQ\":\"Gestão de convidados\",\"NUsTc4\":\"Happening now\",\"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\":\"Hi,\",\"/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\":\"Hide details\",\"FmogyU\":\"Ocultar Opções\",\"uXNYjR\":\"Ocultar datas e horários esgotados\",\"g9RcYX\":\"Ocultar a data\",\"uMwTx7\":\"Ocultar esta categoria?\",\"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\":\"Hours\",\"49Tkiw\":\"Como o desconto é aplicado?\",\"sy9anN\":\"Quanto tempo um cliente tem para concluir a compra após receber uma oferta. Deixe vazio para sem limite de tempo.\",\"n2ilNh\":\"How long does the schedule run?\",\"DMr2XN\":\"How often?\",\"cceMns\":\"How VAT is applied to the platform fees we charge you.\",\"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\",\"CY3yHL\":\"Se marcado, esta categoria ficará oculta do público.\",\"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\":[\"in last \",[\"0\"],\" min\"],\"u7r0G5\":\"In person — set a venue\",\"/LCAwL\":\"Em andamento\",\"F1Xp97\":\"Participantes individuais\",\"85e6zs\":\"Inserir Token Liquid\",\"CTWsuc\":\"Instagram\",\"VopR6B\":\"Instant Stripe payouts\",\"nbfdhU\":\"Integrações\",\"I8eJ6/\":\"Internal notes on the attendee's ticket\",\"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\",\"Dn4OyV\":\"Convidado\",\"IuMGvq\":\"Fatura\",\"a/bUcL\":\"It happens on more than one date\",\"d+Oe9r\":\"It may have been unpublished or removed. Please check the link and try again.\",\"Lj7sBL\":\"Italiano\",\"F5/CBH\":\"item(ns)\",\"BzfzPK\":\"Itens\",\"rjyWPb\":\"January\",\"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\":\"July\",\"zeEQd/\":\"June\",\"MxjCqk\":\"Apenas procurando seus ingressos?\",\"xOTzt5\":\"just now\",\"0RihU9\":\"Just wrapped\",\"lB2hSG\":[\"Manter-me atualizado sobre novidades e eventos de \",[\"0\"]],\"ioFA9i\":\"Keep the profit.\",\"o66QSP\":\"label updates\",\"RtKKbA\":\"Last\",\"DruLRc\":\"Últimos 14 dias\",\"ve9JTU\":\"O sobrenome é obrigatório\",\"h0Q9Iw\":\"Última resposta\",\"gw3Ur5\":\"Última ativação\",\"FIq1Ba\":\"Later\",\"xvnLMP\":\"Latest check-ins\",\"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\":\"Claro\",\"1qY5Ue\":\"Link expirado ou inválido\",\"gggTBm\":\"LinkedIn\",\"nvOPBA\":\"Links permitidos\",\"2BBAbc\":\"List\",\"dF6vP6\":\"Ao vivo\",\"fpMs2Z\":\"AO VIVO\",\"D9zTjx\":\"Eventos ao Vivo\",\"C33p4q\":\"Loaded dates\",\"WdmJIX\":\"Carregando visualização...\",\"IoDI2o\":\"Carregando tokens...\",\"G3Ge9Z\":\"Carregando logs de webhook...\",\"NFxlHW\":\"Carregando webhooks\",\"E0DoRM\":\"Localização excluída\",\"7w8lJU\":\"Localização salva\",\"YsRXDD\":\"Localização atualizada\",\"A/kIva\":\"location updates\",\"iyZPPR\":\"localizações\",\"VppBoU\":\"Localizações\",\"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\",\"PSRm6/\":\"Procurar meus ingressos\",\"yJFu/X\":\"Escritório principal\",\"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\":\"Gerencie a lista de espera do seu evento, veja estatísticas e ofereça ingressos aos participantes.\",\"g2npA5\":\"Oferta manual\",\"hg6l4j\":\"March\",\"pqRBOz\":\"Mark as validated (admin override)\",\"2L3vle\":\"Máx. mensagens / 24h\",\"Qp4HWD\":\"Máx. destinatários / mensagem\",\"3JzsDb\":\"May\",\"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\":\"Minutes\",\"zz/Wd/\":\"Mode\",\"fpMgHS\":\"Mon\",\"hty0d5\":\"Monday\",\"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\":\"month\",\"HajiZl\":\"Mês\",\"+8Nek/\":\"Monthly\",\"1LkxnU\":\"Monthly Pattern\",\"6jefe3\":\"months\",\"f8jrkd\":\"more\",\"JcD7qf\":\"More actions\",\"w36OkR\":\"Eventos mais vistos (Últimos 14 dias)\",\"+Y/na7\":\"Move all dates earlier or later\",\"3DIpY0\":\"Multiple locations\",\"g9cQCP\":\"Multiple ticket types\",\"GfaxEk\":\"Música\",\"oVGCGh\":\"Meus Ingressos\",\"8/brI5\":\"O nome é obrigatório\",\"sFFArG\":\"O nome deve ter menos de 255 caracteres\",\"xxU3NX\":\"Receita Líquida\",\"7I8LlL\":\"New capacity\",\"n1GRql\":\"New label\",\"y0Fcpd\":\"Nova localização\",\"ArHT/C\":\"Novos cadastros\",\"uK7xWf\":\"New time:\",\"veT5Br\":\"Next occurrence\",\"WXtl5X\":[\"Next: \",[\"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\":\"No attendees to show\",\"PKySlW\":\"No attendees yet for this date.\",\"/UC6qk\":\"Nenhum dado de atribuição encontrado\",\"E2vYsO\":\"No capabilities reported by Stripe yet.\",\"amMkpL\":\"Sem capacidade\",\"d2Jf1f\":\"No change\",\"99ntUF\":\"Nenhuma lista de check-in disponível para este evento.\",\"wG+knX\":\"No check-ins yet\",\"+dAKxg\":\"Nenhuma configuração encontrada\",\"LiLk8u\":\"No connections available\",\"eb47T5\":\"Nenhum dado encontrado para os filtros selecionados. Tente ajustar o período ou a moeda.\",\"Zc216S\":\"No date added\",\"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\",\"OtJSnL\":\"Nenhuma data agendada\",\"gEdNe8\":\"No dates scheduled yet\",\"pZNOT9\":\"Sem data de término\",\"dW40Uz\":\"Nenhum evento encontrado\",\"8pQ3NJ\":\"Nenhum evento começando nas próximas 24 horas\",\"8zCZQf\":\"Nenhum evento ainda\",\"Yc5YW6\":\"Sem trabalhos com falha\",\"EpvBAp\":\"Sem fatura\",\"XZkeaI\":\"Nenhum registro encontrado\",\"IcAC6J\":\"Nenhuma fonte correspondente\",\"nrSs2u\":\"Nenhuma mensagem encontrada\",\"Rj99yx\":\"No occurrences available\",\"IFU1IG\":\"No occurrences on this date\",\"OVFwlg\":\"Ainda não há perguntas de pedido\",\"EJ7bVz\":\"Nenhum pedido encontrado\",\"NEmyqy\":\"Nenhum pedido ainda\",\"a77B6w\":\"No orders yet for this date.\",\"wUv5xQ\":\"Sem atividade de organizador nos últimos 14 dias\",\"vLd1tV\":\"No organizer context available.\",\"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\":\"No products configured for this event.\",\"kY7XDn\":\"Nenhum produto tem entradas na lista de espera\",\"8mw4tm\":\"Mensagem de nenhum produto\",\"wYiAtV\":\"Sem cadastros de contas recentes\",\"UW90md\":\"Nenhum destinatário encontrado\",\"QoAi8D\":\"Sem resposta\",\"JeO7SI\":\"Sem resposta\",\"EK/G11\":\"Ainda sem respostas\",\"59OWd3\":\"Nenhuma localização salva\",\"mPdY6W\":\"Sem sugestões\",\"3sRuiW\":\"Nenhum ingresso encontrado\",\"debCrL\":\"Nenhum ingresso à venda\",\"k2C0ZR\":\"No upcoming dates\",\"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\":\"non-edited\",\"Itw24Q\":\"Not checked in\",\"x5+Lcz\":\"Não Registrado\",\"8n10sz\":\"Não Elegível\",\"kLvU3F\":\"Notify attendees and stop sales\",\"t9QlBd\":\"November\",\"kAREMN\":\"Number of dates to create\",\"6u1B3O\":\"Occurrence\",\"mmoE62\":\"Occurrence Cancelled\",\"V9flmL\":\"Occurrence Schedule\",\"Kh3WO8\":\"Occurrence Summary\",\"byXCTu\":\"Occurrences\",\"KATw3p\":\"Occurrences (future only)\",\"85rTR2\":\"Occurrences can be configured after creation\",\"dzQfDY\":\"October\",\"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.\"],\"6Aih4U\":\"Offline\",\"nO3VbP\":[\"À venda \",[\"0\"]],\"oXOSPE\":\"Online\",\"aqmy5k\":\"Online — provide connection details\",\"LuZBbx\":\"Online & in-person\",\"IXuOqt\":\"Online & in-person — see schedule\",\"WjSpu5\":\"Evento online\",\"scPxI/\":[\"Apenas \",[\"capacity\"],\" restantes\"],\"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\",\"wkpaqp\":\"Mostrar apenas a data e hora de início\",\"DMk8F0\":\"Only tickets count toward capacity\",\"M2w1ni\":\"Visível apenas com código promocional\",\"y8Bm7C\":\"Open check-in\",\"RLz7P+\":\"Open occurrence\",\"cDSdPb\":\"Apelido opcional exibido nos seletores, ex.: \\\"Sala de conferências\\\"\",\"HXMJxH\":\"Texto opcional para avisos legais, informações de contato ou notas de agradecimento (apenas uma linha)\",\"L565X2\":\"opções\",\"8m9emP\":\"or add a single date\",\"eBskDE\":\"Ou ative pagamentos offline e desative o Stripe\",\"dSeVIm\":\"order\",\"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\",\"xtQzag\":\"Order details\",\"vrSW9M\":\"O pedido foi cancelado e reembolsado. O proprietário do pedido foi notificado.\",\"rzw+wS\":\"Titulares de pedidos\",\"oI/hGR\":\"ID do Pedido\",\"RQCXz6\":\"Limites de Pedido\",\"SO9AEF\":\"Limites de pedido definidos\",\"vu6Arl\":\"Pedido marcado como pago\",\"sLbJQz\":\"Pedido não encontrado\",\"kvYpYu\":\"Pedido não encontrado\",\"eJ8SvM\":\"Order number, purchase date, purchaser email\",\"FaPYw+\":\"Proprietário do pedido\",\"eB5vce\":\"Proprietários de pedidos com um produto específico\",\"CxLoxM\":\"Proprietários de pedidos com produtos\",\"UkHo4c\":\"Ref. pedido\",\"EZy55F\":\"Pedido reembolsado\",\"6eSHqs\":\"Status dos pedidos\",\"oW5877\":\"Total do Pedido\",\"e7eZuA\":\"Pedido atualizado\",\"1SQRYo\":\"Pedido atualizado com sucesso\",\"3NT0Ck\":\"O pedido foi cancelado\",\"V5khLm\":\"orders\",\"sd5IMt\":\"Pedidos concluídos\",\"5It1cQ\":\"Pedidos exportados\",\"UQ0ACV\":\"Total de pedidos\",\"B/EBQv\":\"Pedidos:\",\"qtGTNu\":\"Contas orgânicas\",\"P/JHA4\":\"Organizador arquivado com sucesso\",\"S3CZ5M\":\"Painel do organizador\",\"GzjTd0\":\"Organizador excluído com sucesso\",\"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\":\"Organizers\",\"/IX/7x\":\"Outro\",\"RsiDDQ\":\"Outras Listas (Ingresso Não Incluído)\",\"aDfajK\":\"Outdoors\",\"qMASRF\":\"Mensagens enviadas\",\"iCOVQO\":\"Override\",\"GpFTEc\":\"Override fees on this organizer\",\"M9ZhMP\":\"Override price\",\"cnVIpl\":\"Override removed\",\"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\":\"Past due\",\"xTPjSy\":\"Eventos passados\",\"/l/ckQ\":\"Cole a URL\",\"URAE3q\":\"Pausado\",\"4fL/V7\":\"Pagar\",\"c2/9VE\":\"Payload\",\"5cxUwd\":\"Data de pagamento\",\"ENEPLY\":\"Método de pagamento\",\"8Lx2X7\":\"Pagamento recebido\",\"fx8BTd\":\"Pagamentos não disponíveis\",\"C+ylwF\":\"Payouts\",\"UbRKMZ\":\"Pending\",\"UkM20g\":\"Revisão pendente\",\"dPYu1F\":\"Por participante\",\"mQV/nJ\":\"per min\",\"+kvxv+\":\"por pedido\",\"VlXNyK\":\"Por pedido\",\"NhuGd7\":\"por produto\",\"hauDFf\":\"Por ingresso\",\"mnF83a\":\"Taxa Percentual\",\"TNLuRD\":\"Percentage fee (%)\",\"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\":\"Permanently remove this date\",\"6kPk3+\":\"Informações pessoais\",\"zmwvG2\":\"Telefone\",\"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\":\"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\":\"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\":\"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\":\"Please select a date and time\",\"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\":\"Position\",\"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\",\"Jm2AC3\":\"Price Tier\",\"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\":\"Product settings cannot be edited for cancelled dates.\",\"2339ej\":\"Product settings saved successfully\",\"ldVIlB\":\"Produto atualizado\",\"CP3D8G\":\"Progress\",\"JoKGiJ\":\"Código promocional\",\"k3wH7i\":\"Uso de códigos promocionais e detalhamento de descontos\",\"tZqL0q\":\"promo codes\",\"oCHiz3\":\"Promo codes\",\"uEhdRh\":\"Apenas Promocional\",\"dLm8V5\":\"E-mails promocionais podem resultar em suspensão da conta\",\"W0ETyY\":\"Informe pelo menos um campo de endereço (local, rua, cidade ou país).\",\"2W/7Gz\":\"Provide the following before Stripe's next review to keep payouts flowing.\",\"EEYbdt\":\"Publicar\",\"JcgJKc\":\"Publicar mesmo assim\",\"evDBV8\":\"Publicar evento\",\"2zEfOd\":\"Publish your event\",\"L7nrC8\":\"Ao publicar, a página do seu evento fica pública e as inscrições são abertas.\",\"dsFmM+\":\"Comprado\",\"JunetL\":\"Purchaser\",\"phmeUH\":\"Purchaser email\",\"ywR4ZL\":\"QR code check-in\",\"oWXNE5\":\"Qtd.\",\"biEyJ4\":\"Question answers\",\"k/bJj0\":\"Perguntas reordenadas\",\"b24kPi\":\"Fila\",\"lTPqpM\":\"Quick Tip\",\"fqDzSu\":\"Taxa\",\"mnUGVC\":\"Limite de taxa excedido. Por favor, tente novamente mais tarde.\",\"t41hVI\":\"Reoferecer vaga\",\"TNclgc\":\"Reactivate this date? It will be reopened for future sales.\",\"RENQ6j\":\"Pronto para publicar?\",\"uqoRbb\":\"Real-time analytics\",\"xzRvs4\":[\"Receber atualizações de produtos do \",[\"0\"],\".\"],\"pLXbi8\":\"Cadastros de contas recentes\",\"M1HGuR\":\"Recent activity\",\"3kJ0gv\":\"Recent Attendees\",\"qhfiwV\":\"Recent check-ins\",\"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\",\"WEYdDv\":\"Recommended\",\"wuhHPE\":\"Recurring\",\"asLqwt\":\"Evento recorrente\",\"s3uzsK\":\"Configurações de evento recorrente\",\"D0tAMe\":\"Recurring events\",\"JjMIKU\":\"Reddit\",\"HiGkFu\":\"Redirecionando para o Stripe...\",\"pnoTN5\":\"Contas de indicação\",\"ACKu03\":\"Atualizar Visualização\",\"vuFYA6\":\"Refund all orders for these dates\",\"4cRUK3\":\"Refund all orders for this date\",\"fKn/k6\":\"Valor do reembolso\",\"qY4rpA\":\"Reembolso falhou\",\"FaK/8G\":[\"Reembolsar pedido \",[\"0\"]],\"MGbi9P\":\"Reembolso pendente\",\"BDSRuX\":[\"Reembolsado: \",[\"0\"]],\"bU4bS1\":\"Reembolsos\",\"rYXfOA\":\"Configurações regionais\",\"5tl0Bp\":\"Perguntas de registro\",\"ZNo5k1\":\"Remaining\",\"Bjh87R\":\"Remove label from all dates\",\"IVZaEo\":\"Remove completamente as datas e horários esgotados da página do evento. Quando desativado, eles permanecem visíveis e são marcados como esgotados.\",\"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\":\"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\":\"Reset to base price\",\"kCn6wb\":\"Redefinindo...\",\"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\":\"results\",\"6gRgw8\":\"Tentar novamente\",\"1BG8ga\":\"Tentar tudo novamente\",\"rDC+T6\":\"Tentar trabalho novamente\",\"CbnrWb\":\"Voltar ao evento\",\"Lf7TCn\":\"Locais reutilizáveis aparecem aqui automaticamente conforme você cria eventos com endereços, e você também pode adicionar os seus.\",\"mdQ0zb\":\"Locais reutilizáveis para seus eventos. Localizações criadas pelo preenchimento automático são salvas aqui automaticamente.\",\"XFOPle\":\"Reuse\",\"1Zehp4\":\"Reuse a Stripe connection from another organizer in this account.\",\"Oo/PLb\":\"Resumo de Receita\",\"CfuueU\":\"Revogar oferta\",\"RIgKv+\":\"Run until a specific date\",\"dFFW9L\":[\"Venda encerrada \",[\"0\"]],\"loCKGB\":[\"Venda termina \",[\"0\"]],\"wlfBad\":\"Período de Venda\",\"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\":\"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\":\"Sales, attendance, and check-in breakdown per occurrence\",\"3VnlS9\":\"Vendas, pedidos e métricas de desempenho para todos os eventos\",\"3Q1AWe\":\"Vendas:\",\"LeuERW\":\"Same as event\",\"B4nE3N\":\"Preço do ingresso de exemplo\",\"8BRPoH\":\"Local Exemplo\",\"PiK6Ld\":\"Sat\",\"+5kO8P\":\"Saturday\",\"zJiuDn\":\"Save fee override\",\"NB8Uxt\":\"Save Schedule\",\"KZrfYJ\":\"Salvar links sociais\",\"9Y3hAT\":\"Salvar Modelo\",\"C8ne4X\":\"Salvar Design do Ingresso\",\"cTI8IK\":\"Save VAT settings\",\"6/TNCd\":\"Salvar Configurações de IVA\",\"4RvD9q\":\"Localização salva\",\"cgw0cL\":\"Localizações salvas\",\"Fbqm/I\":\"Saving an override creates a dedicated configuration for this organizer if it's currently on the system default.\",\"I+FvbD\":\"Escanear\",\"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\":\"Agendar para depois\",\"NAzVVw\":\"Agendar mensagem\",\"Fz09JP\":\"Schedule starts on\",\"4ba0NE\":\"Agendado\",\"qcP/8K\":\"Horário agendado\",\"A1taO8\":\"Search\",\"ftNXma\":\"Pesquisar afiliados...\",\"VMU+zM\":\"Search attendees\",\"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...\",\"YnMfsK\":\"Pesquisar por nome ou endereço...\",\"VT+urE\":\"Pesquisar por nome ou e-mail...\",\"GHdjuo\":\"Pesquisar por nome, e-mail ou conta...\",\"4mBFO7\":\"Search by name, order #, ticket # or email\",\"20ce0U\":\"Pesquisar por ID do pedido, nome do cliente ou e-mail...\",\"4DSz7Z\":\"Pesquisar por assunto, evento ou conta...\",\"nQC7Z9\":\"Search dates...\",\"iRtEpV\":\"Search dates…\",\"JRM7ao\":\"Search for an address\",\"BWF1kC\":\"Pesquisar mensagens...\",\"5WYZKZ\":\"Resultados da pesquisa\",\"IG85fV\":\"Pesquise localizações salvas ou encontre um endereço...\",\"3aD3GF\":\"Seasonal\",\"ku//5b\":\"Second\",\"Mck5ht\":\"Checkout Seguro\",\"s7tXqF\":\"See schedule\",\"JFap6u\":\"See what Stripe still needs\",\"p7xUrt\":\"Selecione uma categoria\",\"hTKQwS\":\"Select a Date & Time\",\"Ps6Xtf\":\"Select a date to see available times\",\"e4L7bF\":\"Selecione uma mensagem para ver seu conteúdo\",\"zPRPMf\":\"Selecionar um nível\",\"BFRSTT\":\"Selecionar Conta\",\"wgNoIs\":\"Select all\",\"mCB6Je\":\"Selecionar tudo\",\"aCEysm\":[\"Select all on \",[\"0\"]],\"a6+167\":\"Selecionar um evento\",\"CFbaPk\":\"Selecione o grupo de participantes\",\"88a49s\":\"Select camera\",\"tVW/yo\":\"Selecionar moeda\",\"SJQM1I\":\"Select date\",\"n9ZhRa\":\"Selecione data e hora de término\",\"gTN6Ws\":\"Selecionar hora de fim\",\"0U6E9W\":\"Selecionar categoria do evento\",\"j9cPeF\":\"Selecionar tipos de eventos\",\"ypTjHL\":\"Select occurrence\",\"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\":\"selected\",\"ylXj1N\":\"Selecionado\",\"uq3CXQ\":\"Sell out your event.\",\"oBXbO4\":\"Selling a physical product? Cap its quantity on the <0>products page instead.\",\"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\":\"Send to all occurrences, or choose a specific one\",\"QEQlnV\":\"Envie sua primeira mensagem\",\"IoAuJG\":\"Enviando...\",\"h69WC6\":\"Enviado\",\"BVu2Hz\":\"Enviado por\",\"ZFa8wv\":\"Sent to attendees when a scheduled date is cancelled\",\"SPdzrs\":\"Enviado aos clientes quando fazem um pedido\",\"LxSN5F\":\"Enviado a cada participante com detalhes do ingresso\",\"hgvbYY\":\"September\",\"5sN96e\":\"Session cancelled\",\"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\":\"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\":\"Configure listas de check-in para diferentes entradas, sessões ou dias.\",\"TaWVGe\":\"Set up payouts\",\"JA//e6\":\"Set up schedule\",\"gzXY7l\":\"Set Up Schedule\",\"0Ls9qe\":\"Set up the tickets you'll sell and their prices\",\"xMO+Ao\":\"Configure a sua organização\",\"5pEFnq\":\"Set up your schedule\",\"h/9JiC\":\"Set Up Your Schedule\",\"zRRuUD\":\"Set up your schedule in the next steps\",\"ETC76A\":\"Set, change, or remove the date's location or online details\",\"C3htzi\":\"Configuração atualizada\",\"Ohn74G\":\"Configuração e 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\":\"Partilhar link de afiliado\",\"hL7sDJ\":\"Compartilhar página do organizador\",\"jy6QDF\":\"Gestão de capacidade compartilhada\",\"jDNHW4\":\"Shift times\",\"tPfIaW\":[\"Shifted times for \",[\"count\"],\" date(s)\"],\"WwlM8F\":\"Mostrar opções avançadas\",\"cMW+gm\":[\"Mostrar todas as plataformas (\",[\"0\"],\" com valores)\"],\"wXi9pZ\":\"Show attendee notes to non-logged-in staff\",\"4LZFir\":\"Mostrar todo o intervalo de datas\",\"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\",\"b33PL9\":\"Mostrar mais plataformas\",\"Eut7p9\":\"Show order details to non-logged-in staff\",\"+RoWKN\":\"Show question answers to non-logged-in staff\",\"jbcx6L\":\"Show remaining capacity on event dates\",\"rXxBOx\":\"Show remaining capacity to buyers\",\"t1LIQW\":[\"Mostrando \",[\"0\"],\" de \",[\"totalRows\"],\" registros\"],\"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\":\"Cadastrado\",\"5C7J+P\":\"Single Event\",\"E//btK\":\"Skip manually edited dates\",\"paESr6\":\"Eslovaco\",\"9wu8nm\":\"Snapchat\",\"kIKb9e\":\"Social\",\"d0rUsW\":\"Links sociais\",\"j/TOB3\":\"Links sociais e site\",\"s9KGXU\":\"Vendido\",\"yp+0jj\":\"sold out\",\"1hupow\":\"Esgotado, lista de espera disponível\",\"iACSrw\":\"Some details are hidden from public access. Log in to view everything.\",\"Dia6iz\":\"Something went wrong while deleting the image. Please try again.\",\"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\":\"Spirituality\",\"oPaRES\":\"Split check-in across days, areas, or ticket types. Share the link with staff — no account needed on their end.\",\"7JFNej\":\"Desporto\",\"/bfV1Y\":\"Staff instructions\",\"tXkhj/\":\"Start\",\"StWUH4\":\"Start check-in\",\"JcQp9p\":\"Data e hora de início\",\"0m/ekX\":\"Data e hora de início\",\"izRfYP\":\"A data de início é obrigatória\",\"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/\":\"Estatísticas\",\"GVUxAX\":\"As estatísticas são baseadas na data de criação da conta\",\"29Hx9U\":\"Stats\",\"5ia+r6\":\"Still needed\",\"wuV0bK\":\"Parar Personificação\",\"s/KaDb\":\"Stripe connected\",\"Bk06QI\":\"Stripe conectado\",\"akZMv8\":[\"Stripe connection copied from \",[\"0\"],\".\"],\"v0aRY1\":\"Stripe didn't return a setup link. Please try again.\",\"aKtF0O\":\"Stripe não conectado\",\"9i0++A\":\"ID de pagamento Stripe\",\"R1lIMV\":\"Stripe will need a few more details soon\",\"FzcCHA\":\"Stripe will walk you through a few quick questions to finish setup.\",\"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\",\"kRWc2g\":\"Configurações de evento recorrente 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\":\"Sun\",\"DBC3t5\":\"Sunday\",\"UaISq3\":\"Sueco\",\"JZTQI0\":\"Trocar organizador\",\"9YHrNC\":\"Padrão do Sistema\",\"lruQkA\":\"Tap this screen to resume scanning\",\"TJUrME\":[\"Targeting attendees across \",[\"0\"],\" selected sessions.\"],\"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\":\"Team collaboration\",\"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\":\"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\":\"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\",\"nm3Iz/\":\"Obrigado por participar!\",\"pYwj0k\":\"Thanks,\",\"k3IitN\":\"That's a wrap\",\"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.\",\"7oksH+\":[\"O desconto é deduzido de cada produto elegível. Ex.: \",[\"currencySymbol\"],\"10 de desconto × 3 ingressos = \",[\"currencySymbol\"],\"30 de desconto.\"],\"sKL8k2\":\"O desconto é deduzido uma única vez do total do pedido.\",\"cDHM1d\":\"O endereço de e-mail foi alterado. O participante receberá um novo ingresso no endereço de e-mail atualizado.\",\"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\":\"The first date this schedule will generate from.\",\"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.\",\"Np4eLs\":[\"The maximum is \",[\"MAX_PREVIEW\"],\" sessions. Please reduce the date range, frequency, or number of sessions per day.\"],\"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\":\"The override is recorded in the order audit log.\",\"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\",\"OVSkIF\":\"A rápida raposa marrom pula sobre o cão preguiçoso.\",\"z0KrIG\":\"O horário agendado é obrigatório\",\"EWErQh\":\"O horário agendado deve ser no futuro\",\"UNd0OU\":[\"The session for \\\"\",[\"title\"],\"\\\" originally scheduled for \",[\"0\"],\" has been rescheduled.\"],\"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\",\"ybBP2H\":\"There are no products available for this date. Please choose another date.\",\"O7g4eR\":\"There are no upcoming dates for this event\",\"062KsE\":\"These details are shown on the attendee's ticket and order summary for this date only.\",\"5Eu+tn\":\"Esses detalhes só serão exibidos se o pedido for concluído com sucesso.\",\"jQjwR+\":\"These details will replace any existing location on the affected dates and show on attendee tickets.\",\"6eaLu/\":\"Esses preços se aplicam a todas as datas da sua programação, e as quantidades dos níveis limitam as vendas totais de todas as datas em conjunto. As datas de venda dos níveis se aplicam globalmente. Você pode substituir os preços de datas individuais na <0>página de Programação de datas.\",\"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\":\"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\":\"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/\":[\"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.\",\"E9BqZw\":\"This date only\",\"RzEvf5\":\"Este evento terminou\",\"kc4bIA\":\"Este evento ainda não tem ingressos ou produtos, então os participantes não poderão se inscrever.\",\"eMaNd0\":\"This event is not available\",\"YClrdK\":\"Este evento ainda não foi publicado\",\"GL6z+k\":\"Este evento está esgotado\",\"pIwDhS\":\"This event's dates and times are set on the occurrence schedule.\",\"ny5rgr\":\"This is a recurring event\",\"tc64Zz\":\"Este é o nome da categoria que será exibido na página do evento.\",\"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.\",\"5DpZrC\":\"Isso limita as vendas totais de todas as datas da sua programação em conjunto — não é um limite por data. Para limitar o público de cada data, defina uma capacidade na <0>página de Programação de datas.\",\"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\":\"This occurrence is at capacity\",\"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\",\"qEGn8I\":\"Este evento recorrente ainda não tem datas, então os participantes não têm nada para reservar.\",\"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.\",\"1LuJNw\":\"Este ingresso não é mais válido\",\"0Ew0uk\":\"Este ingresso acabou de ser escaneado. Aguarde antes de escanear novamente.\",\"FYXq7k\":[\"This will affect \",[\"loadedAffectedCount\"],\" date(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\":\"Throughput\",\"+FjWgX\":\"Thu\",\"kkDQ8m\":\"Thursday\",\"0GSPnc\":\"Design do Ingresso\",\"EZC/Cu\":\"Design do ingresso salvo com sucesso\",\"bbslmb\":\"Designer de ingressos\",\"1BPctx\":\"Ingresso para\",\"HGuXjF\":\"Portadores de ingressos\",\"CMUt3Y\":\"Titulares de ingressos\",\"awHmAT\":\"ID do ingresso\",\"6czJik\":\"Logotipo do Ingresso\",\"t79rDv\":\"Ingresso não encontrado\",\"6tmWch\":\"Ingresso ou produto\",\"1tfWrD\":\"Visualização do ingresso para\",\"KnjoUA\":\"Preço do ingresso\",\"pGZOcL\":\"Ingresso reenviado com sucesso\",\"o02GZM\":\"Ticket sales have ended for this event\",\"8jLPgH\":\"Tipo de 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\":\"Time\",\"fXf2r5\":[\"Times shown in \",[\"timezoneAbbr\"]],\"dMtLDE\":\"to\",\"/jQctM\":\"Para\",\"tiI71C\":\"Para aumentar seus limites, entre em contato conosco em\",\"ecUA8p\":\"Today\",\"W428WC\":\"Alternar colunas\",\"BRMXj0\":\"Tomorrow\",\"UBSG1X\":\"Melhores organizadores (Últimos 14 dias)\",\"3sZ0xx\":\"Total de Contas\",\"SMDzqJ\":\"Total de Participantes\",\"orBECM\":\"Total Coletado\",\"k5CU8c\":\"Total de inscrições\",\"4B7oCp\":\"Taxa total\",\"sMMlTX\":\"Total fees\",\"mlvCEl\":\"Total orders\",\"2AW/k5\":\"Quantidade total em todas as datas\",\"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álise\",\"GUA0Jy\":\"Try a different search term or filter\",\"2P/OWN\":\"Try adjusting your filters to see more dates.\",\"ouM5IM\":\"Tentar outro e-mail\",\"3DZvE7\":\"Experimente Hi.Events Grátis\",\"vq2WxD\":\"Tue\",\"G3myU+\":\"Tuesday\",\"Kz91g/\":\"Turco\",\"GdOhw6\":\"Desativar som\",\"KUOhTy\":\"Ativar som\",\"dBeuY2\":\"Twitch\",\"QytzQr\":\"Digite \\\"excluir\\\" para confirmar\",\"nWRfmt\":\"Tipografia\",\"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\":\"Unable to load attendee details.\",\"GlnD5Y\":\"Unable to load products for this date. Please try again.\",\"17VbmV\":\"Unable to undo check-in\",\"n57zCW\":\"Contas não atribuídas\",\"9uI/rE\":\"Undo\",\"Ef7StM\":\"Desconhecido\",\"ZBAScj\":\"Participante desconhecido\",\"MEIAzV\":\"Sem nome\",\"K6L5Mx\":\"Localização sem nome\",\"7yiFvZ\":\"Não pago\",\"X13xGn\":\"Não confiável\",\"gyXpQN\":\"Upcoming events\",\"Pp1sWX\":\"Atualizar afiliado\",\"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\":\"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\":\"USB scanner listening\",\"dyTklH\":\"USB scanner paused\",\"OHJXlK\":\"Use <0>templates Liquid para personalizar seus emails\",\"/rsy72\":\"Use event default\",\"0k4cdb\":\"Usar detalhes do pedido para todos os participantes. Os nomes e e-mails dos participantes corresponderão às informações do comprador.\",\"bA31T4\":\"Usar os dados do comprador para todos os participantes\",\"PpgtnC\":\"Usar este endereço\",\"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\":\"VAT number\",\"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\":\"VAT registered\",\"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\":\"VAT settings updated\",\"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\":\"VAT: not registered\",\"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\":\"View All\",\"yA/6BX\":\"View all →\",\"6CQ7/B\":\"View all capabilities\",\"YSE15b\":\"View all check-in lists\",\"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\":[\"View details for \",[\"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\":\"Waiting for scan…\",\"u0n+wz\":\"Lista de espera\",\"3RXFtE\":\"Lista de espera ativada\",\"TwnTPy\":\"Oferta da lista de espera expirou\",\"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.\",\"aT/44s\":\"We couldn't copy that Stripe connection. Please try again.\",\"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.\",\"Fjj/5/\":\"We couldn't load the check-in lists. Please try again.\",\"ADsQ23\":\"We couldn't reach Stripe just now. Please try again in a moment.\",\"HJKdzP\":\"Ocorreu um problema ao carregar esta página. Por favor, tente novamente.\",\"jegrvW\":\"We partner with Stripe to send payouts straight to your bank account.\",\"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 é usado e 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.\",\"mfM/HJ\":[\"Notificaremos você por e-mail se uma vaga ficar disponível para \",[\"productDisplayName\"],\" em \",[\"occurrenceDate\"],\".\"],\"iy+M+c\":[\"Notificaremos você por e-mail se uma vaga ficar disponível para \",[\"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\":\"Enviaremos seus ingressos para este e-mail\",\"ZOmUYW\":\"Validaremos seu número de IVA em segundo plano. Se houver algum problema, avisaremos.\",\"LKjHr4\":[\"We've made changes to the schedule for \\\"\",[\"title\"],\"\\\" — \",[\"description\"],\" affecting \",[\"affectedCount\"],\" session(s).\"],\"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\":\"Webhook integrations\",\"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\":\"Wed\",\"VAcXNz\":\"Wednesday\",\"64X6l4\":\"week\",\"4XSc4l\":\"Weekly\",\"IAUiSh\":\"weeks\",\"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\":\"Wellness\",\"ywRaYa\":\"What time?\",\"FaSXqR\":\"Que tipo de evento?\",\"0WyYF4\":\"What unauthenticated staff can see\",\"2+ExvJ\":\"WhatsApp\",\"cxsKvw\":\"Quando um check-in é excluído\",\"RPe6bE\":\"When a date is cancelled on a recurring event\",\"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 entrar em uma lista de espera para serem notificados quando vagas ficarem disponíveis.\",\"OIkHj+\":\"Quando um produto esgota, os clientes podem entrar em uma lista de espera para serem notificados quando vagas ficarem disponíveis. Os clientes entram na lista de espera para uma data específica e as ofertas são feitas por data.\",\"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\":\"Quando os clientes comprarem ingressos, os pedidos aparecerão aqui.\",\"pm9tpn\":\"Quando ativado, os compradores podem copiar seu nome e e-mail para todos os participantes de uma vez. Desative para remover a opção \\\"Todos os participantes\\\"; os compradores ainda poderão copiar para o primeiro participante, e os demais deverão ser inseridos individualmente.\",\"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.\",\"uchB0M\":\"Pré-visualização do widget\",\"uvIqcj\":\"Workshop\",\"EpknJA\":\"Escreva sua mensagem aqui...\",\"nhtR6Y\":\"X (Twitter)\",\"7qI8sJ\":\"year\",\"zkWmBh\":\"Yearly\",\"+BGee5\":\"years\",\"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+\":\"You can override this for individual dates later.\",\"paWwQ0\":\"Você ainda pode oferecer ingressos manualmente, se necessário.\",\"jTDzpA\":\"Você não pode arquivar o último organizador ativo da sua conta.\",\"D8baxD\":\"Você tem ingressos pagos, mas o Stripe ainda não está conectado, então não é possível receber pagamentos.\",\"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/\":\"You need to create at least one occurrence before you can add attendees to this recurring event.\",\"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\":\"You'll be able to set up dates, schedules, and recurrence rules in the next step.\",\"zKAheG\":\"You're changing session times\",\"MNFIxz\":[\"Você vai participar de \",[\"0\"],\"!\"],\"ZlLcht\":[\"Você está entrando na lista de espera para \",[\"occurrenceDate\"],\".\"],\"qGZz0m\":\"Você está na lista de espera!\",\"/5HL6k\":\"Você recebeu uma oferta de vaga!\",\"gbjFFH\":\"You've changed the session time\",\"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\":\"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\":\"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. Por favor, entre novamente na lista de espera para ser notificado quando mais vagas ficarem 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 684bd6e3f6..92f0e9ddfb 100644 --- a/frontend/src/locales/pt-br.po +++ b/frontend/src/locales/pt-br.po @@ -179,11 +179,11 @@ msgstr "" msgid "{totalCount} ticket types" msgstr "{totalCount} tipos de ingresso" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:554 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:567 msgid "{totalOccurrences} dates" msgstr "" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:547 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:560 msgid "{totalOccurrences} sessions across {0} dates ({1, plural, one {# session} other {# sessions}} per day)" msgstr "" @@ -516,7 +516,7 @@ msgstr "Eventos ativos" msgid "Active payment methods" msgstr "" -#: src/components/routes/event/OccurrencesTab/index.tsx:400 +#: src/components/routes/event/OccurrencesTab/index.tsx:402 msgid "Activity" msgstr "" @@ -536,11 +536,11 @@ msgstr "" msgid "Add a description for this check-in list" msgstr "Adicione uma descrição para esta lista de registro" -#: src/components/routes/event/OccurrencesTab/index.tsx:538 +#: src/components/routes/event/OccurrencesTab/index.tsx:541 msgid "Add a Single Date" msgstr "" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:739 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:752 msgid "Add another time" msgstr "" @@ -560,7 +560,7 @@ msgstr "Adicione quaisquer notas sobre o pedido. Estas não serão visíveis par msgid "Add any notes about the order..." msgstr "Adicione quaisquer notas sobre o pedido..." -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:375 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:382 msgid "Add at least one time" msgstr "" @@ -580,7 +580,7 @@ msgstr "" msgid "Add dates" msgstr "Adicionar datas" -#: src/components/routes/event/OccurrencesTab/index.tsx:524 +#: src/components/routes/event/OccurrencesTab/index.tsx:526 msgid "Add Dates" msgstr "" @@ -611,7 +611,7 @@ msgstr "Adicione instruções para pagamentos offline (por exemplo, detalhes de msgid "Add Location" msgstr "Adicionar localização" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:743 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:756 msgid "Add multiple times if you run several sessions per day." msgstr "" @@ -796,7 +796,7 @@ msgid "all" msgstr "" #: src/components/layouts/CheckIn/tabs/SearchTab.tsx:133 -#: src/components/routes/event/OccurrencesTab/index.tsx:485 +#: src/components/routes/event/OccurrencesTab/index.tsx:487 msgid "All" msgstr "" @@ -987,7 +987,7 @@ msgstr "Ocorreu um erro inesperado." msgid "An unexpected error occurred. Please try again." msgstr "Ocorreu um erro inesperado. Por favor, tente novamente." -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:849 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:862 msgid "and {0} more..." msgstr "" @@ -1003,7 +1003,7 @@ msgstr "" msgid "Answers provided at checkout (e.g. meal choice)" msgstr "" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:564 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:577 msgid "Any dates you've manually customized will be kept." msgstr "" @@ -1071,7 +1071,7 @@ msgstr "" msgid "Approve Message" msgstr "Aprovar mensagem" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:74 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:76 msgid "April" msgstr "" @@ -1127,7 +1127,7 @@ msgstr "Tem certeza que deseja arquivar este evento? Ele não será mais visíve 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." -#: src/components/routes/event/OccurrencesTab/index.tsx:213 +#: src/components/routes/event/OccurrencesTab/index.tsx:215 msgid "Are you sure you want to cancel {count} date(s)? Affected attendees will be notified by email." msgstr "" @@ -1159,7 +1159,7 @@ msgstr "Tem certeza de que deseja excluir esta configuração? Isso pode afetar #: src/components/modals/ManageOccurrenceModal/index.tsx:58 #: src/components/routes/event/OccurrenceDetail/index.tsx:84 -#: src/components/routes/event/OccurrencesTab/index.tsx:182 +#: src/components/routes/event/OccurrencesTab/index.tsx:184 msgid "Are you sure you want to delete this date? This action cannot be undone." msgstr "" @@ -1446,7 +1446,7 @@ msgstr "Detalhamento de atribuição" msgid "Attribution Value" msgstr "Valor de atribuição" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:78 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:80 msgid "August" msgstr "" @@ -1625,7 +1625,7 @@ msgstr "Português brasileiro" msgid "Built-in fraud protection" msgstr "" -#: src/components/routes/event/OccurrencesTab/index.tsx:515 +#: src/components/routes/event/OccurrencesTab/index.tsx:517 msgid "Bulk Edit" msgstr "" @@ -1674,11 +1674,11 @@ msgstr "Ao adicionar pixels de rastreamento, você reconhece que você e esta pl 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}" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:628 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:641 msgid "By day of month" msgstr "" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:629 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:642 msgid "By day of week" msgstr "" @@ -1698,7 +1698,7 @@ msgstr "Ignorar taxas de aplicação" msgid "Calculation Type" msgstr "Tipo de cálculo" -#: src/components/routes/event/OccurrencesTab/index.tsx:471 +#: src/components/routes/event/OccurrencesTab/index.tsx:473 msgid "Calendar" msgstr "" @@ -1735,7 +1735,7 @@ msgstr "" #: src/components/modals/ManageOrderModal/index.tsx:209 #: src/components/modals/PublishEventModal/index.tsx:208 #: src/components/routes/event/messages.tsx:80 -#: src/components/routes/event/OccurrencesTab/index.tsx:497 +#: src/components/routes/event/OccurrencesTab/index.tsx:499 #: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:272 #: src/components/routes/event/OccurrencesTab/OccurrenceEditModal/index.tsx:306 #: src/components/routes/event/OccurrencesTab/OccurrenceMenu.tsx:61 @@ -1748,8 +1748,8 @@ msgstr "" msgid "Cancel" msgstr "Cancelar" -#: src/components/routes/event/OccurrencesTab/index.tsx:209 -#: src/components/routes/event/OccurrencesTab/index.tsx:221 +#: src/components/routes/event/OccurrencesTab/index.tsx:211 +#: src/components/routes/event/OccurrencesTab/index.tsx:223 msgid "Cancel {count} date(s)" msgstr "" @@ -1809,7 +1809,7 @@ msgstr "Cancelar irá cancelar todos os participantes associados a este pedido e msgid "Cancelled" msgstr "Cancelado" -#: src/components/routes/event/OccurrencesTab/index.tsx:235 +#: src/components/routes/event/OccurrencesTab/index.tsx:237 msgid "Cancelling {0} date(s). This may take a moment to complete." msgstr "" @@ -1819,7 +1819,7 @@ msgstr "Não é possível excluir a configuração padrão do sistema" #: src/components/forms/CapaciyAssigmentForm/index.tsx:42 #: src/components/routes/event/OccurrencesTab/OccurrenceEditModal/index.tsx:503 -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:811 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:824 msgid "Capacity" msgstr "Capacidade" @@ -2154,7 +2154,7 @@ msgid "City" msgstr "Cidade" #: src/components/common/OccurrenceSelect/index.tsx:133 -#: src/components/routes/event/OccurrencesTab/index.tsx:503 +#: src/components/routes/event/OccurrencesTab/index.tsx:505 msgid "Clear" msgstr "" @@ -2174,7 +2174,7 @@ msgstr "Limpar texto de pesquisa" msgid "Clearing removes any per-date override. Affected dates will fall back to the event's default location." msgstr "" -#: src/components/routes/event/OccurrencesTab/index.tsx:331 +#: src/components/routes/event/OccurrencesTab/index.tsx:333 msgid "Click to cancel" msgstr "" @@ -2182,7 +2182,7 @@ msgstr "" msgid "Click to copy" msgstr "Clique para copiar" -#: src/components/routes/event/OccurrencesTab/index.tsx:333 +#: src/components/routes/event/OccurrencesTab/index.tsx:335 msgid "Click to reopen for new sales" msgstr "" @@ -2743,7 +2743,7 @@ msgstr "Criar Modelo {0}" msgid "Create a custom widget to sell tickets on your site." msgstr "Crie um widget personalizado para vender ingressos no seu site." -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:785 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:798 msgid "Create a fixed number" msgstr "" @@ -2879,7 +2879,7 @@ msgstr "Criar código promocional" msgid "Create Question" msgstr "Criar pergunta" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:864 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:877 msgid "Create Schedule" msgstr "" @@ -2927,6 +2927,10 @@ msgstr "Crie seu próprio evento" msgid "Created" msgstr "Criado" +#: src/components/routes/event/OccurrencesTab/index.tsx:549 +msgid "Creating {0} dates. This may take a moment." +msgstr "Criando {0} datas. Isso pode levar um momento." + #: src/components/routes/welcome/index.tsx:472 msgid "Creating Event..." msgstr "A criar evento..." @@ -3066,7 +3070,7 @@ msgstr "Personalize a página do seu evento" msgid "Customize your organizer page appearance" msgstr "Personalize a aparência da sua página de organizador" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:56 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:58 #: src/components/routes/product-widget/OccurrenceSelector/index.tsx:32 msgid "Daily" msgstr "" @@ -3155,7 +3159,7 @@ msgstr "" #: src/components/modals/ManageOccurrenceModal/index.tsx:61 #: src/components/routes/event/OccurrenceDetail/index.tsx:87 -#: src/components/routes/event/OccurrencesTab/index.tsx:184 +#: src/components/routes/event/OccurrencesTab/index.tsx:186 msgid "Date deleted" msgstr "" @@ -3168,7 +3172,7 @@ msgstr "" msgid "Date reactivated" msgstr "" -#: src/components/routes/event/OccurrencesTab/index.tsx:198 +#: src/components/routes/event/OccurrencesTab/index.tsx:200 msgid "Date reopened for new sales" msgstr "" @@ -3184,15 +3188,15 @@ msgstr "" msgid "Dates with sessions" msgstr "" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:93 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:95 msgid "day" msgstr "" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:659 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:672 msgid "Day" msgstr "" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:676 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:689 msgid "Day of Month" msgstr "" @@ -3200,19 +3204,19 @@ msgstr "" msgid "Day one capacity" msgstr "Capacidade do primeiro dia" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:101 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:103 msgid "days" msgstr "" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:635 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:648 msgid "Days of Month" msgstr "" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:605 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:618 msgid "Days of Week" msgstr "" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:82 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:84 msgid "December" msgstr "" @@ -3230,7 +3234,7 @@ msgstr "Padrão" msgid "Default attendee information collection" msgstr "Coleta padrão de informações do participante" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:815 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:828 msgid "Default capacity per date" msgstr "" @@ -3253,7 +3257,7 @@ msgstr "excluir" #: src/components/common/QuestionsTable/index.tsx:150 #: src/components/common/TaxAndFeeList/index.tsx:81 #: src/components/routes/admin/FailedJobs/index.tsx:209 -#: src/components/routes/event/OccurrencesTab/index.tsx:500 +#: src/components/routes/event/OccurrencesTab/index.tsx:502 #: src/components/routes/event/OccurrencesTab/OccurrenceMenu.tsx:62 msgid "Delete" msgstr "Excluir" @@ -3262,7 +3266,7 @@ msgstr "Excluir" msgid "Delete \"{0}\"?" msgstr "Excluir \"{0}\"?" -#: src/components/routes/event/OccurrencesTab/index.tsx:247 +#: src/components/routes/event/OccurrencesTab/index.tsx:249 msgid "Delete {count} selected date(s)? Dates with orders will be skipped. This cannot be undone." msgstr "" @@ -3344,7 +3348,7 @@ msgstr "Excluir esta pergunta? Isso não pode ser desfeito." msgid "Delete webhook" msgstr "Excluir webhook" -#: src/components/routes/event/OccurrencesTab/index.tsx:253 +#: src/components/routes/event/OccurrencesTab/index.tsx:255 msgid "Deleted {0} date(s)" msgstr "" @@ -3565,7 +3569,7 @@ msgstr "ex. 180 (3 horas)" #: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:452 #: src/components/routes/event/OccurrencesTab/OccurrenceEditModal/index.tsx:450 -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:714 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:727 msgid "e.g. Morning Session" msgstr "" @@ -3724,7 +3728,7 @@ msgstr "Editar webhook" msgid "Edit Webhook" msgstr "Editar Webhook" -#: src/components/routes/event/OccurrencesTab/index.tsx:306 +#: src/components/routes/event/OccurrencesTab/index.tsx:308 msgid "Edited" msgstr "" @@ -3913,7 +3917,7 @@ msgstr "Ativar lista de espera" msgid "Enabled" msgstr "Ativado" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:704 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:717 msgid "End" msgstr "" @@ -3934,7 +3938,7 @@ msgstr "Data e hora de término (opcional)" msgid "End date must be after start date" msgstr "A data de término deve ser posterior à data de início" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:771 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:784 msgid "End on a date" msgstr "" @@ -4409,7 +4413,7 @@ msgstr "Falha ao cancelar o participante" msgid "Failed to cancel date" msgstr "" -#: src/components/routes/event/OccurrencesTab/index.tsx:239 +#: src/components/routes/event/OccurrencesTab/index.tsx:241 msgid "Failed to cancel dates" msgstr "" @@ -4429,10 +4433,14 @@ msgstr "Falha ao criar afiliado" msgid "Failed to create configuration" msgstr "Falha ao criar configuração" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:530 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:543 msgid "Failed to create schedule" msgstr "" +#: src/hooks/useOccurrenceGenerationPolling.ts:44 +msgid "Failed to create schedule. Please try again." +msgstr "Falha ao criar a programação. Por favor, tente novamente." + #: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:192 #: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:195 msgid "Failed to create template" @@ -4444,7 +4452,7 @@ msgstr "Falha ao excluir configuração" #: src/components/modals/ManageOccurrenceModal/index.tsx:64 #: src/components/routes/event/OccurrenceDetail/index.tsx:90 -#: src/components/routes/event/OccurrencesTab/index.tsx:185 +#: src/components/routes/event/OccurrencesTab/index.tsx:187 msgid "Failed to delete date" msgstr "" @@ -4452,7 +4460,7 @@ msgstr "" msgid "Failed to delete date. It may have existing orders." msgstr "" -#: src/components/routes/event/OccurrencesTab/index.tsx:256 +#: src/components/routes/event/OccurrencesTab/index.tsx:258 msgid "Failed to delete dates" msgstr "" @@ -4540,7 +4548,7 @@ msgstr "Falha ao remover da lista de espera" msgid "Failed to remove override" msgstr "" -#: src/components/routes/event/OccurrencesTab/index.tsx:199 +#: src/components/routes/event/OccurrencesTab/index.tsx:201 msgid "Failed to reopen date" msgstr "" @@ -4677,7 +4685,7 @@ msgstr "" msgid "Fast payouts to your bank" msgstr "" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:72 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:74 msgid "February" msgstr "" @@ -4769,7 +4777,7 @@ msgstr "" msgid "Finish setup" msgstr "" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:63 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:65 msgid "First" msgstr "" @@ -4882,7 +4890,7 @@ msgstr "Texto do Rodapé" msgid "Forgot password?" msgstr "Esqueceu a senha?" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:66 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:68 msgid "Fourth" msgstr "" @@ -4909,11 +4917,11 @@ msgstr "Produto gratuito, sem necessidade de informações de pagamento" msgid "French" msgstr "Francês" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:586 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:599 msgid "Frequency" msgstr "" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:50 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:52 msgid "Fri" msgstr "" @@ -5004,7 +5012,7 @@ msgstr "GitHub" #: src/components/routes/event/OccurrenceDetail/index.tsx:72 #: src/components/routes/event/OccurrencesTab/cancelOccurrenceDialog.tsx:49 -#: src/components/routes/event/OccurrencesTab/index.tsx:221 +#: src/components/routes/event/OccurrencesTab/index.tsx:223 #: src/components/routes/event/OccurrencesTab/OccurrenceEditModal/index.tsx:339 #: src/components/routes/event/OccurrencesTab/OccurrenceEditModal/index.tsx:363 msgid "Go Back" @@ -5271,7 +5279,7 @@ msgstr "Como o desconto é aplicado?" msgid "How long a customer has to complete their purchase after receiving an offer. Leave empty for no timeout." msgstr "Quanto tempo um cliente tem para concluir a compra após receber uma oferta. Deixe vazio para sem limite de tempo." -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:750 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:763 msgid "How long does the schedule run?" msgstr "" @@ -5283,7 +5291,7 @@ msgstr "Quantos minutos o cliente tem para concluir o pedido. Recomendamos pelo msgid "How many times can this code be used?" msgstr "Quantas vezes esse código pode ser usado?" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:581 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:594 msgid "How often?" msgstr "" @@ -5589,7 +5597,7 @@ msgstr "item(ns)" msgid "Items" msgstr "Itens" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:71 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:73 msgid "January" msgstr "" @@ -5640,11 +5648,11 @@ msgstr "Entrar na lista de espera para {productDisplayName}" msgid "Joined" msgstr "Inscrito" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:77 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:79 msgid "July" msgstr "" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:76 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:78 msgid "June" msgstr "" @@ -5670,7 +5678,7 @@ msgstr "" #: src/components/forms/ProductForm/index.tsx:108 #: src/components/routes/event/OccurrencesTab/OccurrenceEditModal/index.tsx:449 -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:711 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:724 #: src/components/routes/event/Reports/OccurrenceSummaryReport/index.tsx:45 msgid "Label" msgstr "Rótulo" @@ -5685,7 +5693,7 @@ msgstr "" msgid "Language" msgstr "Idioma" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:67 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:69 msgid "Last" msgstr "" @@ -5794,7 +5802,7 @@ msgid "Leave blank to use the default word \"Invoice\"" msgstr "Deixe em branco para usar a palavra padrão \"Fatura\"" #: src/components/routes/event/OccurrencesTab/OccurrenceEditModal/index.tsx:507 -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:816 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:829 msgid "Leave empty for unlimited" msgstr "" @@ -5834,7 +5842,7 @@ msgstr "LinkedIn" msgid "Links Allowed" msgstr "Links permitidos" -#: src/components/routes/event/OccurrencesTab/index.tsx:470 +#: src/components/routes/event/OccurrencesTab/index.tsx:472 msgid "List" msgstr "" @@ -6003,7 +6011,7 @@ msgstr "" msgid "Manage attendee" msgstr "Gerenciar participante" -#: src/components/routes/event/OccurrencesTab/index.tsx:460 +#: src/components/routes/event/OccurrencesTab/index.tsx:462 msgid "Manage dates and times for your recurring event" msgstr "" @@ -6074,7 +6082,7 @@ msgstr "Adicionar manualmente um participante" msgid "Manually Add Attendee" msgstr "Adicionar participante manualmente" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:73 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:75 msgid "March" msgstr "" @@ -6098,7 +6106,7 @@ msgstr "Máx. destinatários / mensagem" msgid "Maximum Per Order" msgstr "Máximo por pedido" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:75 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:77 msgid "May" msgstr "" @@ -6214,7 +6222,7 @@ msgstr "Configurações diversas" msgid "Mode" msgstr "" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:46 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:48 msgid "Mon" msgstr "" @@ -6230,24 +6238,24 @@ msgstr "Os valores monetários são totais aproximados em todas as moedas" msgid "Monitor and manage failed background jobs" msgstr "Monitorar e gerenciar trabalhos em segundo plano com falha" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:95 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:97 msgid "month" msgstr "" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:671 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:684 msgid "Month" msgstr "Mês" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:58 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:60 #: src/components/routes/product-widget/OccurrenceSelector/index.tsx:41 msgid "Monthly" msgstr "" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:624 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:637 msgid "Monthly Pattern" msgstr "" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:103 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:105 msgid "months" msgstr "" @@ -6516,7 +6524,7 @@ msgstr "" msgid "No dates match the current filters." msgstr "" -#: src/components/routes/event/OccurrencesTab/index.tsx:570 +#: src/components/routes/event/OccurrencesTab/index.tsx:580 msgid "No dates match your filters" msgstr "" @@ -6529,7 +6537,7 @@ msgstr "" msgid "No dates scheduled" msgstr "Nenhuma data agendada" -#: src/components/routes/event/OccurrencesTab/index.tsx:570 +#: src/components/routes/event/OccurrencesTab/index.tsx:580 msgid "No dates scheduled yet" msgstr "" @@ -6820,11 +6828,11 @@ msgstr "" msgid "Notify organizer of new orders" msgstr "Notificar o organizador sobre novos pedidos" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:81 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:83 msgid "November" msgstr "" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:800 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:813 msgid "Number of dates to create" msgstr "" @@ -6849,7 +6857,7 @@ msgid "Occurrence Cancelled" msgstr "" #: src/components/layouts/Event/index.tsx:113 -#: src/components/routes/event/OccurrencesTab/index.tsx:461 +#: src/components/routes/event/OccurrencesTab/index.tsx:463 msgid "Occurrence Schedule" msgstr "" @@ -6871,7 +6879,7 @@ msgstr "" msgid "Occurrences can be configured after creation" msgstr "" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:80 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:82 msgid "October" msgstr "" @@ -6965,7 +6973,7 @@ msgstr "Em andamento" #: src/components/common/EventCard/index.tsx:103 #: src/components/layouts/OrganizerHomepage/EventCard/index.tsx:49 -#: src/components/routes/event/OccurrencesTab/index.tsx:316 +#: src/components/routes/event/OccurrencesTab/index.tsx:318 #: src/components/routes/event/OccurrencesTab/OccurrenceEditModal/index.tsx:473 #: src/components/routes/my-tickets/index.tsx:56 #: src/components/routes/product-widget/OccurrenceSelector/index.tsx:122 @@ -7080,7 +7088,7 @@ msgstr "Opções" msgid "or" msgstr "ou" -#: src/components/routes/event/OccurrencesTab/index.tsx:593 +#: src/components/routes/event/OccurrencesTab/index.tsx:603 msgid "or add a single date" msgstr "" @@ -7088,7 +7096,7 @@ msgstr "" msgid "Or enable offline payments and disable Stripe" msgstr "Ou ative pagamentos offline e desative o Stripe" -#: src/components/routes/event/OccurrencesTab/index.tsx:413 +#: src/components/routes/event/OccurrencesTab/index.tsx:415 msgid "order" msgstr "" @@ -7250,7 +7258,7 @@ msgstr "Pedido atualizado com sucesso" msgid "Order was cancelled" msgstr "O pedido foi cancelado" -#: src/components/routes/event/OccurrencesTab/index.tsx:413 +#: src/components/routes/event/OccurrencesTab/index.tsx:415 #: src/components/routes/event/orders.tsx:197 msgid "orders" msgstr "" @@ -7503,7 +7511,7 @@ msgid "Passwords are not the same" msgstr "As senhas não são as mesmas" #: src/components/layouts/OrganizerHomepage/index.tsx:291 -#: src/components/routes/event/OccurrencesTab/index.tsx:484 +#: src/components/routes/event/OccurrencesTab/index.tsx:486 #: src/components/routes/organizer/Reports/EventsPerformanceReport/index.tsx:30 msgid "Past" msgstr "Passado" @@ -7707,15 +7715,15 @@ msgstr "Informações pessoais" msgid "Phone" msgstr "Telefone" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:372 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:379 msgid "Pick an end date" msgstr "" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:380 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:387 msgid "Pick at least one day of the month" msgstr "" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:369 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:376 msgid "Pick at least one day of the week" msgstr "" @@ -7765,7 +7773,7 @@ msgstr "Receita da plataforma" msgid "Please add at least one option" msgstr "Adicione pelo menos uma opção" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:527 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:540 #: src/hooks/useFormErrorResponseHandler.tsx:18 msgid "Please check the provided information is correct" msgstr "Verifique se as informações fornecidas estão corretas" @@ -7895,7 +7903,7 @@ msgstr "Eventos populares (Últimos 14 dias)" msgid "Portuguese" msgstr "Português" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:654 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:667 msgid "Position" msgstr "" @@ -8385,7 +8393,7 @@ msgstr "Contas de indicação" msgid "Refresh Preview" msgstr "Atualizar Visualização" -#: src/components/routes/event/OccurrencesTab/index.tsx:216 +#: src/components/routes/event/OccurrencesTab/index.tsx:218 msgid "Refund all orders for these dates" msgstr "" @@ -8494,11 +8502,11 @@ msgstr "Remove completamente as datas e horários esgotados da página do evento msgid "Reopen for new sales" msgstr "" -#: src/components/routes/event/OccurrencesTab/index.tsx:192 +#: src/components/routes/event/OccurrencesTab/index.tsx:194 msgid "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." msgstr "" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:591 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:604 msgid "Repeat every" msgstr "" @@ -8699,7 +8707,7 @@ msgstr "Revogar oferta" msgid "Role" msgstr "Função" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:772 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:785 msgid "Run until a specific date" msgstr "" @@ -8786,7 +8794,7 @@ msgstr "Preço do ingresso de exemplo" msgid "Sample Venue" msgstr "Local Exemplo" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:51 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:53 msgid "Sat" msgstr "" @@ -8836,7 +8844,7 @@ msgstr "" msgid "Save Organizer" msgstr "Salvar organizador" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:864 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:877 msgid "Save Schedule" msgstr "" @@ -8900,11 +8908,12 @@ msgstr "" msgid "Schedule added" msgstr "" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:520 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:530 +#: src/hooks/useOccurrenceGenerationPolling.ts:36 msgid "Schedule created successfully" msgstr "" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:793 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:806 msgid "Schedule ends on" msgstr "" @@ -8916,7 +8925,7 @@ msgstr "Agendar para depois" msgid "Schedule Message" msgstr "Agendar mensagem" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:755 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:768 msgid "Schedule starts on" msgstr "" @@ -9039,7 +9048,7 @@ msgstr "Pesquisar..." msgid "Seasonal" msgstr "" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:64 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:66 msgid "Second" msgstr "" @@ -9215,7 +9224,7 @@ msgstr "Selecione quais eventos acionarão este webhook" msgid "Select..." msgstr "Selecione..." -#: src/components/routes/event/OccurrencesTab/index.tsx:495 +#: src/components/routes/event/OccurrencesTab/index.tsx:497 msgid "selected" msgstr "" @@ -9345,7 +9354,7 @@ msgstr "Configurações de SEO" msgid "SEO Title" msgstr "Título SEO" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:79 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:81 msgid "September" msgstr "" @@ -9373,7 +9382,7 @@ msgstr "Definir configurações padrão para novos eventos criados sob este orga msgid "Set how long each date lasts" msgstr "" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:784 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:797 msgid "Set number of dates" msgstr "" @@ -9393,7 +9402,7 @@ msgstr "Defina o número inicial para a numeração das faturas. Isso não poder msgid "Set to unlimited (remove limit)" msgstr "" -#: src/components/routes/event/OccurrencesTab/index.tsx:575 +#: src/components/routes/event/OccurrencesTab/index.tsx:585 msgid "Set up a recurring schedule to automatically create dates, or add them one at a time." msgstr "" @@ -9410,8 +9419,8 @@ msgstr "" msgid "Set up schedule" msgstr "" -#: src/components/routes/event/OccurrencesTab/index.tsx:532 -#: src/components/routes/event/OccurrencesTab/index.tsx:586 +#: src/components/routes/event/OccurrencesTab/index.tsx:535 +#: src/components/routes/event/OccurrencesTab/index.tsx:596 msgid "Set Up Schedule" msgstr "" @@ -9427,7 +9436,7 @@ msgstr "Configure a sua organização" msgid "Set up your schedule" msgstr "" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:569 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:582 msgid "Set Up Your Schedule" msgstr "" @@ -9564,7 +9573,7 @@ msgstr "Mostrar impostos e taxas separadamente" msgid "Showing {0} of {totalRows} records" msgstr "Mostrando {0} de {totalRows} registros" -#: src/components/routes/event/OccurrencesTab/index.tsx:614 +#: src/components/routes/event/OccurrencesTab/index.tsx:624 msgid "Showing {0}–{1} of {2}" msgstr "" @@ -9645,7 +9654,7 @@ msgstr "Links sociais e site" #: src/components/common/ProductsTable/SortableProduct/index.tsx:387 #: src/components/modals/ManageOccurrenceModal/index.tsx:186 -#: src/components/routes/event/OccurrencesTab/index.tsx:369 +#: src/components/routes/event/OccurrencesTab/index.tsx:371 msgid "Sold" msgstr "Vendido" @@ -9753,7 +9762,7 @@ msgstr "" msgid "Standard product with a fixed price" msgstr "Produto padrão com preço fixo" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:696 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:709 msgid "Start" msgstr "" @@ -9846,7 +9855,7 @@ msgstr "" #: src/components/routes/admin/Messages/index.tsx:120 #: src/components/routes/admin/Messages/index.tsx:167 #: src/components/routes/admin/Messages/index.tsx:294 -#: src/components/routes/event/OccurrencesTab/index.tsx:326 +#: src/components/routes/event/OccurrencesTab/index.tsx:328 #: src/components/routes/event/Reports/OccurrenceSummaryReport/index.tsx:51 #: src/components/routes/event/Reports/PromoCodesReport/index.tsx:88 #: src/components/routes/organizer/Reports/EventsPerformanceReport/index.tsx:62 @@ -10104,7 +10113,7 @@ msgstr "Festival de Música de Verão {0}" msgid "Summer Music Festival 2025" msgstr "Festival de Música de Verão 2025" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:52 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:54 msgid "Sun" msgstr "" @@ -10231,7 +10240,7 @@ msgstr "Conte-nos sobre seu evento" msgid "Tell us about your organization. This information will be displayed on your event pages." msgstr "Fale-nos sobre a sua organização. Esta informação será exibida nas páginas dos seus eventos." -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:573 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:586 msgid "Tell us how often your event repeats and we'll create all the dates for you." msgstr "" @@ -10325,7 +10334,7 @@ msgstr "O endereço de e-mail foi alterado. O participante receberá um novo ing msgid "The event you're looking for is not available at the moment. It may have been removed, expired, or the URL might be incorrect." msgstr "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." -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:756 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:769 msgid "The first date this schedule will generate from." msgstr "" @@ -10345,7 +10354,7 @@ msgstr "O link que você está tentando acessar expirou ou não é mais válido. msgid "The link you clicked is invalid." msgstr "O link em que você clicou é inválido." -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:840 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:853 msgid "The maximum is {MAX_PREVIEW} sessions. Please reduce the date range, frequency, or number of sessions per day." msgstr "" @@ -10481,7 +10490,7 @@ msgstr "Estes modelos serão usados como padrão para todos os eventos em sua or 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." -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:65 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:67 msgid "Third" msgstr "" @@ -10744,7 +10753,7 @@ msgstr "Isto não será visível para os clientes, mas ajuda-o a identificar o a msgid "Throughput" msgstr "" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:49 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:51 msgid "Thu" msgstr "" @@ -10881,7 +10890,7 @@ msgstr "Os produtos escalonados permitem que você ofereça múltiplas opções msgid "TikTok" msgstr "TikTok" -#: src/components/routes/event/OccurrencesTab/index.tsx:290 +#: src/components/routes/event/OccurrencesTab/index.tsx:292 msgid "Time" msgstr "" @@ -10912,7 +10921,7 @@ msgstr "Vezes usado" msgid "Timezone" msgstr "Fuso horário" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:702 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:715 msgid "to" msgstr "" @@ -11056,7 +11065,7 @@ msgstr "Rastreamento e análise" msgid "Try a different search term or filter" msgstr "" -#: src/components/routes/event/OccurrencesTab/index.tsx:574 +#: src/components/routes/event/OccurrencesTab/index.tsx:584 msgid "Try adjusting your filters to see more dates." msgstr "" @@ -11069,7 +11078,7 @@ msgstr "Tentar outro e-mail" msgid "Try Hi.Events Free" msgstr "Experimente Hi.Events Grátis" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:47 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:49 msgid "Tue" msgstr "" @@ -11232,7 +11241,7 @@ msgstr "Não confiável" #: src/components/common/EventsDashboardStatusButtons/index.tsx:20 #: src/components/common/EventStatusBadge/index.tsx:16 #: src/components/layouts/OrganizerHomepage/index.tsx:285 -#: src/components/routes/event/OccurrencesTab/index.tsx:483 +#: src/components/routes/event/OccurrencesTab/index.tsx:485 #: src/components/routes/organizer/Reports/EventsPerformanceReport/index.tsx:33 msgid "Upcoming" msgstr "Próximos" @@ -11880,7 +11889,7 @@ msgstr "Webhooks" msgid "Website" msgstr "Site" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:48 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:50 msgid "Wed" msgstr "" @@ -11888,16 +11897,16 @@ msgstr "" msgid "Wednesday" msgstr "" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:94 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:96 msgid "week" msgstr "" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:57 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:59 #: src/components/routes/product-widget/OccurrenceSelector/index.tsx:35 msgid "Weekly" msgstr "" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:102 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:104 msgid "weeks" msgstr "" @@ -11953,7 +11962,7 @@ msgstr "A quais produtos essa capacidade deve se aplicar?" msgid "What time will you be arriving?" msgstr "A que horas você chegará?" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:688 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:701 msgid "What time?" msgstr "" @@ -12140,7 +12149,7 @@ msgstr "Escreva sua mensagem aqui..." msgid "X (Twitter)" msgstr "X (Twitter)" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:96 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:98 msgid "year" msgstr "" @@ -12150,12 +12159,12 @@ msgstr "" msgid "Year to date" msgstr "Ano até agora" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:59 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:61 #: src/components/routes/product-widget/OccurrenceSelector/index.tsx:43 msgid "Yearly" msgstr "" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:104 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:106 msgid "years" msgstr "" @@ -12200,7 +12209,7 @@ msgstr "Você pode configurar taxas de serviço adicionais e impostos nas config msgid "You can create a promo code which targets this product on the" msgstr "Você pode criar um código promocional que direcione este produto no" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:823 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:836 msgid "You can override this for individual dates later." msgstr "" diff --git a/frontend/src/locales/pt.js b/frontend/src/locales/pt.js index a1916f9035..b137cbb8f1 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\":\"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\":\"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\":\"Are you sure you want to make this event public? This will make the event visible to the public\",\"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\":\"Attendee Notes\",\"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\":\"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 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\":\"Personalize a página do seu evento\",\"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\":\"Dismiss\",\"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\":\"Event URL\",\"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\":\"No attendees have been added to this order.\",\"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\":\"No product associated with this attendee.\",\"Ya1JhR\":\"Nenhum produto disponível nesta categoria.\",\"FTfObB\":\"Nenhum Produto Ainda\",\"+Y976X\":\"Nenhum código promocional para mostrar\",\"MAavyl\":\"No questions answered by this attendee.\",\"SnlQeq\":\"No questions have been asked for this order.\",\"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\":\"Online event\",\"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\":\"Order #\",\"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\":\"Order Notes\",\"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\":\"Desenvolvido 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 ou instruções adicionais para esta pergunta. Use este campo para adicionar termos\\ne condições, diretrizes ou qualquer informação importante que os participantes precisem 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\":\"San 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\":\"Suite 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\":\"View\",\"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\":\"(none)\",\"xYxQCZ\":[[\"0\"],\" \",[\"1\"]],\"lAOy2r\":[[\"0\"],\" \",[\"1\"],\" já fez check-in\"],\"3beCx0\":[[\"0\"],\" <0>checked in\"],\"S4PqS9\":[[\"0\"],\" webhooks ativos\"],\"6MIiOI\":[[\"0\"],\" restante\"],\"COnw8D\":[\"Logo \",[\"0\"]],\"xG9N0H\":[[\"0\"],\" of \",[\"1\"],\" seats are taken.\"],\"B7pZfX\":[[\"0\"],\" organizadores\"],\"/HkCs4\":[[\"0\"],\" bilhetes\"],\"30bTiU\":[[\"activeCount\"],\" enabled\"],\"jTs4am\":[[\"appName\"],\" logo\"],\"gbJOk9\":[[\"attendeeCount\"],\" attendees are registered for this session.\"],\"TjbIUI\":[[\"availableCount\"],\" de \",[\"totalCount\"],\" disponíveis\"],\"PSChHo\":[[\"capacity\"],\" vagas restantes\"],\"lzQ8/M\":[[\"checkedIn\"],\" / \",[\"total\"],\" checked in\"],\"RZ0JX3\":[[\"chipTime\"],\", esgotado\"],\"M4KnFs\":[[\"chipTime\"],\", Esgotado, lista de espera disponível\"],\"SeyN12\":[[\"completedCount\"],\" of \",[\"totalCount\"],\" steps complete\"],\"f2rhaD\":[[\"diffHr\"],\"h ago\"],\"NRSLBe\":[[\"diffMin\"],\"m ago\"],\"iYfwJE\":[[\"diffSec\"],\"s ago\"],\"OJnhhX\":[[\"eventCount\"],\" eventos\"],\"mhZbzw\":[[\"loadedAffectedAttendees\"],\" attendees are registered across the affected sessions.\"],\"RBuxIl\":[[\"productCount\"],\" ticket types configured\"],\"VFLd0I\":[[\"slotCount\"],\" times available\"],\"3IEF7U\":[[\"totalCount\"],\" tipos de bilhetes\"],\"0cLzoF\":[[\"totalOccurrences\"],\" dates\"],\"AEGc4t\":[[\"totalOccurrences\"],\" sessions across \",[\"0\"],\" dates (\",[\"1\",\"plural\",{\"one\":[\"#\",\" session\"],\"other\":[\"#\",\" sessions\"]}],\" per day)\"],\"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.\",\"Il5Uid\":\"<0>Esta é a quantidade total disponível para todas as datas do seu calendário em conjunto — não é um limite por data. Para limitar a lotação de cada data, defina uma capacidade na <1>página de Calendário de datas.\",\"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 attendee is registered across the affected sessions.\",\"qOyE2U\":\"1 attendee is registered for this session.\",\"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\",\"y2Jh0m\":\"1 time available\",\"cGtUz6\":\"1 semana antes do evento\",\"HR/cvw\":\"Rua Exemplo 123\",\"dgKxZ5\":\"135+ currencies & 40+ payment methods\",\"kMU5aM\":\"Um aviso de cancelamento foi enviado para\",\"o++0qa\":\"a change in duration\",\"WuWSX5\":\"A few quick steps and you're ready to start selling.\",\"RQ5kDd\":\"Uma mensagem a apresentar quando não existirem produtos nesta categoria.\",\"V53XzQ\":\"Um novo código de verificação foi enviado para o seu email\",\"sr2Je0\":\"a shift in start/end times\",\"/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\":[\"Account · \",[\"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\":\"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\":\"Adicione perguntas personalizadas para coletar informações adicionais durante o checkout\",\"Z/dcxc\":\"Add Date\",\"QeupRg\":\"Adicionar datas\",\"Q219NT\":\"Add Dates\",\"yjB5VC\":\"Add dates and times for your recurring event\",\"Z8idyM\":\"Add details\",\"wpirGs\":\"Add event details\",\"VX6WUv\":\"Adicionar localização\",\"GCQlV2\":\"Add multiple times if you run several sessions per day.\",\"7JF9w9\":\"Adicionar pergunta\",\"NLbIb6\":\"Add this attendee anyway (override capacity)\",\"6PNlRV\":\"Adicione este evento ao seu calendário\",\"BGD9Yt\":\"Adicionar ingressos\",\"uIv4Op\":\"Adicione pixels de rastreamento às suas páginas de eventos públicos 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\":\"Affiliate program\",\"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.\",\"3e31kI\":\"After your event is created, you can choose how often it repeats from the dashboard.\",\"z7GAMJ\":\"all\",\"N40H+G\":\"All\",\"7rLTkE\":\"Todos os eventos arquivados\",\"gKq1fa\":\"Todos os participantes\",\"63gRoO\":\"All attendees of the selected sessions\",\"uWxIoH\":\"All attendees of this occurrence\",\"pMLul+\":\"Todas as moedas\",\"sgUdRZ\":\"All dates\",\"e4q4uO\":\"All Dates\",\"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\":\"All matching dates\",\"F1/VgK\":\"All occurrences\",\"OpWjMq\":\"All Occurrences\",\"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.\",\"VZdky1\":\"Permitir que os compradores copiem os seus dados para todos os participantes\",\"F3mW5G\":\"Permitir que os clientes se juntem a uma lista de espera quando este produto estiver esgotado\",\"4CMO/q\":\"Permitir que os clientes se juntem a uma lista de espera quando este produto estiver esgotado. Os clientes juntam-se à lista de espera para uma data específica.\",\"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\":\"Already in\",\"/H326L\":\"Já reembolsado\",\"USEpOK\":\"Already use Stripe on another organizer? Reuse that connection.\",\"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.\",\"OPFdAM\":\"Uma descrição opcional desta categoria a apresentar na página do evento.\",\"eusccx\":\"Uma mensagem opcional para exibir no produto destacado, por exemplo \\\"A vender rapidamente 🔥\\\" ou \\\"Melhor valor\\\"\",\"5GJuNp\":[\"and \",[\"0\"],\" more...\"],\"QNrkms\":\"Resposta atualizada com sucesso.\",\"+qygei\":\"Answers\",\"GK7Lnt\":\"Answers provided at checkout (e.g. meal choice)\",\"lE8PgT\":\"Any dates you've manually customized will be kept.\",\"jVoYha\":[\"aplicado — \",[\"0\"],\" de desconto na sua encomenda\"],\"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\":\"Aprovar mensagem\",\"naCW6Z\":\"April\",\"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\":[\"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\":\"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/\":\"Are you sure you want to delete this date? This action cannot be undone.\",\"RiF/yT\":\"Are you sure you want to delete this image?\",\"b3+Qku\":\"Are you sure you want to delete this tax or fee? It will no longer be applied to new orders.\",\"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\":\"Are you sure you want to permanently delete this date? This cannot be undone.\",\"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?\",\"b7tkGp\":\"Are you sure you want to revoke this invitation?\",\"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\":\"Assign plan\",\"xdiER7\":\"Nível atribuído\",\"F2rX0R\":\"Pelo menos um tipo de evento deve ser selecionado\",\"Z44eZS\":\"At least one product must stay available for this date. To make the date inaccessible, cancel it from the schedule instead.\",\"BCmibk\":\"Tentativas\",\"6PecK3\":\"Presença e taxas de registo em todos os eventos\",\"K2tp3v\":\"attendee\",\"AJ4rvK\":\"Participante cancelado\",\"qvylEK\":\"Participante criado\",\"Aspq3b\":\"Coleta de dados dos participantes\",\"fpb0rX\":\"Dados do participante copiados do pedido\",\"94aQMU\":\"Informações do participante\",\"KkrBiR\":\"Recolha de informações do participante\",\"sjPjOg\":\"Attendee notes\",\"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\":\"attendees\",\"zLRobu\":\"attendees checked 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/\":\"August\",\"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\":\"Oferecer automaticamente bilhetes à próxima pessoa quando a capacidade ficar disponível. Se desativado, pode processar manualmente a lista de espera a partir da página Lista de Espera.\",\"csDS2L\":\"Disponível\",\"Xp+ywP\":\"Disponível assim que o pagamento for concluído\",\"dwDH1K\":[\"Available times on \",[\"dayName\"]],\"clF06r\":\"Disponível para reembolso\",\"NB5+UG\":\"Tokens disponíveis\",\"L+wGOG\":\"Awaiting\",\"qcw2OD\":\"Awaiting pay\",\"kNmmvE\":\"Awesome Events Lda.\",\"TeSaQO\":\"Voltar para Contas\",\"kYqM1A\":\"Voltar ao evento\",\"s5QRF3\":\"Voltar às mensagens\",\"td/bh+\":\"Voltar aos Relatórios\",\"nsm7BA\":\"Voltar à pesquisa\",\"imjKVx\":\"Bank account connected\",\"D9LTCH\":\"Base Price\",\"hviJef\":\"Based on the global sale period above, not per date\",\"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\":\"Built-in fraud protection\",\"cr7kGH\":\"Bulk Edit\",\"1Fbd6n\":\"Bulk Edit Dates\",\"Eq6Tu9\":\"Bulk update failed.\",\"9N+p+g\":\"Negócios\",\"SWnN1L\":\"Business address\",\"kQekXw\":\"Business name\",\"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, reconhece que você e esta plataforma são responsáveis conjuntos pelos dados recolhidos. É responsável por garantir que tem uma base legal para este processamento 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\":\"By day of month\",\"0MnNgi\":\"By day of week\",\"CetOZE\":\"By ticket type\",\"lFdbRS\":\"Ignorar taxas de aplicação\",\"AjVXBS\":\"Calendar\",\"2VLZwd\":\"Botão de chamada para ação\",\"rT2cV+\":\"Camera\",\"7hYa9y\":\"Camera permission was denied. <0>Request permission again, or grant this page camera access in your browser settings.\",\"D02dD9\":\"Campanha\",\"RRPA79\":\"Can't check in\",\"OcVwAd\":[\"Cancel \",[\"count\"],\" date(s)\"],\"H4nE+E\":\"Cancelar todos os produtos e devolvê-los ao conjunto disponível\",\"Py78q9\":\"Cancel Date\",\"tOXAdc\":\"Cancelar irá cancelar todos os participantes associados a este pedido e devolver os bilhetes ao conjunto disponível.\",\"FPpqc7\":[\"Cancelling \",[\"0\"],\" date(s). This may take a moment to complete.\"],\"01sEfm\":\"Não é possível excluir a configuração padrão do sistema\",\"VsM1HH\":\"Atribuições de capacidade\",\"9bIMVF\":\"Capacity management\",\"H7K8og\":\"Capacity must be 0 or greater\",\"nzao08\":\"capacity updates\",\"4cp9NP\":\"Capacity Used\",\"K7tIrx\":\"Categoria\",\"DRK3Bq\":\"Category deleted successfully\",\"o+XJ9D\":\"Alterar\",\"kJkjoB\":\"Change duration\",\"J0KExZ\":\"Change the attendee limit\",\"ssospy\":\"Change time\",\"CIHJJf\":\"Alterar configurações da lista de espera\",\"B5icLR\":[\"Changed duration for \",[\"count\"],\" date(s)\"],\"Kb+0BT\":\"Charges\",\"2tbLdK\":\"Caridade\",\"BPWGKn\":\"Check in\",\"6uFFoY\":\"Check out\",\"FjAlwK\":[\"Check out this event: \",[\"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 for \",[\"0\"],\" was undone\"],\"9s/wrQ\":\"Check-in history\",\"Wwztk4\":\"Check-In List\",\"9gPPUY\":\"Lista de Check-In Criada!\",\"dwjiJt\":\"Check-in list info\",\"7od0PV\":\"check-in lists\",\"f2vU9t\":\"Listas de Registo\",\"XprdTn\":\"Check-in navigation\",\"5tV1in\":\"Check-in progress\",\"SHJwyq\":\"Taxa de registo\",\"qCqdg6\":\"Estado do Check-In\",\"cKj6OE\":\"Resumo de Registo\",\"7B5M35\":\"Check-Ins\",\"VrmydS\":\"Checked in\",\"DM4gBB\":\"Chinês (Tradicional)\",\"p8Jvp4\":\"Choose a configuration\",\"ElShBO\":\"Choose a different action\",\"pHEhf+\":\"Escolha um tipo de letra que combine com a sua marca. Os tipos de letra são alojados via Bunny Fonts.\",\"Zok1Gx\":\"Choose an organizer\",\"pkk46Q\":\"Escolha um organizador\",\"Ag32+c\":\"Choose another date\",\"Crr3pG\":\"Escolher calendário\",\"Z38ZJu\":\"Escolha como a data do evento é apresentada no bilhete\",\"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\":\"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\":\"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\":\"complete\",\"bUQMpb\":\"Complete Stripe setup\",\"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\":\"Configuration assigned\",\"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 which products are available for this occurrence and optionally adjust pricing.\",\"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\",\"/K4Vqr\":\"Ligue o Stripe para aceitar pagamentos\",\"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\":\"Os detalhes de ligação são obrigatórios para eventos online\",\"jfC/xh\":\"Contato\",\"LOFgda\":[\"Contato \",[\"0\"]],\"41BQ3k\":\"Email de contacto\",\"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\",\"s30OcA\":\"Controle como as datas e horários são apresentados na página do evento\",\"p2FRHj\":\"Controle como as taxas da plataforma são tratadas para este evento\",\"NqfabH\":\"Control who gets in for this date\",\"fmYxZx\":\"Control who gets in, and when\",\"1JnTgU\":\"Copiado de cima\",\"FxVG/l\":\"Copiado para a área de transferência\",\"PiH3UR\":\"Copiado!\",\"4i7smN\":\"Copy account ID\",\"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\":\"Could not prepare the bulk update.\",\"KOavaU\":\"Não foi possível obter os detalhes da morada\",\"/lq4oO\":\"Could not save date\",\"mHu0az\":\"Couldn't send verification email. Please try again.\",\"QOIm+S\":\"As contagens incluem todas as datas futuras. A cada pessoa é oferecido um lugar para a data em que se inscreveu.\",\"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\":\"Covers every ticket\",\"zg4oSu\":[\"Criar modelo \",[\"0\"]],\"RKKhnW\":\"Crie um widget personalizado para vender ingressos no seu site.\",\"6sk7PP\":\"Create a fixed number\",\"jqhTmw\":\"Create a list for this date\",\"PhioFp\":\"Create a new check-in list for an active session, or contact the organizer if you think this is a mistake.\",\"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\":\"Create Date\",\"Nc3l/D\":\"Crie descontos, códigos de acesso para ingressos ocultos e ofertas especiais.\",\"PybJS2\":\"Create event\",\"eWEV9G\":\"Criar nova senha\",\"wl2iai\":\"Create Schedule\",\"8AiKIu\":\"Criar ingresso ou produto\",\"/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\":\"Crie seu primeiro evento para começar a vender ingressos e gerenciar participantes.\",\"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\":\"Currently assigned\",\"iTvh6I\":\"Atualmente disponível para compra\",\"A42Dqn\":\"Custom branding\",\"Guo0lU\":\"Data e hora personalizadas\",\"WDMdn8\":\"Custom questions\",\"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\",\"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\":\"Daily\",\"/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\":\"Dance\",\"pvnfJD\":\"Escuro\",\"MaB9wW\":\"Date Cancellation\",\"e6cAxJ\":\"Date cancelled\",\"81jBnC\":\"Date cancelled successfully\",\"a/C/6R\":\"Date created successfully\",\"IW7Q+u\":\"Date deleted\",\"rngCAz\":\"Date deleted successfully\",\"vHbfoQ\":\"Date reactivated\",\"hvah+S\":\"Date reopened for new sales\",\"Ez0YsD\":\"Date updated successfully\",\"Te33mU\":\"Dates are managed per occurrence\",\"91zCxb\":\"Dates with sessions\",\"/ITcnz\":\"day\",\"H7OUPr\":\"Day\",\"JtHrX9\":\"Day of Month\",\"J/Upwb\":\"days\",\"vDVA2I\":\"Days of Month\",\"rDLvlL\":\"Days of Week\",\"r6zgGo\":\"December\",\"jbq7j2\":\"Recusar\",\"ovBPCi\":\"Padrão\",\"JtI4vj\":\"Recolha predefinida de informações do participante\",\"ULjv90\":\"Default capacity per date\",\"3R/Tu2\":\"Gestão de taxas padrão\",\"1bZAZA\":\"O modelo padrão será usado\",\"HNlEFZ\":\"eliminar\",\"KpnwJK\":[\"Eliminar \\\"\",[\"0\"],\"\\\"?\"],\"BlII4o\":[\"Delete \",[\"count\"],\" selected date(s)? Dates with orders will be skipped. This cannot be undone.\"],\"vu7gDm\":\"Eliminar afiliado\",\"KZN4Lc\":\"Eliminar tudo\",\"6EkaOO\":\"Delete Date\",\"io0G93\":\"Eliminar evento\",\"+jw/c1\":\"Excluir imagem\",\"hdyeZ0\":\"Eliminar trabalho\",\"xxjZeP\":\"Eliminar localização\",\"sY3tIw\":\"Eliminar organizador\",\"UBv8UK\":\"Delete Permanently\",\"dPyJ15\":\"Excluir modelo\",\"IQTR34\":\"Delete this category? Any products in it will also be deleted. This cannot be undone.\",\"/1wMxk\":\"Delete this product? This cannot be undone.\",\"mxsm1o\":\"Excluir esta pergunta? Isso não pode ser desfeito.\",\"snMaH4\":\"Excluir webhook\",\"LIZZLY\":[\"Deleted \",[\"0\"],\" date(s)\"],\"7w0Wev\":\"Description and venue added\",\"vYgeDk\":\"Desselecionar tudo\",\"NvuEhl\":\"Elementos de Design\",\"H8kMHT\":\"Não recebeu o código?\",\"G8KNgd\":\"Different location\",\"E/QGRL\":\"Disabled\",\"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.\",\"HtaSQp\":\"Mostra quantas vagas restam em cada data no widget de bilhetes. Pode substituir esta definição para datas individuais.\",\"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\":\"Door staff instructions\",\"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 alto risco de spam, deve conectar uma conta Stripe antes de poder enviar mensagens aos participantes.\\nIsto é para garantir que todos os organizadores de eventos são verificados e responsáveis.\",\"euc6Ns\":\"Duplicar\",\"YueC+F\":\"Duplicate Date\",\"KRmTkx\":\"Duplicar produto\",\"Jd3ymG\":\"Duration must be at least 1 minute.\",\"KIjvtr\":\"Holandês\",\"22xieU\":\"ex. 180 (3 horas)\",\"/zajIE\":\"e.g. Morning Session\",\"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.\",\"Xfsjel\":\"Cada produto\",\"5oD9f/\":\"Earlier\",\"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\":\"Edit Date\",\"m0ZqOT\":\"Editar localização\",\"8oivFT\":\"Editar localização\",\"vRWOrM\":\"Editar detalhes do pedido\",\"fW5sSv\":\"Editar webhook\",\"nP7CdQ\":\"Editar Webhook\",\"MRZxAn\":\"Edited\",\"uBAxNB\":\"Editor\",\"aqxYLv\":\"Educação\",\"iiWXDL\":\"Falhas de elegibilidade\",\"zPiC+q\":\"Listas de Check-In Elegíveis\",\"SiVstt\":\"Email & scheduled messages\",\"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\":\"Embeddable widget\",\"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\":\"End\",\"sGjBEq\":\"Data e hora de término (opcional)\",\"PKXt9R\":\"A data de término deve ser posterior à data de início\",\"ZayGC7\":\"End on a date\",\"48Y16Q\":\"Hora de fim (opcional)\",\"TbaYrr\":[\"Ended \",[\"0\"]],\"CFgwiw\":[\"Ends \",[\"0\"]],\"SqOIQU\":\"Enter a capacity value or choose unlimited.\",\"h37gRz\":\"Enter a label or choose to remove it.\",\"7YZofi\":\"Digite um assunto e corpo para ver a visualização\",\"khyScF\":\"Enter a time to shift by.\",\"SKx/0u\":\"Introduza um nome de local ou uma morada\",\"ppwojw\":\"Introduza um nome de local ou morada para eventos presenciais\",\"j+eCIq\":\"Introduzir a morada manualmente\",\"3bR1r4\":\"Introduza o email do afiliado (opcional)\",\"ARkzso\":\"Introduza o nome do afiliado\",\"ej4L8b\":\"Enter capacity\",\"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)\",\"RRlWVA\":\"Encomenda inteira\",\"o21Y+P\":\"entries\",\"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\",\"+v+GW0\":\"Apresentação da data do evento\",\"7u9/DO\":\"Evento eliminado com sucesso\",\"imgKgl\":\"Descrição do evento\",\"IzR/Fc\":\"Event lifetime\",\"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\",\"mImacG\":\"Página do Evento\",\"Hk9Ki/\":\"Evento restaurado com sucesso\",\"JyD0LH\":\"Configurações do evento\",\"XVLu2v\":\"Título do evento\",\"OfmsI9\":\"Evento muito recente\",\"4SILkp\":\"Event totals\",\"YDVUVl\":\"Tipos de eventos\",\"+HeiVx\":\"Evento atualizado\",\"19j6uh\":\"Desempenho de Eventos\",\"PC3/fk\":\"Eventos a Iniciar nas Próximas 24 Horas\",\"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\":\"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\":\"Failed to cancel date\",\"YUX+f+\":\"Failed to cancel dates\",\"SIHgVQ\":\"Falha ao cancelar mensagem\",\"cEFg3R\":\"Falha ao criar afiliado\",\"dVgNF1\":\"Falha ao criar configuração\",\"fAoRRJ\":\"Failed to create schedule\",\"U66oUa\":\"Falha ao criar modelo\",\"aFk48v\":\"Falha ao excluir configuração\",\"n1CYMH\":\"Failed to delete date\",\"KXv+Qn\":\"Failed to delete date. It may have existing orders.\",\"JJ0uRo\":\"Failed to delete dates\",\"rgoBnv\":\"Falha ao eliminar o evento\",\"Zw6LWb\":\"Falha ao eliminar trabalho\",\"tq0abZ\":\"Falha ao eliminar trabalhos\",\"2mkc3c\":\"Falha ao eliminar o organizador\",\"5E23qd\":\"Failed to delete product. Please try again.\",\"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\":\"Failed to reactivate date\",\"7zyx8a\":\"Falha ao remover da lista de espera\",\"A/P7PX\":\"Failed to remove override\",\"ogWc1z\":\"Failed to reopen date\",\"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\":\"Failed to save override\",\"sj/eZA\":\"Failed to save price override\",\"780n8A\":\"Failed to save product settings\",\"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 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\":\"Family\",\"5LO38w\":\"Fast payouts to your bank\",\"4lgLew\":\"February\",\"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\":\"Film\",\"L1qbUx\":\"Filter attendees\",\"8OvVZZ\":\"Filtrar Participantes\",\"N/H3++\":\"Filter by date\",\"mvrlBO\":\"Filtrar por evento\",\"g+xRXP\":\"Finish setting up Stripe\",\"LHH461\":\"Finish setup\",\"syyeb9\":\"First\",\"Vj6wk9\":\"First 30 days\",\"/bpZYb\":\"First 7 days\",\"ziEnjY\":\"First 90 days\",\"1vBhpG\":\"Primeiro participante\",\"4pwejF\":\"O primeiro nome é obrigatório\",\"rVogsf\":\"Corrija os problemas para publicar\",\"3lkYdQ\":\"Fixed fee\",\"6bBh3/\":\"Taxa Fixa\",\"zWqUyJ\":\"Taxa fixa cobrada por transação\",\"LWL3Bs\":\"A taxa fixa deve ser 0 ou maior\",\"0RI8m4\":\"Flash off\",\"q0923e\":\"Flash on\",\"X+U6/w\":\"Família de tipos de letra\",\"lWxAUo\":\"Comida e bebida\",\"nFm+5u\":\"Texto do Rodapé\",\"a8nooQ\":\"Fourth\",\"wtuVU4\":\"Frequency\",\"xVhQZV\":\"Fri\",\"39y5bn\":\"Friday\",\"f5UbZ0\":\"Full data ownership\",\"cfvx/y\":\"Full event\",\"MY2SVM\":\"Reembolso total\",\"PGQLdy\":\"future\",\"8N/j1s\":\"Future dates only\",\"yRx/6K\":\"Future dates will be copied with capacity reset to zero\",\"T02gNN\":\"Admissão Geral\",\"3ep0Gx\":\"Informações gerais sobre seu organizador\",\"ziAjHi\":\"Gerar\",\"exy8uo\":\"Gerar código\",\"4CETZY\":\"Obter direções\",\"pjkEcB\":\"Get Paid\",\"lGYzP6\":\"Get paid with Stripe\",\"ZDIydz\":\"Começar\",\"u6FPxT\":\"Obter Bilhetes\",\"8KDgYV\":\"Prepare seu evento\",\"RkXlPZ\":\"GitHub\",\"sr0UJD\":\"Go Back\",\"oNL5vN\":\"Ir para a página do evento\",\"gHSuV/\":\"Ir para a página inicial\",\"8+Cj55\":\"Go to Schedule\",\"6nDzTl\":\"Boa legibilidade\",\"76gPWk\":\"Got it\",\"CZXzs4\":\"Grego\",\"aGWZUr\":\"Receita bruta\",\"n8IUs7\":\"Receita Bruta\",\"O1wAlQ\":\"Guest\",\"LIYoRQ\":\"Gestão de convidados\",\"NUsTc4\":\"Happening now\",\"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\":\"Hi,\",\"/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\":\"Hide details\",\"FmogyU\":\"Ocultar Opções\",\"uXNYjR\":\"Ocultar datas e horários esgotados\",\"g9RcYX\":\"Ocultar a data\",\"uMwTx7\":\"Ocultar esta categoria?\",\"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\":\"Hobbies\",\"yY8wAv\":\"Hours\",\"49Tkiw\":\"Como é aplicado o desconto?\",\"sy9anN\":\"Quanto tempo um cliente tem para concluir a compra após receber uma oferta. Deixe vazio para sem limite de tempo.\",\"n2ilNh\":\"How long does the schedule run?\",\"DMr2XN\":\"How often?\",\"cceMns\":\"How VAT is applied to the platform fees we charge you.\",\"FONsLE\":\"https://awesome-events.com\",\"htoh8N\":\"https://webhook-domain.com/webhook\",\"mkWad2\":\"Húngaro\",\"8Wgd41\":\"Reconheço as minhas responsabilidades como 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\",\"CY3yHL\":\"Se selecionado, esta categoria ficará oculta do público.\",\"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\":[\"in last \",[\"0\"],\" min\"],\"u7r0G5\":\"In person — set a venue\",\"/LCAwL\":\"Em curso\",\"F1Xp97\":\"Participantes individuais\",\"85e6zs\":\"Inserir token Liquid\",\"CTWsuc\":\"Instagram\",\"VopR6B\":\"Instant Stripe payouts\",\"nbfdhU\":\"Integrações\",\"I8eJ6/\":\"Internal notes on the attendee's ticket\",\"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\",\"Dn4OyV\":\"Convidado\",\"IuMGvq\":\"Fatura\",\"a/bUcL\":\"It happens on more than one date\",\"d+Oe9r\":\"It may have been unpublished or removed. Please check the link and try again.\",\"Lj7sBL\":\"Italiano\",\"F5/CBH\":\"item(ns)\",\"BzfzPK\":\"Itens\",\"rjyWPb\":\"January\",\"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\":[\"Entrar na lista de espera para \",[\"productDisplayName\"]],\"2gMuHR\":\"Inscrito\",\"u4ex5r\":\"July\",\"zeEQd/\":\"June\",\"MxjCqk\":\"Apenas procurando seus ingressos?\",\"xOTzt5\":\"just now\",\"0RihU9\":\"Just wrapped\",\"lB2hSG\":[\"Mantenha-me atualizado sobre notícias e eventos de \",[\"0\"]],\"ioFA9i\":\"Keep the profit.\",\"o66QSP\":\"label updates\",\"RtKKbA\":\"Last\",\"DruLRc\":\"Últimos 14 dias\",\"ve9JTU\":\"O apelido é obrigatório\",\"h0Q9Iw\":\"Última resposta\",\"gw3Ur5\":\"Última ativação\",\"FIq1Ba\":\"Later\",\"xvnLMP\":\"Latest check-ins\",\"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\":\"Claro\",\"1qY5Ue\":\"Link expirado ou inválido\",\"gggTBm\":\"LinkedIn\",\"nvOPBA\":\"Links permitidos\",\"2BBAbc\":\"List\",\"dF6vP6\":\"Ao vivo\",\"fpMs2Z\":\"AO VIVO\",\"D9zTjx\":\"Eventos ao Vivo\",\"C33p4q\":\"Loaded dates\",\"WdmJIX\":\"Carregando pré-visualização...\",\"IoDI2o\":\"Carregando tokens...\",\"G3Ge9Z\":\"A carregar registos de webhook...\",\"NFxlHW\":\"Carregando webhooks\",\"E0DoRM\":\"Localização eliminada\",\"7w8lJU\":\"Localização guardada\",\"YsRXDD\":\"Localização atualizada\",\"A/kIva\":\"location updates\",\"iyZPPR\":\"localizações\",\"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\",\"PSRm6/\":\"Procurar os meus bilhetes\",\"yJFu/X\":\"Escritório principal\",\"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\":\"Gerir a lista de espera do seu evento, ver estatísticas e oferecer bilhetes aos participantes.\",\"g2npA5\":\"Oferta manual\",\"hg6l4j\":\"March\",\"pqRBOz\":\"Mark as validated (admin override)\",\"2L3vle\":\"Máx. mensagens / 24h\",\"Qp4HWD\":\"Máx. destinatários / mensagem\",\"3JzsDb\":\"May\",\"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\":\"Minutes\",\"zz/Wd/\":\"Mode\",\"fpMgHS\":\"Mon\",\"hty0d5\":\"Monday\",\"JbIgPz\":\"Os valores monetários são totais aproximados em todas as moedas\",\"qvF+MT\":\"Monitorar e gerir trabalhos de fundo falhados\",\"kY2ll9\":\"month\",\"HajiZl\":\"Mês\",\"+8Nek/\":\"Monthly\",\"1LkxnU\":\"Monthly Pattern\",\"6jefe3\":\"months\",\"f8jrkd\":\"more\",\"JcD7qf\":\"More actions\",\"w36OkR\":\"Eventos mais vistos (Últimos 14 dias)\",\"+Y/na7\":\"Move all dates earlier or later\",\"3DIpY0\":\"Multiple locations\",\"g9cQCP\":\"Multiple ticket types\",\"GfaxEk\":\"Música\",\"oVGCGh\":\"Meus Ingressos\",\"8/brI5\":\"O nome é obrigatório\",\"sFFArG\":\"O nome deve ter menos de 255 caracteres\",\"xxU3NX\":\"Receita Líquida\",\"7I8LlL\":\"New capacity\",\"n1GRql\":\"New label\",\"y0Fcpd\":\"Nova localização\",\"ArHT/C\":\"Novos registos\",\"uK7xWf\":\"New time:\",\"veT5Br\":\"Next occurrence\",\"WXtl5X\":[\"Next: \",[\"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\":\"No attendees to show\",\"PKySlW\":\"No attendees yet for this date.\",\"/UC6qk\":\"Nenhum dado de atribuição encontrado\",\"E2vYsO\":\"No capabilities reported by Stripe yet.\",\"amMkpL\":\"Sem capacidade\",\"d2Jf1f\":\"No change\",\"99ntUF\":\"Nenhuma lista de check-in disponível para este evento.\",\"wG+knX\":\"No check-ins yet\",\"+dAKxg\":\"Nenhuma configuração encontrada\",\"LiLk8u\":\"No connections available\",\"eb47T5\":\"Nenhum dado encontrado para os filtros selecionados. Tente ajustar o período ou a moeda.\",\"Zc216S\":\"No date added\",\"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\",\"OtJSnL\":\"Sem datas agendadas\",\"gEdNe8\":\"No dates scheduled yet\",\"pZNOT9\":\"Sem data de fim\",\"dW40Uz\":\"Nenhum evento encontrado\",\"8pQ3NJ\":\"Nenhum evento a iniciar nas próximas 24 horas\",\"8zCZQf\":\"Nenhum evento ainda\",\"Yc5YW6\":\"Sem trabalhos falhados\",\"EpvBAp\":\"Sem fatura\",\"XZkeaI\":\"Nenhum registro encontrado\",\"IcAC6J\":\"Nenhum tipo de letra correspondente\",\"nrSs2u\":\"Nenhuma mensagem encontrada\",\"Rj99yx\":\"No occurrences available\",\"IFU1IG\":\"No occurrences on this date\",\"OVFwlg\":\"Ainda não há perguntas de pedido\",\"EJ7bVz\":\"Nenhum pedido encontrado\",\"NEmyqy\":\"Nenhum pedido ainda\",\"a77B6w\":\"No orders yet for this date.\",\"wUv5xQ\":\"Sem atividade de organizador nos últimos 14 dias\",\"vLd1tV\":\"No organizer context available.\",\"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\":\"No products configured for this event.\",\"kY7XDn\":\"Nenhum produto tem entradas na lista de espera\",\"8mw4tm\":\"Mensagem de ausência de produtos\",\"wYiAtV\":\"Sem registos de contas recentes\",\"UW90md\":\"Nenhum destinatário encontrado\",\"QoAi8D\":\"Sem resposta\",\"JeO7SI\":\"Sem resposta\",\"EK/G11\":\"Ainda sem respostas\",\"59OWd3\":\"Sem localizações guardadas\",\"mPdY6W\":\"Sem sugestões\",\"3sRuiW\":\"Nenhum ingresso encontrado\",\"debCrL\":\"Sem bilhetes para vender\",\"k2C0ZR\":\"No upcoming dates\",\"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\":\"non-edited\",\"Itw24Q\":\"Not checked in\",\"x5+Lcz\":\"Não Registado\",\"8n10sz\":\"Não Elegível\",\"kLvU3F\":\"Notify attendees and stop sales\",\"t9QlBd\":\"November\",\"kAREMN\":\"Number of dates to create\",\"6u1B3O\":\"Occurrence\",\"mmoE62\":\"Occurrence Cancelled\",\"V9flmL\":\"Occurrence Schedule\",\"Kh3WO8\":\"Occurrence Summary\",\"byXCTu\":\"Occurrences\",\"KATw3p\":\"Occurrences (future only)\",\"85rTR2\":\"Occurrences can be configured after creation\",\"dzQfDY\":\"October\",\"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.\"],\"6Aih4U\":\"Offline\",\"nO3VbP\":[\"Em promoção \",[\"0\"]],\"oXOSPE\":\"Online\",\"aqmy5k\":\"Online — provide connection details\",\"LuZBbx\":\"Online & in-person\",\"IXuOqt\":\"Online & in-person — see schedule\",\"WjSpu5\":\"Evento online\",\"scPxI/\":[\"Apenas \",[\"capacity\"],\" restantes\"],\"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\",\"wkpaqp\":\"Mostrar apenas a data e hora de início\",\"DMk8F0\":\"Only tickets count toward capacity\",\"M2w1ni\":\"Apenas visível com código promocional\",\"y8Bm7C\":\"Open check-in\",\"RLz7P+\":\"Open occurrence\",\"cDSdPb\":\"Alcunha opcional mostrada nos seletores, p. ex. \\\"Sala de conferências\\\"\",\"HXMJxH\":\"Texto opcional para avisos legais, informações de contacto ou notas de agradecimento (apenas uma linha)\",\"L565X2\":\"opções\",\"8m9emP\":\"or add a single date\",\"eBskDE\":\"Ou ative os pagamentos offline e desative o Stripe\",\"dSeVIm\":\"order\",\"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\",\"xtQzag\":\"Order details\",\"vrSW9M\":\"O pedido foi cancelado e reembolsado. O proprietário do pedido foi notificado.\",\"rzw+wS\":\"Titulares de encomendas\",\"oI/hGR\":\"ID do Pedido\",\"RQCXz6\":\"Limites de Pedido\",\"SO9AEF\":\"Limites de pedido definidos\",\"vu6Arl\":\"Pedido marcado como pago\",\"sLbJQz\":\"Pedido não encontrado\",\"kvYpYu\":\"Pedido não encontrado\",\"eJ8SvM\":\"Order number, purchase date, purchaser email\",\"FaPYw+\":\"Proprietário do pedido\",\"eB5vce\":\"Proprietários de pedidos com um produto específico\",\"CxLoxM\":\"Proprietários de pedidos com produtos\",\"UkHo4c\":\"Ref. pedido\",\"EZy55F\":\"Pedido reembolsado\",\"6eSHqs\":\"Status dos pedidos\",\"oW5877\":\"Total do pedido\",\"e7eZuA\":\"Pedido atualizado\",\"1SQRYo\":\"Pedido atualizado com sucesso\",\"3NT0Ck\":\"O pedido foi cancelado\",\"V5khLm\":\"orders\",\"sd5IMt\":\"Encomendas concluídas\",\"5It1cQ\":\"Pedidos exportados\",\"UQ0ACV\":\"Total de encomendas\",\"B/EBQv\":\"Encomendas:\",\"qtGTNu\":\"Contas orgânicas\",\"P/JHA4\":\"Organizador arquivado com sucesso\",\"S3CZ5M\":\"Painel do organizador\",\"GzjTd0\":\"Organizador eliminado com sucesso\",\"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\":\"Organizers\",\"/IX/7x\":\"Outro\",\"RsiDDQ\":\"Outras Listas (Bilhete Não Incluído)\",\"aDfajK\":\"Outdoors\",\"qMASRF\":\"Mensagens de saída\",\"iCOVQO\":\"Override\",\"GpFTEc\":\"Override fees on this organizer\",\"M9ZhMP\":\"Override price\",\"cnVIpl\":\"Override removed\",\"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\":\"Past due\",\"xTPjSy\":\"Eventos passados\",\"/l/ckQ\":\"Cole a URL\",\"URAE3q\":\"Pausado\",\"4fL/V7\":\"Pagar\",\"c2/9VE\":\"Payload\",\"5cxUwd\":\"Data de pagamento\",\"ENEPLY\":\"Método de pagamento\",\"8Lx2X7\":\"Pagamento recebido\",\"fx8BTd\":\"Pagamentos não disponíveis\",\"C+ylwF\":\"Payouts\",\"UbRKMZ\":\"Pending\",\"UkM20g\":\"Revisão pendente\",\"dPYu1F\":\"Por participante\",\"mQV/nJ\":\"per min\",\"+kvxv+\":\"por encomenda\",\"VlXNyK\":\"Por pedido\",\"NhuGd7\":\"por produto\",\"hauDFf\":\"Por bilhete\",\"mnF83a\":\"Taxa Percentual\",\"TNLuRD\":\"Percentage fee (%)\",\"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\":\"Permanently remove this date\",\"6kPk3+\":\"Informações pessoais\",\"zmwvG2\":\"Telefone\",\"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\":\"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\":\"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\":\"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\":\"Please select a date and time\",\"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\":\"Position\",\"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\",\"Jm2AC3\":\"Price Tier\",\"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\":\"Product settings cannot be edited for cancelled dates.\",\"2339ej\":\"Product settings saved successfully\",\"ldVIlB\":\"Produto atualizado\",\"CP3D8G\":\"Progress\",\"JoKGiJ\":\"Código promocional\",\"k3wH7i\":\"Uso de códigos promocionais e detalhamento de descontos\",\"tZqL0q\":\"promo codes\",\"oCHiz3\":\"Promo codes\",\"uEhdRh\":\"Apenas Promoção\",\"dLm8V5\":\"Emails promocionais podem resultar na suspensão da conta\",\"W0ETyY\":\"Indique pelo menos um campo de morada (local, rua, cidade ou país).\",\"2W/7Gz\":\"Provide the following before Stripe's next review to keep payouts flowing.\",\"EEYbdt\":\"Publicar\",\"JcgJKc\":\"Publicar mesmo assim\",\"evDBV8\":\"Publicar evento\",\"2zEfOd\":\"Publish your event\",\"L7nrC8\":\"Ao publicar, a página do seu evento torna-se pública e as inscrições são abertas.\",\"dsFmM+\":\"Adquirido\",\"JunetL\":\"Purchaser\",\"phmeUH\":\"Purchaser email\",\"ywR4ZL\":\"QR code check-in\",\"oWXNE5\":\"Qtd.\",\"biEyJ4\":\"Question answers\",\"k/bJj0\":\"Perguntas reordenadas\",\"b24kPi\":\"Fila\",\"lTPqpM\":\"Quick Tip\",\"fqDzSu\":\"Taxa\",\"mnUGVC\":\"Limite de taxa excedido. Por favor, tente novamente mais tarde.\",\"t41hVI\":\"Reoferecer lugar\",\"TNclgc\":\"Reactivate this date? It will be reopened for future sales.\",\"RENQ6j\":\"Pronto para publicar?\",\"uqoRbb\":\"Real-time analytics\",\"xzRvs4\":[\"Receber atualizações de produtos do \",[\"0\"],\".\"],\"pLXbi8\":\"Registos de contas recentes\",\"M1HGuR\":\"Recent activity\",\"3kJ0gv\":\"Recent Attendees\",\"qhfiwV\":\"Recent check-ins\",\"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\",\"WEYdDv\":\"Recommended\",\"wuhHPE\":\"Recurring\",\"asLqwt\":\"Evento recorrente\",\"s3uzsK\":\"Definições de evento recorrente\",\"D0tAMe\":\"Recurring events\",\"JjMIKU\":\"Reddit\",\"HiGkFu\":\"Redirecionando para o Stripe...\",\"pnoTN5\":\"Contas de referência\",\"ACKu03\":\"Atualizar visualização\",\"vuFYA6\":\"Refund all orders for these dates\",\"4cRUK3\":\"Refund all orders for this date\",\"fKn/k6\":\"Valor do reembolso\",\"qY4rpA\":\"Reembolso falhou\",\"FaK/8G\":[\"Reembolsar pedido \",[\"0\"]],\"MGbi9P\":\"Reembolso pendente\",\"BDSRuX\":[\"Reembolsado: \",[\"0\"]],\"bU4bS1\":\"Reembolsos\",\"rYXfOA\":\"Configurações regionais\",\"5tl0Bp\":\"Perguntas de registro\",\"ZNo5k1\":\"Remaining\",\"Bjh87R\":\"Remove label from all dates\",\"IVZaEo\":\"Remove completamente as datas e horários esgotados da página do evento. Quando desativado, permanecem visíveis e são assinalados como esgotados.\",\"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\":\"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\":\"Reset to base price\",\"kCn6wb\":\"A redefinir...\",\"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\":\"results\",\"6gRgw8\":\"Tentar novamente\",\"1BG8ga\":\"Tentar tudo novamente\",\"rDC+T6\":\"Tentar trabalho novamente\",\"CbnrWb\":\"Voltar ao evento\",\"Lf7TCn\":\"Os locais reutilizáveis aparecem aqui automaticamente à medida que cria eventos com moradas, e também pode adicionar os seus.\",\"mdQ0zb\":\"Locais reutilizáveis para os seus eventos. As localizações criadas a partir do preenchimento automático são guardadas aqui automaticamente.\",\"XFOPle\":\"Reuse\",\"1Zehp4\":\"Reuse a Stripe connection from another organizer in this account.\",\"Oo/PLb\":\"Resumo de Receita\",\"CfuueU\":\"Revogar oferta\",\"RIgKv+\":\"Run until a specific date\",\"dFFW9L\":[\"Promoção terminou \",[\"0\"]],\"loCKGB\":[\"Promoção termina \",[\"0\"]],\"wlfBad\":\"Período de Promoção\",\"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\":\"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\":\"Sales, attendance, and check-in breakdown per occurrence\",\"3VnlS9\":\"Vendas, pedidos e métricas de desempenho para todos os eventos\",\"3Q1AWe\":\"Vendas:\",\"LeuERW\":\"Same as event\",\"B4nE3N\":\"Preço do bilhete de exemplo\",\"8BRPoH\":\"Local Exemplo\",\"PiK6Ld\":\"Sat\",\"+5kO8P\":\"Saturday\",\"zJiuDn\":\"Save fee override\",\"NB8Uxt\":\"Save Schedule\",\"KZrfYJ\":\"Salvar links sociais\",\"9Y3hAT\":\"Salvar modelo\",\"C8ne4X\":\"Guardar Design do Bilhete\",\"cTI8IK\":\"Save VAT settings\",\"6/TNCd\":\"Guardar Definições de IVA\",\"4RvD9q\":\"Localização guardada\",\"cgw0cL\":\"Localizações guardadas\",\"Fbqm/I\":\"Saving an override creates a dedicated configuration for this organizer if it's currently on the system default.\",\"I+FvbD\":\"Digitalizar\",\"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\":\"Agendar para mais tarde\",\"NAzVVw\":\"Agendar mensagem\",\"Fz09JP\":\"Schedule starts on\",\"4ba0NE\":\"Agendado\",\"qcP/8K\":\"Hora agendada\",\"A1taO8\":\"Search\",\"ftNXma\":\"Pesquisar afiliados...\",\"VMU+zM\":\"Search attendees\",\"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...\",\"YnMfsK\":\"Pesquisar por nome ou morada...\",\"VT+urE\":\"Pesquisar por nome ou e-mail...\",\"GHdjuo\":\"Pesquisar por nome, e-mail ou conta...\",\"4mBFO7\":\"Search by name, order #, ticket # or email\",\"20ce0U\":\"Pesquisar por ID do pedido, nome do cliente ou email...\",\"4DSz7Z\":\"Pesquisar por assunto, evento ou conta...\",\"nQC7Z9\":\"Search dates...\",\"iRtEpV\":\"Search dates…\",\"JRM7ao\":\"Search for an address\",\"BWF1kC\":\"Pesquisar mensagens...\",\"5WYZKZ\":\"Resultados da pesquisa\",\"IG85fV\":\"Pesquise localizações guardadas ou encontre uma morada...\",\"3aD3GF\":\"Seasonal\",\"ku//5b\":\"Second\",\"Mck5ht\":\"Checkout Seguro\",\"s7tXqF\":\"See schedule\",\"JFap6u\":\"See what Stripe still needs\",\"p7xUrt\":\"Selecione uma categoria\",\"hTKQwS\":\"Select a Date & Time\",\"Ps6Xtf\":\"Select a date to see available times\",\"e4L7bF\":\"Selecione uma mensagem para ver o seu conteúdo\",\"zPRPMf\":\"Selecionar um nível\",\"BFRSTT\":\"Selecionar Conta\",\"wgNoIs\":\"Select all\",\"mCB6Je\":\"Selecionar tudo\",\"aCEysm\":[\"Select all on \",[\"0\"]],\"a6+167\":\"Selecionar um evento\",\"CFbaPk\":\"Selecione o grupo de participantes\",\"88a49s\":\"Select camera\",\"tVW/yo\":\"Selecionar moeda\",\"SJQM1I\":\"Select date\",\"n9ZhRa\":\"Selecione data e hora de término\",\"gTN6Ws\":\"Selecionar hora de fim\",\"0U6E9W\":\"Selecionar categoria do evento\",\"j9cPeF\":\"Selecionar tipos de eventos\",\"ypTjHL\":\"Select occurrence\",\"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\":\"selected\",\"ylXj1N\":\"Selecionado\",\"uq3CXQ\":\"Sell out your event.\",\"oBXbO4\":\"Selling a physical product? Cap its quantity on the <0>products page instead.\",\"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\":\"Send to all occurrences, or choose a specific one\",\"QEQlnV\":\"Envie a sua primeira mensagem\",\"IoAuJG\":\"A enviar...\",\"h69WC6\":\"Enviado\",\"BVu2Hz\":\"Enviado por\",\"ZFa8wv\":\"Sent to attendees when a scheduled date is cancelled\",\"SPdzrs\":\"Enviado aos clientes quando fazem um pedido\",\"LxSN5F\":\"Enviado a cada participante com os detalhes do seu ingresso\",\"hgvbYY\":\"September\",\"5sN96e\":\"Session cancelled\",\"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\":\"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\":\"Configure listas de check-in para diferentes entradas, sessões ou dias.\",\"TaWVGe\":\"Set up payouts\",\"JA//e6\":\"Set up schedule\",\"gzXY7l\":\"Set Up Schedule\",\"0Ls9qe\":\"Set up the tickets you'll sell and their prices\",\"xMO+Ao\":\"Configure a sua organização\",\"5pEFnq\":\"Set up your schedule\",\"h/9JiC\":\"Set Up Your Schedule\",\"zRRuUD\":\"Set up your schedule in the next steps\",\"ETC76A\":\"Set, change, or remove the date's location or online details\",\"C3htzi\":\"Configuração atualizada\",\"Ohn74G\":\"Configuração e 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\":\"Partilhar link de afiliado\",\"hL7sDJ\":\"Compartilhar página do organizador\",\"jy6QDF\":\"Gestão de capacidade compartilhada\",\"jDNHW4\":\"Shift times\",\"tPfIaW\":[\"Shifted times for \",[\"count\"],\" date(s)\"],\"WwlM8F\":\"Mostrar opções avançadas\",\"cMW+gm\":[\"Mostrar todas as plataformas (\",[\"0\"],\" com valores)\"],\"wXi9pZ\":\"Show attendee notes to non-logged-in staff\",\"4LZFir\":\"Mostrar todo o intervalo de datas\",\"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\",\"b33PL9\":\"Mostrar mais plataformas\",\"Eut7p9\":\"Show order details to non-logged-in staff\",\"+RoWKN\":\"Show question answers to non-logged-in staff\",\"jbcx6L\":\"Show remaining capacity on event dates\",\"rXxBOx\":\"Show remaining capacity to buyers\",\"t1LIQW\":[\"A mostrar \",[\"0\"],\" de \",[\"totalRows\"],\" registos\"],\"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\":\"Registado\",\"5C7J+P\":\"Single Event\",\"E//btK\":\"Skip manually edited dates\",\"paESr6\":\"Eslovaco\",\"9wu8nm\":\"Snapchat\",\"kIKb9e\":\"Social\",\"d0rUsW\":\"Links sociais\",\"j/TOB3\":\"Links sociais e site\",\"s9KGXU\":\"Vendido\",\"yp+0jj\":\"sold out\",\"1hupow\":\"Esgotado, lista de espera disponível\",\"iACSrw\":\"Some details are hidden from public access. Log in to view everything.\",\"Dia6iz\":\"Something went wrong while deleting the image. Please try again.\",\"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\":\"Spirituality\",\"oPaRES\":\"Split check-in across days, areas, or ticket types. Share the link with staff — no account needed on their end.\",\"7JFNej\":\"Desporto\",\"/bfV1Y\":\"Staff instructions\",\"tXkhj/\":\"Start\",\"StWUH4\":\"Start check-in\",\"JcQp9p\":\"Data e hora de início\",\"0m/ekX\":\"Data e hora de início\",\"izRfYP\":\"A data de início é obrigatória\",\"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/\":\"Estatísticas\",\"GVUxAX\":\"As estatísticas são baseadas na data de criação da conta\",\"29Hx9U\":\"Stats\",\"5ia+r6\":\"Still needed\",\"wuV0bK\":\"Parar Personificação\",\"s/KaDb\":\"Stripe connected\",\"Bk06QI\":\"Stripe ligado\",\"akZMv8\":[\"Stripe connection copied from \",[\"0\"],\".\"],\"v0aRY1\":\"Stripe didn't return a setup link. Please try again.\",\"aKtF0O\":\"Stripe não conectado\",\"9i0++A\":\"ID de pagamento Stripe\",\"R1lIMV\":\"Stripe will need a few more details soon\",\"FzcCHA\":\"Stripe will walk you through a few quick questions to finish setup.\",\"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\",\"kRWc2g\":\"Definições de evento recorrente 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 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\":\"Sun\",\"DBC3t5\":\"Sunday\",\"UaISq3\":\"Sueco\",\"JZTQI0\":\"Trocar organizador\",\"9YHrNC\":\"Padrão do Sistema\",\"lruQkA\":\"Tap this screen to resume scanning\",\"TJUrME\":[\"Targeting attendees across \",[\"0\"],\" selected sessions.\"],\"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\":\"Team collaboration\",\"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\":\"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\":\"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\",\"nm3Iz/\":\"Obrigado por participar!\",\"pYwj0k\":\"Thanks,\",\"k3IitN\":\"That's a wrap\",\"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.\",\"7oksH+\":[\"O desconto é deduzido de cada produto elegível. Ex.: \",[\"currencySymbol\"],\"10 de desconto × 3 bilhetes = \",[\"currencySymbol\"],\"30 de desconto.\"],\"sKL8k2\":\"O desconto é deduzido uma única vez do total da encomenda.\",\"cDHM1d\":\"O endereço de e-mail foi alterado. O participante receberá um novo bilhete no endereço de e-mail atualizado.\",\"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\":\"The first date this schedule will generate from.\",\"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.\",\"Np4eLs\":[\"The maximum is \",[\"MAX_PREVIEW\"],\" sessions. Please reduce the date range, frequency, or number of sessions per day.\"],\"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\":\"The override is recorded in the order audit log.\",\"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\",\"OVSkIF\":\"A rápida raposa castanha salta sobre o cão preguiçoso.\",\"z0KrIG\":\"A hora agendada é obrigatória\",\"EWErQh\":\"A hora agendada deve ser no futuro\",\"UNd0OU\":[\"The session for \\\"\",[\"title\"],\"\\\" originally scheduled for \",[\"0\"],\" has been rescheduled.\"],\"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\",\"ybBP2H\":\"There are no products available for this date. Please choose another date.\",\"O7g4eR\":\"There are no upcoming dates for this event\",\"062KsE\":\"These details are shown on the attendee's ticket and order summary for this date only.\",\"5Eu+tn\":\"Estes detalhes só serão mostrados se a encomenda for concluída com sucesso.\",\"jQjwR+\":\"These details will replace any existing location on the affected dates and show on attendee tickets.\",\"6eaLu/\":\"Estes preços aplicam-se a todas as datas do seu calendário, e as quantidades dos escalões limitam as vendas totais de todas as datas em conjunto. As datas de venda dos escalões aplicam-se globalmente. Pode substituir os preços de datas individuais na <0>página de Calendário de datas.\",\"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\":\"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\":\"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/\":[\"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.\",\"E9BqZw\":\"This date only\",\"RzEvf5\":\"Este evento terminou\",\"kc4bIA\":\"Este evento ainda não tem bilhetes nem produtos, pelo que os participantes não poderão inscrever-se.\",\"eMaNd0\":\"This event is not available\",\"YClrdK\":\"Este evento ainda não foi publicado\",\"GL6z+k\":\"Este evento está esgotado\",\"pIwDhS\":\"This event's dates and times are set on the occurrence schedule.\",\"ny5rgr\":\"This is a recurring event\",\"tc64Zz\":\"Este é o nome da categoria que será apresentado na página do evento.\",\"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.\",\"5DpZrC\":\"Isto limita as vendas totais de todas as datas do seu calendário em conjunto — não é um limite por data. Para limitar a lotação de cada data, defina uma capacidade na <0>página de Calendário de datas.\",\"L7dIM7\":\"Este link é inválido ou expirou.\",\"MR5ygV\":\"Este link já não é válido\",\"9LEqK0\":\"Este nome é visível aos utilizadores finais\",\"QdUMM9\":\"This occurrence is at capacity\",\"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\",\"qEGn8I\":\"Este evento recorrente ainda não tem datas, pelo que os participantes não têm nada para reservar.\",\"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.\",\"1LuJNw\":\"Este bilhete já não é válido\",\"0Ew0uk\":\"Este bilhete acabou de ser digitalizado. Aguarde antes de digitalizar novamente.\",\"FYXq7k\":[\"This will affect \",[\"loadedAffectedCount\"],\" date(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\":\"Throughput\",\"+FjWgX\":\"Thu\",\"kkDQ8m\":\"Thursday\",\"0GSPnc\":\"Design do Bilhete\",\"EZC/Cu\":\"Design do bilhete guardado com sucesso\",\"bbslmb\":\"Designer de ingressos\",\"1BPctx\":\"Bilhete para\",\"HGuXjF\":\"Portadores de ingressos\",\"CMUt3Y\":\"Titulares de bilhetes\",\"awHmAT\":\"ID do bilhete\",\"6czJik\":\"Logotipo do Bilhete\",\"t79rDv\":\"Bilhete não encontrado\",\"6tmWch\":\"Ingresso ou produto\",\"1tfWrD\":\"Pré-visualização do bilhete para\",\"KnjoUA\":\"Preço do bilhete\",\"pGZOcL\":\"Bilhete reenviado com sucesso\",\"o02GZM\":\"Ticket sales have ended for this event\",\"8jLPgH\":\"Tipo de Bilhete\",\"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\":\"Time\",\"fXf2r5\":[\"Times shown in \",[\"timezoneAbbr\"]],\"dMtLDE\":\"to\",\"/jQctM\":\"Para\",\"tiI71C\":\"Para aumentar os seus limites, contacte-nos em\",\"ecUA8p\":\"Today\",\"W428WC\":\"Alternar colunas\",\"BRMXj0\":\"Tomorrow\",\"UBSG1X\":\"Melhores organizadores (Últimos 14 dias)\",\"3sZ0xx\":\"Total de Contas\",\"SMDzqJ\":\"Total de Participantes\",\"orBECM\":\"Total Cobrado\",\"k5CU8c\":\"Total de entradas\",\"4B7oCp\":\"Taxa total\",\"sMMlTX\":\"Total fees\",\"mlvCEl\":\"Total orders\",\"2AW/k5\":\"Quantidade total em todas as datas\",\"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álise\",\"GUA0Jy\":\"Try a different search term or filter\",\"2P/OWN\":\"Try adjusting your filters to see more dates.\",\"ouM5IM\":\"Tentar outro e-mail\",\"3DZvE7\":\"Experimente o Hi.Events gratuitamente\",\"vq2WxD\":\"Tue\",\"G3myU+\":\"Tuesday\",\"Kz91g/\":\"Turco\",\"GdOhw6\":\"Desativar som\",\"KUOhTy\":\"Ativar som\",\"dBeuY2\":\"Twitch\",\"QytzQr\":\"Escreva \\\"eliminar\\\" para confirmar\",\"nWRfmt\":\"Tipografia\",\"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\":\"Unable to load attendee details.\",\"GlnD5Y\":\"Unable to load products for this date. Please try again.\",\"17VbmV\":\"Unable to undo check-in\",\"n57zCW\":\"Contas não atribuídas\",\"9uI/rE\":\"Undo\",\"Ef7StM\":\"Desconhecido\",\"ZBAScj\":\"Participante desconhecido\",\"MEIAzV\":\"Sem nome\",\"K6L5Mx\":\"Localização sem nome\",\"7yiFvZ\":\"Não pago\",\"X13xGn\":\"Não confiável\",\"gyXpQN\":\"Upcoming events\",\"Pp1sWX\":\"Atualizar afiliado\",\"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\":\"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\":\"USB scanner listening\",\"dyTklH\":\"USB scanner paused\",\"OHJXlK\":\"Use <0>modelos Liquid para personalizar os seus emails\",\"/rsy72\":\"Use event default\",\"0k4cdb\":\"Usar detalhes do pedido para todos os participantes. Os nomes e e-mails dos participantes corresponderão às informações do comprador.\",\"bA31T4\":\"Usar os dados do comprador para todos os participantes\",\"PpgtnC\":\"Usar esta morada\",\"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\":\"VAT number\",\"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\":\"VAT registered\",\"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\":\"VAT settings updated\",\"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\":\"VAT: not registered\",\"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\":\"View All\",\"yA/6BX\":\"View all →\",\"6CQ7/B\":\"View all capabilities\",\"YSE15b\":\"View all check-in lists\",\"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\":[\"View details for \",[\"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\":\"Waiting for scan…\",\"u0n+wz\":\"Lista de espera\",\"3RXFtE\":\"Lista de espera ativada\",\"TwnTPy\":\"Oferta da lista de espera expirou\",\"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.\",\"aT/44s\":\"We couldn't copy that Stripe connection. Please try again.\",\"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.\",\"Fjj/5/\":\"We couldn't load the check-in lists. Please try again.\",\"ADsQ23\":\"We couldn't reach Stripe just now. Please try again in a moment.\",\"HJKdzP\":\"Ocorreu um problema ao carregar esta página. Por favor, tente novamente.\",\"jegrvW\":\"We partner with Stripe to send payouts straight to your bank account.\",\"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\":\"Usamos cookies para nos ajudar a perceber como o site é utilizado e 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.\",\"mfM/HJ\":[\"Notificá-lo-emos por e-mail se um lugar ficar disponível para \",[\"productDisplayName\"],\" em \",[\"occurrenceDate\"],\".\"],\"iy+M+c\":[\"Notificá-lo-emos por e-mail se um lugar ficar disponível para \",[\"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\":\"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\":[\"We've made changes to the schedule for \\\"\",[\"title\"],\"\\\" — \",[\"description\"],\" affecting \",[\"affectedCount\"],\" session(s).\"],\"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\":\"Webhook integrations\",\"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\":\"Wed\",\"VAcXNz\":\"Wednesday\",\"64X6l4\":\"week\",\"4XSc4l\":\"Weekly\",\"IAUiSh\":\"weeks\",\"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\":\"Wellness\",\"ywRaYa\":\"What time?\",\"FaSXqR\":\"Que tipo de evento?\",\"0WyYF4\":\"What unauthenticated staff can see\",\"2+ExvJ\":\"WhatsApp\",\"cxsKvw\":\"Quando um check-in é excluído\",\"RPe6bE\":\"When a date is cancelled on a recurring event\",\"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 entrar numa lista de espera para serem notificados quando lugares ficarem disponíveis.\",\"OIkHj+\":\"Quando um produto esgota, os clientes podem entrar numa lista de espera para serem notificados quando lugares ficarem disponíveis. Os clientes juntam-se à lista de espera para uma data específica e as ofertas são feitas por data.\",\"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\":\"Quando os clientes comprarem ingressos, os pedidos aparecerão aqui.\",\"pm9tpn\":\"Quando ativado, os compradores podem copiar o seu nome e e-mail para todos os participantes de uma só vez. Desative para remover a opção \\\"Todos os participantes\\\"; os compradores podem ainda copiar para o primeiro participante, e os restantes têm de ser introduzidos individualmente.\",\"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.\",\"uchB0M\":\"Pré-visualização do widget\",\"uvIqcj\":\"Workshop\",\"EpknJA\":\"Escreva sua mensagem aqui...\",\"nhtR6Y\":\"X (Twitter)\",\"7qI8sJ\":\"year\",\"zkWmBh\":\"Yearly\",\"+BGee5\":\"years\",\"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+\":\"You can override this for individual dates later.\",\"paWwQ0\":\"Ainda pode oferecer bilhetes manualmente, se necessário.\",\"jTDzpA\":\"Não pode arquivar o último organizador ativo da sua conta.\",\"D8baxD\":\"Tem bilhetes pagos, mas o Stripe ainda não está ligado, pelo que não pode aceitar pagamentos.\",\"5VGIlq\":\"Atingiu o seu limite de mensagens.\",\"casL1O\":\"Você adicionou taxas e impostos a um produto gratuito. Deseja removê-los?\",\"9jJNZY\":\"Deve 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/\":\"You need to create at least one occurrence before you can add attendees to this recurring event.\",\"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\":\"You'll be able to set up dates, schedules, and recurrence rules in the next step.\",\"zKAheG\":\"You're changing session times\",\"MNFIxz\":[\"Vai participar em \",[\"0\"],\"!\"],\"ZlLcht\":[\"Está a juntar-se à lista de espera para \",[\"occurrenceDate\"],\".\"],\"qGZz0m\":\"Está na lista de espera!\",\"/5HL6k\":\"Foi-lhe oferecido um lugar!\",\"gbjFFH\":\"You've changed the session time\",\"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\":\"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\":\"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 entrar na lista de espera para ser notificado quando mais lugares ficarem 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://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\":\"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\":\"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\":\"Are you sure you want to make this event public? This will make the event visible to the public\",\"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\":\"Attendee Notes\",\"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\":\"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 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\":\"Personalize a página do seu evento\",\"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\":\"Dismiss\",\"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\":\"Event URL\",\"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\":\"No attendees have been added to this order.\",\"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\":\"No product associated with this attendee.\",\"Ya1JhR\":\"Nenhum produto disponível nesta categoria.\",\"FTfObB\":\"Nenhum Produto Ainda\",\"+Y976X\":\"Nenhum código promocional para mostrar\",\"MAavyl\":\"No questions answered by this attendee.\",\"SnlQeq\":\"No questions have been asked for this order.\",\"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\":\"Online event\",\"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\":\"Order #\",\"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\":\"Order Notes\",\"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\":\"Desenvolvido 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 ou instruções adicionais para esta pergunta. Use este campo para adicionar termos\\ne condições, diretrizes ou qualquer informação importante que os participantes precisem 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\":\"San 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\":\"Suite 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\":\"View\",\"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\":\"(none)\",\"xYxQCZ\":[[\"0\"],\" \",[\"1\"]],\"lAOy2r\":[[\"0\"],\" \",[\"1\"],\" já fez check-in\"],\"3beCx0\":[[\"0\"],\" <0>checked in\"],\"S4PqS9\":[[\"0\"],\" webhooks ativos\"],\"6MIiOI\":[[\"0\"],\" restante\"],\"COnw8D\":[\"Logo \",[\"0\"]],\"xG9N0H\":[[\"0\"],\" of \",[\"1\"],\" seats are taken.\"],\"B7pZfX\":[[\"0\"],\" organizadores\"],\"/HkCs4\":[[\"0\"],\" bilhetes\"],\"30bTiU\":[[\"activeCount\"],\" enabled\"],\"jTs4am\":[[\"appName\"],\" logo\"],\"gbJOk9\":[[\"attendeeCount\"],\" attendees are registered for this session.\"],\"TjbIUI\":[[\"availableCount\"],\" de \",[\"totalCount\"],\" disponíveis\"],\"PSChHo\":[[\"capacity\"],\" vagas restantes\"],\"lzQ8/M\":[[\"checkedIn\"],\" / \",[\"total\"],\" checked in\"],\"RZ0JX3\":[[\"chipTime\"],\", esgotado\"],\"M4KnFs\":[[\"chipTime\"],\", Esgotado, lista de espera disponível\"],\"SeyN12\":[[\"completedCount\"],\" of \",[\"totalCount\"],\" steps complete\"],\"f2rhaD\":[[\"diffHr\"],\"h ago\"],\"NRSLBe\":[[\"diffMin\"],\"m ago\"],\"iYfwJE\":[[\"diffSec\"],\"s ago\"],\"OJnhhX\":[[\"eventCount\"],\" eventos\"],\"mhZbzw\":[[\"loadedAffectedAttendees\"],\" attendees are registered across the affected sessions.\"],\"RBuxIl\":[[\"productCount\"],\" ticket types configured\"],\"VFLd0I\":[[\"slotCount\"],\" times available\"],\"3IEF7U\":[[\"totalCount\"],\" tipos de bilhetes\"],\"0cLzoF\":[[\"totalOccurrences\"],\" dates\"],\"AEGc4t\":[[\"totalOccurrences\"],\" sessions across \",[\"0\"],\" dates (\",[\"1\",\"plural\",{\"one\":[\"#\",\" session\"],\"other\":[\"#\",\" sessions\"]}],\" per day)\"],\"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.\",\"Il5Uid\":\"<0>Esta é a quantidade total disponível para todas as datas do seu calendário em conjunto — não é um limite por data. Para limitar a lotação de cada data, defina uma capacidade na <1>página de Calendário de datas.\",\"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 attendee is registered across the affected sessions.\",\"qOyE2U\":\"1 attendee is registered for this session.\",\"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\",\"y2Jh0m\":\"1 time available\",\"cGtUz6\":\"1 semana antes do evento\",\"HR/cvw\":\"Rua Exemplo 123\",\"dgKxZ5\":\"135+ currencies & 40+ payment methods\",\"kMU5aM\":\"Um aviso de cancelamento foi enviado para\",\"o++0qa\":\"a change in duration\",\"WuWSX5\":\"A few quick steps and you're ready to start selling.\",\"RQ5kDd\":\"Uma mensagem a apresentar quando não existirem produtos nesta categoria.\",\"V53XzQ\":\"Um novo código de verificação foi enviado para o seu email\",\"sr2Je0\":\"a shift in start/end times\",\"/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\":[\"Account · \",[\"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\":\"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\":\"Adicione perguntas personalizadas para coletar informações adicionais durante o checkout\",\"Z/dcxc\":\"Add Date\",\"QeupRg\":\"Adicionar datas\",\"Q219NT\":\"Add Dates\",\"yjB5VC\":\"Add dates and times for your recurring event\",\"Z8idyM\":\"Add details\",\"wpirGs\":\"Add event details\",\"VX6WUv\":\"Adicionar localização\",\"GCQlV2\":\"Add multiple times if you run several sessions per day.\",\"7JF9w9\":\"Adicionar pergunta\",\"NLbIb6\":\"Add this attendee anyway (override capacity)\",\"6PNlRV\":\"Adicione este evento ao seu calendário\",\"BGD9Yt\":\"Adicionar ingressos\",\"uIv4Op\":\"Adicione pixels de rastreamento às suas páginas de eventos públicos 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\":\"Affiliate program\",\"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.\",\"3e31kI\":\"After your event is created, you can choose how often it repeats from the dashboard.\",\"z7GAMJ\":\"all\",\"N40H+G\":\"All\",\"7rLTkE\":\"Todos os eventos arquivados\",\"gKq1fa\":\"Todos os participantes\",\"63gRoO\":\"All attendees of the selected sessions\",\"uWxIoH\":\"All attendees of this occurrence\",\"pMLul+\":\"Todas as moedas\",\"sgUdRZ\":\"All dates\",\"e4q4uO\":\"All Dates\",\"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\":\"All matching dates\",\"F1/VgK\":\"All occurrences\",\"OpWjMq\":\"All Occurrences\",\"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.\",\"VZdky1\":\"Permitir que os compradores copiem os seus dados para todos os participantes\",\"F3mW5G\":\"Permitir que os clientes se juntem a uma lista de espera quando este produto estiver esgotado\",\"4CMO/q\":\"Permitir que os clientes se juntem a uma lista de espera quando este produto estiver esgotado. Os clientes juntam-se à lista de espera para uma data específica.\",\"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\":\"Already in\",\"/H326L\":\"Já reembolsado\",\"USEpOK\":\"Already use Stripe on another organizer? Reuse that connection.\",\"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.\",\"OPFdAM\":\"Uma descrição opcional desta categoria a apresentar na página do evento.\",\"eusccx\":\"Uma mensagem opcional para exibir no produto destacado, por exemplo \\\"A vender rapidamente 🔥\\\" ou \\\"Melhor valor\\\"\",\"5GJuNp\":[\"and \",[\"0\"],\" more...\"],\"QNrkms\":\"Resposta atualizada com sucesso.\",\"+qygei\":\"Answers\",\"GK7Lnt\":\"Answers provided at checkout (e.g. meal choice)\",\"lE8PgT\":\"Any dates you've manually customized will be kept.\",\"jVoYha\":[\"aplicado — \",[\"0\"],\" de desconto na sua encomenda\"],\"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\":\"Aprovar mensagem\",\"naCW6Z\":\"April\",\"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\":[\"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\":\"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/\":\"Are you sure you want to delete this date? This action cannot be undone.\",\"RiF/yT\":\"Are you sure you want to delete this image?\",\"b3+Qku\":\"Are you sure you want to delete this tax or fee? It will no longer be applied to new orders.\",\"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\":\"Are you sure you want to permanently delete this date? This cannot be undone.\",\"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?\",\"b7tkGp\":\"Are you sure you want to revoke this invitation?\",\"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\":\"Assign plan\",\"xdiER7\":\"Nível atribuído\",\"F2rX0R\":\"Pelo menos um tipo de evento deve ser selecionado\",\"Z44eZS\":\"At least one product must stay available for this date. To make the date inaccessible, cancel it from the schedule instead.\",\"BCmibk\":\"Tentativas\",\"6PecK3\":\"Presença e taxas de registo em todos os eventos\",\"K2tp3v\":\"attendee\",\"AJ4rvK\":\"Participante cancelado\",\"qvylEK\":\"Participante criado\",\"Aspq3b\":\"Coleta de dados dos participantes\",\"fpb0rX\":\"Dados do participante copiados do pedido\",\"94aQMU\":\"Informações do participante\",\"KkrBiR\":\"Recolha de informações do participante\",\"sjPjOg\":\"Attendee notes\",\"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\":\"attendees\",\"zLRobu\":\"attendees checked 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/\":\"August\",\"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\":\"Oferecer automaticamente bilhetes à próxima pessoa quando a capacidade ficar disponível. Se desativado, pode processar manualmente a lista de espera a partir da página Lista de Espera.\",\"csDS2L\":\"Disponível\",\"Xp+ywP\":\"Disponível assim que o pagamento for concluído\",\"dwDH1K\":[\"Available times on \",[\"dayName\"]],\"clF06r\":\"Disponível para reembolso\",\"NB5+UG\":\"Tokens disponíveis\",\"L+wGOG\":\"Awaiting\",\"qcw2OD\":\"Awaiting pay\",\"kNmmvE\":\"Awesome Events Lda.\",\"TeSaQO\":\"Voltar para Contas\",\"kYqM1A\":\"Voltar ao evento\",\"s5QRF3\":\"Voltar às mensagens\",\"td/bh+\":\"Voltar aos Relatórios\",\"nsm7BA\":\"Voltar à pesquisa\",\"imjKVx\":\"Bank account connected\",\"D9LTCH\":\"Base Price\",\"hviJef\":\"Based on the global sale period above, not per date\",\"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\":\"Built-in fraud protection\",\"cr7kGH\":\"Bulk Edit\",\"1Fbd6n\":\"Bulk Edit Dates\",\"Eq6Tu9\":\"Bulk update failed.\",\"9N+p+g\":\"Negócios\",\"SWnN1L\":\"Business address\",\"kQekXw\":\"Business name\",\"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, reconhece que você e esta plataforma são responsáveis conjuntos pelos dados recolhidos. É responsável por garantir que tem uma base legal para este processamento 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\":\"By day of month\",\"0MnNgi\":\"By day of week\",\"CetOZE\":\"By ticket type\",\"lFdbRS\":\"Ignorar taxas de aplicação\",\"AjVXBS\":\"Calendar\",\"2VLZwd\":\"Botão de chamada para ação\",\"rT2cV+\":\"Camera\",\"7hYa9y\":\"Camera permission was denied. <0>Request permission again, or grant this page camera access in your browser settings.\",\"D02dD9\":\"Campanha\",\"RRPA79\":\"Can't check in\",\"OcVwAd\":[\"Cancel \",[\"count\"],\" date(s)\"],\"H4nE+E\":\"Cancelar todos os produtos e devolvê-los ao conjunto disponível\",\"Py78q9\":\"Cancel Date\",\"tOXAdc\":\"Cancelar irá cancelar todos os participantes associados a este pedido e devolver os bilhetes ao conjunto disponível.\",\"FPpqc7\":[\"Cancelling \",[\"0\"],\" date(s). This may take a moment to complete.\"],\"01sEfm\":\"Não é possível excluir a configuração padrão do sistema\",\"VsM1HH\":\"Atribuições de capacidade\",\"9bIMVF\":\"Capacity management\",\"H7K8og\":\"Capacity must be 0 or greater\",\"nzao08\":\"capacity updates\",\"4cp9NP\":\"Capacity Used\",\"K7tIrx\":\"Categoria\",\"DRK3Bq\":\"Category deleted successfully\",\"o+XJ9D\":\"Alterar\",\"kJkjoB\":\"Change duration\",\"J0KExZ\":\"Change the attendee limit\",\"ssospy\":\"Change time\",\"CIHJJf\":\"Alterar configurações da lista de espera\",\"B5icLR\":[\"Changed duration for \",[\"count\"],\" date(s)\"],\"Kb+0BT\":\"Charges\",\"2tbLdK\":\"Caridade\",\"BPWGKn\":\"Check in\",\"6uFFoY\":\"Check out\",\"FjAlwK\":[\"Check out this event: \",[\"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 for \",[\"0\"],\" was undone\"],\"9s/wrQ\":\"Check-in history\",\"Wwztk4\":\"Check-In List\",\"9gPPUY\":\"Lista de Check-In Criada!\",\"dwjiJt\":\"Check-in list info\",\"7od0PV\":\"check-in lists\",\"f2vU9t\":\"Listas de Registo\",\"XprdTn\":\"Check-in navigation\",\"5tV1in\":\"Check-in progress\",\"SHJwyq\":\"Taxa de registo\",\"qCqdg6\":\"Estado do Check-In\",\"cKj6OE\":\"Resumo de Registo\",\"7B5M35\":\"Check-Ins\",\"VrmydS\":\"Checked in\",\"DM4gBB\":\"Chinês (Tradicional)\",\"p8Jvp4\":\"Choose a configuration\",\"ElShBO\":\"Choose a different action\",\"pHEhf+\":\"Escolha um tipo de letra que combine com a sua marca. Os tipos de letra são alojados via Bunny Fonts.\",\"Zok1Gx\":\"Choose an organizer\",\"pkk46Q\":\"Escolha um organizador\",\"Ag32+c\":\"Choose another date\",\"Crr3pG\":\"Escolher calendário\",\"Z38ZJu\":\"Escolha como a data do evento é apresentada no bilhete\",\"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\":\"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\":\"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\":\"complete\",\"bUQMpb\":\"Complete Stripe setup\",\"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\":\"Configuration assigned\",\"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 which products are available for this occurrence and optionally adjust pricing.\",\"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\",\"/K4Vqr\":\"Ligue o Stripe para aceitar pagamentos\",\"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\":\"Os detalhes de ligação são obrigatórios para eventos online\",\"jfC/xh\":\"Contato\",\"LOFgda\":[\"Contato \",[\"0\"]],\"41BQ3k\":\"Email de contacto\",\"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\",\"s30OcA\":\"Controle como as datas e horários são apresentados na página do evento\",\"p2FRHj\":\"Controle como as taxas da plataforma são tratadas para este evento\",\"NqfabH\":\"Control who gets in for this date\",\"fmYxZx\":\"Control who gets in, and when\",\"1JnTgU\":\"Copiado de cima\",\"FxVG/l\":\"Copiado para a área de transferência\",\"PiH3UR\":\"Copiado!\",\"4i7smN\":\"Copy account ID\",\"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\":\"Could not prepare the bulk update.\",\"KOavaU\":\"Não foi possível obter os detalhes da morada\",\"/lq4oO\":\"Could not save date\",\"mHu0az\":\"Couldn't send verification email. Please try again.\",\"QOIm+S\":\"As contagens incluem todas as datas futuras. A cada pessoa é oferecido um lugar para a data em que se inscreveu.\",\"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\":\"Covers every ticket\",\"zg4oSu\":[\"Criar modelo \",[\"0\"]],\"RKKhnW\":\"Crie um widget personalizado para vender ingressos no seu site.\",\"6sk7PP\":\"Create a fixed number\",\"jqhTmw\":\"Create a list for this date\",\"PhioFp\":\"Create a new check-in list for an active session, or contact the organizer if you think this is a mistake.\",\"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\":\"Create Date\",\"Nc3l/D\":\"Crie descontos, códigos de acesso para ingressos ocultos e ofertas especiais.\",\"PybJS2\":\"Create event\",\"eWEV9G\":\"Criar nova senha\",\"wl2iai\":\"Create Schedule\",\"8AiKIu\":\"Criar ingresso ou produto\",\"/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\":\"Crie seu primeiro evento para começar a vender ingressos e gerenciar participantes.\",\"ZCSSd+\":\"Crie seu próprio evento\",\"qdv10s\":[\"A criar \",[\"0\"],\" datas. Isto pode demorar um momento.\"],\"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\":\"Currently assigned\",\"iTvh6I\":\"Atualmente disponível para compra\",\"A42Dqn\":\"Custom branding\",\"Guo0lU\":\"Data e hora personalizadas\",\"WDMdn8\":\"Custom questions\",\"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\",\"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\":\"Daily\",\"/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\":\"Dance\",\"pvnfJD\":\"Escuro\",\"MaB9wW\":\"Date Cancellation\",\"e6cAxJ\":\"Date cancelled\",\"81jBnC\":\"Date cancelled successfully\",\"a/C/6R\":\"Date created successfully\",\"IW7Q+u\":\"Date deleted\",\"rngCAz\":\"Date deleted successfully\",\"vHbfoQ\":\"Date reactivated\",\"hvah+S\":\"Date reopened for new sales\",\"Ez0YsD\":\"Date updated successfully\",\"Te33mU\":\"Dates are managed per occurrence\",\"91zCxb\":\"Dates with sessions\",\"/ITcnz\":\"day\",\"H7OUPr\":\"Day\",\"JtHrX9\":\"Day of Month\",\"J/Upwb\":\"days\",\"vDVA2I\":\"Days of Month\",\"rDLvlL\":\"Days of Week\",\"r6zgGo\":\"December\",\"jbq7j2\":\"Recusar\",\"ovBPCi\":\"Padrão\",\"JtI4vj\":\"Recolha predefinida de informações do participante\",\"ULjv90\":\"Default capacity per date\",\"3R/Tu2\":\"Gestão de taxas padrão\",\"1bZAZA\":\"O modelo padrão será usado\",\"HNlEFZ\":\"eliminar\",\"KpnwJK\":[\"Eliminar \\\"\",[\"0\"],\"\\\"?\"],\"BlII4o\":[\"Delete \",[\"count\"],\" selected date(s)? Dates with orders will be skipped. This cannot be undone.\"],\"vu7gDm\":\"Eliminar afiliado\",\"KZN4Lc\":\"Eliminar tudo\",\"6EkaOO\":\"Delete Date\",\"io0G93\":\"Eliminar evento\",\"+jw/c1\":\"Excluir imagem\",\"hdyeZ0\":\"Eliminar trabalho\",\"xxjZeP\":\"Eliminar localização\",\"sY3tIw\":\"Eliminar organizador\",\"UBv8UK\":\"Delete Permanently\",\"dPyJ15\":\"Excluir modelo\",\"IQTR34\":\"Delete this category? Any products in it will also be deleted. This cannot be undone.\",\"/1wMxk\":\"Delete this product? This cannot be undone.\",\"mxsm1o\":\"Excluir esta pergunta? Isso não pode ser desfeito.\",\"snMaH4\":\"Excluir webhook\",\"LIZZLY\":[\"Deleted \",[\"0\"],\" date(s)\"],\"7w0Wev\":\"Description and venue added\",\"vYgeDk\":\"Desselecionar tudo\",\"NvuEhl\":\"Elementos de Design\",\"H8kMHT\":\"Não recebeu o código?\",\"G8KNgd\":\"Different location\",\"E/QGRL\":\"Disabled\",\"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.\",\"HtaSQp\":\"Mostra quantas vagas restam em cada data no widget de bilhetes. Pode substituir esta definição para datas individuais.\",\"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\":\"Door staff instructions\",\"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 alto risco de spam, deve conectar uma conta Stripe antes de poder enviar mensagens aos participantes.\\nIsto é para garantir que todos os organizadores de eventos são verificados e responsáveis.\",\"euc6Ns\":\"Duplicar\",\"YueC+F\":\"Duplicate Date\",\"KRmTkx\":\"Duplicar produto\",\"Jd3ymG\":\"Duration must be at least 1 minute.\",\"KIjvtr\":\"Holandês\",\"22xieU\":\"ex. 180 (3 horas)\",\"/zajIE\":\"e.g. Morning Session\",\"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.\",\"Xfsjel\":\"Cada produto\",\"5oD9f/\":\"Earlier\",\"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\":\"Edit Date\",\"m0ZqOT\":\"Editar localização\",\"8oivFT\":\"Editar localização\",\"vRWOrM\":\"Editar detalhes do pedido\",\"fW5sSv\":\"Editar webhook\",\"nP7CdQ\":\"Editar Webhook\",\"MRZxAn\":\"Edited\",\"uBAxNB\":\"Editor\",\"aqxYLv\":\"Educação\",\"iiWXDL\":\"Falhas de elegibilidade\",\"zPiC+q\":\"Listas de Check-In Elegíveis\",\"SiVstt\":\"Email & scheduled messages\",\"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\":\"Embeddable widget\",\"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\":\"End\",\"sGjBEq\":\"Data e hora de término (opcional)\",\"PKXt9R\":\"A data de término deve ser posterior à data de início\",\"ZayGC7\":\"End on a date\",\"48Y16Q\":\"Hora de fim (opcional)\",\"TbaYrr\":[\"Ended \",[\"0\"]],\"CFgwiw\":[\"Ends \",[\"0\"]],\"SqOIQU\":\"Enter a capacity value or choose unlimited.\",\"h37gRz\":\"Enter a label or choose to remove it.\",\"7YZofi\":\"Digite um assunto e corpo para ver a visualização\",\"khyScF\":\"Enter a time to shift by.\",\"SKx/0u\":\"Introduza um nome de local ou uma morada\",\"ppwojw\":\"Introduza um nome de local ou morada para eventos presenciais\",\"j+eCIq\":\"Introduzir a morada manualmente\",\"3bR1r4\":\"Introduza o email do afiliado (opcional)\",\"ARkzso\":\"Introduza o nome do afiliado\",\"ej4L8b\":\"Enter capacity\",\"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)\",\"RRlWVA\":\"Encomenda inteira\",\"o21Y+P\":\"entries\",\"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\",\"+v+GW0\":\"Apresentação da data do evento\",\"7u9/DO\":\"Evento eliminado com sucesso\",\"imgKgl\":\"Descrição do evento\",\"IzR/Fc\":\"Event lifetime\",\"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\",\"mImacG\":\"Página do Evento\",\"Hk9Ki/\":\"Evento restaurado com sucesso\",\"JyD0LH\":\"Configurações do evento\",\"XVLu2v\":\"Título do evento\",\"OfmsI9\":\"Evento muito recente\",\"4SILkp\":\"Event totals\",\"YDVUVl\":\"Tipos de eventos\",\"+HeiVx\":\"Evento atualizado\",\"19j6uh\":\"Desempenho de Eventos\",\"PC3/fk\":\"Eventos a Iniciar nas Próximas 24 Horas\",\"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\":\"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\":\"Failed to cancel date\",\"YUX+f+\":\"Failed to cancel dates\",\"SIHgVQ\":\"Falha ao cancelar mensagem\",\"cEFg3R\":\"Falha ao criar afiliado\",\"dVgNF1\":\"Falha ao criar configuração\",\"fAoRRJ\":\"Failed to create schedule\",\"4yLYTb\":\"Falha ao criar o calendário. Por favor, tente novamente.\",\"U66oUa\":\"Falha ao criar modelo\",\"aFk48v\":\"Falha ao excluir configuração\",\"n1CYMH\":\"Failed to delete date\",\"KXv+Qn\":\"Failed to delete date. It may have existing orders.\",\"JJ0uRo\":\"Failed to delete dates\",\"rgoBnv\":\"Falha ao eliminar o evento\",\"Zw6LWb\":\"Falha ao eliminar trabalho\",\"tq0abZ\":\"Falha ao eliminar trabalhos\",\"2mkc3c\":\"Falha ao eliminar o organizador\",\"5E23qd\":\"Failed to delete product. Please try again.\",\"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\":\"Failed to reactivate date\",\"7zyx8a\":\"Falha ao remover da lista de espera\",\"A/P7PX\":\"Failed to remove override\",\"ogWc1z\":\"Failed to reopen date\",\"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\":\"Failed to save override\",\"sj/eZA\":\"Failed to save price override\",\"780n8A\":\"Failed to save product settings\",\"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 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\":\"Family\",\"5LO38w\":\"Fast payouts to your bank\",\"4lgLew\":\"February\",\"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\":\"Film\",\"L1qbUx\":\"Filter attendees\",\"8OvVZZ\":\"Filtrar Participantes\",\"N/H3++\":\"Filter by date\",\"mvrlBO\":\"Filtrar por evento\",\"g+xRXP\":\"Finish setting up Stripe\",\"LHH461\":\"Finish setup\",\"syyeb9\":\"First\",\"Vj6wk9\":\"First 30 days\",\"/bpZYb\":\"First 7 days\",\"ziEnjY\":\"First 90 days\",\"1vBhpG\":\"Primeiro participante\",\"4pwejF\":\"O primeiro nome é obrigatório\",\"rVogsf\":\"Corrija os problemas para publicar\",\"3lkYdQ\":\"Fixed fee\",\"6bBh3/\":\"Taxa Fixa\",\"zWqUyJ\":\"Taxa fixa cobrada por transação\",\"LWL3Bs\":\"A taxa fixa deve ser 0 ou maior\",\"0RI8m4\":\"Flash off\",\"q0923e\":\"Flash on\",\"X+U6/w\":\"Família de tipos de letra\",\"lWxAUo\":\"Comida e bebida\",\"nFm+5u\":\"Texto do Rodapé\",\"a8nooQ\":\"Fourth\",\"wtuVU4\":\"Frequency\",\"xVhQZV\":\"Fri\",\"39y5bn\":\"Friday\",\"f5UbZ0\":\"Full data ownership\",\"cfvx/y\":\"Full event\",\"MY2SVM\":\"Reembolso total\",\"PGQLdy\":\"future\",\"8N/j1s\":\"Future dates only\",\"yRx/6K\":\"Future dates will be copied with capacity reset to zero\",\"T02gNN\":\"Admissão Geral\",\"3ep0Gx\":\"Informações gerais sobre seu organizador\",\"ziAjHi\":\"Gerar\",\"exy8uo\":\"Gerar código\",\"4CETZY\":\"Obter direções\",\"pjkEcB\":\"Get Paid\",\"lGYzP6\":\"Get paid with Stripe\",\"ZDIydz\":\"Começar\",\"u6FPxT\":\"Obter Bilhetes\",\"8KDgYV\":\"Prepare seu evento\",\"RkXlPZ\":\"GitHub\",\"sr0UJD\":\"Go Back\",\"oNL5vN\":\"Ir para a página do evento\",\"gHSuV/\":\"Ir para a página inicial\",\"8+Cj55\":\"Go to Schedule\",\"6nDzTl\":\"Boa legibilidade\",\"76gPWk\":\"Got it\",\"CZXzs4\":\"Grego\",\"aGWZUr\":\"Receita bruta\",\"n8IUs7\":\"Receita Bruta\",\"O1wAlQ\":\"Guest\",\"LIYoRQ\":\"Gestão de convidados\",\"NUsTc4\":\"Happening now\",\"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\":\"Hi,\",\"/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\":\"Hide details\",\"FmogyU\":\"Ocultar Opções\",\"uXNYjR\":\"Ocultar datas e horários esgotados\",\"g9RcYX\":\"Ocultar a data\",\"uMwTx7\":\"Ocultar esta categoria?\",\"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\":\"Hobbies\",\"yY8wAv\":\"Hours\",\"49Tkiw\":\"Como é aplicado o desconto?\",\"sy9anN\":\"Quanto tempo um cliente tem para concluir a compra após receber uma oferta. Deixe vazio para sem limite de tempo.\",\"n2ilNh\":\"How long does the schedule run?\",\"DMr2XN\":\"How often?\",\"cceMns\":\"How VAT is applied to the platform fees we charge you.\",\"FONsLE\":\"https://awesome-events.com\",\"htoh8N\":\"https://webhook-domain.com/webhook\",\"mkWad2\":\"Húngaro\",\"8Wgd41\":\"Reconheço as minhas responsabilidades como 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\",\"CY3yHL\":\"Se selecionado, esta categoria ficará oculta do público.\",\"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\":[\"in last \",[\"0\"],\" min\"],\"u7r0G5\":\"In person — set a venue\",\"/LCAwL\":\"Em curso\",\"F1Xp97\":\"Participantes individuais\",\"85e6zs\":\"Inserir token Liquid\",\"CTWsuc\":\"Instagram\",\"VopR6B\":\"Instant Stripe payouts\",\"nbfdhU\":\"Integrações\",\"I8eJ6/\":\"Internal notes on the attendee's ticket\",\"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\",\"Dn4OyV\":\"Convidado\",\"IuMGvq\":\"Fatura\",\"a/bUcL\":\"It happens on more than one date\",\"d+Oe9r\":\"It may have been unpublished or removed. Please check the link and try again.\",\"Lj7sBL\":\"Italiano\",\"F5/CBH\":\"item(ns)\",\"BzfzPK\":\"Itens\",\"rjyWPb\":\"January\",\"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\":[\"Entrar na lista de espera para \",[\"productDisplayName\"]],\"2gMuHR\":\"Inscrito\",\"u4ex5r\":\"July\",\"zeEQd/\":\"June\",\"MxjCqk\":\"Apenas procurando seus ingressos?\",\"xOTzt5\":\"just now\",\"0RihU9\":\"Just wrapped\",\"lB2hSG\":[\"Mantenha-me atualizado sobre notícias e eventos de \",[\"0\"]],\"ioFA9i\":\"Keep the profit.\",\"o66QSP\":\"label updates\",\"RtKKbA\":\"Last\",\"DruLRc\":\"Últimos 14 dias\",\"ve9JTU\":\"O apelido é obrigatório\",\"h0Q9Iw\":\"Última resposta\",\"gw3Ur5\":\"Última ativação\",\"FIq1Ba\":\"Later\",\"xvnLMP\":\"Latest check-ins\",\"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\":\"Claro\",\"1qY5Ue\":\"Link expirado ou inválido\",\"gggTBm\":\"LinkedIn\",\"nvOPBA\":\"Links permitidos\",\"2BBAbc\":\"List\",\"dF6vP6\":\"Ao vivo\",\"fpMs2Z\":\"AO VIVO\",\"D9zTjx\":\"Eventos ao Vivo\",\"C33p4q\":\"Loaded dates\",\"WdmJIX\":\"Carregando pré-visualização...\",\"IoDI2o\":\"Carregando tokens...\",\"G3Ge9Z\":\"A carregar registos de webhook...\",\"NFxlHW\":\"Carregando webhooks\",\"E0DoRM\":\"Localização eliminada\",\"7w8lJU\":\"Localização guardada\",\"YsRXDD\":\"Localização atualizada\",\"A/kIva\":\"location updates\",\"iyZPPR\":\"localizações\",\"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\",\"PSRm6/\":\"Procurar os meus bilhetes\",\"yJFu/X\":\"Escritório principal\",\"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\":\"Gerir a lista de espera do seu evento, ver estatísticas e oferecer bilhetes aos participantes.\",\"g2npA5\":\"Oferta manual\",\"hg6l4j\":\"March\",\"pqRBOz\":\"Mark as validated (admin override)\",\"2L3vle\":\"Máx. mensagens / 24h\",\"Qp4HWD\":\"Máx. destinatários / mensagem\",\"3JzsDb\":\"May\",\"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\":\"Minutes\",\"zz/Wd/\":\"Mode\",\"fpMgHS\":\"Mon\",\"hty0d5\":\"Monday\",\"JbIgPz\":\"Os valores monetários são totais aproximados em todas as moedas\",\"qvF+MT\":\"Monitorar e gerir trabalhos de fundo falhados\",\"kY2ll9\":\"month\",\"HajiZl\":\"Mês\",\"+8Nek/\":\"Monthly\",\"1LkxnU\":\"Monthly Pattern\",\"6jefe3\":\"months\",\"f8jrkd\":\"more\",\"JcD7qf\":\"More actions\",\"w36OkR\":\"Eventos mais vistos (Últimos 14 dias)\",\"+Y/na7\":\"Move all dates earlier or later\",\"3DIpY0\":\"Multiple locations\",\"g9cQCP\":\"Multiple ticket types\",\"GfaxEk\":\"Música\",\"oVGCGh\":\"Meus Ingressos\",\"8/brI5\":\"O nome é obrigatório\",\"sFFArG\":\"O nome deve ter menos de 255 caracteres\",\"xxU3NX\":\"Receita Líquida\",\"7I8LlL\":\"New capacity\",\"n1GRql\":\"New label\",\"y0Fcpd\":\"Nova localização\",\"ArHT/C\":\"Novos registos\",\"uK7xWf\":\"New time:\",\"veT5Br\":\"Next occurrence\",\"WXtl5X\":[\"Next: \",[\"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\":\"No attendees to show\",\"PKySlW\":\"No attendees yet for this date.\",\"/UC6qk\":\"Nenhum dado de atribuição encontrado\",\"E2vYsO\":\"No capabilities reported by Stripe yet.\",\"amMkpL\":\"Sem capacidade\",\"d2Jf1f\":\"No change\",\"99ntUF\":\"Nenhuma lista de check-in disponível para este evento.\",\"wG+knX\":\"No check-ins yet\",\"+dAKxg\":\"Nenhuma configuração encontrada\",\"LiLk8u\":\"No connections available\",\"eb47T5\":\"Nenhum dado encontrado para os filtros selecionados. Tente ajustar o período ou a moeda.\",\"Zc216S\":\"No date added\",\"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\",\"OtJSnL\":\"Sem datas agendadas\",\"gEdNe8\":\"No dates scheduled yet\",\"pZNOT9\":\"Sem data de fim\",\"dW40Uz\":\"Nenhum evento encontrado\",\"8pQ3NJ\":\"Nenhum evento a iniciar nas próximas 24 horas\",\"8zCZQf\":\"Nenhum evento ainda\",\"Yc5YW6\":\"Sem trabalhos falhados\",\"EpvBAp\":\"Sem fatura\",\"XZkeaI\":\"Nenhum registro encontrado\",\"IcAC6J\":\"Nenhum tipo de letra correspondente\",\"nrSs2u\":\"Nenhuma mensagem encontrada\",\"Rj99yx\":\"No occurrences available\",\"IFU1IG\":\"No occurrences on this date\",\"OVFwlg\":\"Ainda não há perguntas de pedido\",\"EJ7bVz\":\"Nenhum pedido encontrado\",\"NEmyqy\":\"Nenhum pedido ainda\",\"a77B6w\":\"No orders yet for this date.\",\"wUv5xQ\":\"Sem atividade de organizador nos últimos 14 dias\",\"vLd1tV\":\"No organizer context available.\",\"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\":\"No products configured for this event.\",\"kY7XDn\":\"Nenhum produto tem entradas na lista de espera\",\"8mw4tm\":\"Mensagem de ausência de produtos\",\"wYiAtV\":\"Sem registos de contas recentes\",\"UW90md\":\"Nenhum destinatário encontrado\",\"QoAi8D\":\"Sem resposta\",\"JeO7SI\":\"Sem resposta\",\"EK/G11\":\"Ainda sem respostas\",\"59OWd3\":\"Sem localizações guardadas\",\"mPdY6W\":\"Sem sugestões\",\"3sRuiW\":\"Nenhum ingresso encontrado\",\"debCrL\":\"Sem bilhetes para vender\",\"k2C0ZR\":\"No upcoming dates\",\"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\":\"non-edited\",\"Itw24Q\":\"Not checked in\",\"x5+Lcz\":\"Não Registado\",\"8n10sz\":\"Não Elegível\",\"kLvU3F\":\"Notify attendees and stop sales\",\"t9QlBd\":\"November\",\"kAREMN\":\"Number of dates to create\",\"6u1B3O\":\"Occurrence\",\"mmoE62\":\"Occurrence Cancelled\",\"V9flmL\":\"Occurrence Schedule\",\"Kh3WO8\":\"Occurrence Summary\",\"byXCTu\":\"Occurrences\",\"KATw3p\":\"Occurrences (future only)\",\"85rTR2\":\"Occurrences can be configured after creation\",\"dzQfDY\":\"October\",\"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.\"],\"6Aih4U\":\"Offline\",\"nO3VbP\":[\"Em promoção \",[\"0\"]],\"oXOSPE\":\"Online\",\"aqmy5k\":\"Online — provide connection details\",\"LuZBbx\":\"Online & in-person\",\"IXuOqt\":\"Online & in-person — see schedule\",\"WjSpu5\":\"Evento online\",\"scPxI/\":[\"Apenas \",[\"capacity\"],\" restantes\"],\"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\",\"wkpaqp\":\"Mostrar apenas a data e hora de início\",\"DMk8F0\":\"Only tickets count toward capacity\",\"M2w1ni\":\"Apenas visível com código promocional\",\"y8Bm7C\":\"Open check-in\",\"RLz7P+\":\"Open occurrence\",\"cDSdPb\":\"Alcunha opcional mostrada nos seletores, p. ex. \\\"Sala de conferências\\\"\",\"HXMJxH\":\"Texto opcional para avisos legais, informações de contacto ou notas de agradecimento (apenas uma linha)\",\"L565X2\":\"opções\",\"8m9emP\":\"or add a single date\",\"eBskDE\":\"Ou ative os pagamentos offline e desative o Stripe\",\"dSeVIm\":\"order\",\"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\",\"xtQzag\":\"Order details\",\"vrSW9M\":\"O pedido foi cancelado e reembolsado. O proprietário do pedido foi notificado.\",\"rzw+wS\":\"Titulares de encomendas\",\"oI/hGR\":\"ID do Pedido\",\"RQCXz6\":\"Limites de Pedido\",\"SO9AEF\":\"Limites de pedido definidos\",\"vu6Arl\":\"Pedido marcado como pago\",\"sLbJQz\":\"Pedido não encontrado\",\"kvYpYu\":\"Pedido não encontrado\",\"eJ8SvM\":\"Order number, purchase date, purchaser email\",\"FaPYw+\":\"Proprietário do pedido\",\"eB5vce\":\"Proprietários de pedidos com um produto específico\",\"CxLoxM\":\"Proprietários de pedidos com produtos\",\"UkHo4c\":\"Ref. pedido\",\"EZy55F\":\"Pedido reembolsado\",\"6eSHqs\":\"Status dos pedidos\",\"oW5877\":\"Total do pedido\",\"e7eZuA\":\"Pedido atualizado\",\"1SQRYo\":\"Pedido atualizado com sucesso\",\"3NT0Ck\":\"O pedido foi cancelado\",\"V5khLm\":\"orders\",\"sd5IMt\":\"Encomendas concluídas\",\"5It1cQ\":\"Pedidos exportados\",\"UQ0ACV\":\"Total de encomendas\",\"B/EBQv\":\"Encomendas:\",\"qtGTNu\":\"Contas orgânicas\",\"P/JHA4\":\"Organizador arquivado com sucesso\",\"S3CZ5M\":\"Painel do organizador\",\"GzjTd0\":\"Organizador eliminado com sucesso\",\"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\":\"Organizers\",\"/IX/7x\":\"Outro\",\"RsiDDQ\":\"Outras Listas (Bilhete Não Incluído)\",\"aDfajK\":\"Outdoors\",\"qMASRF\":\"Mensagens de saída\",\"iCOVQO\":\"Override\",\"GpFTEc\":\"Override fees on this organizer\",\"M9ZhMP\":\"Override price\",\"cnVIpl\":\"Override removed\",\"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\":\"Past due\",\"xTPjSy\":\"Eventos passados\",\"/l/ckQ\":\"Cole a URL\",\"URAE3q\":\"Pausado\",\"4fL/V7\":\"Pagar\",\"c2/9VE\":\"Payload\",\"5cxUwd\":\"Data de pagamento\",\"ENEPLY\":\"Método de pagamento\",\"8Lx2X7\":\"Pagamento recebido\",\"fx8BTd\":\"Pagamentos não disponíveis\",\"C+ylwF\":\"Payouts\",\"UbRKMZ\":\"Pending\",\"UkM20g\":\"Revisão pendente\",\"dPYu1F\":\"Por participante\",\"mQV/nJ\":\"per min\",\"+kvxv+\":\"por encomenda\",\"VlXNyK\":\"Por pedido\",\"NhuGd7\":\"por produto\",\"hauDFf\":\"Por bilhete\",\"mnF83a\":\"Taxa Percentual\",\"TNLuRD\":\"Percentage fee (%)\",\"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\":\"Permanently remove this date\",\"6kPk3+\":\"Informações pessoais\",\"zmwvG2\":\"Telefone\",\"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\":\"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\":\"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\":\"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\":\"Please select a date and time\",\"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\":\"Position\",\"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\",\"Jm2AC3\":\"Price Tier\",\"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\":\"Product settings cannot be edited for cancelled dates.\",\"2339ej\":\"Product settings saved successfully\",\"ldVIlB\":\"Produto atualizado\",\"CP3D8G\":\"Progress\",\"JoKGiJ\":\"Código promocional\",\"k3wH7i\":\"Uso de códigos promocionais e detalhamento de descontos\",\"tZqL0q\":\"promo codes\",\"oCHiz3\":\"Promo codes\",\"uEhdRh\":\"Apenas Promoção\",\"dLm8V5\":\"Emails promocionais podem resultar na suspensão da conta\",\"W0ETyY\":\"Indique pelo menos um campo de morada (local, rua, cidade ou país).\",\"2W/7Gz\":\"Provide the following before Stripe's next review to keep payouts flowing.\",\"EEYbdt\":\"Publicar\",\"JcgJKc\":\"Publicar mesmo assim\",\"evDBV8\":\"Publicar evento\",\"2zEfOd\":\"Publish your event\",\"L7nrC8\":\"Ao publicar, a página do seu evento torna-se pública e as inscrições são abertas.\",\"dsFmM+\":\"Adquirido\",\"JunetL\":\"Purchaser\",\"phmeUH\":\"Purchaser email\",\"ywR4ZL\":\"QR code check-in\",\"oWXNE5\":\"Qtd.\",\"biEyJ4\":\"Question answers\",\"k/bJj0\":\"Perguntas reordenadas\",\"b24kPi\":\"Fila\",\"lTPqpM\":\"Quick Tip\",\"fqDzSu\":\"Taxa\",\"mnUGVC\":\"Limite de taxa excedido. Por favor, tente novamente mais tarde.\",\"t41hVI\":\"Reoferecer lugar\",\"TNclgc\":\"Reactivate this date? It will be reopened for future sales.\",\"RENQ6j\":\"Pronto para publicar?\",\"uqoRbb\":\"Real-time analytics\",\"xzRvs4\":[\"Receber atualizações de produtos do \",[\"0\"],\".\"],\"pLXbi8\":\"Registos de contas recentes\",\"M1HGuR\":\"Recent activity\",\"3kJ0gv\":\"Recent Attendees\",\"qhfiwV\":\"Recent check-ins\",\"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\",\"WEYdDv\":\"Recommended\",\"wuhHPE\":\"Recurring\",\"asLqwt\":\"Evento recorrente\",\"s3uzsK\":\"Definições de evento recorrente\",\"D0tAMe\":\"Recurring events\",\"JjMIKU\":\"Reddit\",\"HiGkFu\":\"Redirecionando para o Stripe...\",\"pnoTN5\":\"Contas de referência\",\"ACKu03\":\"Atualizar visualização\",\"vuFYA6\":\"Refund all orders for these dates\",\"4cRUK3\":\"Refund all orders for this date\",\"fKn/k6\":\"Valor do reembolso\",\"qY4rpA\":\"Reembolso falhou\",\"FaK/8G\":[\"Reembolsar pedido \",[\"0\"]],\"MGbi9P\":\"Reembolso pendente\",\"BDSRuX\":[\"Reembolsado: \",[\"0\"]],\"bU4bS1\":\"Reembolsos\",\"rYXfOA\":\"Configurações regionais\",\"5tl0Bp\":\"Perguntas de registro\",\"ZNo5k1\":\"Remaining\",\"Bjh87R\":\"Remove label from all dates\",\"IVZaEo\":\"Remove completamente as datas e horários esgotados da página do evento. Quando desativado, permanecem visíveis e são assinalados como esgotados.\",\"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\":\"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\":\"Reset to base price\",\"kCn6wb\":\"A redefinir...\",\"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\":\"results\",\"6gRgw8\":\"Tentar novamente\",\"1BG8ga\":\"Tentar tudo novamente\",\"rDC+T6\":\"Tentar trabalho novamente\",\"CbnrWb\":\"Voltar ao evento\",\"Lf7TCn\":\"Os locais reutilizáveis aparecem aqui automaticamente à medida que cria eventos com moradas, e também pode adicionar os seus.\",\"mdQ0zb\":\"Locais reutilizáveis para os seus eventos. As localizações criadas a partir do preenchimento automático são guardadas aqui automaticamente.\",\"XFOPle\":\"Reuse\",\"1Zehp4\":\"Reuse a Stripe connection from another organizer in this account.\",\"Oo/PLb\":\"Resumo de Receita\",\"CfuueU\":\"Revogar oferta\",\"RIgKv+\":\"Run until a specific date\",\"dFFW9L\":[\"Promoção terminou \",[\"0\"]],\"loCKGB\":[\"Promoção termina \",[\"0\"]],\"wlfBad\":\"Período de Promoção\",\"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\":\"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\":\"Sales, attendance, and check-in breakdown per occurrence\",\"3VnlS9\":\"Vendas, pedidos e métricas de desempenho para todos os eventos\",\"3Q1AWe\":\"Vendas:\",\"LeuERW\":\"Same as event\",\"B4nE3N\":\"Preço do bilhete de exemplo\",\"8BRPoH\":\"Local Exemplo\",\"PiK6Ld\":\"Sat\",\"+5kO8P\":\"Saturday\",\"zJiuDn\":\"Save fee override\",\"NB8Uxt\":\"Save Schedule\",\"KZrfYJ\":\"Salvar links sociais\",\"9Y3hAT\":\"Salvar modelo\",\"C8ne4X\":\"Guardar Design do Bilhete\",\"cTI8IK\":\"Save VAT settings\",\"6/TNCd\":\"Guardar Definições de IVA\",\"4RvD9q\":\"Localização guardada\",\"cgw0cL\":\"Localizações guardadas\",\"Fbqm/I\":\"Saving an override creates a dedicated configuration for this organizer if it's currently on the system default.\",\"I+FvbD\":\"Digitalizar\",\"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\":\"Agendar para mais tarde\",\"NAzVVw\":\"Agendar mensagem\",\"Fz09JP\":\"Schedule starts on\",\"4ba0NE\":\"Agendado\",\"qcP/8K\":\"Hora agendada\",\"A1taO8\":\"Search\",\"ftNXma\":\"Pesquisar afiliados...\",\"VMU+zM\":\"Search attendees\",\"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...\",\"YnMfsK\":\"Pesquisar por nome ou morada...\",\"VT+urE\":\"Pesquisar por nome ou e-mail...\",\"GHdjuo\":\"Pesquisar por nome, e-mail ou conta...\",\"4mBFO7\":\"Search by name, order #, ticket # or email\",\"20ce0U\":\"Pesquisar por ID do pedido, nome do cliente ou email...\",\"4DSz7Z\":\"Pesquisar por assunto, evento ou conta...\",\"nQC7Z9\":\"Search dates...\",\"iRtEpV\":\"Search dates…\",\"JRM7ao\":\"Search for an address\",\"BWF1kC\":\"Pesquisar mensagens...\",\"5WYZKZ\":\"Resultados da pesquisa\",\"IG85fV\":\"Pesquise localizações guardadas ou encontre uma morada...\",\"3aD3GF\":\"Seasonal\",\"ku//5b\":\"Second\",\"Mck5ht\":\"Checkout Seguro\",\"s7tXqF\":\"See schedule\",\"JFap6u\":\"See what Stripe still needs\",\"p7xUrt\":\"Selecione uma categoria\",\"hTKQwS\":\"Select a Date & Time\",\"Ps6Xtf\":\"Select a date to see available times\",\"e4L7bF\":\"Selecione uma mensagem para ver o seu conteúdo\",\"zPRPMf\":\"Selecionar um nível\",\"BFRSTT\":\"Selecionar Conta\",\"wgNoIs\":\"Select all\",\"mCB6Je\":\"Selecionar tudo\",\"aCEysm\":[\"Select all on \",[\"0\"]],\"a6+167\":\"Selecionar um evento\",\"CFbaPk\":\"Selecione o grupo de participantes\",\"88a49s\":\"Select camera\",\"tVW/yo\":\"Selecionar moeda\",\"SJQM1I\":\"Select date\",\"n9ZhRa\":\"Selecione data e hora de término\",\"gTN6Ws\":\"Selecionar hora de fim\",\"0U6E9W\":\"Selecionar categoria do evento\",\"j9cPeF\":\"Selecionar tipos de eventos\",\"ypTjHL\":\"Select occurrence\",\"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\":\"selected\",\"ylXj1N\":\"Selecionado\",\"uq3CXQ\":\"Sell out your event.\",\"oBXbO4\":\"Selling a physical product? Cap its quantity on the <0>products page instead.\",\"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\":\"Send to all occurrences, or choose a specific one\",\"QEQlnV\":\"Envie a sua primeira mensagem\",\"IoAuJG\":\"A enviar...\",\"h69WC6\":\"Enviado\",\"BVu2Hz\":\"Enviado por\",\"ZFa8wv\":\"Sent to attendees when a scheduled date is cancelled\",\"SPdzrs\":\"Enviado aos clientes quando fazem um pedido\",\"LxSN5F\":\"Enviado a cada participante com os detalhes do seu ingresso\",\"hgvbYY\":\"September\",\"5sN96e\":\"Session cancelled\",\"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\":\"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\":\"Configure listas de check-in para diferentes entradas, sessões ou dias.\",\"TaWVGe\":\"Set up payouts\",\"JA//e6\":\"Set up schedule\",\"gzXY7l\":\"Set Up Schedule\",\"0Ls9qe\":\"Set up the tickets you'll sell and their prices\",\"xMO+Ao\":\"Configure a sua organização\",\"5pEFnq\":\"Set up your schedule\",\"h/9JiC\":\"Set Up Your Schedule\",\"zRRuUD\":\"Set up your schedule in the next steps\",\"ETC76A\":\"Set, change, or remove the date's location or online details\",\"C3htzi\":\"Configuração atualizada\",\"Ohn74G\":\"Configuração e 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\":\"Partilhar link de afiliado\",\"hL7sDJ\":\"Compartilhar página do organizador\",\"jy6QDF\":\"Gestão de capacidade compartilhada\",\"jDNHW4\":\"Shift times\",\"tPfIaW\":[\"Shifted times for \",[\"count\"],\" date(s)\"],\"WwlM8F\":\"Mostrar opções avançadas\",\"cMW+gm\":[\"Mostrar todas as plataformas (\",[\"0\"],\" com valores)\"],\"wXi9pZ\":\"Show attendee notes to non-logged-in staff\",\"4LZFir\":\"Mostrar todo o intervalo de datas\",\"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\",\"b33PL9\":\"Mostrar mais plataformas\",\"Eut7p9\":\"Show order details to non-logged-in staff\",\"+RoWKN\":\"Show question answers to non-logged-in staff\",\"jbcx6L\":\"Show remaining capacity on event dates\",\"rXxBOx\":\"Show remaining capacity to buyers\",\"t1LIQW\":[\"A mostrar \",[\"0\"],\" de \",[\"totalRows\"],\" registos\"],\"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\":\"Registado\",\"5C7J+P\":\"Single Event\",\"E//btK\":\"Skip manually edited dates\",\"paESr6\":\"Eslovaco\",\"9wu8nm\":\"Snapchat\",\"kIKb9e\":\"Social\",\"d0rUsW\":\"Links sociais\",\"j/TOB3\":\"Links sociais e site\",\"s9KGXU\":\"Vendido\",\"yp+0jj\":\"sold out\",\"1hupow\":\"Esgotado, lista de espera disponível\",\"iACSrw\":\"Some details are hidden from public access. Log in to view everything.\",\"Dia6iz\":\"Something went wrong while deleting the image. Please try again.\",\"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\":\"Spirituality\",\"oPaRES\":\"Split check-in across days, areas, or ticket types. Share the link with staff — no account needed on their end.\",\"7JFNej\":\"Desporto\",\"/bfV1Y\":\"Staff instructions\",\"tXkhj/\":\"Start\",\"StWUH4\":\"Start check-in\",\"JcQp9p\":\"Data e hora de início\",\"0m/ekX\":\"Data e hora de início\",\"izRfYP\":\"A data de início é obrigatória\",\"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/\":\"Estatísticas\",\"GVUxAX\":\"As estatísticas são baseadas na data de criação da conta\",\"29Hx9U\":\"Stats\",\"5ia+r6\":\"Still needed\",\"wuV0bK\":\"Parar Personificação\",\"s/KaDb\":\"Stripe connected\",\"Bk06QI\":\"Stripe ligado\",\"akZMv8\":[\"Stripe connection copied from \",[\"0\"],\".\"],\"v0aRY1\":\"Stripe didn't return a setup link. Please try again.\",\"aKtF0O\":\"Stripe não conectado\",\"9i0++A\":\"ID de pagamento Stripe\",\"R1lIMV\":\"Stripe will need a few more details soon\",\"FzcCHA\":\"Stripe will walk you through a few quick questions to finish setup.\",\"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\",\"kRWc2g\":\"Definições de evento recorrente 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 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\":\"Sun\",\"DBC3t5\":\"Sunday\",\"UaISq3\":\"Sueco\",\"JZTQI0\":\"Trocar organizador\",\"9YHrNC\":\"Padrão do Sistema\",\"lruQkA\":\"Tap this screen to resume scanning\",\"TJUrME\":[\"Targeting attendees across \",[\"0\"],\" selected sessions.\"],\"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\":\"Team collaboration\",\"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\":\"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\":\"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\",\"nm3Iz/\":\"Obrigado por participar!\",\"pYwj0k\":\"Thanks,\",\"k3IitN\":\"That's a wrap\",\"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.\",\"7oksH+\":[\"O desconto é deduzido de cada produto elegível. Ex.: \",[\"currencySymbol\"],\"10 de desconto × 3 bilhetes = \",[\"currencySymbol\"],\"30 de desconto.\"],\"sKL8k2\":\"O desconto é deduzido uma única vez do total da encomenda.\",\"cDHM1d\":\"O endereço de e-mail foi alterado. O participante receberá um novo bilhete no endereço de e-mail atualizado.\",\"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\":\"The first date this schedule will generate from.\",\"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.\",\"Np4eLs\":[\"The maximum is \",[\"MAX_PREVIEW\"],\" sessions. Please reduce the date range, frequency, or number of sessions per day.\"],\"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\":\"The override is recorded in the order audit log.\",\"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\",\"OVSkIF\":\"A rápida raposa castanha salta sobre o cão preguiçoso.\",\"z0KrIG\":\"A hora agendada é obrigatória\",\"EWErQh\":\"A hora agendada deve ser no futuro\",\"UNd0OU\":[\"The session for \\\"\",[\"title\"],\"\\\" originally scheduled for \",[\"0\"],\" has been rescheduled.\"],\"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\",\"ybBP2H\":\"There are no products available for this date. Please choose another date.\",\"O7g4eR\":\"There are no upcoming dates for this event\",\"062KsE\":\"These details are shown on the attendee's ticket and order summary for this date only.\",\"5Eu+tn\":\"Estes detalhes só serão mostrados se a encomenda for concluída com sucesso.\",\"jQjwR+\":\"These details will replace any existing location on the affected dates and show on attendee tickets.\",\"6eaLu/\":\"Estes preços aplicam-se a todas as datas do seu calendário, e as quantidades dos escalões limitam as vendas totais de todas as datas em conjunto. As datas de venda dos escalões aplicam-se globalmente. Pode substituir os preços de datas individuais na <0>página de Calendário de datas.\",\"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\":\"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\":\"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/\":[\"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.\",\"E9BqZw\":\"This date only\",\"RzEvf5\":\"Este evento terminou\",\"kc4bIA\":\"Este evento ainda não tem bilhetes nem produtos, pelo que os participantes não poderão inscrever-se.\",\"eMaNd0\":\"This event is not available\",\"YClrdK\":\"Este evento ainda não foi publicado\",\"GL6z+k\":\"Este evento está esgotado\",\"pIwDhS\":\"This event's dates and times are set on the occurrence schedule.\",\"ny5rgr\":\"This is a recurring event\",\"tc64Zz\":\"Este é o nome da categoria que será apresentado na página do evento.\",\"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.\",\"5DpZrC\":\"Isto limita as vendas totais de todas as datas do seu calendário em conjunto — não é um limite por data. Para limitar a lotação de cada data, defina uma capacidade na <0>página de Calendário de datas.\",\"L7dIM7\":\"Este link é inválido ou expirou.\",\"MR5ygV\":\"Este link já não é válido\",\"9LEqK0\":\"Este nome é visível aos utilizadores finais\",\"QdUMM9\":\"This occurrence is at capacity\",\"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\",\"qEGn8I\":\"Este evento recorrente ainda não tem datas, pelo que os participantes não têm nada para reservar.\",\"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.\",\"1LuJNw\":\"Este bilhete já não é válido\",\"0Ew0uk\":\"Este bilhete acabou de ser digitalizado. Aguarde antes de digitalizar novamente.\",\"FYXq7k\":[\"This will affect \",[\"loadedAffectedCount\"],\" date(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\":\"Throughput\",\"+FjWgX\":\"Thu\",\"kkDQ8m\":\"Thursday\",\"0GSPnc\":\"Design do Bilhete\",\"EZC/Cu\":\"Design do bilhete guardado com sucesso\",\"bbslmb\":\"Designer de ingressos\",\"1BPctx\":\"Bilhete para\",\"HGuXjF\":\"Portadores de ingressos\",\"CMUt3Y\":\"Titulares de bilhetes\",\"awHmAT\":\"ID do bilhete\",\"6czJik\":\"Logotipo do Bilhete\",\"t79rDv\":\"Bilhete não encontrado\",\"6tmWch\":\"Ingresso ou produto\",\"1tfWrD\":\"Pré-visualização do bilhete para\",\"KnjoUA\":\"Preço do bilhete\",\"pGZOcL\":\"Bilhete reenviado com sucesso\",\"o02GZM\":\"Ticket sales have ended for this event\",\"8jLPgH\":\"Tipo de Bilhete\",\"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\":\"Time\",\"fXf2r5\":[\"Times shown in \",[\"timezoneAbbr\"]],\"dMtLDE\":\"to\",\"/jQctM\":\"Para\",\"tiI71C\":\"Para aumentar os seus limites, contacte-nos em\",\"ecUA8p\":\"Today\",\"W428WC\":\"Alternar colunas\",\"BRMXj0\":\"Tomorrow\",\"UBSG1X\":\"Melhores organizadores (Últimos 14 dias)\",\"3sZ0xx\":\"Total de Contas\",\"SMDzqJ\":\"Total de Participantes\",\"orBECM\":\"Total Cobrado\",\"k5CU8c\":\"Total de entradas\",\"4B7oCp\":\"Taxa total\",\"sMMlTX\":\"Total fees\",\"mlvCEl\":\"Total orders\",\"2AW/k5\":\"Quantidade total em todas as datas\",\"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álise\",\"GUA0Jy\":\"Try a different search term or filter\",\"2P/OWN\":\"Try adjusting your filters to see more dates.\",\"ouM5IM\":\"Tentar outro e-mail\",\"3DZvE7\":\"Experimente o Hi.Events gratuitamente\",\"vq2WxD\":\"Tue\",\"G3myU+\":\"Tuesday\",\"Kz91g/\":\"Turco\",\"GdOhw6\":\"Desativar som\",\"KUOhTy\":\"Ativar som\",\"dBeuY2\":\"Twitch\",\"QytzQr\":\"Escreva \\\"eliminar\\\" para confirmar\",\"nWRfmt\":\"Tipografia\",\"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\":\"Unable to load attendee details.\",\"GlnD5Y\":\"Unable to load products for this date. Please try again.\",\"17VbmV\":\"Unable to undo check-in\",\"n57zCW\":\"Contas não atribuídas\",\"9uI/rE\":\"Undo\",\"Ef7StM\":\"Desconhecido\",\"ZBAScj\":\"Participante desconhecido\",\"MEIAzV\":\"Sem nome\",\"K6L5Mx\":\"Localização sem nome\",\"7yiFvZ\":\"Não pago\",\"X13xGn\":\"Não confiável\",\"gyXpQN\":\"Upcoming events\",\"Pp1sWX\":\"Atualizar afiliado\",\"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\":\"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\":\"USB scanner listening\",\"dyTklH\":\"USB scanner paused\",\"OHJXlK\":\"Use <0>modelos Liquid para personalizar os seus emails\",\"/rsy72\":\"Use event default\",\"0k4cdb\":\"Usar detalhes do pedido para todos os participantes. Os nomes e e-mails dos participantes corresponderão às informações do comprador.\",\"bA31T4\":\"Usar os dados do comprador para todos os participantes\",\"PpgtnC\":\"Usar esta morada\",\"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\":\"VAT number\",\"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\":\"VAT registered\",\"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\":\"VAT settings updated\",\"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\":\"VAT: not registered\",\"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\":\"View All\",\"yA/6BX\":\"View all →\",\"6CQ7/B\":\"View all capabilities\",\"YSE15b\":\"View all check-in lists\",\"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\":[\"View details for \",[\"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\":\"Waiting for scan…\",\"u0n+wz\":\"Lista de espera\",\"3RXFtE\":\"Lista de espera ativada\",\"TwnTPy\":\"Oferta da lista de espera expirou\",\"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.\",\"aT/44s\":\"We couldn't copy that Stripe connection. Please try again.\",\"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.\",\"Fjj/5/\":\"We couldn't load the check-in lists. Please try again.\",\"ADsQ23\":\"We couldn't reach Stripe just now. Please try again in a moment.\",\"HJKdzP\":\"Ocorreu um problema ao carregar esta página. Por favor, tente novamente.\",\"jegrvW\":\"We partner with Stripe to send payouts straight to your bank account.\",\"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\":\"Usamos cookies para nos ajudar a perceber como o site é utilizado e 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.\",\"mfM/HJ\":[\"Notificá-lo-emos por e-mail se um lugar ficar disponível para \",[\"productDisplayName\"],\" em \",[\"occurrenceDate\"],\".\"],\"iy+M+c\":[\"Notificá-lo-emos por e-mail se um lugar ficar disponível para \",[\"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\":\"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\":[\"We've made changes to the schedule for \\\"\",[\"title\"],\"\\\" — \",[\"description\"],\" affecting \",[\"affectedCount\"],\" session(s).\"],\"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\":\"Webhook integrations\",\"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\":\"Wed\",\"VAcXNz\":\"Wednesday\",\"64X6l4\":\"week\",\"4XSc4l\":\"Weekly\",\"IAUiSh\":\"weeks\",\"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\":\"Wellness\",\"ywRaYa\":\"What time?\",\"FaSXqR\":\"Que tipo de evento?\",\"0WyYF4\":\"What unauthenticated staff can see\",\"2+ExvJ\":\"WhatsApp\",\"cxsKvw\":\"Quando um check-in é excluído\",\"RPe6bE\":\"When a date is cancelled on a recurring event\",\"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 entrar numa lista de espera para serem notificados quando lugares ficarem disponíveis.\",\"OIkHj+\":\"Quando um produto esgota, os clientes podem entrar numa lista de espera para serem notificados quando lugares ficarem disponíveis. Os clientes juntam-se à lista de espera para uma data específica e as ofertas são feitas por data.\",\"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\":\"Quando os clientes comprarem ingressos, os pedidos aparecerão aqui.\",\"pm9tpn\":\"Quando ativado, os compradores podem copiar o seu nome e e-mail para todos os participantes de uma só vez. Desative para remover a opção \\\"Todos os participantes\\\"; os compradores podem ainda copiar para o primeiro participante, e os restantes têm de ser introduzidos individualmente.\",\"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.\",\"uchB0M\":\"Pré-visualização do widget\",\"uvIqcj\":\"Workshop\",\"EpknJA\":\"Escreva sua mensagem aqui...\",\"nhtR6Y\":\"X (Twitter)\",\"7qI8sJ\":\"year\",\"zkWmBh\":\"Yearly\",\"+BGee5\":\"years\",\"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+\":\"You can override this for individual dates later.\",\"paWwQ0\":\"Ainda pode oferecer bilhetes manualmente, se necessário.\",\"jTDzpA\":\"Não pode arquivar o último organizador ativo da sua conta.\",\"D8baxD\":\"Tem bilhetes pagos, mas o Stripe ainda não está ligado, pelo que não pode aceitar pagamentos.\",\"5VGIlq\":\"Atingiu o seu limite de mensagens.\",\"casL1O\":\"Você adicionou taxas e impostos a um produto gratuito. Deseja removê-los?\",\"9jJNZY\":\"Deve 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/\":\"You need to create at least one occurrence before you can add attendees to this recurring event.\",\"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\":\"You'll be able to set up dates, schedules, and recurrence rules in the next step.\",\"zKAheG\":\"You're changing session times\",\"MNFIxz\":[\"Vai participar em \",[\"0\"],\"!\"],\"ZlLcht\":[\"Está a juntar-se à lista de espera para \",[\"occurrenceDate\"],\".\"],\"qGZz0m\":\"Está na lista de espera!\",\"/5HL6k\":\"Foi-lhe oferecido um lugar!\",\"gbjFFH\":\"You've changed the session time\",\"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\":\"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\":\"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 entrar na lista de espera para ser notificado quando mais lugares ficarem disponíveis.\",\"9Q6UKX\":\"YouTube\"}")}; \ No newline at end of file diff --git a/frontend/src/locales/pt.po b/frontend/src/locales/pt.po index 6444b35557..bcb4470ee8 100644 --- a/frontend/src/locales/pt.po +++ b/frontend/src/locales/pt.po @@ -179,11 +179,11 @@ msgstr "" msgid "{totalCount} ticket types" msgstr "{totalCount} tipos de bilhetes" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:554 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:567 msgid "{totalOccurrences} dates" msgstr "" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:547 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:560 msgid "{totalOccurrences} sessions across {0} dates ({1, plural, one {# session} other {# sessions}} per day)" msgstr "" @@ -516,7 +516,7 @@ msgstr "Eventos ativos" msgid "Active payment methods" msgstr "" -#: src/components/routes/event/OccurrencesTab/index.tsx:400 +#: src/components/routes/event/OccurrencesTab/index.tsx:402 msgid "Activity" msgstr "" @@ -536,11 +536,11 @@ msgstr "" msgid "Add a description for this check-in list" msgstr "Adicione uma descrição para esta lista de registro" -#: src/components/routes/event/OccurrencesTab/index.tsx:538 +#: src/components/routes/event/OccurrencesTab/index.tsx:541 msgid "Add a Single Date" msgstr "" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:739 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:752 msgid "Add another time" msgstr "" @@ -560,7 +560,7 @@ msgstr "Adicione quaisquer notas sobre o pedido. Estas não serão visíveis par msgid "Add any notes about the order..." msgstr "Adicione quaisquer notas sobre o pedido..." -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:375 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:382 msgid "Add at least one time" msgstr "" @@ -580,7 +580,7 @@ msgstr "" msgid "Add dates" msgstr "Adicionar datas" -#: src/components/routes/event/OccurrencesTab/index.tsx:524 +#: src/components/routes/event/OccurrencesTab/index.tsx:526 msgid "Add Dates" msgstr "" @@ -611,7 +611,7 @@ msgstr "Adicione instruções para pagamentos offline (por exemplo, detalhes de msgid "Add Location" msgstr "Adicionar localização" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:743 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:756 msgid "Add multiple times if you run several sessions per day." msgstr "" @@ -796,7 +796,7 @@ msgid "all" msgstr "" #: src/components/layouts/CheckIn/tabs/SearchTab.tsx:133 -#: src/components/routes/event/OccurrencesTab/index.tsx:485 +#: src/components/routes/event/OccurrencesTab/index.tsx:487 msgid "All" msgstr "" @@ -987,7 +987,7 @@ msgstr "Um erro inesperado ocorreu." msgid "An unexpected error occurred. Please try again." msgstr "Um erro inesperado ocorreu. Por favor, tente novamente." -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:849 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:862 msgid "and {0} more..." msgstr "" @@ -1003,7 +1003,7 @@ msgstr "" msgid "Answers provided at checkout (e.g. meal choice)" msgstr "" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:564 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:577 msgid "Any dates you've manually customized will be kept." msgstr "" @@ -1071,7 +1071,7 @@ msgstr "" msgid "Approve Message" msgstr "Aprovar mensagem" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:74 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:76 msgid "April" msgstr "" @@ -1127,7 +1127,7 @@ msgstr "Tem a certeza de que pretende arquivar este evento? Deixará de estar vi 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." -#: src/components/routes/event/OccurrencesTab/index.tsx:213 +#: src/components/routes/event/OccurrencesTab/index.tsx:215 msgid "Are you sure you want to cancel {count} date(s)? Affected attendees will be notified by email." msgstr "" @@ -1159,7 +1159,7 @@ msgstr "Tem certeza de que deseja excluir esta configuração? Isso pode afetar #: src/components/modals/ManageOccurrenceModal/index.tsx:58 #: src/components/routes/event/OccurrenceDetail/index.tsx:84 -#: src/components/routes/event/OccurrencesTab/index.tsx:182 +#: src/components/routes/event/OccurrencesTab/index.tsx:184 msgid "Are you sure you want to delete this date? This action cannot be undone." msgstr "" @@ -1446,7 +1446,7 @@ msgstr "Detalhamento de atribuição" msgid "Attribution Value" msgstr "Valor de atribuição" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:78 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:80 msgid "August" msgstr "" @@ -1625,7 +1625,7 @@ msgstr "Português brasileiro" msgid "Built-in fraud protection" msgstr "" -#: src/components/routes/event/OccurrencesTab/index.tsx:515 +#: src/components/routes/event/OccurrencesTab/index.tsx:517 msgid "Bulk Edit" msgstr "" @@ -1674,11 +1674,11 @@ msgstr "Ao adicionar pixels de rastreamento, reconhece que você e esta platafor 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}" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:628 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:641 msgid "By day of month" msgstr "" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:629 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:642 msgid "By day of week" msgstr "" @@ -1698,7 +1698,7 @@ msgstr "Ignorar taxas de aplicação" msgid "Calculation Type" msgstr "Tipo de cálculo" -#: src/components/routes/event/OccurrencesTab/index.tsx:471 +#: src/components/routes/event/OccurrencesTab/index.tsx:473 msgid "Calendar" msgstr "" @@ -1735,7 +1735,7 @@ msgstr "" #: src/components/modals/ManageOrderModal/index.tsx:209 #: src/components/modals/PublishEventModal/index.tsx:208 #: src/components/routes/event/messages.tsx:80 -#: src/components/routes/event/OccurrencesTab/index.tsx:497 +#: src/components/routes/event/OccurrencesTab/index.tsx:499 #: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:272 #: src/components/routes/event/OccurrencesTab/OccurrenceEditModal/index.tsx:306 #: src/components/routes/event/OccurrencesTab/OccurrenceMenu.tsx:61 @@ -1748,8 +1748,8 @@ msgstr "" msgid "Cancel" msgstr "Cancelar" -#: src/components/routes/event/OccurrencesTab/index.tsx:209 -#: src/components/routes/event/OccurrencesTab/index.tsx:221 +#: src/components/routes/event/OccurrencesTab/index.tsx:211 +#: src/components/routes/event/OccurrencesTab/index.tsx:223 msgid "Cancel {count} date(s)" msgstr "" @@ -1809,7 +1809,7 @@ msgstr "Cancelar irá cancelar todos os participantes associados a este pedido e msgid "Cancelled" msgstr "Cancelado" -#: src/components/routes/event/OccurrencesTab/index.tsx:235 +#: src/components/routes/event/OccurrencesTab/index.tsx:237 msgid "Cancelling {0} date(s). This may take a moment to complete." msgstr "" @@ -1819,7 +1819,7 @@ msgstr "Não é possível excluir a configuração padrão do sistema" #: src/components/forms/CapaciyAssigmentForm/index.tsx:42 #: src/components/routes/event/OccurrencesTab/OccurrenceEditModal/index.tsx:503 -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:811 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:824 msgid "Capacity" msgstr "Capacidade" @@ -2154,7 +2154,7 @@ msgid "City" msgstr "Cidade" #: src/components/common/OccurrenceSelect/index.tsx:133 -#: src/components/routes/event/OccurrencesTab/index.tsx:503 +#: src/components/routes/event/OccurrencesTab/index.tsx:505 msgid "Clear" msgstr "" @@ -2174,7 +2174,7 @@ msgstr "Limpar texto de pesquisa" msgid "Clearing removes any per-date override. Affected dates will fall back to the event's default location." msgstr "" -#: src/components/routes/event/OccurrencesTab/index.tsx:331 +#: src/components/routes/event/OccurrencesTab/index.tsx:333 msgid "Click to cancel" msgstr "" @@ -2182,7 +2182,7 @@ msgstr "" msgid "Click to copy" msgstr "Clique para copiar" -#: src/components/routes/event/OccurrencesTab/index.tsx:333 +#: src/components/routes/event/OccurrencesTab/index.tsx:335 msgid "Click to reopen for new sales" msgstr "" @@ -2743,7 +2743,7 @@ msgstr "Criar modelo {0}" msgid "Create a custom widget to sell tickets on your site." msgstr "Crie um widget personalizado para vender ingressos no seu site." -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:785 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:798 msgid "Create a fixed number" msgstr "" @@ -2879,7 +2879,7 @@ msgstr "Criar código promocional" msgid "Create Question" msgstr "Criar pergunta" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:864 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:877 msgid "Create Schedule" msgstr "" @@ -2927,6 +2927,10 @@ msgstr "Crie seu próprio evento" msgid "Created" msgstr "Criado" +#: src/components/routes/event/OccurrencesTab/index.tsx:549 +msgid "Creating {0} dates. This may take a moment." +msgstr "A criar {0} datas. Isto pode demorar um momento." + #: src/components/routes/welcome/index.tsx:472 msgid "Creating Event..." msgstr "A criar evento..." @@ -3066,7 +3070,7 @@ msgstr "Personalize a página do seu evento" msgid "Customize your organizer page appearance" msgstr "Personalize a aparência da sua página de organizador" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:56 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:58 #: src/components/routes/product-widget/OccurrenceSelector/index.tsx:32 msgid "Daily" msgstr "" @@ -3155,7 +3159,7 @@ msgstr "" #: src/components/modals/ManageOccurrenceModal/index.tsx:61 #: src/components/routes/event/OccurrenceDetail/index.tsx:87 -#: src/components/routes/event/OccurrencesTab/index.tsx:184 +#: src/components/routes/event/OccurrencesTab/index.tsx:186 msgid "Date deleted" msgstr "" @@ -3168,7 +3172,7 @@ msgstr "" msgid "Date reactivated" msgstr "" -#: src/components/routes/event/OccurrencesTab/index.tsx:198 +#: src/components/routes/event/OccurrencesTab/index.tsx:200 msgid "Date reopened for new sales" msgstr "" @@ -3184,15 +3188,15 @@ msgstr "" msgid "Dates with sessions" msgstr "" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:93 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:95 msgid "day" msgstr "" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:659 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:672 msgid "Day" msgstr "" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:676 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:689 msgid "Day of Month" msgstr "" @@ -3200,19 +3204,19 @@ msgstr "" msgid "Day one capacity" msgstr "Capacidade do primeiro dia" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:101 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:103 msgid "days" msgstr "" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:635 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:648 msgid "Days of Month" msgstr "" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:605 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:618 msgid "Days of Week" msgstr "" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:82 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:84 msgid "December" msgstr "" @@ -3230,7 +3234,7 @@ msgstr "Padrão" msgid "Default attendee information collection" msgstr "Recolha predefinida de informações do participante" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:815 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:828 msgid "Default capacity per date" msgstr "" @@ -3253,7 +3257,7 @@ msgstr "eliminar" #: src/components/common/QuestionsTable/index.tsx:150 #: src/components/common/TaxAndFeeList/index.tsx:81 #: src/components/routes/admin/FailedJobs/index.tsx:209 -#: src/components/routes/event/OccurrencesTab/index.tsx:500 +#: src/components/routes/event/OccurrencesTab/index.tsx:502 #: src/components/routes/event/OccurrencesTab/OccurrenceMenu.tsx:62 msgid "Delete" msgstr "Excluir" @@ -3262,7 +3266,7 @@ msgstr "Excluir" msgid "Delete \"{0}\"?" msgstr "Eliminar \"{0}\"?" -#: src/components/routes/event/OccurrencesTab/index.tsx:247 +#: src/components/routes/event/OccurrencesTab/index.tsx:249 msgid "Delete {count} selected date(s)? Dates with orders will be skipped. This cannot be undone." msgstr "" @@ -3344,7 +3348,7 @@ msgstr "Excluir esta pergunta? Isso não pode ser desfeito." msgid "Delete webhook" msgstr "Excluir webhook" -#: src/components/routes/event/OccurrencesTab/index.tsx:253 +#: src/components/routes/event/OccurrencesTab/index.tsx:255 msgid "Deleted {0} date(s)" msgstr "" @@ -3565,7 +3569,7 @@ msgstr "ex. 180 (3 horas)" #: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:452 #: src/components/routes/event/OccurrencesTab/OccurrenceEditModal/index.tsx:450 -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:714 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:727 msgid "e.g. Morning Session" msgstr "" @@ -3724,7 +3728,7 @@ msgstr "Editar webhook" msgid "Edit Webhook" msgstr "Editar Webhook" -#: src/components/routes/event/OccurrencesTab/index.tsx:306 +#: src/components/routes/event/OccurrencesTab/index.tsx:308 msgid "Edited" msgstr "" @@ -3913,7 +3917,7 @@ msgstr "Ativar lista de espera" msgid "Enabled" msgstr "Ativado" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:704 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:717 msgid "End" msgstr "" @@ -3934,7 +3938,7 @@ msgstr "Data e hora de término (opcional)" msgid "End date must be after start date" msgstr "A data de término deve ser posterior à data de início" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:771 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:784 msgid "End on a date" msgstr "" @@ -4409,7 +4413,7 @@ msgstr "Falha ao cancelar participante" msgid "Failed to cancel date" msgstr "" -#: src/components/routes/event/OccurrencesTab/index.tsx:239 +#: src/components/routes/event/OccurrencesTab/index.tsx:241 msgid "Failed to cancel dates" msgstr "" @@ -4429,10 +4433,14 @@ msgstr "Falha ao criar afiliado" msgid "Failed to create configuration" msgstr "Falha ao criar configuração" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:530 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:543 msgid "Failed to create schedule" msgstr "" +#: src/hooks/useOccurrenceGenerationPolling.ts:44 +msgid "Failed to create schedule. Please try again." +msgstr "Falha ao criar o calendário. Por favor, tente novamente." + #: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:192 #: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:195 msgid "Failed to create template" @@ -4444,7 +4452,7 @@ msgstr "Falha ao excluir configuração" #: src/components/modals/ManageOccurrenceModal/index.tsx:64 #: src/components/routes/event/OccurrenceDetail/index.tsx:90 -#: src/components/routes/event/OccurrencesTab/index.tsx:185 +#: src/components/routes/event/OccurrencesTab/index.tsx:187 msgid "Failed to delete date" msgstr "" @@ -4452,7 +4460,7 @@ msgstr "" msgid "Failed to delete date. It may have existing orders." msgstr "" -#: src/components/routes/event/OccurrencesTab/index.tsx:256 +#: src/components/routes/event/OccurrencesTab/index.tsx:258 msgid "Failed to delete dates" msgstr "" @@ -4540,7 +4548,7 @@ msgstr "Falha ao remover da lista de espera" msgid "Failed to remove override" msgstr "" -#: src/components/routes/event/OccurrencesTab/index.tsx:199 +#: src/components/routes/event/OccurrencesTab/index.tsx:201 msgid "Failed to reopen date" msgstr "" @@ -4677,7 +4685,7 @@ msgstr "" msgid "Fast payouts to your bank" msgstr "" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:72 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:74 msgid "February" msgstr "" @@ -4769,7 +4777,7 @@ msgstr "" msgid "Finish setup" msgstr "" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:63 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:65 msgid "First" msgstr "" @@ -4882,7 +4890,7 @@ msgstr "Texto do Rodapé" msgid "Forgot password?" msgstr "Esqueceu sua senha?" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:66 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:68 msgid "Fourth" msgstr "" @@ -4909,11 +4917,11 @@ msgstr "Produto gratuito, sem necessidade de informações de pagamento" msgid "French" msgstr "francês" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:586 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:599 msgid "Frequency" msgstr "" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:50 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:52 msgid "Fri" msgstr "" @@ -5004,7 +5012,7 @@ msgstr "GitHub" #: src/components/routes/event/OccurrenceDetail/index.tsx:72 #: src/components/routes/event/OccurrencesTab/cancelOccurrenceDialog.tsx:49 -#: src/components/routes/event/OccurrencesTab/index.tsx:221 +#: src/components/routes/event/OccurrencesTab/index.tsx:223 #: src/components/routes/event/OccurrencesTab/OccurrenceEditModal/index.tsx:339 #: src/components/routes/event/OccurrencesTab/OccurrenceEditModal/index.tsx:363 msgid "Go Back" @@ -5271,7 +5279,7 @@ msgstr "Como é aplicado o desconto?" msgid "How long a customer has to complete their purchase after receiving an offer. Leave empty for no timeout." msgstr "Quanto tempo um cliente tem para concluir a compra após receber uma oferta. Deixe vazio para sem limite de tempo." -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:750 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:763 msgid "How long does the schedule run?" msgstr "" @@ -5283,7 +5291,7 @@ msgstr "Quantos minutos o cliente tem para concluir o pedido. Recomendamos pelo msgid "How many times can this code be used?" msgstr "Quantas vezes esse código pode ser usado?" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:581 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:594 msgid "How often?" msgstr "" @@ -5589,7 +5597,7 @@ msgstr "item(ns)" msgid "Items" msgstr "Itens" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:71 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:73 msgid "January" msgstr "" @@ -5640,11 +5648,11 @@ msgstr "Entrar na lista de espera para {productDisplayName}" msgid "Joined" msgstr "Inscrito" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:77 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:79 msgid "July" msgstr "" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:76 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:78 msgid "June" msgstr "" @@ -5670,7 +5678,7 @@ msgstr "" #: src/components/forms/ProductForm/index.tsx:108 #: src/components/routes/event/OccurrencesTab/OccurrenceEditModal/index.tsx:449 -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:711 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:724 #: src/components/routes/event/Reports/OccurrenceSummaryReport/index.tsx:45 msgid "Label" msgstr "Rótulo" @@ -5685,7 +5693,7 @@ msgstr "" msgid "Language" msgstr "Língua" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:67 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:69 msgid "Last" msgstr "" @@ -5794,7 +5802,7 @@ msgid "Leave blank to use the default word \"Invoice\"" msgstr "Deixe em branco para usar a palavra padrão \"Fatura\"" #: src/components/routes/event/OccurrencesTab/OccurrenceEditModal/index.tsx:507 -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:816 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:829 msgid "Leave empty for unlimited" msgstr "" @@ -5834,7 +5842,7 @@ msgstr "LinkedIn" msgid "Links Allowed" msgstr "Links permitidos" -#: src/components/routes/event/OccurrencesTab/index.tsx:470 +#: src/components/routes/event/OccurrencesTab/index.tsx:472 msgid "List" msgstr "" @@ -6003,7 +6011,7 @@ msgstr "" msgid "Manage attendee" msgstr "Gerenciar participante" -#: src/components/routes/event/OccurrencesTab/index.tsx:460 +#: src/components/routes/event/OccurrencesTab/index.tsx:462 msgid "Manage dates and times for your recurring event" msgstr "" @@ -6074,7 +6082,7 @@ msgstr "Adicionar manualmente um participante" msgid "Manually Add Attendee" msgstr "Adicionar participante manualmente" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:73 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:75 msgid "March" msgstr "" @@ -6098,7 +6106,7 @@ msgstr "Máx. destinatários / mensagem" msgid "Maximum Per Order" msgstr "Máximo por pedido" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:75 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:77 msgid "May" msgstr "" @@ -6214,7 +6222,7 @@ msgstr "Configurações Diversas" msgid "Mode" msgstr "" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:46 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:48 msgid "Mon" msgstr "" @@ -6230,24 +6238,24 @@ msgstr "Os valores monetários são totais aproximados em todas as moedas" msgid "Monitor and manage failed background jobs" msgstr "Monitorar e gerir trabalhos de fundo falhados" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:95 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:97 msgid "month" msgstr "" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:671 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:684 msgid "Month" msgstr "Mês" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:58 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:60 #: src/components/routes/product-widget/OccurrenceSelector/index.tsx:41 msgid "Monthly" msgstr "" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:624 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:637 msgid "Monthly Pattern" msgstr "" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:103 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:105 msgid "months" msgstr "" @@ -6516,7 +6524,7 @@ msgstr "" msgid "No dates match the current filters." msgstr "" -#: src/components/routes/event/OccurrencesTab/index.tsx:570 +#: src/components/routes/event/OccurrencesTab/index.tsx:580 msgid "No dates match your filters" msgstr "" @@ -6529,7 +6537,7 @@ msgstr "" msgid "No dates scheduled" msgstr "Sem datas agendadas" -#: src/components/routes/event/OccurrencesTab/index.tsx:570 +#: src/components/routes/event/OccurrencesTab/index.tsx:580 msgid "No dates scheduled yet" msgstr "" @@ -6820,11 +6828,11 @@ msgstr "" msgid "Notify organizer of new orders" msgstr "Notificar o organizador sobre novos pedidos" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:81 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:83 msgid "November" msgstr "" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:800 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:813 msgid "Number of dates to create" msgstr "" @@ -6849,7 +6857,7 @@ msgid "Occurrence Cancelled" msgstr "" #: src/components/layouts/Event/index.tsx:113 -#: src/components/routes/event/OccurrencesTab/index.tsx:461 +#: src/components/routes/event/OccurrencesTab/index.tsx:463 msgid "Occurrence Schedule" msgstr "" @@ -6871,7 +6879,7 @@ msgstr "" msgid "Occurrences can be configured after creation" msgstr "" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:80 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:82 msgid "October" msgstr "" @@ -6965,7 +6973,7 @@ msgstr "Em andamento" #: src/components/common/EventCard/index.tsx:103 #: src/components/layouts/OrganizerHomepage/EventCard/index.tsx:49 -#: src/components/routes/event/OccurrencesTab/index.tsx:316 +#: src/components/routes/event/OccurrencesTab/index.tsx:318 #: src/components/routes/event/OccurrencesTab/OccurrenceEditModal/index.tsx:473 #: src/components/routes/my-tickets/index.tsx:56 #: src/components/routes/product-widget/OccurrenceSelector/index.tsx:122 @@ -7080,7 +7088,7 @@ msgstr "Opções" msgid "or" msgstr "ou" -#: src/components/routes/event/OccurrencesTab/index.tsx:593 +#: src/components/routes/event/OccurrencesTab/index.tsx:603 msgid "or add a single date" msgstr "" @@ -7088,7 +7096,7 @@ msgstr "" msgid "Or enable offline payments and disable Stripe" msgstr "Ou ative os pagamentos offline e desative o Stripe" -#: src/components/routes/event/OccurrencesTab/index.tsx:413 +#: src/components/routes/event/OccurrencesTab/index.tsx:415 msgid "order" msgstr "" @@ -7250,7 +7258,7 @@ msgstr "Pedido atualizado com sucesso" msgid "Order was cancelled" msgstr "O pedido foi cancelado" -#: src/components/routes/event/OccurrencesTab/index.tsx:413 +#: src/components/routes/event/OccurrencesTab/index.tsx:415 #: src/components/routes/event/orders.tsx:197 msgid "orders" msgstr "" @@ -7503,7 +7511,7 @@ msgid "Passwords are not the same" msgstr "senhas nao sao as mesmas" #: src/components/layouts/OrganizerHomepage/index.tsx:291 -#: src/components/routes/event/OccurrencesTab/index.tsx:484 +#: src/components/routes/event/OccurrencesTab/index.tsx:486 #: src/components/routes/organizer/Reports/EventsPerformanceReport/index.tsx:30 msgid "Past" msgstr "Passado" @@ -7707,15 +7715,15 @@ msgstr "Informações pessoais" msgid "Phone" msgstr "Telefone" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:372 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:379 msgid "Pick an end date" msgstr "" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:380 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:387 msgid "Pick at least one day of the month" msgstr "" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:369 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:376 msgid "Pick at least one day of the week" msgstr "" @@ -7765,7 +7773,7 @@ msgstr "Receitas da plataforma" msgid "Please add at least one option" msgstr "Adicione pelo menos uma opção" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:527 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:540 #: src/hooks/useFormErrorResponseHandler.tsx:18 msgid "Please check the provided information is correct" msgstr "Verifique se as informações fornecidas estão corretas" @@ -7895,7 +7903,7 @@ msgstr "Eventos populares (Últimos 14 dias)" msgid "Portuguese" msgstr "Português" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:654 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:667 msgid "Position" msgstr "" @@ -8385,7 +8393,7 @@ msgstr "Contas de referência" msgid "Refresh Preview" msgstr "Atualizar visualização" -#: src/components/routes/event/OccurrencesTab/index.tsx:216 +#: src/components/routes/event/OccurrencesTab/index.tsx:218 msgid "Refund all orders for these dates" msgstr "" @@ -8494,11 +8502,11 @@ msgstr "Remove completamente as datas e horários esgotados da página do evento msgid "Reopen for new sales" msgstr "" -#: src/components/routes/event/OccurrencesTab/index.tsx:192 +#: src/components/routes/event/OccurrencesTab/index.tsx:194 msgid "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." msgstr "" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:591 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:604 msgid "Repeat every" msgstr "" @@ -8699,7 +8707,7 @@ msgstr "Revogar oferta" msgid "Role" msgstr "Papel" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:772 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:785 msgid "Run until a specific date" msgstr "" @@ -8786,7 +8794,7 @@ msgstr "Preço do bilhete de exemplo" msgid "Sample Venue" msgstr "Local Exemplo" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:51 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:53 msgid "Sat" msgstr "" @@ -8836,7 +8844,7 @@ msgstr "" msgid "Save Organizer" msgstr "Salvar organizador" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:864 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:877 msgid "Save Schedule" msgstr "" @@ -8900,11 +8908,12 @@ msgstr "" msgid "Schedule added" msgstr "" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:520 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:530 +#: src/hooks/useOccurrenceGenerationPolling.ts:36 msgid "Schedule created successfully" msgstr "" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:793 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:806 msgid "Schedule ends on" msgstr "" @@ -8916,7 +8925,7 @@ msgstr "Agendar para mais tarde" msgid "Schedule Message" msgstr "Agendar mensagem" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:755 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:768 msgid "Schedule starts on" msgstr "" @@ -9039,7 +9048,7 @@ msgstr "Procurar..." msgid "Seasonal" msgstr "" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:64 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:66 msgid "Second" msgstr "" @@ -9215,7 +9224,7 @@ msgstr "Selecione quais eventos acionarão este webhook" msgid "Select..." msgstr "Selecione..." -#: src/components/routes/event/OccurrencesTab/index.tsx:495 +#: src/components/routes/event/OccurrencesTab/index.tsx:497 msgid "selected" msgstr "" @@ -9345,7 +9354,7 @@ msgstr "Configurações de SEO" msgid "SEO Title" msgstr "Título SEO" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:79 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:81 msgid "September" msgstr "" @@ -9373,7 +9382,7 @@ msgstr "Definir configurações predefinidas para novos eventos criados sob este msgid "Set how long each date lasts" msgstr "" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:784 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:797 msgid "Set number of dates" msgstr "" @@ -9393,7 +9402,7 @@ msgstr "Defina o número inicial para a numeração das faturas. Isso não poder msgid "Set to unlimited (remove limit)" msgstr "" -#: src/components/routes/event/OccurrencesTab/index.tsx:575 +#: src/components/routes/event/OccurrencesTab/index.tsx:585 msgid "Set up a recurring schedule to automatically create dates, or add them one at a time." msgstr "" @@ -9410,8 +9419,8 @@ msgstr "" msgid "Set up schedule" msgstr "" -#: src/components/routes/event/OccurrencesTab/index.tsx:532 -#: src/components/routes/event/OccurrencesTab/index.tsx:586 +#: src/components/routes/event/OccurrencesTab/index.tsx:535 +#: src/components/routes/event/OccurrencesTab/index.tsx:596 msgid "Set Up Schedule" msgstr "" @@ -9427,7 +9436,7 @@ msgstr "Configure a sua organização" msgid "Set up your schedule" msgstr "" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:569 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:582 msgid "Set Up Your Schedule" msgstr "" @@ -9564,7 +9573,7 @@ msgstr "Mostrar impostos e taxas separadamente" msgid "Showing {0} of {totalRows} records" msgstr "A mostrar {0} de {totalRows} registos" -#: src/components/routes/event/OccurrencesTab/index.tsx:614 +#: src/components/routes/event/OccurrencesTab/index.tsx:624 msgid "Showing {0}–{1} of {2}" msgstr "" @@ -9645,7 +9654,7 @@ msgstr "Links sociais e site" #: src/components/common/ProductsTable/SortableProduct/index.tsx:387 #: src/components/modals/ManageOccurrenceModal/index.tsx:186 -#: src/components/routes/event/OccurrencesTab/index.tsx:369 +#: src/components/routes/event/OccurrencesTab/index.tsx:371 msgid "Sold" msgstr "Vendido" @@ -9753,7 +9762,7 @@ msgstr "" msgid "Standard product with a fixed price" msgstr "Produto padrão com preço fixo" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:696 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:709 msgid "Start" msgstr "" @@ -9846,7 +9855,7 @@ msgstr "" #: src/components/routes/admin/Messages/index.tsx:120 #: src/components/routes/admin/Messages/index.tsx:167 #: src/components/routes/admin/Messages/index.tsx:294 -#: src/components/routes/event/OccurrencesTab/index.tsx:326 +#: src/components/routes/event/OccurrencesTab/index.tsx:328 #: src/components/routes/event/Reports/OccurrenceSummaryReport/index.tsx:51 #: src/components/routes/event/Reports/PromoCodesReport/index.tsx:88 #: src/components/routes/organizer/Reports/EventsPerformanceReport/index.tsx:62 @@ -10104,7 +10113,7 @@ msgstr "Festival de Música de Verão {0}" msgid "Summer Music Festival 2025" msgstr "Festival de Música de Verão 2025" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:52 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:54 msgid "Sun" msgstr "" @@ -10231,7 +10240,7 @@ msgstr "Conte-nos sobre seu evento" msgid "Tell us about your organization. This information will be displayed on your event pages." msgstr "Fale-nos sobre a sua organização. Esta informação será exibida nas páginas dos seus eventos." -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:573 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:586 msgid "Tell us how often your event repeats and we'll create all the dates for you." msgstr "" @@ -10325,7 +10334,7 @@ msgstr "O endereço de e-mail foi alterado. O participante receberá um novo bil msgid "The event you're looking for is not available at the moment. It may have been removed, expired, or the URL might be incorrect." msgstr "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." -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:756 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:769 msgid "The first date this schedule will generate from." msgstr "" @@ -10345,7 +10354,7 @@ msgstr "O link que está a tentar aceder expirou ou já não é válido. Por fav msgid "The link you clicked is invalid." msgstr "O link que você clicou é inválido." -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:840 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:853 msgid "The maximum is {MAX_PREVIEW} sessions. Please reduce the date range, frequency, or number of sessions per day." msgstr "" @@ -10481,7 +10490,7 @@ msgstr "Estes modelos serão usados como padrões para todos os eventos em sua o 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." -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:65 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:67 msgid "Third" msgstr "" @@ -10744,7 +10753,7 @@ msgstr "Isto não será visível para os clientes, mas ajuda-o a identificar o a msgid "Throughput" msgstr "" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:49 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:51 msgid "Thu" msgstr "" @@ -10881,7 +10890,7 @@ msgstr "Os produtos escalonados permitem que você ofereça múltiplas opções msgid "TikTok" msgstr "TikTok" -#: src/components/routes/event/OccurrencesTab/index.tsx:290 +#: src/components/routes/event/OccurrencesTab/index.tsx:292 msgid "Time" msgstr "" @@ -10912,7 +10921,7 @@ msgstr "Vezes usado" msgid "Timezone" msgstr "Fuso horário" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:702 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:715 msgid "to" msgstr "" @@ -11056,7 +11065,7 @@ msgstr "Rastreamento e análise" msgid "Try a different search term or filter" msgstr "" -#: src/components/routes/event/OccurrencesTab/index.tsx:574 +#: src/components/routes/event/OccurrencesTab/index.tsx:584 msgid "Try adjusting your filters to see more dates." msgstr "" @@ -11069,7 +11078,7 @@ msgstr "Tentar outro e-mail" msgid "Try Hi.Events Free" msgstr "Experimente o Hi.Events gratuitamente" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:47 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:49 msgid "Tue" msgstr "" @@ -11232,7 +11241,7 @@ msgstr "Não confiável" #: src/components/common/EventsDashboardStatusButtons/index.tsx:20 #: src/components/common/EventStatusBadge/index.tsx:16 #: src/components/layouts/OrganizerHomepage/index.tsx:285 -#: src/components/routes/event/OccurrencesTab/index.tsx:483 +#: src/components/routes/event/OccurrencesTab/index.tsx:485 #: src/components/routes/organizer/Reports/EventsPerformanceReport/index.tsx:33 msgid "Upcoming" msgstr "Por vir" @@ -11880,7 +11889,7 @@ msgstr "Webhooks" msgid "Website" msgstr "Site" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:48 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:50 msgid "Wed" msgstr "" @@ -11888,16 +11897,16 @@ msgstr "" msgid "Wednesday" msgstr "" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:94 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:96 msgid "week" msgstr "" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:57 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:59 #: src/components/routes/product-widget/OccurrenceSelector/index.tsx:35 msgid "Weekly" msgstr "" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:102 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:104 msgid "weeks" msgstr "" @@ -11953,7 +11962,7 @@ msgstr "A quais produtos essa capacidade deve se aplicar?" msgid "What time will you be arriving?" msgstr "A que horas você chegará?" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:688 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:701 msgid "What time?" msgstr "" @@ -12140,7 +12149,7 @@ msgstr "Escreva sua mensagem aqui..." msgid "X (Twitter)" msgstr "X (Twitter)" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:96 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:98 msgid "year" msgstr "" @@ -12150,12 +12159,12 @@ msgstr "" msgid "Year to date" msgstr "Ano até agora" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:59 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:61 #: src/components/routes/product-widget/OccurrenceSelector/index.tsx:43 msgid "Yearly" msgstr "" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:104 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:106 msgid "years" msgstr "" @@ -12200,7 +12209,7 @@ msgstr "Você pode configurar taxas de serviço adicionais e impostos nas config msgid "You can create a promo code which targets this product on the" msgstr "Você pode criar um código promocional que direcione este produto no" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:823 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:836 msgid "You can override this for individual dates later." msgstr "" diff --git a/frontend/src/locales/ru.js b/frontend/src/locales/ru.js index 40be6e1680..0c5f3120d4 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\":\"Последние 30 дней\",\"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\":\"Выберите товары\",\"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\":\"Распродано\",\"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\"],\"/HkCs4\":[[\"0\"],\" tickets\"],\"30bTiU\":[[\"activeCount\"],\" enabled\"],\"jTs4am\":[[\"appName\"],\" logo\"],\"gbJOk9\":[[\"attendeeCount\"],\" attendees are registered for this session.\"],\"TjbIUI\":[[\"availableCount\"],\" of \",[\"totalCount\"],\" available\"],\"PSChHo\":[\"Осталось мест: \",[\"capacity\"]],\"lzQ8/M\":[[\"checkedIn\"],\" / \",[\"total\"],\" checked in\"],\"RZ0JX3\":[[\"chipTime\"],\", распродано\"],\"M4KnFs\":[[\"chipTime\"],\", Sold Out, waitlist available\"],\"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\"],\"VFLd0I\":[[\"slotCount\"],\" times available\"],\"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.\",\"Il5Uid\":\"<0>Это общее доступное количество по всем датам расписания в сумме — не ограничение на отдельную дату. Чтобы ограничить количество участников на каждую дату, задайте вместимость на <1>странице «Расписание дат».\",\"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\",\"y2Jh0m\":\"1 time available\",\"cGtUz6\":\"За 1 неделю до мероприятия\",\"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.\",\"RQ5kDd\":\"A message to display when there are no products in this category.\",\"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\",\"QeupRg\":\"Добавить даты\",\"Q219NT\":\"Add Dates\",\"yjB5VC\":\"Add dates and times for your recurring event\",\"Z8idyM\":\"Add details\",\"wpirGs\":\"Add event details\",\"VX6WUv\":\"Добавить локацию\",\"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.\",\"3e31kI\":\"After your event is created, you can choose how often it repeats from the dashboard.\",\"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\":\"Разрешить участникам обновлять информацию о билетах (имя, электронная почта) через защищенную ссылку, отправленную с подтверждением заказа.\",\"VZdky1\":\"Allow buyers to copy their details to all attendees\",\"F3mW5G\":\"Разрешить клиентам присоединиться к списку ожидания, когда этот продукт распродан\",\"4CMO/q\":\"Allow customers to join a waitlist when this product is sold out. Customers join the waitlist for a specific date.\",\"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.\",\"OPFdAM\":\"An optional description of this category to display on the event page.\",\"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.\",\"jVoYha\":[\"применён — скидка \",[\"0\"],\" на ваш заказ\"],\"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.\",\"RiF/yT\":\"Are you sure you want to delete this image?\",\"b3+Qku\":\"Are you sure you want to delete this tax or fee? It will no longer be applied to new orders.\",\"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?\",\"b7tkGp\":\"Are you sure you want to revoke this invitation?\",\"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\",\"Z44eZS\":\"At least one product must stay available for this date. To make the date inaccessible, cancel it from the schedule instead.\",\"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\",\"94aQMU\":\"Attendee Information\",\"KkrBiR\":\"Attendee information collection\",\"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\",\"Xp+ywP\":\"Available once payment completes\",\"dwDH1K\":[\"Available times on \",[\"dayName\"]],\"clF06r\":\"Доступно для возврата\",\"NB5+UG\":\"Available Tokens\",\"L+wGOG\":\"Awaiting\",\"qcw2OD\":\"Awaiting pay\",\"kNmmvE\":\"Awesome Events Ltd.\",\"TeSaQO\":\"Back to Accounts\",\"kYqM1A\":\"Back to Event\",\"s5QRF3\":\"Back to messages\",\"td/bh+\":\"Back to Reports\",\"nsm7BA\":\"Назад к поиску\",\"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\",\"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\":\"Отмена отменит всех участников, связанных с этим заказом, и вернет билеты в доступный пул.\",\"FPpqc7\":[\"Cancelling \",[\"0\"],\" date(s). This may take a moment to complete.\"],\"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\",\"DRK3Bq\":\"Category deleted successfully\",\"o+XJ9D\":\"Изменить\",\"kJkjoB\":\"Change duration\",\"J0KExZ\":\"Change the attendee limit\",\"ssospy\":\"Change time\",\"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\",\"pHEhf+\":\"Choose a typeface that matches your brand. Fonts are self-hosted via Bunny Fonts.\",\"Zok1Gx\":\"Choose an organizer\",\"pkk46Q\":\"Choose an Organizer\",\"Ag32+c\":\"Choose another date\",\"Crr3pG\":\"Choose calendar\",\"Z38ZJu\":\"Choose how the event date is shown on the ticket\",\"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\",\"/K4Vqr\":\"Подключите Stripe, чтобы принимать платежи\",\"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\":\"Для онлайн-мероприятий необходимо указать данные для подключения\",\"jfC/xh\":\"Contact\",\"LOFgda\":[\"Contact \",[\"0\"]],\"41BQ3k\":\"Contact Email\",\"m8WD6t\":\"Continue Setup\",\"0GwUT4\":\"Continue to Checkout\",\"sBV87H\":\"Continue to event creation\",\"nKtyYu\":\"Continue to next step\",\"F3/nus\":\"Continue to Payment\",\"s30OcA\":\"Управляйте отображением дат и времени на странице мероприятия\",\"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\":\"Не удалось удалить локацию\",\"vkiDx2\":\"Could not prepare the bulk update.\",\"KOavaU\":\"Не удалось получить данные адреса\",\"/lq4oO\":\"Could not save date\",\"mHu0az\":\"Couldn't send verification email. Please try again.\",\"QOIm+S\":\"Counts include all upcoming dates. Each person is offered a spot for the date they joined for.\",\"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\",\"jqhTmw\":\"Create a list for this date\",\"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\",\"eWEV9G\":\"Create new password\",\"wl2iai\":\"Create Schedule\",\"8AiKIu\":\"Create Ticket or Product\",\"/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\":\"Произвольная дата и время\",\"WDMdn8\":\"Custom questions\",\"O6mra8\":\"Custom Questions\",\"axv/Mi\":\"Custom template\",\"2YeVGY\":\"Customer link copied to clipboard\",\"QMHSMS\":\"Клиент получит email с подтверждением возврата\",\"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\",\"vHbfoQ\":\"Date reactivated\",\"hvah+S\":\"Date reopened for new sales\",\"Ez0YsD\":\"Date updated successfully\",\"Te33mU\":\"Dates are managed per occurrence\",\"91zCxb\":\"Dates with sessions\",\"/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\",\"KpnwJK\":[\"Удалить \\\"\",[\"0\"],\"\\\"?\"],\"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\":\"Удалить локацию\",\"sY3tIw\":\"Delete Organizer\",\"UBv8UK\":\"Delete Permanently\",\"dPyJ15\":\"Delete Template\",\"IQTR34\":\"Delete this category? Any products in it will also be deleted. This cannot be undone.\",\"/1wMxk\":\"Delete this product? This cannot be undone.\",\"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\":\"Отображать флажок, позволяющий клиентам подписаться на маркетинговые сообщения от этого организатора мероприятий.\",\"HtaSQp\":\"Показывает, сколько мест осталось на каждую дату в виджете билетов. Это можно изменить для отдельных дат.\",\"pfa8F0\":\"Отображаемое имя\",\"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.\",\"Xfsjel\":\"Каждый товар\",\"5oD9f/\":\"Earlier\",\"LTzmgK\":[\"Edit \",[\"0\"],\" Template\"],\"v4+lcZ\":\"Edit Affiliate\",\"2iZEz7\":\"Edit Answer\",\"t2bbp8\":\"Редактировать участника\",\"etaWtB\":\"Редактировать данные участника\",\"+guao5\":\"Edit Configuration\",\"1Mp/A4\":\"Edit Date\",\"m0ZqOT\":\"Редактировать локацию\",\"8oivFT\":\"Редактировать локацию\",\"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\",\"ZayGC7\":\"End on a date\",\"48Y16Q\":\"End time (optional)\",\"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.\",\"SKx/0u\":\"Введите название места или адрес\",\"ppwojw\":\"Укажите название площадки или адрес для офлайн-мероприятий\",\"j+eCIq\":\"Ввести адрес вручную\",\"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)\",\"RRlWVA\":\"Весь заказ\",\"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\",\"+v+GW0\":\"Event date display\",\"7u9/DO\":\"Event deleted successfully\",\"imgKgl\":\"Event Description\",\"IzR/Fc\":\"Event lifetime\",\"PYs3rP\":\"Event name\",\"HhwcTQ\":\"Event Name\",\"WZZzB6\":\"Event name is required\",\"Wd5CDM\":\"Event name should be less than 150 characters\",\"4JzCvP\":\"Event Not Available\",\"mImacG\":\"Event Page\",\"Hk9Ki/\":\"Event restored successfully\",\"JyD0LH\":\"Event Settings\",\"XVLu2v\":\"Event Title\",\"OfmsI9\":\"Event Too New\",\"4SILkp\":\"Event totals\",\"YDVUVl\":\"Event Types\",\"+HeiVx\":\"Event Updated\",\"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\",\"5E23qd\":\"Failed to delete product. Please try again.\",\"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\":\"Имя обязательно\",\"rVogsf\":\"Устраните проблемы, чтобы опубликовать\",\"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\",\"X+U6/w\":\"Font Family\",\"lWxAUo\":\"Food & Drink\",\"nFm+5u\":\"Footer Text\",\"a8nooQ\":\"Fourth\",\"wtuVU4\":\"Frequency\",\"xVhQZV\":\"Fri\",\"39y5bn\":\"Friday\",\"f5UbZ0\":\"Full data ownership\",\"cfvx/y\":\"Full event\",\"MY2SVM\":\"Полный возврат\",\"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\",\"CZXzs4\":\"Greek\",\"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\":\"Скрыть дополнительные параметры\",\"P+5Pbo\":\"Hide Answers\",\"VMlRqi\":\"Hide details\",\"FmogyU\":\"Hide Options\",\"uXNYjR\":\"Скрывать распроданные даты и время\",\"g9RcYX\":\"Hide the date\",\"uMwTx7\":\"Hide this category?\",\"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\",\"49Tkiw\":\"Как применяется скидка?\",\"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?\",\"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\",\"CY3yHL\":\"If checked, this category will be hidden from the public.\",\"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\",\"/LCAwL\":\"В процессе\",\"F1Xp97\":\"Individual attendees\",\"85e6zs\":\"Insert Liquid Token\",\"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\",\"Dn4OyV\":\"Invited\",\"IuMGvq\":\"Invoice\",\"a/bUcL\":\"It happens on more than one date\",\"d+Oe9r\":\"It may have been unpublished or removed. Please check the link and try again.\",\"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.\",\"o66QSP\":\"label updates\",\"RtKKbA\":\"Last\",\"DruLRc\":\"Last 14 Days\",\"ve9JTU\":\"Фамилия обязательна\",\"h0Q9Iw\":\"Last Response\",\"gw3Ur5\":\"Last Triggered\",\"FIq1Ba\":\"Later\",\"xvnLMP\":\"Latest check-ins\",\"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\",\"gggTBm\":\"LinkedIn\",\"nvOPBA\":\"Links Allowed\",\"2BBAbc\":\"List\",\"dF6vP6\":\"Live\",\"fpMs2Z\":\"LIVE\",\"D9zTjx\":\"Live Events\",\"C33p4q\":\"Loaded dates\",\"WdmJIX\":\"Загрузка предпросмотра...\",\"IoDI2o\":\"Loading tokens...\",\"G3Ge9Z\":\"Loading webhook logs...\",\"NFxlHW\":\"Loading Webhooks\",\"E0DoRM\":\"Локация удалена\",\"7w8lJU\":\"Локация сохранена\",\"YsRXDD\":\"Локация обновлена\",\"A/kIva\":\"location updates\",\"iyZPPR\":\"локаций\",\"VppBoU\":\"Локации\",\"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\",\"PSRm6/\":\"Найти мои билеты\",\"yJFu/X\":\"Главный офис\",\"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.\",\"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\",\"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\":\"Месяц\",\"+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\",\"xxU3NX\":\"Net Revenue\",\"7I8LlL\":\"New capacity\",\"n1GRql\":\"New label\",\"y0Fcpd\":\"Новая локация\",\"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.\",\"Zc216S\":\"No date added\",\"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\",\"OtJSnL\":\"Нет запланированных дат\",\"gEdNe8\":\"No dates scheduled yet\",\"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\",\"IcAC6J\":\"No matching fonts\",\"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\",\"8mw4tm\":\"No products message\",\"wYiAtV\":\"No recent account signups\",\"UW90md\":\"Получатели не найдены\",\"QoAi8D\":\"No response\",\"JeO7SI\":\"No Response\",\"EK/G11\":\"No responses yet\",\"59OWd3\":\"Нет сохранённых локаций\",\"mPdY6W\":\"Нет подсказок\",\"3sRuiW\":\"No Tickets Found\",\"debCrL\":\"Нет билетов для продажи\",\"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\",\"V9flmL\":\"Occurrence Schedule\",\"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.\"],\"6Aih4U\":\"Offline\",\"nO3VbP\":[\"On sale \",[\"0\"]],\"oXOSPE\":\"Online\",\"aqmy5k\":\"Online — provide connection details\",\"LuZBbx\":\"Online & in-person\",\"IXuOqt\":\"Online & in-person — see schedule\",\"WjSpu5\":\"Online Event\",\"scPxI/\":[\"Осталось всего \",[\"capacity\"]],\"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\",\"wkpaqp\":\"Only show start date and time\",\"DMk8F0\":\"Only tickets count toward capacity\",\"M2w1ni\":\"Only visible with promo code\",\"y8Bm7C\":\"Open check-in\",\"RLz7P+\":\"Open occurrence\",\"cDSdPb\":\"Необязательное название, отображаемое в списках выбора, напр. \\\"Конференц-зал офиса\\\"\",\"HXMJxH\":\"Дополнительный текст для отказов от ответственности, контактной информации или благодарственных заметок (только одна строка)\",\"L565X2\":\"options\",\"8m9emP\":\"or add a single date\",\"eBskDE\":\"Или включите офлайн-платежи и отключите Stripe\",\"dSeVIm\":\"order\",\"c/TIyD\":\"Order & Ticket\",\"H5qWhm\":\"Order cancelled\",\"b6+Y+n\":\"Order complete\",\"x4MLWE\":\"Order Confirmation\",\"CsTTH0\":\"Подтверждение заказа успешно отправлено повторно\",\"ppuQR4\":\"Order Created\",\"xtQzag\":\"Order details\",\"vrSW9M\":\"Заказ отменен и возвращен. Владелец заказа уведомлен.\",\"rzw+wS\":\"Order Holders\",\"oI/hGR\":\"Order ID\",\"RQCXz6\":\"Order Limits\",\"SO9AEF\":\"Order limits set\",\"vu6Arl\":\"Order Marked as Paid\",\"sLbJQz\":\"Order not found\",\"kvYpYu\":\"Order Not Found\",\"eJ8SvM\":\"Order number, purchase date, purchaser email\",\"FaPYw+\":\"Order owner\",\"eB5vce\":\"Order owners with a specific product\",\"CxLoxM\":\"Order owners with products\",\"UkHo4c\":\"Order Ref\",\"EZy55F\":\"Order Refunded\",\"6eSHqs\":\"Order statuses\",\"oW5877\":\"Order Total\",\"e7eZuA\":\"Order Updated\",\"1SQRYo\":\"Заказ успешно обновлен\",\"3NT0Ck\":\"Order was cancelled\",\"V5khLm\":\"orders\",\"sd5IMt\":\"Orders Completed\",\"5It1cQ\":\"Orders Exported\",\"UQ0ACV\":\"Orders Total\",\"B/EBQv\":\"Orders:\",\"qtGTNu\":\"Organic Accounts\",\"P/JHA4\":\"Organizer archived successfully\",\"S3CZ5M\":\"Organizer Dashboard\",\"GzjTd0\":\"Organizer deleted successfully\",\"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\",\"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\",\"+kvxv+\":\"за заказ\",\"VlXNyK\":\"Per order\",\"NhuGd7\":\"за товар\",\"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\",\"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\",\"OESu7I\":\"Prevent overselling by sharing inventory across multiple ticket types.\",\"NgVUL2\":\"Preview checkout form\",\"cs5muu\":\"Preview Event page\",\"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\",\"W0ETyY\":\"Заполните хотя бы одно поле адреса (площадка, улица, город или страна).\",\"2W/7Gz\":\"Provide the following before Stripe's next review to keep payouts flowing.\",\"EEYbdt\":\"Publish\",\"JcgJKc\":\"Опубликовать всё равно\",\"evDBV8\":\"Опубликовать мероприятие\",\"2zEfOd\":\"Publish your event\",\"L7nrC8\":\"После публикации страница вашего мероприятия станет общедоступной и откроется регистрация.\",\"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.\",\"RENQ6j\":\"Готовы к публикации?\",\"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\":\"Получатели доступны после отправки сообщения\",\"WEYdDv\":\"Recommended\",\"wuhHPE\":\"Recurring\",\"asLqwt\":\"Повторяющееся мероприятие\",\"s3uzsK\":\"Настройки повторяющегося мероприятия\",\"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\",\"FaK/8G\":[\"Возврат заказа \",[\"0\"]],\"MGbi9P\":\"Refund pending\",\"BDSRuX\":[\"Refunded: \",[\"0\"]],\"bU4bS1\":\"Refunds\",\"rYXfOA\":\"Regional Settings\",\"5tl0Bp\":\"Registration Questions\",\"ZNo5k1\":\"Remaining\",\"Bjh87R\":\"Remove label from all dates\",\"IVZaEo\":\"Полностью убирает распроданные даты и время со страницы мероприятия. Если отключено, они остаются видимыми с пометкой «распродано».\",\"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...\",\"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\",\"Lf7TCn\":\"Многоразовые площадки появляются здесь автоматически, когда вы создаёте мероприятия с адресами; вы также можете добавить свои.\",\"mdQ0zb\":\"Многоразовые площадки для ваших мероприятий. Локации, созданные через автозаполнение, автоматически сохраняются здесь.\",\"XFOPle\":\"Reuse\",\"1Zehp4\":\"Reuse a Stripe connection from another organizer in this account.\",\"Oo/PLb\":\"Revenue Summary\",\"CfuueU\":\"Revoke Offer\",\"RIgKv+\":\"Run until a specific date\",\"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\":\"Сохранённая локация\",\"cgw0cL\":\"Сохранённые локации\",\"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...\",\"YnMfsK\":\"Поиск по названию или адресу...\",\"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...\",\"5WYZKZ\":\"Результаты поиска\",\"IG85fV\":\"Ищите сохранённые локации или найдите адрес...\",\"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\",\"Ps6Xtf\":\"Select a date to see available times\",\"e4L7bF\":\"Select a message to view its contents\",\"zPRPMf\":\"Select a tier\",\"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.\",\"oBXbO4\":\"Selling a physical product? Cap its quantity on the <0>products page instead.\",\"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\",\"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\",\"0Ls9qe\":\"Set up the tickets you'll sell and their prices\",\"xMO+Ao\":\"Set up your organization\",\"5pEFnq\":\"Set up your schedule\",\"h/9JiC\":\"Set Up Your Schedule\",\"zRRuUD\":\"Set up your schedule in the next steps\",\"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\":\"Показать дополнительные параметры\",\"cMW+gm\":[\"Show all platforms (\",[\"0\"],\" more with values)\"],\"wXi9pZ\":\"Show attendee notes to non-logged-in staff\",\"4LZFir\":\"Show entire date range\",\"UVPI5D\":\"Show fewer platforms\",\"Eu/N/d\":\"Показать флажок подписки на маркетинг\",\"SXzpzO\":\"Показывать флажок подписки на маркетинг по умолчанию\",\"b33PL9\":\"Show more platforms\",\"Eut7p9\":\"Show order details to non-logged-in staff\",\"+RoWKN\":\"Show question answers to non-logged-in staff\",\"jbcx6L\":\"Show remaining capacity on event dates\",\"rXxBOx\":\"Show remaining capacity to buyers\",\"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\",\"paESr6\":\"Slovak\",\"9wu8nm\":\"Snapchat\",\"kIKb9e\":\"Social\",\"d0rUsW\":\"Social Links\",\"j/TOB3\":\"Social Links & Website\",\"s9KGXU\":\"Sold\",\"yp+0jj\":\"sold out\",\"1hupow\":\"Sold Out, waitlist available\",\"iACSrw\":\"Some details are hidden from public access. Log in to view everything.\",\"Dia6iz\":\"Something went wrong while deleting the image. Please try again.\",\"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\",\"StWUH4\":\"Start check-in\",\"JcQp9p\":\"Start date & time\",\"0m/ekX\":\"Start Date & Time\",\"izRfYP\":\"Start date is required\",\"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.\",\"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\",\"kRWc2g\":\"Настройки повторяющегося мероприятия успешно обновлены\",\"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\",\"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.\",\"7oksH+\":[\"Скидка вычитается из каждого подходящего товара. Например, скидка \",[\"currencySymbol\"],\"10 × 3 билета = скидка \",[\"currencySymbol\"],\"30.\"],\"sKL8k2\":\"Скидка вычитается один раз из суммы заказа.\",\"cDHM1d\":\"Адрес электронной почты был изменен. Участник получит новый билет на обновленный адрес электронной почты.\",\"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.\",\"sxKqBm\":\"Полная сумма заказа будет возвращена на первоначальный способ оплаты клиента.\",\"KgDp6G\":\"Ссылка, к которой вы пытаетесь получить доступ, истекла или больше не действительна. Пожалуйста, проверьте вашу электронную почту для получения обновленной ссылки для управления вашим заказом.\",\"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\",\"OVSkIF\":\"The quick brown fox jumps over the lazy dog.\",\"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\",\"ybBP2H\":\"There are no products available for this date. Please choose another date.\",\"O7g4eR\":\"There are no upcoming dates for this event\",\"062KsE\":\"These details are shown on the attendee's ticket and order summary for this date only.\",\"5Eu+tn\":\"Эти данные будут показаны только после успешного завершения заказа.\",\"jQjwR+\":\"These details will replace any existing location on the affected dates and show on attendee tickets.\",\"6eaLu/\":\"Эти цены действуют для всех дат расписания, а количества уровней ограничивают общие продажи по всем датам в сумме. Даты продаж уровней действуют глобально. Цены для отдельных дат можно переопределить на <0>странице «Расписание дат».\",\"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.\",\"E9BqZw\":\"This date only\",\"RzEvf5\":\"Это мероприятие закончилось\",\"kc4bIA\":\"У этого мероприятия ещё нет билетов или товаров, поэтому участники не смогут зарегистрироваться.\",\"eMaNd0\":\"This event is not available\",\"YClrdK\":\"This event is not published yet\",\"GL6z+k\":\"Все билеты на это мероприятие распроданы\",\"pIwDhS\":\"This event's dates and times are set on the occurrence schedule.\",\"ny5rgr\":\"This is a recurring event\",\"tc64Zz\":\"This is the name of the category that will be displayed on the event page.\",\"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.\",\"5DpZrC\":\"Это ограничивает общие продажи по всем датам расписания в сумме — это не ограничение на отдельную дату. Чтобы ограничить количество участников на каждую дату, задайте вместимость на <0>странице «Расписание дат».\",\"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\",\"qEGn8I\":\"У этого повторяющегося мероприятия ещё нет дат, поэтому участникам нечего бронировать.\",\"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.\",\"1LuJNw\":\"This ticket is no longer valid\",\"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\",\"HGuXjF\":\"Ticket holders\",\"CMUt3Y\":\"Ticket Holders\",\"awHmAT\":\"ID билета\",\"6czJik\":\"Ticket Logo\",\"t79rDv\":\"Ticket Not Found\",\"6tmWch\":\"Ticket or Product\",\"1tfWrD\":\"Предпросмотр билета для\",\"KnjoUA\":\"Ticket price\",\"pGZOcL\":\"Билет успешно отправлен повторно\",\"o02GZM\":\"Ticket sales have ended for this event\",\"8jLPgH\":\"Ticket Type\",\"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\",\"fXf2r5\":[\"Times shown in \",[\"timezoneAbbr\"]],\"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\",\"SMDzqJ\":\"Total Attendees\",\"orBECM\":\"Total Collected\",\"k5CU8c\":\"Total Entries\",\"4B7oCp\":\"Total Fee\",\"sMMlTX\":\"Total fees\",\"mlvCEl\":\"Total orders\",\"2AW/k5\":\"Общее количество на все даты\",\"dp8BCb\":\"Total tax\",\"vb0Q0/\":\"Total Users\",\"oJjplO\":\"Total Views\",\"rBZ9pz\":\"Tours\",\"orluER\":\"Track account growth and performance by attribution source\",\"YwKzpH\":\"Tracking & Analytics\",\"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\",\"vq2WxD\":\"Tue\",\"G3myU+\":\"Tuesday\",\"Kz91g/\":\"Turkish\",\"GdOhw6\":\"Turn sound off\",\"KUOhTy\":\"Turn sound on\",\"dBeuY2\":\"Twitch\",\"QytzQr\":\"Type \\\"delete\\\" to confirm\",\"nWRfmt\":\"Typography\",\"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\",\"Ef7StM\":\"Unknown\",\"ZBAScj\":\"Unknown Attendee\",\"MEIAzV\":\"Без названия\",\"K6L5Mx\":\"Локация без названия\",\"7yiFvZ\":\"Unpaid\",\"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 для персонализации ваших писем\",\"/rsy72\":\"Use event default\",\"0k4cdb\":\"Use order details for all attendees. Attendee names and emails will match the buyer's information.\",\"bA31T4\":\"Use the buyer's details for all attendees\",\"PpgtnC\":\"Использовать этот адрес\",\"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\",\"YSE15b\":\"View all check-in lists\",\"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\",\"aUi/Dz\":\"Warning: This is the system default configuration. Changes will affect all accounts that don't have a specific configuration assigned.\",\"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.\",\"Fjj/5/\":\"We couldn't load the check-in lists. Please try again.\",\"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.\",\"mfM/HJ\":[\"We'll notify you by email if a spot becomes available for \",[\"productDisplayName\"],\" on \",[\"occurrenceDate\"],\".\"],\"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.\",\"OIkHj+\":\"When a product sells out, customers can join a waitlist to be notified when spots become available. Customers join the waitlist for a specific date, and offers are made per date.\",\"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.\",\"pm9tpn\":\"When enabled, buyers can copy their own name and email onto all attendees at once. Turn this off to remove the \\\"All attendees\\\" option; buyers can still copy to the first attendee, and the rest must be entered individually.\",\"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.\",\"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.\",\"D8baxD\":\"У вас есть платные билеты, но Stripe ещё не подключён, поэтому вы не можете принимать платежи.\",\"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\"],\"!\"],\"ZlLcht\":[\"You're joining the waitlist for \",[\"occurrenceDate\"],\".\"],\"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\":\"Последние 30 дней\",\"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\":\"Выберите товары\",\"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\":\"Распродано\",\"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\"],\"/HkCs4\":[[\"0\"],\" tickets\"],\"30bTiU\":[[\"activeCount\"],\" enabled\"],\"jTs4am\":[[\"appName\"],\" logo\"],\"gbJOk9\":[[\"attendeeCount\"],\" attendees are registered for this session.\"],\"TjbIUI\":[[\"availableCount\"],\" of \",[\"totalCount\"],\" available\"],\"PSChHo\":[\"Осталось мест: \",[\"capacity\"]],\"lzQ8/M\":[[\"checkedIn\"],\" / \",[\"total\"],\" checked in\"],\"RZ0JX3\":[[\"chipTime\"],\", распродано\"],\"M4KnFs\":[[\"chipTime\"],\", Sold Out, waitlist available\"],\"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\"],\"VFLd0I\":[[\"slotCount\"],\" times available\"],\"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.\",\"Il5Uid\":\"<0>Это общее доступное количество по всем датам расписания в сумме — не ограничение на отдельную дату. Чтобы ограничить количество участников на каждую дату, задайте вместимость на <1>странице «Расписание дат».\",\"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\",\"y2Jh0m\":\"1 time available\",\"cGtUz6\":\"За 1 неделю до мероприятия\",\"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.\",\"RQ5kDd\":\"A message to display when there are no products in this category.\",\"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\",\"QeupRg\":\"Добавить даты\",\"Q219NT\":\"Add Dates\",\"yjB5VC\":\"Add dates and times for your recurring event\",\"Z8idyM\":\"Add details\",\"wpirGs\":\"Add event details\",\"VX6WUv\":\"Добавить локацию\",\"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.\",\"3e31kI\":\"After your event is created, you can choose how often it repeats from the dashboard.\",\"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\":\"Разрешить участникам обновлять информацию о билетах (имя, электронная почта) через защищенную ссылку, отправленную с подтверждением заказа.\",\"VZdky1\":\"Allow buyers to copy their details to all attendees\",\"F3mW5G\":\"Разрешить клиентам присоединиться к списку ожидания, когда этот продукт распродан\",\"4CMO/q\":\"Allow customers to join a waitlist when this product is sold out. Customers join the waitlist for a specific date.\",\"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.\",\"OPFdAM\":\"An optional description of this category to display on the event page.\",\"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.\",\"jVoYha\":[\"применён — скидка \",[\"0\"],\" на ваш заказ\"],\"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.\",\"RiF/yT\":\"Are you sure you want to delete this image?\",\"b3+Qku\":\"Are you sure you want to delete this tax or fee? It will no longer be applied to new orders.\",\"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?\",\"b7tkGp\":\"Are you sure you want to revoke this invitation?\",\"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\",\"Z44eZS\":\"At least one product must stay available for this date. To make the date inaccessible, cancel it from the schedule instead.\",\"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\",\"94aQMU\":\"Attendee Information\",\"KkrBiR\":\"Attendee information collection\",\"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\",\"Xp+ywP\":\"Available once payment completes\",\"dwDH1K\":[\"Available times on \",[\"dayName\"]],\"clF06r\":\"Доступно для возврата\",\"NB5+UG\":\"Available Tokens\",\"L+wGOG\":\"Awaiting\",\"qcw2OD\":\"Awaiting pay\",\"kNmmvE\":\"Awesome Events Ltd.\",\"TeSaQO\":\"Back to Accounts\",\"kYqM1A\":\"Back to Event\",\"s5QRF3\":\"Back to messages\",\"td/bh+\":\"Back to Reports\",\"nsm7BA\":\"Назад к поиску\",\"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\",\"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\":\"Отмена отменит всех участников, связанных с этим заказом, и вернет билеты в доступный пул.\",\"FPpqc7\":[\"Cancelling \",[\"0\"],\" date(s). This may take a moment to complete.\"],\"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\",\"DRK3Bq\":\"Category deleted successfully\",\"o+XJ9D\":\"Изменить\",\"kJkjoB\":\"Change duration\",\"J0KExZ\":\"Change the attendee limit\",\"ssospy\":\"Change time\",\"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\",\"pHEhf+\":\"Choose a typeface that matches your brand. Fonts are self-hosted via Bunny Fonts.\",\"Zok1Gx\":\"Choose an organizer\",\"pkk46Q\":\"Choose an Organizer\",\"Ag32+c\":\"Choose another date\",\"Crr3pG\":\"Choose calendar\",\"Z38ZJu\":\"Choose how the event date is shown on the ticket\",\"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\",\"/K4Vqr\":\"Подключите Stripe, чтобы принимать платежи\",\"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\":\"Для онлайн-мероприятий необходимо указать данные для подключения\",\"jfC/xh\":\"Contact\",\"LOFgda\":[\"Contact \",[\"0\"]],\"41BQ3k\":\"Contact Email\",\"m8WD6t\":\"Continue Setup\",\"0GwUT4\":\"Continue to Checkout\",\"sBV87H\":\"Continue to event creation\",\"nKtyYu\":\"Continue to next step\",\"F3/nus\":\"Continue to Payment\",\"s30OcA\":\"Управляйте отображением дат и времени на странице мероприятия\",\"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\":\"Не удалось удалить локацию\",\"vkiDx2\":\"Could not prepare the bulk update.\",\"KOavaU\":\"Не удалось получить данные адреса\",\"/lq4oO\":\"Could not save date\",\"mHu0az\":\"Couldn't send verification email. Please try again.\",\"QOIm+S\":\"Counts include all upcoming dates. Each person is offered a spot for the date they joined for.\",\"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\",\"jqhTmw\":\"Create a list for this date\",\"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\",\"eWEV9G\":\"Create new password\",\"wl2iai\":\"Create Schedule\",\"8AiKIu\":\"Create Ticket or Product\",\"/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\",\"qdv10s\":[\"Создание \",[\"0\"],\" дат. Это может занять некоторое время.\"],\"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\":\"Произвольная дата и время\",\"WDMdn8\":\"Custom questions\",\"O6mra8\":\"Custom Questions\",\"axv/Mi\":\"Custom template\",\"2YeVGY\":\"Customer link copied to clipboard\",\"QMHSMS\":\"Клиент получит email с подтверждением возврата\",\"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\",\"vHbfoQ\":\"Date reactivated\",\"hvah+S\":\"Date reopened for new sales\",\"Ez0YsD\":\"Date updated successfully\",\"Te33mU\":\"Dates are managed per occurrence\",\"91zCxb\":\"Dates with sessions\",\"/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\",\"KpnwJK\":[\"Удалить \\\"\",[\"0\"],\"\\\"?\"],\"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\":\"Удалить локацию\",\"sY3tIw\":\"Delete Organizer\",\"UBv8UK\":\"Delete Permanently\",\"dPyJ15\":\"Delete Template\",\"IQTR34\":\"Delete this category? Any products in it will also be deleted. This cannot be undone.\",\"/1wMxk\":\"Delete this product? This cannot be undone.\",\"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\":\"Отображать флажок, позволяющий клиентам подписаться на маркетинговые сообщения от этого организатора мероприятий.\",\"HtaSQp\":\"Показывает, сколько мест осталось на каждую дату в виджете билетов. Это можно изменить для отдельных дат.\",\"pfa8F0\":\"Отображаемое имя\",\"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.\",\"Xfsjel\":\"Каждый товар\",\"5oD9f/\":\"Earlier\",\"LTzmgK\":[\"Edit \",[\"0\"],\" Template\"],\"v4+lcZ\":\"Edit Affiliate\",\"2iZEz7\":\"Edit Answer\",\"t2bbp8\":\"Редактировать участника\",\"etaWtB\":\"Редактировать данные участника\",\"+guao5\":\"Edit Configuration\",\"1Mp/A4\":\"Edit Date\",\"m0ZqOT\":\"Редактировать локацию\",\"8oivFT\":\"Редактировать локацию\",\"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\",\"ZayGC7\":\"End on a date\",\"48Y16Q\":\"End time (optional)\",\"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.\",\"SKx/0u\":\"Введите название места или адрес\",\"ppwojw\":\"Укажите название площадки или адрес для офлайн-мероприятий\",\"j+eCIq\":\"Ввести адрес вручную\",\"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)\",\"RRlWVA\":\"Весь заказ\",\"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\",\"+v+GW0\":\"Event date display\",\"7u9/DO\":\"Event deleted successfully\",\"imgKgl\":\"Event Description\",\"IzR/Fc\":\"Event lifetime\",\"PYs3rP\":\"Event name\",\"HhwcTQ\":\"Event Name\",\"WZZzB6\":\"Event name is required\",\"Wd5CDM\":\"Event name should be less than 150 characters\",\"4JzCvP\":\"Event Not Available\",\"mImacG\":\"Event Page\",\"Hk9Ki/\":\"Event restored successfully\",\"JyD0LH\":\"Event Settings\",\"XVLu2v\":\"Event Title\",\"OfmsI9\":\"Event Too New\",\"4SILkp\":\"Event totals\",\"YDVUVl\":\"Event Types\",\"+HeiVx\":\"Event Updated\",\"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\",\"4yLYTb\":\"Не удалось создать расписание. Пожалуйста, попробуйте ещё раз.\",\"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\",\"5E23qd\":\"Failed to delete product. Please try again.\",\"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\":\"Имя обязательно\",\"rVogsf\":\"Устраните проблемы, чтобы опубликовать\",\"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\",\"X+U6/w\":\"Font Family\",\"lWxAUo\":\"Food & Drink\",\"nFm+5u\":\"Footer Text\",\"a8nooQ\":\"Fourth\",\"wtuVU4\":\"Frequency\",\"xVhQZV\":\"Fri\",\"39y5bn\":\"Friday\",\"f5UbZ0\":\"Full data ownership\",\"cfvx/y\":\"Full event\",\"MY2SVM\":\"Полный возврат\",\"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\",\"CZXzs4\":\"Greek\",\"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\":\"Скрыть дополнительные параметры\",\"P+5Pbo\":\"Hide Answers\",\"VMlRqi\":\"Hide details\",\"FmogyU\":\"Hide Options\",\"uXNYjR\":\"Скрывать распроданные даты и время\",\"g9RcYX\":\"Hide the date\",\"uMwTx7\":\"Hide this category?\",\"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\",\"49Tkiw\":\"Как применяется скидка?\",\"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?\",\"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\",\"CY3yHL\":\"If checked, this category will be hidden from the public.\",\"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\",\"/LCAwL\":\"В процессе\",\"F1Xp97\":\"Individual attendees\",\"85e6zs\":\"Insert Liquid Token\",\"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\",\"Dn4OyV\":\"Invited\",\"IuMGvq\":\"Invoice\",\"a/bUcL\":\"It happens on more than one date\",\"d+Oe9r\":\"It may have been unpublished or removed. Please check the link and try again.\",\"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.\",\"o66QSP\":\"label updates\",\"RtKKbA\":\"Last\",\"DruLRc\":\"Last 14 Days\",\"ve9JTU\":\"Фамилия обязательна\",\"h0Q9Iw\":\"Last Response\",\"gw3Ur5\":\"Last Triggered\",\"FIq1Ba\":\"Later\",\"xvnLMP\":\"Latest check-ins\",\"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\",\"gggTBm\":\"LinkedIn\",\"nvOPBA\":\"Links Allowed\",\"2BBAbc\":\"List\",\"dF6vP6\":\"Live\",\"fpMs2Z\":\"LIVE\",\"D9zTjx\":\"Live Events\",\"C33p4q\":\"Loaded dates\",\"WdmJIX\":\"Загрузка предпросмотра...\",\"IoDI2o\":\"Loading tokens...\",\"G3Ge9Z\":\"Loading webhook logs...\",\"NFxlHW\":\"Loading Webhooks\",\"E0DoRM\":\"Локация удалена\",\"7w8lJU\":\"Локация сохранена\",\"YsRXDD\":\"Локация обновлена\",\"A/kIva\":\"location updates\",\"iyZPPR\":\"локаций\",\"VppBoU\":\"Локации\",\"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\",\"PSRm6/\":\"Найти мои билеты\",\"yJFu/X\":\"Главный офис\",\"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.\",\"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\",\"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\":\"Месяц\",\"+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\",\"xxU3NX\":\"Net Revenue\",\"7I8LlL\":\"New capacity\",\"n1GRql\":\"New label\",\"y0Fcpd\":\"Новая локация\",\"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.\",\"Zc216S\":\"No date added\",\"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\",\"OtJSnL\":\"Нет запланированных дат\",\"gEdNe8\":\"No dates scheduled yet\",\"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\",\"IcAC6J\":\"No matching fonts\",\"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\",\"8mw4tm\":\"No products message\",\"wYiAtV\":\"No recent account signups\",\"UW90md\":\"Получатели не найдены\",\"QoAi8D\":\"No response\",\"JeO7SI\":\"No Response\",\"EK/G11\":\"No responses yet\",\"59OWd3\":\"Нет сохранённых локаций\",\"mPdY6W\":\"Нет подсказок\",\"3sRuiW\":\"No Tickets Found\",\"debCrL\":\"Нет билетов для продажи\",\"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\",\"V9flmL\":\"Occurrence Schedule\",\"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.\"],\"6Aih4U\":\"Offline\",\"nO3VbP\":[\"On sale \",[\"0\"]],\"oXOSPE\":\"Online\",\"aqmy5k\":\"Online — provide connection details\",\"LuZBbx\":\"Online & in-person\",\"IXuOqt\":\"Online & in-person — see schedule\",\"WjSpu5\":\"Online Event\",\"scPxI/\":[\"Осталось всего \",[\"capacity\"]],\"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\",\"wkpaqp\":\"Only show start date and time\",\"DMk8F0\":\"Only tickets count toward capacity\",\"M2w1ni\":\"Only visible with promo code\",\"y8Bm7C\":\"Open check-in\",\"RLz7P+\":\"Open occurrence\",\"cDSdPb\":\"Необязательное название, отображаемое в списках выбора, напр. \\\"Конференц-зал офиса\\\"\",\"HXMJxH\":\"Дополнительный текст для отказов от ответственности, контактной информации или благодарственных заметок (только одна строка)\",\"L565X2\":\"options\",\"8m9emP\":\"or add a single date\",\"eBskDE\":\"Или включите офлайн-платежи и отключите Stripe\",\"dSeVIm\":\"order\",\"c/TIyD\":\"Order & Ticket\",\"H5qWhm\":\"Order cancelled\",\"b6+Y+n\":\"Order complete\",\"x4MLWE\":\"Order Confirmation\",\"CsTTH0\":\"Подтверждение заказа успешно отправлено повторно\",\"ppuQR4\":\"Order Created\",\"xtQzag\":\"Order details\",\"vrSW9M\":\"Заказ отменен и возвращен. Владелец заказа уведомлен.\",\"rzw+wS\":\"Order Holders\",\"oI/hGR\":\"Order ID\",\"RQCXz6\":\"Order Limits\",\"SO9AEF\":\"Order limits set\",\"vu6Arl\":\"Order Marked as Paid\",\"sLbJQz\":\"Order not found\",\"kvYpYu\":\"Order Not Found\",\"eJ8SvM\":\"Order number, purchase date, purchaser email\",\"FaPYw+\":\"Order owner\",\"eB5vce\":\"Order owners with a specific product\",\"CxLoxM\":\"Order owners with products\",\"UkHo4c\":\"Order Ref\",\"EZy55F\":\"Order Refunded\",\"6eSHqs\":\"Order statuses\",\"oW5877\":\"Order Total\",\"e7eZuA\":\"Order Updated\",\"1SQRYo\":\"Заказ успешно обновлен\",\"3NT0Ck\":\"Order was cancelled\",\"V5khLm\":\"orders\",\"sd5IMt\":\"Orders Completed\",\"5It1cQ\":\"Orders Exported\",\"UQ0ACV\":\"Orders Total\",\"B/EBQv\":\"Orders:\",\"qtGTNu\":\"Organic Accounts\",\"P/JHA4\":\"Organizer archived successfully\",\"S3CZ5M\":\"Organizer Dashboard\",\"GzjTd0\":\"Organizer deleted successfully\",\"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\",\"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\",\"+kvxv+\":\"за заказ\",\"VlXNyK\":\"Per order\",\"NhuGd7\":\"за товар\",\"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\",\"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\",\"OESu7I\":\"Prevent overselling by sharing inventory across multiple ticket types.\",\"NgVUL2\":\"Preview checkout form\",\"cs5muu\":\"Preview Event page\",\"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\",\"W0ETyY\":\"Заполните хотя бы одно поле адреса (площадка, улица, город или страна).\",\"2W/7Gz\":\"Provide the following before Stripe's next review to keep payouts flowing.\",\"EEYbdt\":\"Publish\",\"JcgJKc\":\"Опубликовать всё равно\",\"evDBV8\":\"Опубликовать мероприятие\",\"2zEfOd\":\"Publish your event\",\"L7nrC8\":\"После публикации страница вашего мероприятия станет общедоступной и откроется регистрация.\",\"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.\",\"RENQ6j\":\"Готовы к публикации?\",\"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\":\"Получатели доступны после отправки сообщения\",\"WEYdDv\":\"Recommended\",\"wuhHPE\":\"Recurring\",\"asLqwt\":\"Повторяющееся мероприятие\",\"s3uzsK\":\"Настройки повторяющегося мероприятия\",\"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\",\"FaK/8G\":[\"Возврат заказа \",[\"0\"]],\"MGbi9P\":\"Refund pending\",\"BDSRuX\":[\"Refunded: \",[\"0\"]],\"bU4bS1\":\"Refunds\",\"rYXfOA\":\"Regional Settings\",\"5tl0Bp\":\"Registration Questions\",\"ZNo5k1\":\"Remaining\",\"Bjh87R\":\"Remove label from all dates\",\"IVZaEo\":\"Полностью убирает распроданные даты и время со страницы мероприятия. Если отключено, они остаются видимыми с пометкой «распродано».\",\"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...\",\"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\",\"Lf7TCn\":\"Многоразовые площадки появляются здесь автоматически, когда вы создаёте мероприятия с адресами; вы также можете добавить свои.\",\"mdQ0zb\":\"Многоразовые площадки для ваших мероприятий. Локации, созданные через автозаполнение, автоматически сохраняются здесь.\",\"XFOPle\":\"Reuse\",\"1Zehp4\":\"Reuse a Stripe connection from another organizer in this account.\",\"Oo/PLb\":\"Revenue Summary\",\"CfuueU\":\"Revoke Offer\",\"RIgKv+\":\"Run until a specific date\",\"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\":\"Сохранённая локация\",\"cgw0cL\":\"Сохранённые локации\",\"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...\",\"YnMfsK\":\"Поиск по названию или адресу...\",\"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...\",\"5WYZKZ\":\"Результаты поиска\",\"IG85fV\":\"Ищите сохранённые локации или найдите адрес...\",\"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\",\"Ps6Xtf\":\"Select a date to see available times\",\"e4L7bF\":\"Select a message to view its contents\",\"zPRPMf\":\"Select a tier\",\"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.\",\"oBXbO4\":\"Selling a physical product? Cap its quantity on the <0>products page instead.\",\"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\",\"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\",\"0Ls9qe\":\"Set up the tickets you'll sell and their prices\",\"xMO+Ao\":\"Set up your organization\",\"5pEFnq\":\"Set up your schedule\",\"h/9JiC\":\"Set Up Your Schedule\",\"zRRuUD\":\"Set up your schedule in the next steps\",\"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\":\"Показать дополнительные параметры\",\"cMW+gm\":[\"Show all platforms (\",[\"0\"],\" more with values)\"],\"wXi9pZ\":\"Show attendee notes to non-logged-in staff\",\"4LZFir\":\"Show entire date range\",\"UVPI5D\":\"Show fewer platforms\",\"Eu/N/d\":\"Показать флажок подписки на маркетинг\",\"SXzpzO\":\"Показывать флажок подписки на маркетинг по умолчанию\",\"b33PL9\":\"Show more platforms\",\"Eut7p9\":\"Show order details to non-logged-in staff\",\"+RoWKN\":\"Show question answers to non-logged-in staff\",\"jbcx6L\":\"Show remaining capacity on event dates\",\"rXxBOx\":\"Show remaining capacity to buyers\",\"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\",\"paESr6\":\"Slovak\",\"9wu8nm\":\"Snapchat\",\"kIKb9e\":\"Social\",\"d0rUsW\":\"Social Links\",\"j/TOB3\":\"Social Links & Website\",\"s9KGXU\":\"Sold\",\"yp+0jj\":\"sold out\",\"1hupow\":\"Sold Out, waitlist available\",\"iACSrw\":\"Some details are hidden from public access. Log in to view everything.\",\"Dia6iz\":\"Something went wrong while deleting the image. Please try again.\",\"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\",\"StWUH4\":\"Start check-in\",\"JcQp9p\":\"Start date & time\",\"0m/ekX\":\"Start Date & Time\",\"izRfYP\":\"Start date is required\",\"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.\",\"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\",\"kRWc2g\":\"Настройки повторяющегося мероприятия успешно обновлены\",\"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\",\"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.\",\"7oksH+\":[\"Скидка вычитается из каждого подходящего товара. Например, скидка \",[\"currencySymbol\"],\"10 × 3 билета = скидка \",[\"currencySymbol\"],\"30.\"],\"sKL8k2\":\"Скидка вычитается один раз из суммы заказа.\",\"cDHM1d\":\"Адрес электронной почты был изменен. Участник получит новый билет на обновленный адрес электронной почты.\",\"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.\",\"sxKqBm\":\"Полная сумма заказа будет возвращена на первоначальный способ оплаты клиента.\",\"KgDp6G\":\"Ссылка, к которой вы пытаетесь получить доступ, истекла или больше не действительна. Пожалуйста, проверьте вашу электронную почту для получения обновленной ссылки для управления вашим заказом.\",\"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\",\"OVSkIF\":\"The quick brown fox jumps over the lazy dog.\",\"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\",\"ybBP2H\":\"There are no products available for this date. Please choose another date.\",\"O7g4eR\":\"There are no upcoming dates for this event\",\"062KsE\":\"These details are shown on the attendee's ticket and order summary for this date only.\",\"5Eu+tn\":\"Эти данные будут показаны только после успешного завершения заказа.\",\"jQjwR+\":\"These details will replace any existing location on the affected dates and show on attendee tickets.\",\"6eaLu/\":\"Эти цены действуют для всех дат расписания, а количества уровней ограничивают общие продажи по всем датам в сумме. Даты продаж уровней действуют глобально. Цены для отдельных дат можно переопределить на <0>странице «Расписание дат».\",\"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.\",\"E9BqZw\":\"This date only\",\"RzEvf5\":\"Это мероприятие закончилось\",\"kc4bIA\":\"У этого мероприятия ещё нет билетов или товаров, поэтому участники не смогут зарегистрироваться.\",\"eMaNd0\":\"This event is not available\",\"YClrdK\":\"This event is not published yet\",\"GL6z+k\":\"Все билеты на это мероприятие распроданы\",\"pIwDhS\":\"This event's dates and times are set on the occurrence schedule.\",\"ny5rgr\":\"This is a recurring event\",\"tc64Zz\":\"This is the name of the category that will be displayed on the event page.\",\"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.\",\"5DpZrC\":\"Это ограничивает общие продажи по всем датам расписания в сумме — это не ограничение на отдельную дату. Чтобы ограничить количество участников на каждую дату, задайте вместимость на <0>странице «Расписание дат».\",\"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\",\"qEGn8I\":\"У этого повторяющегося мероприятия ещё нет дат, поэтому участникам нечего бронировать.\",\"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.\",\"1LuJNw\":\"This ticket is no longer valid\",\"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\",\"HGuXjF\":\"Ticket holders\",\"CMUt3Y\":\"Ticket Holders\",\"awHmAT\":\"ID билета\",\"6czJik\":\"Ticket Logo\",\"t79rDv\":\"Ticket Not Found\",\"6tmWch\":\"Ticket or Product\",\"1tfWrD\":\"Предпросмотр билета для\",\"KnjoUA\":\"Ticket price\",\"pGZOcL\":\"Билет успешно отправлен повторно\",\"o02GZM\":\"Ticket sales have ended for this event\",\"8jLPgH\":\"Ticket Type\",\"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\",\"fXf2r5\":[\"Times shown in \",[\"timezoneAbbr\"]],\"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\",\"SMDzqJ\":\"Total Attendees\",\"orBECM\":\"Total Collected\",\"k5CU8c\":\"Total Entries\",\"4B7oCp\":\"Total Fee\",\"sMMlTX\":\"Total fees\",\"mlvCEl\":\"Total orders\",\"2AW/k5\":\"Общее количество на все даты\",\"dp8BCb\":\"Total tax\",\"vb0Q0/\":\"Total Users\",\"oJjplO\":\"Total Views\",\"rBZ9pz\":\"Tours\",\"orluER\":\"Track account growth and performance by attribution source\",\"YwKzpH\":\"Tracking & Analytics\",\"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\",\"vq2WxD\":\"Tue\",\"G3myU+\":\"Tuesday\",\"Kz91g/\":\"Turkish\",\"GdOhw6\":\"Turn sound off\",\"KUOhTy\":\"Turn sound on\",\"dBeuY2\":\"Twitch\",\"QytzQr\":\"Type \\\"delete\\\" to confirm\",\"nWRfmt\":\"Typography\",\"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\",\"Ef7StM\":\"Unknown\",\"ZBAScj\":\"Unknown Attendee\",\"MEIAzV\":\"Без названия\",\"K6L5Mx\":\"Локация без названия\",\"7yiFvZ\":\"Unpaid\",\"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 для персонализации ваших писем\",\"/rsy72\":\"Use event default\",\"0k4cdb\":\"Use order details for all attendees. Attendee names and emails will match the buyer's information.\",\"bA31T4\":\"Use the buyer's details for all attendees\",\"PpgtnC\":\"Использовать этот адрес\",\"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\",\"YSE15b\":\"View all check-in lists\",\"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\",\"aUi/Dz\":\"Warning: This is the system default configuration. Changes will affect all accounts that don't have a specific configuration assigned.\",\"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.\",\"Fjj/5/\":\"We couldn't load the check-in lists. Please try again.\",\"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.\",\"mfM/HJ\":[\"We'll notify you by email if a spot becomes available for \",[\"productDisplayName\"],\" on \",[\"occurrenceDate\"],\".\"],\"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.\",\"OIkHj+\":\"When a product sells out, customers can join a waitlist to be notified when spots become available. Customers join the waitlist for a specific date, and offers are made per date.\",\"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.\",\"pm9tpn\":\"When enabled, buyers can copy their own name and email onto all attendees at once. Turn this off to remove the \\\"All attendees\\\" option; buyers can still copy to the first attendee, and the rest must be entered individually.\",\"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.\",\"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.\",\"D8baxD\":\"У вас есть платные билеты, но Stripe ещё не подключён, поэтому вы не можете принимать платежи.\",\"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\"],\"!\"],\"ZlLcht\":[\"You're joining the waitlist for \",[\"occurrenceDate\"],\".\"],\"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 e54c406e69..444909bfdf 100644 --- a/frontend/src/locales/ru.po +++ b/frontend/src/locales/ru.po @@ -179,11 +179,11 @@ msgstr "" msgid "{totalCount} ticket types" msgstr "" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:554 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:567 msgid "{totalOccurrences} dates" msgstr "" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:547 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:560 msgid "{totalOccurrences} sessions across {0} dates ({1, plural, one {# session} other {# sessions}} per day)" msgstr "" @@ -516,7 +516,7 @@ msgstr "" msgid "Active payment methods" msgstr "" -#: src/components/routes/event/OccurrencesTab/index.tsx:400 +#: src/components/routes/event/OccurrencesTab/index.tsx:402 msgid "Activity" msgstr "" @@ -536,11 +536,11 @@ msgstr "" msgid "Add a description for this check-in list" msgstr "" -#: src/components/routes/event/OccurrencesTab/index.tsx:538 +#: src/components/routes/event/OccurrencesTab/index.tsx:541 msgid "Add a Single Date" msgstr "" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:739 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:752 msgid "Add another time" msgstr "" @@ -560,7 +560,7 @@ msgstr "" msgid "Add any notes about the order..." msgstr "" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:375 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:382 msgid "Add at least one time" msgstr "" @@ -580,7 +580,7 @@ msgstr "" msgid "Add dates" msgstr "Добавить даты" -#: src/components/routes/event/OccurrencesTab/index.tsx:524 +#: src/components/routes/event/OccurrencesTab/index.tsx:526 msgid "Add Dates" msgstr "" @@ -611,7 +611,7 @@ msgstr "" msgid "Add Location" msgstr "Добавить локацию" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:743 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:756 msgid "Add multiple times if you run several sessions per day." msgstr "" @@ -796,7 +796,7 @@ msgid "all" msgstr "" #: src/components/layouts/CheckIn/tabs/SearchTab.tsx:133 -#: src/components/routes/event/OccurrencesTab/index.tsx:485 +#: src/components/routes/event/OccurrencesTab/index.tsx:487 msgid "All" msgstr "" @@ -987,7 +987,7 @@ msgstr "" msgid "An unexpected error occurred. Please try again." msgstr "" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:849 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:862 msgid "and {0} more..." msgstr "" @@ -1003,7 +1003,7 @@ msgstr "" msgid "Answers provided at checkout (e.g. meal choice)" msgstr "" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:564 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:577 msgid "Any dates you've manually customized will be kept." msgstr "" @@ -1071,7 +1071,7 @@ msgstr "" msgid "Approve Message" msgstr "" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:74 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:76 msgid "April" msgstr "" @@ -1127,7 +1127,7 @@ msgstr "" msgid "Are you sure you want to archive this organizer? This will also archive all events belonging to this organizer." msgstr "" -#: src/components/routes/event/OccurrencesTab/index.tsx:213 +#: src/components/routes/event/OccurrencesTab/index.tsx:215 msgid "Are you sure you want to cancel {count} date(s)? Affected attendees will be notified by email." msgstr "" @@ -1159,7 +1159,7 @@ msgstr "" #: src/components/modals/ManageOccurrenceModal/index.tsx:58 #: src/components/routes/event/OccurrenceDetail/index.tsx:84 -#: src/components/routes/event/OccurrencesTab/index.tsx:182 +#: src/components/routes/event/OccurrencesTab/index.tsx:184 msgid "Are you sure you want to delete this date? This action cannot be undone." msgstr "" @@ -1446,7 +1446,7 @@ msgstr "" msgid "Attribution Value" msgstr "" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:78 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:80 msgid "August" msgstr "" @@ -1625,7 +1625,7 @@ msgstr "" msgid "Built-in fraud protection" msgstr "" -#: src/components/routes/event/OccurrencesTab/index.tsx:515 +#: src/components/routes/event/OccurrencesTab/index.tsx:517 msgid "Bulk Edit" msgstr "" @@ -1674,11 +1674,11 @@ msgstr "" msgid "By continuing, you agree to the <0>{0} Terms of Service" msgstr "" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:628 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:641 msgid "By day of month" msgstr "" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:629 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:642 msgid "By day of week" msgstr "" @@ -1698,7 +1698,7 @@ msgstr "" msgid "Calculation Type" msgstr "" -#: src/components/routes/event/OccurrencesTab/index.tsx:471 +#: src/components/routes/event/OccurrencesTab/index.tsx:473 msgid "Calendar" msgstr "" @@ -1735,7 +1735,7 @@ msgstr "" #: src/components/modals/ManageOrderModal/index.tsx:209 #: src/components/modals/PublishEventModal/index.tsx:208 #: src/components/routes/event/messages.tsx:80 -#: src/components/routes/event/OccurrencesTab/index.tsx:497 +#: src/components/routes/event/OccurrencesTab/index.tsx:499 #: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:272 #: src/components/routes/event/OccurrencesTab/OccurrenceEditModal/index.tsx:306 #: src/components/routes/event/OccurrencesTab/OccurrenceMenu.tsx:61 @@ -1748,8 +1748,8 @@ msgstr "" msgid "Cancel" msgstr "" -#: src/components/routes/event/OccurrencesTab/index.tsx:209 -#: src/components/routes/event/OccurrencesTab/index.tsx:221 +#: src/components/routes/event/OccurrencesTab/index.tsx:211 +#: src/components/routes/event/OccurrencesTab/index.tsx:223 msgid "Cancel {count} date(s)" msgstr "" @@ -1809,7 +1809,7 @@ msgstr "Отмена отменит всех участников, связан msgid "Cancelled" msgstr "" -#: src/components/routes/event/OccurrencesTab/index.tsx:235 +#: src/components/routes/event/OccurrencesTab/index.tsx:237 msgid "Cancelling {0} date(s). This may take a moment to complete." msgstr "" @@ -1819,7 +1819,7 @@ msgstr "" #: src/components/forms/CapaciyAssigmentForm/index.tsx:42 #: src/components/routes/event/OccurrencesTab/OccurrenceEditModal/index.tsx:503 -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:811 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:824 msgid "Capacity" msgstr "" @@ -2154,7 +2154,7 @@ msgid "City" msgstr "" #: src/components/common/OccurrenceSelect/index.tsx:133 -#: src/components/routes/event/OccurrencesTab/index.tsx:503 +#: src/components/routes/event/OccurrencesTab/index.tsx:505 msgid "Clear" msgstr "" @@ -2174,7 +2174,7 @@ msgstr "" msgid "Clearing removes any per-date override. Affected dates will fall back to the event's default location." msgstr "" -#: src/components/routes/event/OccurrencesTab/index.tsx:331 +#: src/components/routes/event/OccurrencesTab/index.tsx:333 msgid "Click to cancel" msgstr "" @@ -2182,7 +2182,7 @@ msgstr "" msgid "Click to copy" msgstr "" -#: src/components/routes/event/OccurrencesTab/index.tsx:333 +#: src/components/routes/event/OccurrencesTab/index.tsx:335 msgid "Click to reopen for new sales" msgstr "" @@ -2743,7 +2743,7 @@ msgstr "" msgid "Create a custom widget to sell tickets on your site." msgstr "" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:785 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:798 msgid "Create a fixed number" msgstr "" @@ -2879,7 +2879,7 @@ msgstr "" msgid "Create Question" msgstr "" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:864 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:877 msgid "Create Schedule" msgstr "" @@ -2927,6 +2927,10 @@ msgstr "" msgid "Created" msgstr "" +#: src/components/routes/event/OccurrencesTab/index.tsx:549 +msgid "Creating {0} dates. This may take a moment." +msgstr "Создание {0} дат. Это может занять некоторое время." + #: src/components/routes/welcome/index.tsx:472 msgid "Creating Event..." msgstr "" @@ -3066,7 +3070,7 @@ msgstr "" msgid "Customize your organizer page appearance" msgstr "" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:56 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:58 #: src/components/routes/product-widget/OccurrenceSelector/index.tsx:32 msgid "Daily" msgstr "" @@ -3155,7 +3159,7 @@ msgstr "" #: src/components/modals/ManageOccurrenceModal/index.tsx:61 #: src/components/routes/event/OccurrenceDetail/index.tsx:87 -#: src/components/routes/event/OccurrencesTab/index.tsx:184 +#: src/components/routes/event/OccurrencesTab/index.tsx:186 msgid "Date deleted" msgstr "" @@ -3168,7 +3172,7 @@ msgstr "" msgid "Date reactivated" msgstr "" -#: src/components/routes/event/OccurrencesTab/index.tsx:198 +#: src/components/routes/event/OccurrencesTab/index.tsx:200 msgid "Date reopened for new sales" msgstr "" @@ -3184,15 +3188,15 @@ msgstr "" msgid "Dates with sessions" msgstr "" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:93 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:95 msgid "day" msgstr "" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:659 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:672 msgid "Day" msgstr "" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:676 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:689 msgid "Day of Month" msgstr "" @@ -3200,19 +3204,19 @@ msgstr "" msgid "Day one capacity" msgstr "" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:101 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:103 msgid "days" msgstr "" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:635 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:648 msgid "Days of Month" msgstr "" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:605 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:618 msgid "Days of Week" msgstr "" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:82 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:84 msgid "December" msgstr "" @@ -3230,7 +3234,7 @@ msgstr "" msgid "Default attendee information collection" msgstr "" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:815 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:828 msgid "Default capacity per date" msgstr "" @@ -3253,7 +3257,7 @@ msgstr "" #: src/components/common/QuestionsTable/index.tsx:150 #: src/components/common/TaxAndFeeList/index.tsx:81 #: src/components/routes/admin/FailedJobs/index.tsx:209 -#: src/components/routes/event/OccurrencesTab/index.tsx:500 +#: src/components/routes/event/OccurrencesTab/index.tsx:502 #: src/components/routes/event/OccurrencesTab/OccurrenceMenu.tsx:62 msgid "Delete" msgstr "" @@ -3262,7 +3266,7 @@ msgstr "" msgid "Delete \"{0}\"?" msgstr "Удалить \"{0}\"?" -#: src/components/routes/event/OccurrencesTab/index.tsx:247 +#: src/components/routes/event/OccurrencesTab/index.tsx:249 msgid "Delete {count} selected date(s)? Dates with orders will be skipped. This cannot be undone." msgstr "" @@ -3344,7 +3348,7 @@ msgstr "" msgid "Delete webhook" msgstr "" -#: src/components/routes/event/OccurrencesTab/index.tsx:253 +#: src/components/routes/event/OccurrencesTab/index.tsx:255 msgid "Deleted {0} date(s)" msgstr "" @@ -3563,7 +3567,7 @@ msgstr "" #: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:452 #: src/components/routes/event/OccurrencesTab/OccurrenceEditModal/index.tsx:450 -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:714 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:727 msgid "e.g. Morning Session" msgstr "" @@ -3722,7 +3726,7 @@ msgstr "" msgid "Edit Webhook" msgstr "" -#: src/components/routes/event/OccurrencesTab/index.tsx:306 +#: src/components/routes/event/OccurrencesTab/index.tsx:308 msgid "Edited" msgstr "" @@ -3911,7 +3915,7 @@ msgstr "Включить список ожидания" msgid "Enabled" msgstr "" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:704 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:717 msgid "End" msgstr "" @@ -3932,7 +3936,7 @@ msgstr "" msgid "End date must be after start date" msgstr "" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:771 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:784 msgid "End on a date" msgstr "" @@ -4407,7 +4411,7 @@ msgstr "" msgid "Failed to cancel date" msgstr "" -#: src/components/routes/event/OccurrencesTab/index.tsx:239 +#: src/components/routes/event/OccurrencesTab/index.tsx:241 msgid "Failed to cancel dates" msgstr "" @@ -4427,10 +4431,14 @@ msgstr "" msgid "Failed to create configuration" msgstr "" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:530 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:543 msgid "Failed to create schedule" msgstr "" +#: src/hooks/useOccurrenceGenerationPolling.ts:44 +msgid "Failed to create schedule. Please try again." +msgstr "Не удалось создать расписание. Пожалуйста, попробуйте ещё раз." + #: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:192 #: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:195 msgid "Failed to create template" @@ -4442,7 +4450,7 @@ msgstr "" #: src/components/modals/ManageOccurrenceModal/index.tsx:64 #: src/components/routes/event/OccurrenceDetail/index.tsx:90 -#: src/components/routes/event/OccurrencesTab/index.tsx:185 +#: src/components/routes/event/OccurrencesTab/index.tsx:187 msgid "Failed to delete date" msgstr "" @@ -4450,7 +4458,7 @@ msgstr "" msgid "Failed to delete date. It may have existing orders." msgstr "" -#: src/components/routes/event/OccurrencesTab/index.tsx:256 +#: src/components/routes/event/OccurrencesTab/index.tsx:258 msgid "Failed to delete dates" msgstr "" @@ -4538,7 +4546,7 @@ msgstr "" msgid "Failed to remove override" msgstr "" -#: src/components/routes/event/OccurrencesTab/index.tsx:199 +#: src/components/routes/event/OccurrencesTab/index.tsx:201 msgid "Failed to reopen date" msgstr "" @@ -4675,7 +4683,7 @@ msgstr "" msgid "Fast payouts to your bank" msgstr "" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:72 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:74 msgid "February" msgstr "" @@ -4767,7 +4775,7 @@ msgstr "" msgid "Finish setup" msgstr "" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:63 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:65 msgid "First" msgstr "" @@ -4880,7 +4888,7 @@ msgstr "" msgid "Forgot password?" msgstr "" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:66 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:68 msgid "Fourth" msgstr "" @@ -4907,11 +4915,11 @@ msgstr "" msgid "French" msgstr "" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:586 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:599 msgid "Frequency" msgstr "" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:50 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:52 msgid "Fri" msgstr "" @@ -5002,7 +5010,7 @@ msgstr "" #: src/components/routes/event/OccurrenceDetail/index.tsx:72 #: src/components/routes/event/OccurrencesTab/cancelOccurrenceDialog.tsx:49 -#: src/components/routes/event/OccurrencesTab/index.tsx:221 +#: src/components/routes/event/OccurrencesTab/index.tsx:223 #: src/components/routes/event/OccurrencesTab/OccurrenceEditModal/index.tsx:339 #: src/components/routes/event/OccurrencesTab/OccurrenceEditModal/index.tsx:363 msgid "Go Back" @@ -5269,7 +5277,7 @@ msgstr "Как применяется скидка?" msgid "How long a customer has to complete their purchase after receiving an offer. Leave empty for no timeout." msgstr "" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:750 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:763 msgid "How long does the schedule run?" msgstr "" @@ -5281,7 +5289,7 @@ msgstr "" msgid "How many times can this code be used?" msgstr "" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:581 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:594 msgid "How often?" msgstr "" @@ -5587,7 +5595,7 @@ msgstr "" msgid "Items" msgstr "" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:71 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:73 msgid "January" msgstr "" @@ -5638,11 +5646,11 @@ msgstr "" msgid "Joined" msgstr "" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:77 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:79 msgid "July" msgstr "" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:76 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:78 msgid "June" msgstr "" @@ -5668,7 +5676,7 @@ msgstr "" #: src/components/forms/ProductForm/index.tsx:108 #: src/components/routes/event/OccurrencesTab/OccurrenceEditModal/index.tsx:449 -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:711 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:724 #: src/components/routes/event/Reports/OccurrenceSummaryReport/index.tsx:45 msgid "Label" msgstr "" @@ -5683,7 +5691,7 @@ msgstr "" msgid "Language" msgstr "" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:67 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:69 msgid "Last" msgstr "" @@ -5792,7 +5800,7 @@ msgid "Leave blank to use the default word \"Invoice\"" msgstr "" #: src/components/routes/event/OccurrencesTab/OccurrenceEditModal/index.tsx:507 -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:816 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:829 msgid "Leave empty for unlimited" msgstr "" @@ -5832,7 +5840,7 @@ msgstr "" msgid "Links Allowed" msgstr "" -#: src/components/routes/event/OccurrencesTab/index.tsx:470 +#: src/components/routes/event/OccurrencesTab/index.tsx:472 msgid "List" msgstr "" @@ -6001,7 +6009,7 @@ msgstr "" msgid "Manage attendee" msgstr "" -#: src/components/routes/event/OccurrencesTab/index.tsx:460 +#: src/components/routes/event/OccurrencesTab/index.tsx:462 msgid "Manage dates and times for your recurring event" msgstr "" @@ -6072,7 +6080,7 @@ msgstr "" msgid "Manually Add Attendee" msgstr "" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:73 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:75 msgid "March" msgstr "" @@ -6096,7 +6104,7 @@ msgstr "" msgid "Maximum Per Order" msgstr "" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:75 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:77 msgid "May" msgstr "" @@ -6212,7 +6220,7 @@ msgstr "" msgid "Mode" msgstr "" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:46 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:48 msgid "Mon" msgstr "" @@ -6228,24 +6236,24 @@ msgstr "" msgid "Monitor and manage failed background jobs" msgstr "" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:95 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:97 msgid "month" msgstr "" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:671 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:684 msgid "Month" msgstr "Месяц" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:58 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:60 #: src/components/routes/product-widget/OccurrenceSelector/index.tsx:41 msgid "Monthly" msgstr "" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:624 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:637 msgid "Monthly Pattern" msgstr "" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:103 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:105 msgid "months" msgstr "" @@ -6514,7 +6522,7 @@ msgstr "" msgid "No dates match the current filters." msgstr "" -#: src/components/routes/event/OccurrencesTab/index.tsx:570 +#: src/components/routes/event/OccurrencesTab/index.tsx:580 msgid "No dates match your filters" msgstr "" @@ -6527,7 +6535,7 @@ msgstr "" msgid "No dates scheduled" msgstr "Нет запланированных дат" -#: src/components/routes/event/OccurrencesTab/index.tsx:570 +#: src/components/routes/event/OccurrencesTab/index.tsx:580 msgid "No dates scheduled yet" msgstr "" @@ -6818,11 +6826,11 @@ msgstr "" msgid "Notify organizer of new orders" msgstr "" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:81 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:83 msgid "November" msgstr "" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:800 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:813 msgid "Number of dates to create" msgstr "" @@ -6847,7 +6855,7 @@ msgid "Occurrence Cancelled" msgstr "" #: src/components/layouts/Event/index.tsx:113 -#: src/components/routes/event/OccurrencesTab/index.tsx:461 +#: src/components/routes/event/OccurrencesTab/index.tsx:463 msgid "Occurrence Schedule" msgstr "" @@ -6869,7 +6877,7 @@ msgstr "" msgid "Occurrences can be configured after creation" msgstr "" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:80 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:82 msgid "October" msgstr "" @@ -6963,7 +6971,7 @@ msgstr "" #: src/components/common/EventCard/index.tsx:103 #: src/components/layouts/OrganizerHomepage/EventCard/index.tsx:49 -#: src/components/routes/event/OccurrencesTab/index.tsx:316 +#: src/components/routes/event/OccurrencesTab/index.tsx:318 #: src/components/routes/event/OccurrencesTab/OccurrenceEditModal/index.tsx:473 #: src/components/routes/my-tickets/index.tsx:56 #: src/components/routes/product-widget/OccurrenceSelector/index.tsx:122 @@ -7078,7 +7086,7 @@ msgstr "" msgid "or" msgstr "" -#: src/components/routes/event/OccurrencesTab/index.tsx:593 +#: src/components/routes/event/OccurrencesTab/index.tsx:603 msgid "or add a single date" msgstr "" @@ -7086,7 +7094,7 @@ msgstr "" msgid "Or enable offline payments and disable Stripe" msgstr "Или включите офлайн-платежи и отключите Stripe" -#: src/components/routes/event/OccurrencesTab/index.tsx:413 +#: src/components/routes/event/OccurrencesTab/index.tsx:415 msgid "order" msgstr "" @@ -7248,7 +7256,7 @@ msgstr "Заказ успешно обновлен" msgid "Order was cancelled" msgstr "" -#: src/components/routes/event/OccurrencesTab/index.tsx:413 +#: src/components/routes/event/OccurrencesTab/index.tsx:415 #: src/components/routes/event/orders.tsx:197 msgid "orders" msgstr "" @@ -7501,7 +7509,7 @@ msgid "Passwords are not the same" msgstr "" #: src/components/layouts/OrganizerHomepage/index.tsx:291 -#: src/components/routes/event/OccurrencesTab/index.tsx:484 +#: src/components/routes/event/OccurrencesTab/index.tsx:486 #: src/components/routes/organizer/Reports/EventsPerformanceReport/index.tsx:30 msgid "Past" msgstr "" @@ -7705,15 +7713,15 @@ msgstr "" msgid "Phone" msgstr "" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:372 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:379 msgid "Pick an end date" msgstr "" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:380 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:387 msgid "Pick at least one day of the month" msgstr "" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:369 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:376 msgid "Pick at least one day of the week" msgstr "" @@ -7763,7 +7771,7 @@ msgstr "" msgid "Please add at least one option" msgstr "" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:527 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:540 #: src/hooks/useFormErrorResponseHandler.tsx:18 msgid "Please check the provided information is correct" msgstr "" @@ -7893,7 +7901,7 @@ msgstr "" msgid "Portuguese" msgstr "" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:654 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:667 msgid "Position" msgstr "" @@ -8381,7 +8389,7 @@ msgstr "" msgid "Refresh Preview" msgstr "" -#: src/components/routes/event/OccurrencesTab/index.tsx:216 +#: src/components/routes/event/OccurrencesTab/index.tsx:218 msgid "Refund all orders for these dates" msgstr "" @@ -8490,11 +8498,11 @@ msgstr "Полностью убирает распроданные даты и msgid "Reopen for new sales" msgstr "" -#: src/components/routes/event/OccurrencesTab/index.tsx:192 +#: src/components/routes/event/OccurrencesTab/index.tsx:194 msgid "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." msgstr "" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:591 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:604 msgid "Repeat every" msgstr "" @@ -8695,7 +8703,7 @@ msgstr "" msgid "Role" msgstr "" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:772 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:785 msgid "Run until a specific date" msgstr "" @@ -8782,7 +8790,7 @@ msgstr "" msgid "Sample Venue" msgstr "" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:51 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:53 msgid "Sat" msgstr "" @@ -8832,7 +8840,7 @@ msgstr "" msgid "Save Organizer" msgstr "" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:864 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:877 msgid "Save Schedule" msgstr "" @@ -8896,11 +8904,12 @@ msgstr "" msgid "Schedule added" msgstr "" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:520 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:530 +#: src/hooks/useOccurrenceGenerationPolling.ts:36 msgid "Schedule created successfully" msgstr "" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:793 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:806 msgid "Schedule ends on" msgstr "" @@ -8912,7 +8921,7 @@ msgstr "Запланировать на потом" msgid "Schedule Message" msgstr "Запланировать сообщение" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:755 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:768 msgid "Schedule starts on" msgstr "" @@ -9035,7 +9044,7 @@ msgstr "" msgid "Seasonal" msgstr "" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:64 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:66 msgid "Second" msgstr "" @@ -9211,7 +9220,7 @@ msgstr "" msgid "Select..." msgstr "" -#: src/components/routes/event/OccurrencesTab/index.tsx:495 +#: src/components/routes/event/OccurrencesTab/index.tsx:497 msgid "selected" msgstr "" @@ -9341,7 +9350,7 @@ msgstr "" msgid "SEO Title" msgstr "" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:79 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:81 msgid "September" msgstr "" @@ -9369,7 +9378,7 @@ msgstr "" msgid "Set how long each date lasts" msgstr "" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:784 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:797 msgid "Set number of dates" msgstr "" @@ -9389,7 +9398,7 @@ msgstr "" msgid "Set to unlimited (remove limit)" msgstr "" -#: src/components/routes/event/OccurrencesTab/index.tsx:575 +#: src/components/routes/event/OccurrencesTab/index.tsx:585 msgid "Set up a recurring schedule to automatically create dates, or add them one at a time." msgstr "" @@ -9406,8 +9415,8 @@ msgstr "" msgid "Set up schedule" msgstr "" -#: src/components/routes/event/OccurrencesTab/index.tsx:532 -#: src/components/routes/event/OccurrencesTab/index.tsx:586 +#: src/components/routes/event/OccurrencesTab/index.tsx:535 +#: src/components/routes/event/OccurrencesTab/index.tsx:596 msgid "Set Up Schedule" msgstr "" @@ -9423,7 +9432,7 @@ msgstr "" msgid "Set up your schedule" msgstr "" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:569 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:582 msgid "Set Up Your Schedule" msgstr "" @@ -9560,7 +9569,7 @@ msgstr "" msgid "Showing {0} of {totalRows} records" msgstr "" -#: src/components/routes/event/OccurrencesTab/index.tsx:614 +#: src/components/routes/event/OccurrencesTab/index.tsx:624 msgid "Showing {0}–{1} of {2}" msgstr "" @@ -9641,7 +9650,7 @@ msgstr "" #: src/components/common/ProductsTable/SortableProduct/index.tsx:387 #: src/components/modals/ManageOccurrenceModal/index.tsx:186 -#: src/components/routes/event/OccurrencesTab/index.tsx:369 +#: src/components/routes/event/OccurrencesTab/index.tsx:371 msgid "Sold" msgstr "" @@ -9749,7 +9758,7 @@ msgstr "" msgid "Standard product with a fixed price" msgstr "" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:696 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:709 msgid "Start" msgstr "" @@ -9842,7 +9851,7 @@ msgstr "" #: src/components/routes/admin/Messages/index.tsx:120 #: src/components/routes/admin/Messages/index.tsx:167 #: src/components/routes/admin/Messages/index.tsx:294 -#: src/components/routes/event/OccurrencesTab/index.tsx:326 +#: src/components/routes/event/OccurrencesTab/index.tsx:328 #: src/components/routes/event/Reports/OccurrenceSummaryReport/index.tsx:51 #: src/components/routes/event/Reports/PromoCodesReport/index.tsx:88 #: src/components/routes/organizer/Reports/EventsPerformanceReport/index.tsx:62 @@ -10100,7 +10109,7 @@ msgstr "" msgid "Summer Music Festival 2025" msgstr "" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:52 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:54 msgid "Sun" msgstr "" @@ -10227,7 +10236,7 @@ msgstr "" msgid "Tell us about your organization. This information will be displayed on your event pages." msgstr "" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:573 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:586 msgid "Tell us how often your event repeats and we'll create all the dates for you." msgstr "" @@ -10321,7 +10330,7 @@ msgstr "Адрес электронной почты был изменен. Уч msgid "The event you're looking for is not available at the moment. It may have been removed, expired, or the URL might be incorrect." msgstr "" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:756 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:769 msgid "The first date this schedule will generate from." msgstr "" @@ -10341,7 +10350,7 @@ msgstr "Ссылка, к которой вы пытаетесь получить msgid "The link you clicked is invalid." msgstr "" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:840 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:853 msgid "The maximum is {MAX_PREVIEW} sessions. Please reduce the date range, frequency, or number of sessions per day." msgstr "" @@ -10477,7 +10486,7 @@ msgstr "" 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 "" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:65 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:67 msgid "Third" msgstr "" @@ -10740,7 +10749,7 @@ msgstr "" msgid "Throughput" msgstr "" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:49 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:51 msgid "Thu" msgstr "" @@ -10877,7 +10886,7 @@ msgstr "" msgid "TikTok" msgstr "" -#: src/components/routes/event/OccurrencesTab/index.tsx:290 +#: src/components/routes/event/OccurrencesTab/index.tsx:292 msgid "Time" msgstr "" @@ -10908,7 +10917,7 @@ msgstr "" msgid "Timezone" msgstr "" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:702 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:715 msgid "to" msgstr "" @@ -11052,7 +11061,7 @@ msgstr "" msgid "Try a different search term or filter" msgstr "" -#: src/components/routes/event/OccurrencesTab/index.tsx:574 +#: src/components/routes/event/OccurrencesTab/index.tsx:584 msgid "Try adjusting your filters to see more dates." msgstr "" @@ -11065,7 +11074,7 @@ msgstr "" msgid "Try Hi.Events Free" msgstr "" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:47 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:49 msgid "Tue" msgstr "" @@ -11228,7 +11237,7 @@ msgstr "" #: src/components/common/EventsDashboardStatusButtons/index.tsx:20 #: src/components/common/EventStatusBadge/index.tsx:16 #: src/components/layouts/OrganizerHomepage/index.tsx:285 -#: src/components/routes/event/OccurrencesTab/index.tsx:483 +#: src/components/routes/event/OccurrencesTab/index.tsx:485 #: src/components/routes/organizer/Reports/EventsPerformanceReport/index.tsx:33 msgid "Upcoming" msgstr "" @@ -11876,7 +11885,7 @@ msgstr "" msgid "Website" msgstr "" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:48 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:50 msgid "Wed" msgstr "" @@ -11884,16 +11893,16 @@ msgstr "" msgid "Wednesday" msgstr "" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:94 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:96 msgid "week" msgstr "" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:57 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:59 #: src/components/routes/product-widget/OccurrenceSelector/index.tsx:35 msgid "Weekly" msgstr "" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:102 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:104 msgid "weeks" msgstr "" @@ -11949,7 +11958,7 @@ msgstr "" msgid "What time will you be arriving?" msgstr "" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:688 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:701 msgid "What time?" msgstr "" @@ -12136,7 +12145,7 @@ msgstr "" msgid "X (Twitter)" msgstr "" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:96 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:98 msgid "year" msgstr "" @@ -12146,12 +12155,12 @@ msgstr "" msgid "Year to date" msgstr "" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:59 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:61 #: src/components/routes/product-widget/OccurrenceSelector/index.tsx:43 msgid "Yearly" msgstr "" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:104 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:106 msgid "years" msgstr "" @@ -12196,7 +12205,7 @@ msgstr "" msgid "You can create a promo code which targets this product on the" msgstr "" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:823 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:836 msgid "You can override this for individual dates later." msgstr "" diff --git a/frontend/src/locales/se.js b/frontend/src/locales/se.js index 34e14fa267..f15a092731 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\":\"123 Main Street\",\"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\":\"Are you sure you want to make this event public? This will make the event visible to the public\",\"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\":\"Attendee Notes\",\"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\":\"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\":\"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\":\"Check-in\",\"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\":\"Anpassa din evenemangssida\",\"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\":\"Dismiss\",\"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\":\"Event 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\":\"No attendees have been added to this 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\":\"No product associated with this attendee.\",\"Ya1JhR\":\"Inga produkter tillgängliga i denna kategori.\",\"FTfObB\":\"Inga produkter ännu\",\"+Y976X\":\"Inga kampanjkoder att visa\",\"MAavyl\":\"No questions answered by this attendee.\",\"SnlQeq\":\"No questions have been asked for this 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\":\"Online event\",\"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 #\",\"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\":\"Order Notes\",\"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 kontext eller instruktioner för denna fråga. Använd detta fält för att lägga till villkor,\\nriktlinjer eller 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\":\"View\",\"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\":\"(none)\",\"xYxQCZ\":[[\"0\"],\" \",[\"1\"]],\"lAOy2r\":[[\"0\"],\" \",[\"1\"],\" är redan incheckad\"],\"3beCx0\":[[\"0\"],\" <0>checked in\"],\"S4PqS9\":[[\"0\"],\" aktiva webhooks\"],\"6MIiOI\":[[\"0\"],\" kvar\"],\"COnw8D\":[[\"0\"],\" logotyp\"],\"xG9N0H\":[[\"0\"],\" of \",[\"1\"],\" seats are taken.\"],\"B7pZfX\":[[\"0\"],\" arrangörer\"],\"/HkCs4\":[[\"0\"],\" biljetter\"],\"30bTiU\":[[\"activeCount\"],\" enabled\"],\"jTs4am\":[[\"appName\"],\" logo\"],\"gbJOk9\":[[\"attendeeCount\"],\" attendees are registered for this session.\"],\"TjbIUI\":[[\"availableCount\"],\" av \",[\"totalCount\"],\" tillgängliga\"],\"PSChHo\":[[\"capacity\"],\" platser kvar\"],\"lzQ8/M\":[[\"checkedIn\"],\" / \",[\"total\"],\" checked in\"],\"RZ0JX3\":[[\"chipTime\"],\", slutsålt\"],\"M4KnFs\":[[\"chipTime\"],\", Slutsålt, väntelista tillgänglig\"],\"SeyN12\":[[\"completedCount\"],\" of \",[\"totalCount\"],\" steps complete\"],\"f2rhaD\":[[\"diffHr\"],\"h ago\"],\"NRSLBe\":[[\"diffMin\"],\"m ago\"],\"iYfwJE\":[[\"diffSec\"],\"s ago\"],\"OJnhhX\":[[\"eventCount\"],\" evenemang\"],\"mhZbzw\":[[\"loadedAffectedAttendees\"],\" attendees are registered across the affected sessions.\"],\"RBuxIl\":[[\"productCount\"],\" ticket types configured\"],\"VFLd0I\":[[\"slotCount\"],\" times available\"],\"3IEF7U\":[[\"totalCount\"],\" biljettkategorier\"],\"0cLzoF\":[[\"totalOccurrences\"],\" dates\"],\"AEGc4t\":[[\"totalOccurrences\"],\" sessions across \",[\"0\"],\" dates (\",[\"1\",\"plural\",{\"one\":[\"#\",\" session\"],\"other\":[\"#\",\" sessions\"]}],\" per day)\"],\"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.\",\"Il5Uid\":\"<0>Detta är det totala tillgängliga antalet för alla datum i ditt schema sammanlagt — inte en gräns per datum. För att begränsa antalet deltagare per datum, ange en kapacitet på <1>sidan Datumschema.\",\"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 attendee is registered across the affected sessions.\",\"qOyE2U\":\"1 attendee is registered for this session.\",\"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\",\"y2Jh0m\":\"1 time available\",\"cGtUz6\":\"1 vecka före evenemanget\",\"HR/cvw\":\"Exempelgatan 123\",\"dgKxZ5\":\"135+ currencies & 40+ payment methods\",\"kMU5aM\":\"Ett avbokningsmeddelande har skickats till\",\"o++0qa\":\"a change in duration\",\"WuWSX5\":\"A few quick steps and you're ready to start selling.\",\"RQ5kDd\":\"Ett meddelande som visas när det inte finns några produkter i denna kategori.\",\"V53XzQ\":\"En ny verifieringskod har skickats till din e-post\",\"sr2Je0\":\"a shift in start/end times\",\"/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\":[\"Account · \",[\"0\"],\" · \",[\"1\"]],\"vOuxvL\":\"Kontoinformation\",\"EHNORh\":\"Konto hittades inte\",\"bPwFdf\":\"Konton\",\"AhwTa1\":\"Åtgärd krävs: Momsinformation krävs\",\"APyAR/\":\"Aktiva evenemang\",\"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\":\"Lägg till fråga\",\"Z/dcxc\":\"Add Date\",\"QeupRg\":\"Lägg till datum\",\"Q219NT\":\"Add Dates\",\"yjB5VC\":\"Add dates and times for your recurring event\",\"Z8idyM\":\"Add details\",\"wpirGs\":\"Add event details\",\"VX6WUv\":\"Lägg till plats\",\"GCQlV2\":\"Add multiple times if you run several sessions per day.\",\"7JF9w9\":\"Lägg till fråga\",\"NLbIb6\":\"Add this attendee anyway (override capacity)\",\"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 hemsida. En banner för cookiesamtycke 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\":\"Affiliate program\",\"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.\",\"3e31kI\":\"After your event is created, you can choose how often it repeats from the dashboard.\",\"z7GAMJ\":\"all\",\"N40H+G\":\"All\",\"7rLTkE\":\"Alla arkiverade evenemang\",\"gKq1fa\":\"Alla deltagare\",\"63gRoO\":\"All attendees of the selected sessions\",\"uWxIoH\":\"All attendees of this occurrence\",\"pMLul+\":\"Alla valutor\",\"sgUdRZ\":\"All dates\",\"e4q4uO\":\"All Dates\",\"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\":\"All matching dates\",\"F1/VgK\":\"All occurrences\",\"OpWjMq\":\"All Occurrences\",\"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.\",\"VZdky1\":\"Tillåt köpare att kopiera sina uppgifter till alla deltagare\",\"F3mW5G\":\"Tillåt kunder att gå med i en väntelista när denna produkt är slutsåld\",\"4CMO/q\":\"Tillåt kunder att gå med i en väntelista när denna produkt är slutsåld. Kunder går med i väntelistan för ett specifikt datum.\",\"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\":\"Already in\",\"/H326L\":\"Redan återbetald\",\"USEpOK\":\"Already use Stripe on another organizer? Reuse that connection.\",\"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.\",\"OPFdAM\":\"En valfri beskrivning av denna kategori som visas på evenemangssidan.\",\"eusccx\":\"Ett valfritt meddelande att visa på den markerade produkten, t.ex. \\\"Säljer snabbt 🔥\\\" eller \\\"Bästa värdet\\\"\",\"5GJuNp\":[\"and \",[\"0\"],\" more...\"],\"QNrkms\":\"Svaret uppdaterades\",\"+qygei\":\"Answers\",\"GK7Lnt\":\"Answers provided at checkout (e.g. meal choice)\",\"lE8PgT\":\"Any dates you've manually customized will be kept.\",\"jVoYha\":[\"tillämpad — \",[\"0\"],\" rabatt på din order\"],\"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\":\"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\":[\"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\":\"Ä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/\":\"Are you sure you want to delete this date? This action cannot be undone.\",\"RiF/yT\":\"Are you sure you want to delete this image?\",\"b3+Qku\":\"Are you sure you want to delete this tax or fee? It will no longer be applied to new orders.\",\"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\":\"Are you sure you want to permanently delete this date? This cannot be undone.\",\"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?\",\"b7tkGp\":\"Are you sure you want to revoke this invitation?\",\"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\":\"Assign plan\",\"xdiER7\":\"Tilldelad nivå\",\"F2rX0R\":\"Minst en evenemangstyp måste väljas\",\"Z44eZS\":\"At least one product must stay available for this date. To make the date inaccessible, cancel it from the schedule instead.\",\"BCmibk\":\"Försök\",\"6PecK3\":\"Närvaro och incheckningsfrekvens för alla evenemang\",\"K2tp3v\":\"attendee\",\"AJ4rvK\":\"Deltagare avbokad\",\"qvylEK\":\"Deltagare skapad\",\"Aspq3b\":\"Insamling av deltagaruppgifter\",\"fpb0rX\":\"Deltagaruppgifter kopierade från order\",\"94aQMU\":\"Deltagarinformation\",\"KkrBiR\":\"Insamling av deltagarinformation\",\"sjPjOg\":\"Attendee notes\",\"cosfD8\":\"Deltagarstatus\",\"D2qlBU\":\"Deltagare uppdaterad\",\"22BOve\":\"Deltagare uppdaterades framgångsrikt\",\"x8Vnvf\":\"Deltagarens biljett ingår inte i denna lista\",\"/Ywywr\":\"attendees\",\"zLRobu\":\"attendees checked in\",\"k3Tngl\":\"Deltagare exporterade\",\"UoIRW8\":\"Deltagare registrerade\",\"5UbY+B\":\"Deltagare med en specifik biljett\",\"4HVzhV\":\"Deltagare:\",\"HVkhy2\":\"Attributionsanalys\",\"dMMjeD\":\"Attributionsuppdelning\",\"1oPDuj\":\"Attributionsvärde\",\"DBHTm/\":\"August\",\"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 bearbeta väntelistan från Väntelista-sidan.\",\"csDS2L\":\"Tillgängligt\",\"Xp+ywP\":\"Tillgänglig när betalningen har slutförts\",\"dwDH1K\":[\"Available times on \",[\"dayName\"]],\"clF06r\":\"Tillgängligt för återbetalning\",\"NB5+UG\":\"Tillgängliga tokens\",\"L+wGOG\":\"Awaiting\",\"qcw2OD\":\"Awaiting pay\",\"kNmmvE\":\"Awesome Events Ltd.\",\"TeSaQO\":\"Tillbaka till konton\",\"kYqM1A\":\"Tillbaka till evenemanget\",\"s5QRF3\":\"Tillbaka till meddelanden\",\"td/bh+\":\"Tillbaka till rapporter\",\"nsm7BA\":\"Tillbaka till sökning\",\"imjKVx\":\"Bank account connected\",\"D9LTCH\":\"Base Price\",\"hviJef\":\"Based on the global sale period above, not per date\",\"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\":\"Built-in fraud protection\",\"cr7kGH\":\"Bulk Edit\",\"1Fbd6n\":\"Bulk Edit Dates\",\"Eq6Tu9\":\"Bulk update failed.\",\"9N+p+g\":\"Företag\",\"SWnN1L\":\"Business address\",\"kQekXw\":\"Business name\",\"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 personuppgiftsansvariga för de insamlade uppgifterna. Du ansvarar för att säkerställa att du har en laglig 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\":\"By day of month\",\"0MnNgi\":\"By day of week\",\"CetOZE\":\"By ticket type\",\"lFdbRS\":\"Kringgå applikationsavgifter\",\"AjVXBS\":\"Calendar\",\"2VLZwd\":\"Uppmaningsknapp\",\"rT2cV+\":\"Camera\",\"7hYa9y\":\"Camera permission was denied. <0>Request permission again, or grant this page camera access in your browser settings.\",\"D02dD9\":\"Kampanj\",\"RRPA79\":\"Can't check in\",\"OcVwAd\":[\"Cancel \",[\"count\"],\" date(s)\"],\"H4nE+E\":\"Avbryt alla produkter och släpp tillbaka dem till poolen\",\"Py78q9\":\"Cancel Date\",\"tOXAdc\":\"Avbrytande kommer att avbryta alla deltagare som är kopplade till denna order och släppa tillbaka biljetterna till den tillgängliga poolen.\",\"FPpqc7\":[\"Cancelling \",[\"0\"],\" date(s). This may take a moment to complete.\"],\"01sEfm\":\"Det går inte att ta bort systemets standardkonfiguration\",\"VsM1HH\":\"Kapacitetstilldelningar\",\"9bIMVF\":\"Capacity management\",\"H7K8og\":\"Capacity must be 0 or greater\",\"nzao08\":\"capacity updates\",\"4cp9NP\":\"Capacity Used\",\"K7tIrx\":\"Kategori\",\"DRK3Bq\":\"Category deleted successfully\",\"o+XJ9D\":\"Ändra\",\"kJkjoB\":\"Change duration\",\"J0KExZ\":\"Change the attendee limit\",\"ssospy\":\"Change time\",\"CIHJJf\":\"Ändra väntlistinställningar\",\"B5icLR\":[\"Changed duration for \",[\"count\"],\" date(s)\"],\"Kb+0BT\":\"Charges\",\"2tbLdK\":\"Välgörenhet\",\"BPWGKn\":\"Check in\",\"6uFFoY\":\"Check out\",\"FjAlwK\":[\"Check out this event: \",[\"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\":\"Check-In\",\"udRwQs\":\"Incheckning skapad\",\"F4SRy3\":\"Incheckning borttagen\",\"as6XfO\":[\"Check-in for \",[\"0\"],\" was undone\"],\"9s/wrQ\":\"Check-in history\",\"Wwztk4\":\"Check-In List\",\"9gPPUY\":\"Incheckningslista skapad\",\"dwjiJt\":\"Check-in list info\",\"7od0PV\":\"check-in lists\",\"f2vU9t\":\"Incheckningslistor\",\"XprdTn\":\"Check-in navigation\",\"5tV1in\":\"Check-in progress\",\"SHJwyq\":\"Incheckningsgrad\",\"qCqdg6\":\"Incheckningsstatus\",\"cKj6OE\":\"Incheckningssammanfattning\",\"7B5M35\":\"Incheckningar\",\"VrmydS\":\"Checked in\",\"DM4gBB\":\"Kinesiska (traditionell)\",\"p8Jvp4\":\"Choose a configuration\",\"ElShBO\":\"Choose a different action\",\"pHEhf+\":\"Välj ett teckensnitt som passar ditt varumärke. Teckensnitten lagras via Bunny Fonts.\",\"Zok1Gx\":\"Choose an organizer\",\"pkk46Q\":\"Välj en organisatör\",\"Ag32+c\":\"Choose another date\",\"Crr3pG\":\"Välj kalender\",\"Z38ZJu\":\"Välj hur evenemangsdatumet visas på biljetten\",\"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\":\"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\":\"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\":\"complete\",\"bUQMpb\":\"Complete Stripe setup\",\"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\":\"Configuration assigned\",\"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\":\"Configure which products are available for this occurrence and optionally adjust pricing.\",\"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\",\"/K4Vqr\":\"Anslut Stripe för att ta emot betalningar\",\"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\":\"Anslutningsuppgifter krävs för onlineevenemang\",\"jfC/xh\":\"Kontakt\",\"LOFgda\":[\"Kontakta \",[\"0\"]],\"41BQ3k\":\"Kontakt-e-post\",\"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\",\"s30OcA\":\"Styr hur datum och tider visas på evenemangssidan\",\"p2FRHj\":\"Kontrollera hur plattformsavgifter hanteras för detta evenemang\",\"NqfabH\":\"Control who gets in for this date\",\"fmYxZx\":\"Control who gets in, and when\",\"1JnTgU\":\"Kopierad från ovan\",\"FxVG/l\":\"Kopierad till urklipp\",\"PiH3UR\":\"Kopierad!\",\"4i7smN\":\"Copy account 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 platsen\",\"vkiDx2\":\"Could not prepare the bulk update.\",\"KOavaU\":\"Kunde inte hämta adressuppgifter\",\"/lq4oO\":\"Could not save date\",\"mHu0az\":\"Couldn't send verification email. Please try again.\",\"QOIm+S\":\"Antalen inkluderar alla kommande datum. Varje person erbjuds en plats för det datum de anmälde sig till.\",\"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\":\"Covers every ticket\",\"zg4oSu\":[\"Skapa mall för \",[\"0\"]],\"RKKhnW\":\"Skapa en anpassad widget för att sälja biljetter på din webbplats.\",\"6sk7PP\":\"Create a fixed number\",\"jqhTmw\":\"Create a list for this date\",\"PhioFp\":\"Create a new check-in list for an active session, or contact the organizer if you think this is a mistake.\",\"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\":\"Create Date\",\"Nc3l/D\":\"Skapa rabatter, åtkomstkoder för dolda biljetter och specialerbjudanden.\",\"PybJS2\":\"Create event\",\"eWEV9G\":\"Skapa nytt lösenord\",\"wl2iai\":\"Create Schedule\",\"8AiKIu\":\"Skapa biljett eller produkt\",\"/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\":\"Skapa ditt första evenemang för att börja sälja biljetter och hantera deltagare.\",\"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\":\"Currently assigned\",\"iTvh6I\":\"För närvarande tillgänglig för köp\",\"A42Dqn\":\"Custom branding\",\"Guo0lU\":\"Anpassat datum och tid\",\"WDMdn8\":\"Custom questions\",\"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\",\"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\":\"Daily\",\"/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\":\"Dance\",\"pvnfJD\":\"Mörk\",\"MaB9wW\":\"Date Cancellation\",\"e6cAxJ\":\"Date cancelled\",\"81jBnC\":\"Date cancelled successfully\",\"a/C/6R\":\"Date created successfully\",\"IW7Q+u\":\"Date deleted\",\"rngCAz\":\"Date deleted successfully\",\"vHbfoQ\":\"Date reactivated\",\"hvah+S\":\"Date reopened for new sales\",\"Ez0YsD\":\"Date updated successfully\",\"Te33mU\":\"Dates are managed per occurrence\",\"91zCxb\":\"Dates with sessions\",\"/ITcnz\":\"day\",\"H7OUPr\":\"Day\",\"JtHrX9\":\"Day of Month\",\"J/Upwb\":\"days\",\"vDVA2I\":\"Days of Month\",\"rDLvlL\":\"Days of Week\",\"r6zgGo\":\"December\",\"jbq7j2\":\"Avvisa\",\"ovBPCi\":\"Standard\",\"JtI4vj\":\"Standardinsamling av deltagarinformation\",\"ULjv90\":\"Default capacity per date\",\"3R/Tu2\":\"Standard avgiftshantering\",\"1bZAZA\":\"Standardmall kommer att användas\",\"HNlEFZ\":\"ta bort\",\"KpnwJK\":[\"Ta bort \\\"\",[\"0\"],\"\\\"?\"],\"BlII4o\":[\"Delete \",[\"count\"],\" selected date(s)? Dates with orders will be skipped. This cannot be undone.\"],\"vu7gDm\":\"Ta bort partner\",\"KZN4Lc\":\"Ta bort alla\",\"6EkaOO\":\"Delete Date\",\"io0G93\":\"Ta bort evenemang\",\"+jw/c1\":\"Ta bort bild\",\"hdyeZ0\":\"Ta bort jobb\",\"xxjZeP\":\"Ta bort plats\",\"sY3tIw\":\"Ta bort arrangör\",\"UBv8UK\":\"Delete Permanently\",\"dPyJ15\":\"Ta bort mall\",\"IQTR34\":\"Delete this category? Any products in it will also be deleted. This cannot be undone.\",\"/1wMxk\":\"Delete this product? This cannot be undone.\",\"mxsm1o\":\"Ta bort denna fråga? Detta kan inte ångras.\",\"snMaH4\":\"Ta bort webhook\",\"LIZZLY\":[\"Deleted \",[\"0\"],\" date(s)\"],\"7w0Wev\":\"Description and venue added\",\"vYgeDk\":\"Avmarkera alla\",\"NvuEhl\":\"Designelement\",\"H8kMHT\":\"Fick du inte koden?\",\"G8KNgd\":\"Different location\",\"E/QGRL\":\"Disabled\",\"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.\",\"HtaSQp\":\"Visar hur många platser som är kvar för varje datum i biljettwidgeten. Du kan åsidosätta detta för enskilda datum.\",\"pfa8F0\":\"Visningsnamn\",\"Kdpf90\":\"Glöm inte!\",\"352VU2\":\"Har du inget konto? <0>Registrera dig\",\"AXXqG+\":\"Donation\",\"DPfwMq\":\"Klar\",\"JoPiZ2\":\"Door staff instructions\",\"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 ansvariga.\",\"euc6Ns\":\"Duplicera\",\"YueC+F\":\"Duplicate Date\",\"KRmTkx\":\"Duplicera produkt\",\"Jd3ymG\":\"Duration must be at least 1 minute.\",\"KIjvtr\":\"Nederländska\",\"22xieU\":\"t.ex. 180 (3 timmar)\",\"/zajIE\":\"e.g. Morning Session\",\"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.\",\"Xfsjel\":\"Varje produkt\",\"5oD9f/\":\"Earlier\",\"LTzmgK\":[\"Redigera \",[\"0\"],\"-mall\"],\"v4+lcZ\":\"Redigera partner\",\"2iZEz7\":\"Redigera svar\",\"t2bbp8\":\"Redigera deltagare\",\"etaWtB\":\"Redigera deltagardetaljer\",\"+guao5\":\"Redigera konfiguration\",\"1Mp/A4\":\"Edit Date\",\"m0ZqOT\":\"Redigera plats\",\"8oivFT\":\"Redigera plats\",\"vRWOrM\":\"Redigera orderdetaljer\",\"fW5sSv\":\"Redigera webhook\",\"nP7CdQ\":\"Redigera webhook\",\"MRZxAn\":\"Edited\",\"uBAxNB\":\"Redigerare\",\"aqxYLv\":\"Utbildning\",\"iiWXDL\":\"Behörighetsfel\",\"zPiC+q\":\"Giltiga incheckningslistor\",\"SiVstt\":\"Email & scheduled messages\",\"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\":\"Embeddable 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\":\"End\",\"sGjBEq\":\"Slutdatum och tid (valfritt)\",\"PKXt9R\":\"Slutdatum måste vara efter startdatum\",\"ZayGC7\":\"End on a date\",\"48Y16Q\":\"Sluttid (valfritt)\",\"TbaYrr\":[\"Ended \",[\"0\"]],\"CFgwiw\":[\"Ends \",[\"0\"]],\"SqOIQU\":\"Enter a capacity value or choose unlimited.\",\"h37gRz\":\"Enter a label or choose to remove it.\",\"7YZofi\":\"Ange ämne och innehåll för att se förhandsgranskningen\",\"khyScF\":\"Enter a time to shift by.\",\"SKx/0u\":\"Ange ett platsnamn eller en adress\",\"ppwojw\":\"Ange ett platsnamn eller en adress för fysiska evenemang\",\"j+eCIq\":\"Ange adressen manuellt\",\"3bR1r4\":\"Ange partnerns e-post (valfritt)\",\"ARkzso\":\"Ange partnernamn\",\"ej4L8b\":\"Enter capacity\",\"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)\",\"RRlWVA\":\"Hela ordern\",\"o21Y+P\":\"entries\",\"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\",\"+v+GW0\":\"Visning av evenemangsdatum\",\"7u9/DO\":\"Evenemanget har tagits bort\",\"imgKgl\":\"Evenemangsbeskrivning\",\"IzR/Fc\":\"Event lifetime\",\"PYs3rP\":\"Evenemangsnamn\",\"HhwcTQ\":\"Evenemangsnamn\",\"WZZzB6\":\"Evenemangsnamn krävs\",\"Wd5CDM\":\"Evenemangsnamnet måste vara kortare än 150 tecken\",\"4JzCvP\":\"Evenemanget är inte tillgängligt\",\"mImacG\":\"Evenemangssida\",\"Hk9Ki/\":\"Evenemanget har återställts\",\"JyD0LH\":\"Evenemangsinställningar\",\"XVLu2v\":\"Evenemangstitel\",\"OfmsI9\":\"Evenemang för nytt\",\"4SILkp\":\"Event totals\",\"YDVUVl\":\"Evenemangstyper\",\"+HeiVx\":\"Evenemang uppdaterat\",\"19j6uh\":\"Evenemangens resultat\",\"PC3/fk\":\"Evenemang som startar inom 24 timmar\",\"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\":\"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\":\"Misslyckades med att tilldela konfiguration\",\"PO0cfn\":\"Failed to cancel date\",\"YUX+f+\":\"Failed to cancel dates\",\"SIHgVQ\":\"Det gick inte att avbryta meddelandet\",\"cEFg3R\":\"Misslyckades med att skapa partner\",\"dVgNF1\":\"Misslyckades med att skapa konfiguration\",\"fAoRRJ\":\"Failed to create schedule\",\"U66oUa\":\"Misslyckades med att skapa mall\",\"aFk48v\":\"Misslyckades med att ta bort konfiguration\",\"n1CYMH\":\"Failed to delete date\",\"KXv+Qn\":\"Failed to delete date. It may have existing orders.\",\"JJ0uRo\":\"Failed to delete dates\",\"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\",\"5E23qd\":\"Failed to delete product. Please try again.\",\"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\":\"Failed to reactivate date\",\"7zyx8a\":\"Misslyckades med att ta bort från väntelistan\",\"A/P7PX\":\"Failed to remove override\",\"ogWc1z\":\"Failed to reopen date\",\"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\":\"Failed to save override\",\"sj/eZA\":\"Failed to save price override\",\"780n8A\":\"Failed to save product settings\",\"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\":\"Misslyckades med 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\":\"Family\",\"5LO38w\":\"Fast payouts to your bank\",\"4lgLew\":\"February\",\"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\":\"Filter attendees\",\"8OvVZZ\":\"Filtrera deltagare\",\"N/H3++\":\"Filter by date\",\"mvrlBO\":\"Filtrera efter evenemang\",\"g+xRXP\":\"Finish setting up Stripe\",\"LHH461\":\"Finish setup\",\"syyeb9\":\"First\",\"Vj6wk9\":\"First 30 days\",\"/bpZYb\":\"First 7 days\",\"ziEnjY\":\"First 90 days\",\"1vBhpG\":\"Första deltagare\",\"4pwejF\":\"Förnamn är obligatoriskt\",\"rVogsf\":\"Åtgärda problemen för att publicera\",\"3lkYdQ\":\"Fixed fee\",\"6bBh3/\":\"Fast avgift\",\"zWqUyJ\":\"Fast avgift per transaktion\",\"LWL3Bs\":\"Fast avgift måste vara 0 eller högre\",\"0RI8m4\":\"Flash off\",\"q0923e\":\"Flash on\",\"X+U6/w\":\"Teckensnitt\",\"lWxAUo\":\"Mat och dryck\",\"nFm+5u\":\"Sidfotstext\",\"a8nooQ\":\"Fourth\",\"wtuVU4\":\"Frequency\",\"xVhQZV\":\"Fri\",\"39y5bn\":\"Friday\",\"f5UbZ0\":\"Full data ownership\",\"cfvx/y\":\"Full event\",\"MY2SVM\":\"Full återbetalning\",\"PGQLdy\":\"future\",\"8N/j1s\":\"Future dates only\",\"yRx/6K\":\"Future dates will be copied with capacity reset to zero\",\"T02gNN\":\"Allmän entré\",\"3ep0Gx\":\"Allmän information om din arrangör\",\"ziAjHi\":\"Generera\",\"exy8uo\":\"Generera kod\",\"4CETZY\":\"Få vägbeskrivning\",\"pjkEcB\":\"Get Paid\",\"lGYzP6\":\"Get paid with Stripe\",\"ZDIydz\":\"Sätt igång\",\"u6FPxT\":\"Köp biljetter\",\"8KDgYV\":\"Gör ditt evenemang redo\",\"RkXlPZ\":\"GitHub\",\"sr0UJD\":\"Go Back\",\"oNL5vN\":\"Gå till evenemangssidan\",\"gHSuV/\":\"Gå till startsidan\",\"8+Cj55\":\"Go to Schedule\",\"6nDzTl\":\"God läsbarhet\",\"76gPWk\":\"Got it\",\"CZXzs4\":\"Grekiska\",\"aGWZUr\":\"Bruttointäkter\",\"n8IUs7\":\"Bruttointäkter\",\"O1wAlQ\":\"Guest\",\"LIYoRQ\":\"Gästhantering\",\"NUsTc4\":\"Happening now\",\"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\":\"Hi,\",\"/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\":\"Hide details\",\"FmogyU\":\"Dölj alternativ\",\"uXNYjR\":\"Dölj slutsålda datum och tider\",\"g9RcYX\":\"Dölj datumet\",\"uMwTx7\":\"Dölj denna kategori?\",\"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\":\"Hobbies\",\"yY8wAv\":\"Hours\",\"49Tkiw\":\"Hur tillämpas rabatten?\",\"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\":\"How long does the schedule run?\",\"DMr2XN\":\"How often?\",\"cceMns\":\"How VAT is applied to the platform fees we charge you.\",\"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\",\"CY3yHL\":\"Om markerad kommer denna kategori att döljas för allmänheten.\",\"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\":[\"in last \",[\"0\"],\" min\"],\"u7r0G5\":\"In person — set a venue\",\"/LCAwL\":\"Pågår\",\"F1Xp97\":\"Enskilda deltagare\",\"85e6zs\":\"Infoga Liquid-token\",\"CTWsuc\":\"Instagram\",\"VopR6B\":\"Instant Stripe payouts\",\"nbfdhU\":\"Integrationer\",\"I8eJ6/\":\"Internal notes on the attendee's ticket\",\"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\",\"Dn4OyV\":\"Inbjuden\",\"IuMGvq\":\"Faktura\",\"a/bUcL\":\"It happens on more than one date\",\"d+Oe9r\":\"It may have been unpublished or removed. Please check the link and try again.\",\"Lj7sBL\":\"Italienska\",\"F5/CBH\":\"artikel(er)\",\"BzfzPK\":\"Artiklar\",\"rjyWPb\":\"January\",\"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\":\"July\",\"zeEQd/\":\"June\",\"MxjCqk\":\"Letar du bara efter dina biljetter?\",\"xOTzt5\":\"just now\",\"0RihU9\":\"Just wrapped\",\"lB2hSG\":[\"Håll mig uppdaterad om nyheter och evenemang från \",[\"0\"]],\"ioFA9i\":\"Keep the profit.\",\"o66QSP\":\"label updates\",\"RtKKbA\":\"Last\",\"DruLRc\":\"Senaste 14 dagarna\",\"ve9JTU\":\"Efternamn är obligatoriskt\",\"h0Q9Iw\":\"Senaste svar\",\"gw3Ur5\":\"Senast utlöst\",\"FIq1Ba\":\"Later\",\"xvnLMP\":\"Latest check-ins\",\"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\":\"Ljus\",\"1qY5Ue\":\"Länken har gått ut eller är ogiltig\",\"gggTBm\":\"LinkedIn\",\"nvOPBA\":\"Länkar tillåtna\",\"2BBAbc\":\"List\",\"dF6vP6\":\"Live\",\"fpMs2Z\":\"LIVE\",\"D9zTjx\":\"Liveevenemang\",\"C33p4q\":\"Loaded dates\",\"WdmJIX\":\"Laddar förhandsvisning...\",\"IoDI2o\":\"Laddar tokens...\",\"G3Ge9Z\":\"Laddar webhook-loggar...\",\"NFxlHW\":\"Laddar webhooks\",\"E0DoRM\":\"Platsen har tagits bort\",\"7w8lJU\":\"Platsen har sparats\",\"YsRXDD\":\"Platsen har uppdaterats\",\"A/kIva\":\"location updates\",\"iyZPPR\":\"platser\",\"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\",\"PSRm6/\":\"Hitta mina biljetter\",\"yJFu/X\":\"Huvudkontor\",\"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\":\"Hantera ditt evenemangs väntelista, visa statistik och erbjud biljetter till deltagare.\",\"g2npA5\":\"Manuellt erbjudande\",\"hg6l4j\":\"March\",\"pqRBOz\":\"Mark as validated (admin override)\",\"2L3vle\":\"Max meddelanden / 24h\",\"Qp4HWD\":\"Max mottagare / meddelande\",\"3JzsDb\":\"May\",\"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\":\"Minutes\",\"zz/Wd/\":\"Mode\",\"fpMgHS\":\"Mon\",\"hty0d5\":\"Monday\",\"JbIgPz\":\"Monetära värden är ungefärliga totaler över alla valutor\",\"qvF+MT\":\"Övervaka och hantera misslyckade bakgrundsjobb\",\"kY2ll9\":\"month\",\"HajiZl\":\"Månad\",\"+8Nek/\":\"Monthly\",\"1LkxnU\":\"Monthly Pattern\",\"6jefe3\":\"months\",\"f8jrkd\":\"more\",\"JcD7qf\":\"More actions\",\"w36OkR\":\"Mest visade evenemang (Senaste 14 dagarna)\",\"+Y/na7\":\"Move all dates earlier or later\",\"3DIpY0\":\"Multiple locations\",\"g9cQCP\":\"Multiple ticket types\",\"GfaxEk\":\"Musik\",\"oVGCGh\":\"Mina biljetter\",\"8/brI5\":\"Namn krävs\",\"sFFArG\":\"Namnet måste vara kortare än 255 tecken\",\"xxU3NX\":\"Nettointäkter\",\"7I8LlL\":\"New capacity\",\"n1GRql\":\"New label\",\"y0Fcpd\":\"Ny plats\",\"ArHT/C\":\"Nya registreringar\",\"uK7xWf\":\"New time:\",\"veT5Br\":\"Next occurrence\",\"WXtl5X\":[\"Next: \",[\"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\":\"No attendees to show\",\"PKySlW\":\"No attendees yet for this date.\",\"/UC6qk\":\"Ingen attributionsdata hittades\",\"E2vYsO\":\"No capabilities reported by Stripe yet.\",\"amMkpL\":\"Ingen kapacitet\",\"d2Jf1f\":\"No change\",\"99ntUF\":\"Inga incheckningslistor tillgängliga för detta evenemang.\",\"wG+knX\":\"No check-ins yet\",\"+dAKxg\":\"Inga konfigurationer hittades\",\"LiLk8u\":\"No connections available\",\"eb47T5\":\"Ingen data hittades för de valda filtren. Prova att justera datumintervall eller valuta.\",\"Zc216S\":\"No date added\",\"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\",\"OtJSnL\":\"Inga datum schemalagda\",\"gEdNe8\":\"No dates scheduled yet\",\"pZNOT9\":\"Inget slutdatum\",\"dW40Uz\":\"Inga evenemang hittades\",\"8pQ3NJ\":\"Inga evenemang startar inom de närmaste 24 timmarna\",\"8zCZQf\":\"Inga evenemang ännu\",\"Yc5YW6\":\"Inga misslyckade jobb\",\"EpvBAp\":\"Ingen faktura\",\"XZkeaI\":\"Inga loggar hittades\",\"IcAC6J\":\"Inga matchande teckensnitt\",\"nrSs2u\":\"Inga meddelanden hittades\",\"Rj99yx\":\"No occurrences available\",\"IFU1IG\":\"No occurrences on this date\",\"OVFwlg\":\"Inga orderfrågor ännu\",\"EJ7bVz\":\"Inga ordrar hittades\",\"NEmyqy\":\"Inga ordrar ännu\",\"a77B6w\":\"No orders yet for this date.\",\"wUv5xQ\":\"Ingen arrangörsaktivitet de senaste 14 dagarna\",\"vLd1tV\":\"No organizer context available.\",\"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\":\"No products configured for this event.\",\"kY7XDn\":\"Inga produkter har väntelisteposter\",\"8mw4tm\":\"Meddelande vid inga produkter\",\"wYiAtV\":\"Inga nya kontoregistreringar\",\"UW90md\":\"Inga mottagare hittades\",\"QoAi8D\":\"Inget svar\",\"JeO7SI\":\"Inget svar\",\"EK/G11\":\"Inga svar ännu\",\"59OWd3\":\"Inga sparade platser\",\"mPdY6W\":\"Inga förslag\",\"3sRuiW\":\"Inga biljetter hittades\",\"debCrL\":\"Inga biljetter att sälja\",\"k2C0ZR\":\"No upcoming dates\",\"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\":\"non-edited\",\"Itw24Q\":\"Not checked in\",\"x5+Lcz\":\"Inte incheckad\",\"8n10sz\":\"Inte behörig\",\"kLvU3F\":\"Notify attendees and stop sales\",\"t9QlBd\":\"November\",\"kAREMN\":\"Number of dates to create\",\"6u1B3O\":\"Occurrence\",\"mmoE62\":\"Occurrence Cancelled\",\"V9flmL\":\"Occurrence Schedule\",\"Kh3WO8\":\"Occurrence Summary\",\"byXCTu\":\"Occurrences\",\"KATw3p\":\"Occurrences (future only)\",\"85rTR2\":\"Occurrences can be configured after creation\",\"dzQfDY\":\"October\",\"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.\"],\"6Aih4U\":\"Offline\",\"nO3VbP\":[\"Till salu \",[\"0\"]],\"oXOSPE\":\"Online\",\"aqmy5k\":\"Online — provide connection details\",\"LuZBbx\":\"Online & in-person\",\"IXuOqt\":\"Online & in-person — see schedule\",\"WjSpu5\":\"Onlineevenemang\",\"scPxI/\":[\"Endast \",[\"capacity\"],\" kvar\"],\"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\",\"wkpaqp\":\"Visa endast startdatum och -tid\",\"DMk8F0\":\"Only tickets count toward capacity\",\"M2w1ni\":\"Endast synlig med kampanjkod\",\"y8Bm7C\":\"Open check-in\",\"RLz7P+\":\"Open occurrence\",\"cDSdPb\":\"Valfritt smeknamn som visas i väljare, t.ex. \\\"HK:s konferensrum\\\"\",\"HXMJxH\":\"Valfri text för friskrivningar, kontaktuppgifter eller tackmeddelanden, endast en rad\",\"L565X2\":\"alternativ\",\"8m9emP\":\"or add a single date\",\"eBskDE\":\"Eller aktivera offlinebetalningar och inaktivera Stripe\",\"dSeVIm\":\"order\",\"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\",\"xtQzag\":\"Order details\",\"vrSW9M\":\"Ordern har avbrutits och återbetalats. Orderägaren har informerats.\",\"rzw+wS\":\"Beställningsinnehavare\",\"oI/hGR\":\"Order-ID\",\"RQCXz6\":\"Ordergränser\",\"SO9AEF\":\"Ordergräns satt\",\"vu6Arl\":\"Order markerad som betald\",\"sLbJQz\":\"Order hittades inte\",\"kvYpYu\":\"Order hittades inte\",\"eJ8SvM\":\"Order number, purchase date, purchaser email\",\"FaPYw+\":\"Orderägare\",\"eB5vce\":\"Orderägare med en specifik produkt\",\"CxLoxM\":\"Orderägare med produkter\",\"UkHo4c\":\"Beställningsreferens\",\"EZy55F\":\"Order återbetalad\",\"6eSHqs\":\"Orderstatusar\",\"oW5877\":\"Ordersumma\",\"e7eZuA\":\"Order uppdaterad\",\"1SQRYo\":\"Order uppdaterades\",\"3NT0Ck\":\"Ordern avbröts\",\"V5khLm\":\"orders\",\"sd5IMt\":\"Slutförda beställningar\",\"5It1cQ\":\"Ordrar exporterade\",\"UQ0ACV\":\"Totalt antal beställningar\",\"B/EBQv\":\"Ordrar:\",\"qtGTNu\":\"Naturliga konton\",\"P/JHA4\":\"Arrangören har arkiverats\",\"S3CZ5M\":\"Arrangörens instrumentpanel\",\"GzjTd0\":\"Arrangören har tagits bort\",\"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\":\"Organizers\",\"/IX/7x\":\"Övrigt\",\"RsiDDQ\":\"Andra listor (biljett ingår inte)\",\"aDfajK\":\"Outdoors\",\"qMASRF\":\"Utgående meddelanden\",\"iCOVQO\":\"Override\",\"GpFTEc\":\"Override fees on this organizer\",\"M9ZhMP\":\"Override price\",\"cnVIpl\":\"Override removed\",\"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\":\"Past due\",\"xTPjSy\":\"Tidigare evenemang\",\"/l/ckQ\":\"Klistra in URL\",\"URAE3q\":\"Pausad\",\"4fL/V7\":\"Betala\",\"c2/9VE\":\"Payload\",\"5cxUwd\":\"Betalningsdatum\",\"ENEPLY\":\"Betalningsmetod\",\"8Lx2X7\":\"Betalning mottagen\",\"fx8BTd\":\"Betalningar är inte tillgängliga\",\"C+ylwF\":\"Payouts\",\"UbRKMZ\":\"Pending\",\"UkM20g\":\"Väntar på granskning\",\"dPYu1F\":\"Per deltagare\",\"mQV/nJ\":\"per min\",\"+kvxv+\":\"per order\",\"VlXNyK\":\"Per order\",\"NhuGd7\":\"per produkt\",\"hauDFf\":\"Per biljett\",\"mnF83a\":\"Procentuell avgift\",\"TNLuRD\":\"Percentage fee (%)\",\"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\":\"Permanently remove this date\",\"6kPk3+\":\"Personlig information\",\"zmwvG2\":\"Telefon\",\"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\":\"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\":\"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\":\"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\":\"Please select a date and time\",\"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\",\"OESu7I\":\"Förhindra översäljning genom att dela lager mellan flera biljett­typer.\",\"NgVUL2\":\"Förhandsgranska kassaflödet\",\"cs5muu\":\"Förhandsgranska evenemangssidan\",\"Jm2AC3\":\"Price Tier\",\"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\":\"Product settings cannot be edited for cancelled dates.\",\"2339ej\":\"Product settings saved successfully\",\"ldVIlB\":\"Produkt uppdaterad\",\"CP3D8G\":\"Progress\",\"JoKGiJ\":\"Kampanjkod\",\"k3wH7i\":\"Användning av kampanjkoder och rabattfördelning\",\"tZqL0q\":\"promo codes\",\"oCHiz3\":\"Promo codes\",\"uEhdRh\":\"Endast kampanj\",\"dLm8V5\":\"Marknadsföringsmejl kan leda till att kontot stängs av\",\"W0ETyY\":\"Ange minst ett adressfält (plats, gata, stad eller land).\",\"2W/7Gz\":\"Provide the following before Stripe's next review to keep payouts flowing.\",\"EEYbdt\":\"Publicera\",\"JcgJKc\":\"Publicera ändå\",\"evDBV8\":\"Publicera evenemang\",\"2zEfOd\":\"Publish your event\",\"L7nrC8\":\"När du publicerar blir din evenemangssida offentlig och anmälningar öppnas.\",\"dsFmM+\":\"Köpt\",\"JunetL\":\"Purchaser\",\"phmeUH\":\"Purchaser email\",\"ywR4ZL\":\"QR code check-in\",\"oWXNE5\":\"Ant.\",\"biEyJ4\":\"Question answers\",\"k/bJj0\":\"Frågorna ordnades om\",\"b24kPi\":\"Kö\",\"lTPqpM\":\"Quick Tip\",\"fqDzSu\":\"Sats\",\"mnUGVC\":\"Hastighetsgränsen har överskridits. Försök igen senare.\",\"t41hVI\":\"Erbjud plats igen\",\"TNclgc\":\"Reactivate this date? It will be reopened for future sales.\",\"RENQ6j\":\"Redo att gå live?\",\"uqoRbb\":\"Real-time analytics\",\"xzRvs4\":[\"Ta emot produktuppdateringar från \",[\"0\"],\".\"],\"pLXbi8\":\"Senaste kontoregistreringar\",\"M1HGuR\":\"Recent activity\",\"3kJ0gv\":\"Recent Attendees\",\"qhfiwV\":\"Recent check-ins\",\"S+0XMX\":\"Recent orders\",\"Fi3b48\":\"Senaste ordrar\",\"7hPBBn\":\"mottagare\",\"jp5bq8\":\"mottagare\",\"yPrbsy\":\"Mottagare\",\"E1F5Ji\":\"Mottagare är tillgängliga efter att meddelandet har skickats\",\"WEYdDv\":\"Recommended\",\"wuhHPE\":\"Recurring\",\"asLqwt\":\"Återkommande evenemang\",\"s3uzsK\":\"Inställningar för återkommande evenemang\",\"D0tAMe\":\"Recurring events\",\"JjMIKU\":\"Reddit\",\"HiGkFu\":\"Omdirigerar till Stripe...\",\"pnoTN5\":\"Hänvisade konton\",\"ACKu03\":\"Uppdatera förhandsgranskning\",\"vuFYA6\":\"Refund all orders for these dates\",\"4cRUK3\":\"Refund all orders for this date\",\"fKn/k6\":\"Återbetalningsbelopp\",\"qY4rpA\":\"Återbetalning misslyckades\",\"FaK/8G\":[\"Återbetala order \",[\"0\"]],\"MGbi9P\":\"Återbetalning väntar\",\"BDSRuX\":[\"Återbetald: \",[\"0\"]],\"bU4bS1\":\"Återbetalningar\",\"rYXfOA\":\"Regionala inställningar\",\"5tl0Bp\":\"Registreringsfrågor\",\"ZNo5k1\":\"Remaining\",\"Bjh87R\":\"Remove label from all dates\",\"IVZaEo\":\"Tar bort slutsålda datum och tider helt från evenemangssidan. När inaktiverat förblir de synliga och märks som slutsålda.\",\"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\":\"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\":\"Reset to base price\",\"kCn6wb\":\"Återställer...\",\"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\":\"results\",\"6gRgw8\":\"Försök igen\",\"1BG8ga\":\"Försök alla igen\",\"rDC+T6\":\"Försök jobb igen\",\"CbnrWb\":\"Tillbaka till evenemanget\",\"Lf7TCn\":\"Återanvändbara platser visas här automatiskt när du skapar evenemang med adresser, och du kan även lägga till egna.\",\"mdQ0zb\":\"Återanvändbara platser för dina evenemang. Platser som skapas via autokomplettering sparas här automatiskt.\",\"XFOPle\":\"Reuse\",\"1Zehp4\":\"Reuse a Stripe connection from another organizer in this account.\",\"Oo/PLb\":\"Sammanfattning av intäkter\",\"CfuueU\":\"Återkalla erbjudande\",\"RIgKv+\":\"Run until a specific date\",\"dFFW9L\":[\"Försäljningen avslutades \",[\"0\"]],\"loCKGB\":[\"Försäljningen avslutas \",[\"0\"]],\"wlfBad\":\"Försäljningsperiod\",\"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\":\"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\":\"Sales, attendance, and check-in breakdown per occurrence\",\"3VnlS9\":\"Försäljning, ordrar och prestandamått för alla evenemang\",\"3Q1AWe\":\"Försäljning:\",\"LeuERW\":\"Same as event\",\"B4nE3N\":\"Exempel på biljettpris\",\"8BRPoH\":\"Exempelplats\",\"PiK6Ld\":\"Sat\",\"+5kO8P\":\"Saturday\",\"zJiuDn\":\"Save fee override\",\"NB8Uxt\":\"Save Schedule\",\"KZrfYJ\":\"Spara sociala länkar\",\"9Y3hAT\":\"Spara mall\",\"C8ne4X\":\"Spara biljettlayout\",\"cTI8IK\":\"Save VAT settings\",\"6/TNCd\":\"Spara momsinställningar\",\"4RvD9q\":\"Sparad plats\",\"cgw0cL\":\"Sparade platser\",\"Fbqm/I\":\"Saving an override creates a dedicated configuration for this organizer if it's currently on the system default.\",\"I+FvbD\":\"Skanna\",\"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\":\"Schemalägg för senare\",\"NAzVVw\":\"Schemalägg meddelande\",\"Fz09JP\":\"Schedule starts on\",\"4ba0NE\":\"Schemalagd\",\"qcP/8K\":\"Schemalagd tid\",\"A1taO8\":\"Search\",\"ftNXma\":\"Sök affiliates...\",\"VMU+zM\":\"Search attendees\",\"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...\",\"YnMfsK\":\"Sök på namn eller adress...\",\"VT+urE\":\"Sök efter namn eller e-post...\",\"GHdjuo\":\"Sök på namn, e-post eller konto...\",\"4mBFO7\":\"Search by name, order #, ticket # or email\",\"20ce0U\":\"Sök på order-ID, kundnamn eller e-post...\",\"4DSz7Z\":\"Sök efter ämne, evenemang eller konto...\",\"nQC7Z9\":\"Search dates...\",\"iRtEpV\":\"Search dates…\",\"JRM7ao\":\"Search for an address\",\"BWF1kC\":\"Sök meddelanden...\",\"5WYZKZ\":\"Sökresultat\",\"IG85fV\":\"Sök sparade platser eller hitta en adress...\",\"3aD3GF\":\"Seasonal\",\"ku//5b\":\"Second\",\"Mck5ht\":\"Säker kassa\",\"s7tXqF\":\"See schedule\",\"JFap6u\":\"See what Stripe still needs\",\"p7xUrt\":\"Välj en kategori\",\"hTKQwS\":\"Select a Date & Time\",\"Ps6Xtf\":\"Select a date to see available times\",\"e4L7bF\":\"Välj ett meddelande för att visa dess innehåll\",\"zPRPMf\":\"Välj en nivå\",\"BFRSTT\":\"Välj konto\",\"wgNoIs\":\"Select all\",\"mCB6Je\":\"Välj alla\",\"aCEysm\":[\"Select all on \",[\"0\"]],\"a6+167\":\"Välj ett evenemang\",\"CFbaPk\":\"Välj deltagargrupp\",\"88a49s\":\"Select camera\",\"tVW/yo\":\"Välj valuta\",\"SJQM1I\":\"Select date\",\"n9ZhRa\":\"Välj slutdatum och tid\",\"gTN6Ws\":\"Välj sluttid\",\"0U6E9W\":\"Välj evenemangskategori\",\"j9cPeF\":\"Välj evenemangstyper\",\"ypTjHL\":\"Select occurrence\",\"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\":\"selected\",\"ylXj1N\":\"Vald\",\"uq3CXQ\":\"Sell out your event.\",\"oBXbO4\":\"Selling a physical product? Cap its quantity on the <0>products page instead.\",\"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\":\"Send to all occurrences, or choose a specific one\",\"QEQlnV\":\"Skicka ditt första meddelande\",\"IoAuJG\":\"Skickar...\",\"h69WC6\":\"Skickat\",\"BVu2Hz\":\"Skickat av\",\"ZFa8wv\":\"Sent to attendees when a scheduled date is cancelled\",\"SPdzrs\":\"Skickas till kunder när de lägger en order\",\"LxSN5F\":\"Skickas till varje deltagare med deras biljettuppgifter\",\"hgvbYY\":\"September\",\"5sN96e\":\"Session cancelled\",\"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\":\"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\":\"Skapa incheckningslistor för olika entréer, pass eller dagar.\",\"TaWVGe\":\"Set up payouts\",\"JA//e6\":\"Set up schedule\",\"gzXY7l\":\"Set Up Schedule\",\"0Ls9qe\":\"Set up the tickets you'll sell and their prices\",\"xMO+Ao\":\"Konfigurera din organisation\",\"5pEFnq\":\"Set up your schedule\",\"h/9JiC\":\"Set Up Your Schedule\",\"zRRuUD\":\"Set up your schedule in the next steps\",\"ETC76A\":\"Set, change, or remove the date's location or online details\",\"C3htzi\":\"Inställningen uppdaterades\",\"Ohn74G\":\"Konfiguration och 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\":\"Dela affiliate-länk\",\"hL7sDJ\":\"Dela arrangörssida\",\"jy6QDF\":\"Delad kapacitetshantering\",\"jDNHW4\":\"Shift times\",\"tPfIaW\":[\"Shifted times for \",[\"count\"],\" date(s)\"],\"WwlM8F\":\"Visa avancerade alternativ\",\"cMW+gm\":[\"Visa alla plattformar (\",[\"0\"],\" till med värden)\"],\"wXi9pZ\":\"Show attendee notes to non-logged-in staff\",\"4LZFir\":\"Visa hela datumintervallet\",\"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\",\"b33PL9\":\"Visa fler plattformar\",\"Eut7p9\":\"Show order details to non-logged-in staff\",\"+RoWKN\":\"Show question answers to non-logged-in staff\",\"jbcx6L\":\"Show remaining capacity on event dates\",\"rXxBOx\":\"Show remaining capacity to buyers\",\"t1LIQW\":[\"Visar \",[\"0\"],\" av \",[\"totalRows\"],\" poster\"],\"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\":\"Registrerad\",\"5C7J+P\":\"Single Event\",\"E//btK\":\"Skip manually edited dates\",\"paESr6\":\"Slovakiska\",\"9wu8nm\":\"Snapchat\",\"kIKb9e\":\"Socialt\",\"d0rUsW\":\"Sociala länkar\",\"j/TOB3\":\"Sociala länkar och webbplats\",\"s9KGXU\":\"Sålda\",\"yp+0jj\":\"sold out\",\"1hupow\":\"Slutsålt, väntelista tillgänglig\",\"iACSrw\":\"Some details are hidden from public access. Log in to view everything.\",\"Dia6iz\":\"Something went wrong while deleting the image. Please try again.\",\"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\":\"Spirituality\",\"oPaRES\":\"Split check-in across days, areas, or ticket types. Share the link with staff — no account needed on their end.\",\"7JFNej\":\"Sport\",\"/bfV1Y\":\"Staff instructions\",\"tXkhj/\":\"Start\",\"StWUH4\":\"Start check-in\",\"JcQp9p\":\"Startdatum och tid\",\"0m/ekX\":\"Startdatum och tid\",\"izRfYP\":\"Startdatum är obligatoriskt\",\"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/\":\"Statistik\",\"GVUxAX\":\"Statistiken baseras på kontots skapandedatum\",\"29Hx9U\":\"Stats\",\"5ia+r6\":\"Still needed\",\"wuV0bK\":\"Sluta impersonera\",\"s/KaDb\":\"Stripe connected\",\"Bk06QI\":\"Stripe anslutet\",\"akZMv8\":[\"Stripe connection copied from \",[\"0\"],\".\"],\"v0aRY1\":\"Stripe didn't return a setup link. Please try again.\",\"aKtF0O\":\"Stripe ej ansluten\",\"9i0++A\":\"Stripe betalnings-ID\",\"R1lIMV\":\"Stripe will need a few more details soon\",\"FzcCHA\":\"Stripe will walk you through a few quick questions to finish setup.\",\"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\",\"kRWc2g\":\"Inställningarna för återkommande evenemang har uppdaterats\",\"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\":\"Sun\",\"DBC3t5\":\"Sunday\",\"UaISq3\":\"Svenska\",\"JZTQI0\":\"Byt arrangör\",\"9YHrNC\":\"Systemstandard\",\"lruQkA\":\"Tap this screen to resume scanning\",\"TJUrME\":[\"Targeting attendees across \",[\"0\"],\" selected sessions.\"],\"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\":\"Team collaboration\",\"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\":\"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\":\"Mall aktiv\",\"QHhZeE\":\"Mallen skapades\",\"xrWdPR\":\"Mallen togs bort\",\"G04Zjt\":\"Mallen sparades\",\"xowcRf\":\"Användarvillkor\",\"6K0GjX\":\"Texten kan vara svår att läsa\",\"nm3Iz/\":\"Tack för att du deltog!\",\"pYwj0k\":\"Thanks,\",\"k3IitN\":\"That's a wrap\",\"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.\",\"7oksH+\":[\"Rabatten dras av från varje berättigad produkt. T.ex. \",[\"currencySymbol\"],\"10 rabatt × 3 biljetter = \",[\"currencySymbol\"],\"30 rabatt.\"],\"sKL8k2\":\"Rabatten dras av en gång från orderns totalbelopp.\",\"cDHM1d\":\"E-postadressen har ändrats. Deltagaren kommer att få en ny biljett till den uppdaterade e-postadressen.\",\"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\":\"The first date this schedule will generate from.\",\"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.\",\"Np4eLs\":[\"The maximum is \",[\"MAX_PREVIEW\"],\" sessions. Please reduce the date range, frequency, or number of sessions per day.\"],\"sYLeDq\":\"Arrangören du letar efter kunde inte hittas. Sidan kan ha flyttats, tagits bort eller så kan webbadressen vara felaktig.\",\"PCr4zw\":\"The override is recorded in the order audit log.\",\"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\",\"OVSkIF\":\"Den snabba bruna räven hoppar över den lata hunden.\",\"z0KrIG\":\"Den schemalagda tiden är obligatorisk\",\"EWErQh\":\"Den schemalagda tiden måste vara i framtiden\",\"UNd0OU\":[\"The session for \\\"\",[\"title\"],\"\\\" originally scheduled for \",[\"0\"],\" has been rescheduled.\"],\"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\",\"ybBP2H\":\"There are no products available for this date. Please choose another date.\",\"O7g4eR\":\"There are no upcoming dates for this event\",\"062KsE\":\"These details are shown on the attendee's ticket and order summary for this date only.\",\"5Eu+tn\":\"Dessa uppgifter visas endast om beställningen slutförs.\",\"jQjwR+\":\"These details will replace any existing location on the affected dates and show on attendee tickets.\",\"6eaLu/\":\"Dessa priser gäller för alla datum i ditt schema, och nivåernas antal begränsar den totala försäljningen för alla datum sammanlagt. Nivåernas försäljningsdatum gäller globalt. Du kan åsidosätta priser för enskilda datum på <0>sidan Datumschema.\",\"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\":\"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\":\"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/\":[\"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.\",\"E9BqZw\":\"This date only\",\"RzEvf5\":\"Det här evenemanget har avslutats\",\"kc4bIA\":\"Det här evenemanget har inga biljetter eller produkter ännu, så deltagare kan inte anmäla sig.\",\"eMaNd0\":\"This event is not available\",\"YClrdK\":\"Det här evenemanget är inte publicerat ännu\",\"GL6z+k\":\"Det här evenemanget är slutsålt\",\"pIwDhS\":\"This event's dates and times are set on the occurrence schedule.\",\"ny5rgr\":\"This is a recurring event\",\"tc64Zz\":\"Detta är namnet på kategorin som visas på evenemangssidan.\",\"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.\",\"5DpZrC\":\"Detta begränsar den totala försäljningen för alla datum i ditt schema sammanlagt — det är inte en gräns per datum. För att begränsa antalet deltagare per datum, ange en kapacitet på <0>sidan Datumschema.\",\"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\":\"This occurrence is at capacity\",\"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\",\"qEGn8I\":\"Det här återkommande evenemanget har inga datum ännu, så det finns inget för deltagare att boka.\",\"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.\",\"1LuJNw\":\"Denna biljett är inte längre giltig\",\"0Ew0uk\":\"Den här biljetten skannades nyss. Vänta innan du skannar igen.\",\"FYXq7k\":[\"This will affect \",[\"loadedAffectedCount\"],\" date(s).\"],\"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\":\"Throughput\",\"+FjWgX\":\"Thu\",\"kkDQ8m\":\"Thursday\",\"0GSPnc\":\"Biljettdesign\",\"EZC/Cu\":\"Biljettdesignen sparades\",\"bbslmb\":\"Biljettdesigner\",\"1BPctx\":\"Biljett för\",\"HGuXjF\":\"Biljettinnehavare\",\"CMUt3Y\":\"Biljettinnehavare\",\"awHmAT\":\"Biljett-ID\",\"6czJik\":\"Biljettlogotyp\",\"t79rDv\":\"Biljett hittades inte\",\"6tmWch\":\"Biljett eller produkt\",\"1tfWrD\":\"Biljettförhandsvisning för\",\"KnjoUA\":\"Biljettpris\",\"pGZOcL\":\"Biljetten skickades igen\",\"o02GZM\":\"Ticket sales have ended for this event\",\"8jLPgH\":\"Biljettyp\",\"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\":\"Time\",\"fXf2r5\":[\"Times shown in \",[\"timezoneAbbr\"]],\"dMtLDE\":\"to\",\"/jQctM\":\"Till\",\"tiI71C\":\"För att öka dina gränser, kontakta oss på\",\"ecUA8p\":\"Today\",\"W428WC\":\"Växla kolumner\",\"BRMXj0\":\"Tomorrow\",\"UBSG1X\":\"Topparrangörer (Senaste 14 dagarna)\",\"3sZ0xx\":\"Totalt antal konton\",\"SMDzqJ\":\"Totalt antal deltagare\",\"orBECM\":\"Totalt inkasserat\",\"k5CU8c\":\"Totalt antal poster\",\"4B7oCp\":\"Total avgift\",\"sMMlTX\":\"Total fees\",\"mlvCEl\":\"Total orders\",\"2AW/k5\":\"Totalt antal för alla datum\",\"dp8BCb\":\"Total tax\",\"vb0Q0/\":\"Totalt antal användare\",\"oJjplO\":\"Totala visningar\",\"rBZ9pz\":\"Tours\",\"orluER\":\"Spåra kontotillväxt och resultat efter attribueringskälla\",\"YwKzpH\":\"Spårning & Analys\",\"GUA0Jy\":\"Try a different search term or filter\",\"2P/OWN\":\"Try adjusting your filters to see more dates.\",\"ouM5IM\":\"Prova en annan e-postadress\",\"3DZvE7\":\"Prova Hi.Events gratis\",\"vq2WxD\":\"Tue\",\"G3myU+\":\"Tuesday\",\"Kz91g/\":\"Turkiska\",\"GdOhw6\":\"Stäng av ljudet\",\"KUOhTy\":\"Slå på ljudet\",\"dBeuY2\":\"Twitch\",\"QytzQr\":\"Skriv \\\"ta bort\\\" för att bekräfta\",\"nWRfmt\":\"Typografi\",\"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\":\"Unable to load attendee details.\",\"GlnD5Y\":\"Unable to load products for this date. Please try again.\",\"17VbmV\":\"Unable to undo check-in\",\"n57zCW\":\"Oattribuerade konton\",\"9uI/rE\":\"Undo\",\"Ef7StM\":\"Okänd\",\"ZBAScj\":\"Okänd deltagare\",\"MEIAzV\":\"Namnlös\",\"K6L5Mx\":\"Namnlös plats\",\"7yiFvZ\":\"Obetald\",\"X13xGn\":\"Ej betrodd\",\"gyXpQN\":\"Upcoming events\",\"Pp1sWX\":\"Uppdatera 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\":\"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 scanner listening\",\"dyTklH\":\"USB scanner paused\",\"OHJXlK\":\"Använd <0>Liquid-mallar för att anpassa dina mejl\",\"/rsy72\":\"Use event default\",\"0k4cdb\":\"Använd orderuppgifterna för alla deltagare. Deltagarnas namn och e-postadresser matchar köparens uppgifter.\",\"bA31T4\":\"Använd köparens uppgifter för alla deltagare\",\"PpgtnC\":\"Använd den här adressen\",\"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\":\"VAT number\",\"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\":\"VAT registered\",\"Nfbg76\":\"Momsinställningarna sparades\",\"UvYql/\":\"Momsinställningarna sparades. Vi validerar ditt momsregistreringsnummer i bakgrunden.\",\"bXn1Jz\":\"VAT settings updated\",\"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\":\"VAT: not registered\",\"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\":\"View All\",\"yA/6BX\":\"View all →\",\"6CQ7/B\":\"View all capabilities\",\"YSE15b\":\"View all check-in lists\",\"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\":[\"View details for \",[\"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\":\"Waiting for scan…\",\"u0n+wz\":\"Väntelista\",\"3RXFtE\":\"Väntelista aktiverad\",\"TwnTPy\":\"Väntelista-erbjudande har löpt ut\",\"aUi/Dz\":\"Varning: Detta är systemets standardkonfiguration. Ändringar påverkar alla konton som inte har en specifik konfiguration tilldelad.\",\"aT/44s\":\"We couldn't copy that Stripe connection. Please try again.\",\"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.\",\"Fjj/5/\":\"We couldn't load the check-in lists. Please try again.\",\"ADsQ23\":\"We couldn't reach Stripe just now. Please try again in a moment.\",\"HJKdzP\":\"Det uppstod ett problem när sidan skulle laddas. Försök igen.\",\"jegrvW\":\"We partner with Stripe to send payouts straight to your bank account.\",\"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 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.\",\"mfM/HJ\":[\"Vi meddelar dig via e-post om en plats blir tillgänglig för \",[\"productDisplayName\"],\" den \",[\"occurrenceDate\"],\".\"],\"iy+M+c\":[\"Vi meddelar dig via e-post om en plats blir tillgänglig för \",[\"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\":\"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\":[\"We've made changes to the schedule for \\\"\",[\"title\"],\"\\\" — \",[\"description\"],\" affecting \",[\"affectedCount\"],\" session(s).\"],\"Fq/Nx7\":\"Vi har skickat en verifieringskod med 5 siffror till:\",\"GdWB+V\":\"Webhook skapades\",\"2X4ecw\":\"Webhook togs bort\",\"ndBv0v\":\"Webhook integrations\",\"CThMKa\":\"Webhook-loggar\",\"I0adYQ\":\"Webhook-signeringshemlighet\",\"nuh/Wq\":\"Webhook-URL\",\"8BMPMe\":\"Webhooken skickar inga notiser\",\"FSaY52\":\"Webhooken skickar notiser\",\"v1kQyJ\":\"Webhooks\",\"On0aF2\":\"Webbplats\",\"0f7U0k\":\"Wed\",\"VAcXNz\":\"Wednesday\",\"64X6l4\":\"week\",\"4XSc4l\":\"Weekly\",\"IAUiSh\":\"weeks\",\"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\":\"Wellness\",\"ywRaYa\":\"What time?\",\"FaSXqR\":\"Vilken typ av evenemang?\",\"0WyYF4\":\"What unauthenticated staff can see\",\"2+ExvJ\":\"WhatsApp\",\"cxsKvw\":\"När en incheckning tas bort\",\"RPe6bE\":\"When a date is cancelled on a recurring event\",\"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 bli meddelade när platser blir tillgängliga.\",\"OIkHj+\":\"När en produkt blir slutsåld kan kunder gå med i en väntelista för att bli meddelade när platser blir tillgängliga. Kunder går med i väntelistan för ett specifikt datum och erbjudanden görs per datum.\",\"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\":\"När kunder köper biljetter visas deras ordrar här.\",\"pm9tpn\":\"När detta är aktiverat kan köpare kopiera sitt namn och sin e-post till alla deltagare på en gång. Stäng av för att ta bort alternativet \\\"Alla deltagare\\\"; köpare kan fortfarande kopiera till den första deltagaren, resten måste anges individuellt.\",\"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.\",\"uchB0M\":\"Förhandsgranskning av widget\",\"uvIqcj\":\"Workshop\",\"EpknJA\":\"Skriv ditt meddelande här...\",\"nhtR6Y\":\"X (Twitter)\",\"7qI8sJ\":\"year\",\"zkWmBh\":\"Yearly\",\"+BGee5\":\"years\",\"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+\":\"You can override this for individual dates later.\",\"paWwQ0\":\"Du kan fortfarande erbjuda biljetter manuellt vid behov.\",\"jTDzpA\":\"Du kan inte arkivera den sista aktiva arrangören på ditt konto.\",\"D8baxD\":\"Du har betalbiljetter, men Stripe är inte anslutet ännu, så du kan inte ta emot betalningar.\",\"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/\":\"You need to create at least one occurrence before you can add attendees to this recurring event.\",\"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\":\"You'll be able to set up dates, schedules, and recurrence rules in the next step.\",\"zKAheG\":\"You're changing session times\",\"MNFIxz\":[\"Du ska till \",[\"0\"],\"!\"],\"ZlLcht\":[\"Du går med i väntelistan för \",[\"occurrenceDate\"],\".\"],\"qGZz0m\":\"Du är på väntelistan!\",\"/5HL6k\":\"Du har erbjudits en plats!\",\"gbjFFH\":\"You've changed the session time\",\"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\":\"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\":\"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äntelista-erbjudande har löpt ut och vi kunde inte slutföra din beställning. Vänligen gå med i väntelistan igen för att bli meddelad 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\":\"123 Main Street\",\"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\":\"Are you sure you want to make this event public? This will make the event visible to the public\",\"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\":\"Attendee Notes\",\"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\":\"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\":\"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\":\"Check-in\",\"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\":\"Anpassa din evenemangssida\",\"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\":\"Dismiss\",\"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\":\"Event 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\":\"No attendees have been added to this 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\":\"No product associated with this attendee.\",\"Ya1JhR\":\"Inga produkter tillgängliga i denna kategori.\",\"FTfObB\":\"Inga produkter ännu\",\"+Y976X\":\"Inga kampanjkoder att visa\",\"MAavyl\":\"No questions answered by this attendee.\",\"SnlQeq\":\"No questions have been asked for this 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\":\"Online event\",\"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 #\",\"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\":\"Order Notes\",\"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 kontext eller instruktioner för denna fråga. Använd detta fält för att lägga till villkor,\\nriktlinjer eller 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\":\"View\",\"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\":\"(none)\",\"xYxQCZ\":[[\"0\"],\" \",[\"1\"]],\"lAOy2r\":[[\"0\"],\" \",[\"1\"],\" är redan incheckad\"],\"3beCx0\":[[\"0\"],\" <0>checked in\"],\"S4PqS9\":[[\"0\"],\" aktiva webhooks\"],\"6MIiOI\":[[\"0\"],\" kvar\"],\"COnw8D\":[[\"0\"],\" logotyp\"],\"xG9N0H\":[[\"0\"],\" of \",[\"1\"],\" seats are taken.\"],\"B7pZfX\":[[\"0\"],\" arrangörer\"],\"/HkCs4\":[[\"0\"],\" biljetter\"],\"30bTiU\":[[\"activeCount\"],\" enabled\"],\"jTs4am\":[[\"appName\"],\" logo\"],\"gbJOk9\":[[\"attendeeCount\"],\" attendees are registered for this session.\"],\"TjbIUI\":[[\"availableCount\"],\" av \",[\"totalCount\"],\" tillgängliga\"],\"PSChHo\":[[\"capacity\"],\" platser kvar\"],\"lzQ8/M\":[[\"checkedIn\"],\" / \",[\"total\"],\" checked in\"],\"RZ0JX3\":[[\"chipTime\"],\", slutsålt\"],\"M4KnFs\":[[\"chipTime\"],\", Slutsålt, väntelista tillgänglig\"],\"SeyN12\":[[\"completedCount\"],\" of \",[\"totalCount\"],\" steps complete\"],\"f2rhaD\":[[\"diffHr\"],\"h ago\"],\"NRSLBe\":[[\"diffMin\"],\"m ago\"],\"iYfwJE\":[[\"diffSec\"],\"s ago\"],\"OJnhhX\":[[\"eventCount\"],\" evenemang\"],\"mhZbzw\":[[\"loadedAffectedAttendees\"],\" attendees are registered across the affected sessions.\"],\"RBuxIl\":[[\"productCount\"],\" ticket types configured\"],\"VFLd0I\":[[\"slotCount\"],\" times available\"],\"3IEF7U\":[[\"totalCount\"],\" biljettkategorier\"],\"0cLzoF\":[[\"totalOccurrences\"],\" dates\"],\"AEGc4t\":[[\"totalOccurrences\"],\" sessions across \",[\"0\"],\" dates (\",[\"1\",\"plural\",{\"one\":[\"#\",\" session\"],\"other\":[\"#\",\" sessions\"]}],\" per day)\"],\"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.\",\"Il5Uid\":\"<0>Detta är det totala tillgängliga antalet för alla datum i ditt schema sammanlagt — inte en gräns per datum. För att begränsa antalet deltagare per datum, ange en kapacitet på <1>sidan Datumschema.\",\"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 attendee is registered across the affected sessions.\",\"qOyE2U\":\"1 attendee is registered for this session.\",\"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\",\"y2Jh0m\":\"1 time available\",\"cGtUz6\":\"1 vecka före evenemanget\",\"HR/cvw\":\"Exempelgatan 123\",\"dgKxZ5\":\"135+ currencies & 40+ payment methods\",\"kMU5aM\":\"Ett avbokningsmeddelande har skickats till\",\"o++0qa\":\"a change in duration\",\"WuWSX5\":\"A few quick steps and you're ready to start selling.\",\"RQ5kDd\":\"Ett meddelande som visas när det inte finns några produkter i denna kategori.\",\"V53XzQ\":\"En ny verifieringskod har skickats till din e-post\",\"sr2Je0\":\"a shift in start/end times\",\"/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\":[\"Account · \",[\"0\"],\" · \",[\"1\"]],\"vOuxvL\":\"Kontoinformation\",\"EHNORh\":\"Konto hittades inte\",\"bPwFdf\":\"Konton\",\"AhwTa1\":\"Åtgärd krävs: Momsinformation krävs\",\"APyAR/\":\"Aktiva evenemang\",\"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\":\"Lägg till fråga\",\"Z/dcxc\":\"Add Date\",\"QeupRg\":\"Lägg till datum\",\"Q219NT\":\"Add Dates\",\"yjB5VC\":\"Add dates and times for your recurring event\",\"Z8idyM\":\"Add details\",\"wpirGs\":\"Add event details\",\"VX6WUv\":\"Lägg till plats\",\"GCQlV2\":\"Add multiple times if you run several sessions per day.\",\"7JF9w9\":\"Lägg till fråga\",\"NLbIb6\":\"Add this attendee anyway (override capacity)\",\"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 hemsida. En banner för cookiesamtycke 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\":\"Affiliate program\",\"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.\",\"3e31kI\":\"After your event is created, you can choose how often it repeats from the dashboard.\",\"z7GAMJ\":\"all\",\"N40H+G\":\"All\",\"7rLTkE\":\"Alla arkiverade evenemang\",\"gKq1fa\":\"Alla deltagare\",\"63gRoO\":\"All attendees of the selected sessions\",\"uWxIoH\":\"All attendees of this occurrence\",\"pMLul+\":\"Alla valutor\",\"sgUdRZ\":\"All dates\",\"e4q4uO\":\"All Dates\",\"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\":\"All matching dates\",\"F1/VgK\":\"All occurrences\",\"OpWjMq\":\"All Occurrences\",\"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.\",\"VZdky1\":\"Tillåt köpare att kopiera sina uppgifter till alla deltagare\",\"F3mW5G\":\"Tillåt kunder att gå med i en väntelista när denna produkt är slutsåld\",\"4CMO/q\":\"Tillåt kunder att gå med i en väntelista när denna produkt är slutsåld. Kunder går med i väntelistan för ett specifikt datum.\",\"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\":\"Already in\",\"/H326L\":\"Redan återbetald\",\"USEpOK\":\"Already use Stripe on another organizer? Reuse that connection.\",\"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.\",\"OPFdAM\":\"En valfri beskrivning av denna kategori som visas på evenemangssidan.\",\"eusccx\":\"Ett valfritt meddelande att visa på den markerade produkten, t.ex. \\\"Säljer snabbt 🔥\\\" eller \\\"Bästa värdet\\\"\",\"5GJuNp\":[\"and \",[\"0\"],\" more...\"],\"QNrkms\":\"Svaret uppdaterades\",\"+qygei\":\"Answers\",\"GK7Lnt\":\"Answers provided at checkout (e.g. meal choice)\",\"lE8PgT\":\"Any dates you've manually customized will be kept.\",\"jVoYha\":[\"tillämpad — \",[\"0\"],\" rabatt på din order\"],\"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\":\"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\":[\"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\":\"Ä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/\":\"Are you sure you want to delete this date? This action cannot be undone.\",\"RiF/yT\":\"Are you sure you want to delete this image?\",\"b3+Qku\":\"Are you sure you want to delete this tax or fee? It will no longer be applied to new orders.\",\"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\":\"Are you sure you want to permanently delete this date? This cannot be undone.\",\"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?\",\"b7tkGp\":\"Are you sure you want to revoke this invitation?\",\"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\":\"Assign plan\",\"xdiER7\":\"Tilldelad nivå\",\"F2rX0R\":\"Minst en evenemangstyp måste väljas\",\"Z44eZS\":\"At least one product must stay available for this date. To make the date inaccessible, cancel it from the schedule instead.\",\"BCmibk\":\"Försök\",\"6PecK3\":\"Närvaro och incheckningsfrekvens för alla evenemang\",\"K2tp3v\":\"attendee\",\"AJ4rvK\":\"Deltagare avbokad\",\"qvylEK\":\"Deltagare skapad\",\"Aspq3b\":\"Insamling av deltagaruppgifter\",\"fpb0rX\":\"Deltagaruppgifter kopierade från order\",\"94aQMU\":\"Deltagarinformation\",\"KkrBiR\":\"Insamling av deltagarinformation\",\"sjPjOg\":\"Attendee notes\",\"cosfD8\":\"Deltagarstatus\",\"D2qlBU\":\"Deltagare uppdaterad\",\"22BOve\":\"Deltagare uppdaterades framgångsrikt\",\"x8Vnvf\":\"Deltagarens biljett ingår inte i denna lista\",\"/Ywywr\":\"attendees\",\"zLRobu\":\"attendees checked in\",\"k3Tngl\":\"Deltagare exporterade\",\"UoIRW8\":\"Deltagare registrerade\",\"5UbY+B\":\"Deltagare med en specifik biljett\",\"4HVzhV\":\"Deltagare:\",\"HVkhy2\":\"Attributionsanalys\",\"dMMjeD\":\"Attributionsuppdelning\",\"1oPDuj\":\"Attributionsvärde\",\"DBHTm/\":\"August\",\"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 bearbeta väntelistan från Väntelista-sidan.\",\"csDS2L\":\"Tillgängligt\",\"Xp+ywP\":\"Tillgänglig när betalningen har slutförts\",\"dwDH1K\":[\"Available times on \",[\"dayName\"]],\"clF06r\":\"Tillgängligt för återbetalning\",\"NB5+UG\":\"Tillgängliga tokens\",\"L+wGOG\":\"Awaiting\",\"qcw2OD\":\"Awaiting pay\",\"kNmmvE\":\"Awesome Events Ltd.\",\"TeSaQO\":\"Tillbaka till konton\",\"kYqM1A\":\"Tillbaka till evenemanget\",\"s5QRF3\":\"Tillbaka till meddelanden\",\"td/bh+\":\"Tillbaka till rapporter\",\"nsm7BA\":\"Tillbaka till sökning\",\"imjKVx\":\"Bank account connected\",\"D9LTCH\":\"Base Price\",\"hviJef\":\"Based on the global sale period above, not per date\",\"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\":\"Built-in fraud protection\",\"cr7kGH\":\"Bulk Edit\",\"1Fbd6n\":\"Bulk Edit Dates\",\"Eq6Tu9\":\"Bulk update failed.\",\"9N+p+g\":\"Företag\",\"SWnN1L\":\"Business address\",\"kQekXw\":\"Business name\",\"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 personuppgiftsansvariga för de insamlade uppgifterna. Du ansvarar för att säkerställa att du har en laglig 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\":\"By day of month\",\"0MnNgi\":\"By day of week\",\"CetOZE\":\"By ticket type\",\"lFdbRS\":\"Kringgå applikationsavgifter\",\"AjVXBS\":\"Calendar\",\"2VLZwd\":\"Uppmaningsknapp\",\"rT2cV+\":\"Camera\",\"7hYa9y\":\"Camera permission was denied. <0>Request permission again, or grant this page camera access in your browser settings.\",\"D02dD9\":\"Kampanj\",\"RRPA79\":\"Can't check in\",\"OcVwAd\":[\"Cancel \",[\"count\"],\" date(s)\"],\"H4nE+E\":\"Avbryt alla produkter och släpp tillbaka dem till poolen\",\"Py78q9\":\"Cancel Date\",\"tOXAdc\":\"Avbrytande kommer att avbryta alla deltagare som är kopplade till denna order och släppa tillbaka biljetterna till den tillgängliga poolen.\",\"FPpqc7\":[\"Cancelling \",[\"0\"],\" date(s). This may take a moment to complete.\"],\"01sEfm\":\"Det går inte att ta bort systemets standardkonfiguration\",\"VsM1HH\":\"Kapacitetstilldelningar\",\"9bIMVF\":\"Capacity management\",\"H7K8og\":\"Capacity must be 0 or greater\",\"nzao08\":\"capacity updates\",\"4cp9NP\":\"Capacity Used\",\"K7tIrx\":\"Kategori\",\"DRK3Bq\":\"Category deleted successfully\",\"o+XJ9D\":\"Ändra\",\"kJkjoB\":\"Change duration\",\"J0KExZ\":\"Change the attendee limit\",\"ssospy\":\"Change time\",\"CIHJJf\":\"Ändra väntlistinställningar\",\"B5icLR\":[\"Changed duration for \",[\"count\"],\" date(s)\"],\"Kb+0BT\":\"Charges\",\"2tbLdK\":\"Välgörenhet\",\"BPWGKn\":\"Check in\",\"6uFFoY\":\"Check out\",\"FjAlwK\":[\"Check out this event: \",[\"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\":\"Check-In\",\"udRwQs\":\"Incheckning skapad\",\"F4SRy3\":\"Incheckning borttagen\",\"as6XfO\":[\"Check-in for \",[\"0\"],\" was undone\"],\"9s/wrQ\":\"Check-in history\",\"Wwztk4\":\"Check-In List\",\"9gPPUY\":\"Incheckningslista skapad\",\"dwjiJt\":\"Check-in list info\",\"7od0PV\":\"check-in lists\",\"f2vU9t\":\"Incheckningslistor\",\"XprdTn\":\"Check-in navigation\",\"5tV1in\":\"Check-in progress\",\"SHJwyq\":\"Incheckningsgrad\",\"qCqdg6\":\"Incheckningsstatus\",\"cKj6OE\":\"Incheckningssammanfattning\",\"7B5M35\":\"Incheckningar\",\"VrmydS\":\"Checked in\",\"DM4gBB\":\"Kinesiska (traditionell)\",\"p8Jvp4\":\"Choose a configuration\",\"ElShBO\":\"Choose a different action\",\"pHEhf+\":\"Välj ett teckensnitt som passar ditt varumärke. Teckensnitten lagras via Bunny Fonts.\",\"Zok1Gx\":\"Choose an organizer\",\"pkk46Q\":\"Välj en organisatör\",\"Ag32+c\":\"Choose another date\",\"Crr3pG\":\"Välj kalender\",\"Z38ZJu\":\"Välj hur evenemangsdatumet visas på biljetten\",\"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\":\"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\":\"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\":\"complete\",\"bUQMpb\":\"Complete Stripe setup\",\"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\":\"Configuration assigned\",\"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\":\"Configure which products are available for this occurrence and optionally adjust pricing.\",\"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\",\"/K4Vqr\":\"Anslut Stripe för att ta emot betalningar\",\"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\":\"Anslutningsuppgifter krävs för onlineevenemang\",\"jfC/xh\":\"Kontakt\",\"LOFgda\":[\"Kontakta \",[\"0\"]],\"41BQ3k\":\"Kontakt-e-post\",\"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\",\"s30OcA\":\"Styr hur datum och tider visas på evenemangssidan\",\"p2FRHj\":\"Kontrollera hur plattformsavgifter hanteras för detta evenemang\",\"NqfabH\":\"Control who gets in for this date\",\"fmYxZx\":\"Control who gets in, and when\",\"1JnTgU\":\"Kopierad från ovan\",\"FxVG/l\":\"Kopierad till urklipp\",\"PiH3UR\":\"Kopierad!\",\"4i7smN\":\"Copy account 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 platsen\",\"vkiDx2\":\"Could not prepare the bulk update.\",\"KOavaU\":\"Kunde inte hämta adressuppgifter\",\"/lq4oO\":\"Could not save date\",\"mHu0az\":\"Couldn't send verification email. Please try again.\",\"QOIm+S\":\"Antalen inkluderar alla kommande datum. Varje person erbjuds en plats för det datum de anmälde sig till.\",\"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\":\"Covers every ticket\",\"zg4oSu\":[\"Skapa mall för \",[\"0\"]],\"RKKhnW\":\"Skapa en anpassad widget för att sälja biljetter på din webbplats.\",\"6sk7PP\":\"Create a fixed number\",\"jqhTmw\":\"Create a list for this date\",\"PhioFp\":\"Create a new check-in list for an active session, or contact the organizer if you think this is a mistake.\",\"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\":\"Create Date\",\"Nc3l/D\":\"Skapa rabatter, åtkomstkoder för dolda biljetter och specialerbjudanden.\",\"PybJS2\":\"Create event\",\"eWEV9G\":\"Skapa nytt lösenord\",\"wl2iai\":\"Create Schedule\",\"8AiKIu\":\"Skapa biljett eller produkt\",\"/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\":\"Skapa ditt första evenemang för att börja sälja biljetter och hantera deltagare.\",\"ZCSSd+\":\"Skapa ditt eget evenemang\",\"qdv10s\":[\"Skapar \",[\"0\"],\" datum. Det kan ta en stund.\"],\"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\":\"Currently assigned\",\"iTvh6I\":\"För närvarande tillgänglig för köp\",\"A42Dqn\":\"Custom branding\",\"Guo0lU\":\"Anpassat datum och tid\",\"WDMdn8\":\"Custom questions\",\"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\",\"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\":\"Daily\",\"/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\":\"Dance\",\"pvnfJD\":\"Mörk\",\"MaB9wW\":\"Date Cancellation\",\"e6cAxJ\":\"Date cancelled\",\"81jBnC\":\"Date cancelled successfully\",\"a/C/6R\":\"Date created successfully\",\"IW7Q+u\":\"Date deleted\",\"rngCAz\":\"Date deleted successfully\",\"vHbfoQ\":\"Date reactivated\",\"hvah+S\":\"Date reopened for new sales\",\"Ez0YsD\":\"Date updated successfully\",\"Te33mU\":\"Dates are managed per occurrence\",\"91zCxb\":\"Dates with sessions\",\"/ITcnz\":\"day\",\"H7OUPr\":\"Day\",\"JtHrX9\":\"Day of Month\",\"J/Upwb\":\"days\",\"vDVA2I\":\"Days of Month\",\"rDLvlL\":\"Days of Week\",\"r6zgGo\":\"December\",\"jbq7j2\":\"Avvisa\",\"ovBPCi\":\"Standard\",\"JtI4vj\":\"Standardinsamling av deltagarinformation\",\"ULjv90\":\"Default capacity per date\",\"3R/Tu2\":\"Standard avgiftshantering\",\"1bZAZA\":\"Standardmall kommer att användas\",\"HNlEFZ\":\"ta bort\",\"KpnwJK\":[\"Ta bort \\\"\",[\"0\"],\"\\\"?\"],\"BlII4o\":[\"Delete \",[\"count\"],\" selected date(s)? Dates with orders will be skipped. This cannot be undone.\"],\"vu7gDm\":\"Ta bort partner\",\"KZN4Lc\":\"Ta bort alla\",\"6EkaOO\":\"Delete Date\",\"io0G93\":\"Ta bort evenemang\",\"+jw/c1\":\"Ta bort bild\",\"hdyeZ0\":\"Ta bort jobb\",\"xxjZeP\":\"Ta bort plats\",\"sY3tIw\":\"Ta bort arrangör\",\"UBv8UK\":\"Delete Permanently\",\"dPyJ15\":\"Ta bort mall\",\"IQTR34\":\"Delete this category? Any products in it will also be deleted. This cannot be undone.\",\"/1wMxk\":\"Delete this product? This cannot be undone.\",\"mxsm1o\":\"Ta bort denna fråga? Detta kan inte ångras.\",\"snMaH4\":\"Ta bort webhook\",\"LIZZLY\":[\"Deleted \",[\"0\"],\" date(s)\"],\"7w0Wev\":\"Description and venue added\",\"vYgeDk\":\"Avmarkera alla\",\"NvuEhl\":\"Designelement\",\"H8kMHT\":\"Fick du inte koden?\",\"G8KNgd\":\"Different location\",\"E/QGRL\":\"Disabled\",\"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.\",\"HtaSQp\":\"Visar hur många platser som är kvar för varje datum i biljettwidgeten. Du kan åsidosätta detta för enskilda datum.\",\"pfa8F0\":\"Visningsnamn\",\"Kdpf90\":\"Glöm inte!\",\"352VU2\":\"Har du inget konto? <0>Registrera dig\",\"AXXqG+\":\"Donation\",\"DPfwMq\":\"Klar\",\"JoPiZ2\":\"Door staff instructions\",\"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 ansvariga.\",\"euc6Ns\":\"Duplicera\",\"YueC+F\":\"Duplicate Date\",\"KRmTkx\":\"Duplicera produkt\",\"Jd3ymG\":\"Duration must be at least 1 minute.\",\"KIjvtr\":\"Nederländska\",\"22xieU\":\"t.ex. 180 (3 timmar)\",\"/zajIE\":\"e.g. Morning Session\",\"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.\",\"Xfsjel\":\"Varje produkt\",\"5oD9f/\":\"Earlier\",\"LTzmgK\":[\"Redigera \",[\"0\"],\"-mall\"],\"v4+lcZ\":\"Redigera partner\",\"2iZEz7\":\"Redigera svar\",\"t2bbp8\":\"Redigera deltagare\",\"etaWtB\":\"Redigera deltagardetaljer\",\"+guao5\":\"Redigera konfiguration\",\"1Mp/A4\":\"Edit Date\",\"m0ZqOT\":\"Redigera plats\",\"8oivFT\":\"Redigera plats\",\"vRWOrM\":\"Redigera orderdetaljer\",\"fW5sSv\":\"Redigera webhook\",\"nP7CdQ\":\"Redigera webhook\",\"MRZxAn\":\"Edited\",\"uBAxNB\":\"Redigerare\",\"aqxYLv\":\"Utbildning\",\"iiWXDL\":\"Behörighetsfel\",\"zPiC+q\":\"Giltiga incheckningslistor\",\"SiVstt\":\"Email & scheduled messages\",\"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\":\"Embeddable 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\":\"End\",\"sGjBEq\":\"Slutdatum och tid (valfritt)\",\"PKXt9R\":\"Slutdatum måste vara efter startdatum\",\"ZayGC7\":\"End on a date\",\"48Y16Q\":\"Sluttid (valfritt)\",\"TbaYrr\":[\"Ended \",[\"0\"]],\"CFgwiw\":[\"Ends \",[\"0\"]],\"SqOIQU\":\"Enter a capacity value or choose unlimited.\",\"h37gRz\":\"Enter a label or choose to remove it.\",\"7YZofi\":\"Ange ämne och innehåll för att se förhandsgranskningen\",\"khyScF\":\"Enter a time to shift by.\",\"SKx/0u\":\"Ange ett platsnamn eller en adress\",\"ppwojw\":\"Ange ett platsnamn eller en adress för fysiska evenemang\",\"j+eCIq\":\"Ange adressen manuellt\",\"3bR1r4\":\"Ange partnerns e-post (valfritt)\",\"ARkzso\":\"Ange partnernamn\",\"ej4L8b\":\"Enter capacity\",\"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)\",\"RRlWVA\":\"Hela ordern\",\"o21Y+P\":\"entries\",\"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\",\"+v+GW0\":\"Visning av evenemangsdatum\",\"7u9/DO\":\"Evenemanget har tagits bort\",\"imgKgl\":\"Evenemangsbeskrivning\",\"IzR/Fc\":\"Event lifetime\",\"PYs3rP\":\"Evenemangsnamn\",\"HhwcTQ\":\"Evenemangsnamn\",\"WZZzB6\":\"Evenemangsnamn krävs\",\"Wd5CDM\":\"Evenemangsnamnet måste vara kortare än 150 tecken\",\"4JzCvP\":\"Evenemanget är inte tillgängligt\",\"mImacG\":\"Evenemangssida\",\"Hk9Ki/\":\"Evenemanget har återställts\",\"JyD0LH\":\"Evenemangsinställningar\",\"XVLu2v\":\"Evenemangstitel\",\"OfmsI9\":\"Evenemang för nytt\",\"4SILkp\":\"Event totals\",\"YDVUVl\":\"Evenemangstyper\",\"+HeiVx\":\"Evenemang uppdaterat\",\"19j6uh\":\"Evenemangens resultat\",\"PC3/fk\":\"Evenemang som startar inom 24 timmar\",\"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\":\"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\":\"Misslyckades med att tilldela konfiguration\",\"PO0cfn\":\"Failed to cancel date\",\"YUX+f+\":\"Failed to cancel dates\",\"SIHgVQ\":\"Det gick inte att avbryta meddelandet\",\"cEFg3R\":\"Misslyckades med att skapa partner\",\"dVgNF1\":\"Misslyckades med att skapa konfiguration\",\"fAoRRJ\":\"Failed to create schedule\",\"4yLYTb\":\"Det gick inte att skapa schemat. Försök igen.\",\"U66oUa\":\"Misslyckades med att skapa mall\",\"aFk48v\":\"Misslyckades med att ta bort konfiguration\",\"n1CYMH\":\"Failed to delete date\",\"KXv+Qn\":\"Failed to delete date. It may have existing orders.\",\"JJ0uRo\":\"Failed to delete dates\",\"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\",\"5E23qd\":\"Failed to delete product. Please try again.\",\"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\":\"Failed to reactivate date\",\"7zyx8a\":\"Misslyckades med att ta bort från väntelistan\",\"A/P7PX\":\"Failed to remove override\",\"ogWc1z\":\"Failed to reopen date\",\"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\":\"Failed to save override\",\"sj/eZA\":\"Failed to save price override\",\"780n8A\":\"Failed to save product settings\",\"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\":\"Misslyckades med 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\":\"Family\",\"5LO38w\":\"Fast payouts to your bank\",\"4lgLew\":\"February\",\"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\":\"Filter attendees\",\"8OvVZZ\":\"Filtrera deltagare\",\"N/H3++\":\"Filter by date\",\"mvrlBO\":\"Filtrera efter evenemang\",\"g+xRXP\":\"Finish setting up Stripe\",\"LHH461\":\"Finish setup\",\"syyeb9\":\"First\",\"Vj6wk9\":\"First 30 days\",\"/bpZYb\":\"First 7 days\",\"ziEnjY\":\"First 90 days\",\"1vBhpG\":\"Första deltagare\",\"4pwejF\":\"Förnamn är obligatoriskt\",\"rVogsf\":\"Åtgärda problemen för att publicera\",\"3lkYdQ\":\"Fixed fee\",\"6bBh3/\":\"Fast avgift\",\"zWqUyJ\":\"Fast avgift per transaktion\",\"LWL3Bs\":\"Fast avgift måste vara 0 eller högre\",\"0RI8m4\":\"Flash off\",\"q0923e\":\"Flash on\",\"X+U6/w\":\"Teckensnitt\",\"lWxAUo\":\"Mat och dryck\",\"nFm+5u\":\"Sidfotstext\",\"a8nooQ\":\"Fourth\",\"wtuVU4\":\"Frequency\",\"xVhQZV\":\"Fri\",\"39y5bn\":\"Friday\",\"f5UbZ0\":\"Full data ownership\",\"cfvx/y\":\"Full event\",\"MY2SVM\":\"Full återbetalning\",\"PGQLdy\":\"future\",\"8N/j1s\":\"Future dates only\",\"yRx/6K\":\"Future dates will be copied with capacity reset to zero\",\"T02gNN\":\"Allmän entré\",\"3ep0Gx\":\"Allmän information om din arrangör\",\"ziAjHi\":\"Generera\",\"exy8uo\":\"Generera kod\",\"4CETZY\":\"Få vägbeskrivning\",\"pjkEcB\":\"Get Paid\",\"lGYzP6\":\"Get paid with Stripe\",\"ZDIydz\":\"Sätt igång\",\"u6FPxT\":\"Köp biljetter\",\"8KDgYV\":\"Gör ditt evenemang redo\",\"RkXlPZ\":\"GitHub\",\"sr0UJD\":\"Go Back\",\"oNL5vN\":\"Gå till evenemangssidan\",\"gHSuV/\":\"Gå till startsidan\",\"8+Cj55\":\"Go to Schedule\",\"6nDzTl\":\"God läsbarhet\",\"76gPWk\":\"Got it\",\"CZXzs4\":\"Grekiska\",\"aGWZUr\":\"Bruttointäkter\",\"n8IUs7\":\"Bruttointäkter\",\"O1wAlQ\":\"Guest\",\"LIYoRQ\":\"Gästhantering\",\"NUsTc4\":\"Happening now\",\"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\":\"Hi,\",\"/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\":\"Hide details\",\"FmogyU\":\"Dölj alternativ\",\"uXNYjR\":\"Dölj slutsålda datum och tider\",\"g9RcYX\":\"Dölj datumet\",\"uMwTx7\":\"Dölj denna kategori?\",\"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\":\"Hobbies\",\"yY8wAv\":\"Hours\",\"49Tkiw\":\"Hur tillämpas rabatten?\",\"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\":\"How long does the schedule run?\",\"DMr2XN\":\"How often?\",\"cceMns\":\"How VAT is applied to the platform fees we charge you.\",\"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\",\"CY3yHL\":\"Om markerad kommer denna kategori att döljas för allmänheten.\",\"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\":[\"in last \",[\"0\"],\" min\"],\"u7r0G5\":\"In person — set a venue\",\"/LCAwL\":\"Pågår\",\"F1Xp97\":\"Enskilda deltagare\",\"85e6zs\":\"Infoga Liquid-token\",\"CTWsuc\":\"Instagram\",\"VopR6B\":\"Instant Stripe payouts\",\"nbfdhU\":\"Integrationer\",\"I8eJ6/\":\"Internal notes on the attendee's ticket\",\"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\",\"Dn4OyV\":\"Inbjuden\",\"IuMGvq\":\"Faktura\",\"a/bUcL\":\"It happens on more than one date\",\"d+Oe9r\":\"It may have been unpublished or removed. Please check the link and try again.\",\"Lj7sBL\":\"Italienska\",\"F5/CBH\":\"artikel(er)\",\"BzfzPK\":\"Artiklar\",\"rjyWPb\":\"January\",\"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\":\"July\",\"zeEQd/\":\"June\",\"MxjCqk\":\"Letar du bara efter dina biljetter?\",\"xOTzt5\":\"just now\",\"0RihU9\":\"Just wrapped\",\"lB2hSG\":[\"Håll mig uppdaterad om nyheter och evenemang från \",[\"0\"]],\"ioFA9i\":\"Keep the profit.\",\"o66QSP\":\"label updates\",\"RtKKbA\":\"Last\",\"DruLRc\":\"Senaste 14 dagarna\",\"ve9JTU\":\"Efternamn är obligatoriskt\",\"h0Q9Iw\":\"Senaste svar\",\"gw3Ur5\":\"Senast utlöst\",\"FIq1Ba\":\"Later\",\"xvnLMP\":\"Latest check-ins\",\"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\":\"Ljus\",\"1qY5Ue\":\"Länken har gått ut eller är ogiltig\",\"gggTBm\":\"LinkedIn\",\"nvOPBA\":\"Länkar tillåtna\",\"2BBAbc\":\"List\",\"dF6vP6\":\"Live\",\"fpMs2Z\":\"LIVE\",\"D9zTjx\":\"Liveevenemang\",\"C33p4q\":\"Loaded dates\",\"WdmJIX\":\"Laddar förhandsvisning...\",\"IoDI2o\":\"Laddar tokens...\",\"G3Ge9Z\":\"Laddar webhook-loggar...\",\"NFxlHW\":\"Laddar webhooks\",\"E0DoRM\":\"Platsen har tagits bort\",\"7w8lJU\":\"Platsen har sparats\",\"YsRXDD\":\"Platsen har uppdaterats\",\"A/kIva\":\"location updates\",\"iyZPPR\":\"platser\",\"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\",\"PSRm6/\":\"Hitta mina biljetter\",\"yJFu/X\":\"Huvudkontor\",\"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\":\"Hantera ditt evenemangs väntelista, visa statistik och erbjud biljetter till deltagare.\",\"g2npA5\":\"Manuellt erbjudande\",\"hg6l4j\":\"March\",\"pqRBOz\":\"Mark as validated (admin override)\",\"2L3vle\":\"Max meddelanden / 24h\",\"Qp4HWD\":\"Max mottagare / meddelande\",\"3JzsDb\":\"May\",\"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\":\"Minutes\",\"zz/Wd/\":\"Mode\",\"fpMgHS\":\"Mon\",\"hty0d5\":\"Monday\",\"JbIgPz\":\"Monetära värden är ungefärliga totaler över alla valutor\",\"qvF+MT\":\"Övervaka och hantera misslyckade bakgrundsjobb\",\"kY2ll9\":\"month\",\"HajiZl\":\"Månad\",\"+8Nek/\":\"Monthly\",\"1LkxnU\":\"Monthly Pattern\",\"6jefe3\":\"months\",\"f8jrkd\":\"more\",\"JcD7qf\":\"More actions\",\"w36OkR\":\"Mest visade evenemang (Senaste 14 dagarna)\",\"+Y/na7\":\"Move all dates earlier or later\",\"3DIpY0\":\"Multiple locations\",\"g9cQCP\":\"Multiple ticket types\",\"GfaxEk\":\"Musik\",\"oVGCGh\":\"Mina biljetter\",\"8/brI5\":\"Namn krävs\",\"sFFArG\":\"Namnet måste vara kortare än 255 tecken\",\"xxU3NX\":\"Nettointäkter\",\"7I8LlL\":\"New capacity\",\"n1GRql\":\"New label\",\"y0Fcpd\":\"Ny plats\",\"ArHT/C\":\"Nya registreringar\",\"uK7xWf\":\"New time:\",\"veT5Br\":\"Next occurrence\",\"WXtl5X\":[\"Next: \",[\"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\":\"No attendees to show\",\"PKySlW\":\"No attendees yet for this date.\",\"/UC6qk\":\"Ingen attributionsdata hittades\",\"E2vYsO\":\"No capabilities reported by Stripe yet.\",\"amMkpL\":\"Ingen kapacitet\",\"d2Jf1f\":\"No change\",\"99ntUF\":\"Inga incheckningslistor tillgängliga för detta evenemang.\",\"wG+knX\":\"No check-ins yet\",\"+dAKxg\":\"Inga konfigurationer hittades\",\"LiLk8u\":\"No connections available\",\"eb47T5\":\"Ingen data hittades för de valda filtren. Prova att justera datumintervall eller valuta.\",\"Zc216S\":\"No date added\",\"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\",\"OtJSnL\":\"Inga datum schemalagda\",\"gEdNe8\":\"No dates scheduled yet\",\"pZNOT9\":\"Inget slutdatum\",\"dW40Uz\":\"Inga evenemang hittades\",\"8pQ3NJ\":\"Inga evenemang startar inom de närmaste 24 timmarna\",\"8zCZQf\":\"Inga evenemang ännu\",\"Yc5YW6\":\"Inga misslyckade jobb\",\"EpvBAp\":\"Ingen faktura\",\"XZkeaI\":\"Inga loggar hittades\",\"IcAC6J\":\"Inga matchande teckensnitt\",\"nrSs2u\":\"Inga meddelanden hittades\",\"Rj99yx\":\"No occurrences available\",\"IFU1IG\":\"No occurrences on this date\",\"OVFwlg\":\"Inga orderfrågor ännu\",\"EJ7bVz\":\"Inga ordrar hittades\",\"NEmyqy\":\"Inga ordrar ännu\",\"a77B6w\":\"No orders yet for this date.\",\"wUv5xQ\":\"Ingen arrangörsaktivitet de senaste 14 dagarna\",\"vLd1tV\":\"No organizer context available.\",\"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\":\"No products configured for this event.\",\"kY7XDn\":\"Inga produkter har väntelisteposter\",\"8mw4tm\":\"Meddelande vid inga produkter\",\"wYiAtV\":\"Inga nya kontoregistreringar\",\"UW90md\":\"Inga mottagare hittades\",\"QoAi8D\":\"Inget svar\",\"JeO7SI\":\"Inget svar\",\"EK/G11\":\"Inga svar ännu\",\"59OWd3\":\"Inga sparade platser\",\"mPdY6W\":\"Inga förslag\",\"3sRuiW\":\"Inga biljetter hittades\",\"debCrL\":\"Inga biljetter att sälja\",\"k2C0ZR\":\"No upcoming dates\",\"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\":\"non-edited\",\"Itw24Q\":\"Not checked in\",\"x5+Lcz\":\"Inte incheckad\",\"8n10sz\":\"Inte behörig\",\"kLvU3F\":\"Notify attendees and stop sales\",\"t9QlBd\":\"November\",\"kAREMN\":\"Number of dates to create\",\"6u1B3O\":\"Occurrence\",\"mmoE62\":\"Occurrence Cancelled\",\"V9flmL\":\"Occurrence Schedule\",\"Kh3WO8\":\"Occurrence Summary\",\"byXCTu\":\"Occurrences\",\"KATw3p\":\"Occurrences (future only)\",\"85rTR2\":\"Occurrences can be configured after creation\",\"dzQfDY\":\"October\",\"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.\"],\"6Aih4U\":\"Offline\",\"nO3VbP\":[\"Till salu \",[\"0\"]],\"oXOSPE\":\"Online\",\"aqmy5k\":\"Online — provide connection details\",\"LuZBbx\":\"Online & in-person\",\"IXuOqt\":\"Online & in-person — see schedule\",\"WjSpu5\":\"Onlineevenemang\",\"scPxI/\":[\"Endast \",[\"capacity\"],\" kvar\"],\"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\",\"wkpaqp\":\"Visa endast startdatum och -tid\",\"DMk8F0\":\"Only tickets count toward capacity\",\"M2w1ni\":\"Endast synlig med kampanjkod\",\"y8Bm7C\":\"Open check-in\",\"RLz7P+\":\"Open occurrence\",\"cDSdPb\":\"Valfritt smeknamn som visas i väljare, t.ex. \\\"HK:s konferensrum\\\"\",\"HXMJxH\":\"Valfri text för friskrivningar, kontaktuppgifter eller tackmeddelanden, endast en rad\",\"L565X2\":\"alternativ\",\"8m9emP\":\"or add a single date\",\"eBskDE\":\"Eller aktivera offlinebetalningar och inaktivera Stripe\",\"dSeVIm\":\"order\",\"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\",\"xtQzag\":\"Order details\",\"vrSW9M\":\"Ordern har avbrutits och återbetalats. Orderägaren har informerats.\",\"rzw+wS\":\"Beställningsinnehavare\",\"oI/hGR\":\"Order-ID\",\"RQCXz6\":\"Ordergränser\",\"SO9AEF\":\"Ordergräns satt\",\"vu6Arl\":\"Order markerad som betald\",\"sLbJQz\":\"Order hittades inte\",\"kvYpYu\":\"Order hittades inte\",\"eJ8SvM\":\"Order number, purchase date, purchaser email\",\"FaPYw+\":\"Orderägare\",\"eB5vce\":\"Orderägare med en specifik produkt\",\"CxLoxM\":\"Orderägare med produkter\",\"UkHo4c\":\"Beställningsreferens\",\"EZy55F\":\"Order återbetalad\",\"6eSHqs\":\"Orderstatusar\",\"oW5877\":\"Ordersumma\",\"e7eZuA\":\"Order uppdaterad\",\"1SQRYo\":\"Order uppdaterades\",\"3NT0Ck\":\"Ordern avbröts\",\"V5khLm\":\"orders\",\"sd5IMt\":\"Slutförda beställningar\",\"5It1cQ\":\"Ordrar exporterade\",\"UQ0ACV\":\"Totalt antal beställningar\",\"B/EBQv\":\"Ordrar:\",\"qtGTNu\":\"Naturliga konton\",\"P/JHA4\":\"Arrangören har arkiverats\",\"S3CZ5M\":\"Arrangörens instrumentpanel\",\"GzjTd0\":\"Arrangören har tagits bort\",\"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\":\"Organizers\",\"/IX/7x\":\"Övrigt\",\"RsiDDQ\":\"Andra listor (biljett ingår inte)\",\"aDfajK\":\"Outdoors\",\"qMASRF\":\"Utgående meddelanden\",\"iCOVQO\":\"Override\",\"GpFTEc\":\"Override fees on this organizer\",\"M9ZhMP\":\"Override price\",\"cnVIpl\":\"Override removed\",\"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\":\"Past due\",\"xTPjSy\":\"Tidigare evenemang\",\"/l/ckQ\":\"Klistra in URL\",\"URAE3q\":\"Pausad\",\"4fL/V7\":\"Betala\",\"c2/9VE\":\"Payload\",\"5cxUwd\":\"Betalningsdatum\",\"ENEPLY\":\"Betalningsmetod\",\"8Lx2X7\":\"Betalning mottagen\",\"fx8BTd\":\"Betalningar är inte tillgängliga\",\"C+ylwF\":\"Payouts\",\"UbRKMZ\":\"Pending\",\"UkM20g\":\"Väntar på granskning\",\"dPYu1F\":\"Per deltagare\",\"mQV/nJ\":\"per min\",\"+kvxv+\":\"per order\",\"VlXNyK\":\"Per order\",\"NhuGd7\":\"per produkt\",\"hauDFf\":\"Per biljett\",\"mnF83a\":\"Procentuell avgift\",\"TNLuRD\":\"Percentage fee (%)\",\"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\":\"Permanently remove this date\",\"6kPk3+\":\"Personlig information\",\"zmwvG2\":\"Telefon\",\"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\":\"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\":\"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\":\"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\":\"Please select a date and time\",\"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\",\"OESu7I\":\"Förhindra översäljning genom att dela lager mellan flera biljett­typer.\",\"NgVUL2\":\"Förhandsgranska kassaflödet\",\"cs5muu\":\"Förhandsgranska evenemangssidan\",\"Jm2AC3\":\"Price Tier\",\"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\":\"Product settings cannot be edited for cancelled dates.\",\"2339ej\":\"Product settings saved successfully\",\"ldVIlB\":\"Produkt uppdaterad\",\"CP3D8G\":\"Progress\",\"JoKGiJ\":\"Kampanjkod\",\"k3wH7i\":\"Användning av kampanjkoder och rabattfördelning\",\"tZqL0q\":\"promo codes\",\"oCHiz3\":\"Promo codes\",\"uEhdRh\":\"Endast kampanj\",\"dLm8V5\":\"Marknadsföringsmejl kan leda till att kontot stängs av\",\"W0ETyY\":\"Ange minst ett adressfält (plats, gata, stad eller land).\",\"2W/7Gz\":\"Provide the following before Stripe's next review to keep payouts flowing.\",\"EEYbdt\":\"Publicera\",\"JcgJKc\":\"Publicera ändå\",\"evDBV8\":\"Publicera evenemang\",\"2zEfOd\":\"Publish your event\",\"L7nrC8\":\"När du publicerar blir din evenemangssida offentlig och anmälningar öppnas.\",\"dsFmM+\":\"Köpt\",\"JunetL\":\"Purchaser\",\"phmeUH\":\"Purchaser email\",\"ywR4ZL\":\"QR code check-in\",\"oWXNE5\":\"Ant.\",\"biEyJ4\":\"Question answers\",\"k/bJj0\":\"Frågorna ordnades om\",\"b24kPi\":\"Kö\",\"lTPqpM\":\"Quick Tip\",\"fqDzSu\":\"Sats\",\"mnUGVC\":\"Hastighetsgränsen har överskridits. Försök igen senare.\",\"t41hVI\":\"Erbjud plats igen\",\"TNclgc\":\"Reactivate this date? It will be reopened for future sales.\",\"RENQ6j\":\"Redo att gå live?\",\"uqoRbb\":\"Real-time analytics\",\"xzRvs4\":[\"Ta emot produktuppdateringar från \",[\"0\"],\".\"],\"pLXbi8\":\"Senaste kontoregistreringar\",\"M1HGuR\":\"Recent activity\",\"3kJ0gv\":\"Recent Attendees\",\"qhfiwV\":\"Recent check-ins\",\"S+0XMX\":\"Recent orders\",\"Fi3b48\":\"Senaste ordrar\",\"7hPBBn\":\"mottagare\",\"jp5bq8\":\"mottagare\",\"yPrbsy\":\"Mottagare\",\"E1F5Ji\":\"Mottagare är tillgängliga efter att meddelandet har skickats\",\"WEYdDv\":\"Recommended\",\"wuhHPE\":\"Recurring\",\"asLqwt\":\"Återkommande evenemang\",\"s3uzsK\":\"Inställningar för återkommande evenemang\",\"D0tAMe\":\"Recurring events\",\"JjMIKU\":\"Reddit\",\"HiGkFu\":\"Omdirigerar till Stripe...\",\"pnoTN5\":\"Hänvisade konton\",\"ACKu03\":\"Uppdatera förhandsgranskning\",\"vuFYA6\":\"Refund all orders for these dates\",\"4cRUK3\":\"Refund all orders for this date\",\"fKn/k6\":\"Återbetalningsbelopp\",\"qY4rpA\":\"Återbetalning misslyckades\",\"FaK/8G\":[\"Återbetala order \",[\"0\"]],\"MGbi9P\":\"Återbetalning väntar\",\"BDSRuX\":[\"Återbetald: \",[\"0\"]],\"bU4bS1\":\"Återbetalningar\",\"rYXfOA\":\"Regionala inställningar\",\"5tl0Bp\":\"Registreringsfrågor\",\"ZNo5k1\":\"Remaining\",\"Bjh87R\":\"Remove label from all dates\",\"IVZaEo\":\"Tar bort slutsålda datum och tider helt från evenemangssidan. När inaktiverat förblir de synliga och märks som slutsålda.\",\"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\":\"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\":\"Reset to base price\",\"kCn6wb\":\"Återställer...\",\"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\":\"results\",\"6gRgw8\":\"Försök igen\",\"1BG8ga\":\"Försök alla igen\",\"rDC+T6\":\"Försök jobb igen\",\"CbnrWb\":\"Tillbaka till evenemanget\",\"Lf7TCn\":\"Återanvändbara platser visas här automatiskt när du skapar evenemang med adresser, och du kan även lägga till egna.\",\"mdQ0zb\":\"Återanvändbara platser för dina evenemang. Platser som skapas via autokomplettering sparas här automatiskt.\",\"XFOPle\":\"Reuse\",\"1Zehp4\":\"Reuse a Stripe connection from another organizer in this account.\",\"Oo/PLb\":\"Sammanfattning av intäkter\",\"CfuueU\":\"Återkalla erbjudande\",\"RIgKv+\":\"Run until a specific date\",\"dFFW9L\":[\"Försäljningen avslutades \",[\"0\"]],\"loCKGB\":[\"Försäljningen avslutas \",[\"0\"]],\"wlfBad\":\"Försäljningsperiod\",\"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\":\"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\":\"Sales, attendance, and check-in breakdown per occurrence\",\"3VnlS9\":\"Försäljning, ordrar och prestandamått för alla evenemang\",\"3Q1AWe\":\"Försäljning:\",\"LeuERW\":\"Same as event\",\"B4nE3N\":\"Exempel på biljettpris\",\"8BRPoH\":\"Exempelplats\",\"PiK6Ld\":\"Sat\",\"+5kO8P\":\"Saturday\",\"zJiuDn\":\"Save fee override\",\"NB8Uxt\":\"Save Schedule\",\"KZrfYJ\":\"Spara sociala länkar\",\"9Y3hAT\":\"Spara mall\",\"C8ne4X\":\"Spara biljettlayout\",\"cTI8IK\":\"Save VAT settings\",\"6/TNCd\":\"Spara momsinställningar\",\"4RvD9q\":\"Sparad plats\",\"cgw0cL\":\"Sparade platser\",\"Fbqm/I\":\"Saving an override creates a dedicated configuration for this organizer if it's currently on the system default.\",\"I+FvbD\":\"Skanna\",\"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\":\"Schemalägg för senare\",\"NAzVVw\":\"Schemalägg meddelande\",\"Fz09JP\":\"Schedule starts on\",\"4ba0NE\":\"Schemalagd\",\"qcP/8K\":\"Schemalagd tid\",\"A1taO8\":\"Search\",\"ftNXma\":\"Sök affiliates...\",\"VMU+zM\":\"Search attendees\",\"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...\",\"YnMfsK\":\"Sök på namn eller adress...\",\"VT+urE\":\"Sök efter namn eller e-post...\",\"GHdjuo\":\"Sök på namn, e-post eller konto...\",\"4mBFO7\":\"Search by name, order #, ticket # or email\",\"20ce0U\":\"Sök på order-ID, kundnamn eller e-post...\",\"4DSz7Z\":\"Sök efter ämne, evenemang eller konto...\",\"nQC7Z9\":\"Search dates...\",\"iRtEpV\":\"Search dates…\",\"JRM7ao\":\"Search for an address\",\"BWF1kC\":\"Sök meddelanden...\",\"5WYZKZ\":\"Sökresultat\",\"IG85fV\":\"Sök sparade platser eller hitta en adress...\",\"3aD3GF\":\"Seasonal\",\"ku//5b\":\"Second\",\"Mck5ht\":\"Säker kassa\",\"s7tXqF\":\"See schedule\",\"JFap6u\":\"See what Stripe still needs\",\"p7xUrt\":\"Välj en kategori\",\"hTKQwS\":\"Select a Date & Time\",\"Ps6Xtf\":\"Select a date to see available times\",\"e4L7bF\":\"Välj ett meddelande för att visa dess innehåll\",\"zPRPMf\":\"Välj en nivå\",\"BFRSTT\":\"Välj konto\",\"wgNoIs\":\"Select all\",\"mCB6Je\":\"Välj alla\",\"aCEysm\":[\"Select all on \",[\"0\"]],\"a6+167\":\"Välj ett evenemang\",\"CFbaPk\":\"Välj deltagargrupp\",\"88a49s\":\"Select camera\",\"tVW/yo\":\"Välj valuta\",\"SJQM1I\":\"Select date\",\"n9ZhRa\":\"Välj slutdatum och tid\",\"gTN6Ws\":\"Välj sluttid\",\"0U6E9W\":\"Välj evenemangskategori\",\"j9cPeF\":\"Välj evenemangstyper\",\"ypTjHL\":\"Select occurrence\",\"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\":\"selected\",\"ylXj1N\":\"Vald\",\"uq3CXQ\":\"Sell out your event.\",\"oBXbO4\":\"Selling a physical product? Cap its quantity on the <0>products page instead.\",\"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\":\"Send to all occurrences, or choose a specific one\",\"QEQlnV\":\"Skicka ditt första meddelande\",\"IoAuJG\":\"Skickar...\",\"h69WC6\":\"Skickat\",\"BVu2Hz\":\"Skickat av\",\"ZFa8wv\":\"Sent to attendees when a scheduled date is cancelled\",\"SPdzrs\":\"Skickas till kunder när de lägger en order\",\"LxSN5F\":\"Skickas till varje deltagare med deras biljettuppgifter\",\"hgvbYY\":\"September\",\"5sN96e\":\"Session cancelled\",\"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\":\"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\":\"Skapa incheckningslistor för olika entréer, pass eller dagar.\",\"TaWVGe\":\"Set up payouts\",\"JA//e6\":\"Set up schedule\",\"gzXY7l\":\"Set Up Schedule\",\"0Ls9qe\":\"Set up the tickets you'll sell and their prices\",\"xMO+Ao\":\"Konfigurera din organisation\",\"5pEFnq\":\"Set up your schedule\",\"h/9JiC\":\"Set Up Your Schedule\",\"zRRuUD\":\"Set up your schedule in the next steps\",\"ETC76A\":\"Set, change, or remove the date's location or online details\",\"C3htzi\":\"Inställningen uppdaterades\",\"Ohn74G\":\"Konfiguration och 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\":\"Dela affiliate-länk\",\"hL7sDJ\":\"Dela arrangörssida\",\"jy6QDF\":\"Delad kapacitetshantering\",\"jDNHW4\":\"Shift times\",\"tPfIaW\":[\"Shifted times for \",[\"count\"],\" date(s)\"],\"WwlM8F\":\"Visa avancerade alternativ\",\"cMW+gm\":[\"Visa alla plattformar (\",[\"0\"],\" till med värden)\"],\"wXi9pZ\":\"Show attendee notes to non-logged-in staff\",\"4LZFir\":\"Visa hela datumintervallet\",\"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\",\"b33PL9\":\"Visa fler plattformar\",\"Eut7p9\":\"Show order details to non-logged-in staff\",\"+RoWKN\":\"Show question answers to non-logged-in staff\",\"jbcx6L\":\"Show remaining capacity on event dates\",\"rXxBOx\":\"Show remaining capacity to buyers\",\"t1LIQW\":[\"Visar \",[\"0\"],\" av \",[\"totalRows\"],\" poster\"],\"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\":\"Registrerad\",\"5C7J+P\":\"Single Event\",\"E//btK\":\"Skip manually edited dates\",\"paESr6\":\"Slovakiska\",\"9wu8nm\":\"Snapchat\",\"kIKb9e\":\"Socialt\",\"d0rUsW\":\"Sociala länkar\",\"j/TOB3\":\"Sociala länkar och webbplats\",\"s9KGXU\":\"Sålda\",\"yp+0jj\":\"sold out\",\"1hupow\":\"Slutsålt, väntelista tillgänglig\",\"iACSrw\":\"Some details are hidden from public access. Log in to view everything.\",\"Dia6iz\":\"Something went wrong while deleting the image. Please try again.\",\"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\":\"Spirituality\",\"oPaRES\":\"Split check-in across days, areas, or ticket types. Share the link with staff — no account needed on their end.\",\"7JFNej\":\"Sport\",\"/bfV1Y\":\"Staff instructions\",\"tXkhj/\":\"Start\",\"StWUH4\":\"Start check-in\",\"JcQp9p\":\"Startdatum och tid\",\"0m/ekX\":\"Startdatum och tid\",\"izRfYP\":\"Startdatum är obligatoriskt\",\"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/\":\"Statistik\",\"GVUxAX\":\"Statistiken baseras på kontots skapandedatum\",\"29Hx9U\":\"Stats\",\"5ia+r6\":\"Still needed\",\"wuV0bK\":\"Sluta impersonera\",\"s/KaDb\":\"Stripe connected\",\"Bk06QI\":\"Stripe anslutet\",\"akZMv8\":[\"Stripe connection copied from \",[\"0\"],\".\"],\"v0aRY1\":\"Stripe didn't return a setup link. Please try again.\",\"aKtF0O\":\"Stripe ej ansluten\",\"9i0++A\":\"Stripe betalnings-ID\",\"R1lIMV\":\"Stripe will need a few more details soon\",\"FzcCHA\":\"Stripe will walk you through a few quick questions to finish setup.\",\"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\",\"kRWc2g\":\"Inställningarna för återkommande evenemang har uppdaterats\",\"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\":\"Sun\",\"DBC3t5\":\"Sunday\",\"UaISq3\":\"Svenska\",\"JZTQI0\":\"Byt arrangör\",\"9YHrNC\":\"Systemstandard\",\"lruQkA\":\"Tap this screen to resume scanning\",\"TJUrME\":[\"Targeting attendees across \",[\"0\"],\" selected sessions.\"],\"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\":\"Team collaboration\",\"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\":\"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\":\"Mall aktiv\",\"QHhZeE\":\"Mallen skapades\",\"xrWdPR\":\"Mallen togs bort\",\"G04Zjt\":\"Mallen sparades\",\"xowcRf\":\"Användarvillkor\",\"6K0GjX\":\"Texten kan vara svår att läsa\",\"nm3Iz/\":\"Tack för att du deltog!\",\"pYwj0k\":\"Thanks,\",\"k3IitN\":\"That's a wrap\",\"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.\",\"7oksH+\":[\"Rabatten dras av från varje berättigad produkt. T.ex. \",[\"currencySymbol\"],\"10 rabatt × 3 biljetter = \",[\"currencySymbol\"],\"30 rabatt.\"],\"sKL8k2\":\"Rabatten dras av en gång från orderns totalbelopp.\",\"cDHM1d\":\"E-postadressen har ändrats. Deltagaren kommer att få en ny biljett till den uppdaterade e-postadressen.\",\"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\":\"The first date this schedule will generate from.\",\"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.\",\"Np4eLs\":[\"The maximum is \",[\"MAX_PREVIEW\"],\" sessions. Please reduce the date range, frequency, or number of sessions per day.\"],\"sYLeDq\":\"Arrangören du letar efter kunde inte hittas. Sidan kan ha flyttats, tagits bort eller så kan webbadressen vara felaktig.\",\"PCr4zw\":\"The override is recorded in the order audit log.\",\"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\",\"OVSkIF\":\"Den snabba bruna räven hoppar över den lata hunden.\",\"z0KrIG\":\"Den schemalagda tiden är obligatorisk\",\"EWErQh\":\"Den schemalagda tiden måste vara i framtiden\",\"UNd0OU\":[\"The session for \\\"\",[\"title\"],\"\\\" originally scheduled for \",[\"0\"],\" has been rescheduled.\"],\"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\",\"ybBP2H\":\"There are no products available for this date. Please choose another date.\",\"O7g4eR\":\"There are no upcoming dates for this event\",\"062KsE\":\"These details are shown on the attendee's ticket and order summary for this date only.\",\"5Eu+tn\":\"Dessa uppgifter visas endast om beställningen slutförs.\",\"jQjwR+\":\"These details will replace any existing location on the affected dates and show on attendee tickets.\",\"6eaLu/\":\"Dessa priser gäller för alla datum i ditt schema, och nivåernas antal begränsar den totala försäljningen för alla datum sammanlagt. Nivåernas försäljningsdatum gäller globalt. Du kan åsidosätta priser för enskilda datum på <0>sidan Datumschema.\",\"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\":\"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\":\"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/\":[\"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.\",\"E9BqZw\":\"This date only\",\"RzEvf5\":\"Det här evenemanget har avslutats\",\"kc4bIA\":\"Det här evenemanget har inga biljetter eller produkter ännu, så deltagare kan inte anmäla sig.\",\"eMaNd0\":\"This event is not available\",\"YClrdK\":\"Det här evenemanget är inte publicerat ännu\",\"GL6z+k\":\"Det här evenemanget är slutsålt\",\"pIwDhS\":\"This event's dates and times are set on the occurrence schedule.\",\"ny5rgr\":\"This is a recurring event\",\"tc64Zz\":\"Detta är namnet på kategorin som visas på evenemangssidan.\",\"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.\",\"5DpZrC\":\"Detta begränsar den totala försäljningen för alla datum i ditt schema sammanlagt — det är inte en gräns per datum. För att begränsa antalet deltagare per datum, ange en kapacitet på <0>sidan Datumschema.\",\"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\":\"This occurrence is at capacity\",\"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\",\"qEGn8I\":\"Det här återkommande evenemanget har inga datum ännu, så det finns inget för deltagare att boka.\",\"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.\",\"1LuJNw\":\"Denna biljett är inte längre giltig\",\"0Ew0uk\":\"Den här biljetten skannades nyss. Vänta innan du skannar igen.\",\"FYXq7k\":[\"This will affect \",[\"loadedAffectedCount\"],\" date(s).\"],\"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\":\"Throughput\",\"+FjWgX\":\"Thu\",\"kkDQ8m\":\"Thursday\",\"0GSPnc\":\"Biljettdesign\",\"EZC/Cu\":\"Biljettdesignen sparades\",\"bbslmb\":\"Biljettdesigner\",\"1BPctx\":\"Biljett för\",\"HGuXjF\":\"Biljettinnehavare\",\"CMUt3Y\":\"Biljettinnehavare\",\"awHmAT\":\"Biljett-ID\",\"6czJik\":\"Biljettlogotyp\",\"t79rDv\":\"Biljett hittades inte\",\"6tmWch\":\"Biljett eller produkt\",\"1tfWrD\":\"Biljettförhandsvisning för\",\"KnjoUA\":\"Biljettpris\",\"pGZOcL\":\"Biljetten skickades igen\",\"o02GZM\":\"Ticket sales have ended for this event\",\"8jLPgH\":\"Biljettyp\",\"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\":\"Time\",\"fXf2r5\":[\"Times shown in \",[\"timezoneAbbr\"]],\"dMtLDE\":\"to\",\"/jQctM\":\"Till\",\"tiI71C\":\"För att öka dina gränser, kontakta oss på\",\"ecUA8p\":\"Today\",\"W428WC\":\"Växla kolumner\",\"BRMXj0\":\"Tomorrow\",\"UBSG1X\":\"Topparrangörer (Senaste 14 dagarna)\",\"3sZ0xx\":\"Totalt antal konton\",\"SMDzqJ\":\"Totalt antal deltagare\",\"orBECM\":\"Totalt inkasserat\",\"k5CU8c\":\"Totalt antal poster\",\"4B7oCp\":\"Total avgift\",\"sMMlTX\":\"Total fees\",\"mlvCEl\":\"Total orders\",\"2AW/k5\":\"Totalt antal för alla datum\",\"dp8BCb\":\"Total tax\",\"vb0Q0/\":\"Totalt antal användare\",\"oJjplO\":\"Totala visningar\",\"rBZ9pz\":\"Tours\",\"orluER\":\"Spåra kontotillväxt och resultat efter attribueringskälla\",\"YwKzpH\":\"Spårning & Analys\",\"GUA0Jy\":\"Try a different search term or filter\",\"2P/OWN\":\"Try adjusting your filters to see more dates.\",\"ouM5IM\":\"Prova en annan e-postadress\",\"3DZvE7\":\"Prova Hi.Events gratis\",\"vq2WxD\":\"Tue\",\"G3myU+\":\"Tuesday\",\"Kz91g/\":\"Turkiska\",\"GdOhw6\":\"Stäng av ljudet\",\"KUOhTy\":\"Slå på ljudet\",\"dBeuY2\":\"Twitch\",\"QytzQr\":\"Skriv \\\"ta bort\\\" för att bekräfta\",\"nWRfmt\":\"Typografi\",\"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\":\"Unable to load attendee details.\",\"GlnD5Y\":\"Unable to load products for this date. Please try again.\",\"17VbmV\":\"Unable to undo check-in\",\"n57zCW\":\"Oattribuerade konton\",\"9uI/rE\":\"Undo\",\"Ef7StM\":\"Okänd\",\"ZBAScj\":\"Okänd deltagare\",\"MEIAzV\":\"Namnlös\",\"K6L5Mx\":\"Namnlös plats\",\"7yiFvZ\":\"Obetald\",\"X13xGn\":\"Ej betrodd\",\"gyXpQN\":\"Upcoming events\",\"Pp1sWX\":\"Uppdatera 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\":\"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 scanner listening\",\"dyTklH\":\"USB scanner paused\",\"OHJXlK\":\"Använd <0>Liquid-mallar för att anpassa dina mejl\",\"/rsy72\":\"Use event default\",\"0k4cdb\":\"Använd orderuppgifterna för alla deltagare. Deltagarnas namn och e-postadresser matchar köparens uppgifter.\",\"bA31T4\":\"Använd köparens uppgifter för alla deltagare\",\"PpgtnC\":\"Använd den här adressen\",\"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\":\"VAT number\",\"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\":\"VAT registered\",\"Nfbg76\":\"Momsinställningarna sparades\",\"UvYql/\":\"Momsinställningarna sparades. Vi validerar ditt momsregistreringsnummer i bakgrunden.\",\"bXn1Jz\":\"VAT settings updated\",\"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\":\"VAT: not registered\",\"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\":\"View All\",\"yA/6BX\":\"View all →\",\"6CQ7/B\":\"View all capabilities\",\"YSE15b\":\"View all check-in lists\",\"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\":[\"View details for \",[\"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\":\"Waiting for scan…\",\"u0n+wz\":\"Väntelista\",\"3RXFtE\":\"Väntelista aktiverad\",\"TwnTPy\":\"Väntelista-erbjudande har löpt ut\",\"aUi/Dz\":\"Varning: Detta är systemets standardkonfiguration. Ändringar påverkar alla konton som inte har en specifik konfiguration tilldelad.\",\"aT/44s\":\"We couldn't copy that Stripe connection. Please try again.\",\"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.\",\"Fjj/5/\":\"We couldn't load the check-in lists. Please try again.\",\"ADsQ23\":\"We couldn't reach Stripe just now. Please try again in a moment.\",\"HJKdzP\":\"Det uppstod ett problem när sidan skulle laddas. Försök igen.\",\"jegrvW\":\"We partner with Stripe to send payouts straight to your bank account.\",\"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 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.\",\"mfM/HJ\":[\"Vi meddelar dig via e-post om en plats blir tillgänglig för \",[\"productDisplayName\"],\" den \",[\"occurrenceDate\"],\".\"],\"iy+M+c\":[\"Vi meddelar dig via e-post om en plats blir tillgänglig för \",[\"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\":\"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\":[\"We've made changes to the schedule for \\\"\",[\"title\"],\"\\\" — \",[\"description\"],\" affecting \",[\"affectedCount\"],\" session(s).\"],\"Fq/Nx7\":\"Vi har skickat en verifieringskod med 5 siffror till:\",\"GdWB+V\":\"Webhook skapades\",\"2X4ecw\":\"Webhook togs bort\",\"ndBv0v\":\"Webhook integrations\",\"CThMKa\":\"Webhook-loggar\",\"I0adYQ\":\"Webhook-signeringshemlighet\",\"nuh/Wq\":\"Webhook-URL\",\"8BMPMe\":\"Webhooken skickar inga notiser\",\"FSaY52\":\"Webhooken skickar notiser\",\"v1kQyJ\":\"Webhooks\",\"On0aF2\":\"Webbplats\",\"0f7U0k\":\"Wed\",\"VAcXNz\":\"Wednesday\",\"64X6l4\":\"week\",\"4XSc4l\":\"Weekly\",\"IAUiSh\":\"weeks\",\"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\":\"Wellness\",\"ywRaYa\":\"What time?\",\"FaSXqR\":\"Vilken typ av evenemang?\",\"0WyYF4\":\"What unauthenticated staff can see\",\"2+ExvJ\":\"WhatsApp\",\"cxsKvw\":\"När en incheckning tas bort\",\"RPe6bE\":\"When a date is cancelled on a recurring event\",\"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 bli meddelade när platser blir tillgängliga.\",\"OIkHj+\":\"När en produkt blir slutsåld kan kunder gå med i en väntelista för att bli meddelade när platser blir tillgängliga. Kunder går med i väntelistan för ett specifikt datum och erbjudanden görs per datum.\",\"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\":\"När kunder köper biljetter visas deras ordrar här.\",\"pm9tpn\":\"När detta är aktiverat kan köpare kopiera sitt namn och sin e-post till alla deltagare på en gång. Stäng av för att ta bort alternativet \\\"Alla deltagare\\\"; köpare kan fortfarande kopiera till den första deltagaren, resten måste anges individuellt.\",\"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.\",\"uchB0M\":\"Förhandsgranskning av widget\",\"uvIqcj\":\"Workshop\",\"EpknJA\":\"Skriv ditt meddelande här...\",\"nhtR6Y\":\"X (Twitter)\",\"7qI8sJ\":\"year\",\"zkWmBh\":\"Yearly\",\"+BGee5\":\"years\",\"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+\":\"You can override this for individual dates later.\",\"paWwQ0\":\"Du kan fortfarande erbjuda biljetter manuellt vid behov.\",\"jTDzpA\":\"Du kan inte arkivera den sista aktiva arrangören på ditt konto.\",\"D8baxD\":\"Du har betalbiljetter, men Stripe är inte anslutet ännu, så du kan inte ta emot betalningar.\",\"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/\":\"You need to create at least one occurrence before you can add attendees to this recurring event.\",\"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\":\"You'll be able to set up dates, schedules, and recurrence rules in the next step.\",\"zKAheG\":\"You're changing session times\",\"MNFIxz\":[\"Du ska till \",[\"0\"],\"!\"],\"ZlLcht\":[\"Du går med i väntelistan för \",[\"occurrenceDate\"],\".\"],\"qGZz0m\":\"Du är på väntelistan!\",\"/5HL6k\":\"Du har erbjudits en plats!\",\"gbjFFH\":\"You've changed the session time\",\"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\":\"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\":\"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äntelista-erbjudande har löpt ut och vi kunde inte slutföra din beställning. Vänligen gå med i väntelistan igen för att bli meddelad 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 f62a3ee72d..fce7094f2c 100644 --- a/frontend/src/locales/se.po +++ b/frontend/src/locales/se.po @@ -179,11 +179,11 @@ msgstr "" msgid "{totalCount} ticket types" msgstr "{totalCount} biljettkategorier" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:554 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:567 msgid "{totalOccurrences} dates" msgstr "" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:547 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:560 msgid "{totalOccurrences} sessions across {0} dates ({1, plural, one {# session} other {# sessions}} per day)" msgstr "" @@ -516,7 +516,7 @@ msgstr "Aktiva evenemang" msgid "Active payment methods" msgstr "" -#: src/components/routes/event/OccurrencesTab/index.tsx:400 +#: src/components/routes/event/OccurrencesTab/index.tsx:402 msgid "Activity" msgstr "" @@ -536,11 +536,11 @@ msgstr "" msgid "Add a description for this check-in list" msgstr "Lägg till en beskrivning för denna incheckningslista" -#: src/components/routes/event/OccurrencesTab/index.tsx:538 +#: src/components/routes/event/OccurrencesTab/index.tsx:541 msgid "Add a Single Date" msgstr "" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:739 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:752 msgid "Add another time" msgstr "" @@ -560,7 +560,7 @@ msgstr "Lägg till eventuella anteckningar om ordern. Dessa kommer inte vara syn msgid "Add any notes about the order..." msgstr "Lägg till eventuella anteckningar om ordern..." -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:375 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:382 msgid "Add at least one time" msgstr "" @@ -580,7 +580,7 @@ msgstr "" msgid "Add dates" msgstr "Lägg till datum" -#: src/components/routes/event/OccurrencesTab/index.tsx:524 +#: src/components/routes/event/OccurrencesTab/index.tsx:526 msgid "Add Dates" msgstr "" @@ -611,7 +611,7 @@ msgstr "Lägg till instruktioner för offline-betalningar (t.ex. banköverförin msgid "Add Location" msgstr "Lägg till plats" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:743 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:756 msgid "Add multiple times if you run several sessions per day." msgstr "" @@ -796,7 +796,7 @@ msgid "all" msgstr "" #: src/components/layouts/CheckIn/tabs/SearchTab.tsx:133 -#: src/components/routes/event/OccurrencesTab/index.tsx:485 +#: src/components/routes/event/OccurrencesTab/index.tsx:487 msgid "All" msgstr "" @@ -987,7 +987,7 @@ msgstr "Ett oväntat fel uppstod." msgid "An unexpected error occurred. Please try again." msgstr "Ett oväntat fel uppstod. Vänligen försök igen." -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:849 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:862 msgid "and {0} more..." msgstr "" @@ -1003,7 +1003,7 @@ msgstr "" msgid "Answers provided at checkout (e.g. meal choice)" msgstr "" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:564 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:577 msgid "Any dates you've manually customized will be kept." msgstr "" @@ -1071,7 +1071,7 @@ msgstr "" msgid "Approve Message" msgstr "Godkänn meddelande" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:74 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:76 msgid "April" msgstr "" @@ -1127,7 +1127,7 @@ msgstr "Är du säker på att du vill arkivera detta evenemang? Det kommer inte 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." -#: src/components/routes/event/OccurrencesTab/index.tsx:213 +#: src/components/routes/event/OccurrencesTab/index.tsx:215 msgid "Are you sure you want to cancel {count} date(s)? Affected attendees will be notified by email." msgstr "" @@ -1159,7 +1159,7 @@ msgstr "Är du säker på att du vill ta bort denna konfiguration? Detta kan på #: src/components/modals/ManageOccurrenceModal/index.tsx:58 #: src/components/routes/event/OccurrenceDetail/index.tsx:84 -#: src/components/routes/event/OccurrencesTab/index.tsx:182 +#: src/components/routes/event/OccurrencesTab/index.tsx:184 msgid "Are you sure you want to delete this date? This action cannot be undone." msgstr "" @@ -1446,7 +1446,7 @@ msgstr "Attributionsuppdelning" msgid "Attribution Value" msgstr "Attributionsvärde" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:78 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:80 msgid "August" msgstr "" @@ -1625,7 +1625,7 @@ msgstr "Brasiliansk portugisiska" msgid "Built-in fraud protection" msgstr "" -#: src/components/routes/event/OccurrencesTab/index.tsx:515 +#: src/components/routes/event/OccurrencesTab/index.tsx:517 msgid "Bulk Edit" msgstr "" @@ -1674,11 +1674,11 @@ msgstr "Genom att lägga till spårningspixlar bekräftar du att du och denna pl msgid "By continuing, you agree to the <0>{0} Terms of Service" msgstr "Genom att fortsätta godkänner du <0>{0} användarvillkor" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:628 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:641 msgid "By day of month" msgstr "" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:629 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:642 msgid "By day of week" msgstr "" @@ -1698,7 +1698,7 @@ msgstr "Kringgå applikationsavgifter" msgid "Calculation Type" msgstr "Beräkningstyp" -#: src/components/routes/event/OccurrencesTab/index.tsx:471 +#: src/components/routes/event/OccurrencesTab/index.tsx:473 msgid "Calendar" msgstr "" @@ -1735,7 +1735,7 @@ msgstr "" #: src/components/modals/ManageOrderModal/index.tsx:209 #: src/components/modals/PublishEventModal/index.tsx:208 #: src/components/routes/event/messages.tsx:80 -#: src/components/routes/event/OccurrencesTab/index.tsx:497 +#: src/components/routes/event/OccurrencesTab/index.tsx:499 #: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:272 #: src/components/routes/event/OccurrencesTab/OccurrenceEditModal/index.tsx:306 #: src/components/routes/event/OccurrencesTab/OccurrenceMenu.tsx:61 @@ -1748,8 +1748,8 @@ msgstr "" msgid "Cancel" msgstr "Avbryt" -#: src/components/routes/event/OccurrencesTab/index.tsx:209 -#: src/components/routes/event/OccurrencesTab/index.tsx:221 +#: src/components/routes/event/OccurrencesTab/index.tsx:211 +#: src/components/routes/event/OccurrencesTab/index.tsx:223 msgid "Cancel {count} date(s)" msgstr "" @@ -1809,7 +1809,7 @@ msgstr "Avbrytande kommer att avbryta alla deltagare som är kopplade till denna msgid "Cancelled" msgstr "Avbruten" -#: src/components/routes/event/OccurrencesTab/index.tsx:235 +#: src/components/routes/event/OccurrencesTab/index.tsx:237 msgid "Cancelling {0} date(s). This may take a moment to complete." msgstr "" @@ -1819,7 +1819,7 @@ msgstr "Det går inte att ta bort systemets standardkonfiguration" #: src/components/forms/CapaciyAssigmentForm/index.tsx:42 #: src/components/routes/event/OccurrencesTab/OccurrenceEditModal/index.tsx:503 -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:811 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:824 msgid "Capacity" msgstr "Kapacitet" @@ -2154,7 +2154,7 @@ msgid "City" msgstr "Stad" #: src/components/common/OccurrenceSelect/index.tsx:133 -#: src/components/routes/event/OccurrencesTab/index.tsx:503 +#: src/components/routes/event/OccurrencesTab/index.tsx:505 msgid "Clear" msgstr "" @@ -2174,7 +2174,7 @@ msgstr "Rensa söktext" msgid "Clearing removes any per-date override. Affected dates will fall back to the event's default location." msgstr "" -#: src/components/routes/event/OccurrencesTab/index.tsx:331 +#: src/components/routes/event/OccurrencesTab/index.tsx:333 msgid "Click to cancel" msgstr "" @@ -2182,7 +2182,7 @@ msgstr "" msgid "Click to copy" msgstr "Klicka för att kopiera" -#: src/components/routes/event/OccurrencesTab/index.tsx:333 +#: src/components/routes/event/OccurrencesTab/index.tsx:335 msgid "Click to reopen for new sales" msgstr "" @@ -2743,7 +2743,7 @@ msgstr "Skapa mall för {0}" msgid "Create a custom widget to sell tickets on your site." msgstr "Skapa en anpassad widget för att sälja biljetter på din webbplats." -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:785 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:798 msgid "Create a fixed number" msgstr "" @@ -2879,7 +2879,7 @@ msgstr "Skapa kampanjkod" msgid "Create Question" msgstr "Skapa fråga" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:864 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:877 msgid "Create Schedule" msgstr "" @@ -2927,6 +2927,10 @@ msgstr "Skapa ditt eget evenemang" msgid "Created" msgstr "Skapad" +#: src/components/routes/event/OccurrencesTab/index.tsx:549 +msgid "Creating {0} dates. This may take a moment." +msgstr "Skapar {0} datum. Det kan ta en stund." + #: src/components/routes/welcome/index.tsx:472 msgid "Creating Event..." msgstr "Skapar evenemang..." @@ -3066,7 +3070,7 @@ msgstr "Anpassa din evenemangssida" msgid "Customize your organizer page appearance" msgstr "Anpassa utseendet på din organisatörssida" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:56 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:58 #: src/components/routes/product-widget/OccurrenceSelector/index.tsx:32 msgid "Daily" msgstr "" @@ -3155,7 +3159,7 @@ msgstr "" #: src/components/modals/ManageOccurrenceModal/index.tsx:61 #: src/components/routes/event/OccurrenceDetail/index.tsx:87 -#: src/components/routes/event/OccurrencesTab/index.tsx:184 +#: src/components/routes/event/OccurrencesTab/index.tsx:186 msgid "Date deleted" msgstr "" @@ -3168,7 +3172,7 @@ msgstr "" msgid "Date reactivated" msgstr "" -#: src/components/routes/event/OccurrencesTab/index.tsx:198 +#: src/components/routes/event/OccurrencesTab/index.tsx:200 msgid "Date reopened for new sales" msgstr "" @@ -3184,15 +3188,15 @@ msgstr "" msgid "Dates with sessions" msgstr "" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:93 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:95 msgid "day" msgstr "" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:659 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:672 msgid "Day" msgstr "" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:676 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:689 msgid "Day of Month" msgstr "" @@ -3200,19 +3204,19 @@ msgstr "" msgid "Day one capacity" msgstr "Kapacitet dag ett" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:101 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:103 msgid "days" msgstr "" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:635 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:648 msgid "Days of Month" msgstr "" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:605 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:618 msgid "Days of Week" msgstr "" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:82 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:84 msgid "December" msgstr "" @@ -3230,7 +3234,7 @@ msgstr "Standard" msgid "Default attendee information collection" msgstr "Standardinsamling av deltagarinformation" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:815 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:828 msgid "Default capacity per date" msgstr "" @@ -3253,7 +3257,7 @@ msgstr "ta bort" #: src/components/common/QuestionsTable/index.tsx:150 #: src/components/common/TaxAndFeeList/index.tsx:81 #: src/components/routes/admin/FailedJobs/index.tsx:209 -#: src/components/routes/event/OccurrencesTab/index.tsx:500 +#: src/components/routes/event/OccurrencesTab/index.tsx:502 #: src/components/routes/event/OccurrencesTab/OccurrenceMenu.tsx:62 msgid "Delete" msgstr "Ta bort" @@ -3262,7 +3266,7 @@ msgstr "Ta bort" msgid "Delete \"{0}\"?" msgstr "Ta bort \"{0}\"?" -#: src/components/routes/event/OccurrencesTab/index.tsx:247 +#: src/components/routes/event/OccurrencesTab/index.tsx:249 msgid "Delete {count} selected date(s)? Dates with orders will be skipped. This cannot be undone." msgstr "" @@ -3344,7 +3348,7 @@ msgstr "Ta bort denna fråga? Detta kan inte ångras." msgid "Delete webhook" msgstr "Ta bort webhook" -#: src/components/routes/event/OccurrencesTab/index.tsx:253 +#: src/components/routes/event/OccurrencesTab/index.tsx:255 msgid "Deleted {0} date(s)" msgstr "" @@ -3565,7 +3569,7 @@ msgstr "t.ex. 180 (3 timmar)" #: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:452 #: src/components/routes/event/OccurrencesTab/OccurrenceEditModal/index.tsx:450 -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:714 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:727 msgid "e.g. Morning Session" msgstr "" @@ -3724,7 +3728,7 @@ msgstr "Redigera webhook" msgid "Edit Webhook" msgstr "Redigera webhook" -#: src/components/routes/event/OccurrencesTab/index.tsx:306 +#: src/components/routes/event/OccurrencesTab/index.tsx:308 msgid "Edited" msgstr "" @@ -3913,7 +3917,7 @@ msgstr "Aktivera väntelista" msgid "Enabled" msgstr "Aktiverad" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:704 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:717 msgid "End" msgstr "" @@ -3934,7 +3938,7 @@ msgstr "Slutdatum och tid (valfritt)" msgid "End date must be after start date" msgstr "Slutdatum måste vara efter startdatum" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:771 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:784 msgid "End on a date" msgstr "" @@ -4409,7 +4413,7 @@ msgstr "Misslyckades med att avbryta deltagare" msgid "Failed to cancel date" msgstr "" -#: src/components/routes/event/OccurrencesTab/index.tsx:239 +#: src/components/routes/event/OccurrencesTab/index.tsx:241 msgid "Failed to cancel dates" msgstr "" @@ -4429,10 +4433,14 @@ msgstr "Misslyckades med att skapa partner" msgid "Failed to create configuration" msgstr "Misslyckades med att skapa konfiguration" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:530 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:543 msgid "Failed to create schedule" msgstr "" +#: src/hooks/useOccurrenceGenerationPolling.ts:44 +msgid "Failed to create schedule. Please try again." +msgstr "Det gick inte att skapa schemat. Försök igen." + #: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:192 #: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:195 msgid "Failed to create template" @@ -4444,7 +4452,7 @@ msgstr "Misslyckades med att ta bort konfiguration" #: src/components/modals/ManageOccurrenceModal/index.tsx:64 #: src/components/routes/event/OccurrenceDetail/index.tsx:90 -#: src/components/routes/event/OccurrencesTab/index.tsx:185 +#: src/components/routes/event/OccurrencesTab/index.tsx:187 msgid "Failed to delete date" msgstr "" @@ -4452,7 +4460,7 @@ msgstr "" msgid "Failed to delete date. It may have existing orders." msgstr "" -#: src/components/routes/event/OccurrencesTab/index.tsx:256 +#: src/components/routes/event/OccurrencesTab/index.tsx:258 msgid "Failed to delete dates" msgstr "" @@ -4540,7 +4548,7 @@ msgstr "Misslyckades med att ta bort från väntelistan" msgid "Failed to remove override" msgstr "" -#: src/components/routes/event/OccurrencesTab/index.tsx:199 +#: src/components/routes/event/OccurrencesTab/index.tsx:201 msgid "Failed to reopen date" msgstr "" @@ -4677,7 +4685,7 @@ msgstr "" msgid "Fast payouts to your bank" msgstr "" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:72 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:74 msgid "February" msgstr "" @@ -4769,7 +4777,7 @@ msgstr "" msgid "Finish setup" msgstr "" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:63 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:65 msgid "First" msgstr "" @@ -4882,7 +4890,7 @@ msgstr "Sidfotstext" msgid "Forgot password?" msgstr "Glömt lösenord?" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:66 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:68 msgid "Fourth" msgstr "" @@ -4909,11 +4917,11 @@ msgstr "Gratis produkt, ingen betalningsinformation krävs" msgid "French" msgstr "Franska" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:586 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:599 msgid "Frequency" msgstr "" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:50 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:52 msgid "Fri" msgstr "" @@ -5004,7 +5012,7 @@ msgstr "GitHub" #: src/components/routes/event/OccurrenceDetail/index.tsx:72 #: src/components/routes/event/OccurrencesTab/cancelOccurrenceDialog.tsx:49 -#: src/components/routes/event/OccurrencesTab/index.tsx:221 +#: src/components/routes/event/OccurrencesTab/index.tsx:223 #: src/components/routes/event/OccurrencesTab/OccurrenceEditModal/index.tsx:339 #: src/components/routes/event/OccurrencesTab/OccurrenceEditModal/index.tsx:363 msgid "Go Back" @@ -5271,7 +5279,7 @@ msgstr "Hur tillämpas rabatten?" msgid "How long a customer has to complete their purchase after receiving an offer. Leave empty for no timeout." msgstr "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." -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:750 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:763 msgid "How long does the schedule run?" msgstr "" @@ -5283,7 +5291,7 @@ msgstr "Hur många minuter kunden har på sig att slutföra sin beställning. Vi msgid "How many times can this code be used?" msgstr "Hur många gånger kan denna kod användas?" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:581 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:594 msgid "How often?" msgstr "" @@ -5589,7 +5597,7 @@ msgstr "artikel(er)" msgid "Items" msgstr "Artiklar" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:71 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:73 msgid "January" msgstr "" @@ -5640,11 +5648,11 @@ msgstr "Gå med i väntelistan för {productDisplayName}" msgid "Joined" msgstr "Ansluten" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:77 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:79 msgid "July" msgstr "" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:76 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:78 msgid "June" msgstr "" @@ -5670,7 +5678,7 @@ msgstr "" #: src/components/forms/ProductForm/index.tsx:108 #: src/components/routes/event/OccurrencesTab/OccurrenceEditModal/index.tsx:449 -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:711 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:724 #: src/components/routes/event/Reports/OccurrenceSummaryReport/index.tsx:45 msgid "Label" msgstr "Etikett" @@ -5685,7 +5693,7 @@ msgstr "" msgid "Language" msgstr "Språk" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:67 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:69 msgid "Last" msgstr "" @@ -5794,7 +5802,7 @@ msgid "Leave blank to use the default word \"Invoice\"" msgstr "Lämna tomt för att använda standardordet \"Faktura\"" #: src/components/routes/event/OccurrencesTab/OccurrenceEditModal/index.tsx:507 -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:816 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:829 msgid "Leave empty for unlimited" msgstr "" @@ -5834,7 +5842,7 @@ msgstr "LinkedIn" msgid "Links Allowed" msgstr "Länkar tillåtna" -#: src/components/routes/event/OccurrencesTab/index.tsx:470 +#: src/components/routes/event/OccurrencesTab/index.tsx:472 msgid "List" msgstr "" @@ -6003,7 +6011,7 @@ msgstr "" msgid "Manage attendee" msgstr "Hantera deltagare" -#: src/components/routes/event/OccurrencesTab/index.tsx:460 +#: src/components/routes/event/OccurrencesTab/index.tsx:462 msgid "Manage dates and times for your recurring event" msgstr "" @@ -6074,7 +6082,7 @@ msgstr "Lägg till deltagare manuellt" msgid "Manually Add Attendee" msgstr "Lägg till deltagare manuellt" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:73 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:75 msgid "March" msgstr "" @@ -6098,7 +6106,7 @@ msgstr "Max mottagare / meddelande" msgid "Maximum Per Order" msgstr "Max per order" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:75 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:77 msgid "May" msgstr "" @@ -6214,7 +6222,7 @@ msgstr "Övriga inställningar" msgid "Mode" msgstr "" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:46 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:48 msgid "Mon" msgstr "" @@ -6230,24 +6238,24 @@ msgstr "Monetära värden är ungefärliga totaler över alla valutor" msgid "Monitor and manage failed background jobs" msgstr "Övervaka och hantera misslyckade bakgrundsjobb" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:95 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:97 msgid "month" msgstr "" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:671 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:684 msgid "Month" msgstr "Månad" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:58 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:60 #: src/components/routes/product-widget/OccurrenceSelector/index.tsx:41 msgid "Monthly" msgstr "" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:624 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:637 msgid "Monthly Pattern" msgstr "" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:103 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:105 msgid "months" msgstr "" @@ -6516,7 +6524,7 @@ msgstr "" msgid "No dates match the current filters." msgstr "" -#: src/components/routes/event/OccurrencesTab/index.tsx:570 +#: src/components/routes/event/OccurrencesTab/index.tsx:580 msgid "No dates match your filters" msgstr "" @@ -6529,7 +6537,7 @@ msgstr "" msgid "No dates scheduled" msgstr "Inga datum schemalagda" -#: src/components/routes/event/OccurrencesTab/index.tsx:570 +#: src/components/routes/event/OccurrencesTab/index.tsx:580 msgid "No dates scheduled yet" msgstr "" @@ -6820,11 +6828,11 @@ msgstr "" msgid "Notify organizer of new orders" msgstr "Meddela arrangören om nya ordrar" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:81 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:83 msgid "November" msgstr "" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:800 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:813 msgid "Number of dates to create" msgstr "" @@ -6849,7 +6857,7 @@ msgid "Occurrence Cancelled" msgstr "" #: src/components/layouts/Event/index.tsx:113 -#: src/components/routes/event/OccurrencesTab/index.tsx:461 +#: src/components/routes/event/OccurrencesTab/index.tsx:463 msgid "Occurrence Schedule" msgstr "" @@ -6871,7 +6879,7 @@ msgstr "" msgid "Occurrences can be configured after creation" msgstr "" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:80 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:82 msgid "October" msgstr "" @@ -6965,7 +6973,7 @@ msgstr "Pågående" #: src/components/common/EventCard/index.tsx:103 #: src/components/layouts/OrganizerHomepage/EventCard/index.tsx:49 -#: src/components/routes/event/OccurrencesTab/index.tsx:316 +#: src/components/routes/event/OccurrencesTab/index.tsx:318 #: src/components/routes/event/OccurrencesTab/OccurrenceEditModal/index.tsx:473 #: src/components/routes/my-tickets/index.tsx:56 #: src/components/routes/product-widget/OccurrenceSelector/index.tsx:122 @@ -7080,7 +7088,7 @@ msgstr "Alternativ" msgid "or" msgstr "eller" -#: src/components/routes/event/OccurrencesTab/index.tsx:593 +#: src/components/routes/event/OccurrencesTab/index.tsx:603 msgid "or add a single date" msgstr "" @@ -7088,7 +7096,7 @@ msgstr "" msgid "Or enable offline payments and disable Stripe" msgstr "Eller aktivera offlinebetalningar och inaktivera Stripe" -#: src/components/routes/event/OccurrencesTab/index.tsx:413 +#: src/components/routes/event/OccurrencesTab/index.tsx:415 msgid "order" msgstr "" @@ -7250,7 +7258,7 @@ msgstr "Order uppdaterades" msgid "Order was cancelled" msgstr "Ordern avbröts" -#: src/components/routes/event/OccurrencesTab/index.tsx:413 +#: src/components/routes/event/OccurrencesTab/index.tsx:415 #: src/components/routes/event/orders.tsx:197 msgid "orders" msgstr "" @@ -7503,7 +7511,7 @@ msgid "Passwords are not the same" msgstr "Lösenorden är inte samma" #: src/components/layouts/OrganizerHomepage/index.tsx:291 -#: src/components/routes/event/OccurrencesTab/index.tsx:484 +#: src/components/routes/event/OccurrencesTab/index.tsx:486 #: src/components/routes/organizer/Reports/EventsPerformanceReport/index.tsx:30 msgid "Past" msgstr "Tidigare" @@ -7707,15 +7715,15 @@ msgstr "Personlig information" msgid "Phone" msgstr "Telefon" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:372 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:379 msgid "Pick an end date" msgstr "" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:380 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:387 msgid "Pick at least one day of the month" msgstr "" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:369 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:376 msgid "Pick at least one day of the week" msgstr "" @@ -7765,7 +7773,7 @@ msgstr "Plattformsintäkter" msgid "Please add at least one option" msgstr "Lägg till minst ett alternativ" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:527 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:540 #: src/hooks/useFormErrorResponseHandler.tsx:18 msgid "Please check the provided information is correct" msgstr "Kontrollera att den angivna informationen är korrekt" @@ -7895,7 +7903,7 @@ msgstr "Populära evenemang (Senaste 14 dagarna)" msgid "Portuguese" msgstr "Portugisiska" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:654 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:667 msgid "Position" msgstr "" @@ -8385,7 +8393,7 @@ msgstr "Hänvisade konton" msgid "Refresh Preview" msgstr "Uppdatera förhandsgranskning" -#: src/components/routes/event/OccurrencesTab/index.tsx:216 +#: src/components/routes/event/OccurrencesTab/index.tsx:218 msgid "Refund all orders for these dates" msgstr "" @@ -8494,11 +8502,11 @@ msgstr "Tar bort slutsålda datum och tider helt från evenemangssidan. När ina msgid "Reopen for new sales" msgstr "" -#: src/components/routes/event/OccurrencesTab/index.tsx:192 +#: src/components/routes/event/OccurrencesTab/index.tsx:194 msgid "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." msgstr "" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:591 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:604 msgid "Repeat every" msgstr "" @@ -8699,7 +8707,7 @@ msgstr "Återkalla erbjudande" msgid "Role" msgstr "Roll" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:772 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:785 msgid "Run until a specific date" msgstr "" @@ -8786,7 +8794,7 @@ msgstr "Exempel på biljettpris" msgid "Sample Venue" msgstr "Exempelplats" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:51 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:53 msgid "Sat" msgstr "" @@ -8836,7 +8844,7 @@ msgstr "" msgid "Save Organizer" msgstr "Spara arrangör" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:864 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:877 msgid "Save Schedule" msgstr "" @@ -8900,11 +8908,12 @@ msgstr "" msgid "Schedule added" msgstr "" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:520 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:530 +#: src/hooks/useOccurrenceGenerationPolling.ts:36 msgid "Schedule created successfully" msgstr "" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:793 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:806 msgid "Schedule ends on" msgstr "" @@ -8916,7 +8925,7 @@ msgstr "Schemalägg för senare" msgid "Schedule Message" msgstr "Schemalägg meddelande" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:755 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:768 msgid "Schedule starts on" msgstr "" @@ -9039,7 +9048,7 @@ msgstr "Sök..." msgid "Seasonal" msgstr "" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:64 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:66 msgid "Second" msgstr "" @@ -9215,7 +9224,7 @@ msgstr "Välj vilka evenemang som ska utlösa denna webhook" msgid "Select..." msgstr "Välj..." -#: src/components/routes/event/OccurrencesTab/index.tsx:495 +#: src/components/routes/event/OccurrencesTab/index.tsx:497 msgid "selected" msgstr "" @@ -9345,7 +9354,7 @@ msgstr "SEO-inställningar" msgid "SEO Title" msgstr "SEO-titel" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:79 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:81 msgid "September" msgstr "" @@ -9373,7 +9382,7 @@ msgstr "Ange standardinställningar för nya evenemang som skapas under denna ar msgid "Set how long each date lasts" msgstr "" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:784 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:797 msgid "Set number of dates" msgstr "" @@ -9393,7 +9402,7 @@ msgstr "Ange startnummer för fakturanumrering. Detta kan inte ändras när fakt msgid "Set to unlimited (remove limit)" msgstr "" -#: src/components/routes/event/OccurrencesTab/index.tsx:575 +#: src/components/routes/event/OccurrencesTab/index.tsx:585 msgid "Set up a recurring schedule to automatically create dates, or add them one at a time." msgstr "" @@ -9410,8 +9419,8 @@ msgstr "" msgid "Set up schedule" msgstr "" -#: src/components/routes/event/OccurrencesTab/index.tsx:532 -#: src/components/routes/event/OccurrencesTab/index.tsx:586 +#: src/components/routes/event/OccurrencesTab/index.tsx:535 +#: src/components/routes/event/OccurrencesTab/index.tsx:596 msgid "Set Up Schedule" msgstr "" @@ -9427,7 +9436,7 @@ msgstr "Konfigurera din organisation" msgid "Set up your schedule" msgstr "" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:569 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:582 msgid "Set Up Your Schedule" msgstr "" @@ -9564,7 +9573,7 @@ msgstr "Visa moms och avgifter separat" msgid "Showing {0} of {totalRows} records" msgstr "Visar {0} av {totalRows} poster" -#: src/components/routes/event/OccurrencesTab/index.tsx:614 +#: src/components/routes/event/OccurrencesTab/index.tsx:624 msgid "Showing {0}–{1} of {2}" msgstr "" @@ -9645,7 +9654,7 @@ msgstr "Sociala länkar och webbplats" #: src/components/common/ProductsTable/SortableProduct/index.tsx:387 #: src/components/modals/ManageOccurrenceModal/index.tsx:186 -#: src/components/routes/event/OccurrencesTab/index.tsx:369 +#: src/components/routes/event/OccurrencesTab/index.tsx:371 msgid "Sold" msgstr "Sålda" @@ -9753,7 +9762,7 @@ msgstr "" msgid "Standard product with a fixed price" msgstr "Standardprodukt med ett fast pris" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:696 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:709 msgid "Start" msgstr "" @@ -9846,7 +9855,7 @@ msgstr "" #: src/components/routes/admin/Messages/index.tsx:120 #: src/components/routes/admin/Messages/index.tsx:167 #: src/components/routes/admin/Messages/index.tsx:294 -#: src/components/routes/event/OccurrencesTab/index.tsx:326 +#: src/components/routes/event/OccurrencesTab/index.tsx:328 #: src/components/routes/event/Reports/OccurrenceSummaryReport/index.tsx:51 #: src/components/routes/event/Reports/PromoCodesReport/index.tsx:88 #: src/components/routes/organizer/Reports/EventsPerformanceReport/index.tsx:62 @@ -10104,7 +10113,7 @@ msgstr "Sommarens musikfestival {0}" msgid "Summer Music Festival 2025" msgstr "Sommarens musikfestival 2025" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:52 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:54 msgid "Sun" msgstr "" @@ -10231,7 +10240,7 @@ msgstr "Berätta om ditt evenemang" msgid "Tell us about your organization. This information will be displayed on your event pages." msgstr "Berätta om din organisation. Denna information kommer att visas på dina evenemangssidor." -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:573 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:586 msgid "Tell us how often your event repeats and we'll create all the dates for you." msgstr "" @@ -10325,7 +10334,7 @@ msgstr "E-postadressen har ändrats. Deltagaren kommer att få en ny biljett til msgid "The event you're looking for is not available at the moment. It may have been removed, expired, or the URL might be incorrect." msgstr "Evenemanget du letar efter är inte tillgängligt just nu. Det kan ha tagits bort, löpt ut eller så kan webbadressen vara felaktig." -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:756 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:769 msgid "The first date this schedule will generate from." msgstr "" @@ -10345,7 +10354,7 @@ msgstr "Länken du försöker öppna har gått ut eller är inte längre giltig. msgid "The link you clicked is invalid." msgstr "Länken du klickade på är ogiltig." -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:840 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:853 msgid "The maximum is {MAX_PREVIEW} sessions. Please reduce the date range, frequency, or number of sessions per day." msgstr "" @@ -10481,7 +10490,7 @@ msgstr "Dessa mallar används som standard för alla evenemang i din organisatio 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." -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:65 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:67 msgid "Third" msgstr "" @@ -10744,7 +10753,7 @@ msgstr "Detta syns inte för kunder, men hjälper dig att identifiera affiliaten msgid "Throughput" msgstr "" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:49 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:51 msgid "Thu" msgstr "" @@ -10881,7 +10890,7 @@ msgstr "Produkter med nivåer låter dig erbjuda flera prisalternativ för samma msgid "TikTok" msgstr "TikTok" -#: src/components/routes/event/OccurrencesTab/index.tsx:290 +#: src/components/routes/event/OccurrencesTab/index.tsx:292 msgid "Time" msgstr "" @@ -10912,7 +10921,7 @@ msgstr "Antal gånger använd" msgid "Timezone" msgstr "Tidszon" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:702 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:715 msgid "to" msgstr "" @@ -11056,7 +11065,7 @@ msgstr "Spårning & Analys" msgid "Try a different search term or filter" msgstr "" -#: src/components/routes/event/OccurrencesTab/index.tsx:574 +#: src/components/routes/event/OccurrencesTab/index.tsx:584 msgid "Try adjusting your filters to see more dates." msgstr "" @@ -11069,7 +11078,7 @@ msgstr "Prova en annan e-postadress" msgid "Try Hi.Events Free" msgstr "Prova Hi.Events gratis" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:47 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:49 msgid "Tue" msgstr "" @@ -11232,7 +11241,7 @@ msgstr "Ej betrodd" #: src/components/common/EventsDashboardStatusButtons/index.tsx:20 #: src/components/common/EventStatusBadge/index.tsx:16 #: src/components/layouts/OrganizerHomepage/index.tsx:285 -#: src/components/routes/event/OccurrencesTab/index.tsx:483 +#: src/components/routes/event/OccurrencesTab/index.tsx:485 #: src/components/routes/organizer/Reports/EventsPerformanceReport/index.tsx:33 msgid "Upcoming" msgstr "Kommande" @@ -11880,7 +11889,7 @@ msgstr "Webhooks" msgid "Website" msgstr "Webbplats" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:48 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:50 msgid "Wed" msgstr "" @@ -11888,16 +11897,16 @@ msgstr "" msgid "Wednesday" msgstr "" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:94 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:96 msgid "week" msgstr "" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:57 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:59 #: src/components/routes/product-widget/OccurrenceSelector/index.tsx:35 msgid "Weekly" msgstr "" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:102 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:104 msgid "weeks" msgstr "" @@ -11953,7 +11962,7 @@ msgstr "Vilka produkter ska den här kapaciteten gälla för?" msgid "What time will you be arriving?" msgstr "Vilken tid kommer du?" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:688 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:701 msgid "What time?" msgstr "" @@ -12140,7 +12149,7 @@ msgstr "Skriv ditt meddelande här..." msgid "X (Twitter)" msgstr "X (Twitter)" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:96 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:98 msgid "year" msgstr "" @@ -12150,12 +12159,12 @@ msgstr "" msgid "Year to date" msgstr "Hittills i år" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:59 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:61 #: src/components/routes/product-widget/OccurrenceSelector/index.tsx:43 msgid "Yearly" msgstr "" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:104 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:106 msgid "years" msgstr "" @@ -12200,7 +12209,7 @@ msgstr "Du kan konfigurera ytterligare serviceavgifter och skatter i dina kontoi msgid "You can create a promo code which targets this product on the" msgstr "Du kan skapa en kampanjkod som riktar sig mot den här produkten på" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:823 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:836 msgid "You can override this for individual dates later." msgstr "" diff --git a/frontend/src/locales/sk.js b/frontend/src/locales/sk.js index 7bf32e0622..9f7f528906 100644 --- a/frontend/src/locales/sk.js +++ b/frontend/src/locales/sk.js @@ -1 +1 @@ -/*eslint-disable*/module.exports={messages:JSON.parse("{\"f8qS7T\":\"'Zatiaľ nie je čo zobraziť'\",\"J/hVSQ\":[[\"0\"]],\"Jv22kr\":[[\"0\"],\" <0>checked in successfully\"],\"yxhYRZ\":[[\"0\"],\" úspešne <0>odhlásený\"],\"KMgp2+\":[[\"0\"],\" dostupných\"],\"Pmr5xp\":[[\"0\"],\" úspešne vytvorené\"],\"FImCSc\":[[\"0\"],\" úspešne aktualizované\"],\"KOr9b4\":[[\"0\"],\"'s Events\"],\"cU8MWb\":[[\"0\"],\"/\",[\"1\"],\" checked in\"],\"Vjij1k\":[[\"days\"],\" dní, \",[\"hours\"],\" hodín, \",[\"minutes\"],\" minút a \",[\"seconds\"],\" sekúnd\"],\"f3RdEk\":[[\"hours\"],\" hodín, \",[\"minutes\"],\" minút a \",[\"seconds\"],\" sekúnd\"],\"fyE7Au\":[[\"minutes\"],\" minút a \",[\"seconds\"],\" sekúnd\"],\"NlQ0cx\":[\"Prvá udalosť organizátora \",[\"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://vaša-webová-stránka.sk\",\"qnSLLW\":\"<0>Zadajte cenu bez daní a poplatkov.<1>Dane a poplatky môžete pridať nižšie.\",\"ZjMs6e\":\"<0>Počet produktov dostupných pre tento produkt<1>Táto hodnota môže byť prepísaná, ak sú s týmto produktom spojené <2>Limity kapacity.\",\"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 minút a 0 sekúnd\",\"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\":\"Vstup dátumu. Ideálne na otázky o dátume narodenia atď.\",\"6euFZ/\":[\"Predvolený \",[\"type\"],\" sa automaticky aplikuje na všetky nové produkty. Môžete to zmeniť pre každý produkt zvlášť.\"],\"SMUbbQ\":\"Rozbaľovací zoznam umožňuje iba jeden výber\",\"qv4bfj\":\"Poplatok, napríklad rezervačný alebo servisný\",\"POT0K/\":\"Pevná suma za produkt. Napr. 0,50 € za produkt\",\"f4vJgj\":\"Viacriadkový textový vstup\",\"OIPtI5\":\"Percento z ceny produktu. Napr. 3,5 % z ceny produktu\",\"ZthcdI\":\"Promo kód bez zľavy môže byť použitý na odhalenie skrytých produktov.\",\"AG/qmQ\":\"Prepínač má viacero možností, ale vybrať možno iba jednu.\",\"h179TP\":\"Krátky popis udalosti, ktorý sa zobrazí vo výsledkoch vyhľadávania a pri zdieľaní na sociálnych sieťach. Predvolene sa použije popis udalosti\",\"WKMnh4\":\"Jednoriadkový textový vstup\",\"BHZbFy\":\"Jedna otázka na objednávku. Napr. Aká je vaša doručovacia adresa?\",\"Fuh+dI\":\"Jedna otázka na produkt. Napr. Aká je vaša veľkosť trička?\",\"RlJmQg\":\"Štandardná daň, napríklad DPH alebo GST\",\"uIKNjo\":\"About the event\",\"3pykXZ\":\"Prijímajte bankové prevody, šeky alebo iné offline platobné metódy\",\"hrvLf4\":\"Prijímajte platby kreditnou kartou cez Stripe\",\"bfXQ+N\":\"Prijať pozvánku\",\"AeXO77\":\"Účet\",\"lkNdiH\":\"Názov účtu\",\"Puv7+X\":\"Nastavenia účtu\",\"OmylXO\":\"Účet bol úspešne aktualizovaný\",\"7L01XJ\":\"Akcie\",\"FQBaXG\":\"Aktivovať\",\"5T2HxQ\":\"Dátum aktivácie\",\"F6pfE9\":\"Aktívne\",\"/PN1DA\":\"Pridajte popis pre tento zoznam odbavenia\",\"0/vPdA\":\"Pridajte poznámky o účastníkovi. Tieto nebudú viditeľné pre účastníka.\",\"Or1CPR\":\"Pridajte poznámky o účastníkovi...\",\"l3sZO1\":\"Pridajte poznámky k objednávke. Tieto nebudú viditeľné pre zákazníka.\",\"xMekgu\":\"Pridajte poznámky k objednávke...\",\"PGPGsL\":\"Pridať popis\",\"gMK0ps\":\"Add event details and and manage event settings.\",\"OveehC\":\"Pridajte pokyny pre offline platby (napr. údaje bankového prevodu, kam posielať šeky, termíny platby)\",\"LTVoRa\":\"Add More products\",\"ApsD9J\":\"Pridať nové\",\"TZxnm8\":\"Pridať možnosť\",\"24l4x6\":\"Pridať produkt\",\"8q0EdE\":\"Pridať produkt do kategórie\",\"YvCknQ\":\"Add products\",\"Cw27zP\":\"Add question\",\"yWiPh+\":\"Pridať daň alebo poplatok\",\"goOKRY\":\"Pridať úroveň\",\"oZW/gT\":\"Pridať do kalendára\",\"pn5qSs\":\"Ďalšie informácie\",\"Y8DIQy\":\"Additional Options\",\"Du6bPw\":\"Adresa\",\"NY/x1b\":\"Adresa riadok 1\",\"POdIrN\":\"Adresa riadok 1\",\"cormHa\":\"Adresa riadok 2\",\"gwk5gg\":\"Adresa riadok 2\",\"U3pytU\":\"Správca\",\"HLDaLi\":\"Správcovia majú plný prístup k udalostiam a nastaveniam účtu.\",\"W7AfhC\":\"Všetci účastníci tejto udalosti\",\"cde2hc\":\"Všetky produkty\",\"5CQ+r0\":\"Povoliť odbavenie účastníkov s nezaplatenými objednávkami\",\"ipYKgM\":\"Povoliť indexovanie vyhľadávačmi\",\"LRbt6D\":\"Umožniť vyhľadávačom indexovať túto udalosť\",\"+MHcJD\":\"Almost there! We're just waiting for your payment to be processed. This should only take a few seconds..\",\"ApOYO8\":\"Úžasné, Udalosť, Kľúčové slová...\",\"hehnjM\":\"Suma\",\"R2O9Rg\":[\"Zaplatená suma (\",[\"0\"],\")\"],\"V7MwOy\":\"Pri načítaní stránky nastala chyba\",\"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\":\"Nastala neočakávaná chyba.\",\"byKna+\":\"Nastala neočakávaná chyba. Skúste to znova.\",\"ubdMGz\":\"Všetky otázky od držiteľov produktov budú odoslané na túto e-mailovú adresu. Táto adresa bude tiež použitá ako adresa \\\"reply-to\\\" pre všetky e-maily odoslané z tejto udalosti\",\"aAIQg2\":\"Vzhľad\",\"Ym1gnK\":\"použité\",\"sy6fss\":[\"Platí pre \",[\"0\"],\" produktov\"],\"kadJKg\":\"Platí pre 1 produkt\",\"DB8zMK\":\"Použiť\",\"GctSSm\":\"Použiť promo kód\",\"ARBThj\":[\"Použiť tento \",[\"type\"],\" na všetky nové produkty\"],\"S0ctOE\":\"Archivovať udalosť\",\"TdfEV7\":\"Archivované\",\"A6AtLP\":\"Archived Events\",\"q7TRd7\":\"Naozaj chcete aktivovať tohto účastníka?\",\"TvkW9+\":\"Naozaj chcete archivovať túto udalosť?\",\"/CV2x+\":\"Naozaj chcete zrušiť tohto účastníka? Ich lístok bude zneplatnený.\",\"YgRSEE\":\"Naozaj chcete odstrániť tento promo kód?\",\"iU234U\":\"Are you sure you want to delete this question?\",\"CMyVEK\":\"Naozaj chcete nastaviť túto udalosť ako koncept? Udalosť bude skrytá pred verejnosťou.\",\"mEHQ8I\":\"Are you sure you want to make this event public? This will make the event visible to the public\",\"s4JozW\":\"Naozaj chcete obnoviť túto udalosť? Bude obnovená ako koncept.\",\"vJuISq\":\"Naozaj chcete odstrániť toto priradenie kapacity?\",\"baHeCz\":\"Naozaj chcete odstrániť tento zoznam odbavení?\",\"LBLOqH\":\"Opýtať sa raz na objednávku\",\"wu98dY\":\"Opýtať sa raz na produkt\",\"ss9PbX\":\"Účastník\",\"m0CFV2\":\"Údaje účastníka\",\"QKim6l\":\"Účastník nenájdený\",\"R5IT/I\":\"Attendee Notes\",\"lXcSD2\":\"Attendee questions\",\"HT/08n\":\"Lístok účastníka\",\"9SZT4E\":\"Účastníci\",\"iPBfZP\":\"Registrovaní účastníci\",\"7KxcHR\":\"Attendees with a specific product\",\"IMJ6rh\":\"Automatická zmena veľkosti\",\"vZ5qKF\":\"Automaticky meniť výšku widgetu podľa obsahu. Ak je zakázané, widget vyplní výšku kontajnera.\",\"4lVaWA\":\"Čaká na platbu offline\",\"2rHwhl\":\"Čaká na platbu offline\",\"3wF4Q/\":\"Čaká na platbu\",\"ioG+xt\":\"Čaká na platbu\",\"3PmQfI\":\"Awesome Event\",\"Yrbm6T\":\"Awesome Organizer Ltd.\",\"9002sI\":\"Back to all events\",\"A302fe\":\"Späť na stránku udalosti\",\"VCoEm+\":\"Späť na prihlásenie\",\"k1bLf+\":\"Farba pozadia\",\"I7xjqg\":\"Typ pozadia\",\"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\":\"Fakturačná adresa\",\"/xC/im\":\"Nastavenia fakturácie\",\"rp/zaT\":\"Brazílska portugalčina\",\"whqocw\":\"Registráciou súhlasíte s našimi <0>Podmienkami služby a <1>Zásadami ochrany osobných údajov.\",\"bcCn6r\":\"Typ výpočtu\",\"+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\":\"Zrušiť\",\"Gjt/py\":\"Zrušiť zmenu e-mailu\",\"tVJk4q\":\"Zrušiť objednávku\",\"Os6n2a\":\"Zrušiť objednávku\",\"Mz7Ygx\":[\"Zrušiť objednávku \",[\"0\"]],\"3tTjpi\":\"Canceling will cancel all products associated with this order, and release the products back into the available pool.\",\"vv7kpg\":\"Zrušené\",\"U7nGvl\":\"Cannot Check In\",\"QyjCeq\":\"Kapacita\",\"V6Q5RZ\":\"Priradenie kapacity bolo úspešne vytvorené\",\"k5p8dz\":\"Priradenie kapacity bolo úspešne odstránené\",\"nDBs04\":\"Správa kapacity\",\"ddha3c\":\"Kategórie umožňujú zoskupovať produkty. Napríklad môžete mať kategóriu pre \\\"Lístky\\\" a ďalšiu pre \\\"Tovar\\\".\",\"iS0wAT\":\"Kategórie pomáhajú organizovať produkty. Tento názov sa zobrazí na verejnej stránke udalosti.\",\"eorM7z\":\"Kategórie boli úspešne preusporiadané.\",\"3EXqwa\":\"Kategória bola úspešne vytvorená\",\"77/YgG\":\"Change Cover\",\"GptGxg\":\"Zmeniť heslo\",\"xMDm+I\":\"Check In\",\"p2WLr3\":[\"Odbavenie \",[\"0\"],\" \",[\"1\"]],\"D6+U20\":\"Odbavenie a označenie objednávky ako zaplatenej\",\"QYLpB4\":\"Iba odbavenie\",\"/Ta1d4\":\"Check Out\",\"5LDT6f\":\"Pozrite si túto udalosť!\",\"gXcPxc\":\"Check-in\",\"fVUbUy\":\"Check-In List created successfully\",\"+CeSxK\":\"Zoznam odbavení bol úspešne odstránený\",\"+hBhWk\":\"Zoznam odbavení vypršal\",\"mBsBHq\":\"Zoznam odbavení nie je aktívny\",\"vPqpQG\":\"Zoznam odbavení nenájdený\",\"tejfAy\":\"Zoznamy odbavení\",\"hD1ocH\":\"URL odbavenia skopírovaná do schránky\",\"CNafaC\":\"Možnosti zaškrtávacieho políčka umožňujú viacnásobný výber\",\"SpabVf\":\"Zaškrtávacie políčka\",\"CRu4lK\":\"Odbavený\",\"znIg+z\":\"Pokladňa\",\"1WnhCL\":\"Nastavenia pokladne\",\"6imsQS\":\"Čínština (zjednodušená)\",\"JjkX4+\":\"Vyberte farbu pozadia\",\"/Jizh9\":\"Vyberte účet\",\"3wV73y\":\"Mesto\",\"FG98gC\":\"Vymazať text vyhľadávania\",\"EYeuMv\":\"click here\",\"sby+1/\":\"Kliknite na kopírovanie\",\"yz7wBu\":\"Zavrieť\",\"62Ciis\":\"Zavrieť bočný panel\",\"EWPtMO\":\"Kód\",\"ercTDX\":\"Kód musí mať 3 až 50 znakov\",\"oqr9HB\":\"Zbaliť tento produkt pri prvom načítaní stránky udalosti\",\"jZlrte\":\"Farba\",\"Vd+LC3\":\"Farba musí byť platný hex kód. Príklad: #ffffff\",\"1HfW/F\":\"Farby\",\"VZeG/A\":\"Čoskoro\",\"yPI7n9\":\"Kľúčové slová oddelené čiarkou popisujúce udalosť. Tieto budú použité vyhľadávačmi na kategorizáciu a indexovanie udalosti\",\"NPZqBL\":\"Dokončiť objednávku\",\"guBeyC\":\"Complete payment\",\"C8HNV2\":\"Dokončiť platbu\",\"qqWcBV\":\"Dokončené\",\"6HK5Ct\":\"Dokončené objednávky\",\"NWVRtl\":\"Dokončené objednávky\",\"DwF9eH\":\"Kód komponentu\",\"Tf55h7\":\"Nakonfigurovaná zľava\",\"7VpPHA\":\"Potvrdiť\",\"ZaEJZM\":\"Potvrdiť zmenu e-mailu\",\"yjkELF\":\"Potvrdiť nové heslo\",\"xnWESi\":\"Potvrdiť heslo\",\"p2/GCq\":\"Potvrdiť heslo\",\"wnDgGj\":\"Potvrdzovanie e-mailovej adresy...\",\"pbAk7a\":\"Pripojiť Stripe\",\"UMGQOh\":\"Pripojiť sa cez Stripe\",\"QKLP1W\":\"Connect your Stripe account to start receiving payments.\",\"5lcVkL\":\"Podrobnosti pripojenia\",\"yAej59\":\"Content background color\",\"xGVfLh\":\"Pokračovať\",\"X++RMT\":\"Continue button text\",\"AfNRFG\":\"Text tlačidla Pokračovať\",\"lIbwvN\":\"Continue Event Setup\",\"HB22j9\":\"Continue set up\",\"bZEa4H\":\"Continue Stripe Connect Setup\",\"6V3Ea3\":\"Skopírované\",\"T5rdis\":\"skopírované do schránky\",\"he3ygx\":\"Kopírovať\",\"r2B2P8\":\"Kopírovať URL odbavenia\",\"8+cOrS\":\"Copy details to all attendees\",\"ENCIQz\":\"Kopírovať odkaz\",\"E6nRW7\":\"Kopírovať URL\",\"JNCzPW\":\"Krajina\",\"IF7RiR\":\"Obal\",\"hYgDIe\":\"Vytvoriť\",\"b9XOHo\":[\"Vytvoriť \",[\"0\"]],\"k9RiLi\":\"Vytvoriť produkt\",\"6kdXbW\":\"Vytvoriť promo kód\",\"n5pRtF\":\"Vytvoriť lístok\",\"X6sRve\":[\"Create an account or <0>\",[\"0\"],\" to get started\"],\"nx+rqg\":\"vytvoriť organizátora\",\"ipP6Ue\":\"Vytvoriť účastníka\",\"VwdqVy\":\"Vytvoriť priradenie kapacity\",\"EwoMtl\":\"Vytvoriť kategóriu\",\"XletzW\":\"Vytvoriť kategóriu\",\"WVbTwK\":\"Vytvoriť zoznam odbavení\",\"uN355O\":\"Vytvoriť udalosť\",\"BOqY23\":\"Vytvoriť nové\",\"kpJAeS\":\"Vytvoriť organizátora\",\"a0EjD+\":\"Vytvoriť produkt\",\"+scrJC\":\"Create products for your event, set prices, and manage available quantity.\",\"sYpiZP\":\"Vytvoriť promo kód\",\"B3Mkdt\":\"Vytvoriť otázku\",\"UKfi21\":\"Vytvoriť daň alebo poplatok\",\"d+F6q9\":\"Vytvorené\",\"Q2lUR2\":\"Mena\",\"DCKkhU\":\"Aktuálne heslo\",\"uIElGP\":\"Vlastná URL mapy\",\"UEqXyt\":\"Vlastný rozsah\",\"876pfE\":\"Zákazník\",\"QOg2Sf\":\"Prispôsobte nastavenia e-mailu a notifikácií pre túto udalosť\",\"Y9Z/vP\":\"Prispôsobte domovskú stránku udalosti a správy pri pokladni\",\"2E2O5H\":\"Prispôsobte rôzne nastavenia pre túto udalosť\",\"iJhSxe\":\"Prispôsobte SEO nastavenia pre túto udalosť\",\"KIhhpi\":\"Prispôsobte stránku svojej udalosti\",\"nrGWUv\":\"Customize your event page to match your brand and style.\",\"Zz6Cxn\":\"Nebezpečná zóna\",\"ZQKLI1\":\"Nebezpečná zóna\",\"7p5kLi\":\"Panel\",\"mYGY3B\":\"Dátum\",\"JvUngl\":\"Dátum a čas\",\"JJhRbH\":\"Kapacita prvého dňa\",\"cnGeoo\":\"Vymazať\",\"jRJZxD\":\"Odstrániť kapacitu\",\"VskHIx\":\"Odstrániť kategóriu\",\"Qrc8RZ\":\"Odstrániť zoznam odbavení\",\"WHf154\":\"Odstrániť kód\",\"heJllm\":\"Delete Cover\",\"KWa0gi\":\"Delete Image\",\"1l14WA\":\"Delete product\",\"IatsLx\":\"Delete question\",\"Nu4oKW\":\"Popis\",\"YC3oXa\":\"Popis pre personál odbavenia\",\"URmyfc\":\"Podrobnosti\",\"1lRT3t\":\"Zakázanie tejto kapacity bude sledovať predaje, ale nezastaví ich po dosiahnutí limitu\",\"H6Ma8Z\":\"Zľava\",\"ypJ62C\":\"Zľava %\",\"3LtiBI\":[\"Zľava v \",[\"0\"]],\"C8JLas\":\"Typ zľavy\",\"1QfxQT\":\"Dismiss\",\"DZlSLn\":\"Popis dokumentu\",\"cVq+ga\":\"Don't have an account? <0>Sign Up\",\"3F1nBX\":\"Dar / Zaplaťte, koľko chcete\",\"OvNbls\":\"Stiahnuť .ics\",\"kodV18\":\"Stiahnuť CSV\",\"CELKku\":\"Stiahnuť faktúru\",\"LQrXcu\":\"Stiahnuť faktúru\",\"QIodqd\":\"Stiahnuť QR kód\",\"yhjU+j\":\"Sťahovanie faktúry\",\"uABpqP\":\"Drag and drop or click\",\"CfKofC\":\"Rozbaľovací zoznam\",\"JzLDvy\":\"Duplicate Capacity Assignments\",\"ulMxl+\":\"Duplicate Check-In Lists\",\"vi8Q/5\":\"Duplikovať udalosť\",\"3ogkAk\":\"Duplikovať udalosť\",\"Yu6m6X\":\"Duplicate Event Cover Image\",\"+fA4C7\":\"Možnosti duplikovania\",\"SoiDyI\":\"Duplicate Products\",\"57ALrd\":\"Duplicate Promo Codes\",\"83Hu4O\":\"Duplicate Questions\",\"20144c\":\"Duplicate Settings\",\"7Cx5It\":\"Skorý vtáčik\",\"ePK91l\":\"Upraviť\",\"N6j2JH\":[\"Upraviť \",[\"0\"]],\"kBkYSa\":\"Upraviť kapacitu\",\"oHE9JT\":\"Upraviť priradenie kapacity\",\"j1Jl7s\":\"Upraviť kategóriu\",\"FU1gvP\":\"Upraviť zoznam odbavení\",\"iFgaVN\":\"Upraviť kód\",\"jrBSO1\":\"Upraviť organizátora\",\"tdD/QN\":\"Upraviť produkt\",\"n143Tq\":\"Upraviť kategóriu produktov\",\"9BdS63\":\"Upraviť promo kód\",\"O0CE67\":\"Edit question\",\"EzwCw7\":\"Upraviť otázku\",\"poTr35\":\"Upraviť používateľa\",\"GTOcxw\":\"Upraviť používateľa\",\"pqFrv2\":\"napr. 2.50 pre $2.50\",\"3yiej1\":\"napr. 23.5 pre 23.5%\",\"O3oNi5\":\"E-mail\",\"VxYKoK\":\"Nastavenia e-mailu a notifikácií\",\"ATGYL1\":\"E-mailová adresa\",\"hzKQCy\":\"E-mailová adresa\",\"HqP6Qf\":\"Zmena e-mailu bola úspešne zrušená\",\"mISwW1\":\"Zmena e-mailu čaká na potvrdenie\",\"APuxIE\":\"Potvrdenie e-mailu znovu odoslané\",\"YaCgdO\":\"Potvrdenie e-mailu bolo úspešne znovu odoslané\",\"jyt+cx\":\"Správa v päte e-mailu\",\"I6F3cp\":\"E-mail nie je overený\",\"NTZ/NX\":\"Kód na vloženie\",\"4rnJq4\":\"Vložiť skript\",\"8oPbg1\":\"Povoliť fakturáciu\",\"j6w7d/\":\"Povoliť túto kapacitu na zastavenie predaja produktov po dosiahnutí limitu\",\"VFv2ZC\":\"Dátum ukončenia\",\"237hSL\":\"Ukončené\",\"nt4UkP\":\"Ended Events\",\"lYGfRP\":\"Angličtina\",\"MhVoma\":\"Zadajte sumu bez daní a poplatkov.\",\"SlfejT\":\"Chyba\",\"3Z223G\":\"Chyba pri potvrdzovaní e-mailovej adresy\",\"a6gga1\":\"Chyba pri potvrdzovaní zmeny e-mailu\",\"5/63nR\":\"EUR\",\"0pC/y6\":\"Udalosť\",\"CFLUfD\":\"Event created successfully 🎉\",\"/dgc8E\":\"Dátum udalosti\",\"0Zptey\":\"Predvolené nastavenia udalosti\",\"QcCPs8\":\"Podrobnosti udalosti\",\"6fuA9p\":\"Udalosť bola úspešne duplikovaná\",\"AEuj2m\":\"Domovská stránka udalosti\",\"Xe3XMd\":\"Event is not visible to the public\",\"4pKXJS\":\"Event is visible to the public\",\"ClwUUD\":\"Miesto udalosti a podrobnosti o mieste konania\",\"OopDbA\":\"Event page\",\"4/If97\":\"Aktualizácia stavu udalosti zlyhala. Skúste to neskôr.\",\"btxLWj\":\"Stav udalosti aktualizovaný\",\"nMU2d3\":\"Event URL\",\"tst44n\":\"Udalosti\",\"sZg7s1\":\"Dátum vypršania\",\"KnN1Tu\":\"Vyprší\",\"uaSvqt\":\"Dátum vypršania\",\"GS+Mus\":\"Exportovať\",\"9xAp/j\":\"Nepodarilo sa zrušiť účastníka\",\"ZpieFv\":\"Nepodarilo sa zrušiť objednávku\",\"z6tdjE\":\"Failed to delete message. Please try again.\",\"xDzTh7\":\"Nepodarilo sa stiahnuť faktúru. Skúste to znovu.\",\"9zSt4h\":\"Failed to export attendees. Please try again.\",\"2uGNuE\":\"Failed to export orders. Please try again.\",\"d+KKMz\":\"Nepodarilo sa načítať zoznam odbavení\",\"ZQ15eN\":\"Nepodarilo sa znovu odoslať e-mail s lístkom\",\"ejXy+D\":\"Nepodarilo sa zoradiť produkty\",\"PLUB/s\":\"Poplatok\",\"/mfICu\":\"Poplatky\",\"LyFC7X\":\"Filtrovať objednávky\",\"cSev+j\":\"Filtre\",\"CVw2MU\":[\"Filtre (\",[\"activeFilterCount\"],\")\"],\"wPmXlA\":\"Číslo prvej faktúry\",\"V1EGGU\":\"Meno\",\"kODvZJ\":\"Meno\",\"S+tm06\":\"Meno musí mať 1 až 50 znakov\",\"1g0dC4\":\"First Name, Last Name, and Email Address are default questions and are always included in the checkout process.\",\"Rs/IcB\":\"Prvé použitie\",\"TpqW74\":\"Pevná\",\"irpUxR\":\"Pevná suma\",\"TF9opW\":\"Flash is not available on this device\",\"UNMVei\":\"Zabudli ste heslo?\",\"2POOFK\":\"Zadarmo\",\"P/OAYJ\":\"Bezplatný produkt\",\"vAbVy9\":\"Bezplatný produkt, nevyžadujú sa platobné informácie\",\"nLC6tu\":\"Francúzština\",\"Weq9zb\":\"Všeobecné\",\"DDcvSo\":\"Nemčina\",\"4GLxhy\":\"Getting Started\",\"4D3rRj\":\"Späť na profil\",\"9LCqFI\":\"Go to event homepage\",\"ebIDwV\":\"Google Kalendár\",\"RUz8o/\":\"gross sales\",\"IgcAGN\":\"Hrubý predaj\",\"yRg26W\":\"Hrubý predaj\",\"R4r4XO\":\"Hostia\",\"26pGvx\":\"Máte promo kód?\",\"V7yhws\":\"hello@awesome-events.com\",\"6K/IHl\":\"Tu je príklad, ako môžete použiť komponent vo svojej aplikácii.\",\"Y1SSqh\":\"Tu je React komponent, ktorý môžete použiť na vloženie widgetu do svojej aplikácie.\",\"QuhVpV\":[\"Ahoj \",[\"0\"],\" 👋\"],\"Ow9Hz5\":[\"Hi.Events Conference \",[\"0\"]],\"verBst\":\"Hi.Events Conference Center\",\"6eMEQO\":\"hi.events logo\",\"C4qOW8\":\"Skryté pred verejnosťou\",\"gt3Xw9\":\"hidden question\",\"g3rqFe\":\"hidden questions\",\"k3dfFD\":\"Skryté otázky sú viditeľné iba pre organizátora udalosti, nie pre zákazníka.\",\"vLyv1R\":\"Skryť\",\"Mkkvfd\":\"Hide getting started page\",\"mFn5Xz\":\"Hide hidden questions\",\"YHsF9c\":\"Skryť produkt po dátume ukončenia predaja\",\"06s3w3\":\"Skryť produkt pred dátumom začiatku predaja\",\"axVMjA\":\"Skryť produkt, pokiaľ používateľ nemá platný promo kód\",\"ySQGHV\":\"Skryť produkt po vypredaní\",\"SCimta\":\"Hide the getting started page from the sidebar\",\"5xR17G\":\"Skryť tento produkt pred zákazníkmi\",\"Da29Y6\":\"Skryť túto otázku\",\"fvDQhr\":\"Skryť túto úroveň pred používateľmi\",\"lNipG+\":\"Skrytie produktu zabráni používateľom vidieť ho na stránke udalosti.\",\"ZOBwQn\":\"Dizajn domovskej stránky\",\"PRuBTd\":\"Návrhár domovskej stránky\",\"YjVNGZ\":\"Náhľad domovskej stránky\",\"c3E/kw\":\"Homer\",\"8k8Njd\":\"Koľko minút má zákazník na dokončenie objednávky. Odporúčame aspoň 15 minút\",\"ySxKZe\":\"Koľkokrát môže byť tento kód použitý?\",\"dZsDbK\":[\"Prekročený limit HTML znakov: \",[\"htmlLength\"],\"/\",[\"maxLength\"]],\"fYyXCd\":\"https://example-maps-service.com/...\",\"uOXLV3\":\"Súhlasím s <0>podmienkami a ustanoveniami\",\"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\":\"Ak je povolené, personál odbavenia môže označiť účastníkov ako odbavených alebo označiť objednávku ako zaplatenú a odbavenie. Ak je zakázané, účastníci spojení s nezaplatenými objednávkami nemôžu byť odbavení.\",\"muXhGi\":\"Ak je povolené, organizátor dostane e-mailovú notifikáciu pri novej objednávke\",\"6fLyj/\":\"Ak ste túto zmenu nepožadovali, okamžite zmeňte heslo.\",\"n/ZDCz\":\"Obrázok bol úspešne odstránený\",\"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\":\"Obrázok bol úspešne nahraný\",\"VyUuZb\":\"URL obrázka\",\"ibi52/\":\"Image width must be at least 900px and height at least 50px\",\"NoNwIX\":\"Neaktívne\",\"T0K0yl\":\"Neaktívni používatelia sa nemôžu prihlásiť.\",\"kO44sp\":\"Zahrňte podrobnosti o pripojení pre vašu online udalosť. Tieto podrobnosti sa zobrazia na stránke súhrnu objednávky a stránke lístka účastníka.\",\"FlQKnG\":\"Zahrnúť dane a poplatky do ceny\",\"Vi+BiW\":[\"Obsahuje \",[\"0\"],\" produktov\"],\"lpm0+y\":\"Obsahuje 1 produkt\",\"UiAk5P\":\"Vložiť obrázok\",\"OyLdaz\":\"Pozvánka znovu odoslaná!\",\"HE6KcK\":\"Pozvánka odvolaná!\",\"SQKPvQ\":\"Pozvať používateľa\",\"bKOYkd\":\"Faktúra bola úspešne stiahnutá\",\"alD1+n\":\"Poznámky k faktúre\",\"kOtCs2\":\"Číslovanie faktúr\",\"UZ2GSZ\":\"Nastavenia faktúry\",\"PgdQrx\":\"Issue refund\",\"HX5SVx\":\"Položka\",\"KFXip/\":\"Ján\",\"XcgRvb\":\"Novák\",\"87a/t/\":\"Popis\",\"vXIe7J\":\"Jazyk\",\"2LMsOq\":\"Posledných 12 mesiacov\",\"vfe90m\":\"Posledných 14 dní\",\"aK4uBd\":\"Posledných 24 hodín\",\"uq2BmQ\":\"Posledných 30 dní\",\"bB6Ram\":\"Posledných 48 hodín\",\"VlnB7s\":\"Posledných 6 mesiacov\",\"ct2SYD\":\"Posledných 7 dní\",\"XgOuA7\":\"Posledných 90 dní\",\"I3yitW\":\"Posledné prihlásenie\",\"1ZaQUH\":\"Priezvisko\",\"UXBCwc\":\"Priezvisko\",\"tKCBU0\":\"Naposledy použité\",\"tITjB1\":\"Learn more about Stripe\",\"enV0g0\":\"Nechajte prázdne pre použitie predvoleného slova \\\"Faktúra\\\"\",\"vR92Yn\":\"Let's get started by creating your first organizer\",\"Z3FXyt\":\"Načítavanie...\",\"wJijgU\":\"Miesto\",\"sQia9P\":\"Prihlásiť sa\",\"zUDyah\":\"Prihlasovanie\",\"z0t9bb\":\"Login\",\"nOhz3x\":\"Odhlásiť sa\",\"F2jAFv\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nam placerat elementum...\",\"NJahlc\":\"Urobiť fakturačnú adresu povinnou počas pokladne\",\"MU3ijv\":\"Urobiť túto otázku povinnou\",\"wckWOP\":\"Spravovať\",\"onpJrA\":\"Spravovať účastníka\",\"n4SpU5\":\"Spravovať udalosť\",\"WVgSTy\":\"Spravovať objednávku\",\"1MAvUY\":\"Spravovať nastavenia platby a fakturácie pre túto udalosť.\",\"cQrNR3\":\"Spravovať profil\",\"AtXtSw\":\"Spravovať dane a poplatky, ktoré možno uplatniť na vaše produkty\",\"ophZVW\":\"Spravovať lístky\",\"DdHfeW\":\"Spravovať podrobnosti účtu a predvolené nastavenia\",\"S+UjNL\":\"Manage your Stripe payment details\",\"BfucwY\":\"Spravovať používateľov a ich oprávnenia\",\"1m+YT2\":\"Povinné otázky musia byť zodpovedané pred dokončením pokladne.\",\"Dim4LO\":\"Manuálne pridať účastníka\",\"e4KdjJ\":\"Manuálne pridať účastníka\",\"vFjEnF\":\"Označiť ako zaplatené\",\"g9dPPQ\":\"Maximum na objednávku\",\"l5OcwO\":\"Správa účastníkovi\",\"Gv5AMu\":\"Správa účastníkom\",\"oUCR3c\":\"Message attendees with specific products\",\"Lvi+gV\":\"Správa kupujúcemu\",\"tNZzFb\":\"Obsah správy\",\"lYDV/s\":\"Správa jednotlivým účastníkom\",\"V7DYWd\":\"Správa odoslaná\",\"t7TeQU\":\"Správy\",\"xFRMlO\":\"Minimum na objednávku\",\"QYcUEf\":\"Minimálna cena\",\"RDie0n\":\"Rôzne\",\"mYLhkl\":\"Rôzne nastavenia\",\"KYveV8\":\"Viacriadkové textové pole\",\"VD0iA7\":\"Viacero cenových možností. Ideálne pre produkty so skorým vtáčikom atď.\",\"/bhMdO\":\"Popis mojej úžasnej udalosti...\",\"vX8/tc\":\"Názov mojej úžasnej udalosti...\",\"hKtWk2\":\"Môj profil\",\"fj5byd\":\"N/A\",\"pRjx4L\":\"Nam placerat elementum...\",\"6YtxFj\":\"Meno\",\"hVuv90\":\"Name should be less than 150 characters\",\"AIUkyF\":\"Prejsť na účastníka\",\"qqeAJM\":\"Nikdy\",\"7vhWI8\":\"Nové heslo\",\"1UzENP\":\"Nie\",\"eRblWH\":[\"No \",[\"0\"],\" available.\"],\"LNWHXb\":\"Žiadne archivované udalosti na zobrazenie.\",\"q2LEDV\":\"Pre túto objednávku neboli nájdení žiadni účastníci.\",\"zlHa5R\":\"No attendees have been added to this order.\",\"Wjz5KP\":\"Žiadni účastníci na zobrazenie\",\"Razen5\":\"No attendees will be able to check in before this date using this list\",\"XUfgCI\":\"Žiadne priradenia kapacity\",\"a/gMx2\":\"Žiadne zoznamy odbavení\",\"tMFDem\":\"Žiadne dostupné dáta\",\"6Z/F61\":\"Žiadne dáta na zobrazenie. Vyberte rozsah dátumov.\",\"fFeCKc\":\"Žiadna zľava\",\"HFucK5\":\"Žiadne ukončené udalosti na zobrazenie.\",\"yAlJXG\":\"Žiadne udalosti na zobrazenie\",\"GqvPcv\":\"Žiadne dostupné filtre\",\"KPWxKD\":\"Žiadne správy na zobrazenie\",\"J2LkP8\":\"Žiadne objednávky na zobrazenie\",\"RBXXtB\":\"Momentálne nie sú dostupné žiadne platobné metódy. Kontaktujte organizátora udalosti.\",\"ZWEfBE\":\"Platba nie je potrebná\",\"ZPoHOn\":\"No product associated with this attendee.\",\"Ya1JhR\":\"V tejto kategórii nie sú dostupné žiadne produkty.\",\"FTfObB\":\"Zatiaľ žiadne produkty\",\"+Y976X\":\"Žiadne promo kódy na zobrazenie\",\"MAavyl\":\"No questions answered by this attendee.\",\"SnlQeq\":\"No questions have been asked for this order.\",\"Ev2r9A\":\"Žiadne výsledky\",\"gk5uwN\":\"Žiadne výsledky vyhľadávania\",\"RHyZUL\":\"Žiadne výsledky vyhľadávania.\",\"RY2eP1\":\"Neboli pridané žiadne dane ani poplatky.\",\"EdQY6l\":\"Žiadne\",\"OJx3wK\":\"Nie je dostupné\",\"Scbrsn\":\"Not On Sale\",\"1DBGsz\":\"Poznámky\",\"jtrY3S\":\"Zatiaľ nič na zobrazenie\",\"hFwWnI\":\"Nastavenia notifikácií\",\"xXqEPO\":\"Notify buyer of refund\",\"YpN29s\":\"Notifikovať organizátora o nových objednávkach\",\"qeQhNj\":\"Now let's create your first event\",\"omyBS0\":\"Počet dní povolených na platbu (nechajte prázdne pre vynechanie platobných podmienok z faktúr)\",\"n86jmj\":\"Predpona čísla\",\"mwe+2z\":\"Offline objednávky sa neodrážajú v štatistikách udalosti, kým nie sú označené ako zaplatené.\",\"dWBrJX\":\"Offline platba zlyhala. Skúste to znovu alebo kontaktujte organizátora udalosti.\",\"fcnqjw\":\"Pokyny pre offline platbu\",\"+eZ7dp\":\"Offline platby\",\"ojDQlR\":\"Informácie o offline platbách\",\"u5oO/W\":\"Nastavenia offline platieb\",\"2NPDz1\":\"On sale\",\"Ldu/RI\":\"V predaji\",\"Ug4SfW\":\"Po vytvorení udalosti ju uvidíte tu.\",\"ZxnK5C\":\"Po začatí zberu dát ich uvidíte tu.\",\"PnSzEc\":\"Once you're ready, set your event live and start selling products.\",\"J6n7sl\":\"Prebiehajúce\",\"z+nuVJ\":\"Online event\",\"WKHW0N\":\"Podrobnosti online udalosti\",\"/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\":\"Otvoriť stránku odbavenia\",\"OdnLE4\":\"Otvoriť bočný panel\",\"ZZEYpT\":[\"Možnosť \",[\"i\"]],\"oPknTP\":\"Voliteľné ďalšie informácie na všetkých faktúrach (napr. platobné podmienky, poplatky za oneskorenie, reklamačná politika)\",\"OrXJBY\":\"Voliteľná predpona pre čísla faktúr (napr. INV-)\",\"0zpgxV\":\"Možnosti\",\"BzEFor\":\"alebo\",\"UYUgdb\":\"Objednávka\",\"mm+eaX\":\"Order #\",\"B3gPuX\":\"Objednávka zrušená\",\"SIbded\":\"Order Completed\",\"q/CcwE\":\"Dátum objednávky\",\"Tol4BF\":\"Podrobnosti objednávky\",\"WbImlQ\":\"Objednávka bola zrušená a vlastník objednávky bol informovaný.\",\"nAn4Oe\":\"Objednávka označená ako zaplatená\",\"uzEfRz\":\"Order Notes\",\"VCOi7U\":\"Order questions\",\"TPoYsF\":\"Referencia objednávky\",\"acIJ41\":\"Stav objednávky\",\"GX6dZv\":\"Súhrn objednávky\",\"tDTq0D\":\"Časový limit objednávky\",\"1h+RBg\":\"Objednávky\",\"3y+V4p\":\"Adresa organizácie\",\"GVcaW6\":\"Podrobnosti organizácie\",\"nfnm9D\":\"Názov organizácie\",\"G5RhpL\":\"Organizátor\",\"mYygCM\":\"Organizátor je povinný\",\"Pa6G7v\":\"Meno organizátora\",\"l894xP\":\"Organizátori môžu spravovať iba udalosti a produkty. Nemôžu spravovať používateľov, nastavenia účtu ani fakturačné informácie.\",\"fdjq4c\":\"Odsadenie\",\"ErggF8\":\"Page background color\",\"8F1i42\":\"Stránka nenájdená\",\"QbrUIo\":\"Zobrazenia stránky\",\"6D8ePg\":\"page.\",\"IkGIz8\":\"zaplatené\",\"HVW65c\":\"Platený produkt\",\"ZfxaB4\":\"Čiastočne vrátené\",\"8ZsakT\":\"Heslo\",\"TUJAyx\":\"Heslo musí mať minimálne 8 znakov\",\"vwGkYB\":\"Heslo musí mať aspoň 8 znakov\",\"BLTZ42\":\"Heslo bolo úspešne obnovené. Prihláste sa novým heslom.\",\"f7SUun\":\"Heslá sa nezhodujú\",\"aEDp5C\":\"Vložte toto tam, kde chcete zobraziť widget.\",\"+23bI/\":\"Patrik\",\"iAS9f2\":\"patrik@acme.com\",\"621rYf\":\"Platba\",\"Lg+ewC\":\"Platba a fakturácia\",\"DZjk8u\":\"Nastavenia platby a fakturácie\",\"lflimf\":\"Lehota splatnosti\",\"JhtZAK\":\"Platba zlyhala\",\"JEdsvQ\":\"Pokyny k platbe\",\"bLB3MJ\":\"Spôsoby platby\",\"QzmQBG\":\"Poskytovateľ platby\",\"lsxOPC\":\"Platba prijatá\",\"wJTzyi\":\"Stav platby\",\"xgav5v\":\"Platba prebehla úspešne!\",\"R29lO5\":\"Platobné podmienky\",\"/roQKz\":\"Percentuálne\",\"vPJ1FI\":\"Percentuálna suma\",\"xdA9ud\":\"Umiestnite toto do sekcie vašej webovej stránky.\",\"blK94r\":\"Pridajte aspoň jednu možnosť\",\"FJ9Yat\":\"Skontrolujte, či sú zadané informácie správne\",\"TkQVup\":\"Skontrolujte e-mail a heslo a skúste znovu\",\"sMiGXD\":\"Skontrolujte, či je váš e-mail platný\",\"Ajavq0\":\"Skontrolujte e-mail na potvrdenie e-mailovej adresy\",\"MdfrBE\":\"Please complete the form below to accept your invitation\",\"b1Jvg+\":\"Pokračujte na novej karte\",\"hcX103\":\"Vytvorte produkt\",\"cdR8d6\":\"Vytvorte lístok\",\"x2mjl4\":\"Zadajte platnú URL adresu obrázka.\",\"HnNept\":\"Please enter your new password\",\"5FSIzj\":\"Upozornenie\",\"C63rRe\":\"Vráťte sa na stránku udalosti a začnite odznova.\",\"pJLvdS\":\"Please select\",\"Ewir4O\":\"Vyberte aspoň jeden produkt\",\"igBrCH\":\"Overte svoju e-mailovú adresu pre prístup ku všetkým funkciám\",\"/IzmnP\":\"Čakajte, pripravujeme faktúru...\",\"MOERNx\":\"Portugalčina\",\"qCJyMx\":\"Správa po pokladni\",\"g2UNkE\":\"Poháňané\",\"Rs7IQv\":\"Správa pred pokladňou\",\"rdUucN\":\"Náhľad\",\"a7u1N9\":\"Cena\",\"CmoB9j\":\"Režim zobrazenia ceny\",\"BI7D9d\":\"Cena nie je nastavená\",\"Q8PWaJ\":\"Price tiers\",\"q6XHL1\":\"Typ ceny\",\"6RmHKN\":\"Primárna farba\",\"G/ZwV1\":\"Primary Colour\",\"8cBtvm\":\"Primárna farba textu\",\"BZz12Q\":\"Print\",\"MT7dxz\":\"Vytlačiť všetky lístky\",\"DKwDdj\":\"Vytlačiť lístky\",\"K47k8R\":\"Produkt\",\"1JwlHk\":\"Kategória produktu\",\"U61sAj\":\"Kategória produktu bola úspešne aktualizovaná.\",\"1USFWA\":\"Produkt bol úspešne odstránený\",\"4Y2FZT\":\"Typ ceny produktu\",\"mFwX0d\":\"Product questions\",\"Lu+kBU\":\"Predaj produktov\",\"U/R4Ng\":\"Cenová úroveň produktu\",\"sJsr1h\":\"Typ produktu\",\"o1zPwM\":\"Product Widget Preview\",\"ktyvbu\":\"Produkt(y)\",\"N0qXpE\":\"Produkty\",\"ggqAiw\":\"products sold\",\"Vla0Bo\":\"Predané produkty\",\"/u4DIx\":\"Predané produkty\",\"DJQEZc\":\"Produkty boli úspešne zoradené\",\"vERlcd\":\"Profil\",\"kUlL8W\":\"Profil bol úspešne aktualizovaný\",\"cl5WYc\":[\"Promo kód \",[\"promo_code\"],\" bol uplatnený\"],\"P5sgAk\":\"Promo kód\",\"yKWfjC\":\"Stránka promo kódu\",\"RVb8Fo\":\"Promo kódy\",\"BZ9GWa\":\"Promo kódy možno použiť na ponúkanie zliav, predpredajný prístup alebo špeciálny prístup k vašej udalosti.\",\"OP094m\":\"Správa o promo kódoch\",\"4kyDD5\":\"Poskytnite ďalší kontext alebo pokyny pre túto otázku. Toto pole použite na pridanie podmienok,\\nusmernení alebo dôležitých informácií, ktoré účastníci potrebujú vedieť pred zodpovedaním.\",\"toutGW\":\"QR kód\",\"LkMOWF\":\"Dostupné množstvo\",\"oCLG0M\":\"Quantity Sold\",\"XKJuAX\":\"Otázka odstránená\",\"avf0gk\":\"Popis otázky\",\"oQvMPn\":\"Názov otázky\",\"enzGAL\":\"Otázky\",\"ROv2ZT\":\"Otázky a odpovede\",\"K885Eq\":\"Questions sorted successfully\",\"OMJ035\":\"Prepínač\",\"C4TjpG\":\"Read less\",\"I3QpvQ\":\"Príjemca\",\"N2C89m\":\"Reference\",\"gxFu7d\":[\"Refund amount (\",[\"0\"],\")\"],\"WZbCR3\":\"Vrátenie zlyhalo\",\"n10yGu\":\"Vrátiť objednávku\",\"zPH6gp\":\"Refund Order\",\"RpwiYC\":\"Vrátenie čaká\",\"xHpVRl\":\"Stav vrátenia\",\"/BI0y9\":\"Vrátené\",\"fgLNSM\":\"Registrovať\",\"9+8Vez\":\"Zostatok použití\",\"tasfos\":\"odstrániť\",\"t/YqKh\":\"Odstrániť\",\"t9yxlZ\":\"Reporty\",\"prZGMe\":\"Vyžadovať fakturačnú adresu\",\"EGm34e\":\"Resend confirmation email\",\"lnrkNz\":\"Znovu odoslať potvrdenie e-mailu\",\"wIa8Qe\":\"Znovu odoslať pozvánku\",\"VeKsnD\":\"Znovu odoslať e-mail objednávky\",\"dFuEhO\":\"Znovu odoslať e-mail s lístkom\",\"o6+Y6d\":\"Opätovné odosielanie...\",\"OfhWJH\":\"Obnoviť\",\"RfwZxd\":\"Obnoviť heslo\",\"KbS2K9\":\"Reset Password\",\"e99fHm\":\"Obnoviť udalosť\",\"vtc20Z\":\"Return to event page\",\"s8v9hq\":\"Vrátiť sa na stránku udalosti\",\"8YBH95\":\"Príjmy\",\"PO/sOY\":\"Odvolať pozvánku\",\"GDvlUT\":\"Rola\",\"ELa4O9\":\"Dátum ukončenia predaja\",\"5uo5eP\":\"Sale ended\",\"Qm5XkZ\":\"Dátum začiatku predaja\",\"hBsw5C\":\"Predaj skončil\",\"kpAzPe\":\"Začiatok predaja\",\"P/wEOX\":\"San Francisco\",\"tfDRzk\":\"Uložiť\",\"IUwGEM\":\"Uložiť zmeny\",\"U65fiW\":\"Uložiť organizátora\",\"UGT5vp\":\"Uložiť nastavenia\",\"ovB7m2\":\"Scan QR Code\",\"EEU0+z\":\"Scan this QR code to access the event page or share it with others\",\"W4kWXJ\":\"Vyhľadávať podľa mena účastníka, e-mailu alebo č. objednávky...\",\"+pr/FY\":\"Vyhľadávať podľa názvu udalosti...\",\"3zRbWw\":\"Vyhľadávať podľa mena, e-mailu alebo č. objednávky...\",\"L22Tdf\":\"Search by name, order #, attendee # or email...\",\"BiYOdA\":\"Vyhľadávať podľa mena...\",\"YEjitp\":\"Search by subject or content...\",\"Pjsch9\":\"Vyhľadávať priradenia kapacity...\",\"r9M1hc\":\"Vyhľadávať zoznamy odbavení...\",\"+0Yy2U\":\"Vyhľadávať produkty\",\"YIix5Y\":\"Vyhľadávať...\",\"OeW+DS\":\"Secondary color\",\"DnXcDK\":\"Sekundárna farba\",\"cZF6em\":\"Secondary text color\",\"ZIgYeg\":\"Sekundárna farba textu\",\"02ePaq\":[\"Vybrať \",[\"0\"]],\"QuNKRX\":\"Select Camera\",\"9FQEn8\":\"Vybrať kategóriu...\",\"kWI/37\":\"Vybrať organizátora\",\"ixIx1f\":\"Vybrať produkt\",\"3oSV95\":\"Vybrať cenovú úroveň produktu\",\"C4Y1hA\":\"Vybrať produkty\",\"hAjDQy\":\"Vybrať stav\",\"QYARw/\":\"Vybrať lístok\",\"OMX4tH\":\"Vybrať lístky\",\"DrwwNd\":\"Vybrať časové obdobie\",\"O/7I0o\":\"Vybrať...\",\"JlFcis\":\"Odoslať\",\"qKWv5N\":[\"Send a copy to <0>\",[\"0\"],\"\"],\"RktTWf\":\"Odoslať správu\",\"/mQ/tD\":\"Send as a test. This will send the message to your email address instead of the recipients.\",\"M/WIer\":\"Odoslať správu\",\"D7ZemV\":\"Odoslať potvrdenie objednávky a e-mail s lístkom\",\"v1rRtW\":\"Odoslať test\",\"4Ml90q\":\"SEO\",\"j1VfcT\":\"SEO popis\",\"/SIY6o\":\"SEO kľúčové slová\",\"GfWoKv\":\"SEO nastavenia\",\"rXngLf\":\"SEO názov\",\"/jZOZa\":\"Servisný poplatok\",\"Bj/QGQ\":\"Nastavte minimálnu cenu a nechajte používateľov zaplatiť viac, ak chcú\",\"L0pJmz\":\"Nastavte počiatočné číslo pre číslovanie faktúr. Toto nie je možné zmeniť po vygenerovaní faktúr.\",\"nYNT+5\":\"Set up your event\",\"A8iqfq\":\"Set your event live\",\"Tz0i8g\":\"Nastavenia\",\"Z8lGw6\":\"Zdieľať\",\"B2V3cA\":\"Zdieľať udalosť\",\"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\":\"Zobraziť dostupné množstvo produktu\",\"qDsmzu\":\"Show hidden questions\",\"fMPkxb\":\"Zobraziť viac\",\"izwOOD\":\"Zobraziť dane a poplatky samostatne\",\"1SbbH8\":\"Zobrazené zákazníkovi po pokladni na stránke súhrnu objednávky.\",\"YfHZv0\":\"Zobrazené zákazníkovi pred pokladňou\",\"CBBcly\":\"Zobrazuje bežné polia adresy vrátane krajiny\",\"yTnnYg\":\"Novák\",\"TNaCfq\":\"Jednoriadkové textové pole\",\"+P0Cn2\":\"Preskočiť tento krok\",\"YSEnLE\":\"Kováč\",\"lgFfeO\":\"Vypredané\",\"Mi1rVn\":\"Vypredané\",\"nwtY4N\":\"Niečo sa pokazilo\",\"GRChTw\":\"Niečo sa pokazilo pri odstraňovaní dane alebo poplatku\",\"YHFrbe\":\"Niečo sa pokazilo! Skúste to znovu\",\"kf83Ld\":\"Niečo sa pokazilo.\",\"fWsBTs\":\"Niečo sa pokazilo. Skúste to znovu.\",\"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\":\"Ľutujeme, tento promo kód nie je rozpoznaný\",\"65A04M\":\"Španielčina\",\"mFuBqb\":\"Štandardný produkt s pevnou cenou\",\"D3iCkb\":\"Dátum začiatku\",\"/2by1f\":\"Štát alebo región\",\"uAQUqI\":\"Stav\",\"4HXezG\":\"Stripe\",\"WbopAG\":\"Platby Stripe nie sú pre túto udalosť povolené.\",\"UJmAAK\":\"Predmet\",\"X2rrlw\":\"Medzisúčet\",\"zzDlyQ\":\"Úspech\",\"b0HJ45\":[\"Úspech! \",[\"0\"],\" čoskoro dostane e-mail.\"],\"BJIEiF\":[\"Účastník bol úspešne \",[\"0\"]],\"OtgNFx\":\"E-mailová adresa bola úspešne potvrdená\",\"IKwyaF\":\"Zmena e-mailu bola úspešne potvrdená\",\"zLmvhE\":\"Účastník bol úspešne vytvorený\",\"gP22tw\":\"Produkt bol úspešne vytvorený\",\"9mZEgt\":\"Promo kód bol úspešne vytvorený\",\"aIA9C4\":\"Otázka bola úspešne vytvorená\",\"J3RJSZ\":\"Účastník bol úspešne aktualizovaný\",\"3suLF0\":\"Priradenie kapacity bolo úspešne aktualizované\",\"Z+rnth\":\"Zoznam odbavení bol úspešne aktualizovaný\",\"vzJenu\":\"Nastavenia e-mailu boli úspešne aktualizované\",\"7kOMfV\":\"Udalosť bola úspešne aktualizovaná\",\"G0KW+e\":\"Dizajn domovskej stránky bol úspešne aktualizovaný\",\"k9m6/E\":\"Nastavenia domovskej stránky boli úspešne aktualizované\",\"y/NR6s\":\"Miesto bolo úspešne aktualizované\",\"73nxDO\":\"Rôzne nastavenia boli úspešne aktualizované\",\"4H80qv\":\"Objednávka bola úspešne aktualizovaná\",\"6xCBVN\":\"Nastavenia platby a fakturácie boli úspešne aktualizované\",\"1Ycaad\":\"Produkt bol úspešne aktualizovaný\",\"70dYC8\":\"Promo kód bol úspešne aktualizovaný\",\"F+pJnL\":\"SEO nastavenia boli úspešne aktualizované\",\"DXZRk5\":\"Suite 100\",\"GNcfRk\":\"E-mail podpory\",\"uRfugr\":\"Tričko\",\"JpohL9\":\"Daň\",\"geUFpZ\":\"Dane a poplatky\",\"dFHcIn\":\"Podrobnosti dane\",\"wQzCPX\":\"Daňové informácie na spodku všetkých faktúr (napr. číslo DPH, daňová registrácia)\",\"0RXCDo\":\"Daň alebo poplatok bol úspešne odstránený\",\"ZowkxF\":\"Dane\",\"qu6/03\":\"Dane a poplatky\",\"gypigA\":\"Tento promo kód je neplatný\",\"5ShqeM\":\"Zoznam odbavení, ktorý hľadáte, neexistuje.\",\"QXlz+n\":\"Predvolená mena pre vaše udalosti.\",\"mnafgQ\":\"Predvolené časové pásmo pre vaše udalosti.\",\"o7s5FA\":\"Jazyk, v ktorom bude účastník dostávať e-maily.\",\"NlfnUd\":\"Odkaz, na ktorý ste klikli, je neplatný.\",\"HsFnrk\":[\"Maximálny počet produktov pre \",[\"0\"],\" je \",[\"1\"]],\"TSAiPM\":\"Stránka, ktorú hľadáte, neexistuje\",\"MSmKHn\":\"Cena zobrazená zákazníkovi bude zahŕňať dane a poplatky.\",\"6zQOg1\":\"Cena zobrazená zákazníkovi nebude zahŕňať dane a poplatky. Zobrazia sa samostatne\",\"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\":\"Názov udalosti, ktorý sa zobrazí vo výsledkoch vyhľadávačov a pri zdieľaní na sociálnych sieťach. Predvolene sa použije názov udalosti\",\"wDx3FF\":\"Pre túto udalosť nie sú dostupné žiadne produkty\",\"pNgdBv\":\"V tejto kategórii nie sú dostupné žiadne produkty\",\"rMcHYt\":\"Čaká sa na vrátenie. Počkajte na jeho dokončenie pred ďalším vrátením.\",\"F89D36\":\"Nastala chyba pri označovaní objednávky ako zaplatenej\",\"68Axnm\":\"Nastala chyba pri spracovaní vašej požiadavky. Skúste to znovu.\",\"mVKOW6\":\"Nastala chyba pri odosielaní vašej správy\",\"AhBPHd\":\"These details will only be shown if order is completed successfully. Orders awaiting payment will not show this message.\",\"Pc/Wtj\":\"Tento účastník má nezaplatenú objednávku.\",\"mf3FrP\":\"Táto kategória zatiaľ nemá žiadne produkty.\",\"8QH2Il\":\"Táto kategória je skrytá pred verejnosťou\",\"xxv3BZ\":\"Tento zoznam odbavení vypršal\",\"Sa7w7S\":\"Tento zoznam odbavení vypršal a nie je už dostupný pre odbavenia.\",\"Uicx2U\":\"Tento zoznam odbavení je aktívny\",\"1k0Mp4\":\"Tento zoznam odbavení ešte nie je aktívny\",\"K6fmBI\":\"Tento zoznam odbavení ešte nie je aktívny a nie je dostupný pre odbavenia.\",\"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\":\"Tieto informácie sa zobrazia na platobnej stránke, stránke súhrnu objednávky a v potvrdzovacom e-maile objednávky.\",\"XAHqAg\":\"Toto je všeobecný produkt, ako tričko alebo hrnček. Nebude vydaný žiadny lístok\",\"CNk/ro\":\"Toto je online udalosť\",\"FwXnJd\":\"This list will no longer be available for check-ins after this date\",\"cHO4ec\":\"Táto správa bude zahrnutá v päte všetkých e-mailov odoslaných z tejto udalosti\",\"55i7Fa\":\"Táto správa sa zobrazí iba ak je objednávka úspešne dokončená. Objednávky čakajúce na platbu túto správu nezobrazia\",\"RjwlZt\":\"Táto objednávka už bola zaplatená.\",\"5K8REg\":\"Táto objednávka už bola vrátená.\",\"OiQMhP\":\"This order has been cancelled\",\"YyEJij\":\"Táto objednávka bola zrušená.\",\"Q0zd4P\":\"Táto objednávka vypršala. Začnite znovu.\",\"HILpDX\":\"This order is awaiting payment\",\"BdYtn9\":\"This order is complete\",\"e3uMJH\":\"Táto objednávka je dokončená.\",\"YNKXOK\":\"This order is processing.\",\"yPZN4i\":\"Táto stránka objednávky už nie je dostupná.\",\"i0TtkR\":\"Toto prepíše všetky nastavenia viditeľnosti a skryje produkt pred všetkými zákazníkmi.\",\"cRRc+F\":\"Tento produkt nie je možné odstrániť, pretože je spojený s objednávkou. Namiesto toho ho môžete skryť.\",\"3Kzsk7\":\"Tento produkt je lístok. Kupujúcim bude vydaný lístok pri nákupe\",\"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\":\"Tento odkaz na obnovenie hesla je neplatný alebo vypršal.\",\"IV9xTT\":\"Tento používateľ nie je aktívny, pretože neprijal pozvánku.\",\"5AnPaO\":\"lístok\",\"kjAL4v\":\"Lístok\",\"dtGC3q\":\"E-mail s lístkom bol znovu odoslaný účastníkovi\",\"54q0zp\":\"Lístky pre\",\"xN9AhL\":[\"Úroveň \",[\"0\"]],\"jZj9y9\":\"Stupňovaný produkt\",\"8wITQA\":\"Stupňované produkty umožňujú ponúkať viacero cenových možností pre rovnaký produkt. Ideálne pre produkty so skorým vtáčikom alebo rôzne cenové možnosti pre rôzne skupiny ľudí.\",\"nn3mSR\":\"Zostatok času:\",\"s/0RpH\":\"Počet použití\",\"y55eMd\":\"Počet použití\",\"40Gx0U\":\"Časové pásmo\",\"oDGm7V\":\"TIP\",\"MHrjPM\":\"Title\",\"xdA/+p\":\"Nástroje\",\"72c5Qo\":\"Celkom\",\"YXx+fG\":\"Celkovo pred zľavami\",\"NRWNfv\":\"Celková suma zľavy\",\"BxsfMK\":\"Celkové poplatky\",\"2bR+8v\":\"Celkový hrubý predaj\",\"mpB/d9\":\"Celková suma objednávky\",\"m3FM1g\":\"Celkovo vrátené\",\"jEbkcB\":\"Celkovo vrátené\",\"GBBIy+\":\"Total remaining\",\"/SgoNA\":\"Celková daň\",\"+zy2Nq\":\"Typ\",\"FMdMfZ\":\"Nie je možné odbavenie účastníka\",\"bPWBLL\":\"Nie je možné odhlásenie účastníka\",\"9+P7zk\":\"Nie je možné vytvoriť produkt. Skontrolujte svoje údaje\",\"WLxtFC\":\"Nie je možné vytvoriť produkt. Skontrolujte svoje údaje\",\"/cSMqv\":\"Nie je možné vytvoriť otázku. Skontrolujte svoje údaje\",\"MH/lj8\":\"Nie je možné aktualizovať otázku. Skontrolujte svoje údaje\",\"nnfSdK\":\"Jedinečných zákazníkov\",\"Mqy/Zy\":\"Spojené štáty\",\"NIuIk1\":\"Neobmedzené\",\"/p9Fhq\":\"Neobmedzene dostupné\",\"E0q9qH\":\"Povolené neobmedzené použitia\",\"h10Wm5\":\"Nezaplatená objednávka\",\"ia8YsC\":\"Nadchádzajúce\",\"TlEeFv\":\"Nadchádzajúce udalosti\",\"L/gNNk\":[\"Aktualizovať \",[\"0\"]],\"+qqX74\":\"Aktualizovať názov udalosti, popis a dátumy\",\"vXPSuB\":\"Aktualizovať profil\",\"BNBfrU\":\"Upload Cover\",\"IagCbF\":\"URL\",\"UtDm3q\":\"URL skopírovaná do schránky\",\"e5lF64\":\"Príklad použitia\",\"fiV0xj\":\"Limit použitia\",\"sGEOe4\":\"Použiť rozmazanú verziu obrázka obalu ako pozadie\",\"OadMRm\":\"Použiť obrázok obalu\",\"7PzzBU\":\"Používateľ\",\"yDOdwQ\":\"Správa používateľov\",\"Sxm8rQ\":\"Používatelia\",\"VEsDvU\":\"Používatelia môžu zmeniť e-mail v <0>Nastaveniach profilu\",\"vgwVkd\":\"UTC\",\"khBZkl\":\"DPH\",\"E/9LUk\":\"Názov miesta konania\",\"jpctdh\":\"View\",\"Pte1Hv\":\"Zobraziť podrobnosti účastníka\",\"/5PEQz\":\"Zobraziť stránku udalosti\",\"fFornT\":\"View full message\",\"YIsEhQ\":\"View map\",\"Ep3VfY\":\"Zobraziť na Google Maps\",\"Y8s4f6\":\"View order details\",\"QIWCnW\":\"VIP zoznam odbavení\",\"tF+VVr\":\"VIP lístok\",\"2q/Q7x\":\"Viditeľnosť\",\"vmOFL/\":\"Nepodarilo sa spracovať vašu platbu. Skúste to znovu alebo kontaktujte podporu.\",\"45Srzt\":\"Nepodarilo sa odstrániť kategóriu. Skúste to znovu.\",\"/DNy62\":[\"Nenašli sa žiadne lístky zodpovedajúce \",[\"0\"]],\"1E0vyy\":\"Nepodarilo sa načítať dáta. Skúste to znovu.\",\"NmpGKr\":\"Nepodarilo sa preusporiadať kategórie. Skúste to znovu.\",\"BJtMTd\":\"Odporúčame rozmery 1950px x 650px, pomer 3:1 a maximálnu veľkosť súboru 5 MB\",\"b9UB/w\":\"We use Stripe to process payments. Connect your Stripe account to start receiving payments.\",\"01WH0a\":\"Nepodarilo sa potvrdiť vašu platbu. Skúste to znovu alebo kontaktujte podporu.\",\"Gspam9\":\"Spracovávame vašu objednávku. Čakajte prosím...\",\"LuY52w\":\"Vitajte na palube! Prihláste sa pre pokračovanie.\",\"dVxpp5\":[\"Vitajte späť\",[\"0\"],\" 👋\"],\"NxOVCl\":[\"Welcome to Hi.Events, \",[\"0\"],\" 👋\"],\"xgL50q\":\"Čo sú stupňované produkty?\",\"f1jUC0\":\"What date should this check-in list become active?\",\"4ueloy\":\"Čo je kategória?\",\"gxeWAU\":\"Na ktoré produkty sa tento kód vzťahuje?\",\"hFHnxR\":\"Na ktoré produkty sa tento kód vzťahuje? (Predvolene sa vzťahuje na všetky)\",\"AeejQi\":\"Na ktoré produkty sa má táto kapacita vzťahovať?\",\"Rb0XUE\":\"O koľkej prídete?\",\"5N4wLD\":\"Aký typ otázky je toto?\",\"gyLUYU\":\"Ak je povolené, faktúry budú generované pre objednávky lístkov. Faktúry budú odoslané spolu s potvrdením objednávky. Účastníci si môžu stiahnuť faktúry aj zo stránky potvrdenia objednávky.\",\"D3opg4\":\"Ak sú povolené offline platby, používatelia budú môcť dokončiť objednávky a dostať lístky. Ich lístky budú jasne uvádzať, že objednávka nie je zaplatená, a nástroj odbavenia upozorní personál odbavenia, ak objednávka vyžaduje platbu.\",\"D7C6XV\":\"When should this check-in list expire?\",\"FVetkT\":\"Ktoré lístky majú byť spojené s týmto zoznamom odbavení?\",\"S+OdxP\":\"Kto organizuje túto udalosť?\",\"LINr2M\":\"Who is this message to?\",\"nWhye/\":\"Komu má byť táto otázka položená?\",\"VxFvXQ\":\"Vloženie widgetu\",\"v1P7Gm\":\"Nastavenia widgetu\",\"b4itZn\":\"Pracuje\",\"hqmXmc\":\"Pracuje...\",\"+G/XiQ\":\"Od začiatku roka\",\"l75CjT\":\"Áno\",\"QcwyCh\":\"Áno, odstrániť ich\",\"ySeBKv\":\"You already scanned this ticket\",\"P+Sty0\":[\"Meníte e-mail na <0>\",[\"0\"],\".\"],\"gGhBmF\":\"Ste offline\",\"sdB7+6\":\"Môžete vytvoriť promo kód, ktorý cieli na tento produkt na\",\"KRhIxT\":\"You can now start receiving payments through Stripe.\",\"Gnjf3o\":\"Nemôžete zmeniť typ produktu, pretože s týmto produktom sú spojení účastníci.\",\"S+on7c\":\"You cannot check in attendees with unpaid orders.\",\"yNi4PV\":\"Nemôžete odbavovať účastníkov s nezaplatenými objednávkami. Toto nastavenie môžete zmeniť v nastaveniach udalosti.\",\"c9Evkd\":\"Nemôžete odstrániť poslednú kategóriu.\",\"6uwAvx\":\"Nemôžete odstrániť túto cenovú úroveň, pretože pre ňu už boli predané produkty. Namiesto toho ju môžete skryť.\",\"tFbRKJ\":\"Nemôžete upraviť rolu ani stav vlastníka účtu.\",\"fHfiEo\":\"Nemôžete vrátiť manuálne vytvorenú objednávku.\",\"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\":\"Máte prístup k viacerým účtom. Vyberte jeden pre pokračovanie.\",\"Z6q0Vl\":\"Túto pozvánku ste už prijali. Prihláste sa pre pokračovanie.\",\"rdk1xK\":\"You have connected your Stripe account\",\"ofEncr\":\"You have no attendee questions.\",\"CoZHDB\":\"You have no order questions.\",\"15qAvl\":\"Nemáte žiadnu čakajúcu zmenu e-mailu.\",\"n81Qk8\":\"You have not completed your Stripe Connect setup\",\"jxsiqJ\":\"You have not connected your Stripe account\",\"+FWjhR\":\"Vypršal vám čas na dokončenie objednávky.\",\"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\":\"Musíte potvrdiť, že tento e-mail nie je propagačný\",\"3ZI8IL\":\"Musíte súhlasiť s podmienkami a ustanoveniami\",\"dMd3Uf\":\"You must confirm your email address before your event can go live.\",\"H35u3n\":\"Pred manuálnym pridaním účastníka musíte vytvoriť lístok.\",\"jE4Z8R\":\"Musíte mať aspoň jednu cenovú úroveň\",\"8/eLoa\":\"You need to verify your account before you can send messages.\",\"Egnj9d\":\"Objednávku budete musieť označiť ako zaplatenú manuálne. Môžete to urobiť na stránke správy objednávky.\",\"L/+xOk\":\"Pred vytvorením zoznamu odbavení potrebujete lístok.\",\"Djl45M\":\"Pred vytvorením priradenia kapacity potrebujete produkt.\",\"y3qNri\":\"Na začiatok potrebujete aspoň jeden produkt. Bezplatný, platený alebo nechajte používateľa rozhodnúť.\",\"9HcibB\":[\"You're going to \",[\"0\"],\"! 🎉\"],\"ROR8QD\":\"Názov vášho účtu sa používa na stránkach udalostí a v e-mailoch.\",\"veessc\":\"Vaši účastníci sa zobrazia tu po registrácii na udalosť. Môžete tiež manuálne pridávať účastníkov.\",\"Eh5Wrd\":\"Vaša skvelá webová stránka 🎉\",\"lkMK2r\":\"Vaše údaje\",\"3ENYTQ\":[\"Vaša žiadosť o zmenu e-mailu na <0>\",[\"0\"],\" čaká. Skontrolujte e-mail na potvrdenie\"],\"yZfBoy\":\"Vaša správa bola odoslaná\",\"KSQ8An\":\"Vaša objednávka\",\"Jwiilf\":\"Vaša objednávka bola zrušená\",\"6UxSgB\":\"Your order is awaiting payment 🏦\",\"7YJdgG\":\"Vaše objednávky sa zobrazia tu, keď začnú prichádzať.\",\"9TO8nT\":\"Vaše heslo\",\"P8hBau\":\"Vaša platba sa spracováva.\",\"UdY1lL\":\"Vaša platba nebola úspešná, skúste to znovu.\",\"fzuM26\":\"Vaša platba bola neúspešná. Skúste to znovu.\",\"cEli2o\":\"Your product for\",\"cJ4Y4R\":\"Vaše vrátenie sa spracováva.\",\"IFHV2p\":\"Váš lístok pre\",\"x1PPdr\":\"PSČ\",\"BM/KQm\":\"PSČ\",\"+LtVBt\":\"PSČ\",\"25QDJ1\":\"- Kliknite pre zverejnenie\",\"WOyJmc\":\"- Kliknite pre zrušenie zverejnenia\",\"ncwQad\":\"(prázdne)\",\"B/gRsg\":\"(none)\",\"xYxQCZ\":[[\"0\"],\" \",[\"1\"]],\"lAOy2r\":[[\"0\"],\" \",[\"1\"],\" je už odbavený\"],\"3beCx0\":[[\"0\"],\" <0>checked in\"],\"S4PqS9\":[[\"0\"],\" aktívnych webhookov\"],\"6MIiOI\":[[\"0\"],\" zostáva\"],\"COnw8D\":[\"logo \",[\"0\"]],\"xG9N0H\":[[\"0\"],\" of \",[\"1\"],\" seats are taken.\"],\"B7pZfX\":[[\"0\"],\" organizátorov\"],\"/HkCs4\":[[\"0\"],\" lístkov\"],\"30bTiU\":[[\"activeCount\"],\" enabled\"],\"jTs4am\":[[\"appName\"],\" logo\"],\"gbJOk9\":[[\"attendeeCount\"],\" attendees are registered for this session.\"],\"TjbIUI\":[[\"availableCount\"],\" z \",[\"totalCount\"],\" dostupných\"],\"PSChHo\":[\"Zostáva \",[\"capacity\"],\" miest\"],\"lzQ8/M\":[[\"checkedIn\"],\" / \",[\"total\"],\" checked in\"],\"RZ0JX3\":[[\"chipTime\"],\", vypredané\"],\"M4KnFs\":[[\"chipTime\"],\", Vypredané, čakacia listina k dispozícii\"],\"SeyN12\":[[\"completedCount\"],\" of \",[\"totalCount\"],\" steps complete\"],\"f2rhaD\":[[\"diffHr\"],\"h ago\"],\"NRSLBe\":[[\"diffMin\"],\"m ago\"],\"iYfwJE\":[[\"diffSec\"],\"s ago\"],\"OJnhhX\":[[\"eventCount\"],\" udalostí\"],\"mhZbzw\":[[\"loadedAffectedAttendees\"],\" attendees are registered across the affected sessions.\"],\"RBuxIl\":[[\"productCount\"],\" ticket types configured\"],\"VFLd0I\":[[\"slotCount\"],\" times available\"],\"3IEF7U\":[[\"totalCount\"],\" typov lístkov\"],\"0cLzoF\":[[\"totalOccurrences\"],\" dates\"],\"AEGc4t\":[[\"totalOccurrences\"],\" sessions across \",[\"0\"],\" dates (\",[\"1\",\"plural\",{\"one\":[\"#\",\" session\"],\"other\":[\"#\",\" sessions\"]}],\" per day)\"],\"zGiMDM\":\"+1 234 567 890\",\"1d6kks\":\"+Daň/Poplatky\",\"B1St2O\":\"<0>Zoznamy odbavení vám pomáhajú spravovať vstup na udalosť podľa dní, oblastí alebo typov lístkov. Môžete prepojiť lístky s konkrétnymi zoznamami, ako sú VIP zóny alebo vstupenky na 1. deň, a zdieľať zabezpečený odkaz na odbavenie so zamestnancami. Nevyžaduje sa žiadny účet. Odbavenie funguje na mobile, počítači alebo tablete pomocou kamery zariadenia alebo HID USB skenera. \",\"v9VSIS\":\"<0>Nastavte jeden celkový limit účasti pre viacero typov lístkov naraz.<1>Napríklad, ak prepojíte lístok <2>Denný vstup a <3>Celý víkend, oba budú čerpať z rovnakej zásoby miest. Po dosiahnutí limitu sa predaj všetkých prepojených lístkov automaticky zastaví.\",\"Il5Uid\":\"<0>Toto je celkové dostupné množstvo za všetky termíny vo vašom rozvrhu spolu — nejde o limit na termín. Ak chcete obmedziť účasť na jednotlivých termínoch, nastavte kapacitu na <1>stránke Rozvrh termínov.\",\"ZnVt5v\":\"<0>Webhooky okamžite upozorňujú externé služby, keď nastanú udalosti, napríklad pridanie nového účastníka do vášho CRM alebo mailing listu pri registrácii.<1>Používajte služby tretích strán ako <2>Zapier, <3>IFTTT alebo <4>Make na vytváranie vlastných pracovných postupov a automatizáciu úloh.\",\"xFTHZ5\":[\"≈ \",[\"0\"],\" pri aktuálnom kurze\"],\"M2DyLc\":\"1 aktívny webhook\",\"6hIk/x\":\"1 attendee is registered across the affected sessions.\",\"qOyE2U\":\"1 attendee is registered for this session.\",\"943BwI\":\"1 deň po dátume konca\",\"yj3N+g\":\"1 deň po dátume začiatku\",\"Z3etYG\":\"1 deň pred udalosťou\",\"szSnlj\":\"1 hodinu pred udalosťou\",\"yTsaLw\":\"1 lístok\",\"nz96Ue\":\"1 typ lístka\",\"InX5ad\":\"1 ticket type configured\",\"y2Jh0m\":\"1 time available\",\"cGtUz6\":\"1 týždeň pred udalosťou\",\"HR/cvw\":\"123 Vzorová ulica\",\"dgKxZ5\":\"135+ currencies & 40+ payment methods\",\"kMU5aM\":\"Oznámenie o zrušení bolo odoslané na\",\"o++0qa\":\"a change in duration\",\"WuWSX5\":\"A few quick steps and you're ready to start selling.\",\"RQ5kDd\":\"Správa, ktorá sa zobrazí, keď v tejto kategórii nie sú žiadne produkty.\",\"V53XzQ\":\"Na váš e-mail bol odoslaný nový overovací kód\",\"sr2Je0\":\"a shift in start/end times\",\"/z/bH1\":\"Krátky popis vášho organizátora, ktorý sa zobrazí používateľom.\",\"aS0jtz\":\"Opustené\",\"uyJsf6\":\"O udalosti\",\"JvuLls\":\"Absorbovať poplatok\",\"lk74+I\":\"Absorbovať poplatok\",\"1uJlG9\":\"Zvýraznená farba\",\"g3UF2V\":\"Prijať\",\"K5+3xg\":\"Prijať pozvánku\",\"jzb4Ep\":[\"Account · \",[\"0\"]],\"UqH1Q6\":[\"Account · \",[\"0\"],\" · \",[\"1\"]],\"vOuxvL\":\"Informácie o účte\",\"EHNORh\":\"Účet nebol nájdený\",\"bPwFdf\":\"Účty\",\"AhwTa1\":\"Vyžaduje sa akcia: Potrebné informácie o DPH\",\"APyAR/\":\"Aktívne udalosti\",\"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\":\"Pridajte vlastné otázky na zber ďalších informácií pri pokladni\",\"Z/dcxc\":\"Add Date\",\"QeupRg\":\"Pridať termíny\",\"Q219NT\":\"Add Dates\",\"yjB5VC\":\"Add dates and times for your recurring event\",\"Z8idyM\":\"Add details\",\"wpirGs\":\"Add event details\",\"VX6WUv\":\"Pridať miesto\",\"GCQlV2\":\"Add multiple times if you run several sessions per day.\",\"7JF9w9\":\"Pridať otázku\",\"NLbIb6\":\"Add this attendee anyway (override capacity)\",\"6PNlRV\":\"Pridajte túto udalosť do kalendára\",\"BGD9Yt\":\"Pridať lístky\",\"uIv4Op\":\"Pridajte sledovacie pixely na verejné stránky udalostí a domovskú stránku organizátora. Keď je sledovanie aktívne, návštevníkom sa zobrazí banner so súhlasom so súbormi cookie.\",\"QN2F+7\":\"Pridať webhook\",\"NsWqSP\":\"Pridajte svoje sociálne médiá a URL webstránky. Tieto sa zobrazia na vašej verejnej stránke organizátora.\",\"bVjDs9\":\"Ďalšie poplatky\",\"MKqSg4\":\"Vyžaduje sa prístup správcu\",\"0Zypnp\":\"Panel správcu\",\"YAV57v\":\"Partner\",\"I+utEq\":\"Kód partnera nie je možné zmeniť\",\"/jHBj5\":\"Partner bol úspešne vytvorený\",\"uCFbG2\":\"Partner bol úspešne vymazaný\",\"ld8I+f\":\"Affiliate program\",\"a41PKA\":\"Predaje partnera budú sledované\",\"mJJh2s\":\"Predaje partnera nebudú sledované. Tým sa partner deaktivuje.\",\"jabmnm\":\"Partner bol úspešne aktualizovaný\",\"CPXP5Z\":\"Partneri\",\"9Wh+ug\":\"Partneri exportovaní\",\"3cqmut\":\"Partneri vám pomáhajú sledovať predaje generované partnermi a influencermi. Vytvorte partnerské kódy a zdieľajte ich na sledovanie výkonu.\",\"3e31kI\":\"After your event is created, you can choose how often it repeats from the dashboard.\",\"z7GAMJ\":\"all\",\"N40H+G\":\"All\",\"7rLTkE\":\"Všetky archivované udalosti\",\"gKq1fa\":\"Všetci účastníci\",\"63gRoO\":\"All attendees of the selected sessions\",\"uWxIoH\":\"All attendees of this occurrence\",\"pMLul+\":\"Všetky meny\",\"sgUdRZ\":\"All dates\",\"e4q4uO\":\"All Dates\",\"ZS/D7f\":\"Všetky ukončené udalosti\",\"QsYjci\":\"Všetky udalosti\",\"31KB8w\":\"Všetky neúspešné úlohy boli vymazané\",\"D2g7C7\":\"Všetky úlohy boli zaradené na opakovanie\",\"B4RFBk\":\"All matching dates\",\"F1/VgK\":\"All occurrences\",\"OpWjMq\":\"All Occurrences\",\"Sxm1lO\":\"Všetky stavy\",\"dr7CWq\":\"Všetky nadchádzajúce udalosti\",\"GpT6Uf\":\"Umožniť účastníkom aktualizovať informácie o lístku (meno, e-mail) cez bezpečný odkaz zaslaný s potvrdením objednávky.\",\"VZdky1\":\"Povoliť kupujúcim skopírovať svoje údaje všetkým účastníkom\",\"F3mW5G\":\"Umožniť zákazníkom pripojiť sa na čakaciu listinu, keď je tento produkt vypredaný\",\"4CMO/q\":\"Umožniť zákazníkom pripojiť sa na čakaciu listinu, keď je tento produkt vypredaný. Zákazníci sa pripájajú na čakaciu listinu pre konkrétny dátum.\",\"c4uJfc\":\"Takmer hotovo! Čakáme na spracovanie vašej platby. Malo by to trvať len niekoľko sekúnd.\",\"ocS8eq\":[\"Už máte účet? <0>\",[\"0\"],\"\"],\"uCuEqI\":\"Already in\",\"/H326L\":\"Už vrátené\",\"USEpOK\":\"Already use Stripe on another organizer? Reuse that connection.\",\"RtxQTF\":\"Tiež zrušiť túto objednávku\",\"jkNgQR\":\"Tiež vrátiť platbu za túto objednávku\",\"xYqsHg\":\"Vždy dostupné\",\"Wvrz79\":\"Zaplatená suma\",\"Zkymb9\":\"E-mail na priradenie k tomuto partnerovi. Partner nebude upozornený.\",\"vRznIT\":\"Pri kontrole stavu exportu nastala chyba.\",\"OPFdAM\":\"Voliteľný popis tejto kategórie, ktorý sa zobrazí na stránke podujatia.\",\"eusccx\":\"Voliteľná správa na zobrazenie na zvýraznenom produkte, napr. \\\"Rýchlo sa predáva 🔥\\\" alebo \\\"Najlepšia hodnota\\\"\",\"5GJuNp\":[\"and \",[\"0\"],\" more...\"],\"QNrkms\":\"Odpoveď bola úspešne aktualizovaná.\",\"+qygei\":\"Answers\",\"GK7Lnt\":\"Answers provided at checkout (e.g. meal choice)\",\"lE8PgT\":\"Any dates you've manually customized will be kept.\",\"jVoYha\":[\"použitý — zľava \",[\"0\"],\" na vašu objednávku\"],\"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\":\"Schváliť správu\",\"naCW6Z\":\"April\",\"B495Gs\":\"Archivovať\",\"5sNliy\":\"Archivovať udalosť\",\"BrwnrJ\":\"Archivovať organizátora\",\"E5eghW\":\"Archivujte túto udalosť, aby bola skrytá pred verejnosťou. Neskôr ju môžete obnoviť.\",\"eqFkeI\":\"Archivujte tohto organizátora. Tým sa archivujú aj všetky udalosti patriace tomuto organizátorovi.\",\"BzcxWv\":\"Archivovaní organizátori\",\"9cQBd6\":\"Naozaj chcete archivovať túto udalosť? Nebude už verejne viditeľná.\",\"Trnl3E\":\"Naozaj chcete archivovať tohto organizátora? Archivujú sa aj všetky udalosti patriace tomuto organizátorovi.\",\"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\":\"Naozaj chcete zrušiť túto naplánovanú správu?\",\"0aVEBY\":\"Naozaj chcete odstrániť všetky neúspešné úlohy?\",\"LchiNd\":\"Naozaj chcete odstrániť tohto partnera? Túto akciu nie je možné vrátiť späť.\",\"vPeW/6\":\"Naozaj chcete odstrániť túto konfiguráciu? Môže to ovplyvniť účty, ktoré ju používajú.\",\"h42Hc/\":\"Are you sure you want to delete this date? This action cannot be undone.\",\"RiF/yT\":\"Are you sure you want to delete this image?\",\"b3+Qku\":\"Are you sure you want to delete this tax or fee? It will no longer be applied to new orders.\",\"JmVITJ\":\"Naozaj chcete odstrániť túto šablónu? Túto akciu nie je možné vrátiť späť a e-maily sa vrátia k predvolenej šablóne.\",\"aLS+A6\":\"Naozaj chcete odstrániť túto šablónu? Túto akciu nie je možné vrátiť späť a e-maily sa vrátia k šablóne organizátora alebo predvolenej šablóne.\",\"5H3Z78\":\"Naozaj chcete odstrániť tento webhook?\",\"147G4h\":\"Naozaj chcete odísť?\",\"VDWChT\":\"Naozaj chcete nastaviť tohto organizátora ako koncept? Stránka organizátora bude skrytá pred verejnosťou.\",\"pWtQJM\":\"Naozaj chcete zverejniť tohto organizátora? Stránka organizátora bude viditeľná pre verejnosť.\",\"EOqL/A\":\"Naozaj chcete ponúknuť miesto tejto osobe? Dostane e-mailovú notifikáciu.\",\"yAXqWW\":\"Are you sure you want to permanently delete this date? This cannot be undone.\",\"WFHOlF\":\"Naozaj chcete zverejniť túto udalosť? Po zverejnení bude viditeľná pre verejnosť.\",\"4TNVdy\":\"Naozaj chcete zverejniť profil tohto organizátora? Po zverejnení bude viditeľný pre verejnosť.\",\"8x0pUg\":\"Naozaj chcete odstrániť tento záznam zo zoznamu čakateľov?\",\"cDtoWq\":[\"Naozaj chcete znovu odoslať potvrdenie objednávky na adresu \",[\"0\"],\"?\"],\"xeIaKw\":[\"Naozaj chcete znovu odoslať lístok na adresu \",[\"0\"],\"?\"],\"BjbocR\":\"Naozaj chcete obnoviť túto udalosť?\",\"7MjfcR\":\"Naozaj chcete obnoviť tohto organizátora?\",\"b7tkGp\":\"Are you sure you want to revoke this invitation?\",\"ExDt3P\":\"Naozaj chcete zrušiť zverejnenie tejto udalosti? Nebude už verejne viditeľná.\",\"5Qmxo/\":\"Naozaj chcete zrušiť zverejnenie profilu tohto organizátora? Nebude už verejne viditeľný.\",\"Uqefyd\":\"Ste registrovaný pre DPH v EÚ?\",\"+QARA4\":\"Umenie\",\"tLf3yJ\":\"Keďže vaša firma sídli v Írsku, na všetky poplatky platformy sa automaticky uplatňuje írska DPH vo výške 23 %.\",\"tMeVa/\":\"Požiadať o meno a e-mail pre každý zakúpený lístok\",\"ui5ln+\":\"Assign a different plan\",\"9Jxliv\":\"Assign plan\",\"xdiER7\":\"Priradená úroveň\",\"F2rX0R\":\"Musí byť vybraný aspoň jeden typ udalosti\",\"Z44eZS\":\"At least one product must stay available for this date. To make the date inaccessible, cancel it from the schedule instead.\",\"BCmibk\":\"Pokusy\",\"6PecK3\":\"Miera účasti a odbavenia naprieč všetkými udalosťami\",\"K2tp3v\":\"attendee\",\"AJ4rvK\":\"Účastník zrušený\",\"qvylEK\":\"Účastník vytvorený\",\"Aspq3b\":\"Zber údajov o účastníkoch\",\"fpb0rX\":\"Údaje účastníka skopírované z objednávky\",\"94aQMU\":\"Informácie o účastníkovi\",\"KkrBiR\":\"Zber informácií o účastníkoch\",\"sjPjOg\":\"Attendee notes\",\"cosfD8\":\"Stav účastníka\",\"D2qlBU\":\"Účastník aktualizovaný\",\"22BOve\":\"Účastník bol úspešne aktualizovaný\",\"x8Vnvf\":\"Lístok účastníka nie je zahrnutý v tomto zozname\",\"/Ywywr\":\"attendees\",\"zLRobu\":\"attendees checked in\",\"k3Tngl\":\"Účastníci exportovaní\",\"UoIRW8\":\"Registrovaní účastníci\",\"5UbY+B\":\"Účastníci s konkrétnym lístkom\",\"4HVzhV\":\"Účastníci:\",\"HVkhy2\":\"Analytika priradenia\",\"dMMjeD\":\"Rozklad priradenia\",\"1oPDuj\":\"Hodnota priradenia\",\"DBHTm/\":\"August\",\"JgREph\":\"Automatická ponuka je povolená\",\"V7Tejz\":\"Automatické spracovanie zoznamu čakateľov\",\"PZ7FTW\":\"Automaticky zistené na základe farby pozadia, ale môže byť prepísané\",\"zlnTuI\":\"Automaticky ponúkať lístky ďalšej osobe, keď sa uvoľní kapacita. Ak je zakázané, môžete manuálne spracovať zoznam čakateľov na stránke Zoznam čakateľov.\",\"csDS2L\":\"Dostupné\",\"Xp+ywP\":\"K dispozícii po dokončení platby\",\"dwDH1K\":[\"Available times on \",[\"dayName\"]],\"clF06r\":\"Dostupné na vrátenie\",\"NB5+UG\":\"Dostupné tokeny\",\"L+wGOG\":\"Awaiting\",\"qcw2OD\":\"Awaiting pay\",\"kNmmvE\":\"Awesome Events Ltd.\",\"TeSaQO\":\"Späť na účty\",\"kYqM1A\":\"Späť na udalosť\",\"s5QRF3\":\"Späť na správy\",\"td/bh+\":\"Späť na správy\",\"nsm7BA\":\"Späť na vyhľadávanie\",\"imjKVx\":\"Bank account connected\",\"D9LTCH\":\"Base Price\",\"hviJef\":\"Based on the global sale period above, not per date\",\"jIPNJG\":\"Základné informácie\",\"UabgBd\":\"Telo správy je povinné\",\"HWXuQK\":\"Uložte si túto stránku do záložiek a spravujte svoju objednávku kedykoľvek.\",\"CUKVDt\":\"Prispôsobte svoje lístky vlastným logom, farbami a správou v päte.\",\"4BZj5p\":\"Built-in fraud protection\",\"cr7kGH\":\"Bulk Edit\",\"1Fbd6n\":\"Bulk Edit Dates\",\"Eq6Tu9\":\"Bulk update failed.\",\"9N+p+g\":\"Firma\",\"SWnN1L\":\"Business address\",\"kQekXw\":\"Business name\",\"bv6RXK\":\"Popis tlačidla\",\"ChDLlO\":\"Text tlačidla\",\"BUe8Wj\":\"Platí kupujúci\",\"qF1qbA\":\"Kupujúci vidia čistú cenu. Poplatok platformy sa odpočíta z vašej výplaty.\",\"dg05rc\":\"Pridaním sledovacích pixelov potvrdzujete, že vy a táto platforma ste spoločnými správcami zhromaždených údajov. Ste zodpovední za zabezpečenie zákonného základu pre toto spracovanie podľa platných zákonov o ochrane súkromia (GDPR, CCPA atď.).\",\"DFqasq\":[\"Pokračovaním súhlasíte s <0>Podmienkami služby \",[\"0\"],\"\"],\"wVSa+U\":\"By day of month\",\"0MnNgi\":\"By day of week\",\"CetOZE\":\"By ticket type\",\"lFdbRS\":\"Obísť poplatky aplikácie\",\"AjVXBS\":\"Calendar\",\"2VLZwd\":\"Tlačidlo výzvy na akciu\",\"rT2cV+\":\"Camera\",\"7hYa9y\":\"Camera permission was denied. <0>Request permission again, or grant this page camera access in your browser settings.\",\"D02dD9\":\"Kampaň\",\"RRPA79\":\"Can't check in\",\"OcVwAd\":[\"Cancel \",[\"count\"],\" date(s)\"],\"H4nE+E\":\"Zrušiť všetky produkty a uvoľniť ich späť do zásoby\",\"Py78q9\":\"Cancel Date\",\"tOXAdc\":\"Zrušením sa zrušia všetci účastníci spojení s touto objednávkou a lístky sa vrátia do dostupnej zásoby.\",\"FPpqc7\":[\"Cancelling \",[\"0\"],\" date(s). This may take a moment to complete.\"],\"01sEfm\":\"Nie je možné odstrániť predvolenú konfiguráciu systému\",\"VsM1HH\":\"Priradenia kapacity\",\"9bIMVF\":\"Capacity management\",\"H7K8og\":\"Capacity must be 0 or greater\",\"nzao08\":\"capacity updates\",\"4cp9NP\":\"Capacity Used\",\"K7tIrx\":\"Kategória\",\"DRK3Bq\":\"Category deleted successfully\",\"o+XJ9D\":\"Zmeniť\",\"kJkjoB\":\"Change duration\",\"J0KExZ\":\"Change the attendee limit\",\"ssospy\":\"Change time\",\"CIHJJf\":\"Zmeniť nastavenia zoznamu čakateľov\",\"B5icLR\":[\"Changed duration for \",[\"count\"],\" date(s)\"],\"Kb+0BT\":\"Charges\",\"2tbLdK\":\"Charitatívna organizácia\",\"BPWGKn\":\"Check in\",\"6uFFoY\":\"Check out\",\"FjAlwK\":[\"Check out this event: \",[\"0\"]],\"v4fiSg\":\"Skontrolujte svoj e-mail\",\"51AsAN\":\"Skontrolujte doručenú poštu! Ak sú s týmto e-mailom spojené lístky, dostanete odkaz na ich zobrazenie.\",\"Y3FYXy\":\"Check-In\",\"udRwQs\":\"Odbavenie vytvorené\",\"F4SRy3\":\"Odbavenie odstránené\",\"as6XfO\":[\"Check-in for \",[\"0\"],\" was undone\"],\"9s/wrQ\":\"Check-in history\",\"Wwztk4\":\"Check-In List\",\"9gPPUY\":\"Zoznam odbavení vytvorený\",\"dwjiJt\":\"Check-in list info\",\"7od0PV\":\"check-in lists\",\"f2vU9t\":\"Zoznamy odbavení\",\"XprdTn\":\"Check-in navigation\",\"5tV1in\":\"Check-in progress\",\"SHJwyq\":\"Miera odbavenia\",\"qCqdg6\":\"Stav odbavenia\",\"cKj6OE\":\"Súhrn odbavení\",\"7B5M35\":\"Odbavenia\",\"VrmydS\":\"Checked in\",\"DM4gBB\":\"Čínština (tradičná)\",\"p8Jvp4\":\"Choose a configuration\",\"ElShBO\":\"Choose a different action\",\"pHEhf+\":\"Vyberte písmo, ktoré zodpovedá vašej značke. Písma sú hosťované cez Bunny Fonts.\",\"Zok1Gx\":\"Choose an organizer\",\"pkk46Q\":\"Vyberte organizátora\",\"Ag32+c\":\"Choose another date\",\"Crr3pG\":\"Vyberte kalendár\",\"Z38ZJu\":\"Vyberte, ako sa dátum podujatia zobrazí na vstupenke\",\"LAW8Vb\":\"Vyberte predvolené nastavenie pre nové udalosti. Toto môže byť prepísané pre jednotlivé udalosti.\",\"pjp2n5\":\"Vyberte, kto platí poplatok platformy. Toto neovplyvňuje ďalšie poplatky nakonfigurované v nastaveniach vášho účtu.\",\"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\":\"Kliknite na zobrazenie poznámok\",\"RG3szS\":\"zavrieť\",\"RWw9Lg\":\"Zavrieť modálne okno\",\"XwdMMg\":\"Kód môže obsahovať iba písmená, číslice, pomlčky a podčiarkovníky\",\"+yMJb7\":\"Kód je povinný\",\"m9SD3V\":\"Kód musí mať aspoň 3 znaky\",\"V1krgP\":\"Kód nesmie mať viac ako 20 znakov\",\"psqIm5\":\"Spolupracujte so svojím tímom na vytváraní skvelých udalostí.\",\"4bUH9i\":\"Zbierať údaje účastníka pre každý zakúpený lístok.\",\"TkfG8v\":\"Zbierať údaje na objednávku\",\"96ryID\":\"Zbierať údaje na lístok\",\"FpsvqB\":\"Farebný režim\",\"jEu4bB\":\"Stĺpce\",\"CWk59I\":\"Komédia\",\"rPA+Gc\":\"Preferencie komunikácie\",\"zFT5rr\":\"complete\",\"bUQMpb\":\"Complete Stripe setup\",\"744BMm\":\"Dokončite objednávku a zabezpečte si lístky. Táto ponuka je časovo obmedzená, neotáľajte.\",\"5YrKW7\":\"Dokončite platbu a zabezpečte si lístky.\",\"xGU92i\":\"Dokončite svoj profil a pridajte sa k tímu.\",\"QOhkyl\":\"Vytvoriť\",\"ih35UP\":\"Konferenčné centrum\",\"ywFj2D\":\"Configuration\",\"WTw0bB\":\"Configuration assigned\",\"X1zdE7\":\"Konfigurácia bola úspešne vytvorená\",\"mLBUMQ\":\"Konfigurácia bola úspešne odstránená\",\"UIENhw\":\"Názvy konfigurácií sú viditeľné pre koncových používateľov. Pevné poplatky budú prevedené na menu objednávky podľa aktuálneho výmenného kurzu.\",\"eeZdaB\":\"Konfigurácia bola úspešne aktualizovaná\",\"3cKoxx\":\"Konfigurácie\",\"8v2LRU\":\"Nakonfigurujte podrobnosti udalosti, miesto, možnosti pokladne a e-mailové notifikácie.\",\"raw09+\":\"Nakonfigurujte spôsob zberu údajov účastníkov počas pokladne\",\"FI60XC\":\"Nakonfigurujte dane a poplatky\",\"av6ukY\":\"Configure which products are available for this occurrence and optionally adjust pricing.\",\"NGXKG/\":\"Potvrdiť e-mailovú adresu\",\"JRQitQ\":\"Potvrdiť nové heslo\",\"Auz0Mz\":\"Potvrďte svoj e-mail pre prístup ku všetkým funkciám.\",\"7+grte\":\"Potvrdzovací e-mail odoslaný! Skontrolujte svoju doručenú poštu.\",\"n/7+7Q\":\"Potvrdenie odoslané na\",\"x3wVFc\":\"Gratulujeme! Vaša udalosť je teraz viditeľná pre verejnosť.\",\"0W2NQP\":\"Connect bank\",\"/K4Vqr\":\"Pripojte Stripe na prijímanie platieb\",\"nQI4H5\":\"Pripojte Stripe pre úpravu e-mailových šablón\",\"LmvZ+E\":\"Pripojte Stripe pre zasielanie správ\",\"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\":\"Pre online podujatia sú povinné údaje o pripojení\",\"jfC/xh\":\"Kontakt\",\"LOFgda\":[\"Kontakt \",[\"0\"]],\"41BQ3k\":\"Kontaktný e-mail\",\"m8WD6t\":\"Pokračovať v nastavení\",\"0GwUT4\":\"Pokračovať na pokladňu\",\"sBV87H\":\"Pokračovať k vytvoreniu udalosti\",\"nKtyYu\":\"Pokračovať na ďalší krok\",\"F3/nus\":\"Pokračovať k platbe\",\"s30OcA\":\"Ovládajte, ako sa dátumy a časy zobrazujú na stránke podujatia\",\"p2FRHj\":\"Kontrolovať spôsob spracovania poplatkov platformy pre túto udalosť\",\"NqfabH\":\"Control who gets in for this date\",\"fmYxZx\":\"Control who gets in, and when\",\"1JnTgU\":\"Skopírované zhora\",\"FxVG/l\":\"Skopírované do schránky\",\"PiH3UR\":\"Skopírované!\",\"4i7smN\":\"Copy account ID\",\"uUPbPg\":\"Kopírovať partnerský odkaz\",\"iVm46+\":\"Kopírovať kód\",\"cF2ICc\":\"Kopírovať odkaz pre zákazníka\",\"+2ZJ7N\":\"Kopírovať údaje k prvému účastníkovi\",\"ZN1WLO\":\"Kopírovať e-mail\",\"y1eoq1\":\"Kopírovať odkaz\",\"tUGbi8\":\"Kopírovať moje údaje do:\",\"y22tv0\":\"Skopírujte tento odkaz a zdieľajte ho kdekoľvek\",\"/4gGIX\":\"Kopírovať do schránky\",\"e0f4yB\":\"Miesto sa nepodarilo vymazať\",\"vkiDx2\":\"Could not prepare the bulk update.\",\"KOavaU\":\"Nepodarilo sa získať údaje o adrese\",\"/lq4oO\":\"Could not save date\",\"mHu0az\":\"Couldn't send verification email. Please try again.\",\"QOIm+S\":\"Počty zahŕňajú všetky nadchádzajúce dátumy. Každej osobe je ponúknuté miesto na dátum, na ktorý sa prihlásila.\",\"P0rbCt\":\"Obrázok obalu\",\"p4kqHr\":\"Cover image added\",\"60u+dQ\":\"Obrázok obalu sa zobrazí v hornej časti stránky udalosti\",\"2NLjA6\":\"Obrázok obalu sa zobrazí v hornej časti stránky organizátora\",\"GkrqoY\":\"Covers every ticket\",\"zg4oSu\":[\"Vytvoriť šablónu \",[\"0\"]],\"RKKhnW\":\"Vytvorte vlastný widget na predaj lístkov na vašom webe.\",\"6sk7PP\":\"Create a fixed number\",\"jqhTmw\":\"Create a list for this date\",\"PhioFp\":\"Create a new check-in list for an active session, or contact the organizer if you think this is a mistake.\",\"yIRev4\":\"Vytvoriť heslo\",\"j7xZ7J\":\"Vytvorte ďalších organizátorov na správu samostatných značiek, oddelení alebo sérií udalostí pod jedným účtom. Každý organizátor má vlastné udalosti, nastavenia a verejnú stránku.\",\"xfKgwv\":\"Vytvoriť partnera\",\"tudG8q\":\"Vytvorte a nakonfigurujte lístky a tovar na predaj.\",\"YAl9Hg\":\"Vytvoriť konfiguráciu\",\"BTne9e\":\"Vytvorte vlastné e-mailové šablóny pre túto udalosť, ktoré prepíšu predvolené nastavenia organizátora\",\"YIDzi/\":\"Vytvoriť vlastnú šablónu\",\"tsGqx5\":\"Create Date\",\"Nc3l/D\":\"Vytvorte zľavy, prístupové kódy pre skryté lístky a špeciálne ponuky.\",\"PybJS2\":\"Create event\",\"eWEV9G\":\"Vytvoriť nové heslo\",\"wl2iai\":\"Create Schedule\",\"8AiKIu\":\"Vytvoriť lístok alebo produkt\",\"/HGmW9\":\"Vytvorte sledovateľné odkazy na odmeňovanie partnerov, ktorí propagujú vašu udalosť.\",\"dkAPxi\":\"Vytvoriť webhook\",\"5slqwZ\":\"Vytvorte svoju udalosť\",\"JQNMrj\":\"Vytvorte svoju prvú udalosť\",\"CCjxOC\":\"Vytvorte svoju prvú udalosť a začnite predávať lístky a spravovať účastníkov.\",\"ZCSSd+\":\"Vytvorte vlastnú udalosť\",\"67NsZP\":\"Vytváranie udalosti...\",\"H34qcM\":\"Vytváranie organizátora...\",\"1YMS+X\":\"Vytváranie vašej udalosti, čakajte prosím\",\"yiy8Jt\":\"Vytváranie profilu organizátora, čakajte prosím\",\"lfLHNz\":\"Popis CTA je povinný\",\"0xLR6W\":\"Currently assigned\",\"iTvh6I\":\"Momentálne dostupné na nákup\",\"A42Dqn\":\"Custom branding\",\"Guo0lU\":\"Vlastný dátum a čas\",\"WDMdn8\":\"Custom questions\",\"O6mra8\":\"Vlastné otázky\",\"axv/Mi\":\"Vlastná šablóna\",\"2YeVGY\":\"Odkaz pre zákazníka skopírovaný do schránky\",\"QMHSMS\":\"Zákazník dostane e-mail potvrdzujúci vrátenie platby\",\"NihQNk\":\"Zákazníci\",\"hINN++\":\"Customize page\",\"7gsjkI\":\"Prispôsobte e-maily odosielané zákazníkom pomocou Liquid šablonovania. Tieto šablóny budú použité ako predvolené pre všetky udalosti vo vašej organizácii.\",\"xJaTUK\":\"Prispôsobte rozloženie, farby a značku domovskej stránky udalosti.\",\"MXZfGN\":\"Prispôsobte otázky kladené počas pokladne na zber dôležitých informácií od účastníkov.\",\"iX6SLo\":\"Prispôsobte text zobrazený na tlačidle Pokračovať\",\"pxNIxa\":\"Prispôsobte svoju e-mailovú šablónu pomocou Liquid šablonovania\",\"3trPKm\":\"Prispôsobte vzhľad stránky organizátora\",\"U0sC6H\":\"Daily\",\"/gWrVZ\":\"Denné príjmy, dane, poplatky a vrátenia naprieč všetkými udalosťami\",\"zgCHnE\":\"Denná správa o predajoch\",\"nHm0AI\":\"Denný rozklad predajov, daní a poplatkov\",\"1aPnDT\":\"Dance\",\"pvnfJD\":\"Tmavý\",\"MaB9wW\":\"Date Cancellation\",\"e6cAxJ\":\"Date cancelled\",\"81jBnC\":\"Date cancelled successfully\",\"a/C/6R\":\"Date created successfully\",\"IW7Q+u\":\"Date deleted\",\"rngCAz\":\"Date deleted successfully\",\"vHbfoQ\":\"Date reactivated\",\"hvah+S\":\"Date reopened for new sales\",\"Ez0YsD\":\"Date updated successfully\",\"Te33mU\":\"Dates are managed per occurrence\",\"91zCxb\":\"Dates with sessions\",\"/ITcnz\":\"day\",\"H7OUPr\":\"Day\",\"JtHrX9\":\"Day of Month\",\"J/Upwb\":\"days\",\"vDVA2I\":\"Days of Month\",\"rDLvlL\":\"Days of Week\",\"r6zgGo\":\"December\",\"jbq7j2\":\"Odmietnuť\",\"ovBPCi\":\"Predvolené\",\"JtI4vj\":\"Predvolený zber informácií o účastníkoch\",\"ULjv90\":\"Default capacity per date\",\"3R/Tu2\":\"Predvolené spracovanie poplatkov\",\"1bZAZA\":\"Bude použitá predvolená šablóna\",\"HNlEFZ\":\"odstrániť\",\"KpnwJK\":[\"Vymazať \\\"\",[\"0\"],\"\\\"?\"],\"BlII4o\":[\"Delete \",[\"count\"],\" selected date(s)? Dates with orders will be skipped. This cannot be undone.\"],\"vu7gDm\":\"Odstrániť partnera\",\"KZN4Lc\":\"Odstrániť všetko\",\"6EkaOO\":\"Delete Date\",\"io0G93\":\"Odstrániť udalosť\",\"+jw/c1\":\"Odstrániť obrázok\",\"hdyeZ0\":\"Odstrániť úlohu\",\"xxjZeP\":\"Vymazať miesto\",\"sY3tIw\":\"Odstrániť organizátora\",\"UBv8UK\":\"Delete Permanently\",\"dPyJ15\":\"Odstrániť šablónu\",\"IQTR34\":\"Delete this category? Any products in it will also be deleted. This cannot be undone.\",\"/1wMxk\":\"Delete this product? This cannot be undone.\",\"mxsm1o\":\"Odstrániť túto otázku? Túto akciu nie je možné vrátiť späť.\",\"snMaH4\":\"Odstrániť webhook\",\"LIZZLY\":[\"Deleted \",[\"0\"],\" date(s)\"],\"7w0Wev\":\"Description and venue added\",\"vYgeDk\":\"Zrušiť výber všetkého\",\"NvuEhl\":\"Dizajnové prvky\",\"H8kMHT\":\"Nedostali ste kód?\",\"G8KNgd\":\"Different location\",\"E/QGRL\":\"Disabled\",\"OdPOhy\":\"Discord\",\"nZJ8tu\":\"Dismiss setup checklist\",\"QotGhf\":\"Zamietnuť túto správu\",\"BREO0S\":\"Zobraziť zaškrtávacie políčko umožňujúce zákazníkom prihlásiť sa na marketingové komunikácie od tohto organizátora udalosti.\",\"HtaSQp\":\"Zobrazuje, koľko miest zostáva na jednotlivé dátumy vo widgete vstupeniek. Pre jednotlivé dátumy to môžete prepísať.\",\"pfa8F0\":\"Zobrazovaný názov\",\"Kdpf90\":\"Nezabudnite!\",\"352VU2\":\"Nemáte účet? <0>Zaregistrujte sa\",\"AXXqG+\":\"Dar\",\"DPfwMq\":\"Hotovo\",\"JoPiZ2\":\"Door staff instructions\",\"2+O9st\":\"Stiahnuť správy o predajoch, účastníkoch a financiách pre všetky dokončené objednávky.\",\"eneWvv\":\"Koncept\",\"Ts8hhq\":\"Kvôli vysokému riziku spamu musíte pripojiť účet Stripe pred úpravou e-mailových šablón. Je to na zabezpečenie, že všetci organizátori udalostí sú overení a zodpovední.\",\"TnzbL+\":\"Kvôli vysokému riziku spamu musíte pripojiť účet Stripe pred odosielaním správ účastníkom.\\nJe to na zabezpečenie, že všetci organizátori udalostí sú overení a zodpovední.\",\"euc6Ns\":\"Duplikovať\",\"YueC+F\":\"Duplicate Date\",\"KRmTkx\":\"Duplikovať produkt\",\"Jd3ymG\":\"Duration must be at least 1 minute.\",\"KIjvtr\":\"Holandčina\",\"22xieU\":\"napr. 180 (3 hodiny)\",\"/zajIE\":\"e.g. Morning Session\",\"SPKbfM\":\"napr. Získať lístky, Zaregistrovať sa\",\"fc7wGW\":\"napr. Dôležitá aktualizácia o vašich lístkoch\",\"54MPqC\":\"napr. Štandard, Prémiový, Enterprise\",\"3RQ81z\":\"Každá osoba dostane e-mail s rezervovaným miestom na dokončenie nákupu.\",\"Xfsjel\":\"Každý produkt\",\"5oD9f/\":\"Earlier\",\"LTzmgK\":[\"Upraviť šablónu \",[\"0\"]],\"v4+lcZ\":\"Upraviť partnera\",\"2iZEz7\":\"Upraviť odpoveď\",\"t2bbp8\":\"Upraviť účastníka\",\"etaWtB\":\"Upraviť údaje účastníka\",\"+guao5\":\"Upraviť konfiguráciu\",\"1Mp/A4\":\"Edit Date\",\"m0ZqOT\":\"Upraviť miesto\",\"8oivFT\":\"Upraviť miesto\",\"vRWOrM\":\"Upraviť podrobnosti objednávky\",\"fW5sSv\":\"Upraviť webhook\",\"nP7CdQ\":\"Upraviť webhook\",\"MRZxAn\":\"Edited\",\"uBAxNB\":\"Editor\",\"aqxYLv\":\"Vzdelávanie\",\"iiWXDL\":\"Zlyhania oprávnenosti\",\"zPiC+q\":\"Oprávnené zoznamy odbavení\",\"SiVstt\":\"Email & scheduled messages\",\"V2sk3H\":\"E-mail a šablóny\",\"hbwCKE\":\"E-mailová adresa skopírovaná do schránky\",\"dSyJj6\":\"E-mailové adresy sa nezhodujú\",\"elW7Tn\":\"Telo e-mailu\",\"ZsZeV2\":\"E-mail je povinný\",\"Be4gD+\":\"Náhľad e-mailu\",\"6IwNUc\":\"E-mailové šablóny\",\"H/UMUG\":\"Vyžaduje sa overenie e-mailu\",\"PLEl94\":\"Email verified\",\"L86zy2\":\"E-mail bol úspešne overený!\",\"FSN4TS\":\"Vložiť widget\",\"z9NkYY\":\"Embeddable widget\",\"Qj0GKe\":\"Povoliť samoobsluhu účastníka\",\"hEtQsg\":\"Predvolene povoliť samoobsluhu účastníka\",\"Upeg/u\":\"Povoliť túto šablónu na odosielanie e-mailov\",\"7dSOhU\":\"Povoliť zoznam čakateľov\",\"RxzN1M\":\"Povolené\",\"xDr/ct\":\"End\",\"sGjBEq\":\"Dátum a čas ukončenia (voliteľné)\",\"PKXt9R\":\"Dátum ukončenia musí byť po dátume začiatku\",\"ZayGC7\":\"End on a date\",\"48Y16Q\":\"Čas ukončenia (voliteľné)\",\"TbaYrr\":[\"Ended \",[\"0\"]],\"CFgwiw\":[\"Ends \",[\"0\"]],\"SqOIQU\":\"Enter a capacity value or choose unlimited.\",\"h37gRz\":\"Enter a label or choose to remove it.\",\"7YZofi\":\"Zadajte predmet a telo pre zobrazenie náhľadu\",\"khyScF\":\"Enter a time to shift by.\",\"SKx/0u\":\"Zadajte názov miesta alebo adresu\",\"ppwojw\":\"Pre prezenčné podujatia zadajte názov miesta alebo adresu\",\"j+eCIq\":\"Zadať adresu manuálne\",\"3bR1r4\":\"Zadajte e-mail partnera (voliteľné)\",\"ARkzso\":\"Zadajte meno partnera\",\"ej4L8b\":\"Enter capacity\",\"6KnyG0\":\"Zadajte e-mail\",\"INDKM9\":\"Zadajte predmet e-mailu...\",\"xUgUTh\":\"Zadajte meno\",\"9/1YKL\":\"Zadajte priezvisko\",\"VpwcSk\":\"Zadajte nové heslo\",\"kWg31j\":\"Zadajte jedinečný partnerský kód\",\"C3nD/1\":\"Zadajte svoj e-mail\",\"VmXiz4\":\"Zadajte svoj e-mail a pošleme vám pokyny na obnovenie hesla.\",\"n9V+ps\":\"Zadajte svoje meno\",\"IdULhL\":\"Zadajte číslo DPH vrátane kódu krajiny, bez medzier (napr. IE1234567A, DE123456789)\",\"RRlWVA\":\"Celá objednávka\",\"o21Y+P\":\"entries\",\"X88/6w\":\"Záznamy sa zobrazia tu, keď sa zákazníci pridajú do zoznamu čakateľov pre vypredané produkty.\",\"LslKhj\":\"Chyba pri načítaní protokolov\",\"VCNHvW\":\"Udalosť archivovaná\",\"ZD0XSb\":\"Udalosť bola úspešne archivovaná\",\"WgD6rb\":\"Kategória udalosti\",\"b46pt5\":\"Obrázok obalu udalosti\",\"NAUIJ7\":\"Event created\",\"1b77ID\":\"Udalosť vytvorená\",\"1Hzev4\":\"Vlastná šablóna udalosti\",\"+v+GW0\":\"Zobrazenie dátumu podujatia\",\"7u9/DO\":\"Udalosť bola úspešne odstránená\",\"imgKgl\":\"Popis udalosti\",\"IzR/Fc\":\"Event lifetime\",\"PYs3rP\":\"Názov udalosti\",\"HhwcTQ\":\"Názov udalosti\",\"WZZzB6\":\"Názov udalosti je povinný\",\"Wd5CDM\":\"Názov udalosti by mal mať menej ako 150 znakov\",\"4JzCvP\":\"Udalosť nie je dostupná\",\"mImacG\":\"Stránka udalosti\",\"Hk9Ki/\":\"Udalosť bola úspešne obnovená\",\"JyD0LH\":\"Nastavenia udalosti\",\"XVLu2v\":\"Názov udalosti\",\"OfmsI9\":\"Udalosť je príliš nová\",\"4SILkp\":\"Event totals\",\"YDVUVl\":\"Typy udalostí\",\"+HeiVx\":\"Udalosť aktualizovaná\",\"19j6uh\":\"Výkonnosť udalostí\",\"PC3/fk\":\"Udalosti začínajúce v nasledujúcich 24 hodinách\",\"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\":\"Každá e-mailová šablóna musí obsahovať tlačidlo výzvy na akciu odkazujúce na príslušnú stránku\",\"BVinvJ\":\"Príklady: \\\"Ako ste sa o nás dozvedeli?\\\", \\\"Názov firmy pre faktúru\\\"\",\"2hGPQG\":\"Príklady: \\\"Veľkosť trička\\\", \\\"Preferencia jedla\\\", \\\"Pracovná pozícia\\\"\",\"qNuTh3\":\"Výnimka\",\"M1RnFv\":\"Vypršané\",\"kF8HQ7\":\"Exportovať odpovede\",\"2KAI4N\":\"Exportovať CSV\",\"JKfSAv\":\"Export zlyhal. Skúste to znovu.\",\"SVOEsu\":\"Export spustený. Pripravuje sa súbor...\",\"wuyaZh\":\"Export úspešný\",\"9bpUSo\":\"Exportovanie partnerov\",\"jtrqH9\":\"Exportovanie účastníkov\",\"R4Oqr8\":\"Export dokončený. Sťahovanie súboru...\",\"UlAK8E\":\"Exportovanie objednávok\",\"DwuoH0\":\"Facebook\",\"7Bj3x9\":\"Neúspešné\",\"8uOlgz\":\"Zlyhalo o\",\"tKcbYd\":\"Neúspešné úlohy\",\"SsI9v/\":\"Nepodarilo sa opustiť objednávku. Skúste to znovu.\",\"LdPKPR\":\"Nepodarilo sa priradiť konfiguráciu\",\"PO0cfn\":\"Failed to cancel date\",\"YUX+f+\":\"Failed to cancel dates\",\"SIHgVQ\":\"Nepodarilo sa zrušiť správu\",\"cEFg3R\":\"Nepodarilo sa vytvoriť partnera\",\"dVgNF1\":\"Nepodarilo sa vytvoriť konfiguráciu\",\"fAoRRJ\":\"Failed to create schedule\",\"U66oUa\":\"Nepodarilo sa vytvoriť šablónu\",\"aFk48v\":\"Nepodarilo sa odstrániť konfiguráciu\",\"n1CYMH\":\"Failed to delete date\",\"KXv+Qn\":\"Failed to delete date. It may have existing orders.\",\"JJ0uRo\":\"Failed to delete dates\",\"rgoBnv\":\"Nepodarilo sa odstrániť udalosť\",\"Zw6LWb\":\"Nepodarilo sa odstrániť úlohu\",\"tq0abZ\":\"Nepodarilo sa odstrániť úlohy\",\"2mkc3c\":\"Nepodarilo sa odstrániť organizátora\",\"5E23qd\":\"Failed to delete product. Please try again.\",\"vKMKnu\":\"Nepodarilo sa odstrániť otázku\",\"xFj7Yj\":\"Nepodarilo sa odstrániť šablónu\",\"jo3Gm6\":\"Nepodarilo sa exportovať partnerov\",\"Jjw03p\":\"Nepodarilo sa exportovať účastníkov\",\"ZPwFnN\":\"Nepodarilo sa exportovať objednávky\",\"zGE3CH\":\"Nepodarilo sa exportovať správu. Skúste to znovu.\",\"lS9/aZ\":\"Nepodarilo sa načítať príjemcov\",\"X4o0MX\":\"Nepodarilo sa načítať webhook\",\"ETcU7q\":\"Nepodarilo sa ponúknuť miesto\",\"5670b9\":\"Nepodarilo sa ponúknuť lístky\",\"e5KIbI\":\"Failed to reactivate date\",\"7zyx8a\":\"Nepodarilo sa odstrániť zo zoznamu čakateľov\",\"A/P7PX\":\"Failed to remove override\",\"ogWc1z\":\"Failed to reopen date\",\"0+iwE5\":\"Nepodarilo sa preusporiadať otázky\",\"EJPAcd\":\"Nepodarilo sa znovu odoslať potvrdenie objednávky\",\"DjSbj3\":\"Nepodarilo sa znovu odoslať lístok\",\"YQ3QSS\":\"Nepodarilo sa znovu odoslať overovací kód\",\"wDioLj\":\"Nepodarilo sa zopakovať úlohu\",\"DKYTWG\":\"Nepodarilo sa zopakovať úlohy\",\"WRREqF\":\"Failed to save override\",\"sj/eZA\":\"Failed to save price override\",\"780n8A\":\"Failed to save product settings\",\"zTkTF3\":\"Nepodarilo sa uložiť šablónu\",\"l6acRV\":\"Nepodarilo sa uložiť nastavenia DPH. Skúste to znovu.\",\"T6B2gk\":\"Nepodarilo sa odoslať správu. Skúste to znovu.\",\"lKh069\":\"Nepodarilo sa spustiť úlohu exportu\",\"t/KVOk\":\"Nepodarilo sa spustiť zosobnenie. Skúste to znovu.\",\"QXgjH0\":\"Nepodarilo sa zastaviť zosobnenie. Skúste to znovu.\",\"i0QKrm\":\"Nepodarilo sa aktualizovať partnera\",\"NNc33d\":\"Nepodarilo sa aktualizovať odpoveď.\",\"E9jY+o\":\"Nepodarilo sa aktualizovať účastníka\",\"uQynyf\":\"Nepodarilo sa aktualizovať konfiguráciu\",\"i2PFQJ\":\"Nepodarilo sa aktualizovať stav udalosti\",\"EhlbcI\":\"Nepodarilo sa aktualizovať úroveň správ\",\"rpGMzC\":\"Nepodarilo sa aktualizovať objednávku\",\"T2aCOV\":\"Nepodarilo sa aktualizovať stav organizátora\",\"Eeo/Gy\":\"Nepodarilo sa aktualizovať nastavenie\",\"kqA9lY\":\"Nepodarilo sa aktualizovať nastavenia DPH\",\"7/9RFs\":\"Nepodarilo sa nahrať obrázok.\",\"nkNfWu\":\"Nepodarilo sa nahrať obrázok. Skúste to znovu.\",\"rxy0tG\":\"Nepodarilo sa overiť e-mail\",\"QRUpCk\":\"Family\",\"5LO38w\":\"Fast payouts to your bank\",\"4lgLew\":\"February\",\"9bHCo2\":\"Mena poplatku\",\"/sV91a\":\"Spracovanie poplatkov\",\"K4dKSP\":\"Fee override saved\",\"LyUWXA\":\"Poplatky obídené\",\"cf35MA\":\"Festival\",\"pAey+4\":\"Súbor je príliš veľký. Maximálna veľkosť je 5 MB.\",\"VejKUM\":\"Najprv vyplňte svoje údaje vyššie\",\"/n6q8B\":\"Film\",\"L1qbUx\":\"Filter attendees\",\"8OvVZZ\":\"Filtrovať účastníkov\",\"N/H3++\":\"Filter by date\",\"mvrlBO\":\"Filtrovať podľa udalosti\",\"g+xRXP\":\"Finish setting up Stripe\",\"LHH461\":\"Finish setup\",\"syyeb9\":\"First\",\"Vj6wk9\":\"First 30 days\",\"/bpZYb\":\"First 7 days\",\"ziEnjY\":\"First 90 days\",\"1vBhpG\":\"Prvý účastník\",\"4pwejF\":\"Meno je povinné\",\"rVogsf\":\"Na zverejnenie opravte problémy\",\"3lkYdQ\":\"Fixed fee\",\"6bBh3/\":\"Pevný poplatok\",\"zWqUyJ\":\"Pevný poplatok účtovaný za transakciu\",\"LWL3Bs\":\"Pevný poplatok musí byť 0 alebo väčší\",\"0RI8m4\":\"Flash off\",\"q0923e\":\"Flash on\",\"X+U6/w\":\"Rodina písma\",\"lWxAUo\":\"Jedlo a nápoje\",\"nFm+5u\":\"Text päty\",\"a8nooQ\":\"Fourth\",\"wtuVU4\":\"Frequency\",\"xVhQZV\":\"Fri\",\"39y5bn\":\"Friday\",\"f5UbZ0\":\"Full data ownership\",\"cfvx/y\":\"Full event\",\"MY2SVM\":\"Plné vrátenie\",\"PGQLdy\":\"future\",\"8N/j1s\":\"Future dates only\",\"yRx/6K\":\"Future dates will be copied with capacity reset to zero\",\"T02gNN\":\"Všeobecný vstup\",\"3ep0Gx\":\"Všeobecné informácie o vašom organizátorovi\",\"ziAjHi\":\"Generovať\",\"exy8uo\":\"Generovať kód\",\"4CETZY\":\"Získať trasu\",\"pjkEcB\":\"Get Paid\",\"lGYzP6\":\"Get paid with Stripe\",\"ZDIydz\":\"Začať\",\"u6FPxT\":\"Získať lístky\",\"8KDgYV\":\"Pripravte svoju udalosť\",\"RkXlPZ\":\"GitHub\",\"sr0UJD\":\"Go Back\",\"oNL5vN\":\"Prejsť na stránku udalosti\",\"gHSuV/\":\"Prejsť na domovskú stránku\",\"8+Cj55\":\"Go to Schedule\",\"6nDzTl\":\"Dobrá čitateľnosť\",\"76gPWk\":\"Got it\",\"CZXzs4\":\"Gréčtina\",\"aGWZUr\":\"Hrubé príjmy\",\"n8IUs7\":\"Hrubé príjmy\",\"O1wAlQ\":\"Guest\",\"LIYoRQ\":\"Správa hostí\",\"NUsTc4\":\"Happening now\",\"kTSQej\":[\"Ahoj \",[\"0\"],\", spravujte svoju platformu odtiaľto.\"],\"dORAcs\":\"Tu sú všetky lístky spojené s vašou e-mailovou adresou.\",\"g+2103\":\"Tu je váš partnerský odkaz\",\"bVsnqU\":\"Hi,\",\"/iE8xx\":\"Poplatok Hi.Events\",\"zppscQ\":\"Poplatky platformy Hi.Events a rozklad DPH podľa transakcií\",\"D+zLDD\":\"Skryté\",\"DRErHC\":\"Skryté pred účastníkmi – viditeľné iba pre organizátorov\",\"NNnsM0\":\"Skryť rozšírené možnosti\",\"P+5Pbo\":\"Skryť odpovede\",\"VMlRqi\":\"Hide details\",\"FmogyU\":\"Skryť možnosti\",\"uXNYjR\":\"Skryť vypredané dátumy a časy\",\"g9RcYX\":\"Skryť dátum\",\"uMwTx7\":\"Skryť túto kategóriu?\",\"gtEbeW\":\"Zvýrazniť\",\"NF8sdv\":\"Zvýrazniť správu\",\"MXSqmS\":\"Zvýrazniť tento produkt\",\"7ER2sc\":\"Zvýraznené\",\"sq7vjE\":\"Zvýraznené produkty budú mať inú farbu pozadia, aby vynikli na stránke udalosti.\",\"1+WSY1\":\"Hobbies\",\"yY8wAv\":\"Hours\",\"49Tkiw\":\"Ako sa zľava uplatňuje?\",\"sy9anN\":\"Ako dlho má zákazník na dokončenie nákupu po prijatí ponuky. Nechajte prázdne pre bez časového limitu.\",\"n2ilNh\":\"How long does the schedule run?\",\"DMr2XN\":\"How often?\",\"cceMns\":\"How VAT is applied to the platform fees we charge you.\",\"FONsLE\":\"https://awesome-events.com\",\"htoh8N\":\"https://webhook-domain.com/webhook\",\"mkWad2\":\"Maďarčina\",\"8Wgd41\":\"Beriem na vedomie svoje povinnosti ako správca údajov\",\"O8m7VA\":\"Súhlasím s prijímaním e-mailových notifikácií súvisiacich s touto udalosťou\",\"YLgdk5\":\"Potvrdzujem, že toto je transakčná správa súvisiaca s touto udalosťou\",\"4/kP5a\":\"Ak sa nová karta neotvorila automaticky, kliknite na tlačidlo nižšie a pokračujte na pokladňu.\",\"W/eN+G\":\"Ak je prázdne, adresa sa použije na vygenerovanie odkazu Google Maps\",\"CY3yHL\":\"Ak je zaškrtnuté, táto kategória bude skrytá pred verejnosťou.\",\"iIEaNB\":\"Ak máte u nás účet, dostanete e-mail s pokynmi na obnovenie hesla.\",\"an5hVd\":\"Obrázky\",\"tSVr6t\":\"Zosobniť\",\"TWXU0c\":\"Zosobniť používateľa\",\"5LAZwq\":\"Zosobnenie spustené\",\"IMwcdR\":\"Zosobnenie zastavené\",\"0I0Hac\":\"Dôležité upozornenie\",\"yD3avI\":\"Dôležité: Zmena e-mailovej adresy aktualizuje odkaz na prístup k tejto objednávke. Po uložení budete presmerovaní na nový odkaz objednávky.\",\"jT142F\":[\"O \",[\"diffHours\"],\" hodín\"],\"OoSyqO\":[\"O \",[\"diffMinutes\"],\" minút\"],\"PdMhEx\":[\"in last \",[\"0\"],\" min\"],\"u7r0G5\":\"In person — set a venue\",\"/LCAwL\":\"Prebieha\",\"F1Xp97\":\"Jednotliví účastníci\",\"85e6zs\":\"Vložiť Liquid token\",\"CTWsuc\":\"Instagram\",\"VopR6B\":\"Instant Stripe payouts\",\"nbfdhU\":\"Integrácie\",\"I8eJ6/\":\"Internal notes on the attendee's ticket\",\"B2Tpo0\":\"Neplatný e-mail\",\"5tT0+u\":\"Neplatný formát e-mailu\",\"f9WRpE\":\"Neplatný typ súboru. Nahrajte obrázok.\",\"tnL+GP\":\"Neplatná Liquid syntax. Opravte ju a skúste znovu.\",\"N9JsFT\":\"Neplatný formát čísla DPH\",\"g+lLS9\":\"Pozvať člena tímu\",\"1z26sk\":\"Pozvať člena tímu\",\"KR0679\":\"Pozvať členov tímu\",\"aH6ZIb\":\"Pozvite svoj tím\",\"Dn4OyV\":\"Pozvaný\",\"IuMGvq\":\"Faktúra\",\"a/bUcL\":\"It happens on more than one date\",\"d+Oe9r\":\"It may have been unpublished or removed. Please check the link and try again.\",\"Lj7sBL\":\"Taliančina\",\"F5/CBH\":\"položka/položky\",\"BzfzPK\":\"Položky\",\"rjyWPb\":\"January\",\"KmWyx0\":\"Úloha\",\"o5r6b2\":\"Úloha odstránená\",\"cd0jIM\":\"Podrobnosti úlohy\",\"ruJO57\":\"Názov úlohy\",\"YZi+Hu\":\"Úloha zaradená do frontu na opakovanie\",\"nCywLA\":\"Pripojte sa odkiaľkoľvek\",\"SNzppu\":\"Pridať sa do zoznamu čakateľov\",\"dLouFI\":[\"Pridať sa do zoznamu čakateľov pre \",[\"productDisplayName\"]],\"2gMuHR\":\"Pripojený\",\"u4ex5r\":\"July\",\"zeEQd/\":\"June\",\"MxjCqk\":\"Hľadáte len svoje lístky?\",\"xOTzt5\":\"just now\",\"0RihU9\":\"Just wrapped\",\"lB2hSG\":[\"Informujte ma o novinkách a udalostiach od \",[\"0\"]],\"ioFA9i\":\"Keep the profit.\",\"o66QSP\":\"label updates\",\"RtKKbA\":\"Last\",\"DruLRc\":\"Posledných 14 dní\",\"ve9JTU\":\"Priezvisko je povinné\",\"h0Q9Iw\":\"Posledná odpoveď\",\"gw3Ur5\":\"Naposledy spustené\",\"FIq1Ba\":\"Later\",\"xvnLMP\":\"Latest check-ins\",\"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\":\"Svetlý\",\"1qY5Ue\":\"Odkaz vypršal alebo je neplatný\",\"gggTBm\":\"LinkedIn\",\"nvOPBA\":\"Povolené odkazy\",\"2BBAbc\":\"List\",\"dF6vP6\":\"Aktívne\",\"fpMs2Z\":\"ŽIVÉ\",\"D9zTjx\":\"Živé udalosti\",\"C33p4q\":\"Loaded dates\",\"WdmJIX\":\"Načítavanie náhľadu...\",\"IoDI2o\":\"Načítavanie tokenov...\",\"G3Ge9Z\":\"Načítavanie protokolov webhookov...\",\"NFxlHW\":\"Načítavanie webhookov\",\"E0DoRM\":\"Miesto bolo vymazané\",\"7w8lJU\":\"Miesto bolo uložené\",\"YsRXDD\":\"Miesto bolo aktualizované\",\"A/kIva\":\"location updates\",\"iyZPPR\":\"miest\",\"VppBoU\":\"Miesta\",\"iG7KNr\":\"Logo\",\"vu7ZGG\":\"Logo a obal\",\"gddQe0\":\"Logo a obrázok obalu pre vášho organizátora\",\"TBEnp1\":\"Logo sa zobrazí v hlavičke\",\"Jzu30R\":\"Logo sa zobrazí na lístku\",\"PSRm6/\":\"Vyhľadať moje lístky\",\"yJFu/X\":\"Hlavná kancelária\",\"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\":\"Spravovať zoznam čakateľov udalosti, zobraziť štatistiky a ponúkať lístky účastníkom.\",\"g2npA5\":\"Manuálna ponuka\",\"hg6l4j\":\"March\",\"pqRBOz\":\"Mark as validated (admin override)\",\"2L3vle\":\"Max. správ / 24 h\",\"Qp4HWD\":\"Max. príjemcov / správa\",\"3JzsDb\":\"May\",\"agPptk\":\"Stredné\",\"xDAtGP\":\"Správa\",\"bECJqy\":\"Správa bola úspešne schválená\",\"1jRD0v\":\"Správa účastníkom s konkrétnymi lístkami\",\"uQLXbS\":\"Správa zrušená\",\"48rf3i\":\"Správa nesmie presiahnuť 5000 znakov\",\"ZPj0Q8\":\"Podrobnosti správy\",\"Vjat/X\":\"Správa je povinná\",\"0/yJtP\":\"Správa vlastníkom objednávok s konkrétnymi produktmi\",\"saG4At\":\"Správa naplánovaná\",\"mFdA+i\":\"Úroveň správ\",\"v7xKtM\":\"Úroveň správ bola úspešne aktualizovaná\",\"H9HlDe\":\"minúty\",\"agRWc1\":\"Minutes\",\"zz/Wd/\":\"Mode\",\"fpMgHS\":\"Mon\",\"hty0d5\":\"Monday\",\"JbIgPz\":\"Peňažné hodnoty sú približné súčty naprieč všetkými menami\",\"qvF+MT\":\"Monitorovať a spravovať neúspešné úlohy na pozadí\",\"kY2ll9\":\"month\",\"HajiZl\":\"Mesiac\",\"+8Nek/\":\"Monthly\",\"1LkxnU\":\"Monthly Pattern\",\"6jefe3\":\"months\",\"f8jrkd\":\"more\",\"JcD7qf\":\"More actions\",\"w36OkR\":\"Najsledovanejšie udalosti (posledných 14 dní)\",\"+Y/na7\":\"Move all dates earlier or later\",\"3DIpY0\":\"Multiple locations\",\"g9cQCP\":\"Multiple ticket types\",\"GfaxEk\":\"Hudba\",\"oVGCGh\":\"Moje lístky\",\"8/brI5\":\"Meno je povinné\",\"sFFArG\":\"Meno musí mať menej ako 255 znakov\",\"xxU3NX\":\"Čistý príjem\",\"7I8LlL\":\"New capacity\",\"n1GRql\":\"New label\",\"y0Fcpd\":\"Nové miesto\",\"ArHT/C\":\"Nové registrácie\",\"uK7xWf\":\"New time:\",\"veT5Br\":\"Next occurrence\",\"WXtl5X\":[\"Next: \",[\"nextFormatted\"]],\"eWRECP\":\"Nočný život\",\"HSw5l3\":\"Nie – som fyzická osoba alebo firma neregistrovaná pre DPH\",\"VHfLAW\":\"Žiadne účty\",\"+jIeoh\":\"Nenašli sa žiadne účty\",\"074+X8\":\"Žiadne aktívne webhooky\",\"zxnup4\":\"Žiadni partneri na zobrazenie\",\"Dwf4dR\":\"Zatiaľ žiadne otázky pre účastníkov\",\"th7rdT\":\"No attendees to show\",\"PKySlW\":\"No attendees yet for this date.\",\"/UC6qk\":\"Nenašli sa žiadne údaje o priradení\",\"E2vYsO\":\"No capabilities reported by Stripe yet.\",\"amMkpL\":\"Žiadna kapacita\",\"d2Jf1f\":\"No change\",\"99ntUF\":\"Pre túto udalosť nie sú dostupné žiadne zoznamy odbavení.\",\"wG+knX\":\"No check-ins yet\",\"+dAKxg\":\"Nenašli sa žiadne konfigurácie\",\"LiLk8u\":\"No connections available\",\"eb47T5\":\"Pre vybrané filtre sa nenašli žiadne dáta. Skúste upraviť rozsah dátumov alebo menu.\",\"Zc216S\":\"No date added\",\"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\",\"OtJSnL\":\"Žiadne naplánované termíny\",\"gEdNe8\":\"No dates scheduled yet\",\"pZNOT9\":\"Žiadny dátum ukončenia\",\"dW40Uz\":\"Nenašli sa žiadne udalosti\",\"8pQ3NJ\":\"Žiadne udalosti nezačínajú v nasledujúcich 24 hodinách\",\"8zCZQf\":\"Zatiaľ žiadne udalosti\",\"Yc5YW6\":\"Žiadne neúspešné úlohy\",\"EpvBAp\":\"Žiadna faktúra\",\"XZkeaI\":\"Nenašli sa žiadne protokoly\",\"IcAC6J\":\"Žiadne zodpovedajúce písma\",\"nrSs2u\":\"Nenašli sa žiadne správy\",\"Rj99yx\":\"No occurrences available\",\"IFU1IG\":\"No occurrences on this date\",\"OVFwlg\":\"Zatiaľ žiadne otázky k objednávke\",\"EJ7bVz\":\"Nenašli sa žiadne objednávky\",\"NEmyqy\":\"Zatiaľ žiadne objednávky\",\"a77B6w\":\"No orders yet for this date.\",\"wUv5xQ\":\"Žiadna aktivita organizátora za posledných 14 dní\",\"vLd1tV\":\"No organizer context available.\",\"B7w4KY\":\"Žiadni ďalší organizátori nie sú dostupní\",\"PChXMe\":\"Žiadne zaplatené objednávky\",\"6jYQGG\":\"Žiadne minulé udalosti\",\"CHzaTD\":\"Žiadne populárne udalosti za posledných 14 dní\",\"zK/+ef\":\"Žiadne produkty nie sú dostupné na výber\",\"M1/lXs\":\"No products configured for this event.\",\"kY7XDn\":\"Žiadne produkty nemajú čakajúce záznamy\",\"8mw4tm\":\"Správa o žiadnych produktoch\",\"wYiAtV\":\"Žiadne nedávne registrácie účtov\",\"UW90md\":\"Nenašli sa žiadni príjemcovia\",\"QoAi8D\":\"Žiadna odpoveď\",\"JeO7SI\":\"Žiadna odpoveď\",\"EK/G11\":\"Zatiaľ žiadne odpovede\",\"59OWd3\":\"Žiadne uložené miesta\",\"mPdY6W\":\"Žiadne návrhy\",\"3sRuiW\":\"Nenašli sa žiadne lístky\",\"debCrL\":\"Žiadne vstupenky na predaj\",\"k2C0ZR\":\"No upcoming dates\",\"yM5c0q\":\"Žiadne nadchádzajúce udalosti\",\"qpC74J\":\"Nenašli sa žiadni používatelia\",\"8wgkoi\":\"Žiadne zobrazené udalosti za posledných 14 dní\",\"Arzxc1\":\"Žiadne záznamy v zozname čakateľov\",\"n5vdm2\":\"Pre tento endpoint zatiaľ neboli zaznamenané žiadne udalosti webhookov. Udalosti sa zobrazia tu po ich spustení.\",\"4GhX3c\":\"Žiadne webhooky\",\"4+am6b\":\"Nie, nechajte ma tu\",\"4JVMUi\":\"non-edited\",\"Itw24Q\":\"Not checked in\",\"x5+Lcz\":\"Neodbavený\",\"8n10sz\":\"Neoprávnený\",\"kLvU3F\":\"Notify attendees and stop sales\",\"t9QlBd\":\"November\",\"kAREMN\":\"Number of dates to create\",\"6u1B3O\":\"Occurrence\",\"mmoE62\":\"Occurrence Cancelled\",\"V9flmL\":\"Occurrence Schedule\",\"Kh3WO8\":\"Occurrence Summary\",\"byXCTu\":\"Occurrences\",\"KATw3p\":\"Occurrences (future only)\",\"85rTR2\":\"Occurrences can be configured after creation\",\"dzQfDY\":\"October\",\"BwJKBw\":\"z\",\"9h7RDh\":\"Ponuka\",\"EfK2O6\":\"Ponúknuť miesto\",\"3sVRey\":\"Ponúknuť lístky\",\"2O7Ybb\":\"Časový limit ponuky\",\"1jUg5D\":\"Ponúknuté\",\"l+/HS6\":[\"Ponuky vyprší po \",[\"timeoutHours\"],\" hodinách.\"],\"6Aih4U\":\"Offline\",\"nO3VbP\":[\"V predaji \",[\"0\"]],\"oXOSPE\":\"Online\",\"aqmy5k\":\"Online — provide connection details\",\"LuZBbx\":\"Online & in-person\",\"IXuOqt\":\"Online & in-person — see schedule\",\"WjSpu5\":\"Online udalosť\",\"scPxI/\":[\"Zostáva už len \",[\"capacity\"]],\"NdOxqr\":\"Iba správcovia účtu môžu odstrániť alebo archivovať udalosti. Kontaktujte správcu účtu.\",\"rnoDMF\":\"Iba správcovia účtu môžu odstrániť alebo archivovať organizátorov. Kontaktujte správcu účtu.\",\"bU7oUm\":\"Odoslať iba objednávkam s týmito stavmi\",\"wkpaqp\":\"Zobraziť iba dátum a čas začiatku\",\"DMk8F0\":\"Only tickets count toward capacity\",\"M2w1ni\":\"Viditeľné iba s promo kódom\",\"y8Bm7C\":\"Open check-in\",\"RLz7P+\":\"Open occurrence\",\"cDSdPb\":\"Voliteľná prezývka zobrazovaná vo výberoch, napr. \\\"Konferenčná miestnosť\\\"\",\"HXMJxH\":\"Voliteľný text pre vyhlásenia, kontaktné informácie alebo poďakovania (iba jeden riadok)\",\"L565X2\":\"možnosti\",\"8m9emP\":\"or add a single date\",\"eBskDE\":\"Alebo povoľte offline platby a vypnite Stripe\",\"dSeVIm\":\"order\",\"c/TIyD\":\"Objednávka a lístok\",\"H5qWhm\":\"Objednávka zrušená\",\"b6+Y+n\":\"Objednávka dokončená\",\"x4MLWE\":\"Potvrdenie objednávky\",\"CsTTH0\":\"Potvrdenie objednávky bolo úspešne znovu odoslané\",\"ppuQR4\":\"Objednávka vytvorená\",\"xtQzag\":\"Order details\",\"vrSW9M\":\"Objednávka bola zrušená a vrátená. Vlastník objednávky bol informovaný.\",\"rzw+wS\":\"Držitelia objednávky\",\"oI/hGR\":\"ID objednávky\",\"RQCXz6\":\"Limity objednávky\",\"SO9AEF\":\"Limity objednávky nastavené\",\"vu6Arl\":\"Objednávka označená ako zaplatená\",\"sLbJQz\":\"Objednávka nenájdená\",\"kvYpYu\":\"Objednávka nenájdená\",\"eJ8SvM\":\"Order number, purchase date, purchaser email\",\"FaPYw+\":\"Vlastník objednávky\",\"eB5vce\":\"Vlastníci objednávok s konkrétnym produktom\",\"CxLoxM\":\"Vlastníci objednávok s produktmi\",\"UkHo4c\":\"Ref. objednávky\",\"EZy55F\":\"Objednávka vrátená\",\"6eSHqs\":\"Stavy objednávok\",\"oW5877\":\"Celková suma objednávky\",\"e7eZuA\":\"Objednávka aktualizovaná\",\"1SQRYo\":\"Objednávka bola úspešne aktualizovaná\",\"3NT0Ck\":\"Objednávka bola zrušená\",\"V5khLm\":\"orders\",\"sd5IMt\":\"Dokončené objednávky\",\"5It1cQ\":\"Exportované objednávky\",\"UQ0ACV\":\"Celkový počet objednávok\",\"B/EBQv\":\"Objednávky:\",\"qtGTNu\":\"Organické účty\",\"P/JHA4\":\"Organizátor bol úspešne archivovaný\",\"S3CZ5M\":\"Prehľad organizátora\",\"GzjTd0\":\"Organizátor bol úspešne odstránený\",\"SQqJd8\":\"Organizátor nenájdený\",\"HF8Bxa\":\"Organizátor bol úspešne obnovený\",\"wpj63n\":\"Nastavenia organizátora\",\"o1my93\":\"Aktualizácia stavu organizátora zlyhala. Skúste to neskôr.\",\"rLHma1\":\"Stav organizátora aktualizovaný\",\"LqBITi\":\"Bude použitá šablóna organizátora/predvolená šablóna\",\"q4zH+l\":\"Organizers\",\"/IX/7x\":\"Iné\",\"RsiDDQ\":\"Iné zoznamy (lístok nie je zahrnutý)\",\"aDfajK\":\"Outdoors\",\"qMASRF\":\"Odchádzajúce správy\",\"iCOVQO\":\"Override\",\"GpFTEc\":\"Override fees on this organizer\",\"M9ZhMP\":\"Override price\",\"cnVIpl\":\"Override removed\",\"6/dCYd\":\"Prehľad\",\"6WdDG7\":\"Stránka\",\"8uqsE5\":\"Stránka už nie je dostupná\",\"QkLf4H\":\"URL stránky\",\"sF+Xp9\":\"Zobrazenia stránky\",\"v4nCHK\":\"Paid\",\"c+suC6\":\"Platené účty\",\"5F7SYw\":\"Čiastočné vrátenie\",\"fFYotW\":[\"Čiastočne vrátené: \",[\"0\"]],\"i8day5\":\"Preniesť poplatok na kupujúceho\",\"k4FLBQ\":\"Preniesť na kupujúceho\",\"Ff0Dor\":\"Minulé\",\"BFjW8X\":\"Past due\",\"xTPjSy\":\"Minulé udalosti\",\"/l/ckQ\":\"Vložiť URL\",\"URAE3q\":\"Pozastavené\",\"4fL/V7\":\"Zaplatiť\",\"c2/9VE\":\"Obsah požiadavky\",\"5cxUwd\":\"Dátum platby\",\"ENEPLY\":\"Spôsob platby\",\"8Lx2X7\":\"Platba prijatá\",\"fx8BTd\":\"Platby nie sú dostupné\",\"C+ylwF\":\"Payouts\",\"UbRKMZ\":\"Pending\",\"UkM20g\":\"Čaká na kontrolu\",\"dPYu1F\":\"Na účastníka\",\"mQV/nJ\":\"per min\",\"+kvxv+\":\"na objednávku\",\"VlXNyK\":\"Na objednávku\",\"NhuGd7\":\"na produkt\",\"hauDFf\":\"Na lístok\",\"mnF83a\":\"Percentuálny poplatok\",\"TNLuRD\":\"Percentage fee (%)\",\"MixU2P\":\"Percento musí byť medzi 0 a 100\",\"MkuVAZ\":\"Percento zo sumy transakcie\",\"/Bh+7r\":\"Výkonnosť\",\"fIp56F\":\"Natrvalo odstrániť túto udalosť a všetky jej súvisiace dáta.\",\"nJeeX7\":\"Natrvalo odstrániť tohto organizátora a všetky jeho udalosti.\",\"wfCTgK\":\"Permanently remove this date\",\"6kPk3+\":\"Osobné informácie\",\"zmwvG2\":\"Telefón\",\"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\":\"Plánujete udalosť?\",\"J3lhKT\":\"Poplatok platformy\",\"RD51+P\":[\"Poplatok platformy \",[\"0\"],\" odpočítaný z vašej výplaty\"],\"br3Y/y\":\"Poplatky platformy\",\"3buiaw\":\"Správa o poplatkoch platformy\",\"kv9dM4\":\"Príjmy platformy\",\"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\":\"Zadajte platnú e-mailovú adresu\",\"jEw0Mr\":\"Zadajte platnú URL adresu\",\"n8+Ng/\":\"Zadajte 5-ciferný kód\",\"r+lQXT\":\"Zadajte číslo DPH\",\"Dvq0wf\":\"Poskytnite obrázok.\",\"2cUopP\":\"Reštartujte proces pokladne.\",\"GoXxOA\":\"Please select a date and time\",\"8KmsFa\":\"Vyberte rozsah dátumov\",\"EFq6EG\":\"Vyberte obrázok.\",\"fuwKpE\":\"Skúste to znovu.\",\"klWBeI\":\"Počkajte pred požiadaním o ďalší kód\",\"hfHhaa\":\"Čakajte, pripravujeme partnerov na export...\",\"o+tJN/\":\"Čakajte, pripravujeme účastníkov na export...\",\"+5Mlle\":\"Čakajte, pripravujeme objednávky na export...\",\"trnWaw\":\"Poľština\",\"luHAJY\":\"Populárne udalosti (posledných 14 dní)\",\"p/78dY\":\"Position\",\"OESu7I\":\"Predchádzajte predaju nad kapacitu zdieľaním zásob naprieč viacerými typmi lístkov.\",\"NgVUL2\":\"Náhľad formulára pokladne\",\"cs5muu\":\"Náhľad stránky udalosti\",\"Jm2AC3\":\"Price Tier\",\"a5jvSX\":\"Cenové úrovne\",\"ReihZ7\":\"Náhľad tlače\",\"JnuPvH\":\"Vytlačiť lístok\",\"tYF4Zq\":\"Tlačiť do PDF\",\"LcET2C\":\"Zásady ochrany osobných údajov\",\"8z6Y5D\":\"Spracovať vrátenie\",\"JcejNJ\":\"Spracovanie objednávky\",\"EWCLpZ\":\"Produkt vytvorený\",\"XkFYVB\":\"Produkt odstránený\",\"YMwcbR\":\"Predaj produktov, príjmy a rozklad daní\",\"ls0mTC\":\"Product settings cannot be edited for cancelled dates.\",\"2339ej\":\"Product settings saved successfully\",\"ldVIlB\":\"Produkt aktualizovaný\",\"CP3D8G\":\"Progress\",\"JoKGiJ\":\"Promo kód\",\"k3wH7i\":\"Použitie promo kódu a rozklad zliav\",\"tZqL0q\":\"promo codes\",\"oCHiz3\":\"Promo codes\",\"uEhdRh\":\"Iba promo\",\"dLm8V5\":\"Propagačné e-maily môžu viesť k pozastaveniu účtu\",\"W0ETyY\":\"Zadajte aspoň jedno pole adresy (miesto, ulica, mesto alebo krajina).\",\"2W/7Gz\":\"Provide the following before Stripe's next review to keep payouts flowing.\",\"EEYbdt\":\"Zverejniť\",\"JcgJKc\":\"Napriek tomu zverejniť\",\"evDBV8\":\"Zverejniť udalosť\",\"2zEfOd\":\"Publish your event\",\"L7nrC8\":\"Zverejnením sa stránka vašej udalosti stane verejnou a otvoria sa registrácie.\",\"dsFmM+\":\"Zakúpené\",\"JunetL\":\"Purchaser\",\"phmeUH\":\"Purchaser email\",\"ywR4ZL\":\"QR code check-in\",\"oWXNE5\":\"Množstvo\",\"biEyJ4\":\"Question answers\",\"k/bJj0\":\"Otázky preusporiadané\",\"b24kPi\":\"Front\",\"lTPqpM\":\"Quick Tip\",\"fqDzSu\":\"Sadzba\",\"mnUGVC\":\"Prekročený limit požiadaviek. Skúste to neskôr.\",\"t41hVI\":\"Znovu ponúknuť miesto\",\"TNclgc\":\"Reactivate this date? It will be reopened for future sales.\",\"RENQ6j\":\"Pripravení zverejniť?\",\"uqoRbb\":\"Real-time analytics\",\"xzRvs4\":[\"Dostávajte aktualizácie produktov od \",[\"0\"],\".\"],\"pLXbi8\":\"Nedávne registrácie účtov\",\"M1HGuR\":\"Recent activity\",\"3kJ0gv\":\"Recent Attendees\",\"qhfiwV\":\"Recent check-ins\",\"S+0XMX\":\"Recent orders\",\"Fi3b48\":\"Nedávne objednávky\",\"7hPBBn\":\"príjemca\",\"jp5bq8\":\"príjemcovia\",\"yPrbsy\":\"Príjemcovia\",\"E1F5Ji\":\"Príjemcovia sú dostupní po odoslaní správy\",\"WEYdDv\":\"Recommended\",\"wuhHPE\":\"Recurring\",\"asLqwt\":\"Opakujúce sa podujatie\",\"s3uzsK\":\"Nastavenia opakujúceho sa podujatia\",\"D0tAMe\":\"Recurring events\",\"JjMIKU\":\"Reddit\",\"HiGkFu\":\"Presmerovanie na Stripe...\",\"pnoTN5\":\"Referenčné účty\",\"ACKu03\":\"Obnoviť náhľad\",\"vuFYA6\":\"Refund all orders for these dates\",\"4cRUK3\":\"Refund all orders for this date\",\"fKn/k6\":\"Suma vrátenia\",\"qY4rpA\":\"Vrátenie zlyhalo\",\"FaK/8G\":[\"Vrátiť objednávku \",[\"0\"]],\"MGbi9P\":\"Vrátenie čaká\",\"BDSRuX\":[\"Vrátené: \",[\"0\"]],\"bU4bS1\":\"Vrátenia\",\"rYXfOA\":\"Regionálne nastavenia\",\"5tl0Bp\":\"Registračné otázky\",\"ZNo5k1\":\"Remaining\",\"Bjh87R\":\"Remove label from all dates\",\"IVZaEo\":\"Úplne odstráni vypredané dátumy a časy zo stránky podujatia. Ak je vypnuté, zostanú viditeľné a budú označené ako vypredané.\",\"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\":\"Správa nenájdená\",\"JEPMXN\":\"Požiadať o nový odkaz\",\"TMLAx2\":\"Povinné\",\"mdeIOH\":\"Znovu odoslať kód\",\"sQxe68\":\"Znovu odoslať potvrdenie\",\"bxoWpz\":\"Znovu odoslať potvrdzovací e-mail\",\"G42SNI\":\"Znovu odoslať e-mail\",\"TTpXL3\":[\"Znovu odoslať za \",[\"resendCooldown\"],\" s\"],\"5CiNPm\":\"Znovu odoslať lístok\",\"Uwsg2F\":\"Rezervované\",\"8wUjGl\":\"Rezervované do\",\"a5z8mb\":\"Reset to base price\",\"kCn6wb\":\"Obnovenie...\",\"ZlCDf+\":\"Odpoveď\",\"bsydMp\":\"Podrobnosti odpovede\",\"yKu/3Y\":\"Obnoviť\",\"RokrZf\":\"Obnoviť udalosť\",\"/JyMGh\":\"Obnoviť organizátora\",\"HFvFRb\":\"Obnovte túto udalosť, aby bola opäť viditeľná.\",\"DDIcqy\":\"Obnovte tohto organizátora a znovu ho aktivujte.\",\"mO8KLE\":\"results\",\"6gRgw8\":\"Zopakovať\",\"1BG8ga\":\"Zopakovať všetko\",\"rDC+T6\":\"Zopakovať úlohu\",\"CbnrWb\":\"Vrátiť sa na udalosť\",\"Lf7TCn\":\"Opakovane použiteľné miesta sa tu zobrazia automaticky pri vytváraní podujatí s adresami; môžete pridať aj vlastné.\",\"mdQ0zb\":\"Opakovane použiteľné miesta pre vaše podujatia. Miesta vytvorené automatickým dopĺňaním sa tu ukladajú automaticky.\",\"XFOPle\":\"Reuse\",\"1Zehp4\":\"Reuse a Stripe connection from another organizer in this account.\",\"Oo/PLb\":\"Súhrn príjmov\",\"CfuueU\":\"Odvolať ponuku\",\"RIgKv+\":\"Run until a specific date\",\"dFFW9L\":[\"Predaj skončil \",[\"0\"]],\"loCKGB\":[\"Predaj končí \",[\"0\"]],\"wlfBad\":\"Obdobie predaja\",\"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\":\"Obdobie predaja nastavené\",\"ftzaMf\":\"Obdobie predaja, limity objednávok, viditeľnosť\",\"zpekWp\":[\"Predaj začína \",[\"0\"]],\"mUv9U4\":\"Predaje\",\"9KnRdL\":\"Predaj je pozastavený\",\"JC3J0k\":\"Sales, attendance, and check-in breakdown per occurrence\",\"3VnlS9\":\"Predaje, objednávky a metriky výkonnosti pre všetky udalosti\",\"3Q1AWe\":\"Predaje:\",\"LeuERW\":\"Same as event\",\"B4nE3N\":\"Vzorová cena lístka\",\"8BRPoH\":\"Vzorové miesto konania\",\"PiK6Ld\":\"Sat\",\"+5kO8P\":\"Saturday\",\"zJiuDn\":\"Save fee override\",\"NB8Uxt\":\"Save Schedule\",\"KZrfYJ\":\"Uložiť sociálne odkazy\",\"9Y3hAT\":\"Uložiť šablónu\",\"C8ne4X\":\"Uložiť dizajn lístka\",\"cTI8IK\":\"Save VAT settings\",\"6/TNCd\":\"Uložiť nastavenia DPH\",\"4RvD9q\":\"Uložené miesto\",\"cgw0cL\":\"Uložené miesta\",\"Fbqm/I\":\"Saving an override creates a dedicated configuration for this organizer if it's currently on the system default.\",\"I+FvbD\":\"Skenovať\",\"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\":\"Naplánovať na neskôr\",\"NAzVVw\":\"Naplánovať správu\",\"Fz09JP\":\"Schedule starts on\",\"4ba0NE\":\"Naplánované\",\"qcP/8K\":\"Naplánovaný čas\",\"A1taO8\":\"Search\",\"ftNXma\":\"Vyhľadávať partnerov...\",\"VMU+zM\":\"Search attendees\",\"VY+Bdn\":\"Vyhľadávať podľa názvu účtu alebo e-mailu...\",\"VX+B3I\":\"Vyhľadávať podľa názvu udalosti alebo organizátora...\",\"R0wEyA\":\"Vyhľadávať podľa názvu úlohy alebo výnimky...\",\"YnMfsK\":\"Hľadať podľa názvu alebo adresy...\",\"VT+urE\":\"Vyhľadávať podľa mena alebo e-mailu...\",\"GHdjuo\":\"Vyhľadávať podľa mena, e-mailu alebo účtu...\",\"4mBFO7\":\"Search by name, order #, ticket # or email\",\"20ce0U\":\"Vyhľadávať podľa ID objednávky, mena zákazníka alebo e-mailu...\",\"4DSz7Z\":\"Vyhľadávať podľa predmetu, udalosti alebo účtu...\",\"nQC7Z9\":\"Search dates...\",\"iRtEpV\":\"Search dates…\",\"JRM7ao\":\"Search for an address\",\"BWF1kC\":\"Vyhľadávať správy...\",\"5WYZKZ\":\"Výsledky vyhľadávania\",\"IG85fV\":\"Vyhľadajte uložené miesta alebo nájdite adresu...\",\"3aD3GF\":\"Seasonal\",\"ku//5b\":\"Second\",\"Mck5ht\":\"Bezpečná pokladňa\",\"s7tXqF\":\"See schedule\",\"JFap6u\":\"See what Stripe still needs\",\"p7xUrt\":\"Vybrať kategóriu\",\"hTKQwS\":\"Select a Date & Time\",\"Ps6Xtf\":\"Select a date to see available times\",\"e4L7bF\":\"Vyberte správu na zobrazenie jej obsahu\",\"zPRPMf\":\"Vybrať úroveň\",\"BFRSTT\":\"Vybrať účet\",\"wgNoIs\":\"Select all\",\"mCB6Je\":\"Vybrať všetko\",\"aCEysm\":[\"Select all on \",[\"0\"]],\"a6+167\":\"Vybrať udalosť\",\"CFbaPk\":\"Vybrať skupinu účastníkov\",\"88a49s\":\"Select camera\",\"tVW/yo\":\"Vybrať menu\",\"SJQM1I\":\"Select date\",\"n9ZhRa\":\"Vybrať dátum a čas ukončenia\",\"gTN6Ws\":\"Vybrať čas ukončenia\",\"0U6E9W\":\"Vybrať kategóriu udalosti\",\"j9cPeF\":\"Vybrať typy udalostí\",\"ypTjHL\":\"Select occurrence\",\"KizCK7\":\"Vybrať dátum a čas začiatku\",\"dJZTv2\":\"Vybrať čas začiatku\",\"x8XMsJ\":\"Vybrať úroveň správ pre tento účet. Toto riadi limity správ a oprávnenia odkazov.\",\"aT3jZX\":\"Vybrať časové pásmo\",\"TxfvH2\":\"Vybrať, ktorí účastníci majú dostať túto správu\",\"Ropvj0\":\"Vybrať, ktoré udalosti spustia tento webhook\",\"+6YAwo\":\"selected\",\"ylXj1N\":\"Vybrané\",\"uq3CXQ\":\"Sell out your event.\",\"oBXbO4\":\"Selling a physical product? Cap its quantity on the <0>products page instead.\",\"j9b/iy\":\"Rýchlo sa predáva 🔥\",\"73qYgo\":\"Odoslať ako test\",\"HMAqFK\":\"Odosielať e-maily účastníkom, držiteľom lístkov alebo vlastníkom objednávok. Správy môžu byť odoslané okamžite alebo naplánované na neskôr.\",\"22Itl6\":\"Poslať mi kópiu\",\"NpEm3p\":\"Odoslať teraz\",\"nOBvex\":\"Odosielať dáta o objednávkach a účastníkoch v reálnom čase do externých systémov.\",\"1lNPhX\":\"Odoslať notifikačný e-mail o vrátení\",\"eaUTwS\":\"Odoslať odkaz na obnovenie\",\"5cV4PY\":\"Send to all occurrences, or choose a specific one\",\"QEQlnV\":\"Odošlite svoju prvú správu\",\"IoAuJG\":\"Odosielanie...\",\"h69WC6\":\"Odoslané\",\"BVu2Hz\":\"Odoslal\",\"ZFa8wv\":\"Sent to attendees when a scheduled date is cancelled\",\"SPdzrs\":\"Odoslané zákazníkom pri zadaní objednávky\",\"LxSN5F\":\"Odoslané každému účastníkovi s podrobnosťami lístka\",\"hgvbYY\":\"September\",\"5sN96e\":\"Session cancelled\",\"89xaFU\":\"Nastavte predvolené nastavenia poplatkov platformy pre nové udalosti vytvorené pod týmto organizátorom.\",\"eXssj5\":\"Nastavte predvolené nastavenia pre nové udalosti vytvorené pod týmto organizátorom.\",\"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\":\"Nastavte zoznamy odbavení pre rôzne vchody, relácie alebo dni.\",\"TaWVGe\":\"Set up payouts\",\"JA//e6\":\"Set up schedule\",\"gzXY7l\":\"Set Up Schedule\",\"0Ls9qe\":\"Set up the tickets you'll sell and their prices\",\"xMO+Ao\":\"Nastavte svoju organizáciu\",\"5pEFnq\":\"Set up your schedule\",\"h/9JiC\":\"Set Up Your Schedule\",\"zRRuUD\":\"Set up your schedule in the next steps\",\"ETC76A\":\"Set, change, or remove the date's location or online details\",\"C3htzi\":\"Nastavenie aktualizované\",\"Ohn74G\":\"Nastavenie a dizajn\",\"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\":\"Zdieľať partnerský odkaz\",\"hL7sDJ\":\"Zdieľať stránku organizátora\",\"jy6QDF\":\"Správa zdieľanej kapacity\",\"jDNHW4\":\"Shift times\",\"tPfIaW\":[\"Shifted times for \",[\"count\"],\" date(s)\"],\"WwlM8F\":\"Zobraziť rozšírené možnosti\",\"cMW+gm\":[\"Zobraziť všetky platformy (\",[\"0\"],\" ďalších s hodnotami)\"],\"wXi9pZ\":\"Show attendee notes to non-logged-in staff\",\"4LZFir\":\"Zobraziť celý rozsah dátumov\",\"UVPI5D\":\"Zobraziť menej platforiem\",\"Eu/N/d\":\"Zobraziť zaškrtávacie políčko marketingového súhlasu\",\"SXzpzO\":\"Predvolene zobraziť zaškrtávacie políčko marketingového súhlasu\",\"b33PL9\":\"Zobraziť viac platforiem\",\"Eut7p9\":\"Show order details to non-logged-in staff\",\"+RoWKN\":\"Show question answers to non-logged-in staff\",\"jbcx6L\":\"Show remaining capacity on event dates\",\"rXxBOx\":\"Show remaining capacity to buyers\",\"t1LIQW\":[\"Zobrazuje sa \",[\"0\"],\" z \",[\"totalRows\"],\" záznamov\"],\"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\":\"Zaregistrovaný\",\"5C7J+P\":\"Single Event\",\"E//btK\":\"Skip manually edited dates\",\"paESr6\":\"Slovenčina\",\"9wu8nm\":\"Snapchat\",\"kIKb9e\":\"Sociálne\",\"d0rUsW\":\"Sociálne odkazy\",\"j/TOB3\":\"Sociálne odkazy a webová stránka\",\"s9KGXU\":\"Predané\",\"yp+0jj\":\"sold out\",\"1hupow\":\"Vypredané, čakacia listina k dispozícii\",\"iACSrw\":\"Some details are hidden from public access. Log in to view everything.\",\"Dia6iz\":\"Something went wrong while deleting the image. Please try again.\",\"KTxc6k\":\"Niečo sa pokazilo, skúste to znovu alebo kontaktujte podporu, ak problém pretrváva\",\"lkE00/\":\"Niečo sa pokazilo. Skúste to neskôr.\",\"wdxz7K\":\"Zdroj\",\"fDG2by\":\"Spirituality\",\"oPaRES\":\"Split check-in across days, areas, or ticket types. Share the link with staff — no account needed on their end.\",\"7JFNej\":\"Šport\",\"/bfV1Y\":\"Staff instructions\",\"tXkhj/\":\"Start\",\"StWUH4\":\"Start check-in\",\"JcQp9p\":\"Dátum a čas začiatku\",\"0m/ekX\":\"Dátum a čas začiatku\",\"izRfYP\":\"Dátum začiatku je povinný\",\"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/\":\"Štatistiky\",\"GVUxAX\":\"Štatistiky sú založené na dátume vytvorenia účtu\",\"29Hx9U\":\"Stats\",\"5ia+r6\":\"Still needed\",\"wuV0bK\":\"Zastaviť zosobnenie\",\"s/KaDb\":\"Stripe connected\",\"Bk06QI\":\"Stripe pripojený\",\"akZMv8\":[\"Stripe connection copied from \",[\"0\"],\".\"],\"v0aRY1\":\"Stripe didn't return a setup link. Please try again.\",\"aKtF0O\":\"Stripe nie je pripojený\",\"9i0++A\":\"ID platby Stripe\",\"R1lIMV\":\"Stripe will need a few more details soon\",\"FzcCHA\":\"Stripe will walk you through a few quick questions to finish setup.\",\"ii0qn/\":\"Predmet je povinný\",\"M7Uapz\":\"Predmet sa zobrazí tu\",\"6aXq+t\":\"Predmet:\",\"JwTmB6\":\"Produkt bol úspešne duplikovaný\",\"WUOCgI\":\"Miesto bolo úspešne ponúknuté\",\"IvxA4G\":[\"Lístky boli úspešne ponúknuté \",[\"count\"],\" osobám\"],\"kKpkzy\":\"Lístky boli úspešne ponúknuté 1 osobe\",\"Zi3Sbw\":\"Úspešne odstránené zo zoznamu čakateľov\",\"RuaKfn\":\"Adresa bola úspešne aktualizovaná\",\"kzx0uD\":\"Predvolené nastavenia udalosti boli úspešne aktualizované\",\"5n+Wwp\":\"Organizátor bol úspešne aktualizovaný\",\"DMCX/I\":\"Predvolené nastavenia poplatkov platformy boli úspešne aktualizované\",\"URUYHc\":\"Nastavenia poplatkov platformy boli úspešne aktualizované\",\"kRWc2g\":\"Nastavenia opakujúceho sa podujatia boli úspešne aktualizované\",\"0Dk/l8\":\"SEO nastavenia boli úspešne aktualizované\",\"S8Tua9\":\"Nastavenia boli úspešne aktualizované\",\"MhOoLQ\":\"Sociálne odkazy boli úspešne aktualizované\",\"CNSSfp\":\"Nastavenia sledovania boli úspešne aktualizované\",\"kj7zYe\":\"Webhook bol úspešne aktualizovaný\",\"dXoieq\":\"Súhrn\",\"/RfJXt\":[\"Letný hudobný festival \",[\"0\"]],\"CWOPIK\":\"Letný hudobný festival 2025\",\"D89zck\":\"Sun\",\"DBC3t5\":\"Sunday\",\"UaISq3\":\"Švédčina\",\"JZTQI0\":\"Prepnúť organizátora\",\"9YHrNC\":\"Predvolené systémové\",\"lruQkA\":\"Tap this screen to resume scanning\",\"TJUrME\":[\"Targeting attendees across \",[\"0\"],\" selected sessions.\"],\"yT6dQ8\":\"Vybraná daň zoskupená podľa typu dane a udalosti\",\"Ye321X\":\"Názov dane\",\"WyCBRt\":\"Súhrn daní\",\"GkH0Pq\":\"Dane a poplatky uplatnené\",\"Rwiyt2\":\"Dane nakonfigurované\",\"iQZff7\":\"Dane, poplatky, viditeľnosť, obdobie predaja, zvýraznenie produktu a limity objednávok\",\"SXvRWU\":\"Team collaboration\",\"vlf/In\":\"Technológie\",\"SchpMp\":\"Telegram\",\"iWa9cY\":\"Povedzte ľuďom, čo môžu očakávať na vašej udalosti\",\"NiIUyb\":\"Povedzte nám o svojej udalosti\",\"DovcfC\":\"Povedzte nám o svojej organizácii. Tieto informácie sa zobrazia na stránkach vašich udalostí.\",\"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\":\"Šablóna aktívna\",\"QHhZeE\":\"Šablóna bola úspešne vytvorená\",\"xrWdPR\":\"Šablóna bola úspešne odstránená\",\"G04Zjt\":\"Šablóna bola úspešne uložená\",\"xowcRf\":\"Podmienky služby\",\"6K0GjX\":\"Text môže byť ťažko čitateľný\",\"nm3Iz/\":\"Ďakujeme za účasť!\",\"pYwj0k\":\"Thanks,\",\"k3IitN\":\"That's a wrap\",\"KfmPRW\":\"Farba pozadia stránky. Pri použití obrázka obalu sa aplikuje ako prekrytie.\",\"MDNyJz\":\"Kód vyprší za 10 minút. Skontrolujte priečinok so spamom, ak e-mail nevidíte.\",\"AIF7J2\":\"Mena, v ktorej je definovaný pevný poplatok. Bude prevedená na menu objednávky pri pokladni.\",\"7oksH+\":[\"Zľava sa odpočíta z každého oprávneného produktu. Napr. zľava \",[\"currencySymbol\"],\"10 × 3 lístky = zľava \",[\"currencySymbol\"],\"30.\"],\"sKL8k2\":\"Zľava sa odpočíta jedenkrát z celkovej sumy objednávky.\",\"cDHM1d\":\"E-mailová adresa bola zmenená. Účastník dostane nový lístok na aktualizovanú e-mailovú adresu.\",\"tXadb0\":\"Udalosť, ktorú hľadáte, momentálne nie je dostupná. Mohla byť odstránená, vypršala alebo URL môže byť nesprávna.\",\"5fPdZe\":\"The first date this schedule will generate from.\",\"sxKqBm\":\"Celá suma objednávky bude vrátená na pôvodný platobný prostriedok zákazníka.\",\"KgDp6G\":\"Odkaz, ku ktorému sa pokúšate pristúpiť, vypršal alebo už nie je platný. Skontrolujte e-mail pre aktualizovaný odkaz na správu objednávky.\",\"Np4eLs\":[\"The maximum is \",[\"MAX_PREVIEW\"],\" sessions. Please reduce the date range, frequency, or number of sessions per day.\"],\"sYLeDq\":\"Organizátor, ktorého hľadáte, sa nenašiel. Stránka mohla byť presunutá, odstránená alebo URL môže byť nesprávna.\",\"PCr4zw\":\"The override is recorded in the order audit log.\",\"C4nQe5\":\"Poplatok platformy sa pripočíta k cene lístka. Kupujúci zaplatia viac, ale vy dostanete plnú cenu lístka.\",\"HxxXZO\":\"Primárna farba značky používaná pre tlačidlá a zvýraznenia\",\"OVSkIF\":\"Príliš žlutý kůň úpěl ďábelské ódy.\",\"z0KrIG\":\"Naplánovaný čas je povinný\",\"EWErQh\":\"Naplánovaný čas musí byť v budúcnosti\",\"UNd0OU\":[\"The session for \\\"\",[\"title\"],\"\\\" originally scheduled for \",[\"0\"],\" has been rescheduled.\"],\"DEcpfp\":\"Telo šablóny obsahuje neplatnú Liquid syntax. Opravte ju a skúste znovu.\",\"injXD7\":\"Číslo DPH sa nepodarilo overiť. Skontrolujte číslo a skúste znovu.\",\"A4UmDy\":\"Divadlo\",\"tDwYhx\":\"Téma a farby\",\"ybBP2H\":\"There are no products available for this date. Please choose another date.\",\"O7g4eR\":\"There are no upcoming dates for this event\",\"062KsE\":\"These details are shown on the attendee's ticket and order summary for this date only.\",\"5Eu+tn\":\"Tieto údaje sa zobrazia až po úspešnom dokončení objednávky.\",\"jQjwR+\":\"These details will replace any existing location on the affected dates and show on attendee tickets.\",\"6eaLu/\":\"Tieto ceny platia pre všetky termíny vo vašom rozvrhu a množstvá úrovní obmedzujú celkový predaj za všetky termíny spolu. Dátumy predaja úrovní platia globálne. Ceny pre jednotlivé termíny môžete prepísať na <0>stránke Rozvrh termínov.\",\"QP3gP+\":\"Tieto nastavenia sa vzťahujú iba na skopírovaný kód na vloženie a nebudú uložené.\",\"HirZe8\":\"Tieto šablóny budú použité ako predvolené pre všetky udalosti vo vašej organizácii. Jednotlivé udalosti môžu tieto šablóny prepísať vlastnými verziami.\",\"lzAaG5\":\"Tieto šablóny prepíšu predvolené nastavenia organizátora iba pre túto udalosť. Ak tu nie je nastavená vlastná šablóna, použije sa šablóna organizátora.\",\"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\":\"Tento kód sa použije na sledovanie predajov. Povolené sú iba písmená, číslice, pomlčky a podčiarkovníky.\",\"AaP0M+\":\"Táto kombinácia farieb môže byť pre niektorých používateľov ťažko čitateľná\",\"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.\",\"E9BqZw\":\"This date only\",\"RzEvf5\":\"Táto udalosť sa skončila\",\"kc4bIA\":\"Táto udalosť zatiaľ nemá žiadne vstupenky ani produkty, takže účastníci sa nebudú môcť zaregistrovať.\",\"eMaNd0\":\"This event is not available\",\"YClrdK\":\"Táto udalosť ešte nie je zverejnená\",\"GL6z+k\":\"Toto podujatie je vypredané\",\"pIwDhS\":\"This event's dates and times are set on the occurrence schedule.\",\"ny5rgr\":\"This is a recurring event\",\"tc64Zz\":\"Toto je názov kategórie, ktorý sa zobrazí na stránke podujatia.\",\"dFJnia\":\"Toto je meno vášho organizátora, ktoré sa zobrazí vašim používateľom.\",\"vt7jiq\":\"Toto je jediný čas, kedy sa zobrazí podpisový tajný kľúč. Skopírujte ho teraz a bezpečne uložte.\",\"5DpZrC\":\"Toto obmedzuje celkový predaj za všetky termíny vo vašom rozvrhu spolu — nejde o limit na termín. Ak chcete obmedziť účasť na jednotlivých termínoch, nastavte kapacitu na <0>stránke Rozvrh termínov.\",\"L7dIM7\":\"Tento odkaz je neplatný alebo vypršal.\",\"MR5ygV\":\"Tento odkaz už nie je platný\",\"9LEqK0\":\"Tento názov je viditeľný pre koncových používateľov\",\"QdUMM9\":\"This occurrence is at capacity\",\"j5FdeA\":\"Táto objednávka sa spracováva.\",\"sjNPMw\":\"Táto objednávka bola opustená. Novú objednávku môžete začať kedykoľvek.\",\"OhCesD\":\"Táto objednávka bola zrušená. Novú objednávku môžete začať kedykoľvek.\",\"lyD7rQ\":\"Profil tohto organizátora ešte nie je zverejnený\",\"9b5956\":\"Tento náhľad ukazuje, ako bude váš e-mail vyzerať so vzorovými dátami. Skutočné e-maily budú používať reálne hodnoty.\",\"uM9Alj\":\"Tento produkt je zvýraznený na stránke udalosti\",\"RqSKdX\":\"Tento produkt je vypredaný\",\"qEGn8I\":\"Táto opakujúca sa udalosť zatiaľ nemá žiadne termíny, takže účastníci si nemajú čo rezervovať.\",\"W12OdJ\":\"Táto správa slúži iba na informačné účely. Pred použitím týchto dát na účtovné alebo daňové účely vždy konzultujte s daňovým poradcom. Skontrolujte si aj Stripe dashboard, pretože Hi.Events môže mať chýbajúce historické dáta.\",\"1LuJNw\":\"Táto vstupenka už nie je platná\",\"0Ew0uk\":\"Tento lístok bol práve naskenovaný. Pred ďalším skenovaním počkajte.\",\"FYXq7k\":[\"This will affect \",[\"loadedAffectedCount\"],\" date(s).\"],\"kvpxIU\":\"Toto sa použije na notifikácie a komunikáciu s vašimi používateľmi.\",\"rhsath\":\"Toto nebude viditeľné pre zákazníkov, ale pomáha vám identifikovať partnera.\",\"hV6FeJ\":\"Throughput\",\"+FjWgX\":\"Thu\",\"kkDQ8m\":\"Thursday\",\"0GSPnc\":\"Dizajn lístka\",\"EZC/Cu\":\"Dizajn lístka bol úspešne uložený\",\"bbslmb\":\"Návrhár lístka\",\"1BPctx\":\"Lístok pre\",\"HGuXjF\":\"Držitelia lístkov\",\"CMUt3Y\":\"Držitelia lístkov\",\"awHmAT\":\"ID lístka\",\"6czJik\":\"Logo lístka\",\"t79rDv\":\"Lístok nenájdený\",\"6tmWch\":\"Lístok alebo produkt\",\"1tfWrD\":\"Náhľad lístka pre\",\"KnjoUA\":\"Cena lístka\",\"pGZOcL\":\"Lístok bol úspešne znovu odoslaný\",\"o02GZM\":\"Ticket sales have ended for this event\",\"8jLPgH\":\"Typ lístka\",\"8qsbZ5\":\"Predaj lístkov\",\"zNECqg\":\"lístky\",\"6GQNLE\":\"Lístky\",\"NRhrIB\":\"Lístky a produkty\",\"OrWHoZ\":\"Lístky sú automaticky ponúkané zákazníkom v zozname čakateľov, keď sa uvoľní kapacita.\",\"EUnesn\":\"Dostupné lístky\",\"AGRilS\":\"Predané lístky\",\"zyUxcw\":\"TikTok\",\"LhMjLm\":\"Time\",\"fXf2r5\":[\"Times shown in \",[\"timezoneAbbr\"]],\"dMtLDE\":\"to\",\"/jQctM\":\"Do\",\"tiI71C\":\"Na zvýšenie limitov nás kontaktujte na\",\"ecUA8p\":\"Today\",\"W428WC\":\"Prepnúť stĺpce\",\"BRMXj0\":\"Tomorrow\",\"UBSG1X\":\"Najlepší organizátori (posledných 14 dní)\",\"3sZ0xx\":\"Celkový počet účtov\",\"SMDzqJ\":\"Celkový počet účastníkov\",\"orBECM\":\"Celkovo vybrané\",\"k5CU8c\":\"Celkový počet záznamov\",\"4B7oCp\":\"Celkový poplatok\",\"sMMlTX\":\"Total fees\",\"mlvCEl\":\"Total orders\",\"2AW/k5\":\"Celkové množstvo pre všetky termíny\",\"dp8BCb\":\"Total tax\",\"vb0Q0/\":\"Celkový počet používateľov\",\"oJjplO\":\"Celkový počet zobrazení\",\"rBZ9pz\":\"Tours\",\"orluER\":\"Sledovať rast účtu a výkonnosť podľa zdroja priradenia\",\"YwKzpH\":\"Sledovanie a analytika\",\"GUA0Jy\":\"Try a different search term or filter\",\"2P/OWN\":\"Try adjusting your filters to see more dates.\",\"ouM5IM\":\"Skúste iný e-mail\",\"3DZvE7\":\"Vyskúšajte Hi.Events zadarmo\",\"vq2WxD\":\"Tue\",\"G3myU+\":\"Tuesday\",\"Kz91g/\":\"Turečtina\",\"GdOhw6\":\"Vypnúť zvuk\",\"KUOhTy\":\"Zapnúť zvuk\",\"dBeuY2\":\"Twitch\",\"QytzQr\":\"Napíšte \\\"odstrániť\\\" na potvrdenie\",\"nWRfmt\":\"Typografia\",\"IrVSu+\":\"Nie je možné duplikovať produkt. Skontrolujte svoje údaje\",\"Vx2J6x\":\"Nie je možné načítať účastníka\",\"h0dx5e\":\"Nie je možné pridať sa do zoznamu čakateľov\",\"DaE0Hg\":\"Unable to load attendee details.\",\"GlnD5Y\":\"Unable to load products for this date. Please try again.\",\"17VbmV\":\"Unable to undo check-in\",\"n57zCW\":\"Nepriradené účty\",\"9uI/rE\":\"Undo\",\"Ef7StM\":\"Neznáme\",\"ZBAScj\":\"Neznámy účastník\",\"MEIAzV\":\"Bez názvu\",\"K6L5Mx\":\"Miesto bez názvu\",\"7yiFvZ\":\"Nezaplatené\",\"X13xGn\":\"Nedôveryhodné\",\"gyXpQN\":\"Upcoming events\",\"Pp1sWX\":\"Aktualizovať partnera\",\"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\":\"Nahrať obrázok obalu pre vášho organizátora\",\"4kEGqW\":\"Nahrať logo pre vášho organizátora\",\"lnCMdg\":\"Nahrať obrázok\",\"29w7p6\":\"Nahrávanie obrázka...\",\"HtrFfw\":\"URL je povinná\",\"vzWC39\":\"USB\",\"td5pxI\":\"USB scanner listening\",\"dyTklH\":\"USB scanner paused\",\"OHJXlK\":\"Použite <0>Liquid šablonovanie na personalizáciu e-mailov\",\"/rsy72\":\"Use event default\",\"0k4cdb\":\"Použiť údaje objednávky pre všetkých účastníkov. Mená a e-maily účastníkov budú zodpovedať informáciám kupujúceho.\",\"bA31T4\":\"Použiť údaje kupujúceho pre všetkých účastníkov\",\"PpgtnC\":\"Použiť túto adresu\",\"rnoQsz\":\"Používa sa pre okraje, zvýraznenia a štýlovanie QR kódu\",\"BV4L/Q\":\"UTM analytika\",\"l5ackE\":\"UUID\",\"imLQ9Y\":\"Overovanie čísla DPH...\",\"t7caBM\":\"VAT country code\",\"WLkfqH\":\"VAT number\",\"pnVh83\":\"Číslo DPH\",\"CabI04\":\"Číslo DPH nesmie obsahovať medzery\",\"PMhxAR\":\"Číslo DPH musí začínať 2-písmenným kódom krajiny, za ktorým nasleduje 8–15 alfanumerických znakov (napr. DE123456789)\",\"gPgdNV\":\"Číslo DPH bolo úspešne overené\",\"RUMiLy\":\"Overenie čísla DPH zlyhalo\",\"vqji3Y\":\"Overenie čísla DPH zlyhalo. Skontrolujte číslo DPH.\",\"8dENF9\":\"DPH z poplatku\",\"ZutOKU\":\"Sadzba DPH\",\"+KJZt3\":\"VAT registered\",\"Nfbg76\":\"Nastavenia DPH boli úspešne uložené\",\"UvYql/\":\"Nastavenia DPH uložené. Overujeme číslo DPH na pozadí.\",\"bXn1Jz\":\"VAT settings updated\",\"tJylUv\":\"Zaobchádzanie s DPH pre poplatky platformy\",\"FlGprQ\":\"Zaobchádzanie s DPH pre poplatky platformy: firmy registrované pre DPH v EÚ môžu použiť mechanizmus prenesenia daňovej povinnosti (0 % – článok 196 smernice o DPH 2006/112/ES). Firmám neregistrovaným pre DPH sa účtuje írska DPH vo výške 23 %.\",\"516oLj\":\"Služba overenia DPH je dočasne nedostupná\",\"p6QQLa\":[\"VAT: \",[\"0\"]],\"5q87Y9\":\"VAT: not registered\",\"AdWhjZ\":\"Overovací kód\",\"kUAumu\":\"Verification email sent. Check your inbox.\",\"QDEWii\":\"Overené\",\"wCKkSr\":\"Overiť e-mail\",\"/IBv6X\":\"Overte svoj e-mail\",\"u8nB38\":\"Verify your email so attendees can receive tickets\",\"e/cvV1\":\"Overovanie...\",\"fROFIL\":\"Vietnamčina\",\"p5nYkr\":\"View All\",\"yA/6BX\":\"View all →\",\"6CQ7/B\":\"View all capabilities\",\"YSE15b\":\"View all check-in lists\",\"RnvnDc\":\"Zobraziť všetky správy odoslané naprieč platformou\",\"+WFMis\":\"Zobraziť a stiahnuť správy naprieč všetkými udalosťami. Zahrnuté sú iba dokončené objednávky.\",\"c7VN/A\":\"Zobraziť odpovede\",\"SZw9tS\":\"Zobraziť podrobnosti\",\"9+84uW\":[\"View details for \",[\"0\"],\" \",[\"1\"]],\"FCVmuU\":\"Zobraziť udalosť\",\"c6SXHN\":\"Zobraziť stránku udalosti\",\"n6EaWL\":\"Zobraziť protokoly\",\"OaKTzt\":\"Zobraziť mapu\",\"zNZNMs\":\"Zobraziť správu\",\"67OJ7t\":\"Zobraziť objednávku\",\"tKKZn0\":\"Zobraziť podrobnosti objednávky\",\"KeCXJu\":\"Zobraziť podrobnosti objednávky, vydávať vrátenia a znovu odosielať potvrdenia.\",\"9jnAcN\":\"Zobraziť domovskú stránku organizátora\",\"1J/AWD\":\"Zobraziť lístok\",\"N9FyyW\":\"Zobraziť, upraviť a exportovať registrovaných účastníkov.\",\"6dp/Hz\":\"Vimeo\",\"SS4mGB\":\"VK\",\"uUehLT\":\"Čakanie\",\"quR8Qp\":\"Čaká na platbu\",\"KrurBH\":\"Waiting for scan…\",\"u0n+wz\":\"Čakací zoznam\",\"3RXFtE\":\"Zoznam čakateľov povolený\",\"TwnTPy\":\"Ponuka zo zoznamu čakateľov vypršala\",\"aUi/Dz\":\"Upozornenie: Toto je predvolená konfigurácia systému. Zmeny ovplyvnia všetky účty, ktoré nemajú priradenú konkrétnu konfiguráciu.\",\"aT/44s\":\"We couldn't copy that Stripe connection. Please try again.\",\"RRZDED\":\"Nenašli sa žiadne objednávky spojené s touto e-mailovou adresou.\",\"2RZK9x\":\"Nenašla sa objednávka, ktorú hľadáte. Odkaz mohol vypršať alebo sa podrobnosti objednávky mohli zmeniť.\",\"nefMIK\":\"Nenašiel sa lístok, ktorý hľadáte. Odkaz mohol vypršať alebo sa podrobnosti lístka mohli zmeniť.\",\"miysJh\":\"Nenašla sa táto objednávka. Mohla byť odstránená.\",\"Fjj/5/\":\"We couldn't load the check-in lists. Please try again.\",\"ADsQ23\":\"We couldn't reach Stripe just now. Please try again in a moment.\",\"HJKdzP\":\"Nastala chyba pri načítaní tejto stránky. Skúste to znovu.\",\"jegrvW\":\"We partner with Stripe to send payouts straight to your bank account.\",\"IfN2Qo\":\"Odporúčame štvorcové logo s minimálnymi rozmermi 200x200px\",\"wJzo/w\":\"Odporúčame rozmery 400px x 400px a maximálnu veľkosť súboru 5 MB\",\"L/KlAh\":[\"We sent a verification link to \",[\"0\"]],\"KRCDqH\":\"Používame cookies na pochopenie používania stránky a zlepšenie vášho zážitku.\",\"x8rEDQ\":\"Nepodarilo sa overiť číslo DPH po viacerých pokusoch. Budeme pokračovať v overovaní na pozadí. Skúste to neskôr.\",\"mfM/HJ\":[\"Upozorníme vás e-mailom, ak sa uvoľní miesto pre \",[\"productDisplayName\"],\" dňa \",[\"occurrenceDate\"],\".\"],\"iy+M+c\":[\"Upozorníme vás e-mailom, ak sa uvoľní miesto pre \",[\"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\":\"Pošleme vaše lístky na tento e-mail\",\"ZOmUYW\":\"Overíme číslo DPH na pozadí. Ak nastanú problémy, dáme vám vedieť.\",\"LKjHr4\":[\"We've made changes to the schedule for \\\"\",[\"title\"],\"\\\" — \",[\"description\"],\" affecting \",[\"affectedCount\"],\" session(s).\"],\"Fq/Nx7\":\"Poslali sme 5-ciferný overovací kód na:\",\"GdWB+V\":\"Webhook bol úspešne vytvorený\",\"2X4ecw\":\"Webhook bol úspešne odstránený\",\"ndBv0v\":\"Webhook integrations\",\"CThMKa\":\"Protokoly webhookov\",\"I0adYQ\":\"Podpisový tajný kľúč webhooку\",\"nuh/Wq\":\"URL webhooку\",\"8BMPMe\":\"Webhook nebude odosielať notifikácie\",\"FSaY52\":\"Webhook bude odosielať notifikácie\",\"v1kQyJ\":\"Webhooky\",\"On0aF2\":\"Webstránka\",\"0f7U0k\":\"Wed\",\"VAcXNz\":\"Wednesday\",\"64X6l4\":\"week\",\"4XSc4l\":\"Weekly\",\"IAUiSh\":\"weeks\",\"vKLEXy\":\"Weibo\",\"9eF5oV\":\"Vitajte späť\",\"QDWsl9\":[\"Vitajte v \",[\"0\"],\", \",[\"1\"],\" 👋\"],\"LETnBR\":[\"Vitajte v \",[\"0\"],\", tu je zoznam všetkých vašich udalostí\"],\"DDbx7K\":\"Wellness\",\"ywRaYa\":\"What time?\",\"FaSXqR\":\"Aký typ udalosti?\",\"0WyYF4\":\"What unauthenticated staff can see\",\"2+ExvJ\":\"WhatsApp\",\"cxsKvw\":\"Keď je odbavenie odstránené\",\"RPe6bE\":\"When a date is cancelled on a recurring event\",\"Gmd0hv\":\"Keď je vytvorený nový účastník\",\"zyIyPe\":\"Keď je vytvorená nová udalosť\",\"Lc18qn\":\"Keď je vytvorená nová objednávka\",\"dfkQIO\":\"Keď je vytvorený nový produkt\",\"8OhzyY\":\"Keď je produkt odstránený\",\"tRXdQ9\":\"Keď je produkt aktualizovaný\",\"9L9/28\":\"Keď sa produkt vypredá, zákazníci sa môžu pridať do zoznamu čakateľov a byť upozornení, keď sa uvoľnia miesta.\",\"OIkHj+\":\"Keď sa produkt vypredá, zákazníci sa môžu pridať do zoznamu čakateľov a byť upozornení, keď sa uvoľnia miesta. Zákazníci sa pridávajú do zoznamu čakateľov pre konkrétny dátum a ponuky sa robia podľa dátumu.\",\"Q7CWxp\":\"Keď je účastník zrušený\",\"IuUoyV\":\"Keď je účastník odbavený\",\"nBVOd7\":\"Keď je účastník aktualizovaný\",\"t7cuMp\":\"Keď je udalosť archivovaná\",\"gtoSzE\":\"Keď je udalosť aktualizovaná\",\"ny2r8d\":\"Keď je objednávka zrušená\",\"c9RYbv\":\"Keď je objednávka označená ako zaplatená\",\"ejMDw1\":\"Keď je objednávka vrátená\",\"fVPt0F\":\"Keď je objednávka aktualizovaná\",\"bcYlvb\":\"Keď sa odbavenie uzavrie\",\"XIG669\":\"Keď sa odbavenie otvorí\",\"de6HLN\":\"Keď zákazníci zakúpia lístky, ich objednávky sa zobrazia tu.\",\"pm9tpn\":\"Ak je povolené, kupujúci môžu naraz skopírovať svoje meno a e-mail všetkým účastníkom. Vypnutím odstránite možnosť \\\"Všetci účastníci\\\"; kupujúci môžu stále skopírovať údaje prvému účastníkovi, ostatných je potrebné zadať jednotlivo.\",\"403wpZ\":\"Ak je povolené, nové udalosti umožnia účastníkom spravovať vlastné podrobnosti lístka cez zabezpečený odkaz. Toto môže byť prepísané pre každú udalosť.\",\"blXLKj\":\"Ak je povolené, nové udalosti zobrazia zaškrtávacie políčko marketingového súhlasu počas pokladne. Toto môže byť prepísané pre každú udalosť.\",\"Kj0Txn\":\"Ak je povolené, na transakcie Stripe Connect nebudú účtované žiadne poplatky aplikácie. Použite pre krajiny, kde poplatky aplikácie nie sú podporované.\",\"uchB0M\":\"Náhľad widgetu\",\"uvIqcj\":\"Workshop\",\"EpknJA\":\"Napíšte správu tu...\",\"nhtR6Y\":\"X (Twitter)\",\"7qI8sJ\":\"year\",\"zkWmBh\":\"Yearly\",\"+BGee5\":\"years\",\"X/azM1\":\"Áno – mám platné číslo registrácie DPH v EÚ\",\"Tz5oXG\":\"Áno, zrušiť objednávku\",\"QlSZU0\":[\"Zosobňujete <0>\",[\"0\"],\" (\",[\"1\"],\")\"],\"s14PLh\":[\"Vydávate čiastočné vrátenie. Zákazníkovi bude vrátené \",[\"0\"],\" \",[\"1\"],\".\"],\"o7LgX6\":\"Ďalšie servisné poplatky a dane môžete nakonfigurovať v nastaveniach účtu.\",\"rj3A7+\":\"You can override this for individual dates later.\",\"paWwQ0\":\"V prípade potreby môžete stále manuálne ponúkať lístky.\",\"jTDzpA\":\"Nemôžete archivovať posledného aktívneho organizátora na vašom účte.\",\"D8baxD\":\"Máte platené vstupenky, ale Stripe ešte nie je pripojený, takže nemôžete prijímať platby.\",\"5VGIlq\":\"Dosiahli ste limit správ.\",\"casL1O\":\"K bezplatnému produktu máte pridané dane a poplatky. Chcete ich odstrániť?\",\"9jJNZY\":\"Pred uložením musíte potvrdiť svoje povinnosti\",\"pCLes8\":\"Musíte súhlasiť s prijímaním správ\",\"FVTVBy\":\"Pred aktualizáciou stavu organizátora musíte overiť e-mailovú adresu.\",\"ze4bi/\":\"You need to create at least one occurrence before you can add attendees to this recurring event.\",\"w65ZgF\":\"Pred úpravou e-mailových šablón musíte overiť e-mail účtu.\",\"FRl8Jv\":\"Pred odosielaním správ musíte overiť e-mail účtu.\",\"88cUW+\":\"Dostanete\",\"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\":[\"Idete na \",[\"0\"],\"!\"],\"ZlLcht\":[\"Prihlasujete sa na čakaciu listinu na \",[\"occurrenceDate\"],\".\"],\"qGZz0m\":\"Ste v zozname čakateľov!\",\"/5HL6k\":\"Bolo vám ponúknuté miesto!\",\"gbjFFH\":\"You've changed the session time\",\"p/Sa0j\":\"Váš účet má limity správ. Na zvýšenie limitov nás kontaktujte na\",\"x/xjzn\":\"Vaši partneri boli úspešne exportovaní.\",\"TF37u6\":\"Vaši účastníci boli úspešne exportovaní.\",\"79lXGw\":\"Váš zoznam odbavení bol úspešne vytvorený. Zdieľajte odkaz nižšie so svojím personálom odbavenia.\",\"BnlG9U\":\"Vaša aktuálna objednávka bude stratená.\",\"nBqgQb\":\"Váš e-mail\",\"GG1fRP\":\"Vaša udalosť je živá!\",\"ifRqmm\":\"Vaša správa bola úspešne odoslaná!\",\"0/+Nn9\":\"Vaše správy sa zobrazia tu\",\"/Rj5P4\":\"Vaše meno\",\"PFjJxY\":\"Nové heslo musí mať aspoň 8 znakov.\",\"gzrCuN\":\"Podrobnosti objednávky boli aktualizované. Na novú e-mailovú adresu bol odoslaný potvrdzovací e-mail.\",\"naQW82\":\"Vaša objednávka bola zrušená.\",\"bhlHm/\":\"Vaša objednávka čaká na platbu\",\"XeNum6\":\"Vaše objednávky boli úspešne exportované.\",\"Xd1R1a\":\"Adresa vášho organizátora\",\"WWYHKD\":\"Vaša platba je chránená šifrovaním na bankovej úrovni\",\"5b3QLi\":\"Váš plán\",\"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\":\"Vaše lístky boli potvrdené.\",\"EmFsMZ\":\"Vaše číslo DPH je zaradené do frontu na overenie\",\"QBlhh4\":\"Vaše číslo DPH bude overené pri uložení\",\"fT9VLt\":\"Vaša ponuka zo zoznamu čakateľov vypršala a nepodarilo sa dokončiť objednávku. Pridajte sa znovu do zoznamu čakateľov, aby ste boli upozornení, keď sa uvoľnia ďalšie miesta.\",\"9Q6UKX\":\"YouTube\"}")}; \ No newline at end of file +/*eslint-disable*/module.exports={messages:JSON.parse("{\"f8qS7T\":\"'Zatiaľ nie je čo zobraziť'\",\"J/hVSQ\":[[\"0\"]],\"Jv22kr\":[[\"0\"],\" <0>checked in successfully\"],\"yxhYRZ\":[[\"0\"],\" úspešne <0>odhlásený\"],\"KMgp2+\":[[\"0\"],\" dostupných\"],\"Pmr5xp\":[[\"0\"],\" úspešne vytvorené\"],\"FImCSc\":[[\"0\"],\" úspešne aktualizované\"],\"KOr9b4\":[[\"0\"],\"'s Events\"],\"cU8MWb\":[[\"0\"],\"/\",[\"1\"],\" checked in\"],\"Vjij1k\":[[\"days\"],\" dní, \",[\"hours\"],\" hodín, \",[\"minutes\"],\" minút a \",[\"seconds\"],\" sekúnd\"],\"f3RdEk\":[[\"hours\"],\" hodín, \",[\"minutes\"],\" minút a \",[\"seconds\"],\" sekúnd\"],\"fyE7Au\":[[\"minutes\"],\" minút a \",[\"seconds\"],\" sekúnd\"],\"NlQ0cx\":[\"Prvá udalosť organizátora \",[\"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://vaša-webová-stránka.sk\",\"qnSLLW\":\"<0>Zadajte cenu bez daní a poplatkov.<1>Dane a poplatky môžete pridať nižšie.\",\"ZjMs6e\":\"<0>Počet produktov dostupných pre tento produkt<1>Táto hodnota môže byť prepísaná, ak sú s týmto produktom spojené <2>Limity kapacity.\",\"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 minút a 0 sekúnd\",\"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\":\"Vstup dátumu. Ideálne na otázky o dátume narodenia atď.\",\"6euFZ/\":[\"Predvolený \",[\"type\"],\" sa automaticky aplikuje na všetky nové produkty. Môžete to zmeniť pre každý produkt zvlášť.\"],\"SMUbbQ\":\"Rozbaľovací zoznam umožňuje iba jeden výber\",\"qv4bfj\":\"Poplatok, napríklad rezervačný alebo servisný\",\"POT0K/\":\"Pevná suma za produkt. Napr. 0,50 € za produkt\",\"f4vJgj\":\"Viacriadkový textový vstup\",\"OIPtI5\":\"Percento z ceny produktu. Napr. 3,5 % z ceny produktu\",\"ZthcdI\":\"Promo kód bez zľavy môže byť použitý na odhalenie skrytých produktov.\",\"AG/qmQ\":\"Prepínač má viacero možností, ale vybrať možno iba jednu.\",\"h179TP\":\"Krátky popis udalosti, ktorý sa zobrazí vo výsledkoch vyhľadávania a pri zdieľaní na sociálnych sieťach. Predvolene sa použije popis udalosti\",\"WKMnh4\":\"Jednoriadkový textový vstup\",\"BHZbFy\":\"Jedna otázka na objednávku. Napr. Aká je vaša doručovacia adresa?\",\"Fuh+dI\":\"Jedna otázka na produkt. Napr. Aká je vaša veľkosť trička?\",\"RlJmQg\":\"Štandardná daň, napríklad DPH alebo GST\",\"uIKNjo\":\"About the event\",\"3pykXZ\":\"Prijímajte bankové prevody, šeky alebo iné offline platobné metódy\",\"hrvLf4\":\"Prijímajte platby kreditnou kartou cez Stripe\",\"bfXQ+N\":\"Prijať pozvánku\",\"AeXO77\":\"Účet\",\"lkNdiH\":\"Názov účtu\",\"Puv7+X\":\"Nastavenia účtu\",\"OmylXO\":\"Účet bol úspešne aktualizovaný\",\"7L01XJ\":\"Akcie\",\"FQBaXG\":\"Aktivovať\",\"5T2HxQ\":\"Dátum aktivácie\",\"F6pfE9\":\"Aktívne\",\"/PN1DA\":\"Pridajte popis pre tento zoznam odbavenia\",\"0/vPdA\":\"Pridajte poznámky o účastníkovi. Tieto nebudú viditeľné pre účastníka.\",\"Or1CPR\":\"Pridajte poznámky o účastníkovi...\",\"l3sZO1\":\"Pridajte poznámky k objednávke. Tieto nebudú viditeľné pre zákazníka.\",\"xMekgu\":\"Pridajte poznámky k objednávke...\",\"PGPGsL\":\"Pridať popis\",\"gMK0ps\":\"Add event details and and manage event settings.\",\"OveehC\":\"Pridajte pokyny pre offline platby (napr. údaje bankového prevodu, kam posielať šeky, termíny platby)\",\"LTVoRa\":\"Add More products\",\"ApsD9J\":\"Pridať nové\",\"TZxnm8\":\"Pridať možnosť\",\"24l4x6\":\"Pridať produkt\",\"8q0EdE\":\"Pridať produkt do kategórie\",\"YvCknQ\":\"Add products\",\"Cw27zP\":\"Add question\",\"yWiPh+\":\"Pridať daň alebo poplatok\",\"goOKRY\":\"Pridať úroveň\",\"oZW/gT\":\"Pridať do kalendára\",\"pn5qSs\":\"Ďalšie informácie\",\"Y8DIQy\":\"Additional Options\",\"Du6bPw\":\"Adresa\",\"NY/x1b\":\"Adresa riadok 1\",\"POdIrN\":\"Adresa riadok 1\",\"cormHa\":\"Adresa riadok 2\",\"gwk5gg\":\"Adresa riadok 2\",\"U3pytU\":\"Správca\",\"HLDaLi\":\"Správcovia majú plný prístup k udalostiam a nastaveniam účtu.\",\"W7AfhC\":\"Všetci účastníci tejto udalosti\",\"cde2hc\":\"Všetky produkty\",\"5CQ+r0\":\"Povoliť odbavenie účastníkov s nezaplatenými objednávkami\",\"ipYKgM\":\"Povoliť indexovanie vyhľadávačmi\",\"LRbt6D\":\"Umožniť vyhľadávačom indexovať túto udalosť\",\"+MHcJD\":\"Almost there! We're just waiting for your payment to be processed. This should only take a few seconds..\",\"ApOYO8\":\"Úžasné, Udalosť, Kľúčové slová...\",\"hehnjM\":\"Suma\",\"R2O9Rg\":[\"Zaplatená suma (\",[\"0\"],\")\"],\"V7MwOy\":\"Pri načítaní stránky nastala chyba\",\"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\":\"Nastala neočakávaná chyba.\",\"byKna+\":\"Nastala neočakávaná chyba. Skúste to znova.\",\"ubdMGz\":\"Všetky otázky od držiteľov produktov budú odoslané na túto e-mailovú adresu. Táto adresa bude tiež použitá ako adresa \\\"reply-to\\\" pre všetky e-maily odoslané z tejto udalosti\",\"aAIQg2\":\"Vzhľad\",\"Ym1gnK\":\"použité\",\"sy6fss\":[\"Platí pre \",[\"0\"],\" produktov\"],\"kadJKg\":\"Platí pre 1 produkt\",\"DB8zMK\":\"Použiť\",\"GctSSm\":\"Použiť promo kód\",\"ARBThj\":[\"Použiť tento \",[\"type\"],\" na všetky nové produkty\"],\"S0ctOE\":\"Archivovať udalosť\",\"TdfEV7\":\"Archivované\",\"A6AtLP\":\"Archived Events\",\"q7TRd7\":\"Naozaj chcete aktivovať tohto účastníka?\",\"TvkW9+\":\"Naozaj chcete archivovať túto udalosť?\",\"/CV2x+\":\"Naozaj chcete zrušiť tohto účastníka? Ich lístok bude zneplatnený.\",\"YgRSEE\":\"Naozaj chcete odstrániť tento promo kód?\",\"iU234U\":\"Are you sure you want to delete this question?\",\"CMyVEK\":\"Naozaj chcete nastaviť túto udalosť ako koncept? Udalosť bude skrytá pred verejnosťou.\",\"mEHQ8I\":\"Are you sure you want to make this event public? This will make the event visible to the public\",\"s4JozW\":\"Naozaj chcete obnoviť túto udalosť? Bude obnovená ako koncept.\",\"vJuISq\":\"Naozaj chcete odstrániť toto priradenie kapacity?\",\"baHeCz\":\"Naozaj chcete odstrániť tento zoznam odbavení?\",\"LBLOqH\":\"Opýtať sa raz na objednávku\",\"wu98dY\":\"Opýtať sa raz na produkt\",\"ss9PbX\":\"Účastník\",\"m0CFV2\":\"Údaje účastníka\",\"QKim6l\":\"Účastník nenájdený\",\"R5IT/I\":\"Attendee Notes\",\"lXcSD2\":\"Attendee questions\",\"HT/08n\":\"Lístok účastníka\",\"9SZT4E\":\"Účastníci\",\"iPBfZP\":\"Registrovaní účastníci\",\"7KxcHR\":\"Attendees with a specific product\",\"IMJ6rh\":\"Automatická zmena veľkosti\",\"vZ5qKF\":\"Automaticky meniť výšku widgetu podľa obsahu. Ak je zakázané, widget vyplní výšku kontajnera.\",\"4lVaWA\":\"Čaká na platbu offline\",\"2rHwhl\":\"Čaká na platbu offline\",\"3wF4Q/\":\"Čaká na platbu\",\"ioG+xt\":\"Čaká na platbu\",\"3PmQfI\":\"Awesome Event\",\"Yrbm6T\":\"Awesome Organizer Ltd.\",\"9002sI\":\"Back to all events\",\"A302fe\":\"Späť na stránku udalosti\",\"VCoEm+\":\"Späť na prihlásenie\",\"k1bLf+\":\"Farba pozadia\",\"I7xjqg\":\"Typ pozadia\",\"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\":\"Fakturačná adresa\",\"/xC/im\":\"Nastavenia fakturácie\",\"rp/zaT\":\"Brazílska portugalčina\",\"whqocw\":\"Registráciou súhlasíte s našimi <0>Podmienkami služby a <1>Zásadami ochrany osobných údajov.\",\"bcCn6r\":\"Typ výpočtu\",\"+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\":\"Zrušiť\",\"Gjt/py\":\"Zrušiť zmenu e-mailu\",\"tVJk4q\":\"Zrušiť objednávku\",\"Os6n2a\":\"Zrušiť objednávku\",\"Mz7Ygx\":[\"Zrušiť objednávku \",[\"0\"]],\"3tTjpi\":\"Canceling will cancel all products associated with this order, and release the products back into the available pool.\",\"vv7kpg\":\"Zrušené\",\"U7nGvl\":\"Cannot Check In\",\"QyjCeq\":\"Kapacita\",\"V6Q5RZ\":\"Priradenie kapacity bolo úspešne vytvorené\",\"k5p8dz\":\"Priradenie kapacity bolo úspešne odstránené\",\"nDBs04\":\"Správa kapacity\",\"ddha3c\":\"Kategórie umožňujú zoskupovať produkty. Napríklad môžete mať kategóriu pre \\\"Lístky\\\" a ďalšiu pre \\\"Tovar\\\".\",\"iS0wAT\":\"Kategórie pomáhajú organizovať produkty. Tento názov sa zobrazí na verejnej stránke udalosti.\",\"eorM7z\":\"Kategórie boli úspešne preusporiadané.\",\"3EXqwa\":\"Kategória bola úspešne vytvorená\",\"77/YgG\":\"Change Cover\",\"GptGxg\":\"Zmeniť heslo\",\"xMDm+I\":\"Check In\",\"p2WLr3\":[\"Odbavenie \",[\"0\"],\" \",[\"1\"]],\"D6+U20\":\"Odbavenie a označenie objednávky ako zaplatenej\",\"QYLpB4\":\"Iba odbavenie\",\"/Ta1d4\":\"Check Out\",\"5LDT6f\":\"Pozrite si túto udalosť!\",\"gXcPxc\":\"Check-in\",\"fVUbUy\":\"Check-In List created successfully\",\"+CeSxK\":\"Zoznam odbavení bol úspešne odstránený\",\"+hBhWk\":\"Zoznam odbavení vypršal\",\"mBsBHq\":\"Zoznam odbavení nie je aktívny\",\"vPqpQG\":\"Zoznam odbavení nenájdený\",\"tejfAy\":\"Zoznamy odbavení\",\"hD1ocH\":\"URL odbavenia skopírovaná do schránky\",\"CNafaC\":\"Možnosti zaškrtávacieho políčka umožňujú viacnásobný výber\",\"SpabVf\":\"Zaškrtávacie políčka\",\"CRu4lK\":\"Odbavený\",\"znIg+z\":\"Pokladňa\",\"1WnhCL\":\"Nastavenia pokladne\",\"6imsQS\":\"Čínština (zjednodušená)\",\"JjkX4+\":\"Vyberte farbu pozadia\",\"/Jizh9\":\"Vyberte účet\",\"3wV73y\":\"Mesto\",\"FG98gC\":\"Vymazať text vyhľadávania\",\"EYeuMv\":\"click here\",\"sby+1/\":\"Kliknite na kopírovanie\",\"yz7wBu\":\"Zavrieť\",\"62Ciis\":\"Zavrieť bočný panel\",\"EWPtMO\":\"Kód\",\"ercTDX\":\"Kód musí mať 3 až 50 znakov\",\"oqr9HB\":\"Zbaliť tento produkt pri prvom načítaní stránky udalosti\",\"jZlrte\":\"Farba\",\"Vd+LC3\":\"Farba musí byť platný hex kód. Príklad: #ffffff\",\"1HfW/F\":\"Farby\",\"VZeG/A\":\"Čoskoro\",\"yPI7n9\":\"Kľúčové slová oddelené čiarkou popisujúce udalosť. Tieto budú použité vyhľadávačmi na kategorizáciu a indexovanie udalosti\",\"NPZqBL\":\"Dokončiť objednávku\",\"guBeyC\":\"Complete payment\",\"C8HNV2\":\"Dokončiť platbu\",\"qqWcBV\":\"Dokončené\",\"6HK5Ct\":\"Dokončené objednávky\",\"NWVRtl\":\"Dokončené objednávky\",\"DwF9eH\":\"Kód komponentu\",\"Tf55h7\":\"Nakonfigurovaná zľava\",\"7VpPHA\":\"Potvrdiť\",\"ZaEJZM\":\"Potvrdiť zmenu e-mailu\",\"yjkELF\":\"Potvrdiť nové heslo\",\"xnWESi\":\"Potvrdiť heslo\",\"p2/GCq\":\"Potvrdiť heslo\",\"wnDgGj\":\"Potvrdzovanie e-mailovej adresy...\",\"pbAk7a\":\"Pripojiť Stripe\",\"UMGQOh\":\"Pripojiť sa cez Stripe\",\"QKLP1W\":\"Connect your Stripe account to start receiving payments.\",\"5lcVkL\":\"Podrobnosti pripojenia\",\"yAej59\":\"Content background color\",\"xGVfLh\":\"Pokračovať\",\"X++RMT\":\"Continue button text\",\"AfNRFG\":\"Text tlačidla Pokračovať\",\"lIbwvN\":\"Continue Event Setup\",\"HB22j9\":\"Continue set up\",\"bZEa4H\":\"Continue Stripe Connect Setup\",\"6V3Ea3\":\"Skopírované\",\"T5rdis\":\"skopírované do schránky\",\"he3ygx\":\"Kopírovať\",\"r2B2P8\":\"Kopírovať URL odbavenia\",\"8+cOrS\":\"Copy details to all attendees\",\"ENCIQz\":\"Kopírovať odkaz\",\"E6nRW7\":\"Kopírovať URL\",\"JNCzPW\":\"Krajina\",\"IF7RiR\":\"Obal\",\"hYgDIe\":\"Vytvoriť\",\"b9XOHo\":[\"Vytvoriť \",[\"0\"]],\"k9RiLi\":\"Vytvoriť produkt\",\"6kdXbW\":\"Vytvoriť promo kód\",\"n5pRtF\":\"Vytvoriť lístok\",\"X6sRve\":[\"Create an account or <0>\",[\"0\"],\" to get started\"],\"nx+rqg\":\"vytvoriť organizátora\",\"ipP6Ue\":\"Vytvoriť účastníka\",\"VwdqVy\":\"Vytvoriť priradenie kapacity\",\"EwoMtl\":\"Vytvoriť kategóriu\",\"XletzW\":\"Vytvoriť kategóriu\",\"WVbTwK\":\"Vytvoriť zoznam odbavení\",\"uN355O\":\"Vytvoriť udalosť\",\"BOqY23\":\"Vytvoriť nové\",\"kpJAeS\":\"Vytvoriť organizátora\",\"a0EjD+\":\"Vytvoriť produkt\",\"+scrJC\":\"Create products for your event, set prices, and manage available quantity.\",\"sYpiZP\":\"Vytvoriť promo kód\",\"B3Mkdt\":\"Vytvoriť otázku\",\"UKfi21\":\"Vytvoriť daň alebo poplatok\",\"d+F6q9\":\"Vytvorené\",\"Q2lUR2\":\"Mena\",\"DCKkhU\":\"Aktuálne heslo\",\"uIElGP\":\"Vlastná URL mapy\",\"UEqXyt\":\"Vlastný rozsah\",\"876pfE\":\"Zákazník\",\"QOg2Sf\":\"Prispôsobte nastavenia e-mailu a notifikácií pre túto udalosť\",\"Y9Z/vP\":\"Prispôsobte domovskú stránku udalosti a správy pri pokladni\",\"2E2O5H\":\"Prispôsobte rôzne nastavenia pre túto udalosť\",\"iJhSxe\":\"Prispôsobte SEO nastavenia pre túto udalosť\",\"KIhhpi\":\"Prispôsobte stránku svojej udalosti\",\"nrGWUv\":\"Customize your event page to match your brand and style.\",\"Zz6Cxn\":\"Nebezpečná zóna\",\"ZQKLI1\":\"Nebezpečná zóna\",\"7p5kLi\":\"Panel\",\"mYGY3B\":\"Dátum\",\"JvUngl\":\"Dátum a čas\",\"JJhRbH\":\"Kapacita prvého dňa\",\"cnGeoo\":\"Vymazať\",\"jRJZxD\":\"Odstrániť kapacitu\",\"VskHIx\":\"Odstrániť kategóriu\",\"Qrc8RZ\":\"Odstrániť zoznam odbavení\",\"WHf154\":\"Odstrániť kód\",\"heJllm\":\"Delete Cover\",\"KWa0gi\":\"Delete Image\",\"1l14WA\":\"Delete product\",\"IatsLx\":\"Delete question\",\"Nu4oKW\":\"Popis\",\"YC3oXa\":\"Popis pre personál odbavenia\",\"URmyfc\":\"Podrobnosti\",\"1lRT3t\":\"Zakázanie tejto kapacity bude sledovať predaje, ale nezastaví ich po dosiahnutí limitu\",\"H6Ma8Z\":\"Zľava\",\"ypJ62C\":\"Zľava %\",\"3LtiBI\":[\"Zľava v \",[\"0\"]],\"C8JLas\":\"Typ zľavy\",\"1QfxQT\":\"Dismiss\",\"DZlSLn\":\"Popis dokumentu\",\"cVq+ga\":\"Don't have an account? <0>Sign Up\",\"3F1nBX\":\"Dar / Zaplaťte, koľko chcete\",\"OvNbls\":\"Stiahnuť .ics\",\"kodV18\":\"Stiahnuť CSV\",\"CELKku\":\"Stiahnuť faktúru\",\"LQrXcu\":\"Stiahnuť faktúru\",\"QIodqd\":\"Stiahnuť QR kód\",\"yhjU+j\":\"Sťahovanie faktúry\",\"uABpqP\":\"Drag and drop or click\",\"CfKofC\":\"Rozbaľovací zoznam\",\"JzLDvy\":\"Duplicate Capacity Assignments\",\"ulMxl+\":\"Duplicate Check-In Lists\",\"vi8Q/5\":\"Duplikovať udalosť\",\"3ogkAk\":\"Duplikovať udalosť\",\"Yu6m6X\":\"Duplicate Event Cover Image\",\"+fA4C7\":\"Možnosti duplikovania\",\"SoiDyI\":\"Duplicate Products\",\"57ALrd\":\"Duplicate Promo Codes\",\"83Hu4O\":\"Duplicate Questions\",\"20144c\":\"Duplicate Settings\",\"7Cx5It\":\"Skorý vtáčik\",\"ePK91l\":\"Upraviť\",\"N6j2JH\":[\"Upraviť \",[\"0\"]],\"kBkYSa\":\"Upraviť kapacitu\",\"oHE9JT\":\"Upraviť priradenie kapacity\",\"j1Jl7s\":\"Upraviť kategóriu\",\"FU1gvP\":\"Upraviť zoznam odbavení\",\"iFgaVN\":\"Upraviť kód\",\"jrBSO1\":\"Upraviť organizátora\",\"tdD/QN\":\"Upraviť produkt\",\"n143Tq\":\"Upraviť kategóriu produktov\",\"9BdS63\":\"Upraviť promo kód\",\"O0CE67\":\"Edit question\",\"EzwCw7\":\"Upraviť otázku\",\"poTr35\":\"Upraviť používateľa\",\"GTOcxw\":\"Upraviť používateľa\",\"pqFrv2\":\"napr. 2.50 pre $2.50\",\"3yiej1\":\"napr. 23.5 pre 23.5%\",\"O3oNi5\":\"E-mail\",\"VxYKoK\":\"Nastavenia e-mailu a notifikácií\",\"ATGYL1\":\"E-mailová adresa\",\"hzKQCy\":\"E-mailová adresa\",\"HqP6Qf\":\"Zmena e-mailu bola úspešne zrušená\",\"mISwW1\":\"Zmena e-mailu čaká na potvrdenie\",\"APuxIE\":\"Potvrdenie e-mailu znovu odoslané\",\"YaCgdO\":\"Potvrdenie e-mailu bolo úspešne znovu odoslané\",\"jyt+cx\":\"Správa v päte e-mailu\",\"I6F3cp\":\"E-mail nie je overený\",\"NTZ/NX\":\"Kód na vloženie\",\"4rnJq4\":\"Vložiť skript\",\"8oPbg1\":\"Povoliť fakturáciu\",\"j6w7d/\":\"Povoliť túto kapacitu na zastavenie predaja produktov po dosiahnutí limitu\",\"VFv2ZC\":\"Dátum ukončenia\",\"237hSL\":\"Ukončené\",\"nt4UkP\":\"Ended Events\",\"lYGfRP\":\"Angličtina\",\"MhVoma\":\"Zadajte sumu bez daní a poplatkov.\",\"SlfejT\":\"Chyba\",\"3Z223G\":\"Chyba pri potvrdzovaní e-mailovej adresy\",\"a6gga1\":\"Chyba pri potvrdzovaní zmeny e-mailu\",\"5/63nR\":\"EUR\",\"0pC/y6\":\"Udalosť\",\"CFLUfD\":\"Event created successfully 🎉\",\"/dgc8E\":\"Dátum udalosti\",\"0Zptey\":\"Predvolené nastavenia udalosti\",\"QcCPs8\":\"Podrobnosti udalosti\",\"6fuA9p\":\"Udalosť bola úspešne duplikovaná\",\"AEuj2m\":\"Domovská stránka udalosti\",\"Xe3XMd\":\"Event is not visible to the public\",\"4pKXJS\":\"Event is visible to the public\",\"ClwUUD\":\"Miesto udalosti a podrobnosti o mieste konania\",\"OopDbA\":\"Event page\",\"4/If97\":\"Aktualizácia stavu udalosti zlyhala. Skúste to neskôr.\",\"btxLWj\":\"Stav udalosti aktualizovaný\",\"nMU2d3\":\"Event URL\",\"tst44n\":\"Udalosti\",\"sZg7s1\":\"Dátum vypršania\",\"KnN1Tu\":\"Vyprší\",\"uaSvqt\":\"Dátum vypršania\",\"GS+Mus\":\"Exportovať\",\"9xAp/j\":\"Nepodarilo sa zrušiť účastníka\",\"ZpieFv\":\"Nepodarilo sa zrušiť objednávku\",\"z6tdjE\":\"Failed to delete message. Please try again.\",\"xDzTh7\":\"Nepodarilo sa stiahnuť faktúru. Skúste to znovu.\",\"9zSt4h\":\"Failed to export attendees. Please try again.\",\"2uGNuE\":\"Failed to export orders. Please try again.\",\"d+KKMz\":\"Nepodarilo sa načítať zoznam odbavení\",\"ZQ15eN\":\"Nepodarilo sa znovu odoslať e-mail s lístkom\",\"ejXy+D\":\"Nepodarilo sa zoradiť produkty\",\"PLUB/s\":\"Poplatok\",\"/mfICu\":\"Poplatky\",\"LyFC7X\":\"Filtrovať objednávky\",\"cSev+j\":\"Filtre\",\"CVw2MU\":[\"Filtre (\",[\"activeFilterCount\"],\")\"],\"wPmXlA\":\"Číslo prvej faktúry\",\"V1EGGU\":\"Meno\",\"kODvZJ\":\"Meno\",\"S+tm06\":\"Meno musí mať 1 až 50 znakov\",\"1g0dC4\":\"First Name, Last Name, and Email Address are default questions and are always included in the checkout process.\",\"Rs/IcB\":\"Prvé použitie\",\"TpqW74\":\"Pevná\",\"irpUxR\":\"Pevná suma\",\"TF9opW\":\"Flash is not available on this device\",\"UNMVei\":\"Zabudli ste heslo?\",\"2POOFK\":\"Zadarmo\",\"P/OAYJ\":\"Bezplatný produkt\",\"vAbVy9\":\"Bezplatný produkt, nevyžadujú sa platobné informácie\",\"nLC6tu\":\"Francúzština\",\"Weq9zb\":\"Všeobecné\",\"DDcvSo\":\"Nemčina\",\"4GLxhy\":\"Getting Started\",\"4D3rRj\":\"Späť na profil\",\"9LCqFI\":\"Go to event homepage\",\"ebIDwV\":\"Google Kalendár\",\"RUz8o/\":\"gross sales\",\"IgcAGN\":\"Hrubý predaj\",\"yRg26W\":\"Hrubý predaj\",\"R4r4XO\":\"Hostia\",\"26pGvx\":\"Máte promo kód?\",\"V7yhws\":\"hello@awesome-events.com\",\"6K/IHl\":\"Tu je príklad, ako môžete použiť komponent vo svojej aplikácii.\",\"Y1SSqh\":\"Tu je React komponent, ktorý môžete použiť na vloženie widgetu do svojej aplikácie.\",\"QuhVpV\":[\"Ahoj \",[\"0\"],\" 👋\"],\"Ow9Hz5\":[\"Hi.Events Conference \",[\"0\"]],\"verBst\":\"Hi.Events Conference Center\",\"6eMEQO\":\"hi.events logo\",\"C4qOW8\":\"Skryté pred verejnosťou\",\"gt3Xw9\":\"hidden question\",\"g3rqFe\":\"hidden questions\",\"k3dfFD\":\"Skryté otázky sú viditeľné iba pre organizátora udalosti, nie pre zákazníka.\",\"vLyv1R\":\"Skryť\",\"Mkkvfd\":\"Hide getting started page\",\"mFn5Xz\":\"Hide hidden questions\",\"YHsF9c\":\"Skryť produkt po dátume ukončenia predaja\",\"06s3w3\":\"Skryť produkt pred dátumom začiatku predaja\",\"axVMjA\":\"Skryť produkt, pokiaľ používateľ nemá platný promo kód\",\"ySQGHV\":\"Skryť produkt po vypredaní\",\"SCimta\":\"Hide the getting started page from the sidebar\",\"5xR17G\":\"Skryť tento produkt pred zákazníkmi\",\"Da29Y6\":\"Skryť túto otázku\",\"fvDQhr\":\"Skryť túto úroveň pred používateľmi\",\"lNipG+\":\"Skrytie produktu zabráni používateľom vidieť ho na stránke udalosti.\",\"ZOBwQn\":\"Dizajn domovskej stránky\",\"PRuBTd\":\"Návrhár domovskej stránky\",\"YjVNGZ\":\"Náhľad domovskej stránky\",\"c3E/kw\":\"Homer\",\"8k8Njd\":\"Koľko minút má zákazník na dokončenie objednávky. Odporúčame aspoň 15 minút\",\"ySxKZe\":\"Koľkokrát môže byť tento kód použitý?\",\"dZsDbK\":[\"Prekročený limit HTML znakov: \",[\"htmlLength\"],\"/\",[\"maxLength\"]],\"fYyXCd\":\"https://example-maps-service.com/...\",\"uOXLV3\":\"Súhlasím s <0>podmienkami a ustanoveniami\",\"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\":\"Ak je povolené, personál odbavenia môže označiť účastníkov ako odbavených alebo označiť objednávku ako zaplatenú a odbavenie. Ak je zakázané, účastníci spojení s nezaplatenými objednávkami nemôžu byť odbavení.\",\"muXhGi\":\"Ak je povolené, organizátor dostane e-mailovú notifikáciu pri novej objednávke\",\"6fLyj/\":\"Ak ste túto zmenu nepožadovali, okamžite zmeňte heslo.\",\"n/ZDCz\":\"Obrázok bol úspešne odstránený\",\"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\":\"Obrázok bol úspešne nahraný\",\"VyUuZb\":\"URL obrázka\",\"ibi52/\":\"Image width must be at least 900px and height at least 50px\",\"NoNwIX\":\"Neaktívne\",\"T0K0yl\":\"Neaktívni používatelia sa nemôžu prihlásiť.\",\"kO44sp\":\"Zahrňte podrobnosti o pripojení pre vašu online udalosť. Tieto podrobnosti sa zobrazia na stránke súhrnu objednávky a stránke lístka účastníka.\",\"FlQKnG\":\"Zahrnúť dane a poplatky do ceny\",\"Vi+BiW\":[\"Obsahuje \",[\"0\"],\" produktov\"],\"lpm0+y\":\"Obsahuje 1 produkt\",\"UiAk5P\":\"Vložiť obrázok\",\"OyLdaz\":\"Pozvánka znovu odoslaná!\",\"HE6KcK\":\"Pozvánka odvolaná!\",\"SQKPvQ\":\"Pozvať používateľa\",\"bKOYkd\":\"Faktúra bola úspešne stiahnutá\",\"alD1+n\":\"Poznámky k faktúre\",\"kOtCs2\":\"Číslovanie faktúr\",\"UZ2GSZ\":\"Nastavenia faktúry\",\"PgdQrx\":\"Issue refund\",\"HX5SVx\":\"Položka\",\"KFXip/\":\"Ján\",\"XcgRvb\":\"Novák\",\"87a/t/\":\"Popis\",\"vXIe7J\":\"Jazyk\",\"2LMsOq\":\"Posledných 12 mesiacov\",\"vfe90m\":\"Posledných 14 dní\",\"aK4uBd\":\"Posledných 24 hodín\",\"uq2BmQ\":\"Posledných 30 dní\",\"bB6Ram\":\"Posledných 48 hodín\",\"VlnB7s\":\"Posledných 6 mesiacov\",\"ct2SYD\":\"Posledných 7 dní\",\"XgOuA7\":\"Posledných 90 dní\",\"I3yitW\":\"Posledné prihlásenie\",\"1ZaQUH\":\"Priezvisko\",\"UXBCwc\":\"Priezvisko\",\"tKCBU0\":\"Naposledy použité\",\"tITjB1\":\"Learn more about Stripe\",\"enV0g0\":\"Nechajte prázdne pre použitie predvoleného slova \\\"Faktúra\\\"\",\"vR92Yn\":\"Let's get started by creating your first organizer\",\"Z3FXyt\":\"Načítavanie...\",\"wJijgU\":\"Miesto\",\"sQia9P\":\"Prihlásiť sa\",\"zUDyah\":\"Prihlasovanie\",\"z0t9bb\":\"Login\",\"nOhz3x\":\"Odhlásiť sa\",\"F2jAFv\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nam placerat elementum...\",\"NJahlc\":\"Urobiť fakturačnú adresu povinnou počas pokladne\",\"MU3ijv\":\"Urobiť túto otázku povinnou\",\"wckWOP\":\"Spravovať\",\"onpJrA\":\"Spravovať účastníka\",\"n4SpU5\":\"Spravovať udalosť\",\"WVgSTy\":\"Spravovať objednávku\",\"1MAvUY\":\"Spravovať nastavenia platby a fakturácie pre túto udalosť.\",\"cQrNR3\":\"Spravovať profil\",\"AtXtSw\":\"Spravovať dane a poplatky, ktoré možno uplatniť na vaše produkty\",\"ophZVW\":\"Spravovať lístky\",\"DdHfeW\":\"Spravovať podrobnosti účtu a predvolené nastavenia\",\"S+UjNL\":\"Manage your Stripe payment details\",\"BfucwY\":\"Spravovať používateľov a ich oprávnenia\",\"1m+YT2\":\"Povinné otázky musia byť zodpovedané pred dokončením pokladne.\",\"Dim4LO\":\"Manuálne pridať účastníka\",\"e4KdjJ\":\"Manuálne pridať účastníka\",\"vFjEnF\":\"Označiť ako zaplatené\",\"g9dPPQ\":\"Maximum na objednávku\",\"l5OcwO\":\"Správa účastníkovi\",\"Gv5AMu\":\"Správa účastníkom\",\"oUCR3c\":\"Message attendees with specific products\",\"Lvi+gV\":\"Správa kupujúcemu\",\"tNZzFb\":\"Obsah správy\",\"lYDV/s\":\"Správa jednotlivým účastníkom\",\"V7DYWd\":\"Správa odoslaná\",\"t7TeQU\":\"Správy\",\"xFRMlO\":\"Minimum na objednávku\",\"QYcUEf\":\"Minimálna cena\",\"RDie0n\":\"Rôzne\",\"mYLhkl\":\"Rôzne nastavenia\",\"KYveV8\":\"Viacriadkové textové pole\",\"VD0iA7\":\"Viacero cenových možností. Ideálne pre produkty so skorým vtáčikom atď.\",\"/bhMdO\":\"Popis mojej úžasnej udalosti...\",\"vX8/tc\":\"Názov mojej úžasnej udalosti...\",\"hKtWk2\":\"Môj profil\",\"fj5byd\":\"N/A\",\"pRjx4L\":\"Nam placerat elementum...\",\"6YtxFj\":\"Meno\",\"hVuv90\":\"Name should be less than 150 characters\",\"AIUkyF\":\"Prejsť na účastníka\",\"qqeAJM\":\"Nikdy\",\"7vhWI8\":\"Nové heslo\",\"1UzENP\":\"Nie\",\"eRblWH\":[\"No \",[\"0\"],\" available.\"],\"LNWHXb\":\"Žiadne archivované udalosti na zobrazenie.\",\"q2LEDV\":\"Pre túto objednávku neboli nájdení žiadni účastníci.\",\"zlHa5R\":\"No attendees have been added to this order.\",\"Wjz5KP\":\"Žiadni účastníci na zobrazenie\",\"Razen5\":\"No attendees will be able to check in before this date using this list\",\"XUfgCI\":\"Žiadne priradenia kapacity\",\"a/gMx2\":\"Žiadne zoznamy odbavení\",\"tMFDem\":\"Žiadne dostupné dáta\",\"6Z/F61\":\"Žiadne dáta na zobrazenie. Vyberte rozsah dátumov.\",\"fFeCKc\":\"Žiadna zľava\",\"HFucK5\":\"Žiadne ukončené udalosti na zobrazenie.\",\"yAlJXG\":\"Žiadne udalosti na zobrazenie\",\"GqvPcv\":\"Žiadne dostupné filtre\",\"KPWxKD\":\"Žiadne správy na zobrazenie\",\"J2LkP8\":\"Žiadne objednávky na zobrazenie\",\"RBXXtB\":\"Momentálne nie sú dostupné žiadne platobné metódy. Kontaktujte organizátora udalosti.\",\"ZWEfBE\":\"Platba nie je potrebná\",\"ZPoHOn\":\"No product associated with this attendee.\",\"Ya1JhR\":\"V tejto kategórii nie sú dostupné žiadne produkty.\",\"FTfObB\":\"Zatiaľ žiadne produkty\",\"+Y976X\":\"Žiadne promo kódy na zobrazenie\",\"MAavyl\":\"No questions answered by this attendee.\",\"SnlQeq\":\"No questions have been asked for this order.\",\"Ev2r9A\":\"Žiadne výsledky\",\"gk5uwN\":\"Žiadne výsledky vyhľadávania\",\"RHyZUL\":\"Žiadne výsledky vyhľadávania.\",\"RY2eP1\":\"Neboli pridané žiadne dane ani poplatky.\",\"EdQY6l\":\"Žiadne\",\"OJx3wK\":\"Nie je dostupné\",\"Scbrsn\":\"Not On Sale\",\"1DBGsz\":\"Poznámky\",\"jtrY3S\":\"Zatiaľ nič na zobrazenie\",\"hFwWnI\":\"Nastavenia notifikácií\",\"xXqEPO\":\"Notify buyer of refund\",\"YpN29s\":\"Notifikovať organizátora o nových objednávkach\",\"qeQhNj\":\"Now let's create your first event\",\"omyBS0\":\"Počet dní povolených na platbu (nechajte prázdne pre vynechanie platobných podmienok z faktúr)\",\"n86jmj\":\"Predpona čísla\",\"mwe+2z\":\"Offline objednávky sa neodrážajú v štatistikách udalosti, kým nie sú označené ako zaplatené.\",\"dWBrJX\":\"Offline platba zlyhala. Skúste to znovu alebo kontaktujte organizátora udalosti.\",\"fcnqjw\":\"Pokyny pre offline platbu\",\"+eZ7dp\":\"Offline platby\",\"ojDQlR\":\"Informácie o offline platbách\",\"u5oO/W\":\"Nastavenia offline platieb\",\"2NPDz1\":\"On sale\",\"Ldu/RI\":\"V predaji\",\"Ug4SfW\":\"Po vytvorení udalosti ju uvidíte tu.\",\"ZxnK5C\":\"Po začatí zberu dát ich uvidíte tu.\",\"PnSzEc\":\"Once you're ready, set your event live and start selling products.\",\"J6n7sl\":\"Prebiehajúce\",\"z+nuVJ\":\"Online event\",\"WKHW0N\":\"Podrobnosti online udalosti\",\"/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\":\"Otvoriť stránku odbavenia\",\"OdnLE4\":\"Otvoriť bočný panel\",\"ZZEYpT\":[\"Možnosť \",[\"i\"]],\"oPknTP\":\"Voliteľné ďalšie informácie na všetkých faktúrach (napr. platobné podmienky, poplatky za oneskorenie, reklamačná politika)\",\"OrXJBY\":\"Voliteľná predpona pre čísla faktúr (napr. INV-)\",\"0zpgxV\":\"Možnosti\",\"BzEFor\":\"alebo\",\"UYUgdb\":\"Objednávka\",\"mm+eaX\":\"Order #\",\"B3gPuX\":\"Objednávka zrušená\",\"SIbded\":\"Order Completed\",\"q/CcwE\":\"Dátum objednávky\",\"Tol4BF\":\"Podrobnosti objednávky\",\"WbImlQ\":\"Objednávka bola zrušená a vlastník objednávky bol informovaný.\",\"nAn4Oe\":\"Objednávka označená ako zaplatená\",\"uzEfRz\":\"Order Notes\",\"VCOi7U\":\"Order questions\",\"TPoYsF\":\"Referencia objednávky\",\"acIJ41\":\"Stav objednávky\",\"GX6dZv\":\"Súhrn objednávky\",\"tDTq0D\":\"Časový limit objednávky\",\"1h+RBg\":\"Objednávky\",\"3y+V4p\":\"Adresa organizácie\",\"GVcaW6\":\"Podrobnosti organizácie\",\"nfnm9D\":\"Názov organizácie\",\"G5RhpL\":\"Organizátor\",\"mYygCM\":\"Organizátor je povinný\",\"Pa6G7v\":\"Meno organizátora\",\"l894xP\":\"Organizátori môžu spravovať iba udalosti a produkty. Nemôžu spravovať používateľov, nastavenia účtu ani fakturačné informácie.\",\"fdjq4c\":\"Odsadenie\",\"ErggF8\":\"Page background color\",\"8F1i42\":\"Stránka nenájdená\",\"QbrUIo\":\"Zobrazenia stránky\",\"6D8ePg\":\"page.\",\"IkGIz8\":\"zaplatené\",\"HVW65c\":\"Platený produkt\",\"ZfxaB4\":\"Čiastočne vrátené\",\"8ZsakT\":\"Heslo\",\"TUJAyx\":\"Heslo musí mať minimálne 8 znakov\",\"vwGkYB\":\"Heslo musí mať aspoň 8 znakov\",\"BLTZ42\":\"Heslo bolo úspešne obnovené. Prihláste sa novým heslom.\",\"f7SUun\":\"Heslá sa nezhodujú\",\"aEDp5C\":\"Vložte toto tam, kde chcete zobraziť widget.\",\"+23bI/\":\"Patrik\",\"iAS9f2\":\"patrik@acme.com\",\"621rYf\":\"Platba\",\"Lg+ewC\":\"Platba a fakturácia\",\"DZjk8u\":\"Nastavenia platby a fakturácie\",\"lflimf\":\"Lehota splatnosti\",\"JhtZAK\":\"Platba zlyhala\",\"JEdsvQ\":\"Pokyny k platbe\",\"bLB3MJ\":\"Spôsoby platby\",\"QzmQBG\":\"Poskytovateľ platby\",\"lsxOPC\":\"Platba prijatá\",\"wJTzyi\":\"Stav platby\",\"xgav5v\":\"Platba prebehla úspešne!\",\"R29lO5\":\"Platobné podmienky\",\"/roQKz\":\"Percentuálne\",\"vPJ1FI\":\"Percentuálna suma\",\"xdA9ud\":\"Umiestnite toto do sekcie vašej webovej stránky.\",\"blK94r\":\"Pridajte aspoň jednu možnosť\",\"FJ9Yat\":\"Skontrolujte, či sú zadané informácie správne\",\"TkQVup\":\"Skontrolujte e-mail a heslo a skúste znovu\",\"sMiGXD\":\"Skontrolujte, či je váš e-mail platný\",\"Ajavq0\":\"Skontrolujte e-mail na potvrdenie e-mailovej adresy\",\"MdfrBE\":\"Please complete the form below to accept your invitation\",\"b1Jvg+\":\"Pokračujte na novej karte\",\"hcX103\":\"Vytvorte produkt\",\"cdR8d6\":\"Vytvorte lístok\",\"x2mjl4\":\"Zadajte platnú URL adresu obrázka.\",\"HnNept\":\"Please enter your new password\",\"5FSIzj\":\"Upozornenie\",\"C63rRe\":\"Vráťte sa na stránku udalosti a začnite odznova.\",\"pJLvdS\":\"Please select\",\"Ewir4O\":\"Vyberte aspoň jeden produkt\",\"igBrCH\":\"Overte svoju e-mailovú adresu pre prístup ku všetkým funkciám\",\"/IzmnP\":\"Čakajte, pripravujeme faktúru...\",\"MOERNx\":\"Portugalčina\",\"qCJyMx\":\"Správa po pokladni\",\"g2UNkE\":\"Poháňané\",\"Rs7IQv\":\"Správa pred pokladňou\",\"rdUucN\":\"Náhľad\",\"a7u1N9\":\"Cena\",\"CmoB9j\":\"Režim zobrazenia ceny\",\"BI7D9d\":\"Cena nie je nastavená\",\"Q8PWaJ\":\"Price tiers\",\"q6XHL1\":\"Typ ceny\",\"6RmHKN\":\"Primárna farba\",\"G/ZwV1\":\"Primary Colour\",\"8cBtvm\":\"Primárna farba textu\",\"BZz12Q\":\"Print\",\"MT7dxz\":\"Vytlačiť všetky lístky\",\"DKwDdj\":\"Vytlačiť lístky\",\"K47k8R\":\"Produkt\",\"1JwlHk\":\"Kategória produktu\",\"U61sAj\":\"Kategória produktu bola úspešne aktualizovaná.\",\"1USFWA\":\"Produkt bol úspešne odstránený\",\"4Y2FZT\":\"Typ ceny produktu\",\"mFwX0d\":\"Product questions\",\"Lu+kBU\":\"Predaj produktov\",\"U/R4Ng\":\"Cenová úroveň produktu\",\"sJsr1h\":\"Typ produktu\",\"o1zPwM\":\"Product Widget Preview\",\"ktyvbu\":\"Produkt(y)\",\"N0qXpE\":\"Produkty\",\"ggqAiw\":\"products sold\",\"Vla0Bo\":\"Predané produkty\",\"/u4DIx\":\"Predané produkty\",\"DJQEZc\":\"Produkty boli úspešne zoradené\",\"vERlcd\":\"Profil\",\"kUlL8W\":\"Profil bol úspešne aktualizovaný\",\"cl5WYc\":[\"Promo kód \",[\"promo_code\"],\" bol uplatnený\"],\"P5sgAk\":\"Promo kód\",\"yKWfjC\":\"Stránka promo kódu\",\"RVb8Fo\":\"Promo kódy\",\"BZ9GWa\":\"Promo kódy možno použiť na ponúkanie zliav, predpredajný prístup alebo špeciálny prístup k vašej udalosti.\",\"OP094m\":\"Správa o promo kódoch\",\"4kyDD5\":\"Poskytnite ďalší kontext alebo pokyny pre túto otázku. Toto pole použite na pridanie podmienok,\\nusmernení alebo dôležitých informácií, ktoré účastníci potrebujú vedieť pred zodpovedaním.\",\"toutGW\":\"QR kód\",\"LkMOWF\":\"Dostupné množstvo\",\"oCLG0M\":\"Quantity Sold\",\"XKJuAX\":\"Otázka odstránená\",\"avf0gk\":\"Popis otázky\",\"oQvMPn\":\"Názov otázky\",\"enzGAL\":\"Otázky\",\"ROv2ZT\":\"Otázky a odpovede\",\"K885Eq\":\"Questions sorted successfully\",\"OMJ035\":\"Prepínač\",\"C4TjpG\":\"Read less\",\"I3QpvQ\":\"Príjemca\",\"N2C89m\":\"Reference\",\"gxFu7d\":[\"Refund amount (\",[\"0\"],\")\"],\"WZbCR3\":\"Vrátenie zlyhalo\",\"n10yGu\":\"Vrátiť objednávku\",\"zPH6gp\":\"Refund Order\",\"RpwiYC\":\"Vrátenie čaká\",\"xHpVRl\":\"Stav vrátenia\",\"/BI0y9\":\"Vrátené\",\"fgLNSM\":\"Registrovať\",\"9+8Vez\":\"Zostatok použití\",\"tasfos\":\"odstrániť\",\"t/YqKh\":\"Odstrániť\",\"t9yxlZ\":\"Reporty\",\"prZGMe\":\"Vyžadovať fakturačnú adresu\",\"EGm34e\":\"Resend confirmation email\",\"lnrkNz\":\"Znovu odoslať potvrdenie e-mailu\",\"wIa8Qe\":\"Znovu odoslať pozvánku\",\"VeKsnD\":\"Znovu odoslať e-mail objednávky\",\"dFuEhO\":\"Znovu odoslať e-mail s lístkom\",\"o6+Y6d\":\"Opätovné odosielanie...\",\"OfhWJH\":\"Obnoviť\",\"RfwZxd\":\"Obnoviť heslo\",\"KbS2K9\":\"Reset Password\",\"e99fHm\":\"Obnoviť udalosť\",\"vtc20Z\":\"Return to event page\",\"s8v9hq\":\"Vrátiť sa na stránku udalosti\",\"8YBH95\":\"Príjmy\",\"PO/sOY\":\"Odvolať pozvánku\",\"GDvlUT\":\"Rola\",\"ELa4O9\":\"Dátum ukončenia predaja\",\"5uo5eP\":\"Sale ended\",\"Qm5XkZ\":\"Dátum začiatku predaja\",\"hBsw5C\":\"Predaj skončil\",\"kpAzPe\":\"Začiatok predaja\",\"P/wEOX\":\"San Francisco\",\"tfDRzk\":\"Uložiť\",\"IUwGEM\":\"Uložiť zmeny\",\"U65fiW\":\"Uložiť organizátora\",\"UGT5vp\":\"Uložiť nastavenia\",\"ovB7m2\":\"Scan QR Code\",\"EEU0+z\":\"Scan this QR code to access the event page or share it with others\",\"W4kWXJ\":\"Vyhľadávať podľa mena účastníka, e-mailu alebo č. objednávky...\",\"+pr/FY\":\"Vyhľadávať podľa názvu udalosti...\",\"3zRbWw\":\"Vyhľadávať podľa mena, e-mailu alebo č. objednávky...\",\"L22Tdf\":\"Search by name, order #, attendee # or email...\",\"BiYOdA\":\"Vyhľadávať podľa mena...\",\"YEjitp\":\"Search by subject or content...\",\"Pjsch9\":\"Vyhľadávať priradenia kapacity...\",\"r9M1hc\":\"Vyhľadávať zoznamy odbavení...\",\"+0Yy2U\":\"Vyhľadávať produkty\",\"YIix5Y\":\"Vyhľadávať...\",\"OeW+DS\":\"Secondary color\",\"DnXcDK\":\"Sekundárna farba\",\"cZF6em\":\"Secondary text color\",\"ZIgYeg\":\"Sekundárna farba textu\",\"02ePaq\":[\"Vybrať \",[\"0\"]],\"QuNKRX\":\"Select Camera\",\"9FQEn8\":\"Vybrať kategóriu...\",\"kWI/37\":\"Vybrať organizátora\",\"ixIx1f\":\"Vybrať produkt\",\"3oSV95\":\"Vybrať cenovú úroveň produktu\",\"C4Y1hA\":\"Vybrať produkty\",\"hAjDQy\":\"Vybrať stav\",\"QYARw/\":\"Vybrať lístok\",\"OMX4tH\":\"Vybrať lístky\",\"DrwwNd\":\"Vybrať časové obdobie\",\"O/7I0o\":\"Vybrať...\",\"JlFcis\":\"Odoslať\",\"qKWv5N\":[\"Send a copy to <0>\",[\"0\"],\"\"],\"RktTWf\":\"Odoslať správu\",\"/mQ/tD\":\"Send as a test. This will send the message to your email address instead of the recipients.\",\"M/WIer\":\"Odoslať správu\",\"D7ZemV\":\"Odoslať potvrdenie objednávky a e-mail s lístkom\",\"v1rRtW\":\"Odoslať test\",\"4Ml90q\":\"SEO\",\"j1VfcT\":\"SEO popis\",\"/SIY6o\":\"SEO kľúčové slová\",\"GfWoKv\":\"SEO nastavenia\",\"rXngLf\":\"SEO názov\",\"/jZOZa\":\"Servisný poplatok\",\"Bj/QGQ\":\"Nastavte minimálnu cenu a nechajte používateľov zaplatiť viac, ak chcú\",\"L0pJmz\":\"Nastavte počiatočné číslo pre číslovanie faktúr. Toto nie je možné zmeniť po vygenerovaní faktúr.\",\"nYNT+5\":\"Set up your event\",\"A8iqfq\":\"Set your event live\",\"Tz0i8g\":\"Nastavenia\",\"Z8lGw6\":\"Zdieľať\",\"B2V3cA\":\"Zdieľať udalosť\",\"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\":\"Zobraziť dostupné množstvo produktu\",\"qDsmzu\":\"Show hidden questions\",\"fMPkxb\":\"Zobraziť viac\",\"izwOOD\":\"Zobraziť dane a poplatky samostatne\",\"1SbbH8\":\"Zobrazené zákazníkovi po pokladni na stránke súhrnu objednávky.\",\"YfHZv0\":\"Zobrazené zákazníkovi pred pokladňou\",\"CBBcly\":\"Zobrazuje bežné polia adresy vrátane krajiny\",\"yTnnYg\":\"Novák\",\"TNaCfq\":\"Jednoriadkové textové pole\",\"+P0Cn2\":\"Preskočiť tento krok\",\"YSEnLE\":\"Kováč\",\"lgFfeO\":\"Vypredané\",\"Mi1rVn\":\"Vypredané\",\"nwtY4N\":\"Niečo sa pokazilo\",\"GRChTw\":\"Niečo sa pokazilo pri odstraňovaní dane alebo poplatku\",\"YHFrbe\":\"Niečo sa pokazilo! Skúste to znovu\",\"kf83Ld\":\"Niečo sa pokazilo.\",\"fWsBTs\":\"Niečo sa pokazilo. Skúste to znovu.\",\"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\":\"Ľutujeme, tento promo kód nie je rozpoznaný\",\"65A04M\":\"Španielčina\",\"mFuBqb\":\"Štandardný produkt s pevnou cenou\",\"D3iCkb\":\"Dátum začiatku\",\"/2by1f\":\"Štát alebo región\",\"uAQUqI\":\"Stav\",\"4HXezG\":\"Stripe\",\"WbopAG\":\"Platby Stripe nie sú pre túto udalosť povolené.\",\"UJmAAK\":\"Predmet\",\"X2rrlw\":\"Medzisúčet\",\"zzDlyQ\":\"Úspech\",\"b0HJ45\":[\"Úspech! \",[\"0\"],\" čoskoro dostane e-mail.\"],\"BJIEiF\":[\"Účastník bol úspešne \",[\"0\"]],\"OtgNFx\":\"E-mailová adresa bola úspešne potvrdená\",\"IKwyaF\":\"Zmena e-mailu bola úspešne potvrdená\",\"zLmvhE\":\"Účastník bol úspešne vytvorený\",\"gP22tw\":\"Produkt bol úspešne vytvorený\",\"9mZEgt\":\"Promo kód bol úspešne vytvorený\",\"aIA9C4\":\"Otázka bola úspešne vytvorená\",\"J3RJSZ\":\"Účastník bol úspešne aktualizovaný\",\"3suLF0\":\"Priradenie kapacity bolo úspešne aktualizované\",\"Z+rnth\":\"Zoznam odbavení bol úspešne aktualizovaný\",\"vzJenu\":\"Nastavenia e-mailu boli úspešne aktualizované\",\"7kOMfV\":\"Udalosť bola úspešne aktualizovaná\",\"G0KW+e\":\"Dizajn domovskej stránky bol úspešne aktualizovaný\",\"k9m6/E\":\"Nastavenia domovskej stránky boli úspešne aktualizované\",\"y/NR6s\":\"Miesto bolo úspešne aktualizované\",\"73nxDO\":\"Rôzne nastavenia boli úspešne aktualizované\",\"4H80qv\":\"Objednávka bola úspešne aktualizovaná\",\"6xCBVN\":\"Nastavenia platby a fakturácie boli úspešne aktualizované\",\"1Ycaad\":\"Produkt bol úspešne aktualizovaný\",\"70dYC8\":\"Promo kód bol úspešne aktualizovaný\",\"F+pJnL\":\"SEO nastavenia boli úspešne aktualizované\",\"DXZRk5\":\"Suite 100\",\"GNcfRk\":\"E-mail podpory\",\"uRfugr\":\"Tričko\",\"JpohL9\":\"Daň\",\"geUFpZ\":\"Dane a poplatky\",\"dFHcIn\":\"Podrobnosti dane\",\"wQzCPX\":\"Daňové informácie na spodku všetkých faktúr (napr. číslo DPH, daňová registrácia)\",\"0RXCDo\":\"Daň alebo poplatok bol úspešne odstránený\",\"ZowkxF\":\"Dane\",\"qu6/03\":\"Dane a poplatky\",\"gypigA\":\"Tento promo kód je neplatný\",\"5ShqeM\":\"Zoznam odbavení, ktorý hľadáte, neexistuje.\",\"QXlz+n\":\"Predvolená mena pre vaše udalosti.\",\"mnafgQ\":\"Predvolené časové pásmo pre vaše udalosti.\",\"o7s5FA\":\"Jazyk, v ktorom bude účastník dostávať e-maily.\",\"NlfnUd\":\"Odkaz, na ktorý ste klikli, je neplatný.\",\"HsFnrk\":[\"Maximálny počet produktov pre \",[\"0\"],\" je \",[\"1\"]],\"TSAiPM\":\"Stránka, ktorú hľadáte, neexistuje\",\"MSmKHn\":\"Cena zobrazená zákazníkovi bude zahŕňať dane a poplatky.\",\"6zQOg1\":\"Cena zobrazená zákazníkovi nebude zahŕňať dane a poplatky. Zobrazia sa samostatne\",\"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\":\"Názov udalosti, ktorý sa zobrazí vo výsledkoch vyhľadávačov a pri zdieľaní na sociálnych sieťach. Predvolene sa použije názov udalosti\",\"wDx3FF\":\"Pre túto udalosť nie sú dostupné žiadne produkty\",\"pNgdBv\":\"V tejto kategórii nie sú dostupné žiadne produkty\",\"rMcHYt\":\"Čaká sa na vrátenie. Počkajte na jeho dokončenie pred ďalším vrátením.\",\"F89D36\":\"Nastala chyba pri označovaní objednávky ako zaplatenej\",\"68Axnm\":\"Nastala chyba pri spracovaní vašej požiadavky. Skúste to znovu.\",\"mVKOW6\":\"Nastala chyba pri odosielaní vašej správy\",\"AhBPHd\":\"These details will only be shown if order is completed successfully. Orders awaiting payment will not show this message.\",\"Pc/Wtj\":\"Tento účastník má nezaplatenú objednávku.\",\"mf3FrP\":\"Táto kategória zatiaľ nemá žiadne produkty.\",\"8QH2Il\":\"Táto kategória je skrytá pred verejnosťou\",\"xxv3BZ\":\"Tento zoznam odbavení vypršal\",\"Sa7w7S\":\"Tento zoznam odbavení vypršal a nie je už dostupný pre odbavenia.\",\"Uicx2U\":\"Tento zoznam odbavení je aktívny\",\"1k0Mp4\":\"Tento zoznam odbavení ešte nie je aktívny\",\"K6fmBI\":\"Tento zoznam odbavení ešte nie je aktívny a nie je dostupný pre odbavenia.\",\"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\":\"Tieto informácie sa zobrazia na platobnej stránke, stránke súhrnu objednávky a v potvrdzovacom e-maile objednávky.\",\"XAHqAg\":\"Toto je všeobecný produkt, ako tričko alebo hrnček. Nebude vydaný žiadny lístok\",\"CNk/ro\":\"Toto je online udalosť\",\"FwXnJd\":\"This list will no longer be available for check-ins after this date\",\"cHO4ec\":\"Táto správa bude zahrnutá v päte všetkých e-mailov odoslaných z tejto udalosti\",\"55i7Fa\":\"Táto správa sa zobrazí iba ak je objednávka úspešne dokončená. Objednávky čakajúce na platbu túto správu nezobrazia\",\"RjwlZt\":\"Táto objednávka už bola zaplatená.\",\"5K8REg\":\"Táto objednávka už bola vrátená.\",\"OiQMhP\":\"This order has been cancelled\",\"YyEJij\":\"Táto objednávka bola zrušená.\",\"Q0zd4P\":\"Táto objednávka vypršala. Začnite znovu.\",\"HILpDX\":\"This order is awaiting payment\",\"BdYtn9\":\"This order is complete\",\"e3uMJH\":\"Táto objednávka je dokončená.\",\"YNKXOK\":\"This order is processing.\",\"yPZN4i\":\"Táto stránka objednávky už nie je dostupná.\",\"i0TtkR\":\"Toto prepíše všetky nastavenia viditeľnosti a skryje produkt pred všetkými zákazníkmi.\",\"cRRc+F\":\"Tento produkt nie je možné odstrániť, pretože je spojený s objednávkou. Namiesto toho ho môžete skryť.\",\"3Kzsk7\":\"Tento produkt je lístok. Kupujúcim bude vydaný lístok pri nákupe\",\"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\":\"Tento odkaz na obnovenie hesla je neplatný alebo vypršal.\",\"IV9xTT\":\"Tento používateľ nie je aktívny, pretože neprijal pozvánku.\",\"5AnPaO\":\"lístok\",\"kjAL4v\":\"Lístok\",\"dtGC3q\":\"E-mail s lístkom bol znovu odoslaný účastníkovi\",\"54q0zp\":\"Lístky pre\",\"xN9AhL\":[\"Úroveň \",[\"0\"]],\"jZj9y9\":\"Stupňovaný produkt\",\"8wITQA\":\"Stupňované produkty umožňujú ponúkať viacero cenových možností pre rovnaký produkt. Ideálne pre produkty so skorým vtáčikom alebo rôzne cenové možnosti pre rôzne skupiny ľudí.\",\"nn3mSR\":\"Zostatok času:\",\"s/0RpH\":\"Počet použití\",\"y55eMd\":\"Počet použití\",\"40Gx0U\":\"Časové pásmo\",\"oDGm7V\":\"TIP\",\"MHrjPM\":\"Title\",\"xdA/+p\":\"Nástroje\",\"72c5Qo\":\"Celkom\",\"YXx+fG\":\"Celkovo pred zľavami\",\"NRWNfv\":\"Celková suma zľavy\",\"BxsfMK\":\"Celkové poplatky\",\"2bR+8v\":\"Celkový hrubý predaj\",\"mpB/d9\":\"Celková suma objednávky\",\"m3FM1g\":\"Celkovo vrátené\",\"jEbkcB\":\"Celkovo vrátené\",\"GBBIy+\":\"Total remaining\",\"/SgoNA\":\"Celková daň\",\"+zy2Nq\":\"Typ\",\"FMdMfZ\":\"Nie je možné odbavenie účastníka\",\"bPWBLL\":\"Nie je možné odhlásenie účastníka\",\"9+P7zk\":\"Nie je možné vytvoriť produkt. Skontrolujte svoje údaje\",\"WLxtFC\":\"Nie je možné vytvoriť produkt. Skontrolujte svoje údaje\",\"/cSMqv\":\"Nie je možné vytvoriť otázku. Skontrolujte svoje údaje\",\"MH/lj8\":\"Nie je možné aktualizovať otázku. Skontrolujte svoje údaje\",\"nnfSdK\":\"Jedinečných zákazníkov\",\"Mqy/Zy\":\"Spojené štáty\",\"NIuIk1\":\"Neobmedzené\",\"/p9Fhq\":\"Neobmedzene dostupné\",\"E0q9qH\":\"Povolené neobmedzené použitia\",\"h10Wm5\":\"Nezaplatená objednávka\",\"ia8YsC\":\"Nadchádzajúce\",\"TlEeFv\":\"Nadchádzajúce udalosti\",\"L/gNNk\":[\"Aktualizovať \",[\"0\"]],\"+qqX74\":\"Aktualizovať názov udalosti, popis a dátumy\",\"vXPSuB\":\"Aktualizovať profil\",\"BNBfrU\":\"Upload Cover\",\"IagCbF\":\"URL\",\"UtDm3q\":\"URL skopírovaná do schránky\",\"e5lF64\":\"Príklad použitia\",\"fiV0xj\":\"Limit použitia\",\"sGEOe4\":\"Použiť rozmazanú verziu obrázka obalu ako pozadie\",\"OadMRm\":\"Použiť obrázok obalu\",\"7PzzBU\":\"Používateľ\",\"yDOdwQ\":\"Správa používateľov\",\"Sxm8rQ\":\"Používatelia\",\"VEsDvU\":\"Používatelia môžu zmeniť e-mail v <0>Nastaveniach profilu\",\"vgwVkd\":\"UTC\",\"khBZkl\":\"DPH\",\"E/9LUk\":\"Názov miesta konania\",\"jpctdh\":\"View\",\"Pte1Hv\":\"Zobraziť podrobnosti účastníka\",\"/5PEQz\":\"Zobraziť stránku udalosti\",\"fFornT\":\"View full message\",\"YIsEhQ\":\"View map\",\"Ep3VfY\":\"Zobraziť na Google Maps\",\"Y8s4f6\":\"View order details\",\"QIWCnW\":\"VIP zoznam odbavení\",\"tF+VVr\":\"VIP lístok\",\"2q/Q7x\":\"Viditeľnosť\",\"vmOFL/\":\"Nepodarilo sa spracovať vašu platbu. Skúste to znovu alebo kontaktujte podporu.\",\"45Srzt\":\"Nepodarilo sa odstrániť kategóriu. Skúste to znovu.\",\"/DNy62\":[\"Nenašli sa žiadne lístky zodpovedajúce \",[\"0\"]],\"1E0vyy\":\"Nepodarilo sa načítať dáta. Skúste to znovu.\",\"NmpGKr\":\"Nepodarilo sa preusporiadať kategórie. Skúste to znovu.\",\"BJtMTd\":\"Odporúčame rozmery 1950px x 650px, pomer 3:1 a maximálnu veľkosť súboru 5 MB\",\"b9UB/w\":\"We use Stripe to process payments. Connect your Stripe account to start receiving payments.\",\"01WH0a\":\"Nepodarilo sa potvrdiť vašu platbu. Skúste to znovu alebo kontaktujte podporu.\",\"Gspam9\":\"Spracovávame vašu objednávku. Čakajte prosím...\",\"LuY52w\":\"Vitajte na palube! Prihláste sa pre pokračovanie.\",\"dVxpp5\":[\"Vitajte späť\",[\"0\"],\" 👋\"],\"NxOVCl\":[\"Welcome to Hi.Events, \",[\"0\"],\" 👋\"],\"xgL50q\":\"Čo sú stupňované produkty?\",\"f1jUC0\":\"What date should this check-in list become active?\",\"4ueloy\":\"Čo je kategória?\",\"gxeWAU\":\"Na ktoré produkty sa tento kód vzťahuje?\",\"hFHnxR\":\"Na ktoré produkty sa tento kód vzťahuje? (Predvolene sa vzťahuje na všetky)\",\"AeejQi\":\"Na ktoré produkty sa má táto kapacita vzťahovať?\",\"Rb0XUE\":\"O koľkej prídete?\",\"5N4wLD\":\"Aký typ otázky je toto?\",\"gyLUYU\":\"Ak je povolené, faktúry budú generované pre objednávky lístkov. Faktúry budú odoslané spolu s potvrdením objednávky. Účastníci si môžu stiahnuť faktúry aj zo stránky potvrdenia objednávky.\",\"D3opg4\":\"Ak sú povolené offline platby, používatelia budú môcť dokončiť objednávky a dostať lístky. Ich lístky budú jasne uvádzať, že objednávka nie je zaplatená, a nástroj odbavenia upozorní personál odbavenia, ak objednávka vyžaduje platbu.\",\"D7C6XV\":\"When should this check-in list expire?\",\"FVetkT\":\"Ktoré lístky majú byť spojené s týmto zoznamom odbavení?\",\"S+OdxP\":\"Kto organizuje túto udalosť?\",\"LINr2M\":\"Who is this message to?\",\"nWhye/\":\"Komu má byť táto otázka položená?\",\"VxFvXQ\":\"Vloženie widgetu\",\"v1P7Gm\":\"Nastavenia widgetu\",\"b4itZn\":\"Pracuje\",\"hqmXmc\":\"Pracuje...\",\"+G/XiQ\":\"Od začiatku roka\",\"l75CjT\":\"Áno\",\"QcwyCh\":\"Áno, odstrániť ich\",\"ySeBKv\":\"You already scanned this ticket\",\"P+Sty0\":[\"Meníte e-mail na <0>\",[\"0\"],\".\"],\"gGhBmF\":\"Ste offline\",\"sdB7+6\":\"Môžete vytvoriť promo kód, ktorý cieli na tento produkt na\",\"KRhIxT\":\"You can now start receiving payments through Stripe.\",\"Gnjf3o\":\"Nemôžete zmeniť typ produktu, pretože s týmto produktom sú spojení účastníci.\",\"S+on7c\":\"You cannot check in attendees with unpaid orders.\",\"yNi4PV\":\"Nemôžete odbavovať účastníkov s nezaplatenými objednávkami. Toto nastavenie môžete zmeniť v nastaveniach udalosti.\",\"c9Evkd\":\"Nemôžete odstrániť poslednú kategóriu.\",\"6uwAvx\":\"Nemôžete odstrániť túto cenovú úroveň, pretože pre ňu už boli predané produkty. Namiesto toho ju môžete skryť.\",\"tFbRKJ\":\"Nemôžete upraviť rolu ani stav vlastníka účtu.\",\"fHfiEo\":\"Nemôžete vrátiť manuálne vytvorenú objednávku.\",\"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\":\"Máte prístup k viacerým účtom. Vyberte jeden pre pokračovanie.\",\"Z6q0Vl\":\"Túto pozvánku ste už prijali. Prihláste sa pre pokračovanie.\",\"rdk1xK\":\"You have connected your Stripe account\",\"ofEncr\":\"You have no attendee questions.\",\"CoZHDB\":\"You have no order questions.\",\"15qAvl\":\"Nemáte žiadnu čakajúcu zmenu e-mailu.\",\"n81Qk8\":\"You have not completed your Stripe Connect setup\",\"jxsiqJ\":\"You have not connected your Stripe account\",\"+FWjhR\":\"Vypršal vám čas na dokončenie objednávky.\",\"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\":\"Musíte potvrdiť, že tento e-mail nie je propagačný\",\"3ZI8IL\":\"Musíte súhlasiť s podmienkami a ustanoveniami\",\"dMd3Uf\":\"You must confirm your email address before your event can go live.\",\"H35u3n\":\"Pred manuálnym pridaním účastníka musíte vytvoriť lístok.\",\"jE4Z8R\":\"Musíte mať aspoň jednu cenovú úroveň\",\"8/eLoa\":\"You need to verify your account before you can send messages.\",\"Egnj9d\":\"Objednávku budete musieť označiť ako zaplatenú manuálne. Môžete to urobiť na stránke správy objednávky.\",\"L/+xOk\":\"Pred vytvorením zoznamu odbavení potrebujete lístok.\",\"Djl45M\":\"Pred vytvorením priradenia kapacity potrebujete produkt.\",\"y3qNri\":\"Na začiatok potrebujete aspoň jeden produkt. Bezplatný, platený alebo nechajte používateľa rozhodnúť.\",\"9HcibB\":[\"You're going to \",[\"0\"],\"! 🎉\"],\"ROR8QD\":\"Názov vášho účtu sa používa na stránkach udalostí a v e-mailoch.\",\"veessc\":\"Vaši účastníci sa zobrazia tu po registrácii na udalosť. Môžete tiež manuálne pridávať účastníkov.\",\"Eh5Wrd\":\"Vaša skvelá webová stránka 🎉\",\"lkMK2r\":\"Vaše údaje\",\"3ENYTQ\":[\"Vaša žiadosť o zmenu e-mailu na <0>\",[\"0\"],\" čaká. Skontrolujte e-mail na potvrdenie\"],\"yZfBoy\":\"Vaša správa bola odoslaná\",\"KSQ8An\":\"Vaša objednávka\",\"Jwiilf\":\"Vaša objednávka bola zrušená\",\"6UxSgB\":\"Your order is awaiting payment 🏦\",\"7YJdgG\":\"Vaše objednávky sa zobrazia tu, keď začnú prichádzať.\",\"9TO8nT\":\"Vaše heslo\",\"P8hBau\":\"Vaša platba sa spracováva.\",\"UdY1lL\":\"Vaša platba nebola úspešná, skúste to znovu.\",\"fzuM26\":\"Vaša platba bola neúspešná. Skúste to znovu.\",\"cEli2o\":\"Your product for\",\"cJ4Y4R\":\"Vaše vrátenie sa spracováva.\",\"IFHV2p\":\"Váš lístok pre\",\"x1PPdr\":\"PSČ\",\"BM/KQm\":\"PSČ\",\"+LtVBt\":\"PSČ\",\"25QDJ1\":\"- Kliknite pre zverejnenie\",\"WOyJmc\":\"- Kliknite pre zrušenie zverejnenia\",\"ncwQad\":\"(prázdne)\",\"B/gRsg\":\"(none)\",\"xYxQCZ\":[[\"0\"],\" \",[\"1\"]],\"lAOy2r\":[[\"0\"],\" \",[\"1\"],\" je už odbavený\"],\"3beCx0\":[[\"0\"],\" <0>checked in\"],\"S4PqS9\":[[\"0\"],\" aktívnych webhookov\"],\"6MIiOI\":[[\"0\"],\" zostáva\"],\"COnw8D\":[\"logo \",[\"0\"]],\"xG9N0H\":[[\"0\"],\" of \",[\"1\"],\" seats are taken.\"],\"B7pZfX\":[[\"0\"],\" organizátorov\"],\"/HkCs4\":[[\"0\"],\" lístkov\"],\"30bTiU\":[[\"activeCount\"],\" enabled\"],\"jTs4am\":[[\"appName\"],\" logo\"],\"gbJOk9\":[[\"attendeeCount\"],\" attendees are registered for this session.\"],\"TjbIUI\":[[\"availableCount\"],\" z \",[\"totalCount\"],\" dostupných\"],\"PSChHo\":[\"Zostáva \",[\"capacity\"],\" miest\"],\"lzQ8/M\":[[\"checkedIn\"],\" / \",[\"total\"],\" checked in\"],\"RZ0JX3\":[[\"chipTime\"],\", vypredané\"],\"M4KnFs\":[[\"chipTime\"],\", Vypredané, čakacia listina k dispozícii\"],\"SeyN12\":[[\"completedCount\"],\" of \",[\"totalCount\"],\" steps complete\"],\"f2rhaD\":[[\"diffHr\"],\"h ago\"],\"NRSLBe\":[[\"diffMin\"],\"m ago\"],\"iYfwJE\":[[\"diffSec\"],\"s ago\"],\"OJnhhX\":[[\"eventCount\"],\" udalostí\"],\"mhZbzw\":[[\"loadedAffectedAttendees\"],\" attendees are registered across the affected sessions.\"],\"RBuxIl\":[[\"productCount\"],\" ticket types configured\"],\"VFLd0I\":[[\"slotCount\"],\" times available\"],\"3IEF7U\":[[\"totalCount\"],\" typov lístkov\"],\"0cLzoF\":[[\"totalOccurrences\"],\" dates\"],\"AEGc4t\":[[\"totalOccurrences\"],\" sessions across \",[\"0\"],\" dates (\",[\"1\",\"plural\",{\"one\":[\"#\",\" session\"],\"other\":[\"#\",\" sessions\"]}],\" per day)\"],\"zGiMDM\":\"+1 234 567 890\",\"1d6kks\":\"+Daň/Poplatky\",\"B1St2O\":\"<0>Zoznamy odbavení vám pomáhajú spravovať vstup na udalosť podľa dní, oblastí alebo typov lístkov. Môžete prepojiť lístky s konkrétnymi zoznamami, ako sú VIP zóny alebo vstupenky na 1. deň, a zdieľať zabezpečený odkaz na odbavenie so zamestnancami. Nevyžaduje sa žiadny účet. Odbavenie funguje na mobile, počítači alebo tablete pomocou kamery zariadenia alebo HID USB skenera. \",\"v9VSIS\":\"<0>Nastavte jeden celkový limit účasti pre viacero typov lístkov naraz.<1>Napríklad, ak prepojíte lístok <2>Denný vstup a <3>Celý víkend, oba budú čerpať z rovnakej zásoby miest. Po dosiahnutí limitu sa predaj všetkých prepojených lístkov automaticky zastaví.\",\"Il5Uid\":\"<0>Toto je celkové dostupné množstvo za všetky termíny vo vašom rozvrhu spolu — nejde o limit na termín. Ak chcete obmedziť účasť na jednotlivých termínoch, nastavte kapacitu na <1>stránke Rozvrh termínov.\",\"ZnVt5v\":\"<0>Webhooky okamžite upozorňujú externé služby, keď nastanú udalosti, napríklad pridanie nového účastníka do vášho CRM alebo mailing listu pri registrácii.<1>Používajte služby tretích strán ako <2>Zapier, <3>IFTTT alebo <4>Make na vytváranie vlastných pracovných postupov a automatizáciu úloh.\",\"xFTHZ5\":[\"≈ \",[\"0\"],\" pri aktuálnom kurze\"],\"M2DyLc\":\"1 aktívny webhook\",\"6hIk/x\":\"1 attendee is registered across the affected sessions.\",\"qOyE2U\":\"1 attendee is registered for this session.\",\"943BwI\":\"1 deň po dátume konca\",\"yj3N+g\":\"1 deň po dátume začiatku\",\"Z3etYG\":\"1 deň pred udalosťou\",\"szSnlj\":\"1 hodinu pred udalosťou\",\"yTsaLw\":\"1 lístok\",\"nz96Ue\":\"1 typ lístka\",\"InX5ad\":\"1 ticket type configured\",\"y2Jh0m\":\"1 time available\",\"cGtUz6\":\"1 týždeň pred udalosťou\",\"HR/cvw\":\"123 Vzorová ulica\",\"dgKxZ5\":\"135+ currencies & 40+ payment methods\",\"kMU5aM\":\"Oznámenie o zrušení bolo odoslané na\",\"o++0qa\":\"a change in duration\",\"WuWSX5\":\"A few quick steps and you're ready to start selling.\",\"RQ5kDd\":\"Správa, ktorá sa zobrazí, keď v tejto kategórii nie sú žiadne produkty.\",\"V53XzQ\":\"Na váš e-mail bol odoslaný nový overovací kód\",\"sr2Je0\":\"a shift in start/end times\",\"/z/bH1\":\"Krátky popis vášho organizátora, ktorý sa zobrazí používateľom.\",\"aS0jtz\":\"Opustené\",\"uyJsf6\":\"O udalosti\",\"JvuLls\":\"Absorbovať poplatok\",\"lk74+I\":\"Absorbovať poplatok\",\"1uJlG9\":\"Zvýraznená farba\",\"g3UF2V\":\"Prijať\",\"K5+3xg\":\"Prijať pozvánku\",\"jzb4Ep\":[\"Account · \",[\"0\"]],\"UqH1Q6\":[\"Account · \",[\"0\"],\" · \",[\"1\"]],\"vOuxvL\":\"Informácie o účte\",\"EHNORh\":\"Účet nebol nájdený\",\"bPwFdf\":\"Účty\",\"AhwTa1\":\"Vyžaduje sa akcia: Potrebné informácie o DPH\",\"APyAR/\":\"Aktívne udalosti\",\"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\":\"Pridajte vlastné otázky na zber ďalších informácií pri pokladni\",\"Z/dcxc\":\"Add Date\",\"QeupRg\":\"Pridať termíny\",\"Q219NT\":\"Add Dates\",\"yjB5VC\":\"Add dates and times for your recurring event\",\"Z8idyM\":\"Add details\",\"wpirGs\":\"Add event details\",\"VX6WUv\":\"Pridať miesto\",\"GCQlV2\":\"Add multiple times if you run several sessions per day.\",\"7JF9w9\":\"Pridať otázku\",\"NLbIb6\":\"Add this attendee anyway (override capacity)\",\"6PNlRV\":\"Pridajte túto udalosť do kalendára\",\"BGD9Yt\":\"Pridať lístky\",\"uIv4Op\":\"Pridajte sledovacie pixely na verejné stránky udalostí a domovskú stránku organizátora. Keď je sledovanie aktívne, návštevníkom sa zobrazí banner so súhlasom so súbormi cookie.\",\"QN2F+7\":\"Pridať webhook\",\"NsWqSP\":\"Pridajte svoje sociálne médiá a URL webstránky. Tieto sa zobrazia na vašej verejnej stránke organizátora.\",\"bVjDs9\":\"Ďalšie poplatky\",\"MKqSg4\":\"Vyžaduje sa prístup správcu\",\"0Zypnp\":\"Panel správcu\",\"YAV57v\":\"Partner\",\"I+utEq\":\"Kód partnera nie je možné zmeniť\",\"/jHBj5\":\"Partner bol úspešne vytvorený\",\"uCFbG2\":\"Partner bol úspešne vymazaný\",\"ld8I+f\":\"Affiliate program\",\"a41PKA\":\"Predaje partnera budú sledované\",\"mJJh2s\":\"Predaje partnera nebudú sledované. Tým sa partner deaktivuje.\",\"jabmnm\":\"Partner bol úspešne aktualizovaný\",\"CPXP5Z\":\"Partneri\",\"9Wh+ug\":\"Partneri exportovaní\",\"3cqmut\":\"Partneri vám pomáhajú sledovať predaje generované partnermi a influencermi. Vytvorte partnerské kódy a zdieľajte ich na sledovanie výkonu.\",\"3e31kI\":\"After your event is created, you can choose how often it repeats from the dashboard.\",\"z7GAMJ\":\"all\",\"N40H+G\":\"All\",\"7rLTkE\":\"Všetky archivované udalosti\",\"gKq1fa\":\"Všetci účastníci\",\"63gRoO\":\"All attendees of the selected sessions\",\"uWxIoH\":\"All attendees of this occurrence\",\"pMLul+\":\"Všetky meny\",\"sgUdRZ\":\"All dates\",\"e4q4uO\":\"All Dates\",\"ZS/D7f\":\"Všetky ukončené udalosti\",\"QsYjci\":\"Všetky udalosti\",\"31KB8w\":\"Všetky neúspešné úlohy boli vymazané\",\"D2g7C7\":\"Všetky úlohy boli zaradené na opakovanie\",\"B4RFBk\":\"All matching dates\",\"F1/VgK\":\"All occurrences\",\"OpWjMq\":\"All Occurrences\",\"Sxm1lO\":\"Všetky stavy\",\"dr7CWq\":\"Všetky nadchádzajúce udalosti\",\"GpT6Uf\":\"Umožniť účastníkom aktualizovať informácie o lístku (meno, e-mail) cez bezpečný odkaz zaslaný s potvrdením objednávky.\",\"VZdky1\":\"Povoliť kupujúcim skopírovať svoje údaje všetkým účastníkom\",\"F3mW5G\":\"Umožniť zákazníkom pripojiť sa na čakaciu listinu, keď je tento produkt vypredaný\",\"4CMO/q\":\"Umožniť zákazníkom pripojiť sa na čakaciu listinu, keď je tento produkt vypredaný. Zákazníci sa pripájajú na čakaciu listinu pre konkrétny dátum.\",\"c4uJfc\":\"Takmer hotovo! Čakáme na spracovanie vašej platby. Malo by to trvať len niekoľko sekúnd.\",\"ocS8eq\":[\"Už máte účet? <0>\",[\"0\"],\"\"],\"uCuEqI\":\"Already in\",\"/H326L\":\"Už vrátené\",\"USEpOK\":\"Already use Stripe on another organizer? Reuse that connection.\",\"RtxQTF\":\"Tiež zrušiť túto objednávku\",\"jkNgQR\":\"Tiež vrátiť platbu za túto objednávku\",\"xYqsHg\":\"Vždy dostupné\",\"Wvrz79\":\"Zaplatená suma\",\"Zkymb9\":\"E-mail na priradenie k tomuto partnerovi. Partner nebude upozornený.\",\"vRznIT\":\"Pri kontrole stavu exportu nastala chyba.\",\"OPFdAM\":\"Voliteľný popis tejto kategórie, ktorý sa zobrazí na stránke podujatia.\",\"eusccx\":\"Voliteľná správa na zobrazenie na zvýraznenom produkte, napr. \\\"Rýchlo sa predáva 🔥\\\" alebo \\\"Najlepšia hodnota\\\"\",\"5GJuNp\":[\"and \",[\"0\"],\" more...\"],\"QNrkms\":\"Odpoveď bola úspešne aktualizovaná.\",\"+qygei\":\"Answers\",\"GK7Lnt\":\"Answers provided at checkout (e.g. meal choice)\",\"lE8PgT\":\"Any dates you've manually customized will be kept.\",\"jVoYha\":[\"použitý — zľava \",[\"0\"],\" na vašu objednávku\"],\"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\":\"Schváliť správu\",\"naCW6Z\":\"April\",\"B495Gs\":\"Archivovať\",\"5sNliy\":\"Archivovať udalosť\",\"BrwnrJ\":\"Archivovať organizátora\",\"E5eghW\":\"Archivujte túto udalosť, aby bola skrytá pred verejnosťou. Neskôr ju môžete obnoviť.\",\"eqFkeI\":\"Archivujte tohto organizátora. Tým sa archivujú aj všetky udalosti patriace tomuto organizátorovi.\",\"BzcxWv\":\"Archivovaní organizátori\",\"9cQBd6\":\"Naozaj chcete archivovať túto udalosť? Nebude už verejne viditeľná.\",\"Trnl3E\":\"Naozaj chcete archivovať tohto organizátora? Archivujú sa aj všetky udalosti patriace tomuto organizátorovi.\",\"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\":\"Naozaj chcete zrušiť túto naplánovanú správu?\",\"0aVEBY\":\"Naozaj chcete odstrániť všetky neúspešné úlohy?\",\"LchiNd\":\"Naozaj chcete odstrániť tohto partnera? Túto akciu nie je možné vrátiť späť.\",\"vPeW/6\":\"Naozaj chcete odstrániť túto konfiguráciu? Môže to ovplyvniť účty, ktoré ju používajú.\",\"h42Hc/\":\"Are you sure you want to delete this date? This action cannot be undone.\",\"RiF/yT\":\"Are you sure you want to delete this image?\",\"b3+Qku\":\"Are you sure you want to delete this tax or fee? It will no longer be applied to new orders.\",\"JmVITJ\":\"Naozaj chcete odstrániť túto šablónu? Túto akciu nie je možné vrátiť späť a e-maily sa vrátia k predvolenej šablóne.\",\"aLS+A6\":\"Naozaj chcete odstrániť túto šablónu? Túto akciu nie je možné vrátiť späť a e-maily sa vrátia k šablóne organizátora alebo predvolenej šablóne.\",\"5H3Z78\":\"Naozaj chcete odstrániť tento webhook?\",\"147G4h\":\"Naozaj chcete odísť?\",\"VDWChT\":\"Naozaj chcete nastaviť tohto organizátora ako koncept? Stránka organizátora bude skrytá pred verejnosťou.\",\"pWtQJM\":\"Naozaj chcete zverejniť tohto organizátora? Stránka organizátora bude viditeľná pre verejnosť.\",\"EOqL/A\":\"Naozaj chcete ponúknuť miesto tejto osobe? Dostane e-mailovú notifikáciu.\",\"yAXqWW\":\"Are you sure you want to permanently delete this date? This cannot be undone.\",\"WFHOlF\":\"Naozaj chcete zverejniť túto udalosť? Po zverejnení bude viditeľná pre verejnosť.\",\"4TNVdy\":\"Naozaj chcete zverejniť profil tohto organizátora? Po zverejnení bude viditeľný pre verejnosť.\",\"8x0pUg\":\"Naozaj chcete odstrániť tento záznam zo zoznamu čakateľov?\",\"cDtoWq\":[\"Naozaj chcete znovu odoslať potvrdenie objednávky na adresu \",[\"0\"],\"?\"],\"xeIaKw\":[\"Naozaj chcete znovu odoslať lístok na adresu \",[\"0\"],\"?\"],\"BjbocR\":\"Naozaj chcete obnoviť túto udalosť?\",\"7MjfcR\":\"Naozaj chcete obnoviť tohto organizátora?\",\"b7tkGp\":\"Are you sure you want to revoke this invitation?\",\"ExDt3P\":\"Naozaj chcete zrušiť zverejnenie tejto udalosti? Nebude už verejne viditeľná.\",\"5Qmxo/\":\"Naozaj chcete zrušiť zverejnenie profilu tohto organizátora? Nebude už verejne viditeľný.\",\"Uqefyd\":\"Ste registrovaný pre DPH v EÚ?\",\"+QARA4\":\"Umenie\",\"tLf3yJ\":\"Keďže vaša firma sídli v Írsku, na všetky poplatky platformy sa automaticky uplatňuje írska DPH vo výške 23 %.\",\"tMeVa/\":\"Požiadať o meno a e-mail pre každý zakúpený lístok\",\"ui5ln+\":\"Assign a different plan\",\"9Jxliv\":\"Assign plan\",\"xdiER7\":\"Priradená úroveň\",\"F2rX0R\":\"Musí byť vybraný aspoň jeden typ udalosti\",\"Z44eZS\":\"At least one product must stay available for this date. To make the date inaccessible, cancel it from the schedule instead.\",\"BCmibk\":\"Pokusy\",\"6PecK3\":\"Miera účasti a odbavenia naprieč všetkými udalosťami\",\"K2tp3v\":\"attendee\",\"AJ4rvK\":\"Účastník zrušený\",\"qvylEK\":\"Účastník vytvorený\",\"Aspq3b\":\"Zber údajov o účastníkoch\",\"fpb0rX\":\"Údaje účastníka skopírované z objednávky\",\"94aQMU\":\"Informácie o účastníkovi\",\"KkrBiR\":\"Zber informácií o účastníkoch\",\"sjPjOg\":\"Attendee notes\",\"cosfD8\":\"Stav účastníka\",\"D2qlBU\":\"Účastník aktualizovaný\",\"22BOve\":\"Účastník bol úspešne aktualizovaný\",\"x8Vnvf\":\"Lístok účastníka nie je zahrnutý v tomto zozname\",\"/Ywywr\":\"attendees\",\"zLRobu\":\"attendees checked in\",\"k3Tngl\":\"Účastníci exportovaní\",\"UoIRW8\":\"Registrovaní účastníci\",\"5UbY+B\":\"Účastníci s konkrétnym lístkom\",\"4HVzhV\":\"Účastníci:\",\"HVkhy2\":\"Analytika priradenia\",\"dMMjeD\":\"Rozklad priradenia\",\"1oPDuj\":\"Hodnota priradenia\",\"DBHTm/\":\"August\",\"JgREph\":\"Automatická ponuka je povolená\",\"V7Tejz\":\"Automatické spracovanie zoznamu čakateľov\",\"PZ7FTW\":\"Automaticky zistené na základe farby pozadia, ale môže byť prepísané\",\"zlnTuI\":\"Automaticky ponúkať lístky ďalšej osobe, keď sa uvoľní kapacita. Ak je zakázané, môžete manuálne spracovať zoznam čakateľov na stránke Zoznam čakateľov.\",\"csDS2L\":\"Dostupné\",\"Xp+ywP\":\"K dispozícii po dokončení platby\",\"dwDH1K\":[\"Available times on \",[\"dayName\"]],\"clF06r\":\"Dostupné na vrátenie\",\"NB5+UG\":\"Dostupné tokeny\",\"L+wGOG\":\"Awaiting\",\"qcw2OD\":\"Awaiting pay\",\"kNmmvE\":\"Awesome Events Ltd.\",\"TeSaQO\":\"Späť na účty\",\"kYqM1A\":\"Späť na udalosť\",\"s5QRF3\":\"Späť na správy\",\"td/bh+\":\"Späť na správy\",\"nsm7BA\":\"Späť na vyhľadávanie\",\"imjKVx\":\"Bank account connected\",\"D9LTCH\":\"Base Price\",\"hviJef\":\"Based on the global sale period above, not per date\",\"jIPNJG\":\"Základné informácie\",\"UabgBd\":\"Telo správy je povinné\",\"HWXuQK\":\"Uložte si túto stránku do záložiek a spravujte svoju objednávku kedykoľvek.\",\"CUKVDt\":\"Prispôsobte svoje lístky vlastným logom, farbami a správou v päte.\",\"4BZj5p\":\"Built-in fraud protection\",\"cr7kGH\":\"Bulk Edit\",\"1Fbd6n\":\"Bulk Edit Dates\",\"Eq6Tu9\":\"Bulk update failed.\",\"9N+p+g\":\"Firma\",\"SWnN1L\":\"Business address\",\"kQekXw\":\"Business name\",\"bv6RXK\":\"Popis tlačidla\",\"ChDLlO\":\"Text tlačidla\",\"BUe8Wj\":\"Platí kupujúci\",\"qF1qbA\":\"Kupujúci vidia čistú cenu. Poplatok platformy sa odpočíta z vašej výplaty.\",\"dg05rc\":\"Pridaním sledovacích pixelov potvrdzujete, že vy a táto platforma ste spoločnými správcami zhromaždených údajov. Ste zodpovední za zabezpečenie zákonného základu pre toto spracovanie podľa platných zákonov o ochrane súkromia (GDPR, CCPA atď.).\",\"DFqasq\":[\"Pokračovaním súhlasíte s <0>Podmienkami služby \",[\"0\"],\"\"],\"wVSa+U\":\"By day of month\",\"0MnNgi\":\"By day of week\",\"CetOZE\":\"By ticket type\",\"lFdbRS\":\"Obísť poplatky aplikácie\",\"AjVXBS\":\"Calendar\",\"2VLZwd\":\"Tlačidlo výzvy na akciu\",\"rT2cV+\":\"Camera\",\"7hYa9y\":\"Camera permission was denied. <0>Request permission again, or grant this page camera access in your browser settings.\",\"D02dD9\":\"Kampaň\",\"RRPA79\":\"Can't check in\",\"OcVwAd\":[\"Cancel \",[\"count\"],\" date(s)\"],\"H4nE+E\":\"Zrušiť všetky produkty a uvoľniť ich späť do zásoby\",\"Py78q9\":\"Cancel Date\",\"tOXAdc\":\"Zrušením sa zrušia všetci účastníci spojení s touto objednávkou a lístky sa vrátia do dostupnej zásoby.\",\"FPpqc7\":[\"Cancelling \",[\"0\"],\" date(s). This may take a moment to complete.\"],\"01sEfm\":\"Nie je možné odstrániť predvolenú konfiguráciu systému\",\"VsM1HH\":\"Priradenia kapacity\",\"9bIMVF\":\"Capacity management\",\"H7K8og\":\"Capacity must be 0 or greater\",\"nzao08\":\"capacity updates\",\"4cp9NP\":\"Capacity Used\",\"K7tIrx\":\"Kategória\",\"DRK3Bq\":\"Category deleted successfully\",\"o+XJ9D\":\"Zmeniť\",\"kJkjoB\":\"Change duration\",\"J0KExZ\":\"Change the attendee limit\",\"ssospy\":\"Change time\",\"CIHJJf\":\"Zmeniť nastavenia zoznamu čakateľov\",\"B5icLR\":[\"Changed duration for \",[\"count\"],\" date(s)\"],\"Kb+0BT\":\"Charges\",\"2tbLdK\":\"Charitatívna organizácia\",\"BPWGKn\":\"Check in\",\"6uFFoY\":\"Check out\",\"FjAlwK\":[\"Check out this event: \",[\"0\"]],\"v4fiSg\":\"Skontrolujte svoj e-mail\",\"51AsAN\":\"Skontrolujte doručenú poštu! Ak sú s týmto e-mailom spojené lístky, dostanete odkaz na ich zobrazenie.\",\"Y3FYXy\":\"Check-In\",\"udRwQs\":\"Odbavenie vytvorené\",\"F4SRy3\":\"Odbavenie odstránené\",\"as6XfO\":[\"Check-in for \",[\"0\"],\" was undone\"],\"9s/wrQ\":\"Check-in history\",\"Wwztk4\":\"Check-In List\",\"9gPPUY\":\"Zoznam odbavení vytvorený\",\"dwjiJt\":\"Check-in list info\",\"7od0PV\":\"check-in lists\",\"f2vU9t\":\"Zoznamy odbavení\",\"XprdTn\":\"Check-in navigation\",\"5tV1in\":\"Check-in progress\",\"SHJwyq\":\"Miera odbavenia\",\"qCqdg6\":\"Stav odbavenia\",\"cKj6OE\":\"Súhrn odbavení\",\"7B5M35\":\"Odbavenia\",\"VrmydS\":\"Checked in\",\"DM4gBB\":\"Čínština (tradičná)\",\"p8Jvp4\":\"Choose a configuration\",\"ElShBO\":\"Choose a different action\",\"pHEhf+\":\"Vyberte písmo, ktoré zodpovedá vašej značke. Písma sú hosťované cez Bunny Fonts.\",\"Zok1Gx\":\"Choose an organizer\",\"pkk46Q\":\"Vyberte organizátora\",\"Ag32+c\":\"Choose another date\",\"Crr3pG\":\"Vyberte kalendár\",\"Z38ZJu\":\"Vyberte, ako sa dátum podujatia zobrazí na vstupenke\",\"LAW8Vb\":\"Vyberte predvolené nastavenie pre nové udalosti. Toto môže byť prepísané pre jednotlivé udalosti.\",\"pjp2n5\":\"Vyberte, kto platí poplatok platformy. Toto neovplyvňuje ďalšie poplatky nakonfigurované v nastaveniach vášho účtu.\",\"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\":\"Kliknite na zobrazenie poznámok\",\"RG3szS\":\"zavrieť\",\"RWw9Lg\":\"Zavrieť modálne okno\",\"XwdMMg\":\"Kód môže obsahovať iba písmená, číslice, pomlčky a podčiarkovníky\",\"+yMJb7\":\"Kód je povinný\",\"m9SD3V\":\"Kód musí mať aspoň 3 znaky\",\"V1krgP\":\"Kód nesmie mať viac ako 20 znakov\",\"psqIm5\":\"Spolupracujte so svojím tímom na vytváraní skvelých udalostí.\",\"4bUH9i\":\"Zbierať údaje účastníka pre každý zakúpený lístok.\",\"TkfG8v\":\"Zbierať údaje na objednávku\",\"96ryID\":\"Zbierať údaje na lístok\",\"FpsvqB\":\"Farebný režim\",\"jEu4bB\":\"Stĺpce\",\"CWk59I\":\"Komédia\",\"rPA+Gc\":\"Preferencie komunikácie\",\"zFT5rr\":\"complete\",\"bUQMpb\":\"Complete Stripe setup\",\"744BMm\":\"Dokončite objednávku a zabezpečte si lístky. Táto ponuka je časovo obmedzená, neotáľajte.\",\"5YrKW7\":\"Dokončite platbu a zabezpečte si lístky.\",\"xGU92i\":\"Dokončite svoj profil a pridajte sa k tímu.\",\"QOhkyl\":\"Vytvoriť\",\"ih35UP\":\"Konferenčné centrum\",\"ywFj2D\":\"Configuration\",\"WTw0bB\":\"Configuration assigned\",\"X1zdE7\":\"Konfigurácia bola úspešne vytvorená\",\"mLBUMQ\":\"Konfigurácia bola úspešne odstránená\",\"UIENhw\":\"Názvy konfigurácií sú viditeľné pre koncových používateľov. Pevné poplatky budú prevedené na menu objednávky podľa aktuálneho výmenného kurzu.\",\"eeZdaB\":\"Konfigurácia bola úspešne aktualizovaná\",\"3cKoxx\":\"Konfigurácie\",\"8v2LRU\":\"Nakonfigurujte podrobnosti udalosti, miesto, možnosti pokladne a e-mailové notifikácie.\",\"raw09+\":\"Nakonfigurujte spôsob zberu údajov účastníkov počas pokladne\",\"FI60XC\":\"Nakonfigurujte dane a poplatky\",\"av6ukY\":\"Configure which products are available for this occurrence and optionally adjust pricing.\",\"NGXKG/\":\"Potvrdiť e-mailovú adresu\",\"JRQitQ\":\"Potvrdiť nové heslo\",\"Auz0Mz\":\"Potvrďte svoj e-mail pre prístup ku všetkým funkciám.\",\"7+grte\":\"Potvrdzovací e-mail odoslaný! Skontrolujte svoju doručenú poštu.\",\"n/7+7Q\":\"Potvrdenie odoslané na\",\"x3wVFc\":\"Gratulujeme! Vaša udalosť je teraz viditeľná pre verejnosť.\",\"0W2NQP\":\"Connect bank\",\"/K4Vqr\":\"Pripojte Stripe na prijímanie platieb\",\"nQI4H5\":\"Pripojte Stripe pre úpravu e-mailových šablón\",\"LmvZ+E\":\"Pripojte Stripe pre zasielanie správ\",\"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\":\"Pre online podujatia sú povinné údaje o pripojení\",\"jfC/xh\":\"Kontakt\",\"LOFgda\":[\"Kontakt \",[\"0\"]],\"41BQ3k\":\"Kontaktný e-mail\",\"m8WD6t\":\"Pokračovať v nastavení\",\"0GwUT4\":\"Pokračovať na pokladňu\",\"sBV87H\":\"Pokračovať k vytvoreniu udalosti\",\"nKtyYu\":\"Pokračovať na ďalší krok\",\"F3/nus\":\"Pokračovať k platbe\",\"s30OcA\":\"Ovládajte, ako sa dátumy a časy zobrazujú na stránke podujatia\",\"p2FRHj\":\"Kontrolovať spôsob spracovania poplatkov platformy pre túto udalosť\",\"NqfabH\":\"Control who gets in for this date\",\"fmYxZx\":\"Control who gets in, and when\",\"1JnTgU\":\"Skopírované zhora\",\"FxVG/l\":\"Skopírované do schránky\",\"PiH3UR\":\"Skopírované!\",\"4i7smN\":\"Copy account ID\",\"uUPbPg\":\"Kopírovať partnerský odkaz\",\"iVm46+\":\"Kopírovať kód\",\"cF2ICc\":\"Kopírovať odkaz pre zákazníka\",\"+2ZJ7N\":\"Kopírovať údaje k prvému účastníkovi\",\"ZN1WLO\":\"Kopírovať e-mail\",\"y1eoq1\":\"Kopírovať odkaz\",\"tUGbi8\":\"Kopírovať moje údaje do:\",\"y22tv0\":\"Skopírujte tento odkaz a zdieľajte ho kdekoľvek\",\"/4gGIX\":\"Kopírovať do schránky\",\"e0f4yB\":\"Miesto sa nepodarilo vymazať\",\"vkiDx2\":\"Could not prepare the bulk update.\",\"KOavaU\":\"Nepodarilo sa získať údaje o adrese\",\"/lq4oO\":\"Could not save date\",\"mHu0az\":\"Couldn't send verification email. Please try again.\",\"QOIm+S\":\"Počty zahŕňajú všetky nadchádzajúce dátumy. Každej osobe je ponúknuté miesto na dátum, na ktorý sa prihlásila.\",\"P0rbCt\":\"Obrázok obalu\",\"p4kqHr\":\"Cover image added\",\"60u+dQ\":\"Obrázok obalu sa zobrazí v hornej časti stránky udalosti\",\"2NLjA6\":\"Obrázok obalu sa zobrazí v hornej časti stránky organizátora\",\"GkrqoY\":\"Covers every ticket\",\"zg4oSu\":[\"Vytvoriť šablónu \",[\"0\"]],\"RKKhnW\":\"Vytvorte vlastný widget na predaj lístkov na vašom webe.\",\"6sk7PP\":\"Create a fixed number\",\"jqhTmw\":\"Create a list for this date\",\"PhioFp\":\"Create a new check-in list for an active session, or contact the organizer if you think this is a mistake.\",\"yIRev4\":\"Vytvoriť heslo\",\"j7xZ7J\":\"Vytvorte ďalších organizátorov na správu samostatných značiek, oddelení alebo sérií udalostí pod jedným účtom. Každý organizátor má vlastné udalosti, nastavenia a verejnú stránku.\",\"xfKgwv\":\"Vytvoriť partnera\",\"tudG8q\":\"Vytvorte a nakonfigurujte lístky a tovar na predaj.\",\"YAl9Hg\":\"Vytvoriť konfiguráciu\",\"BTne9e\":\"Vytvorte vlastné e-mailové šablóny pre túto udalosť, ktoré prepíšu predvolené nastavenia organizátora\",\"YIDzi/\":\"Vytvoriť vlastnú šablónu\",\"tsGqx5\":\"Create Date\",\"Nc3l/D\":\"Vytvorte zľavy, prístupové kódy pre skryté lístky a špeciálne ponuky.\",\"PybJS2\":\"Create event\",\"eWEV9G\":\"Vytvoriť nové heslo\",\"wl2iai\":\"Create Schedule\",\"8AiKIu\":\"Vytvoriť lístok alebo produkt\",\"/HGmW9\":\"Vytvorte sledovateľné odkazy na odmeňovanie partnerov, ktorí propagujú vašu udalosť.\",\"dkAPxi\":\"Vytvoriť webhook\",\"5slqwZ\":\"Vytvorte svoju udalosť\",\"JQNMrj\":\"Vytvorte svoju prvú udalosť\",\"CCjxOC\":\"Vytvorte svoju prvú udalosť a začnite predávať lístky a spravovať účastníkov.\",\"ZCSSd+\":\"Vytvorte vlastnú udalosť\",\"qdv10s\":[\"Vytvára sa \",[\"0\"],\" termínov. Môže to chvíľu trvať.\"],\"67NsZP\":\"Vytváranie udalosti...\",\"H34qcM\":\"Vytváranie organizátora...\",\"1YMS+X\":\"Vytváranie vašej udalosti, čakajte prosím\",\"yiy8Jt\":\"Vytváranie profilu organizátora, čakajte prosím\",\"lfLHNz\":\"Popis CTA je povinný\",\"0xLR6W\":\"Currently assigned\",\"iTvh6I\":\"Momentálne dostupné na nákup\",\"A42Dqn\":\"Custom branding\",\"Guo0lU\":\"Vlastný dátum a čas\",\"WDMdn8\":\"Custom questions\",\"O6mra8\":\"Vlastné otázky\",\"axv/Mi\":\"Vlastná šablóna\",\"2YeVGY\":\"Odkaz pre zákazníka skopírovaný do schránky\",\"QMHSMS\":\"Zákazník dostane e-mail potvrdzujúci vrátenie platby\",\"NihQNk\":\"Zákazníci\",\"hINN++\":\"Customize page\",\"7gsjkI\":\"Prispôsobte e-maily odosielané zákazníkom pomocou Liquid šablonovania. Tieto šablóny budú použité ako predvolené pre všetky udalosti vo vašej organizácii.\",\"xJaTUK\":\"Prispôsobte rozloženie, farby a značku domovskej stránky udalosti.\",\"MXZfGN\":\"Prispôsobte otázky kladené počas pokladne na zber dôležitých informácií od účastníkov.\",\"iX6SLo\":\"Prispôsobte text zobrazený na tlačidle Pokračovať\",\"pxNIxa\":\"Prispôsobte svoju e-mailovú šablónu pomocou Liquid šablonovania\",\"3trPKm\":\"Prispôsobte vzhľad stránky organizátora\",\"U0sC6H\":\"Daily\",\"/gWrVZ\":\"Denné príjmy, dane, poplatky a vrátenia naprieč všetkými udalosťami\",\"zgCHnE\":\"Denná správa o predajoch\",\"nHm0AI\":\"Denný rozklad predajov, daní a poplatkov\",\"1aPnDT\":\"Dance\",\"pvnfJD\":\"Tmavý\",\"MaB9wW\":\"Date Cancellation\",\"e6cAxJ\":\"Date cancelled\",\"81jBnC\":\"Date cancelled successfully\",\"a/C/6R\":\"Date created successfully\",\"IW7Q+u\":\"Date deleted\",\"rngCAz\":\"Date deleted successfully\",\"vHbfoQ\":\"Date reactivated\",\"hvah+S\":\"Date reopened for new sales\",\"Ez0YsD\":\"Date updated successfully\",\"Te33mU\":\"Dates are managed per occurrence\",\"91zCxb\":\"Dates with sessions\",\"/ITcnz\":\"day\",\"H7OUPr\":\"Day\",\"JtHrX9\":\"Day of Month\",\"J/Upwb\":\"days\",\"vDVA2I\":\"Days of Month\",\"rDLvlL\":\"Days of Week\",\"r6zgGo\":\"December\",\"jbq7j2\":\"Odmietnuť\",\"ovBPCi\":\"Predvolené\",\"JtI4vj\":\"Predvolený zber informácií o účastníkoch\",\"ULjv90\":\"Default capacity per date\",\"3R/Tu2\":\"Predvolené spracovanie poplatkov\",\"1bZAZA\":\"Bude použitá predvolená šablóna\",\"HNlEFZ\":\"odstrániť\",\"KpnwJK\":[\"Vymazať \\\"\",[\"0\"],\"\\\"?\"],\"BlII4o\":[\"Delete \",[\"count\"],\" selected date(s)? Dates with orders will be skipped. This cannot be undone.\"],\"vu7gDm\":\"Odstrániť partnera\",\"KZN4Lc\":\"Odstrániť všetko\",\"6EkaOO\":\"Delete Date\",\"io0G93\":\"Odstrániť udalosť\",\"+jw/c1\":\"Odstrániť obrázok\",\"hdyeZ0\":\"Odstrániť úlohu\",\"xxjZeP\":\"Vymazať miesto\",\"sY3tIw\":\"Odstrániť organizátora\",\"UBv8UK\":\"Delete Permanently\",\"dPyJ15\":\"Odstrániť šablónu\",\"IQTR34\":\"Delete this category? Any products in it will also be deleted. This cannot be undone.\",\"/1wMxk\":\"Delete this product? This cannot be undone.\",\"mxsm1o\":\"Odstrániť túto otázku? Túto akciu nie je možné vrátiť späť.\",\"snMaH4\":\"Odstrániť webhook\",\"LIZZLY\":[\"Deleted \",[\"0\"],\" date(s)\"],\"7w0Wev\":\"Description and venue added\",\"vYgeDk\":\"Zrušiť výber všetkého\",\"NvuEhl\":\"Dizajnové prvky\",\"H8kMHT\":\"Nedostali ste kód?\",\"G8KNgd\":\"Different location\",\"E/QGRL\":\"Disabled\",\"OdPOhy\":\"Discord\",\"nZJ8tu\":\"Dismiss setup checklist\",\"QotGhf\":\"Zamietnuť túto správu\",\"BREO0S\":\"Zobraziť zaškrtávacie políčko umožňujúce zákazníkom prihlásiť sa na marketingové komunikácie od tohto organizátora udalosti.\",\"HtaSQp\":\"Zobrazuje, koľko miest zostáva na jednotlivé dátumy vo widgete vstupeniek. Pre jednotlivé dátumy to môžete prepísať.\",\"pfa8F0\":\"Zobrazovaný názov\",\"Kdpf90\":\"Nezabudnite!\",\"352VU2\":\"Nemáte účet? <0>Zaregistrujte sa\",\"AXXqG+\":\"Dar\",\"DPfwMq\":\"Hotovo\",\"JoPiZ2\":\"Door staff instructions\",\"2+O9st\":\"Stiahnuť správy o predajoch, účastníkoch a financiách pre všetky dokončené objednávky.\",\"eneWvv\":\"Koncept\",\"Ts8hhq\":\"Kvôli vysokému riziku spamu musíte pripojiť účet Stripe pred úpravou e-mailových šablón. Je to na zabezpečenie, že všetci organizátori udalostí sú overení a zodpovední.\",\"TnzbL+\":\"Kvôli vysokému riziku spamu musíte pripojiť účet Stripe pred odosielaním správ účastníkom.\\nJe to na zabezpečenie, že všetci organizátori udalostí sú overení a zodpovední.\",\"euc6Ns\":\"Duplikovať\",\"YueC+F\":\"Duplicate Date\",\"KRmTkx\":\"Duplikovať produkt\",\"Jd3ymG\":\"Duration must be at least 1 minute.\",\"KIjvtr\":\"Holandčina\",\"22xieU\":\"napr. 180 (3 hodiny)\",\"/zajIE\":\"e.g. Morning Session\",\"SPKbfM\":\"napr. Získať lístky, Zaregistrovať sa\",\"fc7wGW\":\"napr. Dôležitá aktualizácia o vašich lístkoch\",\"54MPqC\":\"napr. Štandard, Prémiový, Enterprise\",\"3RQ81z\":\"Každá osoba dostane e-mail s rezervovaným miestom na dokončenie nákupu.\",\"Xfsjel\":\"Každý produkt\",\"5oD9f/\":\"Earlier\",\"LTzmgK\":[\"Upraviť šablónu \",[\"0\"]],\"v4+lcZ\":\"Upraviť partnera\",\"2iZEz7\":\"Upraviť odpoveď\",\"t2bbp8\":\"Upraviť účastníka\",\"etaWtB\":\"Upraviť údaje účastníka\",\"+guao5\":\"Upraviť konfiguráciu\",\"1Mp/A4\":\"Edit Date\",\"m0ZqOT\":\"Upraviť miesto\",\"8oivFT\":\"Upraviť miesto\",\"vRWOrM\":\"Upraviť podrobnosti objednávky\",\"fW5sSv\":\"Upraviť webhook\",\"nP7CdQ\":\"Upraviť webhook\",\"MRZxAn\":\"Edited\",\"uBAxNB\":\"Editor\",\"aqxYLv\":\"Vzdelávanie\",\"iiWXDL\":\"Zlyhania oprávnenosti\",\"zPiC+q\":\"Oprávnené zoznamy odbavení\",\"SiVstt\":\"Email & scheduled messages\",\"V2sk3H\":\"E-mail a šablóny\",\"hbwCKE\":\"E-mailová adresa skopírovaná do schránky\",\"dSyJj6\":\"E-mailové adresy sa nezhodujú\",\"elW7Tn\":\"Telo e-mailu\",\"ZsZeV2\":\"E-mail je povinný\",\"Be4gD+\":\"Náhľad e-mailu\",\"6IwNUc\":\"E-mailové šablóny\",\"H/UMUG\":\"Vyžaduje sa overenie e-mailu\",\"PLEl94\":\"Email verified\",\"L86zy2\":\"E-mail bol úspešne overený!\",\"FSN4TS\":\"Vložiť widget\",\"z9NkYY\":\"Embeddable widget\",\"Qj0GKe\":\"Povoliť samoobsluhu účastníka\",\"hEtQsg\":\"Predvolene povoliť samoobsluhu účastníka\",\"Upeg/u\":\"Povoliť túto šablónu na odosielanie e-mailov\",\"7dSOhU\":\"Povoliť zoznam čakateľov\",\"RxzN1M\":\"Povolené\",\"xDr/ct\":\"End\",\"sGjBEq\":\"Dátum a čas ukončenia (voliteľné)\",\"PKXt9R\":\"Dátum ukončenia musí byť po dátume začiatku\",\"ZayGC7\":\"End on a date\",\"48Y16Q\":\"Čas ukončenia (voliteľné)\",\"TbaYrr\":[\"Ended \",[\"0\"]],\"CFgwiw\":[\"Ends \",[\"0\"]],\"SqOIQU\":\"Enter a capacity value or choose unlimited.\",\"h37gRz\":\"Enter a label or choose to remove it.\",\"7YZofi\":\"Zadajte predmet a telo pre zobrazenie náhľadu\",\"khyScF\":\"Enter a time to shift by.\",\"SKx/0u\":\"Zadajte názov miesta alebo adresu\",\"ppwojw\":\"Pre prezenčné podujatia zadajte názov miesta alebo adresu\",\"j+eCIq\":\"Zadať adresu manuálne\",\"3bR1r4\":\"Zadajte e-mail partnera (voliteľné)\",\"ARkzso\":\"Zadajte meno partnera\",\"ej4L8b\":\"Enter capacity\",\"6KnyG0\":\"Zadajte e-mail\",\"INDKM9\":\"Zadajte predmet e-mailu...\",\"xUgUTh\":\"Zadajte meno\",\"9/1YKL\":\"Zadajte priezvisko\",\"VpwcSk\":\"Zadajte nové heslo\",\"kWg31j\":\"Zadajte jedinečný partnerský kód\",\"C3nD/1\":\"Zadajte svoj e-mail\",\"VmXiz4\":\"Zadajte svoj e-mail a pošleme vám pokyny na obnovenie hesla.\",\"n9V+ps\":\"Zadajte svoje meno\",\"IdULhL\":\"Zadajte číslo DPH vrátane kódu krajiny, bez medzier (napr. IE1234567A, DE123456789)\",\"RRlWVA\":\"Celá objednávka\",\"o21Y+P\":\"entries\",\"X88/6w\":\"Záznamy sa zobrazia tu, keď sa zákazníci pridajú do zoznamu čakateľov pre vypredané produkty.\",\"LslKhj\":\"Chyba pri načítaní protokolov\",\"VCNHvW\":\"Udalosť archivovaná\",\"ZD0XSb\":\"Udalosť bola úspešne archivovaná\",\"WgD6rb\":\"Kategória udalosti\",\"b46pt5\":\"Obrázok obalu udalosti\",\"NAUIJ7\":\"Event created\",\"1b77ID\":\"Udalosť vytvorená\",\"1Hzev4\":\"Vlastná šablóna udalosti\",\"+v+GW0\":\"Zobrazenie dátumu podujatia\",\"7u9/DO\":\"Udalosť bola úspešne odstránená\",\"imgKgl\":\"Popis udalosti\",\"IzR/Fc\":\"Event lifetime\",\"PYs3rP\":\"Názov udalosti\",\"HhwcTQ\":\"Názov udalosti\",\"WZZzB6\":\"Názov udalosti je povinný\",\"Wd5CDM\":\"Názov udalosti by mal mať menej ako 150 znakov\",\"4JzCvP\":\"Udalosť nie je dostupná\",\"mImacG\":\"Stránka udalosti\",\"Hk9Ki/\":\"Udalosť bola úspešne obnovená\",\"JyD0LH\":\"Nastavenia udalosti\",\"XVLu2v\":\"Názov udalosti\",\"OfmsI9\":\"Udalosť je príliš nová\",\"4SILkp\":\"Event totals\",\"YDVUVl\":\"Typy udalostí\",\"+HeiVx\":\"Udalosť aktualizovaná\",\"19j6uh\":\"Výkonnosť udalostí\",\"PC3/fk\":\"Udalosti začínajúce v nasledujúcich 24 hodinách\",\"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\":\"Každá e-mailová šablóna musí obsahovať tlačidlo výzvy na akciu odkazujúce na príslušnú stránku\",\"BVinvJ\":\"Príklady: \\\"Ako ste sa o nás dozvedeli?\\\", \\\"Názov firmy pre faktúru\\\"\",\"2hGPQG\":\"Príklady: \\\"Veľkosť trička\\\", \\\"Preferencia jedla\\\", \\\"Pracovná pozícia\\\"\",\"qNuTh3\":\"Výnimka\",\"M1RnFv\":\"Vypršané\",\"kF8HQ7\":\"Exportovať odpovede\",\"2KAI4N\":\"Exportovať CSV\",\"JKfSAv\":\"Export zlyhal. Skúste to znovu.\",\"SVOEsu\":\"Export spustený. Pripravuje sa súbor...\",\"wuyaZh\":\"Export úspešný\",\"9bpUSo\":\"Exportovanie partnerov\",\"jtrqH9\":\"Exportovanie účastníkov\",\"R4Oqr8\":\"Export dokončený. Sťahovanie súboru...\",\"UlAK8E\":\"Exportovanie objednávok\",\"DwuoH0\":\"Facebook\",\"7Bj3x9\":\"Neúspešné\",\"8uOlgz\":\"Zlyhalo o\",\"tKcbYd\":\"Neúspešné úlohy\",\"SsI9v/\":\"Nepodarilo sa opustiť objednávku. Skúste to znovu.\",\"LdPKPR\":\"Nepodarilo sa priradiť konfiguráciu\",\"PO0cfn\":\"Failed to cancel date\",\"YUX+f+\":\"Failed to cancel dates\",\"SIHgVQ\":\"Nepodarilo sa zrušiť správu\",\"cEFg3R\":\"Nepodarilo sa vytvoriť partnera\",\"dVgNF1\":\"Nepodarilo sa vytvoriť konfiguráciu\",\"fAoRRJ\":\"Failed to create schedule\",\"4yLYTb\":\"Nepodarilo sa vytvoriť harmonogram. Skúste to znova.\",\"U66oUa\":\"Nepodarilo sa vytvoriť šablónu\",\"aFk48v\":\"Nepodarilo sa odstrániť konfiguráciu\",\"n1CYMH\":\"Failed to delete date\",\"KXv+Qn\":\"Failed to delete date. It may have existing orders.\",\"JJ0uRo\":\"Failed to delete dates\",\"rgoBnv\":\"Nepodarilo sa odstrániť udalosť\",\"Zw6LWb\":\"Nepodarilo sa odstrániť úlohu\",\"tq0abZ\":\"Nepodarilo sa odstrániť úlohy\",\"2mkc3c\":\"Nepodarilo sa odstrániť organizátora\",\"5E23qd\":\"Failed to delete product. Please try again.\",\"vKMKnu\":\"Nepodarilo sa odstrániť otázku\",\"xFj7Yj\":\"Nepodarilo sa odstrániť šablónu\",\"jo3Gm6\":\"Nepodarilo sa exportovať partnerov\",\"Jjw03p\":\"Nepodarilo sa exportovať účastníkov\",\"ZPwFnN\":\"Nepodarilo sa exportovať objednávky\",\"zGE3CH\":\"Nepodarilo sa exportovať správu. Skúste to znovu.\",\"lS9/aZ\":\"Nepodarilo sa načítať príjemcov\",\"X4o0MX\":\"Nepodarilo sa načítať webhook\",\"ETcU7q\":\"Nepodarilo sa ponúknuť miesto\",\"5670b9\":\"Nepodarilo sa ponúknuť lístky\",\"e5KIbI\":\"Failed to reactivate date\",\"7zyx8a\":\"Nepodarilo sa odstrániť zo zoznamu čakateľov\",\"A/P7PX\":\"Failed to remove override\",\"ogWc1z\":\"Failed to reopen date\",\"0+iwE5\":\"Nepodarilo sa preusporiadať otázky\",\"EJPAcd\":\"Nepodarilo sa znovu odoslať potvrdenie objednávky\",\"DjSbj3\":\"Nepodarilo sa znovu odoslať lístok\",\"YQ3QSS\":\"Nepodarilo sa znovu odoslať overovací kód\",\"wDioLj\":\"Nepodarilo sa zopakovať úlohu\",\"DKYTWG\":\"Nepodarilo sa zopakovať úlohy\",\"WRREqF\":\"Failed to save override\",\"sj/eZA\":\"Failed to save price override\",\"780n8A\":\"Failed to save product settings\",\"zTkTF3\":\"Nepodarilo sa uložiť šablónu\",\"l6acRV\":\"Nepodarilo sa uložiť nastavenia DPH. Skúste to znovu.\",\"T6B2gk\":\"Nepodarilo sa odoslať správu. Skúste to znovu.\",\"lKh069\":\"Nepodarilo sa spustiť úlohu exportu\",\"t/KVOk\":\"Nepodarilo sa spustiť zosobnenie. Skúste to znovu.\",\"QXgjH0\":\"Nepodarilo sa zastaviť zosobnenie. Skúste to znovu.\",\"i0QKrm\":\"Nepodarilo sa aktualizovať partnera\",\"NNc33d\":\"Nepodarilo sa aktualizovať odpoveď.\",\"E9jY+o\":\"Nepodarilo sa aktualizovať účastníka\",\"uQynyf\":\"Nepodarilo sa aktualizovať konfiguráciu\",\"i2PFQJ\":\"Nepodarilo sa aktualizovať stav udalosti\",\"EhlbcI\":\"Nepodarilo sa aktualizovať úroveň správ\",\"rpGMzC\":\"Nepodarilo sa aktualizovať objednávku\",\"T2aCOV\":\"Nepodarilo sa aktualizovať stav organizátora\",\"Eeo/Gy\":\"Nepodarilo sa aktualizovať nastavenie\",\"kqA9lY\":\"Nepodarilo sa aktualizovať nastavenia DPH\",\"7/9RFs\":\"Nepodarilo sa nahrať obrázok.\",\"nkNfWu\":\"Nepodarilo sa nahrať obrázok. Skúste to znovu.\",\"rxy0tG\":\"Nepodarilo sa overiť e-mail\",\"QRUpCk\":\"Family\",\"5LO38w\":\"Fast payouts to your bank\",\"4lgLew\":\"February\",\"9bHCo2\":\"Mena poplatku\",\"/sV91a\":\"Spracovanie poplatkov\",\"K4dKSP\":\"Fee override saved\",\"LyUWXA\":\"Poplatky obídené\",\"cf35MA\":\"Festival\",\"pAey+4\":\"Súbor je príliš veľký. Maximálna veľkosť je 5 MB.\",\"VejKUM\":\"Najprv vyplňte svoje údaje vyššie\",\"/n6q8B\":\"Film\",\"L1qbUx\":\"Filter attendees\",\"8OvVZZ\":\"Filtrovať účastníkov\",\"N/H3++\":\"Filter by date\",\"mvrlBO\":\"Filtrovať podľa udalosti\",\"g+xRXP\":\"Finish setting up Stripe\",\"LHH461\":\"Finish setup\",\"syyeb9\":\"First\",\"Vj6wk9\":\"First 30 days\",\"/bpZYb\":\"First 7 days\",\"ziEnjY\":\"First 90 days\",\"1vBhpG\":\"Prvý účastník\",\"4pwejF\":\"Meno je povinné\",\"rVogsf\":\"Na zverejnenie opravte problémy\",\"3lkYdQ\":\"Fixed fee\",\"6bBh3/\":\"Pevný poplatok\",\"zWqUyJ\":\"Pevný poplatok účtovaný za transakciu\",\"LWL3Bs\":\"Pevný poplatok musí byť 0 alebo väčší\",\"0RI8m4\":\"Flash off\",\"q0923e\":\"Flash on\",\"X+U6/w\":\"Rodina písma\",\"lWxAUo\":\"Jedlo a nápoje\",\"nFm+5u\":\"Text päty\",\"a8nooQ\":\"Fourth\",\"wtuVU4\":\"Frequency\",\"xVhQZV\":\"Fri\",\"39y5bn\":\"Friday\",\"f5UbZ0\":\"Full data ownership\",\"cfvx/y\":\"Full event\",\"MY2SVM\":\"Plné vrátenie\",\"PGQLdy\":\"future\",\"8N/j1s\":\"Future dates only\",\"yRx/6K\":\"Future dates will be copied with capacity reset to zero\",\"T02gNN\":\"Všeobecný vstup\",\"3ep0Gx\":\"Všeobecné informácie o vašom organizátorovi\",\"ziAjHi\":\"Generovať\",\"exy8uo\":\"Generovať kód\",\"4CETZY\":\"Získať trasu\",\"pjkEcB\":\"Get Paid\",\"lGYzP6\":\"Get paid with Stripe\",\"ZDIydz\":\"Začať\",\"u6FPxT\":\"Získať lístky\",\"8KDgYV\":\"Pripravte svoju udalosť\",\"RkXlPZ\":\"GitHub\",\"sr0UJD\":\"Go Back\",\"oNL5vN\":\"Prejsť na stránku udalosti\",\"gHSuV/\":\"Prejsť na domovskú stránku\",\"8+Cj55\":\"Go to Schedule\",\"6nDzTl\":\"Dobrá čitateľnosť\",\"76gPWk\":\"Got it\",\"CZXzs4\":\"Gréčtina\",\"aGWZUr\":\"Hrubé príjmy\",\"n8IUs7\":\"Hrubé príjmy\",\"O1wAlQ\":\"Guest\",\"LIYoRQ\":\"Správa hostí\",\"NUsTc4\":\"Happening now\",\"kTSQej\":[\"Ahoj \",[\"0\"],\", spravujte svoju platformu odtiaľto.\"],\"dORAcs\":\"Tu sú všetky lístky spojené s vašou e-mailovou adresou.\",\"g+2103\":\"Tu je váš partnerský odkaz\",\"bVsnqU\":\"Hi,\",\"/iE8xx\":\"Poplatok Hi.Events\",\"zppscQ\":\"Poplatky platformy Hi.Events a rozklad DPH podľa transakcií\",\"D+zLDD\":\"Skryté\",\"DRErHC\":\"Skryté pred účastníkmi – viditeľné iba pre organizátorov\",\"NNnsM0\":\"Skryť rozšírené možnosti\",\"P+5Pbo\":\"Skryť odpovede\",\"VMlRqi\":\"Hide details\",\"FmogyU\":\"Skryť možnosti\",\"uXNYjR\":\"Skryť vypredané dátumy a časy\",\"g9RcYX\":\"Skryť dátum\",\"uMwTx7\":\"Skryť túto kategóriu?\",\"gtEbeW\":\"Zvýrazniť\",\"NF8sdv\":\"Zvýrazniť správu\",\"MXSqmS\":\"Zvýrazniť tento produkt\",\"7ER2sc\":\"Zvýraznené\",\"sq7vjE\":\"Zvýraznené produkty budú mať inú farbu pozadia, aby vynikli na stránke udalosti.\",\"1+WSY1\":\"Hobbies\",\"yY8wAv\":\"Hours\",\"49Tkiw\":\"Ako sa zľava uplatňuje?\",\"sy9anN\":\"Ako dlho má zákazník na dokončenie nákupu po prijatí ponuky. Nechajte prázdne pre bez časového limitu.\",\"n2ilNh\":\"How long does the schedule run?\",\"DMr2XN\":\"How often?\",\"cceMns\":\"How VAT is applied to the platform fees we charge you.\",\"FONsLE\":\"https://awesome-events.com\",\"htoh8N\":\"https://webhook-domain.com/webhook\",\"mkWad2\":\"Maďarčina\",\"8Wgd41\":\"Beriem na vedomie svoje povinnosti ako správca údajov\",\"O8m7VA\":\"Súhlasím s prijímaním e-mailových notifikácií súvisiacich s touto udalosťou\",\"YLgdk5\":\"Potvrdzujem, že toto je transakčná správa súvisiaca s touto udalosťou\",\"4/kP5a\":\"Ak sa nová karta neotvorila automaticky, kliknite na tlačidlo nižšie a pokračujte na pokladňu.\",\"W/eN+G\":\"Ak je prázdne, adresa sa použije na vygenerovanie odkazu Google Maps\",\"CY3yHL\":\"Ak je zaškrtnuté, táto kategória bude skrytá pred verejnosťou.\",\"iIEaNB\":\"Ak máte u nás účet, dostanete e-mail s pokynmi na obnovenie hesla.\",\"an5hVd\":\"Obrázky\",\"tSVr6t\":\"Zosobniť\",\"TWXU0c\":\"Zosobniť používateľa\",\"5LAZwq\":\"Zosobnenie spustené\",\"IMwcdR\":\"Zosobnenie zastavené\",\"0I0Hac\":\"Dôležité upozornenie\",\"yD3avI\":\"Dôležité: Zmena e-mailovej adresy aktualizuje odkaz na prístup k tejto objednávke. Po uložení budete presmerovaní na nový odkaz objednávky.\",\"jT142F\":[\"O \",[\"diffHours\"],\" hodín\"],\"OoSyqO\":[\"O \",[\"diffMinutes\"],\" minút\"],\"PdMhEx\":[\"in last \",[\"0\"],\" min\"],\"u7r0G5\":\"In person — set a venue\",\"/LCAwL\":\"Prebieha\",\"F1Xp97\":\"Jednotliví účastníci\",\"85e6zs\":\"Vložiť Liquid token\",\"CTWsuc\":\"Instagram\",\"VopR6B\":\"Instant Stripe payouts\",\"nbfdhU\":\"Integrácie\",\"I8eJ6/\":\"Internal notes on the attendee's ticket\",\"B2Tpo0\":\"Neplatný e-mail\",\"5tT0+u\":\"Neplatný formát e-mailu\",\"f9WRpE\":\"Neplatný typ súboru. Nahrajte obrázok.\",\"tnL+GP\":\"Neplatná Liquid syntax. Opravte ju a skúste znovu.\",\"N9JsFT\":\"Neplatný formát čísla DPH\",\"g+lLS9\":\"Pozvať člena tímu\",\"1z26sk\":\"Pozvať člena tímu\",\"KR0679\":\"Pozvať členov tímu\",\"aH6ZIb\":\"Pozvite svoj tím\",\"Dn4OyV\":\"Pozvaný\",\"IuMGvq\":\"Faktúra\",\"a/bUcL\":\"It happens on more than one date\",\"d+Oe9r\":\"It may have been unpublished or removed. Please check the link and try again.\",\"Lj7sBL\":\"Taliančina\",\"F5/CBH\":\"položka/položky\",\"BzfzPK\":\"Položky\",\"rjyWPb\":\"January\",\"KmWyx0\":\"Úloha\",\"o5r6b2\":\"Úloha odstránená\",\"cd0jIM\":\"Podrobnosti úlohy\",\"ruJO57\":\"Názov úlohy\",\"YZi+Hu\":\"Úloha zaradená do frontu na opakovanie\",\"nCywLA\":\"Pripojte sa odkiaľkoľvek\",\"SNzppu\":\"Pridať sa do zoznamu čakateľov\",\"dLouFI\":[\"Pridať sa do zoznamu čakateľov pre \",[\"productDisplayName\"]],\"2gMuHR\":\"Pripojený\",\"u4ex5r\":\"July\",\"zeEQd/\":\"June\",\"MxjCqk\":\"Hľadáte len svoje lístky?\",\"xOTzt5\":\"just now\",\"0RihU9\":\"Just wrapped\",\"lB2hSG\":[\"Informujte ma o novinkách a udalostiach od \",[\"0\"]],\"ioFA9i\":\"Keep the profit.\",\"o66QSP\":\"label updates\",\"RtKKbA\":\"Last\",\"DruLRc\":\"Posledných 14 dní\",\"ve9JTU\":\"Priezvisko je povinné\",\"h0Q9Iw\":\"Posledná odpoveď\",\"gw3Ur5\":\"Naposledy spustené\",\"FIq1Ba\":\"Later\",\"xvnLMP\":\"Latest check-ins\",\"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\":\"Svetlý\",\"1qY5Ue\":\"Odkaz vypršal alebo je neplatný\",\"gggTBm\":\"LinkedIn\",\"nvOPBA\":\"Povolené odkazy\",\"2BBAbc\":\"List\",\"dF6vP6\":\"Aktívne\",\"fpMs2Z\":\"ŽIVÉ\",\"D9zTjx\":\"Živé udalosti\",\"C33p4q\":\"Loaded dates\",\"WdmJIX\":\"Načítavanie náhľadu...\",\"IoDI2o\":\"Načítavanie tokenov...\",\"G3Ge9Z\":\"Načítavanie protokolov webhookov...\",\"NFxlHW\":\"Načítavanie webhookov\",\"E0DoRM\":\"Miesto bolo vymazané\",\"7w8lJU\":\"Miesto bolo uložené\",\"YsRXDD\":\"Miesto bolo aktualizované\",\"A/kIva\":\"location updates\",\"iyZPPR\":\"miest\",\"VppBoU\":\"Miesta\",\"iG7KNr\":\"Logo\",\"vu7ZGG\":\"Logo a obal\",\"gddQe0\":\"Logo a obrázok obalu pre vášho organizátora\",\"TBEnp1\":\"Logo sa zobrazí v hlavičke\",\"Jzu30R\":\"Logo sa zobrazí na lístku\",\"PSRm6/\":\"Vyhľadať moje lístky\",\"yJFu/X\":\"Hlavná kancelária\",\"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\":\"Spravovať zoznam čakateľov udalosti, zobraziť štatistiky a ponúkať lístky účastníkom.\",\"g2npA5\":\"Manuálna ponuka\",\"hg6l4j\":\"March\",\"pqRBOz\":\"Mark as validated (admin override)\",\"2L3vle\":\"Max. správ / 24 h\",\"Qp4HWD\":\"Max. príjemcov / správa\",\"3JzsDb\":\"May\",\"agPptk\":\"Stredné\",\"xDAtGP\":\"Správa\",\"bECJqy\":\"Správa bola úspešne schválená\",\"1jRD0v\":\"Správa účastníkom s konkrétnymi lístkami\",\"uQLXbS\":\"Správa zrušená\",\"48rf3i\":\"Správa nesmie presiahnuť 5000 znakov\",\"ZPj0Q8\":\"Podrobnosti správy\",\"Vjat/X\":\"Správa je povinná\",\"0/yJtP\":\"Správa vlastníkom objednávok s konkrétnymi produktmi\",\"saG4At\":\"Správa naplánovaná\",\"mFdA+i\":\"Úroveň správ\",\"v7xKtM\":\"Úroveň správ bola úspešne aktualizovaná\",\"H9HlDe\":\"minúty\",\"agRWc1\":\"Minutes\",\"zz/Wd/\":\"Mode\",\"fpMgHS\":\"Mon\",\"hty0d5\":\"Monday\",\"JbIgPz\":\"Peňažné hodnoty sú približné súčty naprieč všetkými menami\",\"qvF+MT\":\"Monitorovať a spravovať neúspešné úlohy na pozadí\",\"kY2ll9\":\"month\",\"HajiZl\":\"Mesiac\",\"+8Nek/\":\"Monthly\",\"1LkxnU\":\"Monthly Pattern\",\"6jefe3\":\"months\",\"f8jrkd\":\"more\",\"JcD7qf\":\"More actions\",\"w36OkR\":\"Najsledovanejšie udalosti (posledných 14 dní)\",\"+Y/na7\":\"Move all dates earlier or later\",\"3DIpY0\":\"Multiple locations\",\"g9cQCP\":\"Multiple ticket types\",\"GfaxEk\":\"Hudba\",\"oVGCGh\":\"Moje lístky\",\"8/brI5\":\"Meno je povinné\",\"sFFArG\":\"Meno musí mať menej ako 255 znakov\",\"xxU3NX\":\"Čistý príjem\",\"7I8LlL\":\"New capacity\",\"n1GRql\":\"New label\",\"y0Fcpd\":\"Nové miesto\",\"ArHT/C\":\"Nové registrácie\",\"uK7xWf\":\"New time:\",\"veT5Br\":\"Next occurrence\",\"WXtl5X\":[\"Next: \",[\"nextFormatted\"]],\"eWRECP\":\"Nočný život\",\"HSw5l3\":\"Nie – som fyzická osoba alebo firma neregistrovaná pre DPH\",\"VHfLAW\":\"Žiadne účty\",\"+jIeoh\":\"Nenašli sa žiadne účty\",\"074+X8\":\"Žiadne aktívne webhooky\",\"zxnup4\":\"Žiadni partneri na zobrazenie\",\"Dwf4dR\":\"Zatiaľ žiadne otázky pre účastníkov\",\"th7rdT\":\"No attendees to show\",\"PKySlW\":\"No attendees yet for this date.\",\"/UC6qk\":\"Nenašli sa žiadne údaje o priradení\",\"E2vYsO\":\"No capabilities reported by Stripe yet.\",\"amMkpL\":\"Žiadna kapacita\",\"d2Jf1f\":\"No change\",\"99ntUF\":\"Pre túto udalosť nie sú dostupné žiadne zoznamy odbavení.\",\"wG+knX\":\"No check-ins yet\",\"+dAKxg\":\"Nenašli sa žiadne konfigurácie\",\"LiLk8u\":\"No connections available\",\"eb47T5\":\"Pre vybrané filtre sa nenašli žiadne dáta. Skúste upraviť rozsah dátumov alebo menu.\",\"Zc216S\":\"No date added\",\"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\",\"OtJSnL\":\"Žiadne naplánované termíny\",\"gEdNe8\":\"No dates scheduled yet\",\"pZNOT9\":\"Žiadny dátum ukončenia\",\"dW40Uz\":\"Nenašli sa žiadne udalosti\",\"8pQ3NJ\":\"Žiadne udalosti nezačínajú v nasledujúcich 24 hodinách\",\"8zCZQf\":\"Zatiaľ žiadne udalosti\",\"Yc5YW6\":\"Žiadne neúspešné úlohy\",\"EpvBAp\":\"Žiadna faktúra\",\"XZkeaI\":\"Nenašli sa žiadne protokoly\",\"IcAC6J\":\"Žiadne zodpovedajúce písma\",\"nrSs2u\":\"Nenašli sa žiadne správy\",\"Rj99yx\":\"No occurrences available\",\"IFU1IG\":\"No occurrences on this date\",\"OVFwlg\":\"Zatiaľ žiadne otázky k objednávke\",\"EJ7bVz\":\"Nenašli sa žiadne objednávky\",\"NEmyqy\":\"Zatiaľ žiadne objednávky\",\"a77B6w\":\"No orders yet for this date.\",\"wUv5xQ\":\"Žiadna aktivita organizátora za posledných 14 dní\",\"vLd1tV\":\"No organizer context available.\",\"B7w4KY\":\"Žiadni ďalší organizátori nie sú dostupní\",\"PChXMe\":\"Žiadne zaplatené objednávky\",\"6jYQGG\":\"Žiadne minulé udalosti\",\"CHzaTD\":\"Žiadne populárne udalosti za posledných 14 dní\",\"zK/+ef\":\"Žiadne produkty nie sú dostupné na výber\",\"M1/lXs\":\"No products configured for this event.\",\"kY7XDn\":\"Žiadne produkty nemajú čakajúce záznamy\",\"8mw4tm\":\"Správa o žiadnych produktoch\",\"wYiAtV\":\"Žiadne nedávne registrácie účtov\",\"UW90md\":\"Nenašli sa žiadni príjemcovia\",\"QoAi8D\":\"Žiadna odpoveď\",\"JeO7SI\":\"Žiadna odpoveď\",\"EK/G11\":\"Zatiaľ žiadne odpovede\",\"59OWd3\":\"Žiadne uložené miesta\",\"mPdY6W\":\"Žiadne návrhy\",\"3sRuiW\":\"Nenašli sa žiadne lístky\",\"debCrL\":\"Žiadne vstupenky na predaj\",\"k2C0ZR\":\"No upcoming dates\",\"yM5c0q\":\"Žiadne nadchádzajúce udalosti\",\"qpC74J\":\"Nenašli sa žiadni používatelia\",\"8wgkoi\":\"Žiadne zobrazené udalosti za posledných 14 dní\",\"Arzxc1\":\"Žiadne záznamy v zozname čakateľov\",\"n5vdm2\":\"Pre tento endpoint zatiaľ neboli zaznamenané žiadne udalosti webhookov. Udalosti sa zobrazia tu po ich spustení.\",\"4GhX3c\":\"Žiadne webhooky\",\"4+am6b\":\"Nie, nechajte ma tu\",\"4JVMUi\":\"non-edited\",\"Itw24Q\":\"Not checked in\",\"x5+Lcz\":\"Neodbavený\",\"8n10sz\":\"Neoprávnený\",\"kLvU3F\":\"Notify attendees and stop sales\",\"t9QlBd\":\"November\",\"kAREMN\":\"Number of dates to create\",\"6u1B3O\":\"Occurrence\",\"mmoE62\":\"Occurrence Cancelled\",\"V9flmL\":\"Occurrence Schedule\",\"Kh3WO8\":\"Occurrence Summary\",\"byXCTu\":\"Occurrences\",\"KATw3p\":\"Occurrences (future only)\",\"85rTR2\":\"Occurrences can be configured after creation\",\"dzQfDY\":\"October\",\"BwJKBw\":\"z\",\"9h7RDh\":\"Ponuka\",\"EfK2O6\":\"Ponúknuť miesto\",\"3sVRey\":\"Ponúknuť lístky\",\"2O7Ybb\":\"Časový limit ponuky\",\"1jUg5D\":\"Ponúknuté\",\"l+/HS6\":[\"Ponuky vyprší po \",[\"timeoutHours\"],\" hodinách.\"],\"6Aih4U\":\"Offline\",\"nO3VbP\":[\"V predaji \",[\"0\"]],\"oXOSPE\":\"Online\",\"aqmy5k\":\"Online — provide connection details\",\"LuZBbx\":\"Online & in-person\",\"IXuOqt\":\"Online & in-person — see schedule\",\"WjSpu5\":\"Online udalosť\",\"scPxI/\":[\"Zostáva už len \",[\"capacity\"]],\"NdOxqr\":\"Iba správcovia účtu môžu odstrániť alebo archivovať udalosti. Kontaktujte správcu účtu.\",\"rnoDMF\":\"Iba správcovia účtu môžu odstrániť alebo archivovať organizátorov. Kontaktujte správcu účtu.\",\"bU7oUm\":\"Odoslať iba objednávkam s týmito stavmi\",\"wkpaqp\":\"Zobraziť iba dátum a čas začiatku\",\"DMk8F0\":\"Only tickets count toward capacity\",\"M2w1ni\":\"Viditeľné iba s promo kódom\",\"y8Bm7C\":\"Open check-in\",\"RLz7P+\":\"Open occurrence\",\"cDSdPb\":\"Voliteľná prezývka zobrazovaná vo výberoch, napr. \\\"Konferenčná miestnosť\\\"\",\"HXMJxH\":\"Voliteľný text pre vyhlásenia, kontaktné informácie alebo poďakovania (iba jeden riadok)\",\"L565X2\":\"možnosti\",\"8m9emP\":\"or add a single date\",\"eBskDE\":\"Alebo povoľte offline platby a vypnite Stripe\",\"dSeVIm\":\"order\",\"c/TIyD\":\"Objednávka a lístok\",\"H5qWhm\":\"Objednávka zrušená\",\"b6+Y+n\":\"Objednávka dokončená\",\"x4MLWE\":\"Potvrdenie objednávky\",\"CsTTH0\":\"Potvrdenie objednávky bolo úspešne znovu odoslané\",\"ppuQR4\":\"Objednávka vytvorená\",\"xtQzag\":\"Order details\",\"vrSW9M\":\"Objednávka bola zrušená a vrátená. Vlastník objednávky bol informovaný.\",\"rzw+wS\":\"Držitelia objednávky\",\"oI/hGR\":\"ID objednávky\",\"RQCXz6\":\"Limity objednávky\",\"SO9AEF\":\"Limity objednávky nastavené\",\"vu6Arl\":\"Objednávka označená ako zaplatená\",\"sLbJQz\":\"Objednávka nenájdená\",\"kvYpYu\":\"Objednávka nenájdená\",\"eJ8SvM\":\"Order number, purchase date, purchaser email\",\"FaPYw+\":\"Vlastník objednávky\",\"eB5vce\":\"Vlastníci objednávok s konkrétnym produktom\",\"CxLoxM\":\"Vlastníci objednávok s produktmi\",\"UkHo4c\":\"Ref. objednávky\",\"EZy55F\":\"Objednávka vrátená\",\"6eSHqs\":\"Stavy objednávok\",\"oW5877\":\"Celková suma objednávky\",\"e7eZuA\":\"Objednávka aktualizovaná\",\"1SQRYo\":\"Objednávka bola úspešne aktualizovaná\",\"3NT0Ck\":\"Objednávka bola zrušená\",\"V5khLm\":\"orders\",\"sd5IMt\":\"Dokončené objednávky\",\"5It1cQ\":\"Exportované objednávky\",\"UQ0ACV\":\"Celkový počet objednávok\",\"B/EBQv\":\"Objednávky:\",\"qtGTNu\":\"Organické účty\",\"P/JHA4\":\"Organizátor bol úspešne archivovaný\",\"S3CZ5M\":\"Prehľad organizátora\",\"GzjTd0\":\"Organizátor bol úspešne odstránený\",\"SQqJd8\":\"Organizátor nenájdený\",\"HF8Bxa\":\"Organizátor bol úspešne obnovený\",\"wpj63n\":\"Nastavenia organizátora\",\"o1my93\":\"Aktualizácia stavu organizátora zlyhala. Skúste to neskôr.\",\"rLHma1\":\"Stav organizátora aktualizovaný\",\"LqBITi\":\"Bude použitá šablóna organizátora/predvolená šablóna\",\"q4zH+l\":\"Organizers\",\"/IX/7x\":\"Iné\",\"RsiDDQ\":\"Iné zoznamy (lístok nie je zahrnutý)\",\"aDfajK\":\"Outdoors\",\"qMASRF\":\"Odchádzajúce správy\",\"iCOVQO\":\"Override\",\"GpFTEc\":\"Override fees on this organizer\",\"M9ZhMP\":\"Override price\",\"cnVIpl\":\"Override removed\",\"6/dCYd\":\"Prehľad\",\"6WdDG7\":\"Stránka\",\"8uqsE5\":\"Stránka už nie je dostupná\",\"QkLf4H\":\"URL stránky\",\"sF+Xp9\":\"Zobrazenia stránky\",\"v4nCHK\":\"Paid\",\"c+suC6\":\"Platené účty\",\"5F7SYw\":\"Čiastočné vrátenie\",\"fFYotW\":[\"Čiastočne vrátené: \",[\"0\"]],\"i8day5\":\"Preniesť poplatok na kupujúceho\",\"k4FLBQ\":\"Preniesť na kupujúceho\",\"Ff0Dor\":\"Minulé\",\"BFjW8X\":\"Past due\",\"xTPjSy\":\"Minulé udalosti\",\"/l/ckQ\":\"Vložiť URL\",\"URAE3q\":\"Pozastavené\",\"4fL/V7\":\"Zaplatiť\",\"c2/9VE\":\"Obsah požiadavky\",\"5cxUwd\":\"Dátum platby\",\"ENEPLY\":\"Spôsob platby\",\"8Lx2X7\":\"Platba prijatá\",\"fx8BTd\":\"Platby nie sú dostupné\",\"C+ylwF\":\"Payouts\",\"UbRKMZ\":\"Pending\",\"UkM20g\":\"Čaká na kontrolu\",\"dPYu1F\":\"Na účastníka\",\"mQV/nJ\":\"per min\",\"+kvxv+\":\"na objednávku\",\"VlXNyK\":\"Na objednávku\",\"NhuGd7\":\"na produkt\",\"hauDFf\":\"Na lístok\",\"mnF83a\":\"Percentuálny poplatok\",\"TNLuRD\":\"Percentage fee (%)\",\"MixU2P\":\"Percento musí byť medzi 0 a 100\",\"MkuVAZ\":\"Percento zo sumy transakcie\",\"/Bh+7r\":\"Výkonnosť\",\"fIp56F\":\"Natrvalo odstrániť túto udalosť a všetky jej súvisiace dáta.\",\"nJeeX7\":\"Natrvalo odstrániť tohto organizátora a všetky jeho udalosti.\",\"wfCTgK\":\"Permanently remove this date\",\"6kPk3+\":\"Osobné informácie\",\"zmwvG2\":\"Telefón\",\"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\":\"Plánujete udalosť?\",\"J3lhKT\":\"Poplatok platformy\",\"RD51+P\":[\"Poplatok platformy \",[\"0\"],\" odpočítaný z vašej výplaty\"],\"br3Y/y\":\"Poplatky platformy\",\"3buiaw\":\"Správa o poplatkoch platformy\",\"kv9dM4\":\"Príjmy platformy\",\"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\":\"Zadajte platnú e-mailovú adresu\",\"jEw0Mr\":\"Zadajte platnú URL adresu\",\"n8+Ng/\":\"Zadajte 5-ciferný kód\",\"r+lQXT\":\"Zadajte číslo DPH\",\"Dvq0wf\":\"Poskytnite obrázok.\",\"2cUopP\":\"Reštartujte proces pokladne.\",\"GoXxOA\":\"Please select a date and time\",\"8KmsFa\":\"Vyberte rozsah dátumov\",\"EFq6EG\":\"Vyberte obrázok.\",\"fuwKpE\":\"Skúste to znovu.\",\"klWBeI\":\"Počkajte pred požiadaním o ďalší kód\",\"hfHhaa\":\"Čakajte, pripravujeme partnerov na export...\",\"o+tJN/\":\"Čakajte, pripravujeme účastníkov na export...\",\"+5Mlle\":\"Čakajte, pripravujeme objednávky na export...\",\"trnWaw\":\"Poľština\",\"luHAJY\":\"Populárne udalosti (posledných 14 dní)\",\"p/78dY\":\"Position\",\"OESu7I\":\"Predchádzajte predaju nad kapacitu zdieľaním zásob naprieč viacerými typmi lístkov.\",\"NgVUL2\":\"Náhľad formulára pokladne\",\"cs5muu\":\"Náhľad stránky udalosti\",\"Jm2AC3\":\"Price Tier\",\"a5jvSX\":\"Cenové úrovne\",\"ReihZ7\":\"Náhľad tlače\",\"JnuPvH\":\"Vytlačiť lístok\",\"tYF4Zq\":\"Tlačiť do PDF\",\"LcET2C\":\"Zásady ochrany osobných údajov\",\"8z6Y5D\":\"Spracovať vrátenie\",\"JcejNJ\":\"Spracovanie objednávky\",\"EWCLpZ\":\"Produkt vytvorený\",\"XkFYVB\":\"Produkt odstránený\",\"YMwcbR\":\"Predaj produktov, príjmy a rozklad daní\",\"ls0mTC\":\"Product settings cannot be edited for cancelled dates.\",\"2339ej\":\"Product settings saved successfully\",\"ldVIlB\":\"Produkt aktualizovaný\",\"CP3D8G\":\"Progress\",\"JoKGiJ\":\"Promo kód\",\"k3wH7i\":\"Použitie promo kódu a rozklad zliav\",\"tZqL0q\":\"promo codes\",\"oCHiz3\":\"Promo codes\",\"uEhdRh\":\"Iba promo\",\"dLm8V5\":\"Propagačné e-maily môžu viesť k pozastaveniu účtu\",\"W0ETyY\":\"Zadajte aspoň jedno pole adresy (miesto, ulica, mesto alebo krajina).\",\"2W/7Gz\":\"Provide the following before Stripe's next review to keep payouts flowing.\",\"EEYbdt\":\"Zverejniť\",\"JcgJKc\":\"Napriek tomu zverejniť\",\"evDBV8\":\"Zverejniť udalosť\",\"2zEfOd\":\"Publish your event\",\"L7nrC8\":\"Zverejnením sa stránka vašej udalosti stane verejnou a otvoria sa registrácie.\",\"dsFmM+\":\"Zakúpené\",\"JunetL\":\"Purchaser\",\"phmeUH\":\"Purchaser email\",\"ywR4ZL\":\"QR code check-in\",\"oWXNE5\":\"Množstvo\",\"biEyJ4\":\"Question answers\",\"k/bJj0\":\"Otázky preusporiadané\",\"b24kPi\":\"Front\",\"lTPqpM\":\"Quick Tip\",\"fqDzSu\":\"Sadzba\",\"mnUGVC\":\"Prekročený limit požiadaviek. Skúste to neskôr.\",\"t41hVI\":\"Znovu ponúknuť miesto\",\"TNclgc\":\"Reactivate this date? It will be reopened for future sales.\",\"RENQ6j\":\"Pripravení zverejniť?\",\"uqoRbb\":\"Real-time analytics\",\"xzRvs4\":[\"Dostávajte aktualizácie produktov od \",[\"0\"],\".\"],\"pLXbi8\":\"Nedávne registrácie účtov\",\"M1HGuR\":\"Recent activity\",\"3kJ0gv\":\"Recent Attendees\",\"qhfiwV\":\"Recent check-ins\",\"S+0XMX\":\"Recent orders\",\"Fi3b48\":\"Nedávne objednávky\",\"7hPBBn\":\"príjemca\",\"jp5bq8\":\"príjemcovia\",\"yPrbsy\":\"Príjemcovia\",\"E1F5Ji\":\"Príjemcovia sú dostupní po odoslaní správy\",\"WEYdDv\":\"Recommended\",\"wuhHPE\":\"Recurring\",\"asLqwt\":\"Opakujúce sa podujatie\",\"s3uzsK\":\"Nastavenia opakujúceho sa podujatia\",\"D0tAMe\":\"Recurring events\",\"JjMIKU\":\"Reddit\",\"HiGkFu\":\"Presmerovanie na Stripe...\",\"pnoTN5\":\"Referenčné účty\",\"ACKu03\":\"Obnoviť náhľad\",\"vuFYA6\":\"Refund all orders for these dates\",\"4cRUK3\":\"Refund all orders for this date\",\"fKn/k6\":\"Suma vrátenia\",\"qY4rpA\":\"Vrátenie zlyhalo\",\"FaK/8G\":[\"Vrátiť objednávku \",[\"0\"]],\"MGbi9P\":\"Vrátenie čaká\",\"BDSRuX\":[\"Vrátené: \",[\"0\"]],\"bU4bS1\":\"Vrátenia\",\"rYXfOA\":\"Regionálne nastavenia\",\"5tl0Bp\":\"Registračné otázky\",\"ZNo5k1\":\"Remaining\",\"Bjh87R\":\"Remove label from all dates\",\"IVZaEo\":\"Úplne odstráni vypredané dátumy a časy zo stránky podujatia. Ak je vypnuté, zostanú viditeľné a budú označené ako vypredané.\",\"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\":\"Správa nenájdená\",\"JEPMXN\":\"Požiadať o nový odkaz\",\"TMLAx2\":\"Povinné\",\"mdeIOH\":\"Znovu odoslať kód\",\"sQxe68\":\"Znovu odoslať potvrdenie\",\"bxoWpz\":\"Znovu odoslať potvrdzovací e-mail\",\"G42SNI\":\"Znovu odoslať e-mail\",\"TTpXL3\":[\"Znovu odoslať za \",[\"resendCooldown\"],\" s\"],\"5CiNPm\":\"Znovu odoslať lístok\",\"Uwsg2F\":\"Rezervované\",\"8wUjGl\":\"Rezervované do\",\"a5z8mb\":\"Reset to base price\",\"kCn6wb\":\"Obnovenie...\",\"ZlCDf+\":\"Odpoveď\",\"bsydMp\":\"Podrobnosti odpovede\",\"yKu/3Y\":\"Obnoviť\",\"RokrZf\":\"Obnoviť udalosť\",\"/JyMGh\":\"Obnoviť organizátora\",\"HFvFRb\":\"Obnovte túto udalosť, aby bola opäť viditeľná.\",\"DDIcqy\":\"Obnovte tohto organizátora a znovu ho aktivujte.\",\"mO8KLE\":\"results\",\"6gRgw8\":\"Zopakovať\",\"1BG8ga\":\"Zopakovať všetko\",\"rDC+T6\":\"Zopakovať úlohu\",\"CbnrWb\":\"Vrátiť sa na udalosť\",\"Lf7TCn\":\"Opakovane použiteľné miesta sa tu zobrazia automaticky pri vytváraní podujatí s adresami; môžete pridať aj vlastné.\",\"mdQ0zb\":\"Opakovane použiteľné miesta pre vaše podujatia. Miesta vytvorené automatickým dopĺňaním sa tu ukladajú automaticky.\",\"XFOPle\":\"Reuse\",\"1Zehp4\":\"Reuse a Stripe connection from another organizer in this account.\",\"Oo/PLb\":\"Súhrn príjmov\",\"CfuueU\":\"Odvolať ponuku\",\"RIgKv+\":\"Run until a specific date\",\"dFFW9L\":[\"Predaj skončil \",[\"0\"]],\"loCKGB\":[\"Predaj končí \",[\"0\"]],\"wlfBad\":\"Obdobie predaja\",\"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\":\"Obdobie predaja nastavené\",\"ftzaMf\":\"Obdobie predaja, limity objednávok, viditeľnosť\",\"zpekWp\":[\"Predaj začína \",[\"0\"]],\"mUv9U4\":\"Predaje\",\"9KnRdL\":\"Predaj je pozastavený\",\"JC3J0k\":\"Sales, attendance, and check-in breakdown per occurrence\",\"3VnlS9\":\"Predaje, objednávky a metriky výkonnosti pre všetky udalosti\",\"3Q1AWe\":\"Predaje:\",\"LeuERW\":\"Same as event\",\"B4nE3N\":\"Vzorová cena lístka\",\"8BRPoH\":\"Vzorové miesto konania\",\"PiK6Ld\":\"Sat\",\"+5kO8P\":\"Saturday\",\"zJiuDn\":\"Save fee override\",\"NB8Uxt\":\"Save Schedule\",\"KZrfYJ\":\"Uložiť sociálne odkazy\",\"9Y3hAT\":\"Uložiť šablónu\",\"C8ne4X\":\"Uložiť dizajn lístka\",\"cTI8IK\":\"Save VAT settings\",\"6/TNCd\":\"Uložiť nastavenia DPH\",\"4RvD9q\":\"Uložené miesto\",\"cgw0cL\":\"Uložené miesta\",\"Fbqm/I\":\"Saving an override creates a dedicated configuration for this organizer if it's currently on the system default.\",\"I+FvbD\":\"Skenovať\",\"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\":\"Naplánovať na neskôr\",\"NAzVVw\":\"Naplánovať správu\",\"Fz09JP\":\"Schedule starts on\",\"4ba0NE\":\"Naplánované\",\"qcP/8K\":\"Naplánovaný čas\",\"A1taO8\":\"Search\",\"ftNXma\":\"Vyhľadávať partnerov...\",\"VMU+zM\":\"Search attendees\",\"VY+Bdn\":\"Vyhľadávať podľa názvu účtu alebo e-mailu...\",\"VX+B3I\":\"Vyhľadávať podľa názvu udalosti alebo organizátora...\",\"R0wEyA\":\"Vyhľadávať podľa názvu úlohy alebo výnimky...\",\"YnMfsK\":\"Hľadať podľa názvu alebo adresy...\",\"VT+urE\":\"Vyhľadávať podľa mena alebo e-mailu...\",\"GHdjuo\":\"Vyhľadávať podľa mena, e-mailu alebo účtu...\",\"4mBFO7\":\"Search by name, order #, ticket # or email\",\"20ce0U\":\"Vyhľadávať podľa ID objednávky, mena zákazníka alebo e-mailu...\",\"4DSz7Z\":\"Vyhľadávať podľa predmetu, udalosti alebo účtu...\",\"nQC7Z9\":\"Search dates...\",\"iRtEpV\":\"Search dates…\",\"JRM7ao\":\"Search for an address\",\"BWF1kC\":\"Vyhľadávať správy...\",\"5WYZKZ\":\"Výsledky vyhľadávania\",\"IG85fV\":\"Vyhľadajte uložené miesta alebo nájdite adresu...\",\"3aD3GF\":\"Seasonal\",\"ku//5b\":\"Second\",\"Mck5ht\":\"Bezpečná pokladňa\",\"s7tXqF\":\"See schedule\",\"JFap6u\":\"See what Stripe still needs\",\"p7xUrt\":\"Vybrať kategóriu\",\"hTKQwS\":\"Select a Date & Time\",\"Ps6Xtf\":\"Select a date to see available times\",\"e4L7bF\":\"Vyberte správu na zobrazenie jej obsahu\",\"zPRPMf\":\"Vybrať úroveň\",\"BFRSTT\":\"Vybrať účet\",\"wgNoIs\":\"Select all\",\"mCB6Je\":\"Vybrať všetko\",\"aCEysm\":[\"Select all on \",[\"0\"]],\"a6+167\":\"Vybrať udalosť\",\"CFbaPk\":\"Vybrať skupinu účastníkov\",\"88a49s\":\"Select camera\",\"tVW/yo\":\"Vybrať menu\",\"SJQM1I\":\"Select date\",\"n9ZhRa\":\"Vybrať dátum a čas ukončenia\",\"gTN6Ws\":\"Vybrať čas ukončenia\",\"0U6E9W\":\"Vybrať kategóriu udalosti\",\"j9cPeF\":\"Vybrať typy udalostí\",\"ypTjHL\":\"Select occurrence\",\"KizCK7\":\"Vybrať dátum a čas začiatku\",\"dJZTv2\":\"Vybrať čas začiatku\",\"x8XMsJ\":\"Vybrať úroveň správ pre tento účet. Toto riadi limity správ a oprávnenia odkazov.\",\"aT3jZX\":\"Vybrať časové pásmo\",\"TxfvH2\":\"Vybrať, ktorí účastníci majú dostať túto správu\",\"Ropvj0\":\"Vybrať, ktoré udalosti spustia tento webhook\",\"+6YAwo\":\"selected\",\"ylXj1N\":\"Vybrané\",\"uq3CXQ\":\"Sell out your event.\",\"oBXbO4\":\"Selling a physical product? Cap its quantity on the <0>products page instead.\",\"j9b/iy\":\"Rýchlo sa predáva 🔥\",\"73qYgo\":\"Odoslať ako test\",\"HMAqFK\":\"Odosielať e-maily účastníkom, držiteľom lístkov alebo vlastníkom objednávok. Správy môžu byť odoslané okamžite alebo naplánované na neskôr.\",\"22Itl6\":\"Poslať mi kópiu\",\"NpEm3p\":\"Odoslať teraz\",\"nOBvex\":\"Odosielať dáta o objednávkach a účastníkoch v reálnom čase do externých systémov.\",\"1lNPhX\":\"Odoslať notifikačný e-mail o vrátení\",\"eaUTwS\":\"Odoslať odkaz na obnovenie\",\"5cV4PY\":\"Send to all occurrences, or choose a specific one\",\"QEQlnV\":\"Odošlite svoju prvú správu\",\"IoAuJG\":\"Odosielanie...\",\"h69WC6\":\"Odoslané\",\"BVu2Hz\":\"Odoslal\",\"ZFa8wv\":\"Sent to attendees when a scheduled date is cancelled\",\"SPdzrs\":\"Odoslané zákazníkom pri zadaní objednávky\",\"LxSN5F\":\"Odoslané každému účastníkovi s podrobnosťami lístka\",\"hgvbYY\":\"September\",\"5sN96e\":\"Session cancelled\",\"89xaFU\":\"Nastavte predvolené nastavenia poplatkov platformy pre nové udalosti vytvorené pod týmto organizátorom.\",\"eXssj5\":\"Nastavte predvolené nastavenia pre nové udalosti vytvorené pod týmto organizátorom.\",\"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\":\"Nastavte zoznamy odbavení pre rôzne vchody, relácie alebo dni.\",\"TaWVGe\":\"Set up payouts\",\"JA//e6\":\"Set up schedule\",\"gzXY7l\":\"Set Up Schedule\",\"0Ls9qe\":\"Set up the tickets you'll sell and their prices\",\"xMO+Ao\":\"Nastavte svoju organizáciu\",\"5pEFnq\":\"Set up your schedule\",\"h/9JiC\":\"Set Up Your Schedule\",\"zRRuUD\":\"Set up your schedule in the next steps\",\"ETC76A\":\"Set, change, or remove the date's location or online details\",\"C3htzi\":\"Nastavenie aktualizované\",\"Ohn74G\":\"Nastavenie a dizajn\",\"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\":\"Zdieľať partnerský odkaz\",\"hL7sDJ\":\"Zdieľať stránku organizátora\",\"jy6QDF\":\"Správa zdieľanej kapacity\",\"jDNHW4\":\"Shift times\",\"tPfIaW\":[\"Shifted times for \",[\"count\"],\" date(s)\"],\"WwlM8F\":\"Zobraziť rozšírené možnosti\",\"cMW+gm\":[\"Zobraziť všetky platformy (\",[\"0\"],\" ďalších s hodnotami)\"],\"wXi9pZ\":\"Show attendee notes to non-logged-in staff\",\"4LZFir\":\"Zobraziť celý rozsah dátumov\",\"UVPI5D\":\"Zobraziť menej platforiem\",\"Eu/N/d\":\"Zobraziť zaškrtávacie políčko marketingového súhlasu\",\"SXzpzO\":\"Predvolene zobraziť zaškrtávacie políčko marketingového súhlasu\",\"b33PL9\":\"Zobraziť viac platforiem\",\"Eut7p9\":\"Show order details to non-logged-in staff\",\"+RoWKN\":\"Show question answers to non-logged-in staff\",\"jbcx6L\":\"Show remaining capacity on event dates\",\"rXxBOx\":\"Show remaining capacity to buyers\",\"t1LIQW\":[\"Zobrazuje sa \",[\"0\"],\" z \",[\"totalRows\"],\" záznamov\"],\"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\":\"Zaregistrovaný\",\"5C7J+P\":\"Single Event\",\"E//btK\":\"Skip manually edited dates\",\"paESr6\":\"Slovenčina\",\"9wu8nm\":\"Snapchat\",\"kIKb9e\":\"Sociálne\",\"d0rUsW\":\"Sociálne odkazy\",\"j/TOB3\":\"Sociálne odkazy a webová stránka\",\"s9KGXU\":\"Predané\",\"yp+0jj\":\"sold out\",\"1hupow\":\"Vypredané, čakacia listina k dispozícii\",\"iACSrw\":\"Some details are hidden from public access. Log in to view everything.\",\"Dia6iz\":\"Something went wrong while deleting the image. Please try again.\",\"KTxc6k\":\"Niečo sa pokazilo, skúste to znovu alebo kontaktujte podporu, ak problém pretrváva\",\"lkE00/\":\"Niečo sa pokazilo. Skúste to neskôr.\",\"wdxz7K\":\"Zdroj\",\"fDG2by\":\"Spirituality\",\"oPaRES\":\"Split check-in across days, areas, or ticket types. Share the link with staff — no account needed on their end.\",\"7JFNej\":\"Šport\",\"/bfV1Y\":\"Staff instructions\",\"tXkhj/\":\"Start\",\"StWUH4\":\"Start check-in\",\"JcQp9p\":\"Dátum a čas začiatku\",\"0m/ekX\":\"Dátum a čas začiatku\",\"izRfYP\":\"Dátum začiatku je povinný\",\"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/\":\"Štatistiky\",\"GVUxAX\":\"Štatistiky sú založené na dátume vytvorenia účtu\",\"29Hx9U\":\"Stats\",\"5ia+r6\":\"Still needed\",\"wuV0bK\":\"Zastaviť zosobnenie\",\"s/KaDb\":\"Stripe connected\",\"Bk06QI\":\"Stripe pripojený\",\"akZMv8\":[\"Stripe connection copied from \",[\"0\"],\".\"],\"v0aRY1\":\"Stripe didn't return a setup link. Please try again.\",\"aKtF0O\":\"Stripe nie je pripojený\",\"9i0++A\":\"ID platby Stripe\",\"R1lIMV\":\"Stripe will need a few more details soon\",\"FzcCHA\":\"Stripe will walk you through a few quick questions to finish setup.\",\"ii0qn/\":\"Predmet je povinný\",\"M7Uapz\":\"Predmet sa zobrazí tu\",\"6aXq+t\":\"Predmet:\",\"JwTmB6\":\"Produkt bol úspešne duplikovaný\",\"WUOCgI\":\"Miesto bolo úspešne ponúknuté\",\"IvxA4G\":[\"Lístky boli úspešne ponúknuté \",[\"count\"],\" osobám\"],\"kKpkzy\":\"Lístky boli úspešne ponúknuté 1 osobe\",\"Zi3Sbw\":\"Úspešne odstránené zo zoznamu čakateľov\",\"RuaKfn\":\"Adresa bola úspešne aktualizovaná\",\"kzx0uD\":\"Predvolené nastavenia udalosti boli úspešne aktualizované\",\"5n+Wwp\":\"Organizátor bol úspešne aktualizovaný\",\"DMCX/I\":\"Predvolené nastavenia poplatkov platformy boli úspešne aktualizované\",\"URUYHc\":\"Nastavenia poplatkov platformy boli úspešne aktualizované\",\"kRWc2g\":\"Nastavenia opakujúceho sa podujatia boli úspešne aktualizované\",\"0Dk/l8\":\"SEO nastavenia boli úspešne aktualizované\",\"S8Tua9\":\"Nastavenia boli úspešne aktualizované\",\"MhOoLQ\":\"Sociálne odkazy boli úspešne aktualizované\",\"CNSSfp\":\"Nastavenia sledovania boli úspešne aktualizované\",\"kj7zYe\":\"Webhook bol úspešne aktualizovaný\",\"dXoieq\":\"Súhrn\",\"/RfJXt\":[\"Letný hudobný festival \",[\"0\"]],\"CWOPIK\":\"Letný hudobný festival 2025\",\"D89zck\":\"Sun\",\"DBC3t5\":\"Sunday\",\"UaISq3\":\"Švédčina\",\"JZTQI0\":\"Prepnúť organizátora\",\"9YHrNC\":\"Predvolené systémové\",\"lruQkA\":\"Tap this screen to resume scanning\",\"TJUrME\":[\"Targeting attendees across \",[\"0\"],\" selected sessions.\"],\"yT6dQ8\":\"Vybraná daň zoskupená podľa typu dane a udalosti\",\"Ye321X\":\"Názov dane\",\"WyCBRt\":\"Súhrn daní\",\"GkH0Pq\":\"Dane a poplatky uplatnené\",\"Rwiyt2\":\"Dane nakonfigurované\",\"iQZff7\":\"Dane, poplatky, viditeľnosť, obdobie predaja, zvýraznenie produktu a limity objednávok\",\"SXvRWU\":\"Team collaboration\",\"vlf/In\":\"Technológie\",\"SchpMp\":\"Telegram\",\"iWa9cY\":\"Povedzte ľuďom, čo môžu očakávať na vašej udalosti\",\"NiIUyb\":\"Povedzte nám o svojej udalosti\",\"DovcfC\":\"Povedzte nám o svojej organizácii. Tieto informácie sa zobrazia na stránkach vašich udalostí.\",\"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\":\"Šablóna aktívna\",\"QHhZeE\":\"Šablóna bola úspešne vytvorená\",\"xrWdPR\":\"Šablóna bola úspešne odstránená\",\"G04Zjt\":\"Šablóna bola úspešne uložená\",\"xowcRf\":\"Podmienky služby\",\"6K0GjX\":\"Text môže byť ťažko čitateľný\",\"nm3Iz/\":\"Ďakujeme za účasť!\",\"pYwj0k\":\"Thanks,\",\"k3IitN\":\"That's a wrap\",\"KfmPRW\":\"Farba pozadia stránky. Pri použití obrázka obalu sa aplikuje ako prekrytie.\",\"MDNyJz\":\"Kód vyprší za 10 minút. Skontrolujte priečinok so spamom, ak e-mail nevidíte.\",\"AIF7J2\":\"Mena, v ktorej je definovaný pevný poplatok. Bude prevedená na menu objednávky pri pokladni.\",\"7oksH+\":[\"Zľava sa odpočíta z každého oprávneného produktu. Napr. zľava \",[\"currencySymbol\"],\"10 × 3 lístky = zľava \",[\"currencySymbol\"],\"30.\"],\"sKL8k2\":\"Zľava sa odpočíta jedenkrát z celkovej sumy objednávky.\",\"cDHM1d\":\"E-mailová adresa bola zmenená. Účastník dostane nový lístok na aktualizovanú e-mailovú adresu.\",\"tXadb0\":\"Udalosť, ktorú hľadáte, momentálne nie je dostupná. Mohla byť odstránená, vypršala alebo URL môže byť nesprávna.\",\"5fPdZe\":\"The first date this schedule will generate from.\",\"sxKqBm\":\"Celá suma objednávky bude vrátená na pôvodný platobný prostriedok zákazníka.\",\"KgDp6G\":\"Odkaz, ku ktorému sa pokúšate pristúpiť, vypršal alebo už nie je platný. Skontrolujte e-mail pre aktualizovaný odkaz na správu objednávky.\",\"Np4eLs\":[\"The maximum is \",[\"MAX_PREVIEW\"],\" sessions. Please reduce the date range, frequency, or number of sessions per day.\"],\"sYLeDq\":\"Organizátor, ktorého hľadáte, sa nenašiel. Stránka mohla byť presunutá, odstránená alebo URL môže byť nesprávna.\",\"PCr4zw\":\"The override is recorded in the order audit log.\",\"C4nQe5\":\"Poplatok platformy sa pripočíta k cene lístka. Kupujúci zaplatia viac, ale vy dostanete plnú cenu lístka.\",\"HxxXZO\":\"Primárna farba značky používaná pre tlačidlá a zvýraznenia\",\"OVSkIF\":\"Príliš žlutý kůň úpěl ďábelské ódy.\",\"z0KrIG\":\"Naplánovaný čas je povinný\",\"EWErQh\":\"Naplánovaný čas musí byť v budúcnosti\",\"UNd0OU\":[\"The session for \\\"\",[\"title\"],\"\\\" originally scheduled for \",[\"0\"],\" has been rescheduled.\"],\"DEcpfp\":\"Telo šablóny obsahuje neplatnú Liquid syntax. Opravte ju a skúste znovu.\",\"injXD7\":\"Číslo DPH sa nepodarilo overiť. Skontrolujte číslo a skúste znovu.\",\"A4UmDy\":\"Divadlo\",\"tDwYhx\":\"Téma a farby\",\"ybBP2H\":\"There are no products available for this date. Please choose another date.\",\"O7g4eR\":\"There are no upcoming dates for this event\",\"062KsE\":\"These details are shown on the attendee's ticket and order summary for this date only.\",\"5Eu+tn\":\"Tieto údaje sa zobrazia až po úspešnom dokončení objednávky.\",\"jQjwR+\":\"These details will replace any existing location on the affected dates and show on attendee tickets.\",\"6eaLu/\":\"Tieto ceny platia pre všetky termíny vo vašom rozvrhu a množstvá úrovní obmedzujú celkový predaj za všetky termíny spolu. Dátumy predaja úrovní platia globálne. Ceny pre jednotlivé termíny môžete prepísať na <0>stránke Rozvrh termínov.\",\"QP3gP+\":\"Tieto nastavenia sa vzťahujú iba na skopírovaný kód na vloženie a nebudú uložené.\",\"HirZe8\":\"Tieto šablóny budú použité ako predvolené pre všetky udalosti vo vašej organizácii. Jednotlivé udalosti môžu tieto šablóny prepísať vlastnými verziami.\",\"lzAaG5\":\"Tieto šablóny prepíšu predvolené nastavenia organizátora iba pre túto udalosť. Ak tu nie je nastavená vlastná šablóna, použije sa šablóna organizátora.\",\"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\":\"Tento kód sa použije na sledovanie predajov. Povolené sú iba písmená, číslice, pomlčky a podčiarkovníky.\",\"AaP0M+\":\"Táto kombinácia farieb môže byť pre niektorých používateľov ťažko čitateľná\",\"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.\",\"E9BqZw\":\"This date only\",\"RzEvf5\":\"Táto udalosť sa skončila\",\"kc4bIA\":\"Táto udalosť zatiaľ nemá žiadne vstupenky ani produkty, takže účastníci sa nebudú môcť zaregistrovať.\",\"eMaNd0\":\"This event is not available\",\"YClrdK\":\"Táto udalosť ešte nie je zverejnená\",\"GL6z+k\":\"Toto podujatie je vypredané\",\"pIwDhS\":\"This event's dates and times are set on the occurrence schedule.\",\"ny5rgr\":\"This is a recurring event\",\"tc64Zz\":\"Toto je názov kategórie, ktorý sa zobrazí na stránke podujatia.\",\"dFJnia\":\"Toto je meno vášho organizátora, ktoré sa zobrazí vašim používateľom.\",\"vt7jiq\":\"Toto je jediný čas, kedy sa zobrazí podpisový tajný kľúč. Skopírujte ho teraz a bezpečne uložte.\",\"5DpZrC\":\"Toto obmedzuje celkový predaj za všetky termíny vo vašom rozvrhu spolu — nejde o limit na termín. Ak chcete obmedziť účasť na jednotlivých termínoch, nastavte kapacitu na <0>stránke Rozvrh termínov.\",\"L7dIM7\":\"Tento odkaz je neplatný alebo vypršal.\",\"MR5ygV\":\"Tento odkaz už nie je platný\",\"9LEqK0\":\"Tento názov je viditeľný pre koncových používateľov\",\"QdUMM9\":\"This occurrence is at capacity\",\"j5FdeA\":\"Táto objednávka sa spracováva.\",\"sjNPMw\":\"Táto objednávka bola opustená. Novú objednávku môžete začať kedykoľvek.\",\"OhCesD\":\"Táto objednávka bola zrušená. Novú objednávku môžete začať kedykoľvek.\",\"lyD7rQ\":\"Profil tohto organizátora ešte nie je zverejnený\",\"9b5956\":\"Tento náhľad ukazuje, ako bude váš e-mail vyzerať so vzorovými dátami. Skutočné e-maily budú používať reálne hodnoty.\",\"uM9Alj\":\"Tento produkt je zvýraznený na stránke udalosti\",\"RqSKdX\":\"Tento produkt je vypredaný\",\"qEGn8I\":\"Táto opakujúca sa udalosť zatiaľ nemá žiadne termíny, takže účastníci si nemajú čo rezervovať.\",\"W12OdJ\":\"Táto správa slúži iba na informačné účely. Pred použitím týchto dát na účtovné alebo daňové účely vždy konzultujte s daňovým poradcom. Skontrolujte si aj Stripe dashboard, pretože Hi.Events môže mať chýbajúce historické dáta.\",\"1LuJNw\":\"Táto vstupenka už nie je platná\",\"0Ew0uk\":\"Tento lístok bol práve naskenovaný. Pred ďalším skenovaním počkajte.\",\"FYXq7k\":[\"This will affect \",[\"loadedAffectedCount\"],\" date(s).\"],\"kvpxIU\":\"Toto sa použije na notifikácie a komunikáciu s vašimi používateľmi.\",\"rhsath\":\"Toto nebude viditeľné pre zákazníkov, ale pomáha vám identifikovať partnera.\",\"hV6FeJ\":\"Throughput\",\"+FjWgX\":\"Thu\",\"kkDQ8m\":\"Thursday\",\"0GSPnc\":\"Dizajn lístka\",\"EZC/Cu\":\"Dizajn lístka bol úspešne uložený\",\"bbslmb\":\"Návrhár lístka\",\"1BPctx\":\"Lístok pre\",\"HGuXjF\":\"Držitelia lístkov\",\"CMUt3Y\":\"Držitelia lístkov\",\"awHmAT\":\"ID lístka\",\"6czJik\":\"Logo lístka\",\"t79rDv\":\"Lístok nenájdený\",\"6tmWch\":\"Lístok alebo produkt\",\"1tfWrD\":\"Náhľad lístka pre\",\"KnjoUA\":\"Cena lístka\",\"pGZOcL\":\"Lístok bol úspešne znovu odoslaný\",\"o02GZM\":\"Ticket sales have ended for this event\",\"8jLPgH\":\"Typ lístka\",\"8qsbZ5\":\"Predaj lístkov\",\"zNECqg\":\"lístky\",\"6GQNLE\":\"Lístky\",\"NRhrIB\":\"Lístky a produkty\",\"OrWHoZ\":\"Lístky sú automaticky ponúkané zákazníkom v zozname čakateľov, keď sa uvoľní kapacita.\",\"EUnesn\":\"Dostupné lístky\",\"AGRilS\":\"Predané lístky\",\"zyUxcw\":\"TikTok\",\"LhMjLm\":\"Time\",\"fXf2r5\":[\"Times shown in \",[\"timezoneAbbr\"]],\"dMtLDE\":\"to\",\"/jQctM\":\"Do\",\"tiI71C\":\"Na zvýšenie limitov nás kontaktujte na\",\"ecUA8p\":\"Today\",\"W428WC\":\"Prepnúť stĺpce\",\"BRMXj0\":\"Tomorrow\",\"UBSG1X\":\"Najlepší organizátori (posledných 14 dní)\",\"3sZ0xx\":\"Celkový počet účtov\",\"SMDzqJ\":\"Celkový počet účastníkov\",\"orBECM\":\"Celkovo vybrané\",\"k5CU8c\":\"Celkový počet záznamov\",\"4B7oCp\":\"Celkový poplatok\",\"sMMlTX\":\"Total fees\",\"mlvCEl\":\"Total orders\",\"2AW/k5\":\"Celkové množstvo pre všetky termíny\",\"dp8BCb\":\"Total tax\",\"vb0Q0/\":\"Celkový počet používateľov\",\"oJjplO\":\"Celkový počet zobrazení\",\"rBZ9pz\":\"Tours\",\"orluER\":\"Sledovať rast účtu a výkonnosť podľa zdroja priradenia\",\"YwKzpH\":\"Sledovanie a analytika\",\"GUA0Jy\":\"Try a different search term or filter\",\"2P/OWN\":\"Try adjusting your filters to see more dates.\",\"ouM5IM\":\"Skúste iný e-mail\",\"3DZvE7\":\"Vyskúšajte Hi.Events zadarmo\",\"vq2WxD\":\"Tue\",\"G3myU+\":\"Tuesday\",\"Kz91g/\":\"Turečtina\",\"GdOhw6\":\"Vypnúť zvuk\",\"KUOhTy\":\"Zapnúť zvuk\",\"dBeuY2\":\"Twitch\",\"QytzQr\":\"Napíšte \\\"odstrániť\\\" na potvrdenie\",\"nWRfmt\":\"Typografia\",\"IrVSu+\":\"Nie je možné duplikovať produkt. Skontrolujte svoje údaje\",\"Vx2J6x\":\"Nie je možné načítať účastníka\",\"h0dx5e\":\"Nie je možné pridať sa do zoznamu čakateľov\",\"DaE0Hg\":\"Unable to load attendee details.\",\"GlnD5Y\":\"Unable to load products for this date. Please try again.\",\"17VbmV\":\"Unable to undo check-in\",\"n57zCW\":\"Nepriradené účty\",\"9uI/rE\":\"Undo\",\"Ef7StM\":\"Neznáme\",\"ZBAScj\":\"Neznámy účastník\",\"MEIAzV\":\"Bez názvu\",\"K6L5Mx\":\"Miesto bez názvu\",\"7yiFvZ\":\"Nezaplatené\",\"X13xGn\":\"Nedôveryhodné\",\"gyXpQN\":\"Upcoming events\",\"Pp1sWX\":\"Aktualizovať partnera\",\"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\":\"Nahrať obrázok obalu pre vášho organizátora\",\"4kEGqW\":\"Nahrať logo pre vášho organizátora\",\"lnCMdg\":\"Nahrať obrázok\",\"29w7p6\":\"Nahrávanie obrázka...\",\"HtrFfw\":\"URL je povinná\",\"vzWC39\":\"USB\",\"td5pxI\":\"USB scanner listening\",\"dyTklH\":\"USB scanner paused\",\"OHJXlK\":\"Použite <0>Liquid šablonovanie na personalizáciu e-mailov\",\"/rsy72\":\"Use event default\",\"0k4cdb\":\"Použiť údaje objednávky pre všetkých účastníkov. Mená a e-maily účastníkov budú zodpovedať informáciám kupujúceho.\",\"bA31T4\":\"Použiť údaje kupujúceho pre všetkých účastníkov\",\"PpgtnC\":\"Použiť túto adresu\",\"rnoQsz\":\"Používa sa pre okraje, zvýraznenia a štýlovanie QR kódu\",\"BV4L/Q\":\"UTM analytika\",\"l5ackE\":\"UUID\",\"imLQ9Y\":\"Overovanie čísla DPH...\",\"t7caBM\":\"VAT country code\",\"WLkfqH\":\"VAT number\",\"pnVh83\":\"Číslo DPH\",\"CabI04\":\"Číslo DPH nesmie obsahovať medzery\",\"PMhxAR\":\"Číslo DPH musí začínať 2-písmenným kódom krajiny, za ktorým nasleduje 8–15 alfanumerických znakov (napr. DE123456789)\",\"gPgdNV\":\"Číslo DPH bolo úspešne overené\",\"RUMiLy\":\"Overenie čísla DPH zlyhalo\",\"vqji3Y\":\"Overenie čísla DPH zlyhalo. Skontrolujte číslo DPH.\",\"8dENF9\":\"DPH z poplatku\",\"ZutOKU\":\"Sadzba DPH\",\"+KJZt3\":\"VAT registered\",\"Nfbg76\":\"Nastavenia DPH boli úspešne uložené\",\"UvYql/\":\"Nastavenia DPH uložené. Overujeme číslo DPH na pozadí.\",\"bXn1Jz\":\"VAT settings updated\",\"tJylUv\":\"Zaobchádzanie s DPH pre poplatky platformy\",\"FlGprQ\":\"Zaobchádzanie s DPH pre poplatky platformy: firmy registrované pre DPH v EÚ môžu použiť mechanizmus prenesenia daňovej povinnosti (0 % – článok 196 smernice o DPH 2006/112/ES). Firmám neregistrovaným pre DPH sa účtuje írska DPH vo výške 23 %.\",\"516oLj\":\"Služba overenia DPH je dočasne nedostupná\",\"p6QQLa\":[\"VAT: \",[\"0\"]],\"5q87Y9\":\"VAT: not registered\",\"AdWhjZ\":\"Overovací kód\",\"kUAumu\":\"Verification email sent. Check your inbox.\",\"QDEWii\":\"Overené\",\"wCKkSr\":\"Overiť e-mail\",\"/IBv6X\":\"Overte svoj e-mail\",\"u8nB38\":\"Verify your email so attendees can receive tickets\",\"e/cvV1\":\"Overovanie...\",\"fROFIL\":\"Vietnamčina\",\"p5nYkr\":\"View All\",\"yA/6BX\":\"View all →\",\"6CQ7/B\":\"View all capabilities\",\"YSE15b\":\"View all check-in lists\",\"RnvnDc\":\"Zobraziť všetky správy odoslané naprieč platformou\",\"+WFMis\":\"Zobraziť a stiahnuť správy naprieč všetkými udalosťami. Zahrnuté sú iba dokončené objednávky.\",\"c7VN/A\":\"Zobraziť odpovede\",\"SZw9tS\":\"Zobraziť podrobnosti\",\"9+84uW\":[\"View details for \",[\"0\"],\" \",[\"1\"]],\"FCVmuU\":\"Zobraziť udalosť\",\"c6SXHN\":\"Zobraziť stránku udalosti\",\"n6EaWL\":\"Zobraziť protokoly\",\"OaKTzt\":\"Zobraziť mapu\",\"zNZNMs\":\"Zobraziť správu\",\"67OJ7t\":\"Zobraziť objednávku\",\"tKKZn0\":\"Zobraziť podrobnosti objednávky\",\"KeCXJu\":\"Zobraziť podrobnosti objednávky, vydávať vrátenia a znovu odosielať potvrdenia.\",\"9jnAcN\":\"Zobraziť domovskú stránku organizátora\",\"1J/AWD\":\"Zobraziť lístok\",\"N9FyyW\":\"Zobraziť, upraviť a exportovať registrovaných účastníkov.\",\"6dp/Hz\":\"Vimeo\",\"SS4mGB\":\"VK\",\"uUehLT\":\"Čakanie\",\"quR8Qp\":\"Čaká na platbu\",\"KrurBH\":\"Waiting for scan…\",\"u0n+wz\":\"Čakací zoznam\",\"3RXFtE\":\"Zoznam čakateľov povolený\",\"TwnTPy\":\"Ponuka zo zoznamu čakateľov vypršala\",\"aUi/Dz\":\"Upozornenie: Toto je predvolená konfigurácia systému. Zmeny ovplyvnia všetky účty, ktoré nemajú priradenú konkrétnu konfiguráciu.\",\"aT/44s\":\"We couldn't copy that Stripe connection. Please try again.\",\"RRZDED\":\"Nenašli sa žiadne objednávky spojené s touto e-mailovou adresou.\",\"2RZK9x\":\"Nenašla sa objednávka, ktorú hľadáte. Odkaz mohol vypršať alebo sa podrobnosti objednávky mohli zmeniť.\",\"nefMIK\":\"Nenašiel sa lístok, ktorý hľadáte. Odkaz mohol vypršať alebo sa podrobnosti lístka mohli zmeniť.\",\"miysJh\":\"Nenašla sa táto objednávka. Mohla byť odstránená.\",\"Fjj/5/\":\"We couldn't load the check-in lists. Please try again.\",\"ADsQ23\":\"We couldn't reach Stripe just now. Please try again in a moment.\",\"HJKdzP\":\"Nastala chyba pri načítaní tejto stránky. Skúste to znovu.\",\"jegrvW\":\"We partner with Stripe to send payouts straight to your bank account.\",\"IfN2Qo\":\"Odporúčame štvorcové logo s minimálnymi rozmermi 200x200px\",\"wJzo/w\":\"Odporúčame rozmery 400px x 400px a maximálnu veľkosť súboru 5 MB\",\"L/KlAh\":[\"We sent a verification link to \",[\"0\"]],\"KRCDqH\":\"Používame cookies na pochopenie používania stránky a zlepšenie vášho zážitku.\",\"x8rEDQ\":\"Nepodarilo sa overiť číslo DPH po viacerých pokusoch. Budeme pokračovať v overovaní na pozadí. Skúste to neskôr.\",\"mfM/HJ\":[\"Upozorníme vás e-mailom, ak sa uvoľní miesto pre \",[\"productDisplayName\"],\" dňa \",[\"occurrenceDate\"],\".\"],\"iy+M+c\":[\"Upozorníme vás e-mailom, ak sa uvoľní miesto pre \",[\"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\":\"Pošleme vaše lístky na tento e-mail\",\"ZOmUYW\":\"Overíme číslo DPH na pozadí. Ak nastanú problémy, dáme vám vedieť.\",\"LKjHr4\":[\"We've made changes to the schedule for \\\"\",[\"title\"],\"\\\" — \",[\"description\"],\" affecting \",[\"affectedCount\"],\" session(s).\"],\"Fq/Nx7\":\"Poslali sme 5-ciferný overovací kód na:\",\"GdWB+V\":\"Webhook bol úspešne vytvorený\",\"2X4ecw\":\"Webhook bol úspešne odstránený\",\"ndBv0v\":\"Webhook integrations\",\"CThMKa\":\"Protokoly webhookov\",\"I0adYQ\":\"Podpisový tajný kľúč webhooку\",\"nuh/Wq\":\"URL webhooку\",\"8BMPMe\":\"Webhook nebude odosielať notifikácie\",\"FSaY52\":\"Webhook bude odosielať notifikácie\",\"v1kQyJ\":\"Webhooky\",\"On0aF2\":\"Webstránka\",\"0f7U0k\":\"Wed\",\"VAcXNz\":\"Wednesday\",\"64X6l4\":\"week\",\"4XSc4l\":\"Weekly\",\"IAUiSh\":\"weeks\",\"vKLEXy\":\"Weibo\",\"9eF5oV\":\"Vitajte späť\",\"QDWsl9\":[\"Vitajte v \",[\"0\"],\", \",[\"1\"],\" 👋\"],\"LETnBR\":[\"Vitajte v \",[\"0\"],\", tu je zoznam všetkých vašich udalostí\"],\"DDbx7K\":\"Wellness\",\"ywRaYa\":\"What time?\",\"FaSXqR\":\"Aký typ udalosti?\",\"0WyYF4\":\"What unauthenticated staff can see\",\"2+ExvJ\":\"WhatsApp\",\"cxsKvw\":\"Keď je odbavenie odstránené\",\"RPe6bE\":\"When a date is cancelled on a recurring event\",\"Gmd0hv\":\"Keď je vytvorený nový účastník\",\"zyIyPe\":\"Keď je vytvorená nová udalosť\",\"Lc18qn\":\"Keď je vytvorená nová objednávka\",\"dfkQIO\":\"Keď je vytvorený nový produkt\",\"8OhzyY\":\"Keď je produkt odstránený\",\"tRXdQ9\":\"Keď je produkt aktualizovaný\",\"9L9/28\":\"Keď sa produkt vypredá, zákazníci sa môžu pridať do zoznamu čakateľov a byť upozornení, keď sa uvoľnia miesta.\",\"OIkHj+\":\"Keď sa produkt vypredá, zákazníci sa môžu pridať do zoznamu čakateľov a byť upozornení, keď sa uvoľnia miesta. Zákazníci sa pridávajú do zoznamu čakateľov pre konkrétny dátum a ponuky sa robia podľa dátumu.\",\"Q7CWxp\":\"Keď je účastník zrušený\",\"IuUoyV\":\"Keď je účastník odbavený\",\"nBVOd7\":\"Keď je účastník aktualizovaný\",\"t7cuMp\":\"Keď je udalosť archivovaná\",\"gtoSzE\":\"Keď je udalosť aktualizovaná\",\"ny2r8d\":\"Keď je objednávka zrušená\",\"c9RYbv\":\"Keď je objednávka označená ako zaplatená\",\"ejMDw1\":\"Keď je objednávka vrátená\",\"fVPt0F\":\"Keď je objednávka aktualizovaná\",\"bcYlvb\":\"Keď sa odbavenie uzavrie\",\"XIG669\":\"Keď sa odbavenie otvorí\",\"de6HLN\":\"Keď zákazníci zakúpia lístky, ich objednávky sa zobrazia tu.\",\"pm9tpn\":\"Ak je povolené, kupujúci môžu naraz skopírovať svoje meno a e-mail všetkým účastníkom. Vypnutím odstránite možnosť \\\"Všetci účastníci\\\"; kupujúci môžu stále skopírovať údaje prvému účastníkovi, ostatných je potrebné zadať jednotlivo.\",\"403wpZ\":\"Ak je povolené, nové udalosti umožnia účastníkom spravovať vlastné podrobnosti lístka cez zabezpečený odkaz. Toto môže byť prepísané pre každú udalosť.\",\"blXLKj\":\"Ak je povolené, nové udalosti zobrazia zaškrtávacie políčko marketingového súhlasu počas pokladne. Toto môže byť prepísané pre každú udalosť.\",\"Kj0Txn\":\"Ak je povolené, na transakcie Stripe Connect nebudú účtované žiadne poplatky aplikácie. Použite pre krajiny, kde poplatky aplikácie nie sú podporované.\",\"uchB0M\":\"Náhľad widgetu\",\"uvIqcj\":\"Workshop\",\"EpknJA\":\"Napíšte správu tu...\",\"nhtR6Y\":\"X (Twitter)\",\"7qI8sJ\":\"year\",\"zkWmBh\":\"Yearly\",\"+BGee5\":\"years\",\"X/azM1\":\"Áno – mám platné číslo registrácie DPH v EÚ\",\"Tz5oXG\":\"Áno, zrušiť objednávku\",\"QlSZU0\":[\"Zosobňujete <0>\",[\"0\"],\" (\",[\"1\"],\")\"],\"s14PLh\":[\"Vydávate čiastočné vrátenie. Zákazníkovi bude vrátené \",[\"0\"],\" \",[\"1\"],\".\"],\"o7LgX6\":\"Ďalšie servisné poplatky a dane môžete nakonfigurovať v nastaveniach účtu.\",\"rj3A7+\":\"You can override this for individual dates later.\",\"paWwQ0\":\"V prípade potreby môžete stále manuálne ponúkať lístky.\",\"jTDzpA\":\"Nemôžete archivovať posledného aktívneho organizátora na vašom účte.\",\"D8baxD\":\"Máte platené vstupenky, ale Stripe ešte nie je pripojený, takže nemôžete prijímať platby.\",\"5VGIlq\":\"Dosiahli ste limit správ.\",\"casL1O\":\"K bezplatnému produktu máte pridané dane a poplatky. Chcete ich odstrániť?\",\"9jJNZY\":\"Pred uložením musíte potvrdiť svoje povinnosti\",\"pCLes8\":\"Musíte súhlasiť s prijímaním správ\",\"FVTVBy\":\"Pred aktualizáciou stavu organizátora musíte overiť e-mailovú adresu.\",\"ze4bi/\":\"You need to create at least one occurrence before you can add attendees to this recurring event.\",\"w65ZgF\":\"Pred úpravou e-mailových šablón musíte overiť e-mail účtu.\",\"FRl8Jv\":\"Pred odosielaním správ musíte overiť e-mail účtu.\",\"88cUW+\":\"Dostanete\",\"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\":[\"Idete na \",[\"0\"],\"!\"],\"ZlLcht\":[\"Prihlasujete sa na čakaciu listinu na \",[\"occurrenceDate\"],\".\"],\"qGZz0m\":\"Ste v zozname čakateľov!\",\"/5HL6k\":\"Bolo vám ponúknuté miesto!\",\"gbjFFH\":\"You've changed the session time\",\"p/Sa0j\":\"Váš účet má limity správ. Na zvýšenie limitov nás kontaktujte na\",\"x/xjzn\":\"Vaši partneri boli úspešne exportovaní.\",\"TF37u6\":\"Vaši účastníci boli úspešne exportovaní.\",\"79lXGw\":\"Váš zoznam odbavení bol úspešne vytvorený. Zdieľajte odkaz nižšie so svojím personálom odbavenia.\",\"BnlG9U\":\"Vaša aktuálna objednávka bude stratená.\",\"nBqgQb\":\"Váš e-mail\",\"GG1fRP\":\"Vaša udalosť je živá!\",\"ifRqmm\":\"Vaša správa bola úspešne odoslaná!\",\"0/+Nn9\":\"Vaše správy sa zobrazia tu\",\"/Rj5P4\":\"Vaše meno\",\"PFjJxY\":\"Nové heslo musí mať aspoň 8 znakov.\",\"gzrCuN\":\"Podrobnosti objednávky boli aktualizované. Na novú e-mailovú adresu bol odoslaný potvrdzovací e-mail.\",\"naQW82\":\"Vaša objednávka bola zrušená.\",\"bhlHm/\":\"Vaša objednávka čaká na platbu\",\"XeNum6\":\"Vaše objednávky boli úspešne exportované.\",\"Xd1R1a\":\"Adresa vášho organizátora\",\"WWYHKD\":\"Vaša platba je chránená šifrovaním na bankovej úrovni\",\"5b3QLi\":\"Váš plán\",\"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\":\"Vaše lístky boli potvrdené.\",\"EmFsMZ\":\"Vaše číslo DPH je zaradené do frontu na overenie\",\"QBlhh4\":\"Vaše číslo DPH bude overené pri uložení\",\"fT9VLt\":\"Vaša ponuka zo zoznamu čakateľov vypršala a nepodarilo sa dokončiť objednávku. Pridajte sa znovu do zoznamu čakateľov, aby ste boli upozornení, keď sa uvoľnia ďalšie miesta.\",\"9Q6UKX\":\"YouTube\"}")}; \ No newline at end of file diff --git a/frontend/src/locales/sk.po b/frontend/src/locales/sk.po index 736757843e..81377f5522 100644 --- a/frontend/src/locales/sk.po +++ b/frontend/src/locales/sk.po @@ -179,11 +179,11 @@ msgstr "" msgid "{totalCount} ticket types" msgstr "{totalCount} typov lístkov" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:554 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:567 msgid "{totalOccurrences} dates" msgstr "" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:547 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:560 msgid "{totalOccurrences} sessions across {0} dates ({1, plural, one {# session} other {# sessions}} per day)" msgstr "" @@ -516,7 +516,7 @@ msgstr "Aktívne udalosti" msgid "Active payment methods" msgstr "" -#: src/components/routes/event/OccurrencesTab/index.tsx:400 +#: src/components/routes/event/OccurrencesTab/index.tsx:402 msgid "Activity" msgstr "" @@ -536,11 +536,11 @@ msgstr "" msgid "Add a description for this check-in list" msgstr "Pridajte popis pre tento zoznam odbavenia" -#: src/components/routes/event/OccurrencesTab/index.tsx:538 +#: src/components/routes/event/OccurrencesTab/index.tsx:541 msgid "Add a Single Date" msgstr "" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:739 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:752 msgid "Add another time" msgstr "" @@ -560,7 +560,7 @@ msgstr "Pridajte poznámky k objednávke. Tieto nebudú viditeľné pre zákazn msgid "Add any notes about the order..." msgstr "Pridajte poznámky k objednávke..." -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:375 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:382 msgid "Add at least one time" msgstr "" @@ -580,7 +580,7 @@ msgstr "" msgid "Add dates" msgstr "Pridať termíny" -#: src/components/routes/event/OccurrencesTab/index.tsx:524 +#: src/components/routes/event/OccurrencesTab/index.tsx:526 msgid "Add Dates" msgstr "" @@ -611,7 +611,7 @@ msgstr "Pridajte pokyny pre offline platby (napr. údaje bankového prevodu, kam msgid "Add Location" msgstr "Pridať miesto" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:743 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:756 msgid "Add multiple times if you run several sessions per day." msgstr "" @@ -796,7 +796,7 @@ msgid "all" msgstr "" #: src/components/layouts/CheckIn/tabs/SearchTab.tsx:133 -#: src/components/routes/event/OccurrencesTab/index.tsx:485 +#: src/components/routes/event/OccurrencesTab/index.tsx:487 msgid "All" msgstr "" @@ -987,7 +987,7 @@ msgstr "Nastala neočakávaná chyba." msgid "An unexpected error occurred. Please try again." msgstr "Nastala neočakávaná chyba. Skúste to znova." -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:849 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:862 msgid "and {0} more..." msgstr "" @@ -1003,7 +1003,7 @@ msgstr "" msgid "Answers provided at checkout (e.g. meal choice)" msgstr "" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:564 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:577 msgid "Any dates you've manually customized will be kept." msgstr "" @@ -1071,7 +1071,7 @@ msgstr "" msgid "Approve Message" msgstr "Schváliť správu" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:74 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:76 msgid "April" msgstr "" @@ -1127,7 +1127,7 @@ msgstr "Naozaj chcete archivovať túto udalosť? Nebude už verejne viditeľná msgid "Are you sure you want to archive this organizer? This will also archive all events belonging to this organizer." msgstr "Naozaj chcete archivovať tohto organizátora? Archivujú sa aj všetky udalosti patriace tomuto organizátorovi." -#: src/components/routes/event/OccurrencesTab/index.tsx:213 +#: src/components/routes/event/OccurrencesTab/index.tsx:215 msgid "Are you sure you want to cancel {count} date(s)? Affected attendees will be notified by email." msgstr "" @@ -1159,7 +1159,7 @@ msgstr "Naozaj chcete odstrániť túto konfiguráciu? Môže to ovplyvniť úč #: src/components/modals/ManageOccurrenceModal/index.tsx:58 #: src/components/routes/event/OccurrenceDetail/index.tsx:84 -#: src/components/routes/event/OccurrencesTab/index.tsx:182 +#: src/components/routes/event/OccurrencesTab/index.tsx:184 msgid "Are you sure you want to delete this date? This action cannot be undone." msgstr "" @@ -1446,7 +1446,7 @@ msgstr "Rozklad priradenia" msgid "Attribution Value" msgstr "Hodnota priradenia" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:78 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:80 msgid "August" msgstr "" @@ -1625,7 +1625,7 @@ msgstr "Brazílska portugalčina" msgid "Built-in fraud protection" msgstr "" -#: src/components/routes/event/OccurrencesTab/index.tsx:515 +#: src/components/routes/event/OccurrencesTab/index.tsx:517 msgid "Bulk Edit" msgstr "" @@ -1674,11 +1674,11 @@ msgstr "Pridaním sledovacích pixelov potvrdzujete, že vy a táto platforma st msgid "By continuing, you agree to the <0>{0} Terms of Service" msgstr "Pokračovaním súhlasíte s <0>Podmienkami služby {0}" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:628 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:641 msgid "By day of month" msgstr "" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:629 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:642 msgid "By day of week" msgstr "" @@ -1698,7 +1698,7 @@ msgstr "Obísť poplatky aplikácie" msgid "Calculation Type" msgstr "Typ výpočtu" -#: src/components/routes/event/OccurrencesTab/index.tsx:471 +#: src/components/routes/event/OccurrencesTab/index.tsx:473 msgid "Calendar" msgstr "" @@ -1735,7 +1735,7 @@ msgstr "" #: src/components/modals/ManageOrderModal/index.tsx:209 #: src/components/modals/PublishEventModal/index.tsx:208 #: src/components/routes/event/messages.tsx:80 -#: src/components/routes/event/OccurrencesTab/index.tsx:497 +#: src/components/routes/event/OccurrencesTab/index.tsx:499 #: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:272 #: src/components/routes/event/OccurrencesTab/OccurrenceEditModal/index.tsx:306 #: src/components/routes/event/OccurrencesTab/OccurrenceMenu.tsx:61 @@ -1748,8 +1748,8 @@ msgstr "" msgid "Cancel" msgstr "Zrušiť" -#: src/components/routes/event/OccurrencesTab/index.tsx:209 -#: src/components/routes/event/OccurrencesTab/index.tsx:221 +#: src/components/routes/event/OccurrencesTab/index.tsx:211 +#: src/components/routes/event/OccurrencesTab/index.tsx:223 msgid "Cancel {count} date(s)" msgstr "" @@ -1809,7 +1809,7 @@ msgstr "Zrušením sa zrušia všetci účastníci spojení s touto objednávkou msgid "Cancelled" msgstr "Zrušené" -#: src/components/routes/event/OccurrencesTab/index.tsx:235 +#: src/components/routes/event/OccurrencesTab/index.tsx:237 msgid "Cancelling {0} date(s). This may take a moment to complete." msgstr "" @@ -1819,7 +1819,7 @@ msgstr "Nie je možné odstrániť predvolenú konfiguráciu systému" #: src/components/forms/CapaciyAssigmentForm/index.tsx:42 #: src/components/routes/event/OccurrencesTab/OccurrenceEditModal/index.tsx:503 -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:811 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:824 msgid "Capacity" msgstr "Kapacita" @@ -2154,7 +2154,7 @@ msgid "City" msgstr "Mesto" #: src/components/common/OccurrenceSelect/index.tsx:133 -#: src/components/routes/event/OccurrencesTab/index.tsx:503 +#: src/components/routes/event/OccurrencesTab/index.tsx:505 msgid "Clear" msgstr "" @@ -2174,7 +2174,7 @@ msgstr "Vymazať text vyhľadávania" msgid "Clearing removes any per-date override. Affected dates will fall back to the event's default location." msgstr "" -#: src/components/routes/event/OccurrencesTab/index.tsx:331 +#: src/components/routes/event/OccurrencesTab/index.tsx:333 msgid "Click to cancel" msgstr "" @@ -2182,7 +2182,7 @@ msgstr "" msgid "Click to copy" msgstr "Kliknite na kopírovanie" -#: src/components/routes/event/OccurrencesTab/index.tsx:333 +#: src/components/routes/event/OccurrencesTab/index.tsx:335 msgid "Click to reopen for new sales" msgstr "" @@ -2743,7 +2743,7 @@ msgstr "Vytvoriť šablónu {0}" msgid "Create a custom widget to sell tickets on your site." msgstr "Vytvorte vlastný widget na predaj lístkov na vašom webe." -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:785 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:798 msgid "Create a fixed number" msgstr "" @@ -2879,7 +2879,7 @@ msgstr "Vytvoriť promo kód" msgid "Create Question" msgstr "Vytvoriť otázku" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:864 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:877 msgid "Create Schedule" msgstr "" @@ -2927,6 +2927,10 @@ msgstr "Vytvorte vlastnú udalosť" msgid "Created" msgstr "Vytvorené" +#: src/components/routes/event/OccurrencesTab/index.tsx:549 +msgid "Creating {0} dates. This may take a moment." +msgstr "Vytvára sa {0} termínov. Môže to chvíľu trvať." + #: src/components/routes/welcome/index.tsx:472 msgid "Creating Event..." msgstr "Vytváranie udalosti..." @@ -3066,7 +3070,7 @@ msgstr "Prispôsobte stránku svojej udalosti" msgid "Customize your organizer page appearance" msgstr "Prispôsobte vzhľad stránky organizátora" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:56 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:58 #: src/components/routes/product-widget/OccurrenceSelector/index.tsx:32 msgid "Daily" msgstr "" @@ -3155,7 +3159,7 @@ msgstr "" #: src/components/modals/ManageOccurrenceModal/index.tsx:61 #: src/components/routes/event/OccurrenceDetail/index.tsx:87 -#: src/components/routes/event/OccurrencesTab/index.tsx:184 +#: src/components/routes/event/OccurrencesTab/index.tsx:186 msgid "Date deleted" msgstr "" @@ -3168,7 +3172,7 @@ msgstr "" msgid "Date reactivated" msgstr "" -#: src/components/routes/event/OccurrencesTab/index.tsx:198 +#: src/components/routes/event/OccurrencesTab/index.tsx:200 msgid "Date reopened for new sales" msgstr "" @@ -3184,15 +3188,15 @@ msgstr "" msgid "Dates with sessions" msgstr "" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:93 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:95 msgid "day" msgstr "" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:659 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:672 msgid "Day" msgstr "" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:676 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:689 msgid "Day of Month" msgstr "" @@ -3200,19 +3204,19 @@ msgstr "" msgid "Day one capacity" msgstr "Kapacita prvého dňa" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:101 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:103 msgid "days" msgstr "" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:635 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:648 msgid "Days of Month" msgstr "" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:605 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:618 msgid "Days of Week" msgstr "" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:82 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:84 msgid "December" msgstr "" @@ -3230,7 +3234,7 @@ msgstr "Predvolené" msgid "Default attendee information collection" msgstr "Predvolený zber informácií o účastníkoch" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:815 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:828 msgid "Default capacity per date" msgstr "" @@ -3253,7 +3257,7 @@ msgstr "odstrániť" #: src/components/common/QuestionsTable/index.tsx:150 #: src/components/common/TaxAndFeeList/index.tsx:81 #: src/components/routes/admin/FailedJobs/index.tsx:209 -#: src/components/routes/event/OccurrencesTab/index.tsx:500 +#: src/components/routes/event/OccurrencesTab/index.tsx:502 #: src/components/routes/event/OccurrencesTab/OccurrenceMenu.tsx:62 msgid "Delete" msgstr "Vymazať" @@ -3262,7 +3266,7 @@ msgstr "Vymazať" msgid "Delete \"{0}\"?" msgstr "Vymazať \"{0}\"?" -#: src/components/routes/event/OccurrencesTab/index.tsx:247 +#: src/components/routes/event/OccurrencesTab/index.tsx:249 msgid "Delete {count} selected date(s)? Dates with orders will be skipped. This cannot be undone." msgstr "" @@ -3344,7 +3348,7 @@ msgstr "Odstrániť túto otázku? Túto akciu nie je možné vrátiť späť." msgid "Delete webhook" msgstr "Odstrániť webhook" -#: src/components/routes/event/OccurrencesTab/index.tsx:253 +#: src/components/routes/event/OccurrencesTab/index.tsx:255 msgid "Deleted {0} date(s)" msgstr "" @@ -3565,7 +3569,7 @@ msgstr "napr. 180 (3 hodiny)" #: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:452 #: src/components/routes/event/OccurrencesTab/OccurrenceEditModal/index.tsx:450 -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:714 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:727 msgid "e.g. Morning Session" msgstr "" @@ -3724,7 +3728,7 @@ msgstr "Upraviť webhook" msgid "Edit Webhook" msgstr "Upraviť webhook" -#: src/components/routes/event/OccurrencesTab/index.tsx:306 +#: src/components/routes/event/OccurrencesTab/index.tsx:308 msgid "Edited" msgstr "" @@ -3913,7 +3917,7 @@ msgstr "Povoliť zoznam čakateľov" msgid "Enabled" msgstr "Povolené" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:704 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:717 msgid "End" msgstr "" @@ -3934,7 +3938,7 @@ msgstr "Dátum a čas ukončenia (voliteľné)" msgid "End date must be after start date" msgstr "Dátum ukončenia musí byť po dátume začiatku" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:771 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:784 msgid "End on a date" msgstr "" @@ -4409,7 +4413,7 @@ msgstr "Nepodarilo sa zrušiť účastníka" msgid "Failed to cancel date" msgstr "" -#: src/components/routes/event/OccurrencesTab/index.tsx:239 +#: src/components/routes/event/OccurrencesTab/index.tsx:241 msgid "Failed to cancel dates" msgstr "" @@ -4429,10 +4433,14 @@ msgstr "Nepodarilo sa vytvoriť partnera" msgid "Failed to create configuration" msgstr "Nepodarilo sa vytvoriť konfiguráciu" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:530 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:543 msgid "Failed to create schedule" msgstr "" +#: src/hooks/useOccurrenceGenerationPolling.ts:44 +msgid "Failed to create schedule. Please try again." +msgstr "Nepodarilo sa vytvoriť harmonogram. Skúste to znova." + #: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:192 #: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:195 msgid "Failed to create template" @@ -4444,7 +4452,7 @@ msgstr "Nepodarilo sa odstrániť konfiguráciu" #: src/components/modals/ManageOccurrenceModal/index.tsx:64 #: src/components/routes/event/OccurrenceDetail/index.tsx:90 -#: src/components/routes/event/OccurrencesTab/index.tsx:185 +#: src/components/routes/event/OccurrencesTab/index.tsx:187 msgid "Failed to delete date" msgstr "" @@ -4452,7 +4460,7 @@ msgstr "" msgid "Failed to delete date. It may have existing orders." msgstr "" -#: src/components/routes/event/OccurrencesTab/index.tsx:256 +#: src/components/routes/event/OccurrencesTab/index.tsx:258 msgid "Failed to delete dates" msgstr "" @@ -4540,7 +4548,7 @@ msgstr "Nepodarilo sa odstrániť zo zoznamu čakateľov" msgid "Failed to remove override" msgstr "" -#: src/components/routes/event/OccurrencesTab/index.tsx:199 +#: src/components/routes/event/OccurrencesTab/index.tsx:201 msgid "Failed to reopen date" msgstr "" @@ -4677,7 +4685,7 @@ msgstr "" msgid "Fast payouts to your bank" msgstr "" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:72 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:74 msgid "February" msgstr "" @@ -4769,7 +4777,7 @@ msgstr "" msgid "Finish setup" msgstr "" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:63 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:65 msgid "First" msgstr "" @@ -4882,7 +4890,7 @@ msgstr "Text päty" msgid "Forgot password?" msgstr "Zabudli ste heslo?" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:66 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:68 msgid "Fourth" msgstr "" @@ -4909,11 +4917,11 @@ msgstr "Bezplatný produkt, nevyžadujú sa platobné informácie" msgid "French" msgstr "Francúzština" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:586 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:599 msgid "Frequency" msgstr "" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:50 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:52 msgid "Fri" msgstr "" @@ -5004,7 +5012,7 @@ msgstr "GitHub" #: src/components/routes/event/OccurrenceDetail/index.tsx:72 #: src/components/routes/event/OccurrencesTab/cancelOccurrenceDialog.tsx:49 -#: src/components/routes/event/OccurrencesTab/index.tsx:221 +#: src/components/routes/event/OccurrencesTab/index.tsx:223 #: src/components/routes/event/OccurrencesTab/OccurrenceEditModal/index.tsx:339 #: src/components/routes/event/OccurrencesTab/OccurrenceEditModal/index.tsx:363 msgid "Go Back" @@ -5271,7 +5279,7 @@ msgstr "Ako sa zľava uplatňuje?" msgid "How long a customer has to complete their purchase after receiving an offer. Leave empty for no timeout." msgstr "Ako dlho má zákazník na dokončenie nákupu po prijatí ponuky. Nechajte prázdne pre bez časového limitu." -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:750 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:763 msgid "How long does the schedule run?" msgstr "" @@ -5283,7 +5291,7 @@ msgstr "Koľko minút má zákazník na dokončenie objednávky. Odporúčame as msgid "How many times can this code be used?" msgstr "Koľkokrát môže byť tento kód použitý?" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:581 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:594 msgid "How often?" msgstr "" @@ -5589,7 +5597,7 @@ msgstr "položka/položky" msgid "Items" msgstr "Položky" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:71 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:73 msgid "January" msgstr "" @@ -5640,11 +5648,11 @@ msgstr "Pridať sa do zoznamu čakateľov pre {productDisplayName}" msgid "Joined" msgstr "Pripojený" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:77 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:79 msgid "July" msgstr "" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:76 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:78 msgid "June" msgstr "" @@ -5670,7 +5678,7 @@ msgstr "" #: src/components/forms/ProductForm/index.tsx:108 #: src/components/routes/event/OccurrencesTab/OccurrenceEditModal/index.tsx:449 -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:711 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:724 #: src/components/routes/event/Reports/OccurrenceSummaryReport/index.tsx:45 msgid "Label" msgstr "Popis" @@ -5685,7 +5693,7 @@ msgstr "" msgid "Language" msgstr "Jazyk" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:67 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:69 msgid "Last" msgstr "" @@ -5794,7 +5802,7 @@ msgid "Leave blank to use the default word \"Invoice\"" msgstr "Nechajte prázdne pre použitie predvoleného slova \"Faktúra\"" #: src/components/routes/event/OccurrencesTab/OccurrenceEditModal/index.tsx:507 -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:816 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:829 msgid "Leave empty for unlimited" msgstr "" @@ -5834,7 +5842,7 @@ msgstr "LinkedIn" msgid "Links Allowed" msgstr "Povolené odkazy" -#: src/components/routes/event/OccurrencesTab/index.tsx:470 +#: src/components/routes/event/OccurrencesTab/index.tsx:472 msgid "List" msgstr "" @@ -6003,7 +6011,7 @@ msgstr "" msgid "Manage attendee" msgstr "Spravovať účastníka" -#: src/components/routes/event/OccurrencesTab/index.tsx:460 +#: src/components/routes/event/OccurrencesTab/index.tsx:462 msgid "Manage dates and times for your recurring event" msgstr "" @@ -6074,7 +6082,7 @@ msgstr "Manuálne pridať účastníka" msgid "Manually Add Attendee" msgstr "Manuálne pridať účastníka" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:73 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:75 msgid "March" msgstr "" @@ -6098,7 +6106,7 @@ msgstr "Max. príjemcov / správa" msgid "Maximum Per Order" msgstr "Maximum na objednávku" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:75 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:77 msgid "May" msgstr "" @@ -6214,7 +6222,7 @@ msgstr "Rôzne nastavenia" msgid "Mode" msgstr "" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:46 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:48 msgid "Mon" msgstr "" @@ -6230,24 +6238,24 @@ msgstr "Peňažné hodnoty sú približné súčty naprieč všetkými menami" msgid "Monitor and manage failed background jobs" msgstr "Monitorovať a spravovať neúspešné úlohy na pozadí" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:95 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:97 msgid "month" msgstr "" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:671 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:684 msgid "Month" msgstr "Mesiac" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:58 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:60 #: src/components/routes/product-widget/OccurrenceSelector/index.tsx:41 msgid "Monthly" msgstr "" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:624 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:637 msgid "Monthly Pattern" msgstr "" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:103 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:105 msgid "months" msgstr "" @@ -6516,7 +6524,7 @@ msgstr "" msgid "No dates match the current filters." msgstr "" -#: src/components/routes/event/OccurrencesTab/index.tsx:570 +#: src/components/routes/event/OccurrencesTab/index.tsx:580 msgid "No dates match your filters" msgstr "" @@ -6529,7 +6537,7 @@ msgstr "" msgid "No dates scheduled" msgstr "Žiadne naplánované termíny" -#: src/components/routes/event/OccurrencesTab/index.tsx:570 +#: src/components/routes/event/OccurrencesTab/index.tsx:580 msgid "No dates scheduled yet" msgstr "" @@ -6820,11 +6828,11 @@ msgstr "" msgid "Notify organizer of new orders" msgstr "Notifikovať organizátora o nových objednávkach" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:81 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:83 msgid "November" msgstr "" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:800 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:813 msgid "Number of dates to create" msgstr "" @@ -6849,7 +6857,7 @@ msgid "Occurrence Cancelled" msgstr "" #: src/components/layouts/Event/index.tsx:113 -#: src/components/routes/event/OccurrencesTab/index.tsx:461 +#: src/components/routes/event/OccurrencesTab/index.tsx:463 msgid "Occurrence Schedule" msgstr "" @@ -6871,7 +6879,7 @@ msgstr "" msgid "Occurrences can be configured after creation" msgstr "" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:80 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:82 msgid "October" msgstr "" @@ -6965,7 +6973,7 @@ msgstr "Prebiehajúce" #: src/components/common/EventCard/index.tsx:103 #: src/components/layouts/OrganizerHomepage/EventCard/index.tsx:49 -#: src/components/routes/event/OccurrencesTab/index.tsx:316 +#: src/components/routes/event/OccurrencesTab/index.tsx:318 #: src/components/routes/event/OccurrencesTab/OccurrenceEditModal/index.tsx:473 #: src/components/routes/my-tickets/index.tsx:56 #: src/components/routes/product-widget/OccurrenceSelector/index.tsx:122 @@ -7080,7 +7088,7 @@ msgstr "Možnosti" msgid "or" msgstr "alebo" -#: src/components/routes/event/OccurrencesTab/index.tsx:593 +#: src/components/routes/event/OccurrencesTab/index.tsx:603 msgid "or add a single date" msgstr "" @@ -7088,7 +7096,7 @@ msgstr "" msgid "Or enable offline payments and disable Stripe" msgstr "Alebo povoľte offline platby a vypnite Stripe" -#: src/components/routes/event/OccurrencesTab/index.tsx:413 +#: src/components/routes/event/OccurrencesTab/index.tsx:415 msgid "order" msgstr "" @@ -7250,7 +7258,7 @@ msgstr "Objednávka bola úspešne aktualizovaná" msgid "Order was cancelled" msgstr "Objednávka bola zrušená" -#: src/components/routes/event/OccurrencesTab/index.tsx:413 +#: src/components/routes/event/OccurrencesTab/index.tsx:415 #: src/components/routes/event/orders.tsx:197 msgid "orders" msgstr "" @@ -7503,7 +7511,7 @@ msgid "Passwords are not the same" msgstr "Heslá sa nezhodujú" #: src/components/layouts/OrganizerHomepage/index.tsx:291 -#: src/components/routes/event/OccurrencesTab/index.tsx:484 +#: src/components/routes/event/OccurrencesTab/index.tsx:486 #: src/components/routes/organizer/Reports/EventsPerformanceReport/index.tsx:30 msgid "Past" msgstr "Minulé" @@ -7707,15 +7715,15 @@ msgstr "Osobné informácie" msgid "Phone" msgstr "Telefón" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:372 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:379 msgid "Pick an end date" msgstr "" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:380 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:387 msgid "Pick at least one day of the month" msgstr "" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:369 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:376 msgid "Pick at least one day of the week" msgstr "" @@ -7765,7 +7773,7 @@ msgstr "Príjmy platformy" msgid "Please add at least one option" msgstr "Pridajte aspoň jednu možnosť" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:527 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:540 #: src/hooks/useFormErrorResponseHandler.tsx:18 msgid "Please check the provided information is correct" msgstr "Skontrolujte, či sú zadané informácie správne" @@ -7895,7 +7903,7 @@ msgstr "Populárne udalosti (posledných 14 dní)" msgid "Portuguese" msgstr "Portugalčina" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:654 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:667 msgid "Position" msgstr "" @@ -8385,7 +8393,7 @@ msgstr "Referenčné účty" msgid "Refresh Preview" msgstr "Obnoviť náhľad" -#: src/components/routes/event/OccurrencesTab/index.tsx:216 +#: src/components/routes/event/OccurrencesTab/index.tsx:218 msgid "Refund all orders for these dates" msgstr "" @@ -8494,11 +8502,11 @@ msgstr "Úplne odstráni vypredané dátumy a časy zo stránky podujatia. Ak je msgid "Reopen for new sales" msgstr "" -#: src/components/routes/event/OccurrencesTab/index.tsx:192 +#: src/components/routes/event/OccurrencesTab/index.tsx:194 msgid "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." msgstr "" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:591 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:604 msgid "Repeat every" msgstr "" @@ -8699,7 +8707,7 @@ msgstr "Odvolať ponuku" msgid "Role" msgstr "Rola" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:772 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:785 msgid "Run until a specific date" msgstr "" @@ -8786,7 +8794,7 @@ msgstr "Vzorová cena lístka" msgid "Sample Venue" msgstr "Vzorové miesto konania" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:51 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:53 msgid "Sat" msgstr "" @@ -8836,7 +8844,7 @@ msgstr "" msgid "Save Organizer" msgstr "Uložiť organizátora" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:864 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:877 msgid "Save Schedule" msgstr "" @@ -8900,11 +8908,12 @@ msgstr "" msgid "Schedule added" msgstr "" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:520 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:530 +#: src/hooks/useOccurrenceGenerationPolling.ts:36 msgid "Schedule created successfully" msgstr "" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:793 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:806 msgid "Schedule ends on" msgstr "" @@ -8916,7 +8925,7 @@ msgstr "Naplánovať na neskôr" msgid "Schedule Message" msgstr "Naplánovať správu" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:755 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:768 msgid "Schedule starts on" msgstr "" @@ -9039,7 +9048,7 @@ msgstr "Vyhľadávať..." msgid "Seasonal" msgstr "" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:64 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:66 msgid "Second" msgstr "" @@ -9215,7 +9224,7 @@ msgstr "Vybrať, ktoré udalosti spustia tento webhook" msgid "Select..." msgstr "Vybrať..." -#: src/components/routes/event/OccurrencesTab/index.tsx:495 +#: src/components/routes/event/OccurrencesTab/index.tsx:497 msgid "selected" msgstr "" @@ -9345,7 +9354,7 @@ msgstr "SEO nastavenia" msgid "SEO Title" msgstr "SEO názov" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:79 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:81 msgid "September" msgstr "" @@ -9373,7 +9382,7 @@ msgstr "Nastavte predvolené nastavenia pre nové udalosti vytvorené pod týmto msgid "Set how long each date lasts" msgstr "" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:784 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:797 msgid "Set number of dates" msgstr "" @@ -9393,7 +9402,7 @@ msgstr "Nastavte počiatočné číslo pre číslovanie faktúr. Toto nie je mo msgid "Set to unlimited (remove limit)" msgstr "" -#: src/components/routes/event/OccurrencesTab/index.tsx:575 +#: src/components/routes/event/OccurrencesTab/index.tsx:585 msgid "Set up a recurring schedule to automatically create dates, or add them one at a time." msgstr "" @@ -9410,8 +9419,8 @@ msgstr "" msgid "Set up schedule" msgstr "" -#: src/components/routes/event/OccurrencesTab/index.tsx:532 -#: src/components/routes/event/OccurrencesTab/index.tsx:586 +#: src/components/routes/event/OccurrencesTab/index.tsx:535 +#: src/components/routes/event/OccurrencesTab/index.tsx:596 msgid "Set Up Schedule" msgstr "" @@ -9427,7 +9436,7 @@ msgstr "Nastavte svoju organizáciu" msgid "Set up your schedule" msgstr "" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:569 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:582 msgid "Set Up Your Schedule" msgstr "" @@ -9564,7 +9573,7 @@ msgstr "Zobraziť dane a poplatky samostatne" msgid "Showing {0} of {totalRows} records" msgstr "Zobrazuje sa {0} z {totalRows} záznamov" -#: src/components/routes/event/OccurrencesTab/index.tsx:614 +#: src/components/routes/event/OccurrencesTab/index.tsx:624 msgid "Showing {0}–{1} of {2}" msgstr "" @@ -9645,7 +9654,7 @@ msgstr "Sociálne odkazy a webová stránka" #: src/components/common/ProductsTable/SortableProduct/index.tsx:387 #: src/components/modals/ManageOccurrenceModal/index.tsx:186 -#: src/components/routes/event/OccurrencesTab/index.tsx:369 +#: src/components/routes/event/OccurrencesTab/index.tsx:371 msgid "Sold" msgstr "Predané" @@ -9753,7 +9762,7 @@ msgstr "" msgid "Standard product with a fixed price" msgstr "Štandardný produkt s pevnou cenou" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:696 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:709 msgid "Start" msgstr "" @@ -9846,7 +9855,7 @@ msgstr "" #: src/components/routes/admin/Messages/index.tsx:120 #: src/components/routes/admin/Messages/index.tsx:167 #: src/components/routes/admin/Messages/index.tsx:294 -#: src/components/routes/event/OccurrencesTab/index.tsx:326 +#: src/components/routes/event/OccurrencesTab/index.tsx:328 #: src/components/routes/event/Reports/OccurrenceSummaryReport/index.tsx:51 #: src/components/routes/event/Reports/PromoCodesReport/index.tsx:88 #: src/components/routes/organizer/Reports/EventsPerformanceReport/index.tsx:62 @@ -10104,7 +10113,7 @@ msgstr "Letný hudobný festival {0}" msgid "Summer Music Festival 2025" msgstr "Letný hudobný festival 2025" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:52 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:54 msgid "Sun" msgstr "" @@ -10231,7 +10240,7 @@ msgstr "Povedzte nám o svojej udalosti" msgid "Tell us about your organization. This information will be displayed on your event pages." msgstr "Povedzte nám o svojej organizácii. Tieto informácie sa zobrazia na stránkach vašich udalostí." -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:573 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:586 msgid "Tell us how often your event repeats and we'll create all the dates for you." msgstr "" @@ -10325,7 +10334,7 @@ msgstr "E-mailová adresa bola zmenená. Účastník dostane nový lístok na ak msgid "The event you're looking for is not available at the moment. It may have been removed, expired, or the URL might be incorrect." msgstr "Udalosť, ktorú hľadáte, momentálne nie je dostupná. Mohla byť odstránená, vypršala alebo URL môže byť nesprávna." -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:756 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:769 msgid "The first date this schedule will generate from." msgstr "" @@ -10345,7 +10354,7 @@ msgstr "Odkaz, ku ktorému sa pokúšate pristúpiť, vypršal alebo už nie je msgid "The link you clicked is invalid." msgstr "Odkaz, na ktorý ste klikli, je neplatný." -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:840 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:853 msgid "The maximum is {MAX_PREVIEW} sessions. Please reduce the date range, frequency, or number of sessions per day." msgstr "" @@ -10481,7 +10490,7 @@ msgstr "Tieto šablóny budú použité ako predvolené pre všetky udalosti vo 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 "Tieto šablóny prepíšu predvolené nastavenia organizátora iba pre túto udalosť. Ak tu nie je nastavená vlastná šablóna, použije sa šablóna organizátora." -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:65 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:67 msgid "Third" msgstr "" @@ -10744,7 +10753,7 @@ msgstr "Toto nebude viditeľné pre zákazníkov, ale pomáha vám identifikova msgid "Throughput" msgstr "" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:49 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:51 msgid "Thu" msgstr "" @@ -10881,7 +10890,7 @@ msgstr "Stupňované produkty umožňujú ponúkať viacero cenových možností msgid "TikTok" msgstr "TikTok" -#: src/components/routes/event/OccurrencesTab/index.tsx:290 +#: src/components/routes/event/OccurrencesTab/index.tsx:292 msgid "Time" msgstr "" @@ -10912,7 +10921,7 @@ msgstr "Počet použití" msgid "Timezone" msgstr "Časové pásmo" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:702 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:715 msgid "to" msgstr "" @@ -11056,7 +11065,7 @@ msgstr "Sledovanie a analytika" msgid "Try a different search term or filter" msgstr "" -#: src/components/routes/event/OccurrencesTab/index.tsx:574 +#: src/components/routes/event/OccurrencesTab/index.tsx:584 msgid "Try adjusting your filters to see more dates." msgstr "" @@ -11069,7 +11078,7 @@ msgstr "Skúste iný e-mail" msgid "Try Hi.Events Free" msgstr "Vyskúšajte Hi.Events zadarmo" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:47 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:49 msgid "Tue" msgstr "" @@ -11232,7 +11241,7 @@ msgstr "Nedôveryhodné" #: src/components/common/EventsDashboardStatusButtons/index.tsx:20 #: src/components/common/EventStatusBadge/index.tsx:16 #: src/components/layouts/OrganizerHomepage/index.tsx:285 -#: src/components/routes/event/OccurrencesTab/index.tsx:483 +#: src/components/routes/event/OccurrencesTab/index.tsx:485 #: src/components/routes/organizer/Reports/EventsPerformanceReport/index.tsx:33 msgid "Upcoming" msgstr "Nadchádzajúce" @@ -11880,7 +11889,7 @@ msgstr "Webhooky" msgid "Website" msgstr "Webstránka" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:48 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:50 msgid "Wed" msgstr "" @@ -11888,16 +11897,16 @@ msgstr "" msgid "Wednesday" msgstr "" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:94 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:96 msgid "week" msgstr "" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:57 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:59 #: src/components/routes/product-widget/OccurrenceSelector/index.tsx:35 msgid "Weekly" msgstr "" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:102 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:104 msgid "weeks" msgstr "" @@ -11953,7 +11962,7 @@ msgstr "Na ktoré produkty sa má táto kapacita vzťahovať?" msgid "What time will you be arriving?" msgstr "O koľkej prídete?" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:688 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:701 msgid "What time?" msgstr "" @@ -12140,7 +12149,7 @@ msgstr "Napíšte správu tu..." msgid "X (Twitter)" msgstr "X (Twitter)" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:96 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:98 msgid "year" msgstr "" @@ -12150,12 +12159,12 @@ msgstr "" msgid "Year to date" msgstr "Od začiatku roka" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:59 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:61 #: src/components/routes/product-widget/OccurrenceSelector/index.tsx:43 msgid "Yearly" msgstr "" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:104 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:106 msgid "years" msgstr "" @@ -12200,7 +12209,7 @@ msgstr "Ďalšie servisné poplatky a dane môžete nakonfigurovať v nastavenia msgid "You can create a promo code which targets this product on the" msgstr "Môžete vytvoriť promo kód, ktorý cieli na tento produkt na" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:823 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:836 msgid "You can override this for individual dates later." msgstr "" diff --git a/frontend/src/locales/tr.js b/frontend/src/locales/tr.js index 6216523986..b9714db163 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 Main Street\",\"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\":\"Are you sure you want to make this event public? This will make the event visible to the public\",\"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\":\"Attendee Notes\",\"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\":\"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\":\"İ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\":\"Etkinlik sayfanızı özelleştirin\",\"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\":\"Dismiss\",\"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\":\"Event URL\",\"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\":\"No attendees have been added to this order.\",\"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\":\"No product associated with this attendee.\",\"Ya1JhR\":\"Bu kategoride mevcut ürün yok.\",\"FTfObB\":\"Henüz Ürün Yok\",\"+Y976X\":\"Gösterilecek Promosyon Kodu yok\",\"MAavyl\":\"No questions answered by this attendee.\",\"SnlQeq\":\"No questions have been asked for this order.\",\"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\":\"Online event\",\"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\":\"Order #\",\"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\":\"Order Notes\",\"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\":\"Altyapı sağlayıcı\",\"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. Bu alanı şartlar\\nve koşullar, yönergeler veya katılımcıların yanıtlamadan önce bilmesi gereken önemli bilgileri eklemek için 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\":\"Suite 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\":\"View\",\"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\":\"(none)\",\"xYxQCZ\":[[\"0\"],\" \",[\"1\"]],\"lAOy2r\":[[\"0\"],\" \",[\"1\"],\" zaten giriş yaptı\"],\"3beCx0\":[[\"0\"],\" <0>checked in\"],\"S4PqS9\":[[\"0\"],\" Aktif Webhook\"],\"6MIiOI\":[[\"0\"],\" kaldı\"],\"COnw8D\":[[\"0\"],\" logosu\"],\"xG9N0H\":[[\"0\"],\" of \",[\"1\"],\" seats are taken.\"],\"B7pZfX\":[[\"0\"],\" organizatör\"],\"/HkCs4\":[[\"0\"],\" bilet\"],\"30bTiU\":[[\"activeCount\"],\" enabled\"],\"jTs4am\":[[\"appName\"],\" logo\"],\"gbJOk9\":[[\"attendeeCount\"],\" attendees are registered for this session.\"],\"TjbIUI\":[[\"totalCount\"],\" arasından \",[\"availableCount\"],\" mevcut\"],\"PSChHo\":[[\"capacity\"],\" yer kaldı\"],\"lzQ8/M\":[[\"checkedIn\"],\" / \",[\"total\"],\" checked in\"],\"RZ0JX3\":[[\"chipTime\"],\", tükendi\"],\"M4KnFs\":[[\"chipTime\"],\", Tükendi, bekleme listesi mevcut\"],\"SeyN12\":[[\"completedCount\"],\" of \",[\"totalCount\"],\" steps complete\"],\"f2rhaD\":[[\"diffHr\"],\"h ago\"],\"NRSLBe\":[[\"diffMin\"],\"m ago\"],\"iYfwJE\":[[\"diffSec\"],\"s ago\"],\"OJnhhX\":[[\"eventCount\"],\" etkinlik\"],\"mhZbzw\":[[\"loadedAffectedAttendees\"],\" attendees are registered across the affected sessions.\"],\"RBuxIl\":[[\"productCount\"],\" ticket types configured\"],\"VFLd0I\":[[\"slotCount\"],\" times available\"],\"3IEF7U\":[[\"totalCount\"],\" bilet türü\"],\"0cLzoF\":[[\"totalOccurrences\"],\" dates\"],\"AEGc4t\":[[\"totalOccurrences\"],\" sessions across \",[\"0\"],\" dates (\",[\"1\",\"plural\",{\"one\":[\"#\",\" session\"],\"other\":[\"#\",\" sessions\"]}],\" per day)\"],\"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.\",\"Il5Uid\":\"<0>Bu, programınızdaki tüm tarihler için toplam mevcut adettir — tarih başına bir sınır değildir. Her tarihin katılımcı sayısını sınırlamak için <1>Tarih Programı sayfasında kapasite belirleyin.\",\"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\":\"1 attendee is registered across the affected sessions.\",\"qOyE2U\":\"1 attendee is registered for this session.\",\"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\",\"y2Jh0m\":\"1 time available\",\"cGtUz6\":\"Etkinlikten 1 hafta önce\",\"HR/cvw\":\"123 Örnek Sokak\",\"dgKxZ5\":\"135+ currencies & 40+ payment methods\",\"kMU5aM\":\"İptal bildirimi gönderildi:\",\"o++0qa\":\"a change in duration\",\"WuWSX5\":\"A few quick steps and you're ready to start selling.\",\"RQ5kDd\":\"Bu kategoride ürün olmadığında gösterilecek mesaj.\",\"V53XzQ\":\"E-postanıza yeni bir doğrulama kodu gönderildi\",\"sr2Je0\":\"a shift in start/end times\",\"/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\":[\"Account · \",[\"0\"],\" · \",[\"1\"]],\"vOuxvL\":\"Hesap Bilgileri\",\"EHNORh\":\"Hesap bulunamadı\",\"bPwFdf\":\"Hesaplar\",\"AhwTa1\":\"Gerekli İşlem: KDV Bilgisi Gerekli\",\"APyAR/\":\"Aktif Etkinlikler\",\"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\":\"Ödeme sırasında ek bilgi toplamak için özel sorular ekleyin\",\"Z/dcxc\":\"Add Date\",\"QeupRg\":\"Tarih ekle\",\"Q219NT\":\"Add Dates\",\"yjB5VC\":\"Add dates and times for your recurring event\",\"Z8idyM\":\"Add details\",\"wpirGs\":\"Add event details\",\"VX6WUv\":\"Konum Ekle\",\"GCQlV2\":\"Add multiple times if you run several sessions per day.\",\"7JF9w9\":\"Soru Ekle\",\"NLbIb6\":\"Add this attendee anyway (override capacity)\",\"6PNlRV\":\"Bu etkinliği takviminize ekleyin\",\"BGD9Yt\":\"Bilet ekle\",\"uIv4Op\":\"Herkese açık etkinlik sayfalarınıza ve organizatör ana sayfanıza izleme pikselleri ekleyin. İzleme aktif olduğunda ziyaretçilere bir çerez onay banner'ı 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\":\"Affiliate 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.\",\"3e31kI\":\"After your event is created, you can choose how often it repeats from the dashboard.\",\"z7GAMJ\":\"all\",\"N40H+G\":\"All\",\"7rLTkE\":\"Tüm Arşivlenmiş Etkinlikler\",\"gKq1fa\":\"Tüm katılımcılar\",\"63gRoO\":\"All attendees of the selected sessions\",\"uWxIoH\":\"All attendees of this occurrence\",\"pMLul+\":\"Tüm Para Birimleri\",\"sgUdRZ\":\"All dates\",\"e4q4uO\":\"All Dates\",\"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\":\"All matching dates\",\"F1/VgK\":\"All occurrences\",\"OpWjMq\":\"All Occurrences\",\"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.\",\"VZdky1\":\"Alıcıların bilgilerini tüm katılımcılara kopyalamasına izin ver\",\"F3mW5G\":\"Bu ürün tükendiğinde müşterilerin bekleme listesine katılmasına izin ver\",\"4CMO/q\":\"Bu ürün tükendiğinde müşterilerin bekleme listesine katılmasına izin ver. Müşteriler belirli bir tarih için bekleme listesine katılır.\",\"c4uJfc\":\"Neredeyse bitti! Ödemenizin işlenmesini bekliyoruz. Bu sadece birkaç saniye sürmelidir.\",\"ocS8eq\":[\"Zaten hesabınız var mı? <0>\",[\"0\"],\"\"],\"uCuEqI\":\"Already in\",\"/H326L\":\"Zaten İade Edildi\",\"USEpOK\":\"Already use Stripe on another organizer? Reuse that connection.\",\"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.\",\"OPFdAM\":\"Etkinlik sayfasında gösterilecek bu kategorinin isteğe bağlı açıklaması.\",\"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\":[\"and \",[\"0\"],\" more...\"],\"QNrkms\":\"Cevap başarıyla güncellendi.\",\"+qygei\":\"Answers\",\"GK7Lnt\":\"Answers provided at checkout (e.g. meal choice)\",\"lE8PgT\":\"Any dates you've manually customized will be kept.\",\"jVoYha\":[\"uygulandı — siparişinizde \",[\"0\"],\" indirim\"],\"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\":\"Mesajı Onayla\",\"naCW6Z\":\"April\",\"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\":[\"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\":\"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/\":\"Are you sure you want to delete this date? This action cannot be undone.\",\"RiF/yT\":\"Are you sure you want to delete this image?\",\"b3+Qku\":\"Are you sure you want to delete this tax or fee? It will no longer be applied to new orders.\",\"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\":\"Are you sure you want to permanently delete this date? This cannot be undone.\",\"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?\",\"b7tkGp\":\"Are you sure you want to revoke this invitation?\",\"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\":\"Assign plan\",\"xdiER7\":\"Atanan Seviye\",\"F2rX0R\":\"En az bir etkinlik türü seçilmelidir\",\"Z44eZS\":\"At least one product must stay available for this date. To make the date inaccessible, cancel it from the schedule instead.\",\"BCmibk\":\"Denemeler\",\"6PecK3\":\"Tüm etkinliklerdeki katılım ve giriş oranları\",\"K2tp3v\":\"attendee\",\"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ı\",\"94aQMU\":\"Katılımcı Bilgileri\",\"KkrBiR\":\"Katılımcı bilgi toplama\",\"sjPjOg\":\"Attendee notes\",\"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\":\"attendees\",\"zLRobu\":\"attendees checked in\",\"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/\":\"August\",\"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 müsait olduğunda otomatik olarak sıradaki kişiye bilet teklif edin. Devre dışı bırakılırsa, bekleme listesini Bekleme Listesi sayfasından manuel olarak işleyebilirsiniz.\",\"csDS2L\":\"Mevcut\",\"Xp+ywP\":\"Ödeme tamamlandığında kullanılabilir\",\"dwDH1K\":[\"Available times on \",[\"dayName\"]],\"clF06r\":\"İade Edilebilir\",\"NB5+UG\":\"Mevcut Token'lar\",\"L+wGOG\":\"Awaiting\",\"qcw2OD\":\"Awaiting pay\",\"kNmmvE\":\"Harika Etkinlikler Ltd.\",\"TeSaQO\":\"Hesaplara Dön\",\"kYqM1A\":\"Etkinliğe Dön\",\"s5QRF3\":\"Mesajlara geri dön\",\"td/bh+\":\"Raporlara Dön\",\"nsm7BA\":\"Aramaya dön\",\"imjKVx\":\"Bank account connected\",\"D9LTCH\":\"Base Price\",\"hviJef\":\"Based on the global sale period above, not per date\",\"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\":\"Built-in fraud protection\",\"cr7kGH\":\"Bulk Edit\",\"1Fbd6n\":\"Bulk Edit Dates\",\"Eq6Tu9\":\"Bulk update failed.\",\"9N+p+g\":\"İş\",\"SWnN1L\":\"Business address\",\"kQekXw\":\"Business name\",\"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\":\"İzleme pikselleri ekleyerek, siz ve bu platformun toplanan verilerin ortak veri sorumluları olduğunuzu kabul edersiniz. Geçerli gizlilik yasaları (KVKK, GDPR, CCPA vb.) kapsamında bu işleme için yasal bir dayanağınız olduğundan emin olmak sizin sorumluluğunuzdadır.\",\"DFqasq\":[\"Devam ederek, <0>\",[\"0\"],\" Hizmet Koşullarını kabul etmiş olursunuz\"],\"wVSa+U\":\"By day of month\",\"0MnNgi\":\"By day of week\",\"CetOZE\":\"By ticket type\",\"lFdbRS\":\"Uygulama Ücretlerini Atla\",\"AjVXBS\":\"Calendar\",\"2VLZwd\":\"Harekete Geçirici Düğme\",\"rT2cV+\":\"Camera\",\"7hYa9y\":\"Camera permission was denied. <0>Request permission again, or grant this page camera access in your browser settings.\",\"D02dD9\":\"Kampanya\",\"RRPA79\":\"Can't check in\",\"OcVwAd\":[\"Cancel \",[\"count\"],\" date(s)\"],\"H4nE+E\":\"Tüm ürünleri iptal et ve havuza geri bırak\",\"Py78q9\":\"Cancel Date\",\"tOXAdc\":\"İptal etmek, bu siparişle ilişkili tüm katılımcıları iptal edecek ve biletleri mevcut havuza geri bırakacaktır.\",\"FPpqc7\":[\"Cancelling \",[\"0\"],\" date(s). This may take a moment to complete.\"],\"01sEfm\":\"Sistem varsayılan yapılandırması silinemez\",\"VsM1HH\":\"Kapasite Atamaları\",\"9bIMVF\":\"Capacity management\",\"H7K8og\":\"Capacity must be 0 or greater\",\"nzao08\":\"capacity updates\",\"4cp9NP\":\"Capacity Used\",\"K7tIrx\":\"Kategori\",\"DRK3Bq\":\"Category deleted successfully\",\"o+XJ9D\":\"Değiştir\",\"kJkjoB\":\"Change duration\",\"J0KExZ\":\"Change the attendee limit\",\"ssospy\":\"Change time\",\"CIHJJf\":\"Bekleme listesi ayarlarını değiştir\",\"B5icLR\":[\"Changed duration for \",[\"count\"],\" date(s)\"],\"Kb+0BT\":\"Charges\",\"2tbLdK\":\"Hayır Kurumu\",\"BPWGKn\":\"Check in\",\"6uFFoY\":\"Check out\",\"FjAlwK\":[\"Check out this event: \",[\"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\":\"Check-In\",\"udRwQs\":\"Giriş Oluşturuldu\",\"F4SRy3\":\"Giriş Silindi\",\"as6XfO\":[\"Check-in for \",[\"0\"],\" was undone\"],\"9s/wrQ\":\"Check-in history\",\"Wwztk4\":\"Check-In List\",\"9gPPUY\":\"Giriş Listesi Oluşturuldu\",\"dwjiJt\":\"Check-in list info\",\"7od0PV\":\"check-in lists\",\"f2vU9t\":\"Giriş Listeleri\",\"XprdTn\":\"Check-in navigation\",\"5tV1in\":\"Check-in progress\",\"SHJwyq\":\"Giriş Oranı\",\"qCqdg6\":\"Giriş Durumu\",\"cKj6OE\":\"Giriş Özeti\",\"7B5M35\":\"Girişler\",\"VrmydS\":\"Checked in\",\"DM4gBB\":\"Çince (Geleneksel)\",\"p8Jvp4\":\"Choose a configuration\",\"ElShBO\":\"Choose a different action\",\"pHEhf+\":\"Markanızla uyumlu bir yazı tipi seçin. Yazı tipleri Bunny Fonts üzerinden barındırılır.\",\"Zok1Gx\":\"Choose an organizer\",\"pkk46Q\":\"Bir Organizatör Seçin\",\"Ag32+c\":\"Choose another date\",\"Crr3pG\":\"Takvim seçin\",\"Z38ZJu\":\"Etkinlik tarihinin bilette nasıl gösterileceğini 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\":\"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\":\"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\":\"complete\",\"bUQMpb\":\"Complete Stripe setup\",\"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\":\"Configuration assigned\",\"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\":\"Configure which products are available for this occurrence and optionally adjust pricing.\",\"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\",\"/K4Vqr\":\"Ödeme almak için Stripe'ı bağlayın\",\"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\":\"Çevrimiçi etkinlikler için bağlantı ayrıntıları gereklidir\",\"jfC/xh\":\"İletişim\",\"LOFgda\":[[\"0\"],\" ile İletişime Geç\"],\"41BQ3k\":\"İletiş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\",\"s30OcA\":\"Tarih ve saatlerin etkinlik sayfasında nasıl gösterileceğini kontrol edin\",\"p2FRHj\":\"Bu etkinlik için platform ücretlerinin nasıl ele alınacağını kontrol edin\",\"NqfabH\":\"Control who gets in for this date\",\"fmYxZx\":\"Control who gets in, and when\",\"1JnTgU\":\"Yukarıdan kopyalandı\",\"FxVG/l\":\"Panoya kopyalandı\",\"PiH3UR\":\"Kopyalandı!\",\"4i7smN\":\"Copy account ID\",\"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\":\"Could not prepare the bulk update.\",\"KOavaU\":\"Adres ayrıntıları alınamadı\",\"/lq4oO\":\"Could not save date\",\"mHu0az\":\"Couldn't send verification email. Please try again.\",\"QOIm+S\":\"Sayılar tüm yaklaşan tarihleri içerir. Her kişiye katıldığı tarih için yer teklif edilir.\",\"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\":\"Covers every ticket\",\"zg4oSu\":[[\"0\"],\" Şablonu Oluştur\"],\"RKKhnW\":\"Sitenizde bilet satmak için özel bir widget oluşturun.\",\"6sk7PP\":\"Create a fixed number\",\"jqhTmw\":\"Create a list for this date\",\"PhioFp\":\"Create a new check-in list for an active session, or contact the organizer if you think this is a mistake.\",\"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\":\"Create Date\",\"Nc3l/D\":\"İndirimler, gizli biletler için erişim kodları ve özel teklifler oluşturun.\",\"PybJS2\":\"Create event\",\"eWEV9G\":\"Yeni şifre oluştur\",\"wl2iai\":\"Create Schedule\",\"8AiKIu\":\"Bilet veya Ürün Oluştur\",\"/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\":\"Bilet satmaya ve katılımcıları yönetmeye başlamak için ilk 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\":\"Currently assigned\",\"iTvh6I\":\"Şu anda satın alınabilir\",\"A42Dqn\":\"Custom branding\",\"Guo0lU\":\"Özel tarih ve saat\",\"WDMdn8\":\"Custom questions\",\"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\",\"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\":\"Daily\",\"/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\":\"Dance\",\"pvnfJD\":\"Koyu\",\"MaB9wW\":\"Date Cancellation\",\"e6cAxJ\":\"Date cancelled\",\"81jBnC\":\"Date cancelled successfully\",\"a/C/6R\":\"Date created successfully\",\"IW7Q+u\":\"Date deleted\",\"rngCAz\":\"Date deleted successfully\",\"vHbfoQ\":\"Date reactivated\",\"hvah+S\":\"Date reopened for new sales\",\"Ez0YsD\":\"Date updated successfully\",\"Te33mU\":\"Dates are managed per occurrence\",\"91zCxb\":\"Dates with sessions\",\"/ITcnz\":\"day\",\"H7OUPr\":\"Day\",\"JtHrX9\":\"Day of Month\",\"J/Upwb\":\"days\",\"vDVA2I\":\"Days of Month\",\"rDLvlL\":\"Days of Week\",\"r6zgGo\":\"December\",\"jbq7j2\":\"Reddet\",\"ovBPCi\":\"Varsayılan\",\"JtI4vj\":\"Varsayılan katılımcı bilgi toplama\",\"ULjv90\":\"Default capacity per date\",\"3R/Tu2\":\"Varsayılan ücret işleme\",\"1bZAZA\":\"Varsayılan şablon kullanılacak\",\"HNlEFZ\":\"sil\",\"KpnwJK\":[\"\\\"\",[\"0\"],\"\\\" silinsin mi?\"],\"BlII4o\":[\"Delete \",[\"count\"],\" selected date(s)? Dates with orders will be skipped. This cannot be undone.\"],\"vu7gDm\":\"Bağlı Kuruluşu Sil\",\"KZN4Lc\":\"Tümünü sil\",\"6EkaOO\":\"Delete Date\",\"io0G93\":\"Etkinliği Sil\",\"+jw/c1\":\"Görseli sil\",\"hdyeZ0\":\"İşi sil\",\"xxjZeP\":\"Konumu sil\",\"sY3tIw\":\"Organizatörü Sil\",\"UBv8UK\":\"Delete Permanently\",\"dPyJ15\":\"Şablonu Sil\",\"IQTR34\":\"Delete this category? Any products in it will also be deleted. This cannot be undone.\",\"/1wMxk\":\"Delete this product? This cannot be undone.\",\"mxsm1o\":\"Bu soruyu sil? Bu işlem geri alınamaz.\",\"snMaH4\":\"Webhook'u sil\",\"LIZZLY\":[\"Deleted \",[\"0\"],\" date(s)\"],\"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\":\"Different location\",\"E/QGRL\":\"Disabled\",\"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.\",\"HtaSQp\":\"Bilet aracında her tarih için kaç yer kaldığını gösterir. Bunu tek tek tarihler için değiştirebilirsiniz.\",\"pfa8F0\":\"Görünen ad\",\"Kdpf90\":\"Unutmayın!\",\"352VU2\":\"Hesabınız yok mu? <0>Kaydolun\",\"AXXqG+\":\"Bağış\",\"DPfwMq\":\"Tamam\",\"JoPiZ2\":\"Door staff instructions\",\"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önderebilmek için bir Stripe hesabı bağlamanız gerekmektedir.\\nBu, tüm etkinlik organizatörlerinin doğrulanmış ve hesap verebilir olmasını sağlamak içindir.\",\"euc6Ns\":\"Çoğalt\",\"YueC+F\":\"Duplicate Date\",\"KRmTkx\":\"Ürünü Çoğalt\",\"Jd3ymG\":\"Duration must be at least 1 minute.\",\"KIjvtr\":\"Felemenkçe\",\"22xieU\":\"ör. 180 (3 saat)\",\"/zajIE\":\"e.g. Morning Session\",\"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.\",\"Xfsjel\":\"Her ürün\",\"5oD9f/\":\"Earlier\",\"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\":\"Edit Date\",\"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\":\"Edited\",\"uBAxNB\":\"Düzenleyici\",\"aqxYLv\":\"Eğitim\",\"iiWXDL\":\"Uygunluk Hataları\",\"zPiC+q\":\"Uygun Giriş Listeleri\",\"SiVstt\":\"Email & scheduled messages\",\"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\":\"Embeddable 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\":\"End\",\"sGjBEq\":\"Bitiş Tarihi ve Saati (isteğe bağlı)\",\"PKXt9R\":\"Bitiş tarihi başlangıç tarihinden sonra olmalıdır\",\"ZayGC7\":\"End on a date\",\"48Y16Q\":\"Bitiş saati (isteğe bağlı)\",\"TbaYrr\":[\"Ended \",[\"0\"]],\"CFgwiw\":[\"Ends \",[\"0\"]],\"SqOIQU\":\"Enter a capacity value or choose unlimited.\",\"h37gRz\":\"Enter a label or choose to remove it.\",\"7YZofi\":\"Önizlemeyi görmek için bir konu ve gövde girin\",\"khyScF\":\"Enter a time to shift by.\",\"SKx/0u\":\"Bir mekan adı veya adres girin\",\"ppwojw\":\"Yüz yüze etkinlikler için bir mekan adı veya adres girin\",\"j+eCIq\":\"Adresi elle girin\",\"3bR1r4\":\"Bağlı kuruluş e-postasını girin (isteğe bağlı)\",\"ARkzso\":\"Bağlı kuruluş adını girin\",\"ej4L8b\":\"Enter capacity\",\"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)\",\"RRlWVA\":\"Tüm sipariş\",\"o21Y+P\":\"entries\",\"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\",\"+v+GW0\":\"Etkinlik tarihi gösterimi\",\"7u9/DO\":\"Etkinlik başarıyla silindi\",\"imgKgl\":\"Etkinlik Açıklaması\",\"IzR/Fc\":\"Event lifetime\",\"PYs3rP\":\"Etkinlik adı\",\"HhwcTQ\":\"Etkinlik Adı\",\"WZZzB6\":\"Etkinlik adı gerekli\",\"Wd5CDM\":\"Etkinlik adı 150 karakterden az olmalıdır\",\"4JzCvP\":\"Etkinlik Mevcut Değil\",\"mImacG\":\"Etkinlik Sayfası\",\"Hk9Ki/\":\"Etkinlik başarıyla geri yüklendi\",\"JyD0LH\":\"Etkinlik ayarları\",\"XVLu2v\":\"Etkinlik Başlığı\",\"OfmsI9\":\"Etkinlik Çok Yeni\",\"4SILkp\":\"Event totals\",\"YDVUVl\":\"Etkinlik Türleri\",\"+HeiVx\":\"Etkinlik güncellendi\",\"19j6uh\":\"Etkinlik Performansı\",\"PC3/fk\":\"Önümüzdeki 24 Saat İçinde Başlayan Etkinlikler\",\"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\":\"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\":\"Failed to cancel date\",\"YUX+f+\":\"Failed to cancel dates\",\"SIHgVQ\":\"Mesaj iptal edilemedi\",\"cEFg3R\":\"Bağlı kuruluş oluşturulamadı\",\"dVgNF1\":\"Yapılandırma oluşturulamadı\",\"fAoRRJ\":\"Failed to create schedule\",\"U66oUa\":\"Şablon oluşturulamadı\",\"aFk48v\":\"Yapılandırma silinemedi\",\"n1CYMH\":\"Failed to delete date\",\"KXv+Qn\":\"Failed to delete date. It may have existing orders.\",\"JJ0uRo\":\"Failed to delete dates\",\"rgoBnv\":\"Etkinlik silinemedi\",\"Zw6LWb\":\"İş silinemedi\",\"tq0abZ\":\"İşler silinemedi\",\"2mkc3c\":\"Organizatör silinemedi\",\"5E23qd\":\"Failed to delete product. Please try again.\",\"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\":\"Failed to reactivate date\",\"7zyx8a\":\"Bekleme listesinden kaldırma başarısız\",\"A/P7PX\":\"Failed to remove override\",\"ogWc1z\":\"Failed to reopen date\",\"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\":\"Failed to save override\",\"sj/eZA\":\"Failed to save price override\",\"780n8A\":\"Failed to save product settings\",\"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\":\"Family\",\"5LO38w\":\"Fast payouts to your bank\",\"4lgLew\":\"February\",\"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\":\"Filter attendees\",\"8OvVZZ\":\"Katılımcıları Filtrele\",\"N/H3++\":\"Filter by date\",\"mvrlBO\":\"Etkinliğe göre filtrele\",\"g+xRXP\":\"Finish setting up Stripe\",\"LHH461\":\"Finish setup\",\"syyeb9\":\"First\",\"Vj6wk9\":\"First 30 days\",\"/bpZYb\":\"First 7 days\",\"ziEnjY\":\"First 90 days\",\"1vBhpG\":\"İlk katılımcı\",\"4pwejF\":\"Ad gereklidir\",\"rVogsf\":\"Yayınlamak için sorunları giderin\",\"3lkYdQ\":\"Fixed fee\",\"6bBh3/\":\"Sabit Ücret\",\"zWqUyJ\":\"İşlem başına sabit ücret\",\"LWL3Bs\":\"Sabit ücret 0 veya daha büyük olmalıdır\",\"0RI8m4\":\"Flash off\",\"q0923e\":\"Flash on\",\"X+U6/w\":\"Yazı Tipi Ailesi\",\"lWxAUo\":\"Yiyecek ve İçecek\",\"nFm+5u\":\"Alt Bilgi Metni\",\"a8nooQ\":\"Fourth\",\"wtuVU4\":\"Frequency\",\"xVhQZV\":\"Fri\",\"39y5bn\":\"Friday\",\"f5UbZ0\":\"Full data ownership\",\"cfvx/y\":\"Full event\",\"MY2SVM\":\"Tam iade\",\"PGQLdy\":\"future\",\"8N/j1s\":\"Future dates only\",\"yRx/6K\":\"Future dates will be copied with capacity reset to zero\",\"T02gNN\":\"Genel Giriş\",\"3ep0Gx\":\"Organizatörünüz hakkında genel bilgiler\",\"ziAjHi\":\"Oluştur\",\"exy8uo\":\"Kod oluştur\",\"4CETZY\":\"Yol Tarifi Al\",\"pjkEcB\":\"Get Paid\",\"lGYzP6\":\"Get paid with Stripe\",\"ZDIydz\":\"Başlayın\",\"u6FPxT\":\"Bilet Al\",\"8KDgYV\":\"Etkinliğinizi hazırlayın\",\"RkXlPZ\":\"GitHub\",\"sr0UJD\":\"Go Back\",\"oNL5vN\":\"Etkinlik Sayfasına Git\",\"gHSuV/\":\"Ana sayfaya git\",\"8+Cj55\":\"Go to Schedule\",\"6nDzTl\":\"İyi okunabilirlik\",\"76gPWk\":\"Got it\",\"CZXzs4\":\"Yunanca\",\"aGWZUr\":\"Brüt gelir\",\"n8IUs7\":\"Brüt Gelir\",\"O1wAlQ\":\"Guest\",\"LIYoRQ\":\"Misafir yönetimi\",\"NUsTc4\":\"Happening now\",\"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\":\"Hi,\",\"/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\":\"Hide details\",\"FmogyU\":\"Seçenekleri Gizle\",\"uXNYjR\":\"Tükenen tarih ve saatleri gizle\",\"g9RcYX\":\"Tarihi gizle\",\"uMwTx7\":\"Bu kategori gizlensin mi?\",\"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\":\"Hobbies\",\"yY8wAv\":\"Hours\",\"49Tkiw\":\"İndirim nasıl uygulanır?\",\"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\":\"How long does the schedule run?\",\"DMr2XN\":\"How often?\",\"cceMns\":\"How VAT is applied to the platform fees we charge you.\",\"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\",\"CY3yHL\":\"İşaretlenirse, bu kategori herkese açık görünümden gizlenir.\",\"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\":[\"in last \",[\"0\"],\" min\"],\"u7r0G5\":\"In person — set a venue\",\"/LCAwL\":\"Devam ediyor\",\"F1Xp97\":\"Bireysel katılımcılar\",\"85e6zs\":\"Liquid Token Ekle\",\"CTWsuc\":\"Instagram\",\"VopR6B\":\"Instant Stripe payouts\",\"nbfdhU\":\"Entegrasyonlar\",\"I8eJ6/\":\"Internal notes on the attendee's ticket\",\"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\",\"Dn4OyV\":\"Davet edildi\",\"IuMGvq\":\"Fatura\",\"a/bUcL\":\"It happens on more than one date\",\"d+Oe9r\":\"It may have been unpublished or removed. Please check the link and try again.\",\"Lj7sBL\":\"İtalyanca\",\"F5/CBH\":\"ürün\",\"BzfzPK\":\"Ürünler\",\"rjyWPb\":\"January\",\"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\":\"July\",\"zeEQd/\":\"June\",\"MxjCqk\":\"Sadece biletlerinizi mi arıyorsunuz?\",\"xOTzt5\":\"just now\",\"0RihU9\":\"Just wrapped\",\"lB2hSG\":[[\"0\"],\" adresinden haberler ve etkinlikler hakkında beni bilgilendirin\"],\"ioFA9i\":\"Keep the profit.\",\"o66QSP\":\"label updates\",\"RtKKbA\":\"Last\",\"DruLRc\":\"Son 14 Gün\",\"ve9JTU\":\"Soyad gereklidir\",\"h0Q9Iw\":\"Son Yanıt\",\"gw3Ur5\":\"Son Tetiklenme\",\"FIq1Ba\":\"Later\",\"xvnLMP\":\"Latest check-ins\",\"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\":\"Açık\",\"1qY5Ue\":\"Bağlantı Süresi Doldu veya Geçersiz\",\"gggTBm\":\"LinkedIn\",\"nvOPBA\":\"Bağlantılara İzin Verildi\",\"2BBAbc\":\"List\",\"dF6vP6\":\"Canlı\",\"fpMs2Z\":\"CANLI\",\"D9zTjx\":\"Canlı Etkinlikler\",\"C33p4q\":\"Loaded dates\",\"WdmJIX\":\"Önizleme yükleniyor...\",\"IoDI2o\":\"Token'lar yükleniyor...\",\"G3Ge9Z\":\"Webhook günlükleri yükleniyor...\",\"NFxlHW\":\"Webhook'lar Yükleniyor\",\"E0DoRM\":\"Konum silindi\",\"7w8lJU\":\"Konum kaydedildi\",\"YsRXDD\":\"Konum güncellendi\",\"A/kIva\":\"location updates\",\"iyZPPR\":\"konum\",\"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\",\"PSRm6/\":\"Biletlerimi ara\",\"yJFu/X\":\"Merkez Ofis\",\"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\":\"Etkinliğinizin bekleme listesini yönetin, istatistikleri görüntüleyin ve katılımcılara bilet teklif edin.\",\"g2npA5\":\"Manuel teklif\",\"hg6l4j\":\"March\",\"pqRBOz\":\"Mark as validated (admin override)\",\"2L3vle\":\"Maks Mesaj / 24s\",\"Qp4HWD\":\"Maks Alıcı / Mesaj\",\"3JzsDb\":\"May\",\"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\":\"Minutes\",\"zz/Wd/\":\"Mode\",\"fpMgHS\":\"Mon\",\"hty0d5\":\"Monday\",\"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\":\"month\",\"HajiZl\":\"Ay\",\"+8Nek/\":\"Monthly\",\"1LkxnU\":\"Monthly Pattern\",\"6jefe3\":\"months\",\"f8jrkd\":\"more\",\"JcD7qf\":\"More actions\",\"w36OkR\":\"En Çok Görüntülenen Etkinlikler (Son 14 Gün)\",\"+Y/na7\":\"Move all dates earlier or later\",\"3DIpY0\":\"Multiple locations\",\"g9cQCP\":\"Multiple ticket types\",\"GfaxEk\":\"Müzik\",\"oVGCGh\":\"Biletlerim\",\"8/brI5\":\"Ad gerekli\",\"sFFArG\":\"İsim 255 karakterden az olmalıdır\",\"xxU3NX\":\"Net Gelir\",\"7I8LlL\":\"New capacity\",\"n1GRql\":\"New label\",\"y0Fcpd\":\"Yeni konum\",\"ArHT/C\":\"Yeni Kayıtlar\",\"uK7xWf\":\"New time:\",\"veT5Br\":\"Next occurrence\",\"WXtl5X\":[\"Next: \",[\"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\":\"No attendees to show\",\"PKySlW\":\"No attendees yet for this date.\",\"/UC6qk\":\"Atıf verisi bulunamadı\",\"E2vYsO\":\"No capabilities reported by Stripe yet.\",\"amMkpL\":\"Kapasite yok\",\"d2Jf1f\":\"No change\",\"99ntUF\":\"Bu etkinlik için kullanılabilir giriş listesi yok.\",\"wG+knX\":\"No check-ins yet\",\"+dAKxg\":\"Yapılandırma bulunamadı\",\"LiLk8u\":\"No connections available\",\"eb47T5\":\"Seçilen filtreler için veri bulunamadı. Tarih aralığını veya para birimini ayarlamayı deneyin.\",\"Zc216S\":\"No date added\",\"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\",\"OtJSnL\":\"Planlanmış tarih yok\",\"gEdNe8\":\"No dates scheduled yet\",\"pZNOT9\":\"Bitiş tarihi yok\",\"dW40Uz\":\"Etkinlik bulunamadı\",\"8pQ3NJ\":\"Önümüzdeki 24 saat içinde başlayan etkinlik yok\",\"8zCZQf\":\"Henüz etkinlik yok\",\"Yc5YW6\":\"Başarısız iş yok\",\"EpvBAp\":\"Fatura yok\",\"XZkeaI\":\"Günlük bulunamadı\",\"IcAC6J\":\"Eşleşen yazı tipi yok\",\"nrSs2u\":\"Mesaj bulunamadı\",\"Rj99yx\":\"No occurrences available\",\"IFU1IG\":\"No occurrences on this date\",\"OVFwlg\":\"Henüz sipariş sorusu yok\",\"EJ7bVz\":\"Sipariş bulunamadı\",\"NEmyqy\":\"Henüz sipariş yok\",\"a77B6w\":\"No orders yet for this date.\",\"wUv5xQ\":\"Son 14 günde organizatör aktivitesi yok\",\"vLd1tV\":\"No organizer context available.\",\"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\":\"No products configured for this event.\",\"kY7XDn\":\"Hiçbir ürünün bekleme listesi kaydı yok\",\"8mw4tm\":\"Ürün yok mesajı\",\"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\",\"59OWd3\":\"Kayıtlı Konum Yok\",\"mPdY6W\":\"Öneri yok\",\"3sRuiW\":\"Bilet Bulunamadı\",\"debCrL\":\"Satılacak bilet yok\",\"k2C0ZR\":\"No upcoming dates\",\"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\":\"non-edited\",\"Itw24Q\":\"Not checked in\",\"x5+Lcz\":\"Giriş Yapılmadı\",\"8n10sz\":\"Uygun Değil\",\"kLvU3F\":\"Notify attendees and stop sales\",\"t9QlBd\":\"November\",\"kAREMN\":\"Number of dates to create\",\"6u1B3O\":\"Occurrence\",\"mmoE62\":\"Occurrence Cancelled\",\"V9flmL\":\"Occurrence Schedule\",\"Kh3WO8\":\"Occurrence Summary\",\"byXCTu\":\"Occurrences\",\"KATw3p\":\"Occurrences (future only)\",\"85rTR2\":\"Occurrences can be configured after creation\",\"dzQfDY\":\"October\",\"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.\"],\"6Aih4U\":\"Çevrimdışı\",\"nO3VbP\":[[\"0\"],\" satışta\"],\"oXOSPE\":\"Çevrimiçi\",\"aqmy5k\":\"Online — provide connection details\",\"LuZBbx\":\"Online & in-person\",\"IXuOqt\":\"Online & in-person — see schedule\",\"WjSpu5\":\"Çevrimiçi Etkinlik\",\"scPxI/\":[\"Sadece \",[\"capacity\"],\" kaldı\"],\"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\",\"wkpaqp\":\"Yalnızca başlangıç tarihini ve saatini göster\",\"DMk8F0\":\"Only tickets count toward capacity\",\"M2w1ni\":\"Yalnızca promosyon koduyla görünür\",\"y8Bm7C\":\"Open check-in\",\"RLz7P+\":\"Open occurrence\",\"cDSdPb\":\"Seçicilerde gösterilen isteğe bağlı takma ad, örn. \\\"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\":\"or add a single date\",\"eBskDE\":\"Veya çevrimdışı ödemeleri etkinleştirip Stripe'ı devre dışı bırakın\",\"dSeVIm\":\"order\",\"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\",\"xtQzag\":\"Order details\",\"vrSW9M\":\"Sipariş iptal edildi ve iade edildi. Sipariş sahibi bilgilendirildi.\",\"rzw+wS\":\"Sipariş sahipleri\",\"oI/hGR\":\"Sipariş Kimliği\",\"RQCXz6\":\"Sipariş Limitleri\",\"SO9AEF\":\"Sipariş limitleri ayarlandı\",\"vu6Arl\":\"Sipariş Ödendi Olarak İşaretlendi\",\"sLbJQz\":\"Sipariş bulunamadı\",\"kvYpYu\":\"Sipariş Bulunamadı\",\"eJ8SvM\":\"Order number, purchase date, purchaser email\",\"FaPYw+\":\"Sipariş sahibi\",\"eB5vce\":\"Belirli bir ürüne sahip sipariş sahipleri\",\"CxLoxM\":\"Ürünlere sahip sipariş sahipleri\",\"UkHo4c\":\"Sipariş Ref.\",\"EZy55F\":\"Sipariş İade Edildi\",\"6eSHqs\":\"Sipariş durumları\",\"oW5877\":\"Sipariş Toplamı\",\"e7eZuA\":\"Sipariş Güncellendi\",\"1SQRYo\":\"Sipariş başarıyla güncellendi\",\"3NT0Ck\":\"Sipariş iptal edildi\",\"V5khLm\":\"orders\",\"sd5IMt\":\"Tamamlanan Siparişler\",\"5It1cQ\":\"Siparişler Dışa Aktarıldı\",\"UQ0ACV\":\"Sipariş Toplamı\",\"B/EBQv\":\"Siparişler:\",\"qtGTNu\":\"Organik Hesaplar\",\"P/JHA4\":\"Organizatör başarıyla arşivlendi\",\"S3CZ5M\":\"Organizatör Paneli\",\"GzjTd0\":\"Organizatör başarıyla silindi\",\"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\":\"Organizers\",\"/IX/7x\":\"Diğer\",\"RsiDDQ\":\"Diğer Listeler (Bilet Dahil Değil)\",\"aDfajK\":\"Outdoors\",\"qMASRF\":\"Giden mesajlar\",\"iCOVQO\":\"Override\",\"GpFTEc\":\"Override fees on this organizer\",\"M9ZhMP\":\"Override price\",\"cnVIpl\":\"Override removed\",\"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\":\"Past due\",\"xTPjSy\":\"Geçmiş Etkinlikler\",\"/l/ckQ\":\"URL Yapıştır\",\"URAE3q\":\"Duraklatıldı\",\"4fL/V7\":\"Öde\",\"c2/9VE\":\"Yük\",\"5cxUwd\":\"Ödeme Tarihi\",\"ENEPLY\":\"Ödeme yöntemi\",\"8Lx2X7\":\"Ödeme alındı\",\"fx8BTd\":\"Ödemeler mevcut değil\",\"C+ylwF\":\"Payouts\",\"UbRKMZ\":\"Pending\",\"UkM20g\":\"İnceleme Bekliyor\",\"dPYu1F\":\"Katılımcı Başına\",\"mQV/nJ\":\"per min\",\"+kvxv+\":\"sipariş başına\",\"VlXNyK\":\"Sipariş başına\",\"NhuGd7\":\"ürün başına\",\"hauDFf\":\"Bilet başına\",\"mnF83a\":\"Yüzde Ücreti\",\"TNLuRD\":\"Percentage fee (%)\",\"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\":\"Permanently remove this date\",\"6kPk3+\":\"Kişisel Bilgiler\",\"zmwvG2\":\"Telefon\",\"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\":\"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\":\"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\":\"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\":\"Please select a date and time\",\"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\":\"Position\",\"OESu7I\":\"Birden fazla bilet türünde stok paylaşarak aşırı satışı önleyin.\",\"NgVUL2\":\"Ödeme formunu önizle\",\"cs5muu\":\"Etkinlik sayfasını önizle\",\"Jm2AC3\":\"Price Tier\",\"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\":\"Product settings cannot be edited for cancelled dates.\",\"2339ej\":\"Product settings saved successfully\",\"ldVIlB\":\"Ürün Güncellendi\",\"CP3D8G\":\"Progress\",\"JoKGiJ\":\"Promosyon kodu\",\"k3wH7i\":\"Promosyon kodu kullanımı ve indirim dökümü\",\"tZqL0q\":\"promo codes\",\"oCHiz3\":\"Promo codes\",\"uEhdRh\":\"Yalnızca Promosyon\",\"dLm8V5\":\"Promosyon e-postaları hesap askıya alınmasına neden olabilir\",\"W0ETyY\":\"En az bir adres alanı girin (mekan, sokak, şehir veya ülke).\",\"2W/7Gz\":\"Provide the following before Stripe's next review to keep payouts flowing.\",\"EEYbdt\":\"Yayınla\",\"JcgJKc\":\"Yine de yayınla\",\"evDBV8\":\"Etkinliği yayınla\",\"2zEfOd\":\"Publish your event\",\"L7nrC8\":\"Yayınladığınızda etkinlik sayfanız herkese açık olur ve kayıtlar açılır.\",\"dsFmM+\":\"Satın Alındı\",\"JunetL\":\"Purchaser\",\"phmeUH\":\"Purchaser email\",\"ywR4ZL\":\"QR code check-in\",\"oWXNE5\":\"Adet\",\"biEyJ4\":\"Question answers\",\"k/bJj0\":\"Sorular yeniden sıralandı\",\"b24kPi\":\"Kuyruk\",\"lTPqpM\":\"Quick Tip\",\"fqDzSu\":\"Oran\",\"mnUGVC\":\"Hız sınırı aşıldı. Lütfen daha sonra tekrar deneyin.\",\"t41hVI\":\"Yeri Yeniden Teklif Et\",\"TNclgc\":\"Reactivate this date? It will be reopened for future sales.\",\"RENQ6j\":\"Yayına hazır mısınız?\",\"uqoRbb\":\"Real-time analytics\",\"xzRvs4\":[[\"0\"],\"'ten ürün güncellemeleri alın.\"],\"pLXbi8\":\"Son Hesap Kayıtları\",\"M1HGuR\":\"Recent activity\",\"3kJ0gv\":\"Recent Attendees\",\"qhfiwV\":\"Recent check-ins\",\"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\",\"WEYdDv\":\"Recommended\",\"wuhHPE\":\"Recurring\",\"asLqwt\":\"Tekrarlayan Etkinlik\",\"s3uzsK\":\"Tekrarlayan Etkinlik Ayarları\",\"D0tAMe\":\"Recurring events\",\"JjMIKU\":\"Reddit\",\"HiGkFu\":\"Stripe'a yönlendiriliyor...\",\"pnoTN5\":\"Yönlendirme Hesapları\",\"ACKu03\":\"Önizlemeyi Yenile\",\"vuFYA6\":\"Refund all orders for these dates\",\"4cRUK3\":\"Refund all orders for this date\",\"fKn/k6\":\"İade tutarı\",\"qY4rpA\":\"İade başarısız oldu\",\"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\":\"Remaining\",\"Bjh87R\":\"Remove label from all dates\",\"IVZaEo\":\"Tükenen tarih ve saatleri etkinlik sayfasından tamamen kaldırır. Devre dışı bırakıldığında görünür kalır ve tükendi olarak etiketlenir.\",\"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\":\"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\":\"Reset to base price\",\"kCn6wb\":\"Sıfırlanıyor...\",\"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\":\"results\",\"6gRgw8\":\"Yeniden dene\",\"1BG8ga\":\"Tümünü yeniden dene\",\"rDC+T6\":\"İşi yeniden dene\",\"CbnrWb\":\"Etkinliğe Dön\",\"Lf7TCn\":\"Adresli etkinlikler oluşturdukça yeniden kullanılabilir mekanlar burada otomatik olarak görünür; kendiniz de ekleyebilirsiniz.\",\"mdQ0zb\":\"Etkinlikleriniz için yeniden kullanılabilir mekanlar. Otomatik tamamlama ile oluşturulan konumlar burada otomatik olarak kaydedilir.\",\"XFOPle\":\"Reuse\",\"1Zehp4\":\"Reuse a Stripe connection from another organizer in this account.\",\"Oo/PLb\":\"Gelir Özeti\",\"CfuueU\":\"Teklifi iptal et\",\"RIgKv+\":\"Run until a specific date\",\"dFFW9L\":[\"Satış sona erdi \",[\"0\"]],\"loCKGB\":[\"Satış bitiyor \",[\"0\"]],\"wlfBad\":\"Satış Dönemi\",\"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\":\"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\":\"Sales, attendance, and check-in breakdown per occurrence\",\"3VnlS9\":\"Tüm etkinlikler için satışlar, siparişler ve performans metrikleri\",\"3Q1AWe\":\"Satışlar:\",\"LeuERW\":\"Same as event\",\"B4nE3N\":\"Örnek bilet fiyatı\",\"8BRPoH\":\"Örnek Mekan\",\"PiK6Ld\":\"Sat\",\"+5kO8P\":\"Saturday\",\"zJiuDn\":\"Save fee override\",\"NB8Uxt\":\"Save Schedule\",\"KZrfYJ\":\"Sosyal Bağlantıları Kaydet\",\"9Y3hAT\":\"Şablonu Kaydet\",\"C8ne4X\":\"Bilet Tasarımını Kaydet\",\"cTI8IK\":\"Save VAT settings\",\"6/TNCd\":\"KDV Ayarlarını Kaydet\",\"4RvD9q\":\"Kayıtlı konum\",\"cgw0cL\":\"Kayıtlı konumlar\",\"Fbqm/I\":\"Saving an override creates a dedicated configuration for this organizer if it's currently on the system default.\",\"I+FvbD\":\"Tara\",\"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\":\"Daha sonra gönder\",\"NAzVVw\":\"Mesajı zamanla\",\"Fz09JP\":\"Schedule starts on\",\"4ba0NE\":\"Planlandı\",\"qcP/8K\":\"Zamanlanmış saat\",\"A1taO8\":\"Search\",\"ftNXma\":\"Bağlı kuruluşları ara...\",\"VMU+zM\":\"Search attendees\",\"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...\",\"YnMfsK\":\"Ada veya adrese göre ara...\",\"VT+urE\":\"İsim veya e-posta ile ara...\",\"GHdjuo\":\"Ad, e-posta veya hesaba göre ara...\",\"4mBFO7\":\"Search by name, order #, ticket # or email\",\"20ce0U\":\"Sipariş kimliği, müşteri adı veya e-posta ile arayın...\",\"4DSz7Z\":\"Konu, etkinlik veya hesaba göre ara...\",\"nQC7Z9\":\"Search dates...\",\"iRtEpV\":\"Search dates…\",\"JRM7ao\":\"Search for an address\",\"BWF1kC\":\"Mesajlarda ara...\",\"5WYZKZ\":\"Arama sonuçları\",\"IG85fV\":\"Kayıtlı konumları arayın veya bir adres bulun...\",\"3aD3GF\":\"Seasonal\",\"ku//5b\":\"Second\",\"Mck5ht\":\"Güvenli Ödeme\",\"s7tXqF\":\"See schedule\",\"JFap6u\":\"See what Stripe still needs\",\"p7xUrt\":\"Bir kategori seçin\",\"hTKQwS\":\"Select a Date & Time\",\"Ps6Xtf\":\"Select a date to see available times\",\"e4L7bF\":\"İçeriğini görüntülemek için bir mesaj seçin\",\"zPRPMf\":\"Bir seviye seçin\",\"BFRSTT\":\"Hesap Seç\",\"wgNoIs\":\"Select all\",\"mCB6Je\":\"Tümünü Seç\",\"aCEysm\":[\"Select all on \",[\"0\"]],\"a6+167\":\"Bir etkinlik seçin\",\"CFbaPk\":\"Katılımcı grubu seçin\",\"88a49s\":\"Select camera\",\"tVW/yo\":\"Para birimi seçin\",\"SJQM1I\":\"Select date\",\"n9ZhRa\":\"Bitiş tarih ve saatini seçin\",\"gTN6Ws\":\"Bitiş saatini seçin\",\"0U6E9W\":\"Etkinlik kategorisi seçin\",\"j9cPeF\":\"Etkinlik türlerini seçin\",\"ypTjHL\":\"Select occurrence\",\"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\":\"selected\",\"ylXj1N\":\"Seçildi\",\"uq3CXQ\":\"Sell out your event.\",\"oBXbO4\":\"Selling a physical product? Cap its quantity on the <0>products page instead.\",\"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\":\"Send to all occurrences, or choose a specific one\",\"QEQlnV\":\"İlk mesajınızı gönderin\",\"IoAuJG\":\"Gönderiliyor...\",\"h69WC6\":\"Gönderildi\",\"BVu2Hz\":\"Gönderen\",\"ZFa8wv\":\"Sent to attendees when a scheduled date is cancelled\",\"SPdzrs\":\"Müşterilere sipariş verdiklerinde gönderilir\",\"LxSN5F\":\"Her katılımcıya bilet detaylarıyla birlikte gönderilir\",\"hgvbYY\":\"September\",\"5sN96e\":\"Session cancelled\",\"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\":\"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\":\"Farklı girişler, oturumlar veya günler için giriş listeleri oluşturun.\",\"TaWVGe\":\"Set up payouts\",\"JA//e6\":\"Set up schedule\",\"gzXY7l\":\"Set Up Schedule\",\"0Ls9qe\":\"Set up the tickets you'll sell and their prices\",\"xMO+Ao\":\"Organizasyonunuzu kurun\",\"5pEFnq\":\"Set up your schedule\",\"h/9JiC\":\"Set Up Your Schedule\",\"zRRuUD\":\"Set up your schedule in the next steps\",\"ETC76A\":\"Set, change, or remove the date's location or online details\",\"C3htzi\":\"Ayar güncellendi\",\"Ohn74G\":\"Kurulum ve Tasarım\",\"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\":\"Bağlı Kuruluş Bağlantısını Paylaş\",\"hL7sDJ\":\"Organizatör Sayfasını Paylaş\",\"jy6QDF\":\"Paylaşımlı Kapasite Yönetimi\",\"jDNHW4\":\"Shift times\",\"tPfIaW\":[\"Shifted times for \",[\"count\"],\" date(s)\"],\"WwlM8F\":\"Gelişmiş seçenekleri göster\",\"cMW+gm\":[\"Tüm platformları göster (\",[\"0\"],\" değerli daha fazla)\"],\"wXi9pZ\":\"Show attendee notes to non-logged-in staff\",\"4LZFir\":\"Tüm tarih aralığını 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\",\"b33PL9\":\"Daha fazla platform göster\",\"Eut7p9\":\"Show order details to non-logged-in staff\",\"+RoWKN\":\"Show question answers to non-logged-in staff\",\"jbcx6L\":\"Show remaining capacity on event dates\",\"rXxBOx\":\"Show remaining capacity to buyers\",\"t1LIQW\":[[\"totalRows\"],\" kayıttan \",[\"0\"],\" tanesi gösteriliyor\"],\"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\":\"Kayıt Tarihi\",\"5C7J+P\":\"Single Event\",\"E//btK\":\"Skip manually edited dates\",\"paESr6\":\"Slovakça\",\"9wu8nm\":\"Snapchat\",\"kIKb9e\":\"Sosyal\",\"d0rUsW\":\"Sosyal Bağlantılar\",\"j/TOB3\":\"Sosyal Bağlantılar ve Web Sitesi\",\"s9KGXU\":\"Satıldı\",\"yp+0jj\":\"sold out\",\"1hupow\":\"Tükendi, bekleme listesi mevcut\",\"iACSrw\":\"Some details are hidden from public access. Log in to view everything.\",\"Dia6iz\":\"Something went wrong while deleting the image. Please try again.\",\"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\":\"Spirituality\",\"oPaRES\":\"Split check-in across days, areas, or ticket types. Share the link with staff — no account needed on their end.\",\"7JFNej\":\"Spor\",\"/bfV1Y\":\"Staff instructions\",\"tXkhj/\":\"Start\",\"StWUH4\":\"Start check-in\",\"JcQp9p\":\"Başlangıç tarihi ve saati\",\"0m/ekX\":\"Başlangıç Tarihi ve Saati\",\"izRfYP\":\"Başlangıç tarihi gerekli\",\"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/\":\"İstatistikler\",\"GVUxAX\":\"İstatistikler hesap oluşturma tarihine göre hesaplanır\",\"29Hx9U\":\"Stats\",\"5ia+r6\":\"Still needed\",\"wuV0bK\":\"Taklidi Durdur\",\"s/KaDb\":\"Stripe connected\",\"Bk06QI\":\"Stripe Bağlı\",\"akZMv8\":[\"Stripe connection copied from \",[\"0\"],\".\"],\"v0aRY1\":\"Stripe didn't return a setup link. Please try again.\",\"aKtF0O\":\"Stripe Bağlı Değil\",\"9i0++A\":\"Stripe Ödeme ID\",\"R1lIMV\":\"Stripe will need a few more details soon\",\"FzcCHA\":\"Stripe will walk you through a few quick questions to finish setup.\",\"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\",\"kRWc2g\":\"Tekrarlayan Etkinlik 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\":\"İzleme 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\":\"Sun\",\"DBC3t5\":\"Sunday\",\"UaISq3\":\"İsveççe\",\"JZTQI0\":\"Organizatör Değiştir\",\"9YHrNC\":\"Sistem Varsayılanı\",\"lruQkA\":\"Tap this screen to resume scanning\",\"TJUrME\":[\"Targeting attendees across \",[\"0\"],\" selected sessions.\"],\"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\":\"Team collaboration\",\"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\":\"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\":\"Ş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\",\"nm3Iz/\":\"Katıldığınız için teşekkürler!\",\"pYwj0k\":\"Thanks,\",\"k3IitN\":\"That's a wrap\",\"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.\",\"7oksH+\":[\"İndirim, uygun her üründen düşülür. Örn. \",[\"currencySymbol\"],\"10 indirim × 3 bilet = \",[\"currencySymbol\"],\"30 indirim.\"],\"sKL8k2\":\"İndirim, sipariş toplamından bir kez düşülür.\",\"cDHM1d\":\"E-posta adresi değiştirildi. Katılımcı güncellenmiş e-posta adresinde yeni bir bilet alacaktır.\",\"tXadb0\":\"Aradığınız etkinlik şu anda mevcut değil. Kaldırılmış, süresi dolmuş veya URL yanlış olabilir.\",\"5fPdZe\":\"The first date this schedule will generate from.\",\"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.\",\"Np4eLs\":[\"The maximum is \",[\"MAX_PREVIEW\"],\" sessions. Please reduce the date range, frequency, or number of sessions per day.\"],\"sYLeDq\":\"Aradığınız organizatör bulunamadı. Sayfa taşınmış, silinmiş veya URL yanlış olabilir.\",\"PCr4zw\":\"The override is recorded in the order audit log.\",\"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\",\"OVSkIF\":\"Hızlı kahverengi tilki tembel köpeğin üzerinden atlar.\",\"z0KrIG\":\"Zamanlanmış saat gereklidir\",\"EWErQh\":\"Zamanlanmış saat gelecekte olmalıdır\",\"UNd0OU\":[\"The session for \\\"\",[\"title\"],\"\\\" originally scheduled for \",[\"0\"],\" has been rescheduled.\"],\"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\",\"ybBP2H\":\"There are no products available for this date. Please choose another date.\",\"O7g4eR\":\"There are no upcoming dates for this event\",\"062KsE\":\"These details are shown on the attendee's ticket and order summary for this date only.\",\"5Eu+tn\":\"Bu ayrıntılar yalnızca sipariş başarıyla tamamlandığında gösterilir.\",\"jQjwR+\":\"These details will replace any existing location on the affected dates and show on attendee tickets.\",\"6eaLu/\":\"Bu fiyatlar programınızdaki tüm tarihler için geçerlidir ve kademe adetleri tüm tarihlerin toplam satışını sınırlar. Kademelerin satış tarihleri genel olarak uygulanır. Tek tek tarihler için fiyatları <0>Tarih Programı sayfasında geçersiz kılabilirsiniz.\",\"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\":\"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\":\"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/\":[\"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.\",\"E9BqZw\":\"This date only\",\"RzEvf5\":\"Bu etkinlik sona erdi\",\"kc4bIA\":\"Bu etkinlikte henüz bilet veya ürün yok, bu yüzden katılımcılar kayıt olamaz.\",\"eMaNd0\":\"This event is not available\",\"YClrdK\":\"Bu etkinlik henüz yayınlanmadı\",\"GL6z+k\":\"Bu etkinliğin biletleri tükendi\",\"pIwDhS\":\"This event's dates and times are set on the occurrence schedule.\",\"ny5rgr\":\"This is a recurring event\",\"tc64Zz\":\"Bu, etkinlik sayfasında gösterilecek kategori adıdır.\",\"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.\",\"5DpZrC\":\"Bu, programınızdaki tüm tarihlerin toplam satışını sınırlar — tarih başına bir sınır değildir. Her tarihin katılımcı sayısını sınırlamak için <0>Tarih Programı sayfasında kapasite belirleyin.\",\"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\":\"This occurrence is at capacity\",\"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\",\"qEGn8I\":\"Bu tekrarlayan etkinlikte henüz tarih yok, bu yüzden katılımcıların rezerve edebileceği bir şey yok.\",\"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.\",\"1LuJNw\":\"Bu bilet artık geçerli değil\",\"0Ew0uk\":\"Bu bilet az önce tarandı. Tekrar taramadan önce lütfen bekleyin.\",\"FYXq7k\":[\"This will affect \",[\"loadedAffectedCount\"],\" date(s).\"],\"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\":\"Throughput\",\"+FjWgX\":\"Thu\",\"kkDQ8m\":\"Thursday\",\"0GSPnc\":\"Bilet Tasarımı\",\"EZC/Cu\":\"Bilet tasarımı başarıyla kaydedildi\",\"bbslmb\":\"Bilet Tasarımcısı\",\"1BPctx\":\"Bilet:\",\"HGuXjF\":\"Bilet sahipleri\",\"CMUt3Y\":\"Bilet sahipleri\",\"awHmAT\":\"Bilet ID\",\"6czJik\":\"Bilet Logosu\",\"t79rDv\":\"Bilet Bulunamadı\",\"6tmWch\":\"Bilet veya Ürün\",\"1tfWrD\":\"Bilet Önizlemesi:\",\"KnjoUA\":\"Bilet fiyatı\",\"pGZOcL\":\"Bilet başarıyla yeniden gönderildi\",\"o02GZM\":\"Ticket sales have ended for this event\",\"8jLPgH\":\"Bilet Türü\",\"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\":\"Time\",\"fXf2r5\":[\"Times shown in \",[\"timezoneAbbr\"]],\"dMtLDE\":\"to\",\"/jQctM\":\"Kime\",\"tiI71C\":\"Limitinizi artırmak için bizimle iletişime geçin\",\"ecUA8p\":\"Today\",\"W428WC\":\"Sütunları değiştir\",\"BRMXj0\":\"Tomorrow\",\"UBSG1X\":\"En İyi Organizatörler (Son 14 Gün)\",\"3sZ0xx\":\"Toplam Hesaplar\",\"SMDzqJ\":\"Toplam Katılımcılar\",\"orBECM\":\"Toplam Toplanan\",\"k5CU8c\":\"Toplam kayıt\",\"4B7oCp\":\"Toplam Ücret\",\"sMMlTX\":\"Total fees\",\"mlvCEl\":\"Total orders\",\"2AW/k5\":\"Tüm Tarihler İçin Toplam Adet\",\"dp8BCb\":\"Total tax\",\"vb0Q0/\":\"Toplam Kullanıcılar\",\"oJjplO\":\"Toplam Görüntüleme\",\"rBZ9pz\":\"Tours\",\"orluER\":\"Atıf kaynağına göre hesap büyümesini ve performansını takip edin\",\"YwKzpH\":\"İzleme ve Analitik\",\"GUA0Jy\":\"Try a different search term or filter\",\"2P/OWN\":\"Try adjusting your filters to see more dates.\",\"ouM5IM\":\"Başka bir e-posta deneyin\",\"3DZvE7\":\"Hi.Events'i Ücretsiz Deneyin\",\"vq2WxD\":\"Tue\",\"G3myU+\":\"Tuesday\",\"Kz91g/\":\"Türkçe\",\"GdOhw6\":\"Sesi kapat\",\"KUOhTy\":\"Sesi aç\",\"dBeuY2\":\"Twitch\",\"QytzQr\":\"Onaylamak için \\\"sil\\\" yazın\",\"nWRfmt\":\"Tipografi\",\"IrVSu+\":\"Ürün çoğaltılamıyor. Lütfen bilgilerinizi kontrol edin\",\"Vx2J6x\":\"Katılımcı getirilemedi\",\"h0dx5e\":\"Bekleme listesine katılınamadı\",\"DaE0Hg\":\"Unable to load attendee details.\",\"GlnD5Y\":\"Unable to load products for this date. Please try again.\",\"17VbmV\":\"Unable to undo check-in\",\"n57zCW\":\"Atıfsız Hesaplar\",\"9uI/rE\":\"Undo\",\"Ef7StM\":\"Bilinmeyen\",\"ZBAScj\":\"Bilinmeyen Katılımcı\",\"MEIAzV\":\"Adsız\",\"K6L5Mx\":\"Adsız konum\",\"7yiFvZ\":\"Ödenmedi\",\"X13xGn\":\"Güvenilmez\",\"gyXpQN\":\"Upcoming events\",\"Pp1sWX\":\"Bağlı Kuruluşu Güncelle\",\"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\":\"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 scanner listening\",\"dyTklH\":\"USB scanner paused\",\"OHJXlK\":\"E-postalarınızı kişiselleştirmek için <0>Liquid şablonunu kullanın\",\"/rsy72\":\"Use event default\",\"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.\",\"bA31T4\":\"Tüm katılımcılar için alıcının bilgilerini kullanın\",\"PpgtnC\":\"Bu adresi kullan\",\"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\":\"VAT number\",\"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\":\"VAT registered\",\"Nfbg76\":\"KDV ayarları başarıyla kaydedildi\",\"UvYql/\":\"KDV ayarları kaydedildi. KDV numaranızı arka planda doğruluyoruz.\",\"bXn1Jz\":\"VAT settings updated\",\"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\":\"VAT: not registered\",\"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\":\"View All\",\"yA/6BX\":\"View all →\",\"6CQ7/B\":\"View all capabilities\",\"YSE15b\":\"View all check-in lists\",\"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\":[\"View details for \",[\"0\"],\" \",[\"1\"]],\"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\":\"Waiting for scan…\",\"u0n+wz\":\"Bekleme listesi\",\"3RXFtE\":\"Bekleme listesi etkin\",\"TwnTPy\":\"Bekleme listesi teklifi süresi doldu\",\"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.\",\"aT/44s\":\"We couldn't copy that Stripe connection. Please try again.\",\"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.\",\"Fjj/5/\":\"We couldn't load the check-in lists. Please try again.\",\"ADsQ23\":\"We couldn't reach Stripe just now. Please try again in a moment.\",\"HJKdzP\":\"Bu sayfayı yüklerken bir sorunla karşılaştık. Lütfen tekrar deneyin.\",\"jegrvW\":\"We partner with Stripe to send payouts straight to your bank account.\",\"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ı olması için çerezler 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.\",\"mfM/HJ\":[[\"occurrenceDate\"],\" tarihinde \",[\"productDisplayName\"],\" için bir yer açılırsa sizi e-posta ile bilgilendireceğiz.\"],\"iy+M+c\":[[\"productDisplayName\"],\" için bir yer açılırsa sizi e-posta ile bilgilendireceğiz.\"],\"McuGND\":\"We'll open a message composer with a pre-filled template after saving. You review and send it — nothing is sent automatically.\",\"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\":[\"We've made changes to the schedule for \\\"\",[\"title\"],\"\\\" — \",[\"description\"],\" affecting \",[\"affectedCount\"],\" session(s).\"],\"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 integrations\",\"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\":\"Wed\",\"VAcXNz\":\"Wednesday\",\"64X6l4\":\"week\",\"4XSc4l\":\"Weekly\",\"IAUiSh\":\"weeks\",\"vKLEXy\":\"Weibo\",\"9eF5oV\":\"Tekrar hoş geldiniz\",\"QDWsl9\":[[\"0\"],\"'e Hoş Geldiniz, \",[\"1\"],\" 👋\"],\"LETnBR\":[[\"0\"],\"'e hoş geldiniz, işte tüm etkinliklerinizin listesi\"],\"DDbx7K\":\"Wellness\",\"ywRaYa\":\"What time?\",\"FaSXqR\":\"Ne tür bir etkinlik?\",\"0WyYF4\":\"What unauthenticated staff can see\",\"2+ExvJ\":\"WhatsApp\",\"cxsKvw\":\"Bir giriş silindiğinde\",\"RPe6bE\":\"When a date is cancelled on a recurring event\",\"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 yer açıldığında bilgilendirilmek için bekleme listesine katılabilir.\",\"OIkHj+\":\"Bir ürün tükendiğinde, müşteriler yer açıldığında bilgilendirilmek için bekleme listesine katılabilir. Müşteriler belirli bir tarih için bekleme listesine katılır ve teklifler tarih bazında yapılır.\",\"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\":\"Müşteriler bilet satın aldığında, siparişleri burada görünecektir.\",\"pm9tpn\":\"Etkinleştirildiğinde, alıcılar ad ve e-posta bilgilerini tüm katılımcılara tek seferde kopyalayabilir. \\\"Tüm katılımcılar\\\" seçeneğini kaldırmak için bunu kapatın; alıcılar bilgilerini yine de ilk katılımcıya kopyalayabilir, diğerleri tek tek girilmelidir.\",\"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.\",\"uchB0M\":\"Widget Önizleme\",\"uvIqcj\":\"Atölye\",\"EpknJA\":\"Mesajınızı buraya yazın...\",\"nhtR6Y\":\"X (Twitter)\",\"7qI8sJ\":\"year\",\"zkWmBh\":\"Yearly\",\"+BGee5\":\"years\",\"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+\":\"You can override this for individual dates later.\",\"paWwQ0\":\"Gerekirse biletleri manuel olarak da sunabilirsiniz.\",\"jTDzpA\":\"Hesabınızdaki son aktif organizatörü arşivleyemezsiniz.\",\"D8baxD\":\"Ücretli biletleriniz var ancak Stripe henüz bağlı değil, bu yüzden ödeme alamazsınız.\",\"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/\":\"You need to create at least one occurrence before you can add attendees to this recurring event.\",\"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\":\"You'll be able to set up dates, schedules, and recurrence rules in the next step.\",\"zKAheG\":\"You're changing session times\",\"MNFIxz\":[[\"0\"],\"'e gidiyorsunuz!\"],\"ZlLcht\":[[\"occurrenceDate\"],\" için bekleme listesine katılıyorsunuz.\"],\"qGZz0m\":\"Bekleme listesine eklendi!\",\"/5HL6k\":\"Size bir yer teklif edildi!\",\"gbjFFH\":\"You've changed the session time\",\"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\":\"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\":\"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 Main Street\",\"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\":\"Are you sure you want to make this event public? This will make the event visible to the public\",\"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\":\"Attendee Notes\",\"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\":\"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\":\"İ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\":\"Etkinlik sayfanızı özelleştirin\",\"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\":\"Dismiss\",\"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\":\"Event URL\",\"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\":\"No attendees have been added to this order.\",\"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\":\"No product associated with this attendee.\",\"Ya1JhR\":\"Bu kategoride mevcut ürün yok.\",\"FTfObB\":\"Henüz Ürün Yok\",\"+Y976X\":\"Gösterilecek Promosyon Kodu yok\",\"MAavyl\":\"No questions answered by this attendee.\",\"SnlQeq\":\"No questions have been asked for this order.\",\"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\":\"Online event\",\"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\":\"Order #\",\"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\":\"Order Notes\",\"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\":\"Altyapı sağlayıcı\",\"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. Bu alanı şartlar\\nve koşullar, yönergeler veya katılımcıların yanıtlamadan önce bilmesi gereken önemli bilgileri eklemek için 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\":\"Suite 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\":\"View\",\"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\":\"(none)\",\"xYxQCZ\":[[\"0\"],\" \",[\"1\"]],\"lAOy2r\":[[\"0\"],\" \",[\"1\"],\" zaten giriş yaptı\"],\"3beCx0\":[[\"0\"],\" <0>checked in\"],\"S4PqS9\":[[\"0\"],\" Aktif Webhook\"],\"6MIiOI\":[[\"0\"],\" kaldı\"],\"COnw8D\":[[\"0\"],\" logosu\"],\"xG9N0H\":[[\"0\"],\" of \",[\"1\"],\" seats are taken.\"],\"B7pZfX\":[[\"0\"],\" organizatör\"],\"/HkCs4\":[[\"0\"],\" bilet\"],\"30bTiU\":[[\"activeCount\"],\" enabled\"],\"jTs4am\":[[\"appName\"],\" logo\"],\"gbJOk9\":[[\"attendeeCount\"],\" attendees are registered for this session.\"],\"TjbIUI\":[[\"totalCount\"],\" arasından \",[\"availableCount\"],\" mevcut\"],\"PSChHo\":[[\"capacity\"],\" yer kaldı\"],\"lzQ8/M\":[[\"checkedIn\"],\" / \",[\"total\"],\" checked in\"],\"RZ0JX3\":[[\"chipTime\"],\", tükendi\"],\"M4KnFs\":[[\"chipTime\"],\", Tükendi, bekleme listesi mevcut\"],\"SeyN12\":[[\"completedCount\"],\" of \",[\"totalCount\"],\" steps complete\"],\"f2rhaD\":[[\"diffHr\"],\"h ago\"],\"NRSLBe\":[[\"diffMin\"],\"m ago\"],\"iYfwJE\":[[\"diffSec\"],\"s ago\"],\"OJnhhX\":[[\"eventCount\"],\" etkinlik\"],\"mhZbzw\":[[\"loadedAffectedAttendees\"],\" attendees are registered across the affected sessions.\"],\"RBuxIl\":[[\"productCount\"],\" ticket types configured\"],\"VFLd0I\":[[\"slotCount\"],\" times available\"],\"3IEF7U\":[[\"totalCount\"],\" bilet türü\"],\"0cLzoF\":[[\"totalOccurrences\"],\" dates\"],\"AEGc4t\":[[\"totalOccurrences\"],\" sessions across \",[\"0\"],\" dates (\",[\"1\",\"plural\",{\"one\":[\"#\",\" session\"],\"other\":[\"#\",\" sessions\"]}],\" per day)\"],\"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.\",\"Il5Uid\":\"<0>Bu, programınızdaki tüm tarihler için toplam mevcut adettir — tarih başına bir sınır değildir. Her tarihin katılımcı sayısını sınırlamak için <1>Tarih Programı sayfasında kapasite belirleyin.\",\"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\":\"1 attendee is registered across the affected sessions.\",\"qOyE2U\":\"1 attendee is registered for this session.\",\"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\",\"y2Jh0m\":\"1 time available\",\"cGtUz6\":\"Etkinlikten 1 hafta önce\",\"HR/cvw\":\"123 Örnek Sokak\",\"dgKxZ5\":\"135+ currencies & 40+ payment methods\",\"kMU5aM\":\"İptal bildirimi gönderildi:\",\"o++0qa\":\"a change in duration\",\"WuWSX5\":\"A few quick steps and you're ready to start selling.\",\"RQ5kDd\":\"Bu kategoride ürün olmadığında gösterilecek mesaj.\",\"V53XzQ\":\"E-postanıza yeni bir doğrulama kodu gönderildi\",\"sr2Je0\":\"a shift in start/end times\",\"/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\":[\"Account · \",[\"0\"],\" · \",[\"1\"]],\"vOuxvL\":\"Hesap Bilgileri\",\"EHNORh\":\"Hesap bulunamadı\",\"bPwFdf\":\"Hesaplar\",\"AhwTa1\":\"Gerekli İşlem: KDV Bilgisi Gerekli\",\"APyAR/\":\"Aktif Etkinlikler\",\"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\":\"Ödeme sırasında ek bilgi toplamak için özel sorular ekleyin\",\"Z/dcxc\":\"Add Date\",\"QeupRg\":\"Tarih ekle\",\"Q219NT\":\"Add Dates\",\"yjB5VC\":\"Add dates and times for your recurring event\",\"Z8idyM\":\"Add details\",\"wpirGs\":\"Add event details\",\"VX6WUv\":\"Konum Ekle\",\"GCQlV2\":\"Add multiple times if you run several sessions per day.\",\"7JF9w9\":\"Soru Ekle\",\"NLbIb6\":\"Add this attendee anyway (override capacity)\",\"6PNlRV\":\"Bu etkinliği takviminize ekleyin\",\"BGD9Yt\":\"Bilet ekle\",\"uIv4Op\":\"Herkese açık etkinlik sayfalarınıza ve organizatör ana sayfanıza izleme pikselleri ekleyin. İzleme aktif olduğunda ziyaretçilere bir çerez onay banner'ı 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\":\"Affiliate 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.\",\"3e31kI\":\"After your event is created, you can choose how often it repeats from the dashboard.\",\"z7GAMJ\":\"all\",\"N40H+G\":\"All\",\"7rLTkE\":\"Tüm Arşivlenmiş Etkinlikler\",\"gKq1fa\":\"Tüm katılımcılar\",\"63gRoO\":\"All attendees of the selected sessions\",\"uWxIoH\":\"All attendees of this occurrence\",\"pMLul+\":\"Tüm Para Birimleri\",\"sgUdRZ\":\"All dates\",\"e4q4uO\":\"All Dates\",\"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\":\"All matching dates\",\"F1/VgK\":\"All occurrences\",\"OpWjMq\":\"All Occurrences\",\"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.\",\"VZdky1\":\"Alıcıların bilgilerini tüm katılımcılara kopyalamasına izin ver\",\"F3mW5G\":\"Bu ürün tükendiğinde müşterilerin bekleme listesine katılmasına izin ver\",\"4CMO/q\":\"Bu ürün tükendiğinde müşterilerin bekleme listesine katılmasına izin ver. Müşteriler belirli bir tarih için bekleme listesine katılır.\",\"c4uJfc\":\"Neredeyse bitti! Ödemenizin işlenmesini bekliyoruz. Bu sadece birkaç saniye sürmelidir.\",\"ocS8eq\":[\"Zaten hesabınız var mı? <0>\",[\"0\"],\"\"],\"uCuEqI\":\"Already in\",\"/H326L\":\"Zaten İade Edildi\",\"USEpOK\":\"Already use Stripe on another organizer? Reuse that connection.\",\"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.\",\"OPFdAM\":\"Etkinlik sayfasında gösterilecek bu kategorinin isteğe bağlı açıklaması.\",\"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\":[\"and \",[\"0\"],\" more...\"],\"QNrkms\":\"Cevap başarıyla güncellendi.\",\"+qygei\":\"Answers\",\"GK7Lnt\":\"Answers provided at checkout (e.g. meal choice)\",\"lE8PgT\":\"Any dates you've manually customized will be kept.\",\"jVoYha\":[\"uygulandı — siparişinizde \",[\"0\"],\" indirim\"],\"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\":\"Mesajı Onayla\",\"naCW6Z\":\"April\",\"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\":[\"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\":\"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/\":\"Are you sure you want to delete this date? This action cannot be undone.\",\"RiF/yT\":\"Are you sure you want to delete this image?\",\"b3+Qku\":\"Are you sure you want to delete this tax or fee? It will no longer be applied to new orders.\",\"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\":\"Are you sure you want to permanently delete this date? This cannot be undone.\",\"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?\",\"b7tkGp\":\"Are you sure you want to revoke this invitation?\",\"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\":\"Assign plan\",\"xdiER7\":\"Atanan Seviye\",\"F2rX0R\":\"En az bir etkinlik türü seçilmelidir\",\"Z44eZS\":\"At least one product must stay available for this date. To make the date inaccessible, cancel it from the schedule instead.\",\"BCmibk\":\"Denemeler\",\"6PecK3\":\"Tüm etkinliklerdeki katılım ve giriş oranları\",\"K2tp3v\":\"attendee\",\"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ı\",\"94aQMU\":\"Katılımcı Bilgileri\",\"KkrBiR\":\"Katılımcı bilgi toplama\",\"sjPjOg\":\"Attendee notes\",\"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\":\"attendees\",\"zLRobu\":\"attendees checked in\",\"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/\":\"August\",\"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 müsait olduğunda otomatik olarak sıradaki kişiye bilet teklif edin. Devre dışı bırakılırsa, bekleme listesini Bekleme Listesi sayfasından manuel olarak işleyebilirsiniz.\",\"csDS2L\":\"Mevcut\",\"Xp+ywP\":\"Ödeme tamamlandığında kullanılabilir\",\"dwDH1K\":[\"Available times on \",[\"dayName\"]],\"clF06r\":\"İade Edilebilir\",\"NB5+UG\":\"Mevcut Token'lar\",\"L+wGOG\":\"Awaiting\",\"qcw2OD\":\"Awaiting pay\",\"kNmmvE\":\"Harika Etkinlikler Ltd.\",\"TeSaQO\":\"Hesaplara Dön\",\"kYqM1A\":\"Etkinliğe Dön\",\"s5QRF3\":\"Mesajlara geri dön\",\"td/bh+\":\"Raporlara Dön\",\"nsm7BA\":\"Aramaya dön\",\"imjKVx\":\"Bank account connected\",\"D9LTCH\":\"Base Price\",\"hviJef\":\"Based on the global sale period above, not per date\",\"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\":\"Built-in fraud protection\",\"cr7kGH\":\"Bulk Edit\",\"1Fbd6n\":\"Bulk Edit Dates\",\"Eq6Tu9\":\"Bulk update failed.\",\"9N+p+g\":\"İş\",\"SWnN1L\":\"Business address\",\"kQekXw\":\"Business name\",\"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\":\"İzleme pikselleri ekleyerek, siz ve bu platformun toplanan verilerin ortak veri sorumluları olduğunuzu kabul edersiniz. Geçerli gizlilik yasaları (KVKK, GDPR, CCPA vb.) kapsamında bu işleme için yasal bir dayanağınız olduğundan emin olmak sizin sorumluluğunuzdadır.\",\"DFqasq\":[\"Devam ederek, <0>\",[\"0\"],\" Hizmet Koşullarını kabul etmiş olursunuz\"],\"wVSa+U\":\"By day of month\",\"0MnNgi\":\"By day of week\",\"CetOZE\":\"By ticket type\",\"lFdbRS\":\"Uygulama Ücretlerini Atla\",\"AjVXBS\":\"Calendar\",\"2VLZwd\":\"Harekete Geçirici Düğme\",\"rT2cV+\":\"Camera\",\"7hYa9y\":\"Camera permission was denied. <0>Request permission again, or grant this page camera access in your browser settings.\",\"D02dD9\":\"Kampanya\",\"RRPA79\":\"Can't check in\",\"OcVwAd\":[\"Cancel \",[\"count\"],\" date(s)\"],\"H4nE+E\":\"Tüm ürünleri iptal et ve havuza geri bırak\",\"Py78q9\":\"Cancel Date\",\"tOXAdc\":\"İptal etmek, bu siparişle ilişkili tüm katılımcıları iptal edecek ve biletleri mevcut havuza geri bırakacaktır.\",\"FPpqc7\":[\"Cancelling \",[\"0\"],\" date(s). This may take a moment to complete.\"],\"01sEfm\":\"Sistem varsayılan yapılandırması silinemez\",\"VsM1HH\":\"Kapasite Atamaları\",\"9bIMVF\":\"Capacity management\",\"H7K8og\":\"Capacity must be 0 or greater\",\"nzao08\":\"capacity updates\",\"4cp9NP\":\"Capacity Used\",\"K7tIrx\":\"Kategori\",\"DRK3Bq\":\"Category deleted successfully\",\"o+XJ9D\":\"Değiştir\",\"kJkjoB\":\"Change duration\",\"J0KExZ\":\"Change the attendee limit\",\"ssospy\":\"Change time\",\"CIHJJf\":\"Bekleme listesi ayarlarını değiştir\",\"B5icLR\":[\"Changed duration for \",[\"count\"],\" date(s)\"],\"Kb+0BT\":\"Charges\",\"2tbLdK\":\"Hayır Kurumu\",\"BPWGKn\":\"Check in\",\"6uFFoY\":\"Check out\",\"FjAlwK\":[\"Check out this event: \",[\"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\":\"Check-In\",\"udRwQs\":\"Giriş Oluşturuldu\",\"F4SRy3\":\"Giriş Silindi\",\"as6XfO\":[\"Check-in for \",[\"0\"],\" was undone\"],\"9s/wrQ\":\"Check-in history\",\"Wwztk4\":\"Check-In List\",\"9gPPUY\":\"Giriş Listesi Oluşturuldu\",\"dwjiJt\":\"Check-in list info\",\"7od0PV\":\"check-in lists\",\"f2vU9t\":\"Giriş Listeleri\",\"XprdTn\":\"Check-in navigation\",\"5tV1in\":\"Check-in progress\",\"SHJwyq\":\"Giriş Oranı\",\"qCqdg6\":\"Giriş Durumu\",\"cKj6OE\":\"Giriş Özeti\",\"7B5M35\":\"Girişler\",\"VrmydS\":\"Checked in\",\"DM4gBB\":\"Çince (Geleneksel)\",\"p8Jvp4\":\"Choose a configuration\",\"ElShBO\":\"Choose a different action\",\"pHEhf+\":\"Markanızla uyumlu bir yazı tipi seçin. Yazı tipleri Bunny Fonts üzerinden barındırılır.\",\"Zok1Gx\":\"Choose an organizer\",\"pkk46Q\":\"Bir Organizatör Seçin\",\"Ag32+c\":\"Choose another date\",\"Crr3pG\":\"Takvim seçin\",\"Z38ZJu\":\"Etkinlik tarihinin bilette nasıl gösterileceğini 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\":\"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\":\"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\":\"complete\",\"bUQMpb\":\"Complete Stripe setup\",\"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\":\"Configuration assigned\",\"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\":\"Configure which products are available for this occurrence and optionally adjust pricing.\",\"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\",\"/K4Vqr\":\"Ödeme almak için Stripe'ı bağlayın\",\"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\":\"Çevrimiçi etkinlikler için bağlantı ayrıntıları gereklidir\",\"jfC/xh\":\"İletişim\",\"LOFgda\":[[\"0\"],\" ile İletişime Geç\"],\"41BQ3k\":\"İletiş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\",\"s30OcA\":\"Tarih ve saatlerin etkinlik sayfasında nasıl gösterileceğini kontrol edin\",\"p2FRHj\":\"Bu etkinlik için platform ücretlerinin nasıl ele alınacağını kontrol edin\",\"NqfabH\":\"Control who gets in for this date\",\"fmYxZx\":\"Control who gets in, and when\",\"1JnTgU\":\"Yukarıdan kopyalandı\",\"FxVG/l\":\"Panoya kopyalandı\",\"PiH3UR\":\"Kopyalandı!\",\"4i7smN\":\"Copy account ID\",\"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\":\"Could not prepare the bulk update.\",\"KOavaU\":\"Adres ayrıntıları alınamadı\",\"/lq4oO\":\"Could not save date\",\"mHu0az\":\"Couldn't send verification email. Please try again.\",\"QOIm+S\":\"Sayılar tüm yaklaşan tarihleri içerir. Her kişiye katıldığı tarih için yer teklif edilir.\",\"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\":\"Covers every ticket\",\"zg4oSu\":[[\"0\"],\" Şablonu Oluştur\"],\"RKKhnW\":\"Sitenizde bilet satmak için özel bir widget oluşturun.\",\"6sk7PP\":\"Create a fixed number\",\"jqhTmw\":\"Create a list for this date\",\"PhioFp\":\"Create a new check-in list for an active session, or contact the organizer if you think this is a mistake.\",\"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\":\"Create Date\",\"Nc3l/D\":\"İndirimler, gizli biletler için erişim kodları ve özel teklifler oluşturun.\",\"PybJS2\":\"Create event\",\"eWEV9G\":\"Yeni şifre oluştur\",\"wl2iai\":\"Create Schedule\",\"8AiKIu\":\"Bilet veya Ürün Oluştur\",\"/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\":\"Bilet satmaya ve katılımcıları yönetmeye başlamak için ilk etkinliğinizi oluşturun.\",\"ZCSSd+\":\"Kendi etkinliğinizi oluşturun\",\"qdv10s\":[[\"0\"],\" tarih oluşturuluyor. Bu biraz zaman alabilir.\"],\"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\":\"Currently assigned\",\"iTvh6I\":\"Şu anda satın alınabilir\",\"A42Dqn\":\"Custom branding\",\"Guo0lU\":\"Özel tarih ve saat\",\"WDMdn8\":\"Custom questions\",\"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\",\"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\":\"Daily\",\"/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\":\"Dance\",\"pvnfJD\":\"Koyu\",\"MaB9wW\":\"Date Cancellation\",\"e6cAxJ\":\"Date cancelled\",\"81jBnC\":\"Date cancelled successfully\",\"a/C/6R\":\"Date created successfully\",\"IW7Q+u\":\"Date deleted\",\"rngCAz\":\"Date deleted successfully\",\"vHbfoQ\":\"Date reactivated\",\"hvah+S\":\"Date reopened for new sales\",\"Ez0YsD\":\"Date updated successfully\",\"Te33mU\":\"Dates are managed per occurrence\",\"91zCxb\":\"Dates with sessions\",\"/ITcnz\":\"day\",\"H7OUPr\":\"Day\",\"JtHrX9\":\"Day of Month\",\"J/Upwb\":\"days\",\"vDVA2I\":\"Days of Month\",\"rDLvlL\":\"Days of Week\",\"r6zgGo\":\"December\",\"jbq7j2\":\"Reddet\",\"ovBPCi\":\"Varsayılan\",\"JtI4vj\":\"Varsayılan katılımcı bilgi toplama\",\"ULjv90\":\"Default capacity per date\",\"3R/Tu2\":\"Varsayılan ücret işleme\",\"1bZAZA\":\"Varsayılan şablon kullanılacak\",\"HNlEFZ\":\"sil\",\"KpnwJK\":[\"\\\"\",[\"0\"],\"\\\" silinsin mi?\"],\"BlII4o\":[\"Delete \",[\"count\"],\" selected date(s)? Dates with orders will be skipped. This cannot be undone.\"],\"vu7gDm\":\"Bağlı Kuruluşu Sil\",\"KZN4Lc\":\"Tümünü sil\",\"6EkaOO\":\"Delete Date\",\"io0G93\":\"Etkinliği Sil\",\"+jw/c1\":\"Görseli sil\",\"hdyeZ0\":\"İşi sil\",\"xxjZeP\":\"Konumu sil\",\"sY3tIw\":\"Organizatörü Sil\",\"UBv8UK\":\"Delete Permanently\",\"dPyJ15\":\"Şablonu Sil\",\"IQTR34\":\"Delete this category? Any products in it will also be deleted. This cannot be undone.\",\"/1wMxk\":\"Delete this product? This cannot be undone.\",\"mxsm1o\":\"Bu soruyu sil? Bu işlem geri alınamaz.\",\"snMaH4\":\"Webhook'u sil\",\"LIZZLY\":[\"Deleted \",[\"0\"],\" date(s)\"],\"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\":\"Different location\",\"E/QGRL\":\"Disabled\",\"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.\",\"HtaSQp\":\"Bilet aracında her tarih için kaç yer kaldığını gösterir. Bunu tek tek tarihler için değiştirebilirsiniz.\",\"pfa8F0\":\"Görünen ad\",\"Kdpf90\":\"Unutmayın!\",\"352VU2\":\"Hesabınız yok mu? <0>Kaydolun\",\"AXXqG+\":\"Bağış\",\"DPfwMq\":\"Tamam\",\"JoPiZ2\":\"Door staff instructions\",\"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önderebilmek için bir Stripe hesabı bağlamanız gerekmektedir.\\nBu, tüm etkinlik organizatörlerinin doğrulanmış ve hesap verebilir olmasını sağlamak içindir.\",\"euc6Ns\":\"Çoğalt\",\"YueC+F\":\"Duplicate Date\",\"KRmTkx\":\"Ürünü Çoğalt\",\"Jd3ymG\":\"Duration must be at least 1 minute.\",\"KIjvtr\":\"Felemenkçe\",\"22xieU\":\"ör. 180 (3 saat)\",\"/zajIE\":\"e.g. Morning Session\",\"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.\",\"Xfsjel\":\"Her ürün\",\"5oD9f/\":\"Earlier\",\"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\":\"Edit Date\",\"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\":\"Edited\",\"uBAxNB\":\"Düzenleyici\",\"aqxYLv\":\"Eğitim\",\"iiWXDL\":\"Uygunluk Hataları\",\"zPiC+q\":\"Uygun Giriş Listeleri\",\"SiVstt\":\"Email & scheduled messages\",\"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\":\"Embeddable 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\":\"End\",\"sGjBEq\":\"Bitiş Tarihi ve Saati (isteğe bağlı)\",\"PKXt9R\":\"Bitiş tarihi başlangıç tarihinden sonra olmalıdır\",\"ZayGC7\":\"End on a date\",\"48Y16Q\":\"Bitiş saati (isteğe bağlı)\",\"TbaYrr\":[\"Ended \",[\"0\"]],\"CFgwiw\":[\"Ends \",[\"0\"]],\"SqOIQU\":\"Enter a capacity value or choose unlimited.\",\"h37gRz\":\"Enter a label or choose to remove it.\",\"7YZofi\":\"Önizlemeyi görmek için bir konu ve gövde girin\",\"khyScF\":\"Enter a time to shift by.\",\"SKx/0u\":\"Bir mekan adı veya adres girin\",\"ppwojw\":\"Yüz yüze etkinlikler için bir mekan adı veya adres girin\",\"j+eCIq\":\"Adresi elle girin\",\"3bR1r4\":\"Bağlı kuruluş e-postasını girin (isteğe bağlı)\",\"ARkzso\":\"Bağlı kuruluş adını girin\",\"ej4L8b\":\"Enter capacity\",\"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)\",\"RRlWVA\":\"Tüm sipariş\",\"o21Y+P\":\"entries\",\"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\",\"+v+GW0\":\"Etkinlik tarihi gösterimi\",\"7u9/DO\":\"Etkinlik başarıyla silindi\",\"imgKgl\":\"Etkinlik Açıklaması\",\"IzR/Fc\":\"Event lifetime\",\"PYs3rP\":\"Etkinlik adı\",\"HhwcTQ\":\"Etkinlik Adı\",\"WZZzB6\":\"Etkinlik adı gerekli\",\"Wd5CDM\":\"Etkinlik adı 150 karakterden az olmalıdır\",\"4JzCvP\":\"Etkinlik Mevcut Değil\",\"mImacG\":\"Etkinlik Sayfası\",\"Hk9Ki/\":\"Etkinlik başarıyla geri yüklendi\",\"JyD0LH\":\"Etkinlik ayarları\",\"XVLu2v\":\"Etkinlik Başlığı\",\"OfmsI9\":\"Etkinlik Çok Yeni\",\"4SILkp\":\"Event totals\",\"YDVUVl\":\"Etkinlik Türleri\",\"+HeiVx\":\"Etkinlik güncellendi\",\"19j6uh\":\"Etkinlik Performansı\",\"PC3/fk\":\"Önümüzdeki 24 Saat İçinde Başlayan Etkinlikler\",\"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\":\"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\":\"Failed to cancel date\",\"YUX+f+\":\"Failed to cancel dates\",\"SIHgVQ\":\"Mesaj iptal edilemedi\",\"cEFg3R\":\"Bağlı kuruluş oluşturulamadı\",\"dVgNF1\":\"Yapılandırma oluşturulamadı\",\"fAoRRJ\":\"Failed to create schedule\",\"4yLYTb\":\"Program oluşturulamadı. Lütfen tekrar deneyin.\",\"U66oUa\":\"Şablon oluşturulamadı\",\"aFk48v\":\"Yapılandırma silinemedi\",\"n1CYMH\":\"Failed to delete date\",\"KXv+Qn\":\"Failed to delete date. It may have existing orders.\",\"JJ0uRo\":\"Failed to delete dates\",\"rgoBnv\":\"Etkinlik silinemedi\",\"Zw6LWb\":\"İş silinemedi\",\"tq0abZ\":\"İşler silinemedi\",\"2mkc3c\":\"Organizatör silinemedi\",\"5E23qd\":\"Failed to delete product. Please try again.\",\"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\":\"Failed to reactivate date\",\"7zyx8a\":\"Bekleme listesinden kaldırma başarısız\",\"A/P7PX\":\"Failed to remove override\",\"ogWc1z\":\"Failed to reopen date\",\"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\":\"Failed to save override\",\"sj/eZA\":\"Failed to save price override\",\"780n8A\":\"Failed to save product settings\",\"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\":\"Family\",\"5LO38w\":\"Fast payouts to your bank\",\"4lgLew\":\"February\",\"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\":\"Filter attendees\",\"8OvVZZ\":\"Katılımcıları Filtrele\",\"N/H3++\":\"Filter by date\",\"mvrlBO\":\"Etkinliğe göre filtrele\",\"g+xRXP\":\"Finish setting up Stripe\",\"LHH461\":\"Finish setup\",\"syyeb9\":\"First\",\"Vj6wk9\":\"First 30 days\",\"/bpZYb\":\"First 7 days\",\"ziEnjY\":\"First 90 days\",\"1vBhpG\":\"İlk katılımcı\",\"4pwejF\":\"Ad gereklidir\",\"rVogsf\":\"Yayınlamak için sorunları giderin\",\"3lkYdQ\":\"Fixed fee\",\"6bBh3/\":\"Sabit Ücret\",\"zWqUyJ\":\"İşlem başına sabit ücret\",\"LWL3Bs\":\"Sabit ücret 0 veya daha büyük olmalıdır\",\"0RI8m4\":\"Flash off\",\"q0923e\":\"Flash on\",\"X+U6/w\":\"Yazı Tipi Ailesi\",\"lWxAUo\":\"Yiyecek ve İçecek\",\"nFm+5u\":\"Alt Bilgi Metni\",\"a8nooQ\":\"Fourth\",\"wtuVU4\":\"Frequency\",\"xVhQZV\":\"Fri\",\"39y5bn\":\"Friday\",\"f5UbZ0\":\"Full data ownership\",\"cfvx/y\":\"Full event\",\"MY2SVM\":\"Tam iade\",\"PGQLdy\":\"future\",\"8N/j1s\":\"Future dates only\",\"yRx/6K\":\"Future dates will be copied with capacity reset to zero\",\"T02gNN\":\"Genel Giriş\",\"3ep0Gx\":\"Organizatörünüz hakkında genel bilgiler\",\"ziAjHi\":\"Oluştur\",\"exy8uo\":\"Kod oluştur\",\"4CETZY\":\"Yol Tarifi Al\",\"pjkEcB\":\"Get Paid\",\"lGYzP6\":\"Get paid with Stripe\",\"ZDIydz\":\"Başlayın\",\"u6FPxT\":\"Bilet Al\",\"8KDgYV\":\"Etkinliğinizi hazırlayın\",\"RkXlPZ\":\"GitHub\",\"sr0UJD\":\"Go Back\",\"oNL5vN\":\"Etkinlik Sayfasına Git\",\"gHSuV/\":\"Ana sayfaya git\",\"8+Cj55\":\"Go to Schedule\",\"6nDzTl\":\"İyi okunabilirlik\",\"76gPWk\":\"Got it\",\"CZXzs4\":\"Yunanca\",\"aGWZUr\":\"Brüt gelir\",\"n8IUs7\":\"Brüt Gelir\",\"O1wAlQ\":\"Guest\",\"LIYoRQ\":\"Misafir yönetimi\",\"NUsTc4\":\"Happening now\",\"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\":\"Hi,\",\"/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\":\"Hide details\",\"FmogyU\":\"Seçenekleri Gizle\",\"uXNYjR\":\"Tükenen tarih ve saatleri gizle\",\"g9RcYX\":\"Tarihi gizle\",\"uMwTx7\":\"Bu kategori gizlensin mi?\",\"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\":\"Hobbies\",\"yY8wAv\":\"Hours\",\"49Tkiw\":\"İndirim nasıl uygulanır?\",\"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\":\"How long does the schedule run?\",\"DMr2XN\":\"How often?\",\"cceMns\":\"How VAT is applied to the platform fees we charge you.\",\"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\",\"CY3yHL\":\"İşaretlenirse, bu kategori herkese açık görünümden gizlenir.\",\"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\":[\"in last \",[\"0\"],\" min\"],\"u7r0G5\":\"In person — set a venue\",\"/LCAwL\":\"Devam ediyor\",\"F1Xp97\":\"Bireysel katılımcılar\",\"85e6zs\":\"Liquid Token Ekle\",\"CTWsuc\":\"Instagram\",\"VopR6B\":\"Instant Stripe payouts\",\"nbfdhU\":\"Entegrasyonlar\",\"I8eJ6/\":\"Internal notes on the attendee's ticket\",\"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\",\"Dn4OyV\":\"Davet edildi\",\"IuMGvq\":\"Fatura\",\"a/bUcL\":\"It happens on more than one date\",\"d+Oe9r\":\"It may have been unpublished or removed. Please check the link and try again.\",\"Lj7sBL\":\"İtalyanca\",\"F5/CBH\":\"ürün\",\"BzfzPK\":\"Ürünler\",\"rjyWPb\":\"January\",\"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\":\"July\",\"zeEQd/\":\"June\",\"MxjCqk\":\"Sadece biletlerinizi mi arıyorsunuz?\",\"xOTzt5\":\"just now\",\"0RihU9\":\"Just wrapped\",\"lB2hSG\":[[\"0\"],\" adresinden haberler ve etkinlikler hakkında beni bilgilendirin\"],\"ioFA9i\":\"Keep the profit.\",\"o66QSP\":\"label updates\",\"RtKKbA\":\"Last\",\"DruLRc\":\"Son 14 Gün\",\"ve9JTU\":\"Soyad gereklidir\",\"h0Q9Iw\":\"Son Yanıt\",\"gw3Ur5\":\"Son Tetiklenme\",\"FIq1Ba\":\"Later\",\"xvnLMP\":\"Latest check-ins\",\"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\":\"Açık\",\"1qY5Ue\":\"Bağlantı Süresi Doldu veya Geçersiz\",\"gggTBm\":\"LinkedIn\",\"nvOPBA\":\"Bağlantılara İzin Verildi\",\"2BBAbc\":\"List\",\"dF6vP6\":\"Canlı\",\"fpMs2Z\":\"CANLI\",\"D9zTjx\":\"Canlı Etkinlikler\",\"C33p4q\":\"Loaded dates\",\"WdmJIX\":\"Önizleme yükleniyor...\",\"IoDI2o\":\"Token'lar yükleniyor...\",\"G3Ge9Z\":\"Webhook günlükleri yükleniyor...\",\"NFxlHW\":\"Webhook'lar Yükleniyor\",\"E0DoRM\":\"Konum silindi\",\"7w8lJU\":\"Konum kaydedildi\",\"YsRXDD\":\"Konum güncellendi\",\"A/kIva\":\"location updates\",\"iyZPPR\":\"konum\",\"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\",\"PSRm6/\":\"Biletlerimi ara\",\"yJFu/X\":\"Merkez Ofis\",\"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\":\"Etkinliğinizin bekleme listesini yönetin, istatistikleri görüntüleyin ve katılımcılara bilet teklif edin.\",\"g2npA5\":\"Manuel teklif\",\"hg6l4j\":\"March\",\"pqRBOz\":\"Mark as validated (admin override)\",\"2L3vle\":\"Maks Mesaj / 24s\",\"Qp4HWD\":\"Maks Alıcı / Mesaj\",\"3JzsDb\":\"May\",\"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\":\"Minutes\",\"zz/Wd/\":\"Mode\",\"fpMgHS\":\"Mon\",\"hty0d5\":\"Monday\",\"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\":\"month\",\"HajiZl\":\"Ay\",\"+8Nek/\":\"Monthly\",\"1LkxnU\":\"Monthly Pattern\",\"6jefe3\":\"months\",\"f8jrkd\":\"more\",\"JcD7qf\":\"More actions\",\"w36OkR\":\"En Çok Görüntülenen Etkinlikler (Son 14 Gün)\",\"+Y/na7\":\"Move all dates earlier or later\",\"3DIpY0\":\"Multiple locations\",\"g9cQCP\":\"Multiple ticket types\",\"GfaxEk\":\"Müzik\",\"oVGCGh\":\"Biletlerim\",\"8/brI5\":\"Ad gerekli\",\"sFFArG\":\"İsim 255 karakterden az olmalıdır\",\"xxU3NX\":\"Net Gelir\",\"7I8LlL\":\"New capacity\",\"n1GRql\":\"New label\",\"y0Fcpd\":\"Yeni konum\",\"ArHT/C\":\"Yeni Kayıtlar\",\"uK7xWf\":\"New time:\",\"veT5Br\":\"Next occurrence\",\"WXtl5X\":[\"Next: \",[\"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\":\"No attendees to show\",\"PKySlW\":\"No attendees yet for this date.\",\"/UC6qk\":\"Atıf verisi bulunamadı\",\"E2vYsO\":\"No capabilities reported by Stripe yet.\",\"amMkpL\":\"Kapasite yok\",\"d2Jf1f\":\"No change\",\"99ntUF\":\"Bu etkinlik için kullanılabilir giriş listesi yok.\",\"wG+knX\":\"No check-ins yet\",\"+dAKxg\":\"Yapılandırma bulunamadı\",\"LiLk8u\":\"No connections available\",\"eb47T5\":\"Seçilen filtreler için veri bulunamadı. Tarih aralığını veya para birimini ayarlamayı deneyin.\",\"Zc216S\":\"No date added\",\"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\",\"OtJSnL\":\"Planlanmış tarih yok\",\"gEdNe8\":\"No dates scheduled yet\",\"pZNOT9\":\"Bitiş tarihi yok\",\"dW40Uz\":\"Etkinlik bulunamadı\",\"8pQ3NJ\":\"Önümüzdeki 24 saat içinde başlayan etkinlik yok\",\"8zCZQf\":\"Henüz etkinlik yok\",\"Yc5YW6\":\"Başarısız iş yok\",\"EpvBAp\":\"Fatura yok\",\"XZkeaI\":\"Günlük bulunamadı\",\"IcAC6J\":\"Eşleşen yazı tipi yok\",\"nrSs2u\":\"Mesaj bulunamadı\",\"Rj99yx\":\"No occurrences available\",\"IFU1IG\":\"No occurrences on this date\",\"OVFwlg\":\"Henüz sipariş sorusu yok\",\"EJ7bVz\":\"Sipariş bulunamadı\",\"NEmyqy\":\"Henüz sipariş yok\",\"a77B6w\":\"No orders yet for this date.\",\"wUv5xQ\":\"Son 14 günde organizatör aktivitesi yok\",\"vLd1tV\":\"No organizer context available.\",\"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\":\"No products configured for this event.\",\"kY7XDn\":\"Hiçbir ürünün bekleme listesi kaydı yok\",\"8mw4tm\":\"Ürün yok mesajı\",\"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\",\"59OWd3\":\"Kayıtlı Konum Yok\",\"mPdY6W\":\"Öneri yok\",\"3sRuiW\":\"Bilet Bulunamadı\",\"debCrL\":\"Satılacak bilet yok\",\"k2C0ZR\":\"No upcoming dates\",\"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\":\"non-edited\",\"Itw24Q\":\"Not checked in\",\"x5+Lcz\":\"Giriş Yapılmadı\",\"8n10sz\":\"Uygun Değil\",\"kLvU3F\":\"Notify attendees and stop sales\",\"t9QlBd\":\"November\",\"kAREMN\":\"Number of dates to create\",\"6u1B3O\":\"Occurrence\",\"mmoE62\":\"Occurrence Cancelled\",\"V9flmL\":\"Occurrence Schedule\",\"Kh3WO8\":\"Occurrence Summary\",\"byXCTu\":\"Occurrences\",\"KATw3p\":\"Occurrences (future only)\",\"85rTR2\":\"Occurrences can be configured after creation\",\"dzQfDY\":\"October\",\"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.\"],\"6Aih4U\":\"Çevrimdışı\",\"nO3VbP\":[[\"0\"],\" satışta\"],\"oXOSPE\":\"Çevrimiçi\",\"aqmy5k\":\"Online — provide connection details\",\"LuZBbx\":\"Online & in-person\",\"IXuOqt\":\"Online & in-person — see schedule\",\"WjSpu5\":\"Çevrimiçi Etkinlik\",\"scPxI/\":[\"Sadece \",[\"capacity\"],\" kaldı\"],\"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\",\"wkpaqp\":\"Yalnızca başlangıç tarihini ve saatini göster\",\"DMk8F0\":\"Only tickets count toward capacity\",\"M2w1ni\":\"Yalnızca promosyon koduyla görünür\",\"y8Bm7C\":\"Open check-in\",\"RLz7P+\":\"Open occurrence\",\"cDSdPb\":\"Seçicilerde gösterilen isteğe bağlı takma ad, örn. \\\"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\":\"or add a single date\",\"eBskDE\":\"Veya çevrimdışı ödemeleri etkinleştirip Stripe'ı devre dışı bırakın\",\"dSeVIm\":\"order\",\"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\",\"xtQzag\":\"Order details\",\"vrSW9M\":\"Sipariş iptal edildi ve iade edildi. Sipariş sahibi bilgilendirildi.\",\"rzw+wS\":\"Sipariş sahipleri\",\"oI/hGR\":\"Sipariş Kimliği\",\"RQCXz6\":\"Sipariş Limitleri\",\"SO9AEF\":\"Sipariş limitleri ayarlandı\",\"vu6Arl\":\"Sipariş Ödendi Olarak İşaretlendi\",\"sLbJQz\":\"Sipariş bulunamadı\",\"kvYpYu\":\"Sipariş Bulunamadı\",\"eJ8SvM\":\"Order number, purchase date, purchaser email\",\"FaPYw+\":\"Sipariş sahibi\",\"eB5vce\":\"Belirli bir ürüne sahip sipariş sahipleri\",\"CxLoxM\":\"Ürünlere sahip sipariş sahipleri\",\"UkHo4c\":\"Sipariş Ref.\",\"EZy55F\":\"Sipariş İade Edildi\",\"6eSHqs\":\"Sipariş durumları\",\"oW5877\":\"Sipariş Toplamı\",\"e7eZuA\":\"Sipariş Güncellendi\",\"1SQRYo\":\"Sipariş başarıyla güncellendi\",\"3NT0Ck\":\"Sipariş iptal edildi\",\"V5khLm\":\"orders\",\"sd5IMt\":\"Tamamlanan Siparişler\",\"5It1cQ\":\"Siparişler Dışa Aktarıldı\",\"UQ0ACV\":\"Sipariş Toplamı\",\"B/EBQv\":\"Siparişler:\",\"qtGTNu\":\"Organik Hesaplar\",\"P/JHA4\":\"Organizatör başarıyla arşivlendi\",\"S3CZ5M\":\"Organizatör Paneli\",\"GzjTd0\":\"Organizatör başarıyla silindi\",\"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\":\"Organizers\",\"/IX/7x\":\"Diğer\",\"RsiDDQ\":\"Diğer Listeler (Bilet Dahil Değil)\",\"aDfajK\":\"Outdoors\",\"qMASRF\":\"Giden mesajlar\",\"iCOVQO\":\"Override\",\"GpFTEc\":\"Override fees on this organizer\",\"M9ZhMP\":\"Override price\",\"cnVIpl\":\"Override removed\",\"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\":\"Past due\",\"xTPjSy\":\"Geçmiş Etkinlikler\",\"/l/ckQ\":\"URL Yapıştır\",\"URAE3q\":\"Duraklatıldı\",\"4fL/V7\":\"Öde\",\"c2/9VE\":\"Yük\",\"5cxUwd\":\"Ödeme Tarihi\",\"ENEPLY\":\"Ödeme yöntemi\",\"8Lx2X7\":\"Ödeme alındı\",\"fx8BTd\":\"Ödemeler mevcut değil\",\"C+ylwF\":\"Payouts\",\"UbRKMZ\":\"Pending\",\"UkM20g\":\"İnceleme Bekliyor\",\"dPYu1F\":\"Katılımcı Başına\",\"mQV/nJ\":\"per min\",\"+kvxv+\":\"sipariş başına\",\"VlXNyK\":\"Sipariş başına\",\"NhuGd7\":\"ürün başına\",\"hauDFf\":\"Bilet başına\",\"mnF83a\":\"Yüzde Ücreti\",\"TNLuRD\":\"Percentage fee (%)\",\"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\":\"Permanently remove this date\",\"6kPk3+\":\"Kişisel Bilgiler\",\"zmwvG2\":\"Telefon\",\"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\":\"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\":\"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\":\"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\":\"Please select a date and time\",\"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\":\"Position\",\"OESu7I\":\"Birden fazla bilet türünde stok paylaşarak aşırı satışı önleyin.\",\"NgVUL2\":\"Ödeme formunu önizle\",\"cs5muu\":\"Etkinlik sayfasını önizle\",\"Jm2AC3\":\"Price Tier\",\"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\":\"Product settings cannot be edited for cancelled dates.\",\"2339ej\":\"Product settings saved successfully\",\"ldVIlB\":\"Ürün Güncellendi\",\"CP3D8G\":\"Progress\",\"JoKGiJ\":\"Promosyon kodu\",\"k3wH7i\":\"Promosyon kodu kullanımı ve indirim dökümü\",\"tZqL0q\":\"promo codes\",\"oCHiz3\":\"Promo codes\",\"uEhdRh\":\"Yalnızca Promosyon\",\"dLm8V5\":\"Promosyon e-postaları hesap askıya alınmasına neden olabilir\",\"W0ETyY\":\"En az bir adres alanı girin (mekan, sokak, şehir veya ülke).\",\"2W/7Gz\":\"Provide the following before Stripe's next review to keep payouts flowing.\",\"EEYbdt\":\"Yayınla\",\"JcgJKc\":\"Yine de yayınla\",\"evDBV8\":\"Etkinliği yayınla\",\"2zEfOd\":\"Publish your event\",\"L7nrC8\":\"Yayınladığınızda etkinlik sayfanız herkese açık olur ve kayıtlar açılır.\",\"dsFmM+\":\"Satın Alındı\",\"JunetL\":\"Purchaser\",\"phmeUH\":\"Purchaser email\",\"ywR4ZL\":\"QR code check-in\",\"oWXNE5\":\"Adet\",\"biEyJ4\":\"Question answers\",\"k/bJj0\":\"Sorular yeniden sıralandı\",\"b24kPi\":\"Kuyruk\",\"lTPqpM\":\"Quick Tip\",\"fqDzSu\":\"Oran\",\"mnUGVC\":\"Hız sınırı aşıldı. Lütfen daha sonra tekrar deneyin.\",\"t41hVI\":\"Yeri Yeniden Teklif Et\",\"TNclgc\":\"Reactivate this date? It will be reopened for future sales.\",\"RENQ6j\":\"Yayına hazır mısınız?\",\"uqoRbb\":\"Real-time analytics\",\"xzRvs4\":[[\"0\"],\"'ten ürün güncellemeleri alın.\"],\"pLXbi8\":\"Son Hesap Kayıtları\",\"M1HGuR\":\"Recent activity\",\"3kJ0gv\":\"Recent Attendees\",\"qhfiwV\":\"Recent check-ins\",\"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\",\"WEYdDv\":\"Recommended\",\"wuhHPE\":\"Recurring\",\"asLqwt\":\"Tekrarlayan Etkinlik\",\"s3uzsK\":\"Tekrarlayan Etkinlik Ayarları\",\"D0tAMe\":\"Recurring events\",\"JjMIKU\":\"Reddit\",\"HiGkFu\":\"Stripe'a yönlendiriliyor...\",\"pnoTN5\":\"Yönlendirme Hesapları\",\"ACKu03\":\"Önizlemeyi Yenile\",\"vuFYA6\":\"Refund all orders for these dates\",\"4cRUK3\":\"Refund all orders for this date\",\"fKn/k6\":\"İade tutarı\",\"qY4rpA\":\"İade başarısız oldu\",\"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\":\"Remaining\",\"Bjh87R\":\"Remove label from all dates\",\"IVZaEo\":\"Tükenen tarih ve saatleri etkinlik sayfasından tamamen kaldırır. Devre dışı bırakıldığında görünür kalır ve tükendi olarak etiketlenir.\",\"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\":\"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\":\"Reset to base price\",\"kCn6wb\":\"Sıfırlanıyor...\",\"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\":\"results\",\"6gRgw8\":\"Yeniden dene\",\"1BG8ga\":\"Tümünü yeniden dene\",\"rDC+T6\":\"İşi yeniden dene\",\"CbnrWb\":\"Etkinliğe Dön\",\"Lf7TCn\":\"Adresli etkinlikler oluşturdukça yeniden kullanılabilir mekanlar burada otomatik olarak görünür; kendiniz de ekleyebilirsiniz.\",\"mdQ0zb\":\"Etkinlikleriniz için yeniden kullanılabilir mekanlar. Otomatik tamamlama ile oluşturulan konumlar burada otomatik olarak kaydedilir.\",\"XFOPle\":\"Reuse\",\"1Zehp4\":\"Reuse a Stripe connection from another organizer in this account.\",\"Oo/PLb\":\"Gelir Özeti\",\"CfuueU\":\"Teklifi iptal et\",\"RIgKv+\":\"Run until a specific date\",\"dFFW9L\":[\"Satış sona erdi \",[\"0\"]],\"loCKGB\":[\"Satış bitiyor \",[\"0\"]],\"wlfBad\":\"Satış Dönemi\",\"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\":\"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\":\"Sales, attendance, and check-in breakdown per occurrence\",\"3VnlS9\":\"Tüm etkinlikler için satışlar, siparişler ve performans metrikleri\",\"3Q1AWe\":\"Satışlar:\",\"LeuERW\":\"Same as event\",\"B4nE3N\":\"Örnek bilet fiyatı\",\"8BRPoH\":\"Örnek Mekan\",\"PiK6Ld\":\"Sat\",\"+5kO8P\":\"Saturday\",\"zJiuDn\":\"Save fee override\",\"NB8Uxt\":\"Save Schedule\",\"KZrfYJ\":\"Sosyal Bağlantıları Kaydet\",\"9Y3hAT\":\"Şablonu Kaydet\",\"C8ne4X\":\"Bilet Tasarımını Kaydet\",\"cTI8IK\":\"Save VAT settings\",\"6/TNCd\":\"KDV Ayarlarını Kaydet\",\"4RvD9q\":\"Kayıtlı konum\",\"cgw0cL\":\"Kayıtlı konumlar\",\"Fbqm/I\":\"Saving an override creates a dedicated configuration for this organizer if it's currently on the system default.\",\"I+FvbD\":\"Tara\",\"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\":\"Daha sonra gönder\",\"NAzVVw\":\"Mesajı zamanla\",\"Fz09JP\":\"Schedule starts on\",\"4ba0NE\":\"Planlandı\",\"qcP/8K\":\"Zamanlanmış saat\",\"A1taO8\":\"Search\",\"ftNXma\":\"Bağlı kuruluşları ara...\",\"VMU+zM\":\"Search attendees\",\"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...\",\"YnMfsK\":\"Ada veya adrese göre ara...\",\"VT+urE\":\"İsim veya e-posta ile ara...\",\"GHdjuo\":\"Ad, e-posta veya hesaba göre ara...\",\"4mBFO7\":\"Search by name, order #, ticket # or email\",\"20ce0U\":\"Sipariş kimliği, müşteri adı veya e-posta ile arayın...\",\"4DSz7Z\":\"Konu, etkinlik veya hesaba göre ara...\",\"nQC7Z9\":\"Search dates...\",\"iRtEpV\":\"Search dates…\",\"JRM7ao\":\"Search for an address\",\"BWF1kC\":\"Mesajlarda ara...\",\"5WYZKZ\":\"Arama sonuçları\",\"IG85fV\":\"Kayıtlı konumları arayın veya bir adres bulun...\",\"3aD3GF\":\"Seasonal\",\"ku//5b\":\"Second\",\"Mck5ht\":\"Güvenli Ödeme\",\"s7tXqF\":\"See schedule\",\"JFap6u\":\"See what Stripe still needs\",\"p7xUrt\":\"Bir kategori seçin\",\"hTKQwS\":\"Select a Date & Time\",\"Ps6Xtf\":\"Select a date to see available times\",\"e4L7bF\":\"İçeriğini görüntülemek için bir mesaj seçin\",\"zPRPMf\":\"Bir seviye seçin\",\"BFRSTT\":\"Hesap Seç\",\"wgNoIs\":\"Select all\",\"mCB6Je\":\"Tümünü Seç\",\"aCEysm\":[\"Select all on \",[\"0\"]],\"a6+167\":\"Bir etkinlik seçin\",\"CFbaPk\":\"Katılımcı grubu seçin\",\"88a49s\":\"Select camera\",\"tVW/yo\":\"Para birimi seçin\",\"SJQM1I\":\"Select date\",\"n9ZhRa\":\"Bitiş tarih ve saatini seçin\",\"gTN6Ws\":\"Bitiş saatini seçin\",\"0U6E9W\":\"Etkinlik kategorisi seçin\",\"j9cPeF\":\"Etkinlik türlerini seçin\",\"ypTjHL\":\"Select occurrence\",\"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\":\"selected\",\"ylXj1N\":\"Seçildi\",\"uq3CXQ\":\"Sell out your event.\",\"oBXbO4\":\"Selling a physical product? Cap its quantity on the <0>products page instead.\",\"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\":\"Send to all occurrences, or choose a specific one\",\"QEQlnV\":\"İlk mesajınızı gönderin\",\"IoAuJG\":\"Gönderiliyor...\",\"h69WC6\":\"Gönderildi\",\"BVu2Hz\":\"Gönderen\",\"ZFa8wv\":\"Sent to attendees when a scheduled date is cancelled\",\"SPdzrs\":\"Müşterilere sipariş verdiklerinde gönderilir\",\"LxSN5F\":\"Her katılımcıya bilet detaylarıyla birlikte gönderilir\",\"hgvbYY\":\"September\",\"5sN96e\":\"Session cancelled\",\"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\":\"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\":\"Farklı girişler, oturumlar veya günler için giriş listeleri oluşturun.\",\"TaWVGe\":\"Set up payouts\",\"JA//e6\":\"Set up schedule\",\"gzXY7l\":\"Set Up Schedule\",\"0Ls9qe\":\"Set up the tickets you'll sell and their prices\",\"xMO+Ao\":\"Organizasyonunuzu kurun\",\"5pEFnq\":\"Set up your schedule\",\"h/9JiC\":\"Set Up Your Schedule\",\"zRRuUD\":\"Set up your schedule in the next steps\",\"ETC76A\":\"Set, change, or remove the date's location or online details\",\"C3htzi\":\"Ayar güncellendi\",\"Ohn74G\":\"Kurulum ve Tasarım\",\"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\":\"Bağlı Kuruluş Bağlantısını Paylaş\",\"hL7sDJ\":\"Organizatör Sayfasını Paylaş\",\"jy6QDF\":\"Paylaşımlı Kapasite Yönetimi\",\"jDNHW4\":\"Shift times\",\"tPfIaW\":[\"Shifted times for \",[\"count\"],\" date(s)\"],\"WwlM8F\":\"Gelişmiş seçenekleri göster\",\"cMW+gm\":[\"Tüm platformları göster (\",[\"0\"],\" değerli daha fazla)\"],\"wXi9pZ\":\"Show attendee notes to non-logged-in staff\",\"4LZFir\":\"Tüm tarih aralığını 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\",\"b33PL9\":\"Daha fazla platform göster\",\"Eut7p9\":\"Show order details to non-logged-in staff\",\"+RoWKN\":\"Show question answers to non-logged-in staff\",\"jbcx6L\":\"Show remaining capacity on event dates\",\"rXxBOx\":\"Show remaining capacity to buyers\",\"t1LIQW\":[[\"totalRows\"],\" kayıttan \",[\"0\"],\" tanesi gösteriliyor\"],\"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\":\"Kayıt Tarihi\",\"5C7J+P\":\"Single Event\",\"E//btK\":\"Skip manually edited dates\",\"paESr6\":\"Slovakça\",\"9wu8nm\":\"Snapchat\",\"kIKb9e\":\"Sosyal\",\"d0rUsW\":\"Sosyal Bağlantılar\",\"j/TOB3\":\"Sosyal Bağlantılar ve Web Sitesi\",\"s9KGXU\":\"Satıldı\",\"yp+0jj\":\"sold out\",\"1hupow\":\"Tükendi, bekleme listesi mevcut\",\"iACSrw\":\"Some details are hidden from public access. Log in to view everything.\",\"Dia6iz\":\"Something went wrong while deleting the image. Please try again.\",\"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\":\"Spirituality\",\"oPaRES\":\"Split check-in across days, areas, or ticket types. Share the link with staff — no account needed on their end.\",\"7JFNej\":\"Spor\",\"/bfV1Y\":\"Staff instructions\",\"tXkhj/\":\"Start\",\"StWUH4\":\"Start check-in\",\"JcQp9p\":\"Başlangıç tarihi ve saati\",\"0m/ekX\":\"Başlangıç Tarihi ve Saati\",\"izRfYP\":\"Başlangıç tarihi gerekli\",\"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/\":\"İstatistikler\",\"GVUxAX\":\"İstatistikler hesap oluşturma tarihine göre hesaplanır\",\"29Hx9U\":\"Stats\",\"5ia+r6\":\"Still needed\",\"wuV0bK\":\"Taklidi Durdur\",\"s/KaDb\":\"Stripe connected\",\"Bk06QI\":\"Stripe Bağlı\",\"akZMv8\":[\"Stripe connection copied from \",[\"0\"],\".\"],\"v0aRY1\":\"Stripe didn't return a setup link. Please try again.\",\"aKtF0O\":\"Stripe Bağlı Değil\",\"9i0++A\":\"Stripe Ödeme ID\",\"R1lIMV\":\"Stripe will need a few more details soon\",\"FzcCHA\":\"Stripe will walk you through a few quick questions to finish setup.\",\"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\",\"kRWc2g\":\"Tekrarlayan Etkinlik 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\":\"İzleme 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\":\"Sun\",\"DBC3t5\":\"Sunday\",\"UaISq3\":\"İsveççe\",\"JZTQI0\":\"Organizatör Değiştir\",\"9YHrNC\":\"Sistem Varsayılanı\",\"lruQkA\":\"Tap this screen to resume scanning\",\"TJUrME\":[\"Targeting attendees across \",[\"0\"],\" selected sessions.\"],\"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\":\"Team collaboration\",\"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\":\"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\":\"Ş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\",\"nm3Iz/\":\"Katıldığınız için teşekkürler!\",\"pYwj0k\":\"Thanks,\",\"k3IitN\":\"That's a wrap\",\"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.\",\"7oksH+\":[\"İndirim, uygun her üründen düşülür. Örn. \",[\"currencySymbol\"],\"10 indirim × 3 bilet = \",[\"currencySymbol\"],\"30 indirim.\"],\"sKL8k2\":\"İndirim, sipariş toplamından bir kez düşülür.\",\"cDHM1d\":\"E-posta adresi değiştirildi. Katılımcı güncellenmiş e-posta adresinde yeni bir bilet alacaktır.\",\"tXadb0\":\"Aradığınız etkinlik şu anda mevcut değil. Kaldırılmış, süresi dolmuş veya URL yanlış olabilir.\",\"5fPdZe\":\"The first date this schedule will generate from.\",\"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.\",\"Np4eLs\":[\"The maximum is \",[\"MAX_PREVIEW\"],\" sessions. Please reduce the date range, frequency, or number of sessions per day.\"],\"sYLeDq\":\"Aradığınız organizatör bulunamadı. Sayfa taşınmış, silinmiş veya URL yanlış olabilir.\",\"PCr4zw\":\"The override is recorded in the order audit log.\",\"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\",\"OVSkIF\":\"Hızlı kahverengi tilki tembel köpeğin üzerinden atlar.\",\"z0KrIG\":\"Zamanlanmış saat gereklidir\",\"EWErQh\":\"Zamanlanmış saat gelecekte olmalıdır\",\"UNd0OU\":[\"The session for \\\"\",[\"title\"],\"\\\" originally scheduled for \",[\"0\"],\" has been rescheduled.\"],\"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\",\"ybBP2H\":\"There are no products available for this date. Please choose another date.\",\"O7g4eR\":\"There are no upcoming dates for this event\",\"062KsE\":\"These details are shown on the attendee's ticket and order summary for this date only.\",\"5Eu+tn\":\"Bu ayrıntılar yalnızca sipariş başarıyla tamamlandığında gösterilir.\",\"jQjwR+\":\"These details will replace any existing location on the affected dates and show on attendee tickets.\",\"6eaLu/\":\"Bu fiyatlar programınızdaki tüm tarihler için geçerlidir ve kademe adetleri tüm tarihlerin toplam satışını sınırlar. Kademelerin satış tarihleri genel olarak uygulanır. Tek tek tarihler için fiyatları <0>Tarih Programı sayfasında geçersiz kılabilirsiniz.\",\"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\":\"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\":\"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/\":[\"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.\",\"E9BqZw\":\"This date only\",\"RzEvf5\":\"Bu etkinlik sona erdi\",\"kc4bIA\":\"Bu etkinlikte henüz bilet veya ürün yok, bu yüzden katılımcılar kayıt olamaz.\",\"eMaNd0\":\"This event is not available\",\"YClrdK\":\"Bu etkinlik henüz yayınlanmadı\",\"GL6z+k\":\"Bu etkinliğin biletleri tükendi\",\"pIwDhS\":\"This event's dates and times are set on the occurrence schedule.\",\"ny5rgr\":\"This is a recurring event\",\"tc64Zz\":\"Bu, etkinlik sayfasında gösterilecek kategori adıdır.\",\"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.\",\"5DpZrC\":\"Bu, programınızdaki tüm tarihlerin toplam satışını sınırlar — tarih başına bir sınır değildir. Her tarihin katılımcı sayısını sınırlamak için <0>Tarih Programı sayfasında kapasite belirleyin.\",\"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\":\"This occurrence is at capacity\",\"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\",\"qEGn8I\":\"Bu tekrarlayan etkinlikte henüz tarih yok, bu yüzden katılımcıların rezerve edebileceği bir şey yok.\",\"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.\",\"1LuJNw\":\"Bu bilet artık geçerli değil\",\"0Ew0uk\":\"Bu bilet az önce tarandı. Tekrar taramadan önce lütfen bekleyin.\",\"FYXq7k\":[\"This will affect \",[\"loadedAffectedCount\"],\" date(s).\"],\"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\":\"Throughput\",\"+FjWgX\":\"Thu\",\"kkDQ8m\":\"Thursday\",\"0GSPnc\":\"Bilet Tasarımı\",\"EZC/Cu\":\"Bilet tasarımı başarıyla kaydedildi\",\"bbslmb\":\"Bilet Tasarımcısı\",\"1BPctx\":\"Bilet:\",\"HGuXjF\":\"Bilet sahipleri\",\"CMUt3Y\":\"Bilet sahipleri\",\"awHmAT\":\"Bilet ID\",\"6czJik\":\"Bilet Logosu\",\"t79rDv\":\"Bilet Bulunamadı\",\"6tmWch\":\"Bilet veya Ürün\",\"1tfWrD\":\"Bilet Önizlemesi:\",\"KnjoUA\":\"Bilet fiyatı\",\"pGZOcL\":\"Bilet başarıyla yeniden gönderildi\",\"o02GZM\":\"Ticket sales have ended for this event\",\"8jLPgH\":\"Bilet Türü\",\"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\":\"Time\",\"fXf2r5\":[\"Times shown in \",[\"timezoneAbbr\"]],\"dMtLDE\":\"to\",\"/jQctM\":\"Kime\",\"tiI71C\":\"Limitinizi artırmak için bizimle iletişime geçin\",\"ecUA8p\":\"Today\",\"W428WC\":\"Sütunları değiştir\",\"BRMXj0\":\"Tomorrow\",\"UBSG1X\":\"En İyi Organizatörler (Son 14 Gün)\",\"3sZ0xx\":\"Toplam Hesaplar\",\"SMDzqJ\":\"Toplam Katılımcılar\",\"orBECM\":\"Toplam Toplanan\",\"k5CU8c\":\"Toplam kayıt\",\"4B7oCp\":\"Toplam Ücret\",\"sMMlTX\":\"Total fees\",\"mlvCEl\":\"Total orders\",\"2AW/k5\":\"Tüm Tarihler İçin Toplam Adet\",\"dp8BCb\":\"Total tax\",\"vb0Q0/\":\"Toplam Kullanıcılar\",\"oJjplO\":\"Toplam Görüntüleme\",\"rBZ9pz\":\"Tours\",\"orluER\":\"Atıf kaynağına göre hesap büyümesini ve performansını takip edin\",\"YwKzpH\":\"İzleme ve Analitik\",\"GUA0Jy\":\"Try a different search term or filter\",\"2P/OWN\":\"Try adjusting your filters to see more dates.\",\"ouM5IM\":\"Başka bir e-posta deneyin\",\"3DZvE7\":\"Hi.Events'i Ücretsiz Deneyin\",\"vq2WxD\":\"Tue\",\"G3myU+\":\"Tuesday\",\"Kz91g/\":\"Türkçe\",\"GdOhw6\":\"Sesi kapat\",\"KUOhTy\":\"Sesi aç\",\"dBeuY2\":\"Twitch\",\"QytzQr\":\"Onaylamak için \\\"sil\\\" yazın\",\"nWRfmt\":\"Tipografi\",\"IrVSu+\":\"Ürün çoğaltılamıyor. Lütfen bilgilerinizi kontrol edin\",\"Vx2J6x\":\"Katılımcı getirilemedi\",\"h0dx5e\":\"Bekleme listesine katılınamadı\",\"DaE0Hg\":\"Unable to load attendee details.\",\"GlnD5Y\":\"Unable to load products for this date. Please try again.\",\"17VbmV\":\"Unable to undo check-in\",\"n57zCW\":\"Atıfsız Hesaplar\",\"9uI/rE\":\"Undo\",\"Ef7StM\":\"Bilinmeyen\",\"ZBAScj\":\"Bilinmeyen Katılımcı\",\"MEIAzV\":\"Adsız\",\"K6L5Mx\":\"Adsız konum\",\"7yiFvZ\":\"Ödenmedi\",\"X13xGn\":\"Güvenilmez\",\"gyXpQN\":\"Upcoming events\",\"Pp1sWX\":\"Bağlı Kuruluşu Güncelle\",\"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\":\"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 scanner listening\",\"dyTklH\":\"USB scanner paused\",\"OHJXlK\":\"E-postalarınızı kişiselleştirmek için <0>Liquid şablonunu kullanın\",\"/rsy72\":\"Use event default\",\"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.\",\"bA31T4\":\"Tüm katılımcılar için alıcının bilgilerini kullanın\",\"PpgtnC\":\"Bu adresi kullan\",\"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\":\"VAT number\",\"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\":\"VAT registered\",\"Nfbg76\":\"KDV ayarları başarıyla kaydedildi\",\"UvYql/\":\"KDV ayarları kaydedildi. KDV numaranızı arka planda doğruluyoruz.\",\"bXn1Jz\":\"VAT settings updated\",\"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\":\"VAT: not registered\",\"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\":\"View All\",\"yA/6BX\":\"View all →\",\"6CQ7/B\":\"View all capabilities\",\"YSE15b\":\"View all check-in lists\",\"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\":[\"View details for \",[\"0\"],\" \",[\"1\"]],\"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\":\"Waiting for scan…\",\"u0n+wz\":\"Bekleme listesi\",\"3RXFtE\":\"Bekleme listesi etkin\",\"TwnTPy\":\"Bekleme listesi teklifi süresi doldu\",\"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.\",\"aT/44s\":\"We couldn't copy that Stripe connection. Please try again.\",\"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.\",\"Fjj/5/\":\"We couldn't load the check-in lists. Please try again.\",\"ADsQ23\":\"We couldn't reach Stripe just now. Please try again in a moment.\",\"HJKdzP\":\"Bu sayfayı yüklerken bir sorunla karşılaştık. Lütfen tekrar deneyin.\",\"jegrvW\":\"We partner with Stripe to send payouts straight to your bank account.\",\"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ı olması için çerezler 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.\",\"mfM/HJ\":[[\"occurrenceDate\"],\" tarihinde \",[\"productDisplayName\"],\" için bir yer açılırsa sizi e-posta ile bilgilendireceğiz.\"],\"iy+M+c\":[[\"productDisplayName\"],\" için bir yer açılırsa sizi e-posta ile bilgilendireceğiz.\"],\"McuGND\":\"We'll open a message composer with a pre-filled template after saving. You review and send it — nothing is sent automatically.\",\"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\":[\"We've made changes to the schedule for \\\"\",[\"title\"],\"\\\" — \",[\"description\"],\" affecting \",[\"affectedCount\"],\" session(s).\"],\"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 integrations\",\"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\":\"Wed\",\"VAcXNz\":\"Wednesday\",\"64X6l4\":\"week\",\"4XSc4l\":\"Weekly\",\"IAUiSh\":\"weeks\",\"vKLEXy\":\"Weibo\",\"9eF5oV\":\"Tekrar hoş geldiniz\",\"QDWsl9\":[[\"0\"],\"'e Hoş Geldiniz, \",[\"1\"],\" 👋\"],\"LETnBR\":[[\"0\"],\"'e hoş geldiniz, işte tüm etkinliklerinizin listesi\"],\"DDbx7K\":\"Wellness\",\"ywRaYa\":\"What time?\",\"FaSXqR\":\"Ne tür bir etkinlik?\",\"0WyYF4\":\"What unauthenticated staff can see\",\"2+ExvJ\":\"WhatsApp\",\"cxsKvw\":\"Bir giriş silindiğinde\",\"RPe6bE\":\"When a date is cancelled on a recurring event\",\"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 yer açıldığında bilgilendirilmek için bekleme listesine katılabilir.\",\"OIkHj+\":\"Bir ürün tükendiğinde, müşteriler yer açıldığında bilgilendirilmek için bekleme listesine katılabilir. Müşteriler belirli bir tarih için bekleme listesine katılır ve teklifler tarih bazında yapılır.\",\"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\":\"Müşteriler bilet satın aldığında, siparişleri burada görünecektir.\",\"pm9tpn\":\"Etkinleştirildiğinde, alıcılar ad ve e-posta bilgilerini tüm katılımcılara tek seferde kopyalayabilir. \\\"Tüm katılımcılar\\\" seçeneğini kaldırmak için bunu kapatın; alıcılar bilgilerini yine de ilk katılımcıya kopyalayabilir, diğerleri tek tek girilmelidir.\",\"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.\",\"uchB0M\":\"Widget Önizleme\",\"uvIqcj\":\"Atölye\",\"EpknJA\":\"Mesajınızı buraya yazın...\",\"nhtR6Y\":\"X (Twitter)\",\"7qI8sJ\":\"year\",\"zkWmBh\":\"Yearly\",\"+BGee5\":\"years\",\"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+\":\"You can override this for individual dates later.\",\"paWwQ0\":\"Gerekirse biletleri manuel olarak da sunabilirsiniz.\",\"jTDzpA\":\"Hesabınızdaki son aktif organizatörü arşivleyemezsiniz.\",\"D8baxD\":\"Ücretli biletleriniz var ancak Stripe henüz bağlı değil, bu yüzden ödeme alamazsınız.\",\"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/\":\"You need to create at least one occurrence before you can add attendees to this recurring event.\",\"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\":\"You'll be able to set up dates, schedules, and recurrence rules in the next step.\",\"zKAheG\":\"You're changing session times\",\"MNFIxz\":[[\"0\"],\"'e gidiyorsunuz!\"],\"ZlLcht\":[[\"occurrenceDate\"],\" için bekleme listesine katılıyorsunuz.\"],\"qGZz0m\":\"Bekleme listesine eklendi!\",\"/5HL6k\":\"Size bir yer teklif edildi!\",\"gbjFFH\":\"You've changed the session time\",\"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\":\"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\":\"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 43a587c46d..df3126a6a5 100644 --- a/frontend/src/locales/tr.po +++ b/frontend/src/locales/tr.po @@ -179,11 +179,11 @@ msgstr "" msgid "{totalCount} ticket types" msgstr "{totalCount} bilet türü" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:554 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:567 msgid "{totalOccurrences} dates" msgstr "" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:547 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:560 msgid "{totalOccurrences} sessions across {0} dates ({1, plural, one {# session} other {# sessions}} per day)" msgstr "" @@ -516,7 +516,7 @@ msgstr "Aktif Etkinlikler" msgid "Active payment methods" msgstr "" -#: src/components/routes/event/OccurrencesTab/index.tsx:400 +#: src/components/routes/event/OccurrencesTab/index.tsx:402 msgid "Activity" msgstr "" @@ -536,11 +536,11 @@ msgstr "" msgid "Add a description for this check-in list" msgstr "Bu check-in listesi için açıklama ekleyin" -#: src/components/routes/event/OccurrencesTab/index.tsx:538 +#: src/components/routes/event/OccurrencesTab/index.tsx:541 msgid "Add a Single Date" msgstr "" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:739 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:752 msgid "Add another time" msgstr "" @@ -560,7 +560,7 @@ msgstr "Sipariş hakkında not ekleyin. Bunlar müşteri tarafından görülmeye msgid "Add any notes about the order..." msgstr "Sipariş hakkında not ekleyin..." -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:375 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:382 msgid "Add at least one time" msgstr "" @@ -580,7 +580,7 @@ msgstr "" msgid "Add dates" msgstr "Tarih ekle" -#: src/components/routes/event/OccurrencesTab/index.tsx:524 +#: src/components/routes/event/OccurrencesTab/index.tsx:526 msgid "Add Dates" msgstr "" @@ -611,7 +611,7 @@ msgstr "Çevrimdışı ödemeler için talimatlar ekleyin (örn. banka havalesi msgid "Add Location" msgstr "Konum Ekle" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:743 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:756 msgid "Add multiple times if you run several sessions per day." msgstr "" @@ -796,7 +796,7 @@ msgid "all" msgstr "" #: src/components/layouts/CheckIn/tabs/SearchTab.tsx:133 -#: src/components/routes/event/OccurrencesTab/index.tsx:485 +#: src/components/routes/event/OccurrencesTab/index.tsx:487 msgid "All" msgstr "" @@ -987,7 +987,7 @@ msgstr "Beklenmeyen bir hata oluştu." msgid "An unexpected error occurred. Please try again." msgstr "Beklenmeyen bir hata oluştu. Lütfen tekrar deneyin." -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:849 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:862 msgid "and {0} more..." msgstr "" @@ -1003,7 +1003,7 @@ msgstr "" msgid "Answers provided at checkout (e.g. meal choice)" msgstr "" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:564 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:577 msgid "Any dates you've manually customized will be kept." msgstr "" @@ -1071,7 +1071,7 @@ msgstr "" msgid "Approve Message" msgstr "Mesajı Onayla" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:74 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:76 msgid "April" msgstr "" @@ -1127,7 +1127,7 @@ msgstr "Bu etkinliği arşivlemek istediğinizden emin misiniz? Artık kamuya g 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." -#: src/components/routes/event/OccurrencesTab/index.tsx:213 +#: src/components/routes/event/OccurrencesTab/index.tsx:215 msgid "Are you sure you want to cancel {count} date(s)? Affected attendees will be notified by email." msgstr "" @@ -1159,7 +1159,7 @@ msgstr "Bu yapılandırmayı silmek istediğinizden emin misiniz? Bu işlem, onu #: src/components/modals/ManageOccurrenceModal/index.tsx:58 #: src/components/routes/event/OccurrenceDetail/index.tsx:84 -#: src/components/routes/event/OccurrencesTab/index.tsx:182 +#: src/components/routes/event/OccurrencesTab/index.tsx:184 msgid "Are you sure you want to delete this date? This action cannot be undone." msgstr "" @@ -1446,7 +1446,7 @@ msgstr "Atıf Dağılımı" msgid "Attribution Value" msgstr "Atıf Değeri" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:78 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:80 msgid "August" msgstr "" @@ -1625,7 +1625,7 @@ msgstr "Brezilya Portekizcesi" msgid "Built-in fraud protection" msgstr "" -#: src/components/routes/event/OccurrencesTab/index.tsx:515 +#: src/components/routes/event/OccurrencesTab/index.tsx:517 msgid "Bulk Edit" msgstr "" @@ -1674,11 +1674,11 @@ msgstr "İzleme pikselleri ekleyerek, siz ve bu platformun toplanan verilerin or msgid "By continuing, you agree to the <0>{0} Terms of Service" msgstr "Devam ederek, <0>{0} Hizmet Koşullarını kabul etmiş olursunuz" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:628 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:641 msgid "By day of month" msgstr "" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:629 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:642 msgid "By day of week" msgstr "" @@ -1698,7 +1698,7 @@ msgstr "Uygulama Ücretlerini Atla" msgid "Calculation Type" msgstr "Hesaplama Türü" -#: src/components/routes/event/OccurrencesTab/index.tsx:471 +#: src/components/routes/event/OccurrencesTab/index.tsx:473 msgid "Calendar" msgstr "" @@ -1735,7 +1735,7 @@ msgstr "" #: src/components/modals/ManageOrderModal/index.tsx:209 #: src/components/modals/PublishEventModal/index.tsx:208 #: src/components/routes/event/messages.tsx:80 -#: src/components/routes/event/OccurrencesTab/index.tsx:497 +#: src/components/routes/event/OccurrencesTab/index.tsx:499 #: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:272 #: src/components/routes/event/OccurrencesTab/OccurrenceEditModal/index.tsx:306 #: src/components/routes/event/OccurrencesTab/OccurrenceMenu.tsx:61 @@ -1748,8 +1748,8 @@ msgstr "" msgid "Cancel" msgstr "İptal" -#: src/components/routes/event/OccurrencesTab/index.tsx:209 -#: src/components/routes/event/OccurrencesTab/index.tsx:221 +#: src/components/routes/event/OccurrencesTab/index.tsx:211 +#: src/components/routes/event/OccurrencesTab/index.tsx:223 msgid "Cancel {count} date(s)" msgstr "" @@ -1809,7 +1809,7 @@ msgstr "İptal etmek, bu siparişle ilişkili tüm katılımcıları iptal edece msgid "Cancelled" msgstr "İptal Edildi" -#: src/components/routes/event/OccurrencesTab/index.tsx:235 +#: src/components/routes/event/OccurrencesTab/index.tsx:237 msgid "Cancelling {0} date(s). This may take a moment to complete." msgstr "" @@ -1819,7 +1819,7 @@ msgstr "Sistem varsayılan yapılandırması silinemez" #: src/components/forms/CapaciyAssigmentForm/index.tsx:42 #: src/components/routes/event/OccurrencesTab/OccurrenceEditModal/index.tsx:503 -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:811 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:824 msgid "Capacity" msgstr "Kapasite" @@ -2154,7 +2154,7 @@ msgid "City" msgstr "Şehir" #: src/components/common/OccurrenceSelect/index.tsx:133 -#: src/components/routes/event/OccurrencesTab/index.tsx:503 +#: src/components/routes/event/OccurrencesTab/index.tsx:505 msgid "Clear" msgstr "" @@ -2174,7 +2174,7 @@ msgstr "Arama Metnini Temizle" msgid "Clearing removes any per-date override. Affected dates will fall back to the event's default location." msgstr "" -#: src/components/routes/event/OccurrencesTab/index.tsx:331 +#: src/components/routes/event/OccurrencesTab/index.tsx:333 msgid "Click to cancel" msgstr "" @@ -2182,7 +2182,7 @@ msgstr "" msgid "Click to copy" msgstr "Kopyalamak için tıklayın" -#: src/components/routes/event/OccurrencesTab/index.tsx:333 +#: src/components/routes/event/OccurrencesTab/index.tsx:335 msgid "Click to reopen for new sales" msgstr "" @@ -2743,7 +2743,7 @@ msgstr "{0} Şablonu Oluştur" msgid "Create a custom widget to sell tickets on your site." msgstr "Sitenizde bilet satmak için özel bir widget oluşturun." -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:785 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:798 msgid "Create a fixed number" msgstr "" @@ -2879,7 +2879,7 @@ msgstr "Promosyon Kodu Oluştur" msgid "Create Question" msgstr "Soru Oluştur" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:864 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:877 msgid "Create Schedule" msgstr "" @@ -2927,6 +2927,10 @@ msgstr "Kendi etkinliğinizi oluşturun" msgid "Created" msgstr "Oluşturuldu" +#: src/components/routes/event/OccurrencesTab/index.tsx:549 +msgid "Creating {0} dates. This may take a moment." +msgstr "{0} tarih oluşturuluyor. Bu biraz zaman alabilir." + #: src/components/routes/welcome/index.tsx:472 msgid "Creating Event..." msgstr "Etkinlik Oluşturuluyor..." @@ -3066,7 +3070,7 @@ msgstr "Etkinlik sayfanızı özelleştirin" msgid "Customize your organizer page appearance" msgstr "Organizatör sayfanızın görünümünü özelleştirin" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:56 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:58 #: src/components/routes/product-widget/OccurrenceSelector/index.tsx:32 msgid "Daily" msgstr "" @@ -3155,7 +3159,7 @@ msgstr "" #: src/components/modals/ManageOccurrenceModal/index.tsx:61 #: src/components/routes/event/OccurrenceDetail/index.tsx:87 -#: src/components/routes/event/OccurrencesTab/index.tsx:184 +#: src/components/routes/event/OccurrencesTab/index.tsx:186 msgid "Date deleted" msgstr "" @@ -3168,7 +3172,7 @@ msgstr "" msgid "Date reactivated" msgstr "" -#: src/components/routes/event/OccurrencesTab/index.tsx:198 +#: src/components/routes/event/OccurrencesTab/index.tsx:200 msgid "Date reopened for new sales" msgstr "" @@ -3184,15 +3188,15 @@ msgstr "" msgid "Dates with sessions" msgstr "" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:93 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:95 msgid "day" msgstr "" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:659 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:672 msgid "Day" msgstr "" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:676 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:689 msgid "Day of Month" msgstr "" @@ -3200,19 +3204,19 @@ msgstr "" msgid "Day one capacity" msgstr "Birinci gün kapasitesi" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:101 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:103 msgid "days" msgstr "" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:635 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:648 msgid "Days of Month" msgstr "" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:605 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:618 msgid "Days of Week" msgstr "" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:82 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:84 msgid "December" msgstr "" @@ -3230,7 +3234,7 @@ msgstr "Varsayılan" msgid "Default attendee information collection" msgstr "Varsayılan katılımcı bilgi toplama" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:815 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:828 msgid "Default capacity per date" msgstr "" @@ -3253,7 +3257,7 @@ msgstr "sil" #: src/components/common/QuestionsTable/index.tsx:150 #: src/components/common/TaxAndFeeList/index.tsx:81 #: src/components/routes/admin/FailedJobs/index.tsx:209 -#: src/components/routes/event/OccurrencesTab/index.tsx:500 +#: src/components/routes/event/OccurrencesTab/index.tsx:502 #: src/components/routes/event/OccurrencesTab/OccurrenceMenu.tsx:62 msgid "Delete" msgstr "Sil" @@ -3262,7 +3266,7 @@ msgstr "Sil" msgid "Delete \"{0}\"?" msgstr "\"{0}\" silinsin mi?" -#: src/components/routes/event/OccurrencesTab/index.tsx:247 +#: src/components/routes/event/OccurrencesTab/index.tsx:249 msgid "Delete {count} selected date(s)? Dates with orders will be skipped. This cannot be undone." msgstr "" @@ -3344,7 +3348,7 @@ msgstr "Bu soruyu sil? Bu işlem geri alınamaz." msgid "Delete webhook" msgstr "Webhook'u sil" -#: src/components/routes/event/OccurrencesTab/index.tsx:253 +#: src/components/routes/event/OccurrencesTab/index.tsx:255 msgid "Deleted {0} date(s)" msgstr "" @@ -3565,7 +3569,7 @@ msgstr "ör. 180 (3 saat)" #: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:452 #: src/components/routes/event/OccurrencesTab/OccurrenceEditModal/index.tsx:450 -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:714 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:727 msgid "e.g. Morning Session" msgstr "" @@ -3724,7 +3728,7 @@ msgstr "Webhook'u düzenle" msgid "Edit Webhook" msgstr "Webhook'u Düzenle" -#: src/components/routes/event/OccurrencesTab/index.tsx:306 +#: src/components/routes/event/OccurrencesTab/index.tsx:308 msgid "Edited" msgstr "" @@ -3913,7 +3917,7 @@ msgstr "Bekleme listesini etkinleştir" msgid "Enabled" msgstr "Etkin" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:704 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:717 msgid "End" msgstr "" @@ -3934,7 +3938,7 @@ msgstr "Bitiş Tarihi ve Saati (isteğe bağlı)" msgid "End date must be after start date" msgstr "Bitiş tarihi başlangıç tarihinden sonra olmalıdır" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:771 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:784 msgid "End on a date" msgstr "" @@ -4409,7 +4413,7 @@ msgstr "Katılımcı iptal edilemedi" msgid "Failed to cancel date" msgstr "" -#: src/components/routes/event/OccurrencesTab/index.tsx:239 +#: src/components/routes/event/OccurrencesTab/index.tsx:241 msgid "Failed to cancel dates" msgstr "" @@ -4429,10 +4433,14 @@ msgstr "Bağlı kuruluş oluşturulamadı" msgid "Failed to create configuration" msgstr "Yapılandırma oluşturulamadı" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:530 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:543 msgid "Failed to create schedule" msgstr "" +#: src/hooks/useOccurrenceGenerationPolling.ts:44 +msgid "Failed to create schedule. Please try again." +msgstr "Program oluşturulamadı. Lütfen tekrar deneyin." + #: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:192 #: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:195 msgid "Failed to create template" @@ -4444,7 +4452,7 @@ msgstr "Yapılandırma silinemedi" #: src/components/modals/ManageOccurrenceModal/index.tsx:64 #: src/components/routes/event/OccurrenceDetail/index.tsx:90 -#: src/components/routes/event/OccurrencesTab/index.tsx:185 +#: src/components/routes/event/OccurrencesTab/index.tsx:187 msgid "Failed to delete date" msgstr "" @@ -4452,7 +4460,7 @@ msgstr "" msgid "Failed to delete date. It may have existing orders." msgstr "" -#: src/components/routes/event/OccurrencesTab/index.tsx:256 +#: src/components/routes/event/OccurrencesTab/index.tsx:258 msgid "Failed to delete dates" msgstr "" @@ -4540,7 +4548,7 @@ msgstr "Bekleme listesinden kaldırma başarısız" msgid "Failed to remove override" msgstr "" -#: src/components/routes/event/OccurrencesTab/index.tsx:199 +#: src/components/routes/event/OccurrencesTab/index.tsx:201 msgid "Failed to reopen date" msgstr "" @@ -4677,7 +4685,7 @@ msgstr "" msgid "Fast payouts to your bank" msgstr "" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:72 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:74 msgid "February" msgstr "" @@ -4769,7 +4777,7 @@ msgstr "" msgid "Finish setup" msgstr "" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:63 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:65 msgid "First" msgstr "" @@ -4882,7 +4890,7 @@ msgstr "Alt Bilgi Metni" msgid "Forgot password?" msgstr "Şifrenizi mi unuttunuz?" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:66 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:68 msgid "Fourth" msgstr "" @@ -4909,11 +4917,11 @@ msgstr "Ücretsiz ürün, ödeme bilgisi gerekli değil" msgid "French" msgstr "Fransızca" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:586 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:599 msgid "Frequency" msgstr "" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:50 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:52 msgid "Fri" msgstr "" @@ -5004,7 +5012,7 @@ msgstr "GitHub" #: src/components/routes/event/OccurrenceDetail/index.tsx:72 #: src/components/routes/event/OccurrencesTab/cancelOccurrenceDialog.tsx:49 -#: src/components/routes/event/OccurrencesTab/index.tsx:221 +#: src/components/routes/event/OccurrencesTab/index.tsx:223 #: src/components/routes/event/OccurrencesTab/OccurrenceEditModal/index.tsx:339 #: src/components/routes/event/OccurrencesTab/OccurrenceEditModal/index.tsx:363 msgid "Go Back" @@ -5271,7 +5279,7 @@ msgstr "İndirim nasıl uygulanır?" msgid "How long a customer has to complete their purchase after receiving an offer. Leave empty for no timeout." msgstr "Bir müşterinin teklif aldıktan sonra satın almayı tamamlaması gereken süre. Zaman aşımı olmaması için boş bırakın." -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:750 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:763 msgid "How long does the schedule run?" msgstr "" @@ -5283,7 +5291,7 @@ msgstr "Müşterinin siparişini tamamlamak için kaç dakikası var. En az 15 d msgid "How many times can this code be used?" msgstr "Bu kod kaç kez kullanılabilir?" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:581 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:594 msgid "How often?" msgstr "" @@ -5589,7 +5597,7 @@ msgstr "ürün" msgid "Items" msgstr "Ürünler" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:71 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:73 msgid "January" msgstr "" @@ -5640,11 +5648,11 @@ msgstr "{productDisplayName} için bekleme listesine katıl" msgid "Joined" msgstr "Katıldı" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:77 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:79 msgid "July" msgstr "" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:76 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:78 msgid "June" msgstr "" @@ -5670,7 +5678,7 @@ msgstr "" #: src/components/forms/ProductForm/index.tsx:108 #: src/components/routes/event/OccurrencesTab/OccurrenceEditModal/index.tsx:449 -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:711 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:724 #: src/components/routes/event/Reports/OccurrenceSummaryReport/index.tsx:45 msgid "Label" msgstr "Etiket" @@ -5685,7 +5693,7 @@ msgstr "" msgid "Language" msgstr "Dil" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:67 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:69 msgid "Last" msgstr "" @@ -5794,7 +5802,7 @@ msgid "Leave blank to use the default word \"Invoice\"" msgstr "Varsayılan \"Fatura\" kelimesini kullanmak için boş bırakın" #: src/components/routes/event/OccurrencesTab/OccurrenceEditModal/index.tsx:507 -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:816 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:829 msgid "Leave empty for unlimited" msgstr "" @@ -5834,7 +5842,7 @@ msgstr "LinkedIn" msgid "Links Allowed" msgstr "Bağlantılara İzin Verildi" -#: src/components/routes/event/OccurrencesTab/index.tsx:470 +#: src/components/routes/event/OccurrencesTab/index.tsx:472 msgid "List" msgstr "" @@ -6003,7 +6011,7 @@ msgstr "" msgid "Manage attendee" msgstr "Katılımcıyı yönet" -#: src/components/routes/event/OccurrencesTab/index.tsx:460 +#: src/components/routes/event/OccurrencesTab/index.tsx:462 msgid "Manage dates and times for your recurring event" msgstr "" @@ -6074,7 +6082,7 @@ msgstr "Manuel olarak Katılımcı ekle" msgid "Manually Add Attendee" msgstr "Manuel Katılımcı Ekle" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:73 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:75 msgid "March" msgstr "" @@ -6098,7 +6106,7 @@ msgstr "Maks Alıcı / Mesaj" msgid "Maximum Per Order" msgstr "Sipariş Başına Maksimum" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:75 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:77 msgid "May" msgstr "" @@ -6214,7 +6222,7 @@ msgstr "Çeşitli Ayarlar" msgid "Mode" msgstr "" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:46 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:48 msgid "Mon" msgstr "" @@ -6230,24 +6238,24 @@ msgstr "Para değerleri tüm para birimlerindeki yaklaşık toplamlardır" msgid "Monitor and manage failed background jobs" msgstr "Başarısız arka plan işlerini izleyin ve yönetin" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:95 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:97 msgid "month" msgstr "" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:671 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:684 msgid "Month" msgstr "Ay" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:58 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:60 #: src/components/routes/product-widget/OccurrenceSelector/index.tsx:41 msgid "Monthly" msgstr "" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:624 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:637 msgid "Monthly Pattern" msgstr "" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:103 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:105 msgid "months" msgstr "" @@ -6516,7 +6524,7 @@ msgstr "" msgid "No dates match the current filters." msgstr "" -#: src/components/routes/event/OccurrencesTab/index.tsx:570 +#: src/components/routes/event/OccurrencesTab/index.tsx:580 msgid "No dates match your filters" msgstr "" @@ -6529,7 +6537,7 @@ msgstr "" msgid "No dates scheduled" msgstr "Planlanmış tarih yok" -#: src/components/routes/event/OccurrencesTab/index.tsx:570 +#: src/components/routes/event/OccurrencesTab/index.tsx:580 msgid "No dates scheduled yet" msgstr "" @@ -6820,11 +6828,11 @@ msgstr "" msgid "Notify organizer of new orders" msgstr "Organizatörü yeni siparişler hakkında bilgilendir" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:81 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:83 msgid "November" msgstr "" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:800 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:813 msgid "Number of dates to create" msgstr "" @@ -6849,7 +6857,7 @@ msgid "Occurrence Cancelled" msgstr "" #: src/components/layouts/Event/index.tsx:113 -#: src/components/routes/event/OccurrencesTab/index.tsx:461 +#: src/components/routes/event/OccurrencesTab/index.tsx:463 msgid "Occurrence Schedule" msgstr "" @@ -6871,7 +6879,7 @@ msgstr "" msgid "Occurrences can be configured after creation" msgstr "" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:80 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:82 msgid "October" msgstr "" @@ -6965,7 +6973,7 @@ msgstr "Devam Eden" #: src/components/common/EventCard/index.tsx:103 #: src/components/layouts/OrganizerHomepage/EventCard/index.tsx:49 -#: src/components/routes/event/OccurrencesTab/index.tsx:316 +#: src/components/routes/event/OccurrencesTab/index.tsx:318 #: src/components/routes/event/OccurrencesTab/OccurrenceEditModal/index.tsx:473 #: src/components/routes/my-tickets/index.tsx:56 #: src/components/routes/product-widget/OccurrenceSelector/index.tsx:122 @@ -7080,7 +7088,7 @@ msgstr "Seçenekler" msgid "or" msgstr "veya" -#: src/components/routes/event/OccurrencesTab/index.tsx:593 +#: src/components/routes/event/OccurrencesTab/index.tsx:603 msgid "or add a single date" msgstr "" @@ -7088,7 +7096,7 @@ msgstr "" msgid "Or enable offline payments and disable Stripe" msgstr "Veya çevrimdışı ödemeleri etkinleştirip Stripe'ı devre dışı bırakın" -#: src/components/routes/event/OccurrencesTab/index.tsx:413 +#: src/components/routes/event/OccurrencesTab/index.tsx:415 msgid "order" msgstr "" @@ -7250,7 +7258,7 @@ msgstr "Sipariş başarıyla güncellendi" msgid "Order was cancelled" msgstr "Sipariş iptal edildi" -#: src/components/routes/event/OccurrencesTab/index.tsx:413 +#: src/components/routes/event/OccurrencesTab/index.tsx:415 #: src/components/routes/event/orders.tsx:197 msgid "orders" msgstr "" @@ -7503,7 +7511,7 @@ msgid "Passwords are not the same" msgstr "Şifreler aynı değil" #: src/components/layouts/OrganizerHomepage/index.tsx:291 -#: src/components/routes/event/OccurrencesTab/index.tsx:484 +#: src/components/routes/event/OccurrencesTab/index.tsx:486 #: src/components/routes/organizer/Reports/EventsPerformanceReport/index.tsx:30 msgid "Past" msgstr "Geçmiş" @@ -7707,15 +7715,15 @@ msgstr "Kişisel Bilgiler" msgid "Phone" msgstr "Telefon" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:372 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:379 msgid "Pick an end date" msgstr "" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:380 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:387 msgid "Pick at least one day of the month" msgstr "" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:369 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:376 msgid "Pick at least one day of the week" msgstr "" @@ -7765,7 +7773,7 @@ msgstr "Platform Geliri" msgid "Please add at least one option" msgstr "Lütfen en az bir seçenek ekleyin" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:527 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:540 #: src/hooks/useFormErrorResponseHandler.tsx:18 msgid "Please check the provided information is correct" msgstr "Lütfen verilen bilgilerin doğru olduğunu kontrol edin" @@ -7895,7 +7903,7 @@ msgstr "Popüler Etkinlikler (Son 14 Gün)" msgid "Portuguese" msgstr "Portekizce" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:654 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:667 msgid "Position" msgstr "" @@ -8385,7 +8393,7 @@ msgstr "Yönlendirme Hesapları" msgid "Refresh Preview" msgstr "Önizlemeyi Yenile" -#: src/components/routes/event/OccurrencesTab/index.tsx:216 +#: src/components/routes/event/OccurrencesTab/index.tsx:218 msgid "Refund all orders for these dates" msgstr "" @@ -8494,11 +8502,11 @@ msgstr "Tükenen tarih ve saatleri etkinlik sayfasından tamamen kaldırır. Dev msgid "Reopen for new sales" msgstr "" -#: src/components/routes/event/OccurrencesTab/index.tsx:192 +#: src/components/routes/event/OccurrencesTab/index.tsx:194 msgid "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." msgstr "" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:591 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:604 msgid "Repeat every" msgstr "" @@ -8699,7 +8707,7 @@ msgstr "Teklifi iptal et" msgid "Role" msgstr "Rol" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:772 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:785 msgid "Run until a specific date" msgstr "" @@ -8786,7 +8794,7 @@ msgstr "Örnek bilet fiyatı" msgid "Sample Venue" msgstr "Örnek Mekan" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:51 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:53 msgid "Sat" msgstr "" @@ -8836,7 +8844,7 @@ msgstr "" msgid "Save Organizer" msgstr "Organizatörü Kaydet" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:864 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:877 msgid "Save Schedule" msgstr "" @@ -8900,11 +8908,12 @@ msgstr "" msgid "Schedule added" msgstr "" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:520 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:530 +#: src/hooks/useOccurrenceGenerationPolling.ts:36 msgid "Schedule created successfully" msgstr "" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:793 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:806 msgid "Schedule ends on" msgstr "" @@ -8916,7 +8925,7 @@ msgstr "Daha sonra gönder" msgid "Schedule Message" msgstr "Mesajı zamanla" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:755 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:768 msgid "Schedule starts on" msgstr "" @@ -9039,7 +9048,7 @@ msgstr "Ara..." msgid "Seasonal" msgstr "" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:64 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:66 msgid "Second" msgstr "" @@ -9215,7 +9224,7 @@ msgstr "Bu webhook'u tetikleyecek etkinlikleri seçin" msgid "Select..." msgstr "Seç..." -#: src/components/routes/event/OccurrencesTab/index.tsx:495 +#: src/components/routes/event/OccurrencesTab/index.tsx:497 msgid "selected" msgstr "" @@ -9345,7 +9354,7 @@ msgstr "SEO Ayarları" msgid "SEO Title" msgstr "SEO Başlığı" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:79 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:81 msgid "September" msgstr "" @@ -9373,7 +9382,7 @@ msgstr "Bu organizatör altında oluşturulan yeni etkinlikler için varsayılan msgid "Set how long each date lasts" msgstr "" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:784 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:797 msgid "Set number of dates" msgstr "" @@ -9393,7 +9402,7 @@ msgstr "Fatura numaralandırması için başlangıç numarasını ayarlayın. Fa msgid "Set to unlimited (remove limit)" msgstr "" -#: src/components/routes/event/OccurrencesTab/index.tsx:575 +#: src/components/routes/event/OccurrencesTab/index.tsx:585 msgid "Set up a recurring schedule to automatically create dates, or add them one at a time." msgstr "" @@ -9410,8 +9419,8 @@ msgstr "" msgid "Set up schedule" msgstr "" -#: src/components/routes/event/OccurrencesTab/index.tsx:532 -#: src/components/routes/event/OccurrencesTab/index.tsx:586 +#: src/components/routes/event/OccurrencesTab/index.tsx:535 +#: src/components/routes/event/OccurrencesTab/index.tsx:596 msgid "Set Up Schedule" msgstr "" @@ -9427,7 +9436,7 @@ msgstr "Organizasyonunuzu kurun" msgid "Set up your schedule" msgstr "" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:569 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:582 msgid "Set Up Your Schedule" msgstr "" @@ -9564,7 +9573,7 @@ msgstr "Vergi ve ücretleri ayrı göster" msgid "Showing {0} of {totalRows} records" msgstr "{totalRows} kayıttan {0} tanesi gösteriliyor" -#: src/components/routes/event/OccurrencesTab/index.tsx:614 +#: src/components/routes/event/OccurrencesTab/index.tsx:624 msgid "Showing {0}–{1} of {2}" msgstr "" @@ -9645,7 +9654,7 @@ msgstr "Sosyal Bağlantılar ve Web Sitesi" #: src/components/common/ProductsTable/SortableProduct/index.tsx:387 #: src/components/modals/ManageOccurrenceModal/index.tsx:186 -#: src/components/routes/event/OccurrencesTab/index.tsx:369 +#: src/components/routes/event/OccurrencesTab/index.tsx:371 msgid "Sold" msgstr "Satıldı" @@ -9753,7 +9762,7 @@ msgstr "" msgid "Standard product with a fixed price" msgstr "Sabit fiyatlı standart ürün" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:696 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:709 msgid "Start" msgstr "" @@ -9846,7 +9855,7 @@ msgstr "" #: src/components/routes/admin/Messages/index.tsx:120 #: src/components/routes/admin/Messages/index.tsx:167 #: src/components/routes/admin/Messages/index.tsx:294 -#: src/components/routes/event/OccurrencesTab/index.tsx:326 +#: src/components/routes/event/OccurrencesTab/index.tsx:328 #: src/components/routes/event/Reports/OccurrenceSummaryReport/index.tsx:51 #: src/components/routes/event/Reports/PromoCodesReport/index.tsx:88 #: src/components/routes/organizer/Reports/EventsPerformanceReport/index.tsx:62 @@ -10104,7 +10113,7 @@ msgstr "Yaz Müzik Festivali {0}" msgid "Summer Music Festival 2025" msgstr "Yaz Müzik Festivali 2025" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:52 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:54 msgid "Sun" msgstr "" @@ -10231,7 +10240,7 @@ msgstr "Bize etkinliğinizden bahsedin" msgid "Tell us about your organization. This information will be displayed on your event pages." msgstr "Organizasyonunuz hakkında bize bilgi verin. Bu bilgiler etkinlik sayfalarınızda görüntülenecektir." -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:573 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:586 msgid "Tell us how often your event repeats and we'll create all the dates for you." msgstr "" @@ -10325,7 +10334,7 @@ msgstr "E-posta adresi değiştirildi. Katılımcı güncellenmiş e-posta adres msgid "The event you're looking for is not available at the moment. It may have been removed, expired, or the URL might be incorrect." msgstr "Aradığınız etkinlik şu anda mevcut değil. Kaldırılmış, süresi dolmuş veya URL yanlış olabilir." -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:756 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:769 msgid "The first date this schedule will generate from." msgstr "" @@ -10345,7 +10354,7 @@ msgstr "Erişmeye çalıştığınız bağlantının süresi doldu veya artık g msgid "The link you clicked is invalid." msgstr "Tıkladığınız bağlantı geçersiz." -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:840 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:853 msgid "The maximum is {MAX_PREVIEW} sessions. Please reduce the date range, frequency, or number of sessions per day." msgstr "" @@ -10481,7 +10490,7 @@ msgstr "Bu şablonlar organizasyonunuzdaki tüm etkinlikler için varsayılan ol 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." -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:65 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:67 msgid "Third" msgstr "" @@ -10744,7 +10753,7 @@ msgstr "Bu müşterilere görünmeyecektir, ancak iş ortağını tanımlamanız msgid "Throughput" msgstr "" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:49 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:51 msgid "Thu" msgstr "" @@ -10881,7 +10890,7 @@ msgstr "Kademeli ürünler aynı ürün için birden fazla fiyat seçeneği sunm msgid "TikTok" msgstr "TikTok" -#: src/components/routes/event/OccurrencesTab/index.tsx:290 +#: src/components/routes/event/OccurrencesTab/index.tsx:292 msgid "Time" msgstr "" @@ -10912,7 +10921,7 @@ msgstr "Kullanım Sayısı" msgid "Timezone" msgstr "Saat Dilimi" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:702 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:715 msgid "to" msgstr "" @@ -11056,7 +11065,7 @@ msgstr "İzleme ve Analitik" msgid "Try a different search term or filter" msgstr "" -#: src/components/routes/event/OccurrencesTab/index.tsx:574 +#: src/components/routes/event/OccurrencesTab/index.tsx:584 msgid "Try adjusting your filters to see more dates." msgstr "" @@ -11069,7 +11078,7 @@ msgstr "Başka bir e-posta deneyin" msgid "Try Hi.Events Free" msgstr "Hi.Events'i Ücretsiz Deneyin" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:47 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:49 msgid "Tue" msgstr "" @@ -11232,7 +11241,7 @@ msgstr "Güvenilmez" #: src/components/common/EventsDashboardStatusButtons/index.tsx:20 #: src/components/common/EventStatusBadge/index.tsx:16 #: src/components/layouts/OrganizerHomepage/index.tsx:285 -#: src/components/routes/event/OccurrencesTab/index.tsx:483 +#: src/components/routes/event/OccurrencesTab/index.tsx:485 #: src/components/routes/organizer/Reports/EventsPerformanceReport/index.tsx:33 msgid "Upcoming" msgstr "Yaklaşan" @@ -11880,7 +11889,7 @@ msgstr "Webhook'lar" msgid "Website" msgstr "Web Sitesi" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:48 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:50 msgid "Wed" msgstr "" @@ -11888,16 +11897,16 @@ msgstr "" msgid "Wednesday" msgstr "" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:94 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:96 msgid "week" msgstr "" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:57 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:59 #: src/components/routes/product-widget/OccurrenceSelector/index.tsx:35 msgid "Weekly" msgstr "" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:102 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:104 msgid "weeks" msgstr "" @@ -11953,7 +11962,7 @@ msgstr "Bu kapasite hangi ürünler için geçerli olmalı?" msgid "What time will you be arriving?" msgstr "Hangi saatte geleceksiniz?" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:688 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:701 msgid "What time?" msgstr "" @@ -12140,7 +12149,7 @@ msgstr "Mesajınızı buraya yazın..." msgid "X (Twitter)" msgstr "X (Twitter)" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:96 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:98 msgid "year" msgstr "" @@ -12150,12 +12159,12 @@ msgstr "" msgid "Year to date" msgstr "Yıl başından beri" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:59 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:61 #: src/components/routes/product-widget/OccurrenceSelector/index.tsx:43 msgid "Yearly" msgstr "" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:104 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:106 msgid "years" msgstr "" @@ -12200,7 +12209,7 @@ msgstr "Hesap ayarlarınızda ek hizmet ücretleri ve vergileri yapılandırabil msgid "You can create a promo code which targets this product on the" msgstr "Bu ürünü hedefleyen bir promosyon kodu oluşturabilirsiniz" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:823 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:836 msgid "You can override this for individual dates later." msgstr "" diff --git a/frontend/src/locales/vi.js b/frontend/src/locales/vi.js index 54ff89d732..39c6f6ffab 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 Main Street\",\"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\":\"Are you sure you want to make this event public? This will make the event visible to the public\",\"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\":\"Attendee Notes\",\"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\":\"Tùy chỉnh trang sự kiện của bạn\",\"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\":\"Dismiss\",\"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\":\"Event URL\",\"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\":\"No attendees have been added to this order.\",\"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\":\"No product associated with this attendee.\",\"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\":\"No questions answered by this attendee.\",\"SnlQeq\":\"No questions have been asked for this order.\",\"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\":\"Online event\",\"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\":\"Order #\",\"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\":\"Order Notes\",\"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\":\"Suite 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\":\"View\",\"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\":\"(none)\",\"xYxQCZ\":[[\"0\"],\" \",[\"1\"]],\"lAOy2r\":[[\"0\"],\" \",[\"1\"],\" đã check-in\"],\"3beCx0\":[[\"0\"],\" <0>checked in\"],\"S4PqS9\":[[\"0\"],\" Webhook đang hoạt động\"],\"6MIiOI\":[\"Còn \",[\"0\"]],\"COnw8D\":[\"Logo \",[\"0\"]],\"xG9N0H\":[[\"0\"],\" of \",[\"1\"],\" seats are taken.\"],\"B7pZfX\":[[\"0\"],\" nhà tổ chức\"],\"/HkCs4\":[[\"0\"],\" vé\"],\"30bTiU\":[[\"activeCount\"],\" enabled\"],\"jTs4am\":[[\"appName\"],\" logo\"],\"gbJOk9\":[[\"attendeeCount\"],\" attendees are registered for this session.\"],\"TjbIUI\":[[\"availableCount\"],\" trong số \",[\"totalCount\"],\" có sẵn\"],\"PSChHo\":[\"Còn \",[\"capacity\"],\" chỗ\"],\"lzQ8/M\":[[\"checkedIn\"],\" / \",[\"total\"],\" checked in\"],\"RZ0JX3\":[[\"chipTime\"],\", đã hết vé\"],\"M4KnFs\":[[\"chipTime\"],\", Đã bán hết, có danh sách chờ\"],\"SeyN12\":[[\"completedCount\"],\" of \",[\"totalCount\"],\" steps complete\"],\"f2rhaD\":[[\"diffHr\"],\"h ago\"],\"NRSLBe\":[[\"diffMin\"],\"m ago\"],\"iYfwJE\":[[\"diffSec\"],\"s ago\"],\"OJnhhX\":[[\"EventCount\"],\" Sự kiện\"],\"mhZbzw\":[[\"loadedAffectedAttendees\"],\" attendees are registered across the affected sessions.\"],\"RBuxIl\":[[\"productCount\"],\" ticket types configured\"],\"VFLd0I\":[[\"slotCount\"],\" times available\"],\"3IEF7U\":[[\"totalCount\"],\" loại vé\"],\"0cLzoF\":[[\"totalOccurrences\"],\" dates\"],\"AEGc4t\":[[\"totalOccurrences\"],\" sessions across \",[\"0\"],\" dates (\",[\"1\",\"plural\",{\"one\":[\"#\",\" session\"],\"other\":[\"#\",\" sessions\"]}],\" per day)\"],\"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.\",\"Il5Uid\":\"<0>Đây là tổng số lượng có sẵn cho tất cả các ngày trong lịch cộng lại — không phải giới hạn theo từng ngày. Để giới hạn số người tham dự mỗi ngày, hãy đặt sức chứa trên <1>trang Lịch các 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 attendee is registered across the affected sessions.\",\"qOyE2U\":\"1 attendee is registered for this session.\",\"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\",\"y2Jh0m\":\"1 time available\",\"cGtUz6\":\"1 tuần trước sự kiện\",\"HR/cvw\":\"123 Đường Mẫu\",\"dgKxZ5\":\"135+ currencies & 40+ payment methods\",\"kMU5aM\":\"Thông báo hủy đã được gửi đến\",\"o++0qa\":\"a change in duration\",\"WuWSX5\":\"A few quick steps and you're ready to start selling.\",\"RQ5kDd\":\"Thông báo hiển thị khi không có sản phẩm nào trong danh mục này.\",\"V53XzQ\":\"Mã xác thực mới đã được gửi đến email của bạn\",\"sr2Je0\":\"a shift in start/end times\",\"/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\":[\"Account · \",[\"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\":\"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\":\"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\":\"Add Date\",\"QeupRg\":\"Thêm ngày\",\"Q219NT\":\"Add Dates\",\"yjB5VC\":\"Add dates and times for your recurring event\",\"Z8idyM\":\"Add details\",\"wpirGs\":\"Add event details\",\"VX6WUv\":\"Thêm địa điểm\",\"GCQlV2\":\"Add multiple times if you run several sessions per day.\",\"7JF9w9\":\"Thêm câu hỏi\",\"NLbIb6\":\"Add this attendee anyway (override capacity)\",\"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ủ ban tổ chức. Một banner đồng ý cookie sẽ được hiển thị cho khách truy cập khi 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\":\"Affiliate program\",\"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.\",\"3e31kI\":\"After your event is created, you can choose how often it repeats from the dashboard.\",\"z7GAMJ\":\"all\",\"N40H+G\":\"All\",\"7rLTkE\":\"Tất cả sự kiện đã lưu trữ\",\"gKq1fa\":\"Tất cả người tham dự\",\"63gRoO\":\"All attendees of the selected sessions\",\"uWxIoH\":\"All attendees of this occurrence\",\"pMLul+\":\"Tất cả tiền tệ\",\"sgUdRZ\":\"All dates\",\"e4q4uO\":\"All Dates\",\"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\":\"All matching dates\",\"F1/VgK\":\"All occurrences\",\"OpWjMq\":\"All Occurrences\",\"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.\",\"VZdky1\":\"Cho phép người mua sao chép thông tin của họ cho tất cả người tham dự\",\"F3mW5G\":\"Cho phép khách hàng tham gia danh sách chờ khi sản phẩm này đã hết\",\"4CMO/q\":\"Cho phép khách hàng tham gia danh sách chờ khi sản phẩm này đã hết. Khách hàng tham gia danh sách chờ cho một ngày cụ thể.\",\"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\":\"Already in\",\"/H326L\":\"Đã hoàn tiền\",\"USEpOK\":\"Already use Stripe on another organizer? Reuse that connection.\",\"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.\",\"OPFdAM\":\"Mô tả tùy chọn của danh mục này để hiển thị trên trang sự kiện.\",\"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\":[\"and \",[\"0\"],\" more...\"],\"QNrkms\":\"Câu trả lời đã được cập nhật thành công.\",\"+qygei\":\"Answers\",\"GK7Lnt\":\"Answers provided at checkout (e.g. meal choice)\",\"lE8PgT\":\"Any dates you've manually customized will be kept.\",\"jVoYha\":[\"đã áp dụng — giảm \",[\"0\"],\" cho đơn hàng của bạn\"],\"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\":\"Phê duyệt tin nhắn\",\"naCW6Z\":\"April\",\"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\":[\"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\":\"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/\":\"Are you sure you want to delete this date? This action cannot be undone.\",\"RiF/yT\":\"Are you sure you want to delete this image?\",\"b3+Qku\":\"Are you sure you want to delete this tax or fee? It will no longer be applied to new orders.\",\"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\":\"Are you sure you want to permanently delete this date? This cannot be undone.\",\"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?\",\"b7tkGp\":\"Are you sure you want to revoke this invitation?\",\"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\":\"Assign plan\",\"xdiER7\":\"Cấp độ được gán\",\"F2rX0R\":\"Ít nhất một loại sự kiện phải được chọn\",\"Z44eZS\":\"At least one product must stay available for this date. To make the date inaccessible, cancel it from the schedule instead.\",\"BCmibk\":\"Lần thử\",\"6PecK3\":\"Tỷ lệ tham dự và check-in cho tất cả sự kiện\",\"K2tp3v\":\"attendee\",\"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\",\"94aQMU\":\"Thông tin người tham dự\",\"KkrBiR\":\"Thu thập thông tin người tham dự\",\"sjPjOg\":\"Attendee notes\",\"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\":\"attendees\",\"zLRobu\":\"attendees checked 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/\":\"August\",\"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 tiếp theo 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ỗ\",\"Xp+ywP\":\"Có sẵn sau khi hoàn tất thanh toán\",\"dwDH1K\":[\"Available times on \",[\"dayName\"]],\"clF06r\":\"Có thể hoàn tiền\",\"NB5+UG\":\"Token có sẵn\",\"L+wGOG\":\"Awaiting\",\"qcw2OD\":\"Awaiting pay\",\"kNmmvE\":\"Công ty TNHH Awesome Events\",\"TeSaQO\":\"Quay lại tài khoản\",\"kYqM1A\":\"Quay lại sự kiện\",\"s5QRF3\":\"Quay lại tin nhắn\",\"td/bh+\":\"Quay lại Báo cáo\",\"nsm7BA\":\"Quay lại tìm kiếm\",\"imjKVx\":\"Bank account connected\",\"D9LTCH\":\"Base Price\",\"hviJef\":\"Based on the global sale period above, not per date\",\"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\":\"Built-in fraud protection\",\"cr7kGH\":\"Bulk Edit\",\"1Fbd6n\":\"Bulk Edit Dates\",\"Eq6Tu9\":\"Bulk update failed.\",\"9N+p+g\":\"Kinh doanh\",\"SWnN1L\":\"Business address\",\"kQekXw\":\"Business name\",\"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 việc thêm pixel theo dõi, bạn thừa nhận rằng bạn và nền tảng này là đồng kiểm soát viên dữ liệu thu thập được. Bạn chịu trách nhiệm đảm bảo có cơ sở pháp lý cho việc xử lý này theo luật bảo mậ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\":\"By day of month\",\"0MnNgi\":\"By day of week\",\"CetOZE\":\"By ticket type\",\"lFdbRS\":\"Bỏ qua phí ứng dụng\",\"AjVXBS\":\"Calendar\",\"2VLZwd\":\"Nút hành động\",\"rT2cV+\":\"Camera\",\"7hYa9y\":\"Camera permission was denied. <0>Request permission again, or grant this page camera access in your browser settings.\",\"D02dD9\":\"Chiến dịch\",\"RRPA79\":\"Can't check in\",\"OcVwAd\":[\"Cancel \",[\"count\"],\" date(s)\"],\"H4nE+E\":\"Hủy tất cả sản phẩm và trả lại pool có sẵn\",\"Py78q9\":\"Cancel Date\",\"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.\",\"FPpqc7\":[\"Cancelling \",[\"0\"],\" date(s). This may take a moment to complete.\"],\"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\":\"Capacity management\",\"H7K8og\":\"Capacity must be 0 or greater\",\"nzao08\":\"capacity updates\",\"4cp9NP\":\"Capacity Used\",\"K7tIrx\":\"Danh mục\",\"DRK3Bq\":\"Category deleted successfully\",\"o+XJ9D\":\"Thay đổi\",\"kJkjoB\":\"Change duration\",\"J0KExZ\":\"Change the attendee limit\",\"ssospy\":\"Change time\",\"CIHJJf\":\"Thay đổi cài đặt danh sách chờ\",\"B5icLR\":[\"Changed duration for \",[\"count\"],\" date(s)\"],\"Kb+0BT\":\"Charges\",\"2tbLdK\":\"Từ thiện\",\"BPWGKn\":\"Check in\",\"6uFFoY\":\"Check out\",\"FjAlwK\":[\"Check out this event: \",[\"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\":[\"Check-in for \",[\"0\"],\" was undone\"],\"9s/wrQ\":\"Check-in history\",\"Wwztk4\":\"Check-In List\",\"9gPPUY\":\"Danh sách Check-In Đã Tạo!\",\"dwjiJt\":\"Check-in list info\",\"7od0PV\":\"check-in lists\",\"f2vU9t\":\"Danh sách check-in\",\"XprdTn\":\"Check-in navigation\",\"5tV1in\":\"Check-in progress\",\"SHJwyq\":\"Tỷ lệ check-in\",\"qCqdg6\":\"Trạng thái đăng ký\",\"cKj6OE\":\"Tóm tắt Check-in\",\"7B5M35\":\"Check-In\",\"VrmydS\":\"Checked in\",\"DM4gBB\":\"Tiếng Trung (Phồn thể)\",\"p8Jvp4\":\"Choose a configuration\",\"ElShBO\":\"Choose a different action\",\"pHEhf+\":\"Chọn kiểu chữ phù hợp với thương hiệu của bạn. Phông chữ được tự lưu trữ qua Bunny Fonts.\",\"Zok1Gx\":\"Choose an organizer\",\"pkk46Q\":\"Chọn một nhà tổ chức\",\"Ag32+c\":\"Choose another date\",\"Crr3pG\":\"Chọn lịch\",\"Z38ZJu\":\"Chọn cách hiển thị ngày sự kiện trên vé\",\"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\":\"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\":\"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\":\"complete\",\"bUQMpb\":\"Complete Stripe setup\",\"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\":\"Configuration assigned\",\"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\":\"Configure which products are available for this occurrence and optionally adjust pricing.\",\"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\",\"/K4Vqr\":\"Kết nối Stripe để nhận thanh toán\",\"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\":\"Sự kiện trực tuyến bắt buộc phải có chi tiết kết nối\",\"jfC/xh\":\"Liên hệ\",\"LOFgda\":[\"Liên hệ \",[\"0\"]],\"41BQ3k\":\"Email liên hệ\",\"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\",\"s30OcA\":\"Kiểm soát cách hiển thị ngày và giờ trên trang sự kiện\",\"p2FRHj\":\"Kiểm soát cách xử lý phí nền tảng cho sự kiện này\",\"NqfabH\":\"Control who gets in for this date\",\"fmYxZx\":\"Control who gets in, and when\",\"1JnTgU\":\"Đã sao chép từ trên\",\"FxVG/l\":\"Đã sao chép vào clipboard\",\"PiH3UR\":\"Đã sao chép!\",\"4i7smN\":\"Copy account ID\",\"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\":\"Could not prepare the bulk update.\",\"KOavaU\":\"Không thể lấy chi tiết địa chỉ\",\"/lq4oO\":\"Could not save date\",\"mHu0az\":\"Couldn't send verification email. Please try again.\",\"QOIm+S\":\"Số liệu bao gồm tất cả các ngày sắp tới. Mỗi người sẽ được đề nghị một chỗ cho ngày họ đã đăng ký.\",\"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\":\"Covers every ticket\",\"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\":\"Create a fixed number\",\"jqhTmw\":\"Create a list for this date\",\"PhioFp\":\"Create a new check-in list for an active session, or contact the organizer if you think this is a mistake.\",\"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\":\"Create Date\",\"Nc3l/D\":\"Tạo giảm giá, mã truy cập cho vé ẩn và ưu đãi đặc biệt.\",\"PybJS2\":\"Create event\",\"eWEV9G\":\"Tạo mật khẩu mới\",\"wl2iai\":\"Create Schedule\",\"8AiKIu\":\"Tạo vé hoặc sản phẩm\",\"/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\":\"Tạo sự kiện đầu tiên để bắt đầu bán vé và quản lý người tham dự.\",\"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\":\"Currently assigned\",\"iTvh6I\":\"Hiện có sẵn để mua\",\"A42Dqn\":\"Custom branding\",\"Guo0lU\":\"Ngày và giờ tùy chỉnh\",\"WDMdn8\":\"Custom questions\",\"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 clipboard\",\"QMHSMS\":\"Khách hàng sẽ nhận email xác nhận hoàn tiền\",\"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\":\"Daily\",\"/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\":\"Dance\",\"pvnfJD\":\"Tối\",\"MaB9wW\":\"Date Cancellation\",\"e6cAxJ\":\"Date cancelled\",\"81jBnC\":\"Date cancelled successfully\",\"a/C/6R\":\"Date created successfully\",\"IW7Q+u\":\"Date deleted\",\"rngCAz\":\"Date deleted successfully\",\"vHbfoQ\":\"Date reactivated\",\"hvah+S\":\"Date reopened for new sales\",\"Ez0YsD\":\"Date updated successfully\",\"Te33mU\":\"Dates are managed per occurrence\",\"91zCxb\":\"Dates with sessions\",\"/ITcnz\":\"day\",\"H7OUPr\":\"Day\",\"JtHrX9\":\"Day of Month\",\"J/Upwb\":\"days\",\"vDVA2I\":\"Days of Month\",\"rDLvlL\":\"Days of Week\",\"r6zgGo\":\"December\",\"jbq7j2\":\"Từ chối\",\"ovBPCi\":\"Mặc định\",\"JtI4vj\":\"Thu thập thông tin người tham dự mặc định\",\"ULjv90\":\"Default capacity per date\",\"3R/Tu2\":\"Xử lý phí mặc định\",\"1bZAZA\":\"Mẫu mặc định sẽ được sử dụng\",\"HNlEFZ\":\"xóa\",\"KpnwJK\":[\"Xóa \\\"\",[\"0\"],\"\\\"?\"],\"BlII4o\":[\"Delete \",[\"count\"],\" selected date(s)? Dates with orders will be skipped. This cannot be undone.\"],\"vu7gDm\":\"Xóa đối tác\",\"KZN4Lc\":\"Xóa tất cả\",\"6EkaOO\":\"Delete Date\",\"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\":\"Delete Permanently\",\"dPyJ15\":\"Xóa mẫu\",\"IQTR34\":\"Delete this category? Any products in it will also be deleted. This cannot be undone.\",\"/1wMxk\":\"Delete this product? This cannot be undone.\",\"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\":[\"Deleted \",[\"0\"],\" date(s)\"],\"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\":\"Different location\",\"E/QGRL\":\"Disabled\",\"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.\",\"HtaSQp\":\"Hiển thị số chỗ còn lại cho mỗi ngày trong tiện ích vé. Bạn có thể ghi đè cài đặt này cho từng ngà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\":\"Door staff instructions\",\"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 rằng tất cả các nhà tổ chức sự kiện đều được xác minh và chịu trách nhiệm.\",\"euc6Ns\":\"Nhân đôi\",\"YueC+F\":\"Duplicate Date\",\"KRmTkx\":\"Nhân bản sản phẩm\",\"Jd3ymG\":\"Duration must be at least 1 minute.\",\"KIjvtr\":\"Tiếng Hà Lan\",\"22xieU\":\"ví dụ 180 (3 giờ)\",\"/zajIE\":\"e.g. Morning Session\",\"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.\",\"Xfsjel\":\"Từng sản phẩm\",\"5oD9f/\":\"Earlier\",\"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\":\"Edit Date\",\"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\":\"Edited\",\"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 & scheduled messages\",\"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\":\"Embeddable widget\",\"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\":\"End\",\"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\",\"ZayGC7\":\"End on a date\",\"48Y16Q\":\"Thời gian kết thúc (tùy chọn)\",\"TbaYrr\":[\"Ended \",[\"0\"]],\"CFgwiw\":[\"Ends \",[\"0\"]],\"SqOIQU\":\"Enter a capacity value or choose unlimited.\",\"h37gRz\":\"Enter a label or choose to remove it.\",\"7YZofi\":\"Nhập tiêu đề và nội dung để xem trước\",\"khyScF\":\"Enter a time to shift by.\",\"SKx/0u\":\"Nhập tên địa điểm hoặc địa chỉ\",\"ppwojw\":\"Nhập tên địa điểm hoặc địa chỉ cho sự kiện trực tiếp\",\"j+eCIq\":\"Nhập địa chỉ thủ công\",\"3bR1r4\":\"Nhập email đối tác (tùy chọn)\",\"ARkzso\":\"Nhập tên đối tác\",\"ej4L8b\":\"Enter capacity\",\"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)\",\"RRlWVA\":\"Toàn bộ đơn hàng\",\"o21Y+P\":\"entries\",\"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\",\"+v+GW0\":\"Hiển thị ngày sự kiện\",\"7u9/DO\":\"Sự kiện đã được xóa thành công\",\"imgKgl\":\"Mô tả sự kiện\",\"IzR/Fc\":\"Event lifetime\",\"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\",\"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\",\"XVLu2v\":\"Tiêu đề sự kiện\",\"OfmsI9\":\"Sự kiện quá mới\",\"4SILkp\":\"Event totals\",\"YDVUVl\":\"Loại sự kiện\",\"+HeiVx\":\"Sự kiện đã cập nhật\",\"19j6uh\":\"Hiệu suất sự kiện\",\"PC3/fk\":\"Sự kiện bắt đầu trong 24 giờ tới\",\"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\":\"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ể chỉ định cấu hình\",\"PO0cfn\":\"Failed to cancel date\",\"YUX+f+\":\"Failed to cancel dates\",\"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\":\"Failed to create schedule\",\"U66oUa\":\"Không thể tạo mẫu\",\"aFk48v\":\"Không thể xóa cấu hình\",\"n1CYMH\":\"Failed to delete date\",\"KXv+Qn\":\"Failed to delete date. It may have existing orders.\",\"JJ0uRo\":\"Failed to delete dates\",\"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\",\"5E23qd\":\"Failed to delete product. Please try again.\",\"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\":\"Failed to reactivate date\",\"7zyx8a\":\"Không thể xóa khỏi danh sách chờ\",\"A/P7PX\":\"Failed to remove override\",\"ogWc1z\":\"Failed to reopen date\",\"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\":\"Failed to save override\",\"sj/eZA\":\"Failed to save price override\",\"780n8A\":\"Failed to save product settings\",\"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\":\"Family\",\"5LO38w\":\"Fast payouts to your bank\",\"4lgLew\":\"February\",\"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\":\"Film\",\"L1qbUx\":\"Filter attendees\",\"8OvVZZ\":\"Lọc Người Tham Dự\",\"N/H3++\":\"Filter by date\",\"mvrlBO\":\"Lọc theo sự kiện\",\"g+xRXP\":\"Finish setting up Stripe\",\"LHH461\":\"Finish setup\",\"syyeb9\":\"First\",\"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\",\"rVogsf\":\"Khắc phục sự cố để xuất bản\",\"3lkYdQ\":\"Fixed fee\",\"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\":\"Flash off\",\"q0923e\":\"Flash on\",\"X+U6/w\":\"Họ phông chữ\",\"lWxAUo\":\"Ẩm thực\",\"nFm+5u\":\"Văn bản chân trang\",\"a8nooQ\":\"Fourth\",\"wtuVU4\":\"Frequency\",\"xVhQZV\":\"Fri\",\"39y5bn\":\"Friday\",\"f5UbZ0\":\"Full data ownership\",\"cfvx/y\":\"Full event\",\"MY2SVM\":\"Hoàn tiền toàn bộ\",\"PGQLdy\":\"future\",\"8N/j1s\":\"Future dates only\",\"yRx/6K\":\"Future dates will be copied with capacity reset to zero\",\"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\":\"Get Paid\",\"lGYzP6\":\"Get paid with Stripe\",\"ZDIydz\":\"Bắt đầu\",\"u6FPxT\":\"Lấy vé\",\"8KDgYV\":\"Chuẩn bị sự kiện của bạn\",\"RkXlPZ\":\"GitHub\",\"sr0UJD\":\"Go Back\",\"oNL5vN\":\"Đến trang sự kiện\",\"gHSuV/\":\"Đi đến trang chủ\",\"8+Cj55\":\"Go to Schedule\",\"6nDzTl\":\"Dễ đọc\",\"76gPWk\":\"Got it\",\"CZXzs4\":\"Tiếng Hy Lạp\",\"aGWZUr\":\"Doanh thu gộp\",\"n8IUs7\":\"Doanh thu gộp\",\"O1wAlQ\":\"Guest\",\"LIYoRQ\":\"Quản lý khách\",\"NUsTc4\":\"Happening now\",\"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\":\"Hi,\",\"/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\":\"Hide details\",\"FmogyU\":\"Ẩn tùy chọn\",\"uXNYjR\":\"Ẩn các ngày và giờ đã hết vé\",\"g9RcYX\":\"Ẩn ngày\",\"uMwTx7\":\"Ẩn danh mục này?\",\"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\":\"Hobbies\",\"yY8wAv\":\"Hours\",\"49Tkiw\":\"Giảm giá được áp dụng như thế nào?\",\"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\":\"How long does the schedule run?\",\"DMr2XN\":\"How often?\",\"cceMns\":\"How VAT is applied to the platform fees we charge you.\",\"FONsLE\":\"https://awesome-events.com\",\"htoh8N\":\"https://webhook-domain.com/webhook\",\"mkWad2\":\"Tiếng Hungary\",\"8Wgd41\":\"Tôi thừa 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\",\"CY3yHL\":\"Nếu được chọn, danh mục này sẽ bị ẩn khỏi công chúng.\",\"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\":[\"in last \",[\"0\"],\" min\"],\"u7r0G5\":\"In person — set a venue\",\"/LCAwL\":\"Đang diễn ra\",\"F1Xp97\":\"Người tham dự riêng lẻ\",\"85e6zs\":\"Chèn token Liquid\",\"CTWsuc\":\"Instagram\",\"VopR6B\":\"Instant Stripe payouts\",\"nbfdhU\":\"Tích hợp\",\"I8eJ6/\":\"Internal notes on the attendee's ticket\",\"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\",\"Dn4OyV\":\"Đã mời\",\"IuMGvq\":\"Hóa đơn\",\"a/bUcL\":\"It happens on more than one date\",\"d+Oe9r\":\"It may have been unpublished or removed. Please check the link and try again.\",\"Lj7sBL\":\"Tiếng Ý\",\"F5/CBH\":\"mục\",\"BzfzPK\":\"Mục\",\"rjyWPb\":\"January\",\"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\":\"July\",\"zeEQd/\":\"June\",\"MxjCqk\":\"Chỉ đang tìm vé của bạn?\",\"xOTzt5\":\"just now\",\"0RihU9\":\"Just wrapped\",\"lB2hSG\":[\"Giữ cho tôi cập nhật tin tức và sự kiện từ \",[\"0\"]],\"ioFA9i\":\"Keep the profit.\",\"o66QSP\":\"label updates\",\"RtKKbA\":\"Last\",\"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\":\"Later\",\"xvnLMP\":\"Latest check-ins\",\"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\":\"Sáng\",\"1qY5Ue\":\"Liên kết hết hạn hoặc không hợp lệ\",\"gggTBm\":\"LinkedIn\",\"nvOPBA\":\"Liên kết được phép\",\"2BBAbc\":\"List\",\"dF6vP6\":\"Trực tiếp\",\"fpMs2Z\":\"TRỰC TIẾP\",\"D9zTjx\":\"Sự Kiện Trực Tiếp\",\"C33p4q\":\"Loaded dates\",\"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\",\"7w8lJU\":\"Đã lưu địa điểm\",\"YsRXDD\":\"Đã cập nhật địa điểm\",\"A/kIva\":\"location updates\",\"iyZPPR\":\"đị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é\",\"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\":[\"Manage \",[\"0\"]],\"wZJfA8\":\"Manage dates and times for your recurring event\",\"RlzPUE\":\"Manage on Stripe\",\"sjoDuh\":\"Manage schedule\",\"6NXJRK\":\"Manage Schedule\",\"zXuaxY\":\"Quản lý danh sách chờ sự kiện, xem thống kê và cung cấp vé cho người tham dự.\",\"g2npA5\":\"Ưu đãi thủ công\",\"hg6l4j\":\"March\",\"pqRBOz\":\"Mark as validated (admin override)\",\"2L3vle\":\"Tin nhắn tối đa / 24h\",\"Qp4HWD\":\"Người nhận tối đa / tin nhắn\",\"3JzsDb\":\"May\",\"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\":\"Minutes\",\"zz/Wd/\":\"Mode\",\"fpMgHS\":\"Mon\",\"hty0d5\":\"Monday\",\"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\":\"month\",\"HajiZl\":\"Tháng\",\"+8Nek/\":\"Monthly\",\"1LkxnU\":\"Monthly Pattern\",\"6jefe3\":\"months\",\"f8jrkd\":\"more\",\"JcD7qf\":\"More actions\",\"w36OkR\":\"Sự kiện được xem nhiều nhất (14 ngày qua)\",\"+Y/na7\":\"Move all dates earlier or later\",\"3DIpY0\":\"Multiple locations\",\"g9cQCP\":\"Multiple ticket types\",\"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ự\",\"xxU3NX\":\"Doanh thu ròng\",\"7I8LlL\":\"New capacity\",\"n1GRql\":\"New label\",\"y0Fcpd\":\"Địa điểm mới\",\"ArHT/C\":\"Đăng ký mới\",\"uK7xWf\":\"New time:\",\"veT5Br\":\"Next occurrence\",\"WXtl5X\":[\"Next: \",[\"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\":\"No attendees to show\",\"PKySlW\":\"No attendees yet for this date.\",\"/UC6qk\":\"Không tìm thấy dữ liệu phân bổ\",\"E2vYsO\":\"No capabilities reported by Stripe yet.\",\"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\":\"No check-ins yet\",\"+dAKxg\":\"Không tìm thấy cấu hình\",\"LiLk8u\":\"No connections available\",\"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ệ.\",\"Zc216S\":\"No date added\",\"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\",\"OtJSnL\":\"Chưa có ngày nào được lên lịch\",\"gEdNe8\":\"No dates scheduled yet\",\"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\":\"Chưa có sự kiện nào\",\"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ý\",\"IcAC6J\":\"Không tìm thấy phông chữ phù hợp\",\"nrSs2u\":\"Không tìm thấy tin nhắn\",\"Rj99yx\":\"No occurrences available\",\"IFU1IG\":\"No occurrences on this date\",\"OVFwlg\":\"Chưa có câu hỏi đơn hàng\",\"EJ7bVz\":\"Không tìm thấy đơn hàng\",\"NEmyqy\":\"Chưa có đơn hàng nào\",\"a77B6w\":\"No orders yet for this date.\",\"wUv5xQ\":\"Không có hoạt động của nhà tổ chức trong 14 ngày qua\",\"vLd1tV\":\"No organizer context available.\",\"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\":\"No products configured for this event.\",\"kY7XDn\":\"Không có sản phẩm nào có người trong danh sách chờ\",\"8mw4tm\":\"Thông báo khi không có sản phẩm\",\"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 có phản hồi\",\"EK/G11\":\"Chưa có phản hồi\",\"59OWd3\":\"Chưa có địa điểm đã lưu\",\"mPdY6W\":\"Không có gợi ý\",\"3sRuiW\":\"Không tìm thấy vé\",\"debCrL\":\"Không có vé để bán\",\"k2C0ZR\":\"No upcoming dates\",\"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\":\"non-edited\",\"Itw24Q\":\"Not checked in\",\"x5+Lcz\":\"Chưa Đăng Ký\",\"8n10sz\":\"Không Đủ Điều Kiện\",\"kLvU3F\":\"Notify attendees and stop sales\",\"t9QlBd\":\"November\",\"kAREMN\":\"Number of dates to create\",\"6u1B3O\":\"Occurrence\",\"mmoE62\":\"Occurrence Cancelled\",\"V9flmL\":\"Occurrence Schedule\",\"Kh3WO8\":\"Occurrence Summary\",\"byXCTu\":\"Occurrences\",\"KATw3p\":\"Occurrences (future only)\",\"85rTR2\":\"Occurrences can be configured after creation\",\"dzQfDY\":\"October\",\"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ờ.\"],\"6Aih4U\":\"Ngoại tuyến\",\"nO3VbP\":[\"Đang giảm giá \",[\"0\"]],\"oXOSPE\":\"Trực tuyến\",\"aqmy5k\":\"Online — provide connection details\",\"LuZBbx\":\"Online & in-person\",\"IXuOqt\":\"Online & in-person — see schedule\",\"WjSpu5\":\"Sự kiện trực tuyến\",\"scPxI/\":[\"Chỉ còn \",[\"capacity\"]],\"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\",\"wkpaqp\":\"Chỉ hiển thị ngày và giờ bắt đầu\",\"DMk8F0\":\"Only tickets count toward capacity\",\"M2w1ni\":\"Chỉ hiển thị với mã khuyến mãi\",\"y8Bm7C\":\"Open check-in\",\"RLz7P+\":\"Open occurrence\",\"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\":\"or add a single date\",\"eBskDE\":\"Hoặc bật thanh toán ngoại tuyến và tắt Stripe\",\"dSeVIm\":\"order\",\"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\",\"xtQzag\":\"Order details\",\"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\",\"RQCXz6\":\"Giới hạn đơn hàng\",\"SO9AEF\":\"Giới hạn đơn hàng đã đặt\",\"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\",\"eJ8SvM\":\"Order number, purchase date, purchaser email\",\"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\",\"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\",\"3NT0Ck\":\"Đơn hàng đã bị hủy\",\"V5khLm\":\"orders\",\"sd5IMt\":\"Đơn hàng đã hoàn thành\",\"5It1cQ\":\"Đơn hàng đã được xuất\",\"UQ0ACV\":\"Tổng đơn hàng\",\"B/EBQv\":\"Đơn hàng:\",\"qtGTNu\":\"Tài khoản tự nhiên\",\"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\",\"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\":\"Organizers\",\"/IX/7x\":\"Khác\",\"RsiDDQ\":\"Danh Sách Khác (Vé Không Bao Gồm)\",\"aDfajK\":\"Outdoors\",\"qMASRF\":\"Tin nhắn đi\",\"iCOVQO\":\"Override\",\"GpFTEc\":\"Override fees on this organizer\",\"M9ZhMP\":\"Override price\",\"cnVIpl\":\"Override removed\",\"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\":\"Past due\",\"xTPjSy\":\"Sự kiện đã qua\",\"/l/ckQ\":\"Dán URL\",\"URAE3q\":\"Tạm dừng\",\"4fL/V7\":\"Thanh toán\",\"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\":\"Payouts\",\"UbRKMZ\":\"Pending\",\"UkM20g\":\"Đang chờ xem xét\",\"dPYu1F\":\"Theo người tham dự\",\"mQV/nJ\":\"per min\",\"+kvxv+\":\"mỗi đơn hàng\",\"VlXNyK\":\"Mỗi đơn hàng\",\"NhuGd7\":\"mỗi sản phẩm\",\"hauDFf\":\"Mỗi vé\",\"mnF83a\":\"Phí phần trăm\",\"TNLuRD\":\"Percentage fee (%)\",\"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\":\"Permanently remove this date\",\"6kPk3+\":\"Thông tin cá nhân\",\"zmwvG2\":\"Điện thoại\",\"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\":\"Đ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\":\"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\":\"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\":\"Please select a date and time\",\"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\":\"Position\",\"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\",\"Jm2AC3\":\"Price Tier\",\"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\":\"Product settings cannot be edited for cancelled dates.\",\"2339ej\":\"Product settings saved successfully\",\"ldVIlB\":\"Cập nhật sản phẩm\",\"CP3D8G\":\"Progress\",\"JoKGiJ\":\"Mã khuyến mãi\",\"k3wH7i\":\"Chi tiết sử dụng mã khuyến mãi và giảm giá\",\"tZqL0q\":\"promo codes\",\"oCHiz3\":\"Promo codes\",\"uEhdRh\":\"Chỉ khuyến mãi\",\"dLm8V5\":\"Email quảng cáo có thể dẫn đến đình chỉ tài khoản\",\"W0ETyY\":\"Cung cấp ít nhất một trường địa chỉ (địa điểm, đường, thành phố hoặc quốc gia).\",\"2W/7Gz\":\"Provide the following before Stripe's next review to keep payouts flowing.\",\"EEYbdt\":\"Xuất bản\",\"JcgJKc\":\"Vẫn xuất bản\",\"evDBV8\":\"Xuất bản sự kiện\",\"2zEfOd\":\"Publish your event\",\"L7nrC8\":\"Khi xuất bản, trang sự kiện của bạn sẽ công khai và mở đăng ký.\",\"dsFmM+\":\"Đã mua\",\"JunetL\":\"Purchaser\",\"phmeUH\":\"Purchaser email\",\"ywR4ZL\":\"QR code check-in\",\"oWXNE5\":\"SL\",\"biEyJ4\":\"Question answers\",\"k/bJj0\":\"Đã sắp xếp lại câu hỏi\",\"b24kPi\":\"Hàng đợi\",\"lTPqpM\":\"Quick Tip\",\"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\":\"Reactivate this date? It will be reopened for future sales.\",\"RENQ6j\":\"Sẵn sàng xuất bản?\",\"uqoRbb\":\"Real-time analytics\",\"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\":\"Recent Attendees\",\"qhfiwV\":\"Recent check-ins\",\"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\",\"WEYdDv\":\"Recommended\",\"wuhHPE\":\"Recurring\",\"asLqwt\":\"Sự kiện định kỳ\",\"s3uzsK\":\"Cài đặt sự kiện định kỳ\",\"D0tAMe\":\"Recurring events\",\"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\":\"Refund all orders for these dates\",\"4cRUK3\":\"Refund all orders for this date\",\"fKn/k6\":\"Số tiền hoàn lại\",\"qY4rpA\":\"Hoàn tiền thất bại\",\"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\":\"Remaining\",\"Bjh87R\":\"Remove label from all dates\",\"IVZaEo\":\"Xóa hoàn toàn các ngày và giờ đã hết vé khỏi trang sự kiện. Khi tắt, chúng vẫn hiển thị và được gắn nhãn hết vé.\",\"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\":\"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\":\"Reset to base price\",\"kCn6wb\":\"Đang đặt lại...\",\"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\":\"results\",\"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\",\"Lf7TCn\":\"Các địa điểm dùng lại sẽ tự động xuất hiện ở đây khi bạn tạo sự kiện có địa chỉ, và bạn cũng có thể tự thêm.\",\"mdQ0zb\":\"Các địa điểm dùng lại cho sự kiện của bạn. Địa điểm tạo từ tính năng tự động hoàn thành sẽ được lưu ở đây.\",\"XFOPle\":\"Reuse\",\"1Zehp4\":\"Reuse a Stripe connection from another organizer in this account.\",\"Oo/PLb\":\"Tóm tắt doanh thu\",\"CfuueU\":\"Thu hồi ưu đãi\",\"RIgKv+\":\"Run until a specific date\",\"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\":\"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\":\"Đã đặ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\":\"Sales, attendance, and check-in breakdown per occurrence\",\"3VnlS9\":\"Doanh số, đơn hàng và chỉ số hiệu suất cho tất cả sự kiện\",\"3Q1AWe\":\"Doanh thu:\",\"LeuERW\":\"Same as event\",\"B4nE3N\":\"Giá vé mẫu\",\"8BRPoH\":\"Địa điểm Mẫu\",\"PiK6Ld\":\"Sat\",\"+5kO8P\":\"Saturday\",\"zJiuDn\":\"Save fee override\",\"NB8Uxt\":\"Save Schedule\",\"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\":\"Save VAT settings\",\"6/TNCd\":\"Lưu cài đặt VAT\",\"4RvD9q\":\"Địa điểm đã lưu\",\"cgw0cL\":\"Địa điểm đã lưu\",\"Fbqm/I\":\"Saving an override creates a dedicated configuration for this organizer if it's currently on the system default.\",\"I+FvbD\":\"Quét\",\"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\":\"Lên lịch gửi sau\",\"NAzVVw\":\"Lên lịch tin nhắn\",\"Fz09JP\":\"Schedule starts on\",\"4ba0NE\":\"Đã lên lịch\",\"qcP/8K\":\"Thời gian đã lên lịch\",\"A1taO8\":\"Search\",\"ftNXma\":\"Tìm kiếm đối tác...\",\"VMU+zM\":\"Search attendees\",\"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ệ...\",\"YnMfsK\":\"Tìm theo tên hoặc địa chỉ...\",\"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\":\"Search by name, order #, ticket # or 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\":\"Search dates...\",\"iRtEpV\":\"Search dates…\",\"JRM7ao\":\"Search for an address\",\"BWF1kC\":\"Tìm kiếm tin nhắn...\",\"5WYZKZ\":\"Kết quả tìm kiếm\",\"IG85fV\":\"Tìm địa điểm đã lưu hoặc tìm một địa chỉ...\",\"3aD3GF\":\"Seasonal\",\"ku//5b\":\"Second\",\"Mck5ht\":\"Thanh toán an toàn\",\"s7tXqF\":\"See schedule\",\"JFap6u\":\"See what Stripe still needs\",\"p7xUrt\":\"Chọn danh mục\",\"hTKQwS\":\"Select a Date & Time\",\"Ps6Xtf\":\"Select a date to see available times\",\"e4L7bF\":\"Chọn một tin nhắn để xem nội dung\",\"zPRPMf\":\"Chọn cấp độ\",\"BFRSTT\":\"Chọn Tài Khoản\",\"wgNoIs\":\"Select all\",\"mCB6Je\":\"Chọn tất cả\",\"aCEysm\":[\"Select all on \",[\"0\"]],\"a6+167\":\"Chọn một sự kiện\",\"CFbaPk\":\"Chọn nhóm người tham dự\",\"88a49s\":\"Select camera\",\"tVW/yo\":\"Chọn tiền tệ\",\"SJQM1I\":\"Select date\",\"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\":\"Select occurrence\",\"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\":\"selected\",\"ylXj1N\":\"Đã chọn\",\"uq3CXQ\":\"Sell out your event.\",\"oBXbO4\":\"Selling a physical product? Cap its quantity on the <0>products page instead.\",\"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\":\"Send to all occurrences, or choose a specific one\",\"QEQlnV\":\"Gửi tin nhắn đầu tiên của bạn\",\"IoAuJG\":\"Đang gửi...\",\"h69WC6\":\"Đã gửi\",\"BVu2Hz\":\"Được gửi bởi\",\"ZFa8wv\":\"Sent to attendees when a scheduled date is cancelled\",\"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\":\"September\",\"5sN96e\":\"Session cancelled\",\"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\":\"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\":\"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\":\"Set up payouts\",\"JA//e6\":\"Set up schedule\",\"gzXY7l\":\"Set Up Schedule\",\"0Ls9qe\":\"Set up the tickets you'll sell and their prices\",\"xMO+Ao\":\"Thiết lập tổ chức của bạn\",\"5pEFnq\":\"Set up your schedule\",\"h/9JiC\":\"Set Up Your Schedule\",\"zRRuUD\":\"Set up your schedule in the next steps\",\"ETC76A\":\"Set, change, or remove the date's location or online details\",\"C3htzi\":\"Đã cập nhật cài đặt\",\"Ohn74G\":\"Thiết lập & thiết kế\",\"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\":\"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\":\"Shift times\",\"tPfIaW\":[\"Shifted times for \",[\"count\"],\" date(s)\"],\"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\":\"Show attendee notes to non-logged-in staff\",\"4LZFir\":\"Hiển thị toàn bộ khoảng thời gian\",\"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\",\"b33PL9\":\"Hiển thị thêm nền tảng\",\"Eut7p9\":\"Show order details to non-logged-in staff\",\"+RoWKN\":\"Show question answers to non-logged-in staff\",\"jbcx6L\":\"Show remaining capacity on event dates\",\"rXxBOx\":\"Show remaining capacity to buyers\",\"t1LIQW\":[\"Hiển thị \",[\"0\"],\" trong \",[\"totalRows\"],\" bản ghi\"],\"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\":\"Đã đăng ký\",\"5C7J+P\":\"Single Event\",\"E//btK\":\"Skip manually edited dates\",\"paESr6\":\"Tiếng Slovak\",\"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\",\"yp+0jj\":\"sold out\",\"1hupow\":\"Đã bán hết, có danh sách chờ\",\"iACSrw\":\"Some details are hidden from public access. Log in to view everything.\",\"Dia6iz\":\"Something went wrong while deleting the image. Please try again.\",\"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\":\"Spirituality\",\"oPaRES\":\"Split check-in across days, areas, or ticket types. Share the link with staff — no account needed on their end.\",\"7JFNej\":\"Thể thao\",\"/bfV1Y\":\"Staff instructions\",\"tXkhj/\":\"Start\",\"StWUH4\":\"Start check-in\",\"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\",\"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/\":\"Thống kê\",\"GVUxAX\":\"Thống kê dựa trên ngày tạo tài khoản\",\"29Hx9U\":\"Stats\",\"5ia+r6\":\"Still needed\",\"wuV0bK\":\"Dừng Mạo Danh\",\"s/KaDb\":\"Stripe connected\",\"Bk06QI\":\"Stripe đã kết nối\",\"akZMv8\":[\"Stripe connection copied from \",[\"0\"],\".\"],\"v0aRY1\":\"Stripe didn't return a setup link. Please try again.\",\"aKtF0O\":\"Stripe chưa kết nối\",\"9i0++A\":\"ID thanh toán Stripe\",\"R1lIMV\":\"Stripe will need a few more details soon\",\"FzcCHA\":\"Stripe will walk you through a few quick questions to finish setup.\",\"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\",\"kRWc2g\":\"Đã cập nhật cài đặt sự kiện định kỳ 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\":\"Sun\",\"DBC3t5\":\"Sunday\",\"UaISq3\":\"Tiếng Thụy Điển\",\"JZTQI0\":\"Chuyển đổi nhà tổ chức\",\"9YHrNC\":\"Mặc định hệ thống\",\"lruQkA\":\"Tap this screen to resume scanning\",\"TJUrME\":[\"Targeting attendees across \",[\"0\"],\" selected sessions.\"],\"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\":\"Team collaboration\",\"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\":\"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\":\"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\",\"nm3Iz/\":\"Cảm ơn bạn đã tham dự!\",\"pYwj0k\":\"Thanks,\",\"k3IitN\":\"That's a wrap\",\"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.\",\"7oksH+\":[\"Giảm giá được trừ vào từng sản phẩm đủ điều kiện. Ví dụ: giảm \",[\"currencySymbol\"],\"10 × 3 vé = giảm \",[\"currencySymbol\"],\"30.\"],\"sKL8k2\":\"Giảm giá chỉ được trừ một lần vào tổng đơ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.\",\"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\":\"The first date this schedule will generate from.\",\"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.\",\"Np4eLs\":[\"The maximum is \",[\"MAX_PREVIEW\"],\" sessions. Please reduce the date range, frequency, or number of sessions per day.\"],\"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\":\"The override is recorded in the order audit log.\",\"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\",\"OVSkIF\":\"Con cáo nâu nhanh nhẹn nhảy qua con chó lười.\",\"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\":[\"The session for \\\"\",[\"title\"],\"\\\" originally scheduled for \",[\"0\"],\" has been rescheduled.\"],\"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\",\"ybBP2H\":\"There are no products available for this date. Please choose another date.\",\"O7g4eR\":\"There are no upcoming dates for this event\",\"062KsE\":\"These details are shown on the attendee's ticket and order summary for this date only.\",\"5Eu+tn\":\"Những chi tiết này chỉ hiển thị khi đơn hàng hoàn tất thành công.\",\"jQjwR+\":\"These details will replace any existing location on the affected dates and show on attendee tickets.\",\"6eaLu/\":\"Các mức giá này áp dụng cho tất cả các ngày trong lịch, và số lượng của từng hạng giới hạn tổng số bán ra của tất cả các ngày cộng lại. Ngày mở bán của các hạng áp dụng chung. Bạn có thể ghi đè giá cho từng ngày riêng lẻ trên <0>trang Lịch các buổi.\",\"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\":\"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\":\"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/\":[\"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.\",\"E9BqZw\":\"This date only\",\"RzEvf5\":\"Sự kiện này đã kết thúc\",\"kc4bIA\":\"Sự kiện này chưa có vé hoặc sản phẩm nào, vì vậy người tham dự sẽ không thể đăng ký.\",\"eMaNd0\":\"This event is not available\",\"YClrdK\":\"Sự kiện này chưa được xuất bản\",\"GL6z+k\":\"Sự kiện này đã hết vé\",\"pIwDhS\":\"This event's dates and times are set on the occurrence schedule.\",\"ny5rgr\":\"This is a recurring event\",\"tc64Zz\":\"Đây là tên danh mục sẽ được hiển thị trên trang sự kiệ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.\",\"5DpZrC\":\"Giới hạn này áp dụng cho tổng số lượng bán ra của tất cả các ngày trong lịch cộng lại — không phải giới hạn theo từng ngày. Để giới hạn số người tham dự mỗi ngày, hãy đặt sức chứa trên <0>trang Lịch các buổi.\",\"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\":\"This occurrence is at capacity\",\"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\",\"qEGn8I\":\"Sự kiện định kỳ này chưa có ngày nào, vì vậy người tham dự không có gì để đặ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ử.\",\"1LuJNw\":\"Vé này không còn hiệu lực\",\"0Ew0uk\":\"Vé này vừa được quét. Vui lòng chờ trước khi quét lại.\",\"FYXq7k\":[\"This will affect \",[\"loadedAffectedCount\"],\" date(s).\"],\"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\":\"Throughput\",\"+FjWgX\":\"Thu\",\"kkDQ8m\":\"Thursday\",\"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\",\"HGuXjF\":\"Người sở hữu vé\",\"CMUt3Y\":\"Người giữ vé\",\"awHmAT\":\"ID vé\",\"6czJik\":\"Logo 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é\",\"pGZOcL\":\"Vé đã được gửi lại thành công\",\"o02GZM\":\"Ticket sales have ended for this event\",\"8jLPgH\":\"Loại 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\":\"Time\",\"fXf2r5\":[\"Times shown in \",[\"timezoneAbbr\"]],\"dMtLDE\":\"to\",\"/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\":\"Today\",\"W428WC\":\"Chuyển đổi cột\",\"BRMXj0\":\"Tomorrow\",\"UBSG1X\":\"Nhà tổ chức hàng đầu (14 ngày qua)\",\"3sZ0xx\":\"Tổng Tài Khoản\",\"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\",\"2AW/k5\":\"Tổng số lượng cho tất cả các ngày\",\"dp8BCb\":\"Total tax\",\"vb0Q0/\":\"Tổng Người Dùng\",\"oJjplO\":\"Tổng lượt xem\",\"rBZ9pz\":\"Tours\",\"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\":\"Theo dõi & Phân tích\",\"GUA0Jy\":\"Try a different search term or filter\",\"2P/OWN\":\"Try adjusting your filters to see more dates.\",\"ouM5IM\":\"Thử email khác\",\"3DZvE7\":\"Dùng thử Hi.Events miễn phí\",\"vq2WxD\":\"Tue\",\"G3myU+\":\"Tuesday\",\"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\",\"nWRfmt\":\"Kiểu chữ\",\"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\":\"Unable to load attendee details.\",\"GlnD5Y\":\"Unable to load products for this date. Please try again.\",\"17VbmV\":\"Unable to undo check-in\",\"n57zCW\":\"Tài khoản chưa phân bổ\",\"9uI/rE\":\"Undo\",\"Ef7StM\":\"Không rõ\",\"ZBAScj\":\"Người tham dự không xác định\",\"MEIAzV\":\"Chưa đặt tên\",\"K6L5Mx\":\"Địa điểm chưa đặt tên\",\"7yiFvZ\":\"Chưa thanh toán\",\"X13xGn\":\"Không đáng tin cậy\",\"gyXpQN\":\"Upcoming events\",\"Pp1sWX\":\"Cập nhật đối tác\",\"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\":\"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\":\"USB scanner listening\",\"dyTklH\":\"USB scanner paused\",\"OHJXlK\":\"Sử dụng <0>mẫu Liquid để cá nhân hóa email của bạn\",\"/rsy72\":\"Use event default\",\"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.\",\"bA31T4\":\"Sử dụng thông tin người mua cho tất cả người tham dự\",\"PpgtnC\":\"Dùng địa chỉ này\",\"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\":\"VAT number\",\"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\":\"VAT registered\",\"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\":\"VAT settings updated\",\"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: not registered\",\"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\":\"View All\",\"yA/6BX\":\"View all →\",\"6CQ7/B\":\"View all capabilities\",\"YSE15b\":\"View all check-in lists\",\"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\":[\"View details for \",[\"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\":\"Waiting for scan…\",\"u0n+wz\":\"Danh sách chờ\",\"3RXFtE\":\"Danh sách chờ đã bật\",\"TwnTPy\":\"Ưu đãi danh sách chờ đã hết hạn\",\"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ể.\",\"aT/44s\":\"We couldn't copy that Stripe connection. Please try again.\",\"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.\",\"Fjj/5/\":\"We couldn't load the check-in lists. Please try again.\",\"ADsQ23\":\"We couldn't reach Stripe just now. Please try again in a moment.\",\"HJKdzP\":\"Đã xảy ra sự cố khi tải trang này. Vui lòng thử lại.\",\"jegrvW\":\"We partner with Stripe to send payouts straight to your bank account.\",\"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 để 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.\",\"mfM/HJ\":[\"Chúng tôi sẽ thông báo cho bạn qua email nếu có chỗ trống cho \",[\"productDisplayName\"],\" vào \",[\"occurrenceDate\"],\".\"],\"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\":\"We'll open a message composer with a pre-filled template after saving. You review and send it — nothing is sent automatically.\",\"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\":[\"We've made changes to the schedule for \\\"\",[\"title\"],\"\\\" — \",[\"description\"],\" affecting \",[\"affectedCount\"],\" session(s).\"],\"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\":\"Webhook integrations\",\"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\":\"Wed\",\"VAcXNz\":\"Wednesday\",\"64X6l4\":\"week\",\"4XSc4l\":\"Weekly\",\"IAUiSh\":\"weeks\",\"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\":\"Wellness\",\"ywRaYa\":\"What time?\",\"FaSXqR\":\"Loại sự kiện nào?\",\"0WyYF4\":\"What unauthenticated staff can see\",\"2+ExvJ\":\"WhatsApp\",\"cxsKvw\":\"Khi một lượt check-in bị xóa\",\"RPe6bE\":\"When a date is cancelled on a recurring event\",\"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 sản phẩm hết hàng, khách hàng có thể tham gia danh sách chờ để được thông báo khi có chỗ trống.\",\"OIkHj+\":\"Khi sản phẩm hết hàng, khách hàng có thể tham gia danh sách chờ để được thông báo khi có chỗ trống. Khách hàng tham gia danh sách chờ cho một ngày cụ thể và các đề nghị được đưa ra theo từng ngày.\",\"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\":\"Khi khách hàng mua vé, đơn hàng của họ sẽ hiển thị tại đây.\",\"pm9tpn\":\"Khi được bật, người mua có thể sao chép tên và email của mình cho tất cả người tham dự cùng lúc. Tắt tùy chọn này để loại bỏ tùy chọn \\\"Tất cả người tham dự\\\"; người mua vẫn có thể sao chép cho người tham dự đầu tiên, những người còn lại phải được nhập riêng.\",\"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.\",\"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\":\"year\",\"zkWmBh\":\"Yearly\",\"+BGee5\":\"years\",\"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+\":\"You can override this for individual dates later.\",\"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.\",\"D8baxD\":\"Bạn có vé trả phí nhưng Stripe chưa được kết nối, vì vậy bạn không thể nhận thanh toán.\",\"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 thừa 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/\":\"You need to create at least one occurrence before you can add attendees to this recurring event.\",\"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\":\"You'll be able to set up dates, schedules, and recurrence rules in the next step.\",\"zKAheG\":\"You're changing session times\",\"MNFIxz\":[\"Bạn sẽ tham gia \",[\"0\"],\"!\"],\"ZlLcht\":[\"Bạn đang tham gia danh sách chờ cho \",[\"occurrenceDate\"],\".\"],\"qGZz0m\":\"Bạn đã được thêm vào danh sách chờ!\",\"/5HL6k\":\"Bạn đã được mời một suất!\",\"gbjFFH\":\"You've changed the session time\",\"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\":\"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\":\"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\":\"Ưu đãi 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. 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 Main Street\",\"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\":\"Are you sure you want to make this event public? This will make the event visible to the public\",\"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\":\"Attendee Notes\",\"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\":\"Tùy chỉnh trang sự kiện của bạn\",\"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\":\"Dismiss\",\"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\":\"Event URL\",\"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\":\"No attendees have been added to this order.\",\"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\":\"No product associated with this attendee.\",\"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\":\"No questions answered by this attendee.\",\"SnlQeq\":\"No questions have been asked for this order.\",\"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\":\"Online event\",\"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\":\"Order #\",\"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\":\"Order Notes\",\"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\":\"Suite 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\":\"View\",\"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\":\"(none)\",\"xYxQCZ\":[[\"0\"],\" \",[\"1\"]],\"lAOy2r\":[[\"0\"],\" \",[\"1\"],\" đã check-in\"],\"3beCx0\":[[\"0\"],\" <0>checked in\"],\"S4PqS9\":[[\"0\"],\" Webhook đang hoạt động\"],\"6MIiOI\":[\"Còn \",[\"0\"]],\"COnw8D\":[\"Logo \",[\"0\"]],\"xG9N0H\":[[\"0\"],\" of \",[\"1\"],\" seats are taken.\"],\"B7pZfX\":[[\"0\"],\" nhà tổ chức\"],\"/HkCs4\":[[\"0\"],\" vé\"],\"30bTiU\":[[\"activeCount\"],\" enabled\"],\"jTs4am\":[[\"appName\"],\" logo\"],\"gbJOk9\":[[\"attendeeCount\"],\" attendees are registered for this session.\"],\"TjbIUI\":[[\"availableCount\"],\" trong số \",[\"totalCount\"],\" có sẵn\"],\"PSChHo\":[\"Còn \",[\"capacity\"],\" chỗ\"],\"lzQ8/M\":[[\"checkedIn\"],\" / \",[\"total\"],\" checked in\"],\"RZ0JX3\":[[\"chipTime\"],\", đã hết vé\"],\"M4KnFs\":[[\"chipTime\"],\", Đã bán hết, có danh sách chờ\"],\"SeyN12\":[[\"completedCount\"],\" of \",[\"totalCount\"],\" steps complete\"],\"f2rhaD\":[[\"diffHr\"],\"h ago\"],\"NRSLBe\":[[\"diffMin\"],\"m ago\"],\"iYfwJE\":[[\"diffSec\"],\"s ago\"],\"OJnhhX\":[[\"EventCount\"],\" Sự kiện\"],\"mhZbzw\":[[\"loadedAffectedAttendees\"],\" attendees are registered across the affected sessions.\"],\"RBuxIl\":[[\"productCount\"],\" ticket types configured\"],\"VFLd0I\":[[\"slotCount\"],\" times available\"],\"3IEF7U\":[[\"totalCount\"],\" loại vé\"],\"0cLzoF\":[[\"totalOccurrences\"],\" dates\"],\"AEGc4t\":[[\"totalOccurrences\"],\" sessions across \",[\"0\"],\" dates (\",[\"1\",\"plural\",{\"one\":[\"#\",\" session\"],\"other\":[\"#\",\" sessions\"]}],\" per day)\"],\"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.\",\"Il5Uid\":\"<0>Đây là tổng số lượng có sẵn cho tất cả các ngày trong lịch cộng lại — không phải giới hạn theo từng ngày. Để giới hạn số người tham dự mỗi ngày, hãy đặt sức chứa trên <1>trang Lịch các 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 attendee is registered across the affected sessions.\",\"qOyE2U\":\"1 attendee is registered for this session.\",\"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\",\"y2Jh0m\":\"1 time available\",\"cGtUz6\":\"1 tuần trước sự kiện\",\"HR/cvw\":\"123 Đường Mẫu\",\"dgKxZ5\":\"135+ currencies & 40+ payment methods\",\"kMU5aM\":\"Thông báo hủy đã được gửi đến\",\"o++0qa\":\"a change in duration\",\"WuWSX5\":\"A few quick steps and you're ready to start selling.\",\"RQ5kDd\":\"Thông báo hiển thị khi không có sản phẩm nào trong danh mục này.\",\"V53XzQ\":\"Mã xác thực mới đã được gửi đến email của bạn\",\"sr2Je0\":\"a shift in start/end times\",\"/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\":[\"Account · \",[\"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\":\"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\":\"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\":\"Add Date\",\"QeupRg\":\"Thêm ngày\",\"Q219NT\":\"Add Dates\",\"yjB5VC\":\"Add dates and times for your recurring event\",\"Z8idyM\":\"Add details\",\"wpirGs\":\"Add event details\",\"VX6WUv\":\"Thêm địa điểm\",\"GCQlV2\":\"Add multiple times if you run several sessions per day.\",\"7JF9w9\":\"Thêm câu hỏi\",\"NLbIb6\":\"Add this attendee anyway (override capacity)\",\"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ủ ban tổ chức. Một banner đồng ý cookie sẽ được hiển thị cho khách truy cập khi 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\":\"Affiliate program\",\"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.\",\"3e31kI\":\"After your event is created, you can choose how often it repeats from the dashboard.\",\"z7GAMJ\":\"all\",\"N40H+G\":\"All\",\"7rLTkE\":\"Tất cả sự kiện đã lưu trữ\",\"gKq1fa\":\"Tất cả người tham dự\",\"63gRoO\":\"All attendees of the selected sessions\",\"uWxIoH\":\"All attendees of this occurrence\",\"pMLul+\":\"Tất cả tiền tệ\",\"sgUdRZ\":\"All dates\",\"e4q4uO\":\"All Dates\",\"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\":\"All matching dates\",\"F1/VgK\":\"All occurrences\",\"OpWjMq\":\"All Occurrences\",\"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.\",\"VZdky1\":\"Cho phép người mua sao chép thông tin của họ cho tất cả người tham dự\",\"F3mW5G\":\"Cho phép khách hàng tham gia danh sách chờ khi sản phẩm này đã hết\",\"4CMO/q\":\"Cho phép khách hàng tham gia danh sách chờ khi sản phẩm này đã hết. Khách hàng tham gia danh sách chờ cho một ngày cụ thể.\",\"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\":\"Already in\",\"/H326L\":\"Đã hoàn tiền\",\"USEpOK\":\"Already use Stripe on another organizer? Reuse that connection.\",\"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.\",\"OPFdAM\":\"Mô tả tùy chọn của danh mục này để hiển thị trên trang sự kiện.\",\"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\":[\"and \",[\"0\"],\" more...\"],\"QNrkms\":\"Câu trả lời đã được cập nhật thành công.\",\"+qygei\":\"Answers\",\"GK7Lnt\":\"Answers provided at checkout (e.g. meal choice)\",\"lE8PgT\":\"Any dates you've manually customized will be kept.\",\"jVoYha\":[\"đã áp dụng — giảm \",[\"0\"],\" cho đơn hàng của bạn\"],\"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\":\"Phê duyệt tin nhắn\",\"naCW6Z\":\"April\",\"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\":[\"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\":\"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/\":\"Are you sure you want to delete this date? This action cannot be undone.\",\"RiF/yT\":\"Are you sure you want to delete this image?\",\"b3+Qku\":\"Are you sure you want to delete this tax or fee? It will no longer be applied to new orders.\",\"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\":\"Are you sure you want to permanently delete this date? This cannot be undone.\",\"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?\",\"b7tkGp\":\"Are you sure you want to revoke this invitation?\",\"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\":\"Assign plan\",\"xdiER7\":\"Cấp độ được gán\",\"F2rX0R\":\"Ít nhất một loại sự kiện phải được chọn\",\"Z44eZS\":\"At least one product must stay available for this date. To make the date inaccessible, cancel it from the schedule instead.\",\"BCmibk\":\"Lần thử\",\"6PecK3\":\"Tỷ lệ tham dự và check-in cho tất cả sự kiện\",\"K2tp3v\":\"attendee\",\"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\",\"94aQMU\":\"Thông tin người tham dự\",\"KkrBiR\":\"Thu thập thông tin người tham dự\",\"sjPjOg\":\"Attendee notes\",\"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\":\"attendees\",\"zLRobu\":\"attendees checked 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/\":\"August\",\"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 tiếp theo 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ỗ\",\"Xp+ywP\":\"Có sẵn sau khi hoàn tất thanh toán\",\"dwDH1K\":[\"Available times on \",[\"dayName\"]],\"clF06r\":\"Có thể hoàn tiền\",\"NB5+UG\":\"Token có sẵn\",\"L+wGOG\":\"Awaiting\",\"qcw2OD\":\"Awaiting pay\",\"kNmmvE\":\"Công ty TNHH Awesome Events\",\"TeSaQO\":\"Quay lại tài khoản\",\"kYqM1A\":\"Quay lại sự kiện\",\"s5QRF3\":\"Quay lại tin nhắn\",\"td/bh+\":\"Quay lại Báo cáo\",\"nsm7BA\":\"Quay lại tìm kiếm\",\"imjKVx\":\"Bank account connected\",\"D9LTCH\":\"Base Price\",\"hviJef\":\"Based on the global sale period above, not per date\",\"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\":\"Built-in fraud protection\",\"cr7kGH\":\"Bulk Edit\",\"1Fbd6n\":\"Bulk Edit Dates\",\"Eq6Tu9\":\"Bulk update failed.\",\"9N+p+g\":\"Kinh doanh\",\"SWnN1L\":\"Business address\",\"kQekXw\":\"Business name\",\"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 việc thêm pixel theo dõi, bạn thừa nhận rằng bạn và nền tảng này là đồng kiểm soát viên dữ liệu thu thập được. Bạn chịu trách nhiệm đảm bảo có cơ sở pháp lý cho việc xử lý này theo luật bảo mậ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\":\"By day of month\",\"0MnNgi\":\"By day of week\",\"CetOZE\":\"By ticket type\",\"lFdbRS\":\"Bỏ qua phí ứng dụng\",\"AjVXBS\":\"Calendar\",\"2VLZwd\":\"Nút hành động\",\"rT2cV+\":\"Camera\",\"7hYa9y\":\"Camera permission was denied. <0>Request permission again, or grant this page camera access in your browser settings.\",\"D02dD9\":\"Chiến dịch\",\"RRPA79\":\"Can't check in\",\"OcVwAd\":[\"Cancel \",[\"count\"],\" date(s)\"],\"H4nE+E\":\"Hủy tất cả sản phẩm và trả lại pool có sẵn\",\"Py78q9\":\"Cancel Date\",\"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.\",\"FPpqc7\":[\"Cancelling \",[\"0\"],\" date(s). This may take a moment to complete.\"],\"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\":\"Capacity management\",\"H7K8og\":\"Capacity must be 0 or greater\",\"nzao08\":\"capacity updates\",\"4cp9NP\":\"Capacity Used\",\"K7tIrx\":\"Danh mục\",\"DRK3Bq\":\"Category deleted successfully\",\"o+XJ9D\":\"Thay đổi\",\"kJkjoB\":\"Change duration\",\"J0KExZ\":\"Change the attendee limit\",\"ssospy\":\"Change time\",\"CIHJJf\":\"Thay đổi cài đặt danh sách chờ\",\"B5icLR\":[\"Changed duration for \",[\"count\"],\" date(s)\"],\"Kb+0BT\":\"Charges\",\"2tbLdK\":\"Từ thiện\",\"BPWGKn\":\"Check in\",\"6uFFoY\":\"Check out\",\"FjAlwK\":[\"Check out this event: \",[\"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\":[\"Check-in for \",[\"0\"],\" was undone\"],\"9s/wrQ\":\"Check-in history\",\"Wwztk4\":\"Check-In List\",\"9gPPUY\":\"Danh sách Check-In Đã Tạo!\",\"dwjiJt\":\"Check-in list info\",\"7od0PV\":\"check-in lists\",\"f2vU9t\":\"Danh sách check-in\",\"XprdTn\":\"Check-in navigation\",\"5tV1in\":\"Check-in progress\",\"SHJwyq\":\"Tỷ lệ check-in\",\"qCqdg6\":\"Trạng thái đăng ký\",\"cKj6OE\":\"Tóm tắt Check-in\",\"7B5M35\":\"Check-In\",\"VrmydS\":\"Checked in\",\"DM4gBB\":\"Tiếng Trung (Phồn thể)\",\"p8Jvp4\":\"Choose a configuration\",\"ElShBO\":\"Choose a different action\",\"pHEhf+\":\"Chọn kiểu chữ phù hợp với thương hiệu của bạn. Phông chữ được tự lưu trữ qua Bunny Fonts.\",\"Zok1Gx\":\"Choose an organizer\",\"pkk46Q\":\"Chọn một nhà tổ chức\",\"Ag32+c\":\"Choose another date\",\"Crr3pG\":\"Chọn lịch\",\"Z38ZJu\":\"Chọn cách hiển thị ngày sự kiện trên vé\",\"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\":\"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\":\"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\":\"complete\",\"bUQMpb\":\"Complete Stripe setup\",\"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\":\"Configuration assigned\",\"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\":\"Configure which products are available for this occurrence and optionally adjust pricing.\",\"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\",\"/K4Vqr\":\"Kết nối Stripe để nhận thanh toán\",\"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\":\"Sự kiện trực tuyến bắt buộc phải có chi tiết kết nối\",\"jfC/xh\":\"Liên hệ\",\"LOFgda\":[\"Liên hệ \",[\"0\"]],\"41BQ3k\":\"Email liên hệ\",\"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\",\"s30OcA\":\"Kiểm soát cách hiển thị ngày và giờ trên trang sự kiện\",\"p2FRHj\":\"Kiểm soát cách xử lý phí nền tảng cho sự kiện này\",\"NqfabH\":\"Control who gets in for this date\",\"fmYxZx\":\"Control who gets in, and when\",\"1JnTgU\":\"Đã sao chép từ trên\",\"FxVG/l\":\"Đã sao chép vào clipboard\",\"PiH3UR\":\"Đã sao chép!\",\"4i7smN\":\"Copy account ID\",\"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\":\"Could not prepare the bulk update.\",\"KOavaU\":\"Không thể lấy chi tiết địa chỉ\",\"/lq4oO\":\"Could not save date\",\"mHu0az\":\"Couldn't send verification email. Please try again.\",\"QOIm+S\":\"Số liệu bao gồm tất cả các ngày sắp tới. Mỗi người sẽ được đề nghị một chỗ cho ngày họ đã đăng ký.\",\"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\":\"Covers every ticket\",\"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\":\"Create a fixed number\",\"jqhTmw\":\"Create a list for this date\",\"PhioFp\":\"Create a new check-in list for an active session, or contact the organizer if you think this is a mistake.\",\"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\":\"Create Date\",\"Nc3l/D\":\"Tạo giảm giá, mã truy cập cho vé ẩn và ưu đãi đặc biệt.\",\"PybJS2\":\"Create event\",\"eWEV9G\":\"Tạo mật khẩu mới\",\"wl2iai\":\"Create Schedule\",\"8AiKIu\":\"Tạo vé hoặc sản phẩm\",\"/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\":\"Tạo sự kiện đầu tiên để bắt đầu bán vé và quản lý người tham dự.\",\"ZCSSd+\":\"Tạo sự kiện của riêng bạn\",\"qdv10s\":[\"Đang tạo \",[\"0\"],\" ngày. Việc này có thể mất một lúc.\"],\"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\":\"Currently assigned\",\"iTvh6I\":\"Hiện có sẵn để mua\",\"A42Dqn\":\"Custom branding\",\"Guo0lU\":\"Ngày và giờ tùy chỉnh\",\"WDMdn8\":\"Custom questions\",\"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 clipboard\",\"QMHSMS\":\"Khách hàng sẽ nhận email xác nhận hoàn tiền\",\"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\":\"Daily\",\"/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\":\"Dance\",\"pvnfJD\":\"Tối\",\"MaB9wW\":\"Date Cancellation\",\"e6cAxJ\":\"Date cancelled\",\"81jBnC\":\"Date cancelled successfully\",\"a/C/6R\":\"Date created successfully\",\"IW7Q+u\":\"Date deleted\",\"rngCAz\":\"Date deleted successfully\",\"vHbfoQ\":\"Date reactivated\",\"hvah+S\":\"Date reopened for new sales\",\"Ez0YsD\":\"Date updated successfully\",\"Te33mU\":\"Dates are managed per occurrence\",\"91zCxb\":\"Dates with sessions\",\"/ITcnz\":\"day\",\"H7OUPr\":\"Day\",\"JtHrX9\":\"Day of Month\",\"J/Upwb\":\"days\",\"vDVA2I\":\"Days of Month\",\"rDLvlL\":\"Days of Week\",\"r6zgGo\":\"December\",\"jbq7j2\":\"Từ chối\",\"ovBPCi\":\"Mặc định\",\"JtI4vj\":\"Thu thập thông tin người tham dự mặc định\",\"ULjv90\":\"Default capacity per date\",\"3R/Tu2\":\"Xử lý phí mặc định\",\"1bZAZA\":\"Mẫu mặc định sẽ được sử dụng\",\"HNlEFZ\":\"xóa\",\"KpnwJK\":[\"Xóa \\\"\",[\"0\"],\"\\\"?\"],\"BlII4o\":[\"Delete \",[\"count\"],\" selected date(s)? Dates with orders will be skipped. This cannot be undone.\"],\"vu7gDm\":\"Xóa đối tác\",\"KZN4Lc\":\"Xóa tất cả\",\"6EkaOO\":\"Delete Date\",\"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\":\"Delete Permanently\",\"dPyJ15\":\"Xóa mẫu\",\"IQTR34\":\"Delete this category? Any products in it will also be deleted. This cannot be undone.\",\"/1wMxk\":\"Delete this product? This cannot be undone.\",\"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\":[\"Deleted \",[\"0\"],\" date(s)\"],\"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\":\"Different location\",\"E/QGRL\":\"Disabled\",\"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.\",\"HtaSQp\":\"Hiển thị số chỗ còn lại cho mỗi ngày trong tiện ích vé. Bạn có thể ghi đè cài đặt này cho từng ngà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\":\"Door staff instructions\",\"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 rằng tất cả các nhà tổ chức sự kiện đều được xác minh và chịu trách nhiệm.\",\"euc6Ns\":\"Nhân đôi\",\"YueC+F\":\"Duplicate Date\",\"KRmTkx\":\"Nhân bản sản phẩm\",\"Jd3ymG\":\"Duration must be at least 1 minute.\",\"KIjvtr\":\"Tiếng Hà Lan\",\"22xieU\":\"ví dụ 180 (3 giờ)\",\"/zajIE\":\"e.g. Morning Session\",\"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.\",\"Xfsjel\":\"Từng sản phẩm\",\"5oD9f/\":\"Earlier\",\"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\":\"Edit Date\",\"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\":\"Edited\",\"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 & scheduled messages\",\"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\":\"Embeddable widget\",\"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\":\"End\",\"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\",\"ZayGC7\":\"End on a date\",\"48Y16Q\":\"Thời gian kết thúc (tùy chọn)\",\"TbaYrr\":[\"Ended \",[\"0\"]],\"CFgwiw\":[\"Ends \",[\"0\"]],\"SqOIQU\":\"Enter a capacity value or choose unlimited.\",\"h37gRz\":\"Enter a label or choose to remove it.\",\"7YZofi\":\"Nhập tiêu đề và nội dung để xem trước\",\"khyScF\":\"Enter a time to shift by.\",\"SKx/0u\":\"Nhập tên địa điểm hoặc địa chỉ\",\"ppwojw\":\"Nhập tên địa điểm hoặc địa chỉ cho sự kiện trực tiếp\",\"j+eCIq\":\"Nhập địa chỉ thủ công\",\"3bR1r4\":\"Nhập email đối tác (tùy chọn)\",\"ARkzso\":\"Nhập tên đối tác\",\"ej4L8b\":\"Enter capacity\",\"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)\",\"RRlWVA\":\"Toàn bộ đơn hàng\",\"o21Y+P\":\"entries\",\"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\",\"+v+GW0\":\"Hiển thị ngày sự kiện\",\"7u9/DO\":\"Sự kiện đã được xóa thành công\",\"imgKgl\":\"Mô tả sự kiện\",\"IzR/Fc\":\"Event lifetime\",\"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\",\"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\",\"XVLu2v\":\"Tiêu đề sự kiện\",\"OfmsI9\":\"Sự kiện quá mới\",\"4SILkp\":\"Event totals\",\"YDVUVl\":\"Loại sự kiện\",\"+HeiVx\":\"Sự kiện đã cập nhật\",\"19j6uh\":\"Hiệu suất sự kiện\",\"PC3/fk\":\"Sự kiện bắt đầu trong 24 giờ tới\",\"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\":\"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ể chỉ định cấu hình\",\"PO0cfn\":\"Failed to cancel date\",\"YUX+f+\":\"Failed to cancel dates\",\"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\":\"Failed to create schedule\",\"4yLYTb\":\"Không thể tạo lịch trình. Vui lòng thử lại.\",\"U66oUa\":\"Không thể tạo mẫu\",\"aFk48v\":\"Không thể xóa cấu hình\",\"n1CYMH\":\"Failed to delete date\",\"KXv+Qn\":\"Failed to delete date. It may have existing orders.\",\"JJ0uRo\":\"Failed to delete dates\",\"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\",\"5E23qd\":\"Failed to delete product. Please try again.\",\"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\":\"Failed to reactivate date\",\"7zyx8a\":\"Không thể xóa khỏi danh sách chờ\",\"A/P7PX\":\"Failed to remove override\",\"ogWc1z\":\"Failed to reopen date\",\"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\":\"Failed to save override\",\"sj/eZA\":\"Failed to save price override\",\"780n8A\":\"Failed to save product settings\",\"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\":\"Family\",\"5LO38w\":\"Fast payouts to your bank\",\"4lgLew\":\"February\",\"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\":\"Film\",\"L1qbUx\":\"Filter attendees\",\"8OvVZZ\":\"Lọc Người Tham Dự\",\"N/H3++\":\"Filter by date\",\"mvrlBO\":\"Lọc theo sự kiện\",\"g+xRXP\":\"Finish setting up Stripe\",\"LHH461\":\"Finish setup\",\"syyeb9\":\"First\",\"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\",\"rVogsf\":\"Khắc phục sự cố để xuất bản\",\"3lkYdQ\":\"Fixed fee\",\"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\":\"Flash off\",\"q0923e\":\"Flash on\",\"X+U6/w\":\"Họ phông chữ\",\"lWxAUo\":\"Ẩm thực\",\"nFm+5u\":\"Văn bản chân trang\",\"a8nooQ\":\"Fourth\",\"wtuVU4\":\"Frequency\",\"xVhQZV\":\"Fri\",\"39y5bn\":\"Friday\",\"f5UbZ0\":\"Full data ownership\",\"cfvx/y\":\"Full event\",\"MY2SVM\":\"Hoàn tiền toàn bộ\",\"PGQLdy\":\"future\",\"8N/j1s\":\"Future dates only\",\"yRx/6K\":\"Future dates will be copied with capacity reset to zero\",\"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\":\"Get Paid\",\"lGYzP6\":\"Get paid with Stripe\",\"ZDIydz\":\"Bắt đầu\",\"u6FPxT\":\"Lấy vé\",\"8KDgYV\":\"Chuẩn bị sự kiện của bạn\",\"RkXlPZ\":\"GitHub\",\"sr0UJD\":\"Go Back\",\"oNL5vN\":\"Đến trang sự kiện\",\"gHSuV/\":\"Đi đến trang chủ\",\"8+Cj55\":\"Go to Schedule\",\"6nDzTl\":\"Dễ đọc\",\"76gPWk\":\"Got it\",\"CZXzs4\":\"Tiếng Hy Lạp\",\"aGWZUr\":\"Doanh thu gộp\",\"n8IUs7\":\"Doanh thu gộp\",\"O1wAlQ\":\"Guest\",\"LIYoRQ\":\"Quản lý khách\",\"NUsTc4\":\"Happening now\",\"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\":\"Hi,\",\"/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\":\"Hide details\",\"FmogyU\":\"Ẩn tùy chọn\",\"uXNYjR\":\"Ẩn các ngày và giờ đã hết vé\",\"g9RcYX\":\"Ẩn ngày\",\"uMwTx7\":\"Ẩn danh mục này?\",\"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\":\"Hobbies\",\"yY8wAv\":\"Hours\",\"49Tkiw\":\"Giảm giá được áp dụng như thế nào?\",\"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\":\"How long does the schedule run?\",\"DMr2XN\":\"How often?\",\"cceMns\":\"How VAT is applied to the platform fees we charge you.\",\"FONsLE\":\"https://awesome-events.com\",\"htoh8N\":\"https://webhook-domain.com/webhook\",\"mkWad2\":\"Tiếng Hungary\",\"8Wgd41\":\"Tôi thừa 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\",\"CY3yHL\":\"Nếu được chọn, danh mục này sẽ bị ẩn khỏi công chúng.\",\"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\":[\"in last \",[\"0\"],\" min\"],\"u7r0G5\":\"In person — set a venue\",\"/LCAwL\":\"Đang diễn ra\",\"F1Xp97\":\"Người tham dự riêng lẻ\",\"85e6zs\":\"Chèn token Liquid\",\"CTWsuc\":\"Instagram\",\"VopR6B\":\"Instant Stripe payouts\",\"nbfdhU\":\"Tích hợp\",\"I8eJ6/\":\"Internal notes on the attendee's ticket\",\"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\",\"Dn4OyV\":\"Đã mời\",\"IuMGvq\":\"Hóa đơn\",\"a/bUcL\":\"It happens on more than one date\",\"d+Oe9r\":\"It may have been unpublished or removed. Please check the link and try again.\",\"Lj7sBL\":\"Tiếng Ý\",\"F5/CBH\":\"mục\",\"BzfzPK\":\"Mục\",\"rjyWPb\":\"January\",\"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\":\"July\",\"zeEQd/\":\"June\",\"MxjCqk\":\"Chỉ đang tìm vé của bạn?\",\"xOTzt5\":\"just now\",\"0RihU9\":\"Just wrapped\",\"lB2hSG\":[\"Giữ cho tôi cập nhật tin tức và sự kiện từ \",[\"0\"]],\"ioFA9i\":\"Keep the profit.\",\"o66QSP\":\"label updates\",\"RtKKbA\":\"Last\",\"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\":\"Later\",\"xvnLMP\":\"Latest check-ins\",\"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\":\"Sáng\",\"1qY5Ue\":\"Liên kết hết hạn hoặc không hợp lệ\",\"gggTBm\":\"LinkedIn\",\"nvOPBA\":\"Liên kết được phép\",\"2BBAbc\":\"List\",\"dF6vP6\":\"Trực tiếp\",\"fpMs2Z\":\"TRỰC TIẾP\",\"D9zTjx\":\"Sự Kiện Trực Tiếp\",\"C33p4q\":\"Loaded dates\",\"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\",\"7w8lJU\":\"Đã lưu địa điểm\",\"YsRXDD\":\"Đã cập nhật địa điểm\",\"A/kIva\":\"location updates\",\"iyZPPR\":\"đị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é\",\"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\":[\"Manage \",[\"0\"]],\"wZJfA8\":\"Manage dates and times for your recurring event\",\"RlzPUE\":\"Manage on Stripe\",\"sjoDuh\":\"Manage schedule\",\"6NXJRK\":\"Manage Schedule\",\"zXuaxY\":\"Quản lý danh sách chờ sự kiện, xem thống kê và cung cấp vé cho người tham dự.\",\"g2npA5\":\"Ưu đãi thủ công\",\"hg6l4j\":\"March\",\"pqRBOz\":\"Mark as validated (admin override)\",\"2L3vle\":\"Tin nhắn tối đa / 24h\",\"Qp4HWD\":\"Người nhận tối đa / tin nhắn\",\"3JzsDb\":\"May\",\"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\":\"Minutes\",\"zz/Wd/\":\"Mode\",\"fpMgHS\":\"Mon\",\"hty0d5\":\"Monday\",\"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\":\"month\",\"HajiZl\":\"Tháng\",\"+8Nek/\":\"Monthly\",\"1LkxnU\":\"Monthly Pattern\",\"6jefe3\":\"months\",\"f8jrkd\":\"more\",\"JcD7qf\":\"More actions\",\"w36OkR\":\"Sự kiện được xem nhiều nhất (14 ngày qua)\",\"+Y/na7\":\"Move all dates earlier or later\",\"3DIpY0\":\"Multiple locations\",\"g9cQCP\":\"Multiple ticket types\",\"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ự\",\"xxU3NX\":\"Doanh thu ròng\",\"7I8LlL\":\"New capacity\",\"n1GRql\":\"New label\",\"y0Fcpd\":\"Địa điểm mới\",\"ArHT/C\":\"Đăng ký mới\",\"uK7xWf\":\"New time:\",\"veT5Br\":\"Next occurrence\",\"WXtl5X\":[\"Next: \",[\"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\":\"No attendees to show\",\"PKySlW\":\"No attendees yet for this date.\",\"/UC6qk\":\"Không tìm thấy dữ liệu phân bổ\",\"E2vYsO\":\"No capabilities reported by Stripe yet.\",\"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\":\"No check-ins yet\",\"+dAKxg\":\"Không tìm thấy cấu hình\",\"LiLk8u\":\"No connections available\",\"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ệ.\",\"Zc216S\":\"No date added\",\"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\",\"OtJSnL\":\"Chưa có ngày nào được lên lịch\",\"gEdNe8\":\"No dates scheduled yet\",\"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\":\"Chưa có sự kiện nào\",\"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ý\",\"IcAC6J\":\"Không tìm thấy phông chữ phù hợp\",\"nrSs2u\":\"Không tìm thấy tin nhắn\",\"Rj99yx\":\"No occurrences available\",\"IFU1IG\":\"No occurrences on this date\",\"OVFwlg\":\"Chưa có câu hỏi đơn hàng\",\"EJ7bVz\":\"Không tìm thấy đơn hàng\",\"NEmyqy\":\"Chưa có đơn hàng nào\",\"a77B6w\":\"No orders yet for this date.\",\"wUv5xQ\":\"Không có hoạt động của nhà tổ chức trong 14 ngày qua\",\"vLd1tV\":\"No organizer context available.\",\"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\":\"No products configured for this event.\",\"kY7XDn\":\"Không có sản phẩm nào có người trong danh sách chờ\",\"8mw4tm\":\"Thông báo khi không có sản phẩm\",\"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 có phản hồi\",\"EK/G11\":\"Chưa có phản hồi\",\"59OWd3\":\"Chưa có địa điểm đã lưu\",\"mPdY6W\":\"Không có gợi ý\",\"3sRuiW\":\"Không tìm thấy vé\",\"debCrL\":\"Không có vé để bán\",\"k2C0ZR\":\"No upcoming dates\",\"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\":\"non-edited\",\"Itw24Q\":\"Not checked in\",\"x5+Lcz\":\"Chưa Đăng Ký\",\"8n10sz\":\"Không Đủ Điều Kiện\",\"kLvU3F\":\"Notify attendees and stop sales\",\"t9QlBd\":\"November\",\"kAREMN\":\"Number of dates to create\",\"6u1B3O\":\"Occurrence\",\"mmoE62\":\"Occurrence Cancelled\",\"V9flmL\":\"Occurrence Schedule\",\"Kh3WO8\":\"Occurrence Summary\",\"byXCTu\":\"Occurrences\",\"KATw3p\":\"Occurrences (future only)\",\"85rTR2\":\"Occurrences can be configured after creation\",\"dzQfDY\":\"October\",\"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ờ.\"],\"6Aih4U\":\"Ngoại tuyến\",\"nO3VbP\":[\"Đang giảm giá \",[\"0\"]],\"oXOSPE\":\"Trực tuyến\",\"aqmy5k\":\"Online — provide connection details\",\"LuZBbx\":\"Online & in-person\",\"IXuOqt\":\"Online & in-person — see schedule\",\"WjSpu5\":\"Sự kiện trực tuyến\",\"scPxI/\":[\"Chỉ còn \",[\"capacity\"]],\"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\",\"wkpaqp\":\"Chỉ hiển thị ngày và giờ bắt đầu\",\"DMk8F0\":\"Only tickets count toward capacity\",\"M2w1ni\":\"Chỉ hiển thị với mã khuyến mãi\",\"y8Bm7C\":\"Open check-in\",\"RLz7P+\":\"Open occurrence\",\"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\":\"or add a single date\",\"eBskDE\":\"Hoặc bật thanh toán ngoại tuyến và tắt Stripe\",\"dSeVIm\":\"order\",\"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\",\"xtQzag\":\"Order details\",\"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\",\"RQCXz6\":\"Giới hạn đơn hàng\",\"SO9AEF\":\"Giới hạn đơn hàng đã đặt\",\"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\",\"eJ8SvM\":\"Order number, purchase date, purchaser email\",\"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\",\"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\",\"3NT0Ck\":\"Đơn hàng đã bị hủy\",\"V5khLm\":\"orders\",\"sd5IMt\":\"Đơn hàng đã hoàn thành\",\"5It1cQ\":\"Đơn hàng đã được xuất\",\"UQ0ACV\":\"Tổng đơn hàng\",\"B/EBQv\":\"Đơn hàng:\",\"qtGTNu\":\"Tài khoản tự nhiên\",\"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\",\"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\":\"Organizers\",\"/IX/7x\":\"Khác\",\"RsiDDQ\":\"Danh Sách Khác (Vé Không Bao Gồm)\",\"aDfajK\":\"Outdoors\",\"qMASRF\":\"Tin nhắn đi\",\"iCOVQO\":\"Override\",\"GpFTEc\":\"Override fees on this organizer\",\"M9ZhMP\":\"Override price\",\"cnVIpl\":\"Override removed\",\"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\":\"Past due\",\"xTPjSy\":\"Sự kiện đã qua\",\"/l/ckQ\":\"Dán URL\",\"URAE3q\":\"Tạm dừng\",\"4fL/V7\":\"Thanh toán\",\"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\":\"Payouts\",\"UbRKMZ\":\"Pending\",\"UkM20g\":\"Đang chờ xem xét\",\"dPYu1F\":\"Theo người tham dự\",\"mQV/nJ\":\"per min\",\"+kvxv+\":\"mỗi đơn hàng\",\"VlXNyK\":\"Mỗi đơn hàng\",\"NhuGd7\":\"mỗi sản phẩm\",\"hauDFf\":\"Mỗi vé\",\"mnF83a\":\"Phí phần trăm\",\"TNLuRD\":\"Percentage fee (%)\",\"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\":\"Permanently remove this date\",\"6kPk3+\":\"Thông tin cá nhân\",\"zmwvG2\":\"Điện thoại\",\"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\":\"Đ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\":\"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\":\"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\":\"Please select a date and time\",\"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\":\"Position\",\"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\",\"Jm2AC3\":\"Price Tier\",\"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\":\"Product settings cannot be edited for cancelled dates.\",\"2339ej\":\"Product settings saved successfully\",\"ldVIlB\":\"Cập nhật sản phẩm\",\"CP3D8G\":\"Progress\",\"JoKGiJ\":\"Mã khuyến mãi\",\"k3wH7i\":\"Chi tiết sử dụng mã khuyến mãi và giảm giá\",\"tZqL0q\":\"promo codes\",\"oCHiz3\":\"Promo codes\",\"uEhdRh\":\"Chỉ khuyến mãi\",\"dLm8V5\":\"Email quảng cáo có thể dẫn đến đình chỉ tài khoản\",\"W0ETyY\":\"Cung cấp ít nhất một trường địa chỉ (địa điểm, đường, thành phố hoặc quốc gia).\",\"2W/7Gz\":\"Provide the following before Stripe's next review to keep payouts flowing.\",\"EEYbdt\":\"Xuất bản\",\"JcgJKc\":\"Vẫn xuất bản\",\"evDBV8\":\"Xuất bản sự kiện\",\"2zEfOd\":\"Publish your event\",\"L7nrC8\":\"Khi xuất bản, trang sự kiện của bạn sẽ công khai và mở đăng ký.\",\"dsFmM+\":\"Đã mua\",\"JunetL\":\"Purchaser\",\"phmeUH\":\"Purchaser email\",\"ywR4ZL\":\"QR code check-in\",\"oWXNE5\":\"SL\",\"biEyJ4\":\"Question answers\",\"k/bJj0\":\"Đã sắp xếp lại câu hỏi\",\"b24kPi\":\"Hàng đợi\",\"lTPqpM\":\"Quick Tip\",\"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\":\"Reactivate this date? It will be reopened for future sales.\",\"RENQ6j\":\"Sẵn sàng xuất bản?\",\"uqoRbb\":\"Real-time analytics\",\"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\":\"Recent Attendees\",\"qhfiwV\":\"Recent check-ins\",\"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\",\"WEYdDv\":\"Recommended\",\"wuhHPE\":\"Recurring\",\"asLqwt\":\"Sự kiện định kỳ\",\"s3uzsK\":\"Cài đặt sự kiện định kỳ\",\"D0tAMe\":\"Recurring events\",\"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\":\"Refund all orders for these dates\",\"4cRUK3\":\"Refund all orders for this date\",\"fKn/k6\":\"Số tiền hoàn lại\",\"qY4rpA\":\"Hoàn tiền thất bại\",\"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\":\"Remaining\",\"Bjh87R\":\"Remove label from all dates\",\"IVZaEo\":\"Xóa hoàn toàn các ngày và giờ đã hết vé khỏi trang sự kiện. Khi tắt, chúng vẫn hiển thị và được gắn nhãn hết vé.\",\"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\":\"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\":\"Reset to base price\",\"kCn6wb\":\"Đang đặt lại...\",\"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\":\"results\",\"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\",\"Lf7TCn\":\"Các địa điểm dùng lại sẽ tự động xuất hiện ở đây khi bạn tạo sự kiện có địa chỉ, và bạn cũng có thể tự thêm.\",\"mdQ0zb\":\"Các địa điểm dùng lại cho sự kiện của bạn. Địa điểm tạo từ tính năng tự động hoàn thành sẽ được lưu ở đây.\",\"XFOPle\":\"Reuse\",\"1Zehp4\":\"Reuse a Stripe connection from another organizer in this account.\",\"Oo/PLb\":\"Tóm tắt doanh thu\",\"CfuueU\":\"Thu hồi ưu đãi\",\"RIgKv+\":\"Run until a specific date\",\"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\":\"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\":\"Đã đặ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\":\"Sales, attendance, and check-in breakdown per occurrence\",\"3VnlS9\":\"Doanh số, đơn hàng và chỉ số hiệu suất cho tất cả sự kiện\",\"3Q1AWe\":\"Doanh thu:\",\"LeuERW\":\"Same as event\",\"B4nE3N\":\"Giá vé mẫu\",\"8BRPoH\":\"Địa điểm Mẫu\",\"PiK6Ld\":\"Sat\",\"+5kO8P\":\"Saturday\",\"zJiuDn\":\"Save fee override\",\"NB8Uxt\":\"Save Schedule\",\"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\":\"Save VAT settings\",\"6/TNCd\":\"Lưu cài đặt VAT\",\"4RvD9q\":\"Địa điểm đã lưu\",\"cgw0cL\":\"Địa điểm đã lưu\",\"Fbqm/I\":\"Saving an override creates a dedicated configuration for this organizer if it's currently on the system default.\",\"I+FvbD\":\"Quét\",\"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\":\"Lên lịch gửi sau\",\"NAzVVw\":\"Lên lịch tin nhắn\",\"Fz09JP\":\"Schedule starts on\",\"4ba0NE\":\"Đã lên lịch\",\"qcP/8K\":\"Thời gian đã lên lịch\",\"A1taO8\":\"Search\",\"ftNXma\":\"Tìm kiếm đối tác...\",\"VMU+zM\":\"Search attendees\",\"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ệ...\",\"YnMfsK\":\"Tìm theo tên hoặc địa chỉ...\",\"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\":\"Search by name, order #, ticket # or 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\":\"Search dates...\",\"iRtEpV\":\"Search dates…\",\"JRM7ao\":\"Search for an address\",\"BWF1kC\":\"Tìm kiếm tin nhắn...\",\"5WYZKZ\":\"Kết quả tìm kiếm\",\"IG85fV\":\"Tìm địa điểm đã lưu hoặc tìm một địa chỉ...\",\"3aD3GF\":\"Seasonal\",\"ku//5b\":\"Second\",\"Mck5ht\":\"Thanh toán an toàn\",\"s7tXqF\":\"See schedule\",\"JFap6u\":\"See what Stripe still needs\",\"p7xUrt\":\"Chọn danh mục\",\"hTKQwS\":\"Select a Date & Time\",\"Ps6Xtf\":\"Select a date to see available times\",\"e4L7bF\":\"Chọn một tin nhắn để xem nội dung\",\"zPRPMf\":\"Chọn cấp độ\",\"BFRSTT\":\"Chọn Tài Khoản\",\"wgNoIs\":\"Select all\",\"mCB6Je\":\"Chọn tất cả\",\"aCEysm\":[\"Select all on \",[\"0\"]],\"a6+167\":\"Chọn một sự kiện\",\"CFbaPk\":\"Chọn nhóm người tham dự\",\"88a49s\":\"Select camera\",\"tVW/yo\":\"Chọn tiền tệ\",\"SJQM1I\":\"Select date\",\"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\":\"Select occurrence\",\"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\":\"selected\",\"ylXj1N\":\"Đã chọn\",\"uq3CXQ\":\"Sell out your event.\",\"oBXbO4\":\"Selling a physical product? Cap its quantity on the <0>products page instead.\",\"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\":\"Send to all occurrences, or choose a specific one\",\"QEQlnV\":\"Gửi tin nhắn đầu tiên của bạn\",\"IoAuJG\":\"Đang gửi...\",\"h69WC6\":\"Đã gửi\",\"BVu2Hz\":\"Được gửi bởi\",\"ZFa8wv\":\"Sent to attendees when a scheduled date is cancelled\",\"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\":\"September\",\"5sN96e\":\"Session cancelled\",\"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\":\"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\":\"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\":\"Set up payouts\",\"JA//e6\":\"Set up schedule\",\"gzXY7l\":\"Set Up Schedule\",\"0Ls9qe\":\"Set up the tickets you'll sell and their prices\",\"xMO+Ao\":\"Thiết lập tổ chức của bạn\",\"5pEFnq\":\"Set up your schedule\",\"h/9JiC\":\"Set Up Your Schedule\",\"zRRuUD\":\"Set up your schedule in the next steps\",\"ETC76A\":\"Set, change, or remove the date's location or online details\",\"C3htzi\":\"Đã cập nhật cài đặt\",\"Ohn74G\":\"Thiết lập & thiết kế\",\"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\":\"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\":\"Shift times\",\"tPfIaW\":[\"Shifted times for \",[\"count\"],\" date(s)\"],\"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\":\"Show attendee notes to non-logged-in staff\",\"4LZFir\":\"Hiển thị toàn bộ khoảng thời gian\",\"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\",\"b33PL9\":\"Hiển thị thêm nền tảng\",\"Eut7p9\":\"Show order details to non-logged-in staff\",\"+RoWKN\":\"Show question answers to non-logged-in staff\",\"jbcx6L\":\"Show remaining capacity on event dates\",\"rXxBOx\":\"Show remaining capacity to buyers\",\"t1LIQW\":[\"Hiển thị \",[\"0\"],\" trong \",[\"totalRows\"],\" bản ghi\"],\"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\":\"Đã đăng ký\",\"5C7J+P\":\"Single Event\",\"E//btK\":\"Skip manually edited dates\",\"paESr6\":\"Tiếng Slovak\",\"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\",\"yp+0jj\":\"sold out\",\"1hupow\":\"Đã bán hết, có danh sách chờ\",\"iACSrw\":\"Some details are hidden from public access. Log in to view everything.\",\"Dia6iz\":\"Something went wrong while deleting the image. Please try again.\",\"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\":\"Spirituality\",\"oPaRES\":\"Split check-in across days, areas, or ticket types. Share the link with staff — no account needed on their end.\",\"7JFNej\":\"Thể thao\",\"/bfV1Y\":\"Staff instructions\",\"tXkhj/\":\"Start\",\"StWUH4\":\"Start check-in\",\"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\",\"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/\":\"Thống kê\",\"GVUxAX\":\"Thống kê dựa trên ngày tạo tài khoản\",\"29Hx9U\":\"Stats\",\"5ia+r6\":\"Still needed\",\"wuV0bK\":\"Dừng Mạo Danh\",\"s/KaDb\":\"Stripe connected\",\"Bk06QI\":\"Stripe đã kết nối\",\"akZMv8\":[\"Stripe connection copied from \",[\"0\"],\".\"],\"v0aRY1\":\"Stripe didn't return a setup link. Please try again.\",\"aKtF0O\":\"Stripe chưa kết nối\",\"9i0++A\":\"ID thanh toán Stripe\",\"R1lIMV\":\"Stripe will need a few more details soon\",\"FzcCHA\":\"Stripe will walk you through a few quick questions to finish setup.\",\"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\",\"kRWc2g\":\"Đã cập nhật cài đặt sự kiện định kỳ 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\":\"Sun\",\"DBC3t5\":\"Sunday\",\"UaISq3\":\"Tiếng Thụy Điển\",\"JZTQI0\":\"Chuyển đổi nhà tổ chức\",\"9YHrNC\":\"Mặc định hệ thống\",\"lruQkA\":\"Tap this screen to resume scanning\",\"TJUrME\":[\"Targeting attendees across \",[\"0\"],\" selected sessions.\"],\"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\":\"Team collaboration\",\"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\":\"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\":\"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\",\"nm3Iz/\":\"Cảm ơn bạn đã tham dự!\",\"pYwj0k\":\"Thanks,\",\"k3IitN\":\"That's a wrap\",\"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.\",\"7oksH+\":[\"Giảm giá được trừ vào từng sản phẩm đủ điều kiện. Ví dụ: giảm \",[\"currencySymbol\"],\"10 × 3 vé = giảm \",[\"currencySymbol\"],\"30.\"],\"sKL8k2\":\"Giảm giá chỉ được trừ một lần vào tổng đơ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.\",\"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\":\"The first date this schedule will generate from.\",\"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.\",\"Np4eLs\":[\"The maximum is \",[\"MAX_PREVIEW\"],\" sessions. Please reduce the date range, frequency, or number of sessions per day.\"],\"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\":\"The override is recorded in the order audit log.\",\"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\",\"OVSkIF\":\"Con cáo nâu nhanh nhẹn nhảy qua con chó lười.\",\"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\":[\"The session for \\\"\",[\"title\"],\"\\\" originally scheduled for \",[\"0\"],\" has been rescheduled.\"],\"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\",\"ybBP2H\":\"There are no products available for this date. Please choose another date.\",\"O7g4eR\":\"There are no upcoming dates for this event\",\"062KsE\":\"These details are shown on the attendee's ticket and order summary for this date only.\",\"5Eu+tn\":\"Những chi tiết này chỉ hiển thị khi đơn hàng hoàn tất thành công.\",\"jQjwR+\":\"These details will replace any existing location on the affected dates and show on attendee tickets.\",\"6eaLu/\":\"Các mức giá này áp dụng cho tất cả các ngày trong lịch, và số lượng của từng hạng giới hạn tổng số bán ra của tất cả các ngày cộng lại. Ngày mở bán của các hạng áp dụng chung. Bạn có thể ghi đè giá cho từng ngày riêng lẻ trên <0>trang Lịch các buổi.\",\"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\":\"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\":\"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/\":[\"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.\",\"E9BqZw\":\"This date only\",\"RzEvf5\":\"Sự kiện này đã kết thúc\",\"kc4bIA\":\"Sự kiện này chưa có vé hoặc sản phẩm nào, vì vậy người tham dự sẽ không thể đăng ký.\",\"eMaNd0\":\"This event is not available\",\"YClrdK\":\"Sự kiện này chưa được xuất bản\",\"GL6z+k\":\"Sự kiện này đã hết vé\",\"pIwDhS\":\"This event's dates and times are set on the occurrence schedule.\",\"ny5rgr\":\"This is a recurring event\",\"tc64Zz\":\"Đây là tên danh mục sẽ được hiển thị trên trang sự kiệ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.\",\"5DpZrC\":\"Giới hạn này áp dụng cho tổng số lượng bán ra của tất cả các ngày trong lịch cộng lại — không phải giới hạn theo từng ngày. Để giới hạn số người tham dự mỗi ngày, hãy đặt sức chứa trên <0>trang Lịch các buổi.\",\"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\":\"This occurrence is at capacity\",\"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\",\"qEGn8I\":\"Sự kiện định kỳ này chưa có ngày nào, vì vậy người tham dự không có gì để đặ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ử.\",\"1LuJNw\":\"Vé này không còn hiệu lực\",\"0Ew0uk\":\"Vé này vừa được quét. Vui lòng chờ trước khi quét lại.\",\"FYXq7k\":[\"This will affect \",[\"loadedAffectedCount\"],\" date(s).\"],\"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\":\"Throughput\",\"+FjWgX\":\"Thu\",\"kkDQ8m\":\"Thursday\",\"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\",\"HGuXjF\":\"Người sở hữu vé\",\"CMUt3Y\":\"Người giữ vé\",\"awHmAT\":\"ID vé\",\"6czJik\":\"Logo 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é\",\"pGZOcL\":\"Vé đã được gửi lại thành công\",\"o02GZM\":\"Ticket sales have ended for this event\",\"8jLPgH\":\"Loại 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\":\"Time\",\"fXf2r5\":[\"Times shown in \",[\"timezoneAbbr\"]],\"dMtLDE\":\"to\",\"/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\":\"Today\",\"W428WC\":\"Chuyển đổi cột\",\"BRMXj0\":\"Tomorrow\",\"UBSG1X\":\"Nhà tổ chức hàng đầu (14 ngày qua)\",\"3sZ0xx\":\"Tổng Tài Khoản\",\"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\",\"2AW/k5\":\"Tổng số lượng cho tất cả các ngày\",\"dp8BCb\":\"Total tax\",\"vb0Q0/\":\"Tổng Người Dùng\",\"oJjplO\":\"Tổng lượt xem\",\"rBZ9pz\":\"Tours\",\"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\":\"Theo dõi & Phân tích\",\"GUA0Jy\":\"Try a different search term or filter\",\"2P/OWN\":\"Try adjusting your filters to see more dates.\",\"ouM5IM\":\"Thử email khác\",\"3DZvE7\":\"Dùng thử Hi.Events miễn phí\",\"vq2WxD\":\"Tue\",\"G3myU+\":\"Tuesday\",\"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\",\"nWRfmt\":\"Kiểu chữ\",\"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\":\"Unable to load attendee details.\",\"GlnD5Y\":\"Unable to load products for this date. Please try again.\",\"17VbmV\":\"Unable to undo check-in\",\"n57zCW\":\"Tài khoản chưa phân bổ\",\"9uI/rE\":\"Undo\",\"Ef7StM\":\"Không rõ\",\"ZBAScj\":\"Người tham dự không xác định\",\"MEIAzV\":\"Chưa đặt tên\",\"K6L5Mx\":\"Địa điểm chưa đặt tên\",\"7yiFvZ\":\"Chưa thanh toán\",\"X13xGn\":\"Không đáng tin cậy\",\"gyXpQN\":\"Upcoming events\",\"Pp1sWX\":\"Cập nhật đối tác\",\"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\":\"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\":\"USB scanner listening\",\"dyTklH\":\"USB scanner paused\",\"OHJXlK\":\"Sử dụng <0>mẫu Liquid để cá nhân hóa email của bạn\",\"/rsy72\":\"Use event default\",\"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.\",\"bA31T4\":\"Sử dụng thông tin người mua cho tất cả người tham dự\",\"PpgtnC\":\"Dùng địa chỉ này\",\"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\":\"VAT number\",\"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\":\"VAT registered\",\"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\":\"VAT settings updated\",\"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: not registered\",\"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\":\"View All\",\"yA/6BX\":\"View all →\",\"6CQ7/B\":\"View all capabilities\",\"YSE15b\":\"View all check-in lists\",\"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\":[\"View details for \",[\"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\":\"Waiting for scan…\",\"u0n+wz\":\"Danh sách chờ\",\"3RXFtE\":\"Danh sách chờ đã bật\",\"TwnTPy\":\"Ưu đãi danh sách chờ đã hết hạn\",\"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ể.\",\"aT/44s\":\"We couldn't copy that Stripe connection. Please try again.\",\"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.\",\"Fjj/5/\":\"We couldn't load the check-in lists. Please try again.\",\"ADsQ23\":\"We couldn't reach Stripe just now. Please try again in a moment.\",\"HJKdzP\":\"Đã xảy ra sự cố khi tải trang này. Vui lòng thử lại.\",\"jegrvW\":\"We partner with Stripe to send payouts straight to your bank account.\",\"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 để 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.\",\"mfM/HJ\":[\"Chúng tôi sẽ thông báo cho bạn qua email nếu có chỗ trống cho \",[\"productDisplayName\"],\" vào \",[\"occurrenceDate\"],\".\"],\"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\":\"We'll open a message composer with a pre-filled template after saving. You review and send it — nothing is sent automatically.\",\"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\":[\"We've made changes to the schedule for \\\"\",[\"title\"],\"\\\" — \",[\"description\"],\" affecting \",[\"affectedCount\"],\" session(s).\"],\"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\":\"Webhook integrations\",\"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\":\"Wed\",\"VAcXNz\":\"Wednesday\",\"64X6l4\":\"week\",\"4XSc4l\":\"Weekly\",\"IAUiSh\":\"weeks\",\"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\":\"Wellness\",\"ywRaYa\":\"What time?\",\"FaSXqR\":\"Loại sự kiện nào?\",\"0WyYF4\":\"What unauthenticated staff can see\",\"2+ExvJ\":\"WhatsApp\",\"cxsKvw\":\"Khi một lượt check-in bị xóa\",\"RPe6bE\":\"When a date is cancelled on a recurring event\",\"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 sản phẩm hết hàng, khách hàng có thể tham gia danh sách chờ để được thông báo khi có chỗ trống.\",\"OIkHj+\":\"Khi sản phẩm hết hàng, khách hàng có thể tham gia danh sách chờ để được thông báo khi có chỗ trống. Khách hàng tham gia danh sách chờ cho một ngày cụ thể và các đề nghị được đưa ra theo từng ngày.\",\"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\":\"Khi khách hàng mua vé, đơn hàng của họ sẽ hiển thị tại đây.\",\"pm9tpn\":\"Khi được bật, người mua có thể sao chép tên và email của mình cho tất cả người tham dự cùng lúc. Tắt tùy chọn này để loại bỏ tùy chọn \\\"Tất cả người tham dự\\\"; người mua vẫn có thể sao chép cho người tham dự đầu tiên, những người còn lại phải được nhập riêng.\",\"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.\",\"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\":\"year\",\"zkWmBh\":\"Yearly\",\"+BGee5\":\"years\",\"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+\":\"You can override this for individual dates later.\",\"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.\",\"D8baxD\":\"Bạn có vé trả phí nhưng Stripe chưa được kết nối, vì vậy bạn không thể nhận thanh toán.\",\"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 thừa 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/\":\"You need to create at least one occurrence before you can add attendees to this recurring event.\",\"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\":\"You'll be able to set up dates, schedules, and recurrence rules in the next step.\",\"zKAheG\":\"You're changing session times\",\"MNFIxz\":[\"Bạn sẽ tham gia \",[\"0\"],\"!\"],\"ZlLcht\":[\"Bạn đang tham gia danh sách chờ cho \",[\"occurrenceDate\"],\".\"],\"qGZz0m\":\"Bạn đã được thêm vào danh sách chờ!\",\"/5HL6k\":\"Bạn đã được mời một suất!\",\"gbjFFH\":\"You've changed the session time\",\"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\":\"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\":\"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\":\"Ưu đãi 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. 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 b2ba0663cb..b0f708d826 100644 --- a/frontend/src/locales/vi.po +++ b/frontend/src/locales/vi.po @@ -179,11 +179,11 @@ msgstr "" msgid "{totalCount} ticket types" msgstr "{totalCount} loại vé" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:554 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:567 msgid "{totalOccurrences} dates" msgstr "" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:547 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:560 msgid "{totalOccurrences} sessions across {0} dates ({1, plural, one {# session} other {# sessions}} per day)" msgstr "" @@ -516,7 +516,7 @@ msgstr "Sự kiện hoạt động" msgid "Active payment methods" msgstr "" -#: src/components/routes/event/OccurrencesTab/index.tsx:400 +#: src/components/routes/event/OccurrencesTab/index.tsx:402 msgid "Activity" msgstr "" @@ -536,11 +536,11 @@ msgstr "" msgid "Add a description for this check-in list" msgstr "Thêm mô tả cho danh sách check-in này" -#: src/components/routes/event/OccurrencesTab/index.tsx:538 +#: src/components/routes/event/OccurrencesTab/index.tsx:541 msgid "Add a Single Date" msgstr "" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:739 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:752 msgid "Add another time" msgstr "" @@ -560,7 +560,7 @@ msgstr "Thêm bất kỳ ghi chú nào về đơn hàng. Những ghi chú này s msgid "Add any notes about the order..." msgstr "Thêm bất kỳ ghi chú nào về đơn hàng ..." -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:375 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:382 msgid "Add at least one time" msgstr "" @@ -580,7 +580,7 @@ msgstr "" msgid "Add dates" msgstr "Thêm ngày" -#: src/components/routes/event/OccurrencesTab/index.tsx:524 +#: src/components/routes/event/OccurrencesTab/index.tsx:526 msgid "Add Dates" msgstr "" @@ -611,7 +611,7 @@ msgstr "Thêm hướng dẫn thanh toán offline (ví dụ: chi tiết chuyển msgid "Add Location" msgstr "Thêm địa điểm" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:743 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:756 msgid "Add multiple times if you run several sessions per day." msgstr "" @@ -796,7 +796,7 @@ msgid "all" msgstr "" #: src/components/layouts/CheckIn/tabs/SearchTab.tsx:133 -#: src/components/routes/event/OccurrencesTab/index.tsx:485 +#: src/components/routes/event/OccurrencesTab/index.tsx:487 msgid "All" msgstr "" @@ -987,7 +987,7 @@ msgstr "Đã xảy ra lỗi không mong muốn." msgid "An unexpected error occurred. Please try again." msgstr "Đã xảy ra lỗi không mong muốn. Vui lòng thử lại." -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:849 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:862 msgid "and {0} more..." msgstr "" @@ -1003,7 +1003,7 @@ msgstr "" msgid "Answers provided at checkout (e.g. meal choice)" msgstr "" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:564 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:577 msgid "Any dates you've manually customized will be kept." msgstr "" @@ -1071,7 +1071,7 @@ msgstr "" msgid "Approve Message" msgstr "Phê duyệt tin nhắn" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:74 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:76 msgid "April" msgstr "" @@ -1127,7 +1127,7 @@ msgstr "Bạn có chắc chắn muốn lưu trữ sự kiện này không? Nó s 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." -#: src/components/routes/event/OccurrencesTab/index.tsx:213 +#: src/components/routes/event/OccurrencesTab/index.tsx:215 msgid "Are you sure you want to cancel {count} date(s)? Affected attendees will be notified by email." msgstr "" @@ -1159,7 +1159,7 @@ msgstr "Bạn có chắc chắn muốn xóa cấu hình này không? Điều nà #: src/components/modals/ManageOccurrenceModal/index.tsx:58 #: src/components/routes/event/OccurrenceDetail/index.tsx:84 -#: src/components/routes/event/OccurrencesTab/index.tsx:182 +#: src/components/routes/event/OccurrencesTab/index.tsx:184 msgid "Are you sure you want to delete this date? This action cannot be undone." msgstr "" @@ -1446,7 +1446,7 @@ msgstr "Chi tiết phân bổ" msgid "Attribution Value" msgstr "Giá trị phân bổ" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:78 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:80 msgid "August" msgstr "" @@ -1625,7 +1625,7 @@ msgstr "Tiếng Bồ Đào Nha Brazil" msgid "Built-in fraud protection" msgstr "" -#: src/components/routes/event/OccurrencesTab/index.tsx:515 +#: src/components/routes/event/OccurrencesTab/index.tsx:517 msgid "Bulk Edit" msgstr "" @@ -1674,11 +1674,11 @@ msgstr "Bằng việc thêm pixel theo dõi, bạn thừa nhận rằng bạn v 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}" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:628 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:641 msgid "By day of month" msgstr "" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:629 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:642 msgid "By day of week" msgstr "" @@ -1698,7 +1698,7 @@ msgstr "Bỏ qua phí ứng dụng" msgid "Calculation Type" msgstr "Loại tính toán" -#: src/components/routes/event/OccurrencesTab/index.tsx:471 +#: src/components/routes/event/OccurrencesTab/index.tsx:473 msgid "Calendar" msgstr "" @@ -1735,7 +1735,7 @@ msgstr "" #: src/components/modals/ManageOrderModal/index.tsx:209 #: src/components/modals/PublishEventModal/index.tsx:208 #: src/components/routes/event/messages.tsx:80 -#: src/components/routes/event/OccurrencesTab/index.tsx:497 +#: src/components/routes/event/OccurrencesTab/index.tsx:499 #: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:272 #: src/components/routes/event/OccurrencesTab/OccurrenceEditModal/index.tsx:306 #: src/components/routes/event/OccurrencesTab/OccurrenceMenu.tsx:61 @@ -1748,8 +1748,8 @@ msgstr "" msgid "Cancel" msgstr "Hủy" -#: src/components/routes/event/OccurrencesTab/index.tsx:209 -#: src/components/routes/event/OccurrencesTab/index.tsx:221 +#: src/components/routes/event/OccurrencesTab/index.tsx:211 +#: src/components/routes/event/OccurrencesTab/index.tsx:223 msgid "Cancel {count} date(s)" msgstr "" @@ -1809,7 +1809,7 @@ msgstr "Hủy sẽ hủy tất cả người tham dự liên quan đến đơn h msgid "Cancelled" msgstr "Hủy bỏ" -#: src/components/routes/event/OccurrencesTab/index.tsx:235 +#: src/components/routes/event/OccurrencesTab/index.tsx:237 msgid "Cancelling {0} date(s). This may take a moment to complete." msgstr "" @@ -1819,7 +1819,7 @@ msgstr "Không thể xóa cấu hình mặc định của hệ thống" #: src/components/forms/CapaciyAssigmentForm/index.tsx:42 #: src/components/routes/event/OccurrencesTab/OccurrenceEditModal/index.tsx:503 -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:811 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:824 msgid "Capacity" msgstr "Công suất" @@ -2154,7 +2154,7 @@ msgid "City" msgstr "Thành phố" #: src/components/common/OccurrenceSelect/index.tsx:133 -#: src/components/routes/event/OccurrencesTab/index.tsx:503 +#: src/components/routes/event/OccurrencesTab/index.tsx:505 msgid "Clear" msgstr "" @@ -2174,7 +2174,7 @@ msgstr "Xoá văn bản tìm kiếm" msgid "Clearing removes any per-date override. Affected dates will fall back to the event's default location." msgstr "" -#: src/components/routes/event/OccurrencesTab/index.tsx:331 +#: src/components/routes/event/OccurrencesTab/index.tsx:333 msgid "Click to cancel" msgstr "" @@ -2182,7 +2182,7 @@ msgstr "" msgid "Click to copy" msgstr "Bấm để sao chép" -#: src/components/routes/event/OccurrencesTab/index.tsx:333 +#: src/components/routes/event/OccurrencesTab/index.tsx:335 msgid "Click to reopen for new sales" msgstr "" @@ -2743,7 +2743,7 @@ msgstr "Tạo mẫu {0}" msgid "Create a custom widget to sell tickets on your site." msgstr "Tạo widget tùy chỉnh để bán vé trên trang web của bạn." -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:785 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:798 msgid "Create a fixed number" msgstr "" @@ -2879,7 +2879,7 @@ msgstr "Tạo mã khuyến mãi" msgid "Create Question" msgstr "Tạo câu hỏi" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:864 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:877 msgid "Create Schedule" msgstr "" @@ -2927,6 +2927,10 @@ msgstr "Tạo sự kiện của riêng bạn" msgid "Created" msgstr "Đã tạo" +#: src/components/routes/event/OccurrencesTab/index.tsx:549 +msgid "Creating {0} dates. This may take a moment." +msgstr "Đang tạo {0} ngày. Việc này có thể mất một lúc." + #: src/components/routes/welcome/index.tsx:472 msgid "Creating Event..." msgstr "Đang tạo sự kiện..." @@ -3066,7 +3070,7 @@ msgstr "Tùy chỉnh trang sự kiện của bạn" msgid "Customize your organizer page appearance" msgstr "Tùy chỉnh giao diện trang tổ chức của bạn" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:56 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:58 #: src/components/routes/product-widget/OccurrenceSelector/index.tsx:32 msgid "Daily" msgstr "" @@ -3155,7 +3159,7 @@ msgstr "" #: src/components/modals/ManageOccurrenceModal/index.tsx:61 #: src/components/routes/event/OccurrenceDetail/index.tsx:87 -#: src/components/routes/event/OccurrencesTab/index.tsx:184 +#: src/components/routes/event/OccurrencesTab/index.tsx:186 msgid "Date deleted" msgstr "" @@ -3168,7 +3172,7 @@ msgstr "" msgid "Date reactivated" msgstr "" -#: src/components/routes/event/OccurrencesTab/index.tsx:198 +#: src/components/routes/event/OccurrencesTab/index.tsx:200 msgid "Date reopened for new sales" msgstr "" @@ -3184,15 +3188,15 @@ msgstr "" msgid "Dates with sessions" msgstr "" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:93 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:95 msgid "day" msgstr "" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:659 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:672 msgid "Day" msgstr "" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:676 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:689 msgid "Day of Month" msgstr "" @@ -3200,19 +3204,19 @@ msgstr "" msgid "Day one capacity" msgstr "Sức chứa ngày đầu tiên" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:101 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:103 msgid "days" msgstr "" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:635 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:648 msgid "Days of Month" msgstr "" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:605 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:618 msgid "Days of Week" msgstr "" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:82 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:84 msgid "December" msgstr "" @@ -3230,7 +3234,7 @@ msgstr "Mặc định" msgid "Default attendee information collection" msgstr "Thu thập thông tin người tham dự mặc định" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:815 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:828 msgid "Default capacity per date" msgstr "" @@ -3253,7 +3257,7 @@ msgstr "xóa" #: src/components/common/QuestionsTable/index.tsx:150 #: src/components/common/TaxAndFeeList/index.tsx:81 #: src/components/routes/admin/FailedJobs/index.tsx:209 -#: src/components/routes/event/OccurrencesTab/index.tsx:500 +#: src/components/routes/event/OccurrencesTab/index.tsx:502 #: src/components/routes/event/OccurrencesTab/OccurrenceMenu.tsx:62 msgid "Delete" msgstr "Xóa" @@ -3262,7 +3266,7 @@ msgstr "Xóa" msgid "Delete \"{0}\"?" msgstr "Xóa \"{0}\"?" -#: src/components/routes/event/OccurrencesTab/index.tsx:247 +#: src/components/routes/event/OccurrencesTab/index.tsx:249 msgid "Delete {count} selected date(s)? Dates with orders will be skipped. This cannot be undone." msgstr "" @@ -3344,7 +3348,7 @@ msgstr "Xóa câu hỏi này? Hành động này không thể hoàn tác." msgid "Delete webhook" msgstr "Xóa webhook" -#: src/components/routes/event/OccurrencesTab/index.tsx:253 +#: src/components/routes/event/OccurrencesTab/index.tsx:255 msgid "Deleted {0} date(s)" msgstr "" @@ -3565,7 +3569,7 @@ msgstr "ví dụ 180 (3 giờ)" #: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:452 #: src/components/routes/event/OccurrencesTab/OccurrenceEditModal/index.tsx:450 -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:714 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:727 msgid "e.g. Morning Session" msgstr "" @@ -3724,7 +3728,7 @@ msgstr "Chỉnh sửa webhook" msgid "Edit Webhook" msgstr "Chỉnh sửa webhook" -#: src/components/routes/event/OccurrencesTab/index.tsx:306 +#: src/components/routes/event/OccurrencesTab/index.tsx:308 msgid "Edited" msgstr "" @@ -3913,7 +3917,7 @@ msgstr "Bật danh sách chờ" msgid "Enabled" msgstr "Đã bật" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:704 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:717 msgid "End" msgstr "" @@ -3934,7 +3938,7 @@ msgstr "Ngày và giờ kết thúc (tùy chọn)" msgid "End date must be after start date" msgstr "Ngày kết thúc phải sau ngày bắt đầu" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:771 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:784 msgid "End on a date" msgstr "" @@ -4409,7 +4413,7 @@ msgstr "Không thể hủy người tham dự" msgid "Failed to cancel date" msgstr "" -#: src/components/routes/event/OccurrencesTab/index.tsx:239 +#: src/components/routes/event/OccurrencesTab/index.tsx:241 msgid "Failed to cancel dates" msgstr "" @@ -4429,10 +4433,14 @@ msgstr "Không thể tạo đối tác" msgid "Failed to create configuration" msgstr "Không thể tạo cấu hình" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:530 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:543 msgid "Failed to create schedule" msgstr "" +#: src/hooks/useOccurrenceGenerationPolling.ts:44 +msgid "Failed to create schedule. Please try again." +msgstr "Không thể tạo lịch trình. Vui lòng thử lại." + #: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:192 #: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:195 msgid "Failed to create template" @@ -4444,7 +4452,7 @@ msgstr "Không thể xóa cấu hình" #: src/components/modals/ManageOccurrenceModal/index.tsx:64 #: src/components/routes/event/OccurrenceDetail/index.tsx:90 -#: src/components/routes/event/OccurrencesTab/index.tsx:185 +#: src/components/routes/event/OccurrencesTab/index.tsx:187 msgid "Failed to delete date" msgstr "" @@ -4452,7 +4460,7 @@ msgstr "" msgid "Failed to delete date. It may have existing orders." msgstr "" -#: src/components/routes/event/OccurrencesTab/index.tsx:256 +#: src/components/routes/event/OccurrencesTab/index.tsx:258 msgid "Failed to delete dates" msgstr "" @@ -4540,7 +4548,7 @@ msgstr "Không thể xóa khỏi danh sách chờ" msgid "Failed to remove override" msgstr "" -#: src/components/routes/event/OccurrencesTab/index.tsx:199 +#: src/components/routes/event/OccurrencesTab/index.tsx:201 msgid "Failed to reopen date" msgstr "" @@ -4677,7 +4685,7 @@ msgstr "" msgid "Fast payouts to your bank" msgstr "" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:72 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:74 msgid "February" msgstr "" @@ -4769,7 +4777,7 @@ msgstr "" msgid "Finish setup" msgstr "" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:63 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:65 msgid "First" msgstr "" @@ -4882,7 +4890,7 @@ msgstr "Văn bản chân trang" msgid "Forgot password?" msgstr "Quên mật khẩu?" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:66 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:68 msgid "Fourth" msgstr "" @@ -4909,11 +4917,11 @@ msgstr "Sản phẩm miễn phí, không cần thông tin thanh toán" msgid "French" msgstr "Tiếng Pháp" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:586 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:599 msgid "Frequency" msgstr "" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:50 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:52 msgid "Fri" msgstr "" @@ -5004,7 +5012,7 @@ msgstr "GitHub" #: src/components/routes/event/OccurrenceDetail/index.tsx:72 #: src/components/routes/event/OccurrencesTab/cancelOccurrenceDialog.tsx:49 -#: src/components/routes/event/OccurrencesTab/index.tsx:221 +#: src/components/routes/event/OccurrencesTab/index.tsx:223 #: src/components/routes/event/OccurrencesTab/OccurrenceEditModal/index.tsx:339 #: src/components/routes/event/OccurrencesTab/OccurrenceEditModal/index.tsx:363 msgid "Go Back" @@ -5271,7 +5279,7 @@ msgstr "Giảm giá được áp dụng như thế nào?" msgid "How long a customer has to complete their purchase after receiving an offer. Leave empty for no timeout." msgstr "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." -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:750 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:763 msgid "How long does the schedule run?" msgstr "" @@ -5283,7 +5291,7 @@ msgstr "Khách hàng phải hoàn thành đơn đơn hàng bao nhiêu phút. " msgid "How many times can this code be used?" msgstr "Mã này có thể được sử dụng bao nhiêu lần?" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:581 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:594 msgid "How often?" msgstr "" @@ -5589,7 +5597,7 @@ msgstr "mục" msgid "Items" msgstr "Mục" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:71 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:73 msgid "January" msgstr "" @@ -5640,11 +5648,11 @@ msgstr "Tham gia danh sách chờ cho {productDisplayName}" msgid "Joined" msgstr "Đã tham gia" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:77 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:79 msgid "July" msgstr "" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:76 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:78 msgid "June" msgstr "" @@ -5670,7 +5678,7 @@ msgstr "" #: src/components/forms/ProductForm/index.tsx:108 #: src/components/routes/event/OccurrencesTab/OccurrenceEditModal/index.tsx:449 -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:711 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:724 #: src/components/routes/event/Reports/OccurrenceSummaryReport/index.tsx:45 msgid "Label" msgstr "Nhãn" @@ -5685,7 +5693,7 @@ msgstr "" msgid "Language" msgstr "Ngôn ngữ" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:67 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:69 msgid "Last" msgstr "" @@ -5794,7 +5802,7 @@ msgid "Leave blank to use the default word \"Invoice\"" msgstr "Để trống để sử dụng từ mặc định \"Hóa đơn\"" #: src/components/routes/event/OccurrencesTab/OccurrenceEditModal/index.tsx:507 -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:816 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:829 msgid "Leave empty for unlimited" msgstr "" @@ -5834,7 +5842,7 @@ msgstr "LinkedIn" msgid "Links Allowed" msgstr "Liên kết được phép" -#: src/components/routes/event/OccurrencesTab/index.tsx:470 +#: src/components/routes/event/OccurrencesTab/index.tsx:472 msgid "List" msgstr "" @@ -6003,7 +6011,7 @@ msgstr "" msgid "Manage attendee" msgstr "Quản lý người tham dự" -#: src/components/routes/event/OccurrencesTab/index.tsx:460 +#: src/components/routes/event/OccurrencesTab/index.tsx:462 msgid "Manage dates and times for your recurring event" msgstr "" @@ -6074,7 +6082,7 @@ msgstr "Thêm một người tham dự theo cách thủ công" msgid "Manually Add Attendee" msgstr "Thêm người tham dự" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:73 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:75 msgid "March" msgstr "" @@ -6098,7 +6106,7 @@ msgstr "Người nhận tối đa / tin nhắn" msgid "Maximum Per Order" msgstr "Tối đa mỗi đơn hàng" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:75 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:77 msgid "May" msgstr "" @@ -6214,7 +6222,7 @@ msgstr "Cài đặt linh tinh" msgid "Mode" msgstr "" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:46 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:48 msgid "Mon" msgstr "" @@ -6230,24 +6238,24 @@ msgstr "Giá trị tiền tệ là tổng gần đúng của tất cả các lo msgid "Monitor and manage failed background jobs" msgstr "Giám sát và quản lý các công việc nền thất bại" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:95 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:97 msgid "month" msgstr "" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:671 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:684 msgid "Month" msgstr "Tháng" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:58 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:60 #: src/components/routes/product-widget/OccurrenceSelector/index.tsx:41 msgid "Monthly" msgstr "" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:624 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:637 msgid "Monthly Pattern" msgstr "" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:103 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:105 msgid "months" msgstr "" @@ -6516,7 +6524,7 @@ msgstr "" msgid "No dates match the current filters." msgstr "" -#: src/components/routes/event/OccurrencesTab/index.tsx:570 +#: src/components/routes/event/OccurrencesTab/index.tsx:580 msgid "No dates match your filters" msgstr "" @@ -6529,7 +6537,7 @@ msgstr "" msgid "No dates scheduled" msgstr "Chưa có ngày nào được lên lịch" -#: src/components/routes/event/OccurrencesTab/index.tsx:570 +#: src/components/routes/event/OccurrencesTab/index.tsx:580 msgid "No dates scheduled yet" msgstr "" @@ -6820,11 +6828,11 @@ msgstr "" msgid "Notify organizer of new orders" msgstr "Thông báo cho ban tổ chức các đơn hàng mới" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:81 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:83 msgid "November" msgstr "" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:800 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:813 msgid "Number of dates to create" msgstr "" @@ -6849,7 +6857,7 @@ msgid "Occurrence Cancelled" msgstr "" #: src/components/layouts/Event/index.tsx:113 -#: src/components/routes/event/OccurrencesTab/index.tsx:461 +#: src/components/routes/event/OccurrencesTab/index.tsx:463 msgid "Occurrence Schedule" msgstr "" @@ -6871,7 +6879,7 @@ msgstr "" msgid "Occurrences can be configured after creation" msgstr "" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:80 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:82 msgid "October" msgstr "" @@ -6965,7 +6973,7 @@ msgstr "Đang diễn ra" #: src/components/common/EventCard/index.tsx:103 #: src/components/layouts/OrganizerHomepage/EventCard/index.tsx:49 -#: src/components/routes/event/OccurrencesTab/index.tsx:316 +#: src/components/routes/event/OccurrencesTab/index.tsx:318 #: src/components/routes/event/OccurrencesTab/OccurrenceEditModal/index.tsx:473 #: src/components/routes/my-tickets/index.tsx:56 #: src/components/routes/product-widget/OccurrenceSelector/index.tsx:122 @@ -7080,7 +7088,7 @@ msgstr "Tùy chọn" msgid "or" msgstr "Hoặc" -#: src/components/routes/event/OccurrencesTab/index.tsx:593 +#: src/components/routes/event/OccurrencesTab/index.tsx:603 msgid "or add a single date" msgstr "" @@ -7088,7 +7096,7 @@ msgstr "" msgid "Or enable offline payments and disable Stripe" msgstr "Hoặc bật thanh toán ngoại tuyến và tắt Stripe" -#: src/components/routes/event/OccurrencesTab/index.tsx:413 +#: src/components/routes/event/OccurrencesTab/index.tsx:415 msgid "order" msgstr "" @@ -7250,7 +7258,7 @@ msgstr "Đơn hàng đã được cập nhật thành công" msgid "Order was cancelled" msgstr "Đơn hàng đã bị hủy" -#: src/components/routes/event/OccurrencesTab/index.tsx:413 +#: src/components/routes/event/OccurrencesTab/index.tsx:415 #: src/components/routes/event/orders.tsx:197 msgid "orders" msgstr "" @@ -7503,7 +7511,7 @@ msgid "Passwords are not the same" msgstr "Mật khẩu không giống nhau" #: src/components/layouts/OrganizerHomepage/index.tsx:291 -#: src/components/routes/event/OccurrencesTab/index.tsx:484 +#: src/components/routes/event/OccurrencesTab/index.tsx:486 #: src/components/routes/organizer/Reports/EventsPerformanceReport/index.tsx:30 msgid "Past" msgstr "Đã qua" @@ -7707,15 +7715,15 @@ msgstr "Thông tin cá nhân" msgid "Phone" msgstr "Điện thoại" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:372 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:379 msgid "Pick an end date" msgstr "" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:380 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:387 msgid "Pick at least one day of the month" msgstr "" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:369 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:376 msgid "Pick at least one day of the week" msgstr "" @@ -7765,7 +7773,7 @@ msgstr "Doanh thu nền tảng" msgid "Please add at least one option" msgstr "Vui lòng thêm ít nhất một tùy chọn" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:527 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:540 #: src/hooks/useFormErrorResponseHandler.tsx:18 msgid "Please check the provided information is correct" msgstr "Vui lòng kiểm tra thông tin được cung cấp là chính xác" @@ -7895,7 +7903,7 @@ msgstr "Sự kiện phổ biến (14 ngày qua)" msgid "Portuguese" msgstr "Tiếng Bồ Đào Nha" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:654 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:667 msgid "Position" msgstr "" @@ -8385,7 +8393,7 @@ msgstr "Tài khoản giới thiệu" msgid "Refresh Preview" msgstr "Làm mới xem trước" -#: src/components/routes/event/OccurrencesTab/index.tsx:216 +#: src/components/routes/event/OccurrencesTab/index.tsx:218 msgid "Refund all orders for these dates" msgstr "" @@ -8494,11 +8502,11 @@ msgstr "Xóa hoàn toàn các ngày và giờ đã hết vé khỏi trang sự k msgid "Reopen for new sales" msgstr "" -#: src/components/routes/event/OccurrencesTab/index.tsx:192 +#: src/components/routes/event/OccurrencesTab/index.tsx:194 msgid "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." msgstr "" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:591 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:604 msgid "Repeat every" msgstr "" @@ -8699,7 +8707,7 @@ msgstr "Thu hồi ưu đãi" msgid "Role" msgstr "Vai trò" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:772 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:785 msgid "Run until a specific date" msgstr "" @@ -8786,7 +8794,7 @@ msgstr "Giá vé mẫu" msgid "Sample Venue" msgstr "Địa điểm Mẫu" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:51 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:53 msgid "Sat" msgstr "" @@ -8836,7 +8844,7 @@ msgstr "" msgid "Save Organizer" msgstr "Lưu tổ chức" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:864 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:877 msgid "Save Schedule" msgstr "" @@ -8900,11 +8908,12 @@ msgstr "" msgid "Schedule added" msgstr "" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:520 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:530 +#: src/hooks/useOccurrenceGenerationPolling.ts:36 msgid "Schedule created successfully" msgstr "" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:793 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:806 msgid "Schedule ends on" msgstr "" @@ -8916,7 +8925,7 @@ msgstr "Lên lịch gửi sau" msgid "Schedule Message" msgstr "Lên lịch tin nhắn" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:755 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:768 msgid "Schedule starts on" msgstr "" @@ -9039,7 +9048,7 @@ msgstr "Tìm kiếm" msgid "Seasonal" msgstr "" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:64 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:66 msgid "Second" msgstr "" @@ -9215,7 +9224,7 @@ msgstr "Chọn những sự kiện nào sẽ kích hoạt webhook này" msgid "Select..." msgstr "Chọn ..." -#: src/components/routes/event/OccurrencesTab/index.tsx:495 +#: src/components/routes/event/OccurrencesTab/index.tsx:497 msgid "selected" msgstr "" @@ -9345,7 +9354,7 @@ msgstr "Cài đặt SEO" msgid "SEO Title" msgstr "Tiêu đề SEO" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:79 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:81 msgid "September" msgstr "" @@ -9373,7 +9382,7 @@ msgstr "Đặt cài đặt mặc định cho các sự kiện mới được t msgid "Set how long each date lasts" msgstr "" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:784 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:797 msgid "Set number of dates" msgstr "" @@ -9393,7 +9402,7 @@ msgstr "Đặt số bắt đầu cho hóa đơn. Sau khi hóa đơn được t msgid "Set to unlimited (remove limit)" msgstr "" -#: src/components/routes/event/OccurrencesTab/index.tsx:575 +#: src/components/routes/event/OccurrencesTab/index.tsx:585 msgid "Set up a recurring schedule to automatically create dates, or add them one at a time." msgstr "" @@ -9410,8 +9419,8 @@ msgstr "" msgid "Set up schedule" msgstr "" -#: src/components/routes/event/OccurrencesTab/index.tsx:532 -#: src/components/routes/event/OccurrencesTab/index.tsx:586 +#: src/components/routes/event/OccurrencesTab/index.tsx:535 +#: src/components/routes/event/OccurrencesTab/index.tsx:596 msgid "Set Up Schedule" msgstr "" @@ -9427,7 +9436,7 @@ msgstr "Thiết lập tổ chức của bạn" msgid "Set up your schedule" msgstr "" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:569 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:582 msgid "Set Up Your Schedule" msgstr "" @@ -9564,7 +9573,7 @@ msgstr "Hiển thị thuế và phí riêng biệt" msgid "Showing {0} of {totalRows} records" msgstr "Hiển thị {0} trong {totalRows} bản ghi" -#: src/components/routes/event/OccurrencesTab/index.tsx:614 +#: src/components/routes/event/OccurrencesTab/index.tsx:624 msgid "Showing {0}–{1} of {2}" msgstr "" @@ -9645,7 +9654,7 @@ msgstr "Liên kết mạng xã hội & Trang web" #: src/components/common/ProductsTable/SortableProduct/index.tsx:387 #: src/components/modals/ManageOccurrenceModal/index.tsx:186 -#: src/components/routes/event/OccurrencesTab/index.tsx:369 +#: src/components/routes/event/OccurrencesTab/index.tsx:371 msgid "Sold" msgstr "Đã bán" @@ -9753,7 +9762,7 @@ msgstr "" msgid "Standard product with a fixed price" msgstr "Sản phẩm tiêu chuẩn với giá cố định" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:696 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:709 msgid "Start" msgstr "" @@ -9846,7 +9855,7 @@ msgstr "" #: src/components/routes/admin/Messages/index.tsx:120 #: src/components/routes/admin/Messages/index.tsx:167 #: src/components/routes/admin/Messages/index.tsx:294 -#: src/components/routes/event/OccurrencesTab/index.tsx:326 +#: src/components/routes/event/OccurrencesTab/index.tsx:328 #: src/components/routes/event/Reports/OccurrenceSummaryReport/index.tsx:51 #: src/components/routes/event/Reports/PromoCodesReport/index.tsx:88 #: src/components/routes/organizer/Reports/EventsPerformanceReport/index.tsx:62 @@ -10104,7 +10113,7 @@ msgstr "Lễ hội âm nhạc mùa hè {0}" msgid "Summer Music Festival 2025" msgstr "Lễ hội Âm nhạc Mùa hè 2025" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:52 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:54 msgid "Sun" msgstr "" @@ -10231,7 +10240,7 @@ msgstr "Hãy cho chúng tôi biết về sự kiện của bạn" msgid "Tell us about your organization. This information will be displayed on your event pages." msgstr "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." -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:573 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:586 msgid "Tell us how often your event repeats and we'll create all the dates for you." msgstr "" @@ -10325,7 +10334,7 @@ msgstr "Địa chỉ email đã được thay đổi. Người tham dự sẽ nh msgid "The event you're looking for is not available at the moment. It may have been removed, expired, or the URL might be incorrect." msgstr "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." -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:756 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:769 msgid "The first date this schedule will generate from." msgstr "" @@ -10345,7 +10354,7 @@ msgstr "Liên kết bạn đang cố gắng truy cập đã hết hạn hoặc k msgid "The link you clicked is invalid." msgstr "Liên kết bạn đã nhấp vào không hợp lệ." -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:840 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:853 msgid "The maximum is {MAX_PREVIEW} sessions. Please reduce the date range, frequency, or number of sessions per day." msgstr "" @@ -10481,7 +10490,7 @@ msgstr "Các mẫu này sẽ được sử dụng làm mặc định cho tất c 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ế." -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:65 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:67 msgid "Third" msgstr "" @@ -10744,7 +10753,7 @@ msgstr "Thông tin này sẽ không hiển thị với khách hàng, nhưng giú msgid "Throughput" msgstr "" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:49 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:51 msgid "Thu" msgstr "" @@ -10881,7 +10890,7 @@ msgstr "Sản phẩm theo bậc cho phép bạn cung cấp nhiều tùy chọn g msgid "TikTok" msgstr "TikTok" -#: src/components/routes/event/OccurrencesTab/index.tsx:290 +#: src/components/routes/event/OccurrencesTab/index.tsx:292 msgid "Time" msgstr "" @@ -10912,7 +10921,7 @@ msgstr "Thời gian được sử dụng" msgid "Timezone" msgstr "Múi giờ" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:702 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:715 msgid "to" msgstr "" @@ -11056,7 +11065,7 @@ msgstr "Theo dõi & Phân tích" msgid "Try a different search term or filter" msgstr "" -#: src/components/routes/event/OccurrencesTab/index.tsx:574 +#: src/components/routes/event/OccurrencesTab/index.tsx:584 msgid "Try adjusting your filters to see more dates." msgstr "" @@ -11069,7 +11078,7 @@ msgstr "Thử email khác" msgid "Try Hi.Events Free" msgstr "Dùng thử Hi.Events miễn phí" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:47 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:49 msgid "Tue" msgstr "" @@ -11232,7 +11241,7 @@ msgstr "Không đáng tin cậy" #: src/components/common/EventsDashboardStatusButtons/index.tsx:20 #: src/components/common/EventStatusBadge/index.tsx:16 #: src/components/layouts/OrganizerHomepage/index.tsx:285 -#: src/components/routes/event/OccurrencesTab/index.tsx:483 +#: src/components/routes/event/OccurrencesTab/index.tsx:485 #: src/components/routes/organizer/Reports/EventsPerformanceReport/index.tsx:33 msgid "Upcoming" msgstr "Sắp tới" @@ -11880,7 +11889,7 @@ msgstr "Webhooks" msgid "Website" msgstr "Trang web" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:48 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:50 msgid "Wed" msgstr "" @@ -11888,16 +11897,16 @@ msgstr "" msgid "Wednesday" msgstr "" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:94 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:96 msgid "week" msgstr "" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:57 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:59 #: src/components/routes/product-widget/OccurrenceSelector/index.tsx:35 msgid "Weekly" msgstr "" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:102 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:104 msgid "weeks" msgstr "" @@ -11953,7 +11962,7 @@ msgstr "Sản phẩm nào nên áp dụng công suất này?" msgid "What time will you be arriving?" msgstr "Bạn sẽ đến lúc mấy giờ?" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:688 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:701 msgid "What time?" msgstr "" @@ -12140,7 +12149,7 @@ msgstr "Viết tin nhắn của bạn tại đây..." msgid "X (Twitter)" msgstr "X (Twitter)" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:96 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:98 msgid "year" msgstr "" @@ -12150,12 +12159,12 @@ msgstr "" msgid "Year to date" msgstr "Từ đầu năm đến nay" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:59 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:61 #: src/components/routes/product-widget/OccurrenceSelector/index.tsx:43 msgid "Yearly" msgstr "" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:104 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:106 msgid "years" msgstr "" @@ -12200,7 +12209,7 @@ msgstr "Bạn có thể cấu hình phí dịch vụ và thuế bổ sung trong msgid "You can create a promo code which targets this product on the" msgstr "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" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:823 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:836 msgid "You can override this for individual dates later." msgstr "" diff --git a/frontend/src/locales/zh-cn.js b/frontend/src/locales/zh-cn.js index e7d0bb5151..4bea9a92f0 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 Main Street\",\"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\":\"Are you sure you want to make this event public? This will make the event visible to the public\",\"s4JozW\":\"您确定要恢复此活动吗?它将作为草稿恢复。\",\"vJuISq\":\"您确定要删除此容量分配吗?\",\"baHeCz\":\"您确定要删除此签到列表吗?\",\"LBLOqH\":\"每份订单询问一次\",\"wu98dY\":\"每个产品询问一次\",\"ss9PbX\":\"参与者\",\"m0CFV2\":\"与会者详情\",\"QKim6l\":\"未找到参与者\",\"R5IT/I\":\"Attendee Notes\",\"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\":\"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\":\"取消\",\"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\":\"Check-in\",\"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\":\"定制您的活动页面\",\"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\":\"Dismiss\",\"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\":\"Event URL\",\"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\":\"No attendees have been added to this order.\",\"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\":\"No product associated with this attendee.\",\"Ya1JhR\":\"此类别中没有可用的产品。\",\"FTfObB\":\"尚无产品\",\"+Y976X\":\"无促销代码显示\",\"MAavyl\":\"No questions answered by this attendee.\",\"SnlQeq\":\"No questions have been asked for this order.\",\"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\":\"Online event\",\"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\":\"Order #\",\"B3gPuX\":\"取消订单\",\"SIbded\":\"Order Completed\",\"q/CcwE\":\"订购日期\",\"Tol4BF\":\"订购详情\",\"WbImlQ\":\"订单已取消,并已通知订单所有者。\",\"nAn4Oe\":\"订单已标记为已支付\",\"uzEfRz\":\"Order Notes\",\"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\":\"San Francisco\",\"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\":\"Suite 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\":\"View\",\"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\":\"(none)\",\"xYxQCZ\":[[\"0\"],\" \",[\"1\"]],\"lAOy2r\":[[\"0\"],\" \",[\"1\"],\" 已签到\"],\"3beCx0\":[[\"0\"],\" <0>checked in\"],\"S4PqS9\":[[\"0\"],\" 个活动的 Webhook\"],\"6MIiOI\":[\"剩余 \",[\"0\"]],\"COnw8D\":[[\"0\"],\" 标志\"],\"xG9N0H\":[[\"0\"],\" of \",[\"1\"],\" seats are taken.\"],\"B7pZfX\":[[\"0\"],\" 位组织者\"],\"/HkCs4\":[[\"0\"],\"张门票\"],\"30bTiU\":[[\"activeCount\"],\" enabled\"],\"jTs4am\":[[\"appName\"],\" logo\"],\"gbJOk9\":[[\"attendeeCount\"],\" attendees are registered for this session.\"],\"TjbIUI\":[[\"availableCount\"],\" / \",[\"totalCount\"],\" 可用\"],\"PSChHo\":[\"剩余 \",[\"capacity\"],\" 个名额\"],\"lzQ8/M\":[[\"checkedIn\"],\" / \",[\"total\"],\" checked in\"],\"RZ0JX3\":[[\"chipTime\"],\",已售罄\"],\"M4KnFs\":[[\"chipTime\"],\",售罄,可加入候补名单\"],\"SeyN12\":[[\"completedCount\"],\" of \",[\"totalCount\"],\" steps complete\"],\"f2rhaD\":[[\"diffHr\"],\"h ago\"],\"NRSLBe\":[[\"diffMin\"],\"m ago\"],\"iYfwJE\":[[\"diffSec\"],\"s ago\"],\"OJnhhX\":[[\"eventCount\"],\" 个事件\"],\"mhZbzw\":[[\"loadedAffectedAttendees\"],\" attendees are registered across the affected sessions.\"],\"RBuxIl\":[[\"productCount\"],\" ticket types configured\"],\"VFLd0I\":[[\"slotCount\"],\" times available\"],\"3IEF7U\":[[\"totalCount\"],\" 个票种\"],\"0cLzoF\":[[\"totalOccurrences\"],\" dates\"],\"AEGc4t\":[[\"totalOccurrences\"],\" sessions across \",[\"0\"],\" dates (\",[\"1\",\"plural\",{\"one\":[\"#\",\" session\"],\"other\":[\"#\",\" sessions\"]}],\" per day)\"],\"zGiMDM\":\"+1 234 567 890\",\"1d6kks\":\"+税费\",\"B1St2O\":\"<0>签到列表帮助您按日期、区域或票务类型管理活动入场。您可以将票务链接到特定列表,如VIP区域或第1天通行证,并与工作人员共享安全的签到链接。无需账户。签到适用于移动设备、桌面或平板电脑,使用设备相机或HID USB扫描仪。 \",\"v9VSIS\":\"<0>设置一个单一的总人数上限,同时适用于多个票种。<1>例如,如果你将<2>单日票和<3>全周末票关联起来,它们将共享同一个名额池。一旦达到上限,所有关联的票种将自动停止销售。\",\"Il5Uid\":\"<0>这是整个日程所有场次合计的可售总数量,而不是每场的限制。如需限制每场的人数,请在<1>场次安排页面设置容量。\",\"ZnVt5v\":\"<0>Webhooks 可在事件发生时立即通知外部服务,例如,在注册时将新与会者添加到您的 CRM 或邮件列表,确保无缝自动化。<1>使用第三方服务,如 <2>Zapier、<3>IFTTT 或 <4>Make 来创建自定义工作流并自动化任务。\",\"xFTHZ5\":[\"≈ \",[\"0\"],\"(按当前汇率)\"],\"M2DyLc\":\"1 个活动的 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张门票\",\"nz96Ue\":\"1个票种\",\"InX5ad\":\"1 ticket type configured\",\"y2Jh0m\":\"1 time available\",\"cGtUz6\":\"活动前1周\",\"HR/cvw\":\"示例街123号\",\"dgKxZ5\":\"135+ currencies & 40+ payment methods\",\"kMU5aM\":\"取消通知已发送至\",\"o++0qa\":\"a change in duration\",\"WuWSX5\":\"A few quick steps and you're ready to start selling.\",\"RQ5kDd\":\"当此类别中没有产品时显示的消息。\",\"V53XzQ\":\"新的验证码已发送到您的邮箱\",\"sr2Je0\":\"a shift in start/end times\",\"/z/bH1\":\"您组织者的简短描述,将展示给您的用户。\",\"aS0jtz\":\"已放弃\",\"uyJsf6\":\"关于\",\"JvuLls\":\"承担费用\",\"lk74+I\":\"承担费用\",\"1uJlG9\":\"强调色\",\"g3UF2V\":\"接受\",\"K5+3xg\":\"接受邀请\",\"jzb4Ep\":[\"Account · \",[\"0\"]],\"UqH1Q6\":[\"Account · \",[\"0\"],\" · \",[\"1\"]],\"vOuxvL\":\"账户信息\",\"EHNORh\":\"账户未找到\",\"bPwFdf\":\"账户\",\"AhwTa1\":\"需要操作:需要提供增值税信息\",\"APyAR/\":\"活跃活动\",\"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\":\"添加自定义问题以在结账时收集额外信息\",\"Z/dcxc\":\"Add Date\",\"QeupRg\":\"添加日期\",\"Q219NT\":\"Add Dates\",\"yjB5VC\":\"Add dates and times for your recurring event\",\"Z8idyM\":\"Add details\",\"wpirGs\":\"Add event details\",\"VX6WUv\":\"添加地点\",\"GCQlV2\":\"Add multiple times if you run several sessions per day.\",\"7JF9w9\":\"添加问题\",\"NLbIb6\":\"Add this attendee anyway (override capacity)\",\"6PNlRV\":\"将此活动添加到您的日历\",\"BGD9Yt\":\"添加机票\",\"uIv4Op\":\"将跟踪像素添加到您的公共活动页面和组织者主页。当跟踪处于活动状态时,将向访问者显示Cookie同意横幅。\",\"QN2F+7\":\"添加 Webhook\",\"NsWqSP\":\"添加您的社交媒体账号和网站链接。这些信息将显示在您的公开组织者页面上。\",\"bVjDs9\":\"额外费用\",\"MKqSg4\":\"需要管理员访问权限\",\"0Zypnp\":\"管理仪表板\",\"YAV57v\":\"推广员\",\"I+utEq\":\"推广码无法更改\",\"/jHBj5\":\"推广员创建成功\",\"uCFbG2\":\"推广员删除成功\",\"ld8I+f\":\"Affiliate program\",\"a41PKA\":\"将跟踪推广员销售\",\"mJJh2s\":\"将不会跟踪推广员销售。这将停用该推广员。\",\"jabmnm\":\"推广员更新成功\",\"CPXP5Z\":\"合作伙伴\",\"9Wh+ug\":\"推广员已导出\",\"3cqmut\":\"推广员帮助您跟踪合作伙伴和网红产生的销售。创建推广码并分享以监控绩效。\",\"3e31kI\":\"After your event is created, you can choose how often it repeats from the dashboard.\",\"z7GAMJ\":\"all\",\"N40H+G\":\"All\",\"7rLTkE\":\"所有已归档活动\",\"gKq1fa\":\"所有参与者\",\"63gRoO\":\"All attendees of the selected sessions\",\"uWxIoH\":\"All attendees of this occurrence\",\"pMLul+\":\"所有货币\",\"sgUdRZ\":\"All dates\",\"e4q4uO\":\"All Dates\",\"ZS/D7f\":\"所有已结束活动\",\"QsYjci\":\"所有活动\",\"31KB8w\":\"所有失败任务已删除\",\"D2g7C7\":\"所有任务已排队等待重试\",\"B4RFBk\":\"All matching dates\",\"F1/VgK\":\"All occurrences\",\"OpWjMq\":\"All Occurrences\",\"Sxm1lO\":\"所有状态\",\"dr7CWq\":\"所有即将到来的活动\",\"GpT6Uf\":\"允许参与者通过订单确认邮件中的安全链接更新他们的门票信息(姓名、电子邮件)。\",\"VZdky1\":\"允许购买者将其信息复制给所有参会者\",\"F3mW5G\":\"允许客户在该产品售罄时加入候补名单\",\"4CMO/q\":\"允许客户在该产品售罄时加入候补名单。客户加入的是特定日期的候补名单。\",\"c4uJfc\":\"快完成了!我们正在等待您的付款处理。这只需要几秒钟。\",\"ocS8eq\":[\"已有账户?<0>\",[\"0\"],\"\"],\"uCuEqI\":\"Already in\",\"/H326L\":\"已退款\",\"USEpOK\":\"Already use Stripe on another organizer? Reuse that connection.\",\"RtxQTF\":\"同时取消此订单\",\"jkNgQR\":\"同时退款此订单\",\"xYqsHg\":\"始终可用\",\"Wvrz79\":\"支付金额\",\"Zkymb9\":\"与此推广员关联的邮箱。推广员不会收到通知。\",\"vRznIT\":\"检查导出状态时发生错误。\",\"OPFdAM\":\"此类别的可选描述,将显示在活动页面上。\",\"eusccx\":\"在突出显示的产品上显示的可选消息,例如\\\"热卖中🔥\\\"或\\\"超值优惠\\\"\",\"5GJuNp\":[\"and \",[\"0\"],\" more...\"],\"QNrkms\":\"答案更新成功。\",\"+qygei\":\"Answers\",\"GK7Lnt\":\"Answers provided at checkout (e.g. meal choice)\",\"lE8PgT\":\"Any dates you've manually customized will be kept.\",\"jVoYha\":[\"已应用 — 订单立减 \",[\"0\"]],\"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\":\"批准消息\",\"naCW6Z\":\"April\",\"B495Gs\":\"归档\",\"5sNliy\":\"归档活动\",\"BrwnrJ\":\"归档主办方\",\"E5eghW\":\"归档此活动以向公众隐藏。您可以稍后恢复它。\",\"eqFkeI\":\"归档此主办方。这也将归档属于此主办方的所有活动。\",\"BzcxWv\":\"已归档的主办方\",\"9cQBd6\":\"您确定要归档此活动吗?它将不再对公众可见。\",\"Trnl3E\":\"您确定要归档此主办方吗?这也将归档属于此主办方的所有活动。\",\"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\":\"您确定要删除所有失败的任务吗?\",\"LchiNd\":\"您确定要删除此推广员吗?此操作无法撤销。\",\"vPeW/6\":\"确定要删除此配置吗?这可能会影响使用它的账户。\",\"h42Hc/\":\"Are you sure you want to delete this date? This action cannot be undone.\",\"RiF/yT\":\"Are you sure you want to delete this image?\",\"b3+Qku\":\"Are you sure you want to delete this tax or fee? It will no longer be applied to new orders.\",\"JmVITJ\":\"确定要删除此模板吗?此操作无法撤消,邮件将回退到默认模板。\",\"aLS+A6\":\"确定要删除此模板吗?此操作无法撤消,邮件将回退到组织者或默认模板。\",\"5H3Z78\":\"您确定要删除此 Webhook 吗?\",\"147G4h\":\"您确定要离开吗?\",\"VDWChT\":\"您确定要将此组织者设为草稿吗?这样将使组织者页面对公众不可见。\",\"pWtQJM\":\"您确定要将此组织者设为公开吗?这样将使组织者页面对公众可见。\",\"EOqL/A\":\"您确定要向此人提供名额吗?他们将收到电子邮件通知。\",\"yAXqWW\":\"Are you sure you want to permanently delete this date? This cannot be undone.\",\"WFHOlF\":\"您确定要发布此活动吗?一旦发布,将对公众可见。\",\"4TNVdy\":\"您确定要发布此主办方资料吗?一旦发布,将对公众可见。\",\"8x0pUg\":\"您确定要从候补名单中移除此条目吗?\",\"cDtoWq\":[\"您确定要将订单确认重新发送到 \",[\"0\"],\" 吗?\"],\"xeIaKw\":[\"您确定要将门票重新发送到 \",[\"0\"],\" 吗?\"],\"BjbocR\":\"您确定要恢复此活动吗?\",\"7MjfcR\":\"您确定要恢复此主办方吗?\",\"b7tkGp\":\"Are you sure you want to revoke this invitation?\",\"ExDt3P\":\"您确定要取消发布此活动吗?它将不再对公众可见。\",\"5Qmxo/\":\"您确定要取消发布此主办方资料吗?它将不再对公众可见。\",\"Uqefyd\":\"您在欧盟注册了增值税吗?\",\"+QARA4\":\"艺术\",\"tLf3yJ\":\"由于您的企业位于爱尔兰,所有平台费用将自动适用23%的爱尔兰增值税。\",\"tMeVa/\":\"为每张购买的门票询问姓名和电子邮件\",\"ui5ln+\":\"Assign a different plan\",\"9Jxliv\":\"Assign plan\",\"xdiER7\":\"分配的级别\",\"F2rX0R\":\"必须选择至少一种事件类型\",\"Z44eZS\":\"At least one product must stay available for this date. To make the date inaccessible, cancel it from the schedule instead.\",\"BCmibk\":\"尝试次数\",\"6PecK3\":\"所有活动的出席率和签到率\",\"K2tp3v\":\"attendee\",\"AJ4rvK\":\"与会者已取消\",\"qvylEK\":\"与会者已创建\",\"Aspq3b\":\"参与者信息收集\",\"fpb0rX\":\"参与者信息已从订单复制\",\"94aQMU\":\"参与者信息\",\"KkrBiR\":\"参与者信息收集\",\"sjPjOg\":\"Attendee notes\",\"cosfD8\":\"参与者状态\",\"D2qlBU\":\"与会者已更新\",\"22BOve\":\"参与者更新成功\",\"x8Vnvf\":\"参与者的票不包含在此列表中\",\"/Ywywr\":\"attendees\",\"zLRobu\":\"attendees checked in\",\"k3Tngl\":\"与会者已导出\",\"UoIRW8\":\"已注册参会者\",\"5UbY+B\":\"持有特定门票的与会者\",\"4HVzhV\":\"参与者:\",\"HVkhy2\":\"归因分析\",\"dMMjeD\":\"归因细分\",\"1oPDuj\":\"归因值\",\"DBHTm/\":\"August\",\"JgREph\":\"自动提供已启用\",\"V7Tejz\":\"自动处理候补名单\",\"PZ7FTW\":\"根据背景颜色自动检测,但可以手动覆盖\",\"zlnTuI\":\"当容量可用时自动向下一个人提供门票。如果禁用,您可以从等候名单页面手动处理等候名单。\",\"csDS2L\":\"可用\",\"Xp+ywP\":\"付款完成后可用\",\"dwDH1K\":[\"Available times on \",[\"dayName\"]],\"clF06r\":\"可退款\",\"NB5+UG\":\"可用令牌\",\"L+wGOG\":\"Awaiting\",\"qcw2OD\":\"Awaiting pay\",\"kNmmvE\":\"精彩活动有限公司\",\"TeSaQO\":\"返回账户\",\"kYqM1A\":\"返回活动\",\"s5QRF3\":\"返回消息\",\"td/bh+\":\"返回报告\",\"nsm7BA\":\"返回搜索\",\"imjKVx\":\"Bank account connected\",\"D9LTCH\":\"Base Price\",\"hviJef\":\"Based on the global sale period above, not per date\",\"jIPNJG\":\"基本信息\",\"UabgBd\":\"正文是必需的\",\"HWXuQK\":\"收藏此页面,随时管理您的订单。\",\"CUKVDt\":\"使用自定义徽标、颜色和页脚信息打造您的门票品牌。\",\"4BZj5p\":\"Built-in fraud protection\",\"cr7kGH\":\"Bulk Edit\",\"1Fbd6n\":\"Bulk Edit Dates\",\"Eq6Tu9\":\"Bulk update failed.\",\"9N+p+g\":\"商务\",\"SWnN1L\":\"Business address\",\"kQekXw\":\"Business name\",\"bv6RXK\":\"按钮标签\",\"ChDLlO\":\"按钮文字\",\"BUe8Wj\":\"买家支付\",\"qF1qbA\":\"买家看到的是净价。平台费用将从您的付款中扣除。\",\"dg05rc\":\"通过添加跟踪像素,您确认您和本平台是所收集数据的共同控制者。您有责任确保根据适用的隐私法律(GDPR、CCPA等)拥有合法的处理依据。\",\"DFqasq\":[\"继续操作即表示您同意<0>\",[\"0\"],\"服务条款\"],\"wVSa+U\":\"By day of month\",\"0MnNgi\":\"By day of week\",\"CetOZE\":\"By ticket type\",\"lFdbRS\":\"绕过应用费用\",\"AjVXBS\":\"Calendar\",\"2VLZwd\":\"行动号召按钮\",\"rT2cV+\":\"Camera\",\"7hYa9y\":\"Camera permission was denied. <0>Request permission again, or grant this page camera access in your browser settings.\",\"D02dD9\":\"活动\",\"RRPA79\":\"Can't check in\",\"OcVwAd\":[\"Cancel \",[\"count\"],\" date(s)\"],\"H4nE+E\":\"取消所有产品并释放回可用池\",\"Py78q9\":\"Cancel Date\",\"tOXAdc\":\"取消将取消与此订单关联的所有参与者,并将门票释放回可用池。\",\"FPpqc7\":[\"Cancelling \",[\"0\"],\" date(s). This may take a moment to complete.\"],\"01sEfm\":\"无法删除系统默认配置\",\"VsM1HH\":\"容量分配\",\"9bIMVF\":\"Capacity management\",\"H7K8og\":\"Capacity must be 0 or greater\",\"nzao08\":\"capacity updates\",\"4cp9NP\":\"Capacity Used\",\"K7tIrx\":\"类别\",\"DRK3Bq\":\"Category deleted successfully\",\"o+XJ9D\":\"更改\",\"kJkjoB\":\"Change duration\",\"J0KExZ\":\"Change the attendee limit\",\"ssospy\":\"Change time\",\"CIHJJf\":\"更改等候名单设置\",\"B5icLR\":[\"Changed duration for \",[\"count\"],\" date(s)\"],\"Kb+0BT\":\"Charges\",\"2tbLdK\":\"慈善\",\"BPWGKn\":\"Check in\",\"6uFFoY\":\"Check out\",\"FjAlwK\":[\"Check out this event: \",[\"0\"]],\"v4fiSg\":\"查看您的邮箱\",\"51AsAN\":\"请检查您的收件箱!如果此邮箱有关联的票,您将收到查看链接。\",\"Y3FYXy\":\"Check-In\",\"udRwQs\":\"签到已创建\",\"F4SRy3\":\"签到已删除\",\"as6XfO\":[\"Check-in for \",[\"0\"],\" was undone\"],\"9s/wrQ\":\"Check-in history\",\"Wwztk4\":\"Check-In List\",\"9gPPUY\":\"签到列表已创建!\",\"dwjiJt\":\"Check-in list info\",\"7od0PV\":\"check-in lists\",\"f2vU9t\":\"签到列表\",\"XprdTn\":\"Check-in navigation\",\"5tV1in\":\"Check-in progress\",\"SHJwyq\":\"签到率\",\"qCqdg6\":\"签到状态\",\"cKj6OE\":\"签到摘要\",\"7B5M35\":\"签到\",\"VrmydS\":\"Checked in\",\"DM4gBB\":\"中文(繁体)\",\"p8Jvp4\":\"Choose a configuration\",\"ElShBO\":\"Choose a different action\",\"pHEhf+\":\"选择与您的品牌相符的字体。字体通过 Bunny Fonts 自托管。\",\"Zok1Gx\":\"Choose an organizer\",\"pkk46Q\":\"选择一个组织者\",\"Ag32+c\":\"Choose another date\",\"Crr3pG\":\"选择日历\",\"Z38ZJu\":\"选择活动日期在票券上的显示方式\",\"LAW8Vb\":\"为新活动选择默认设置。这可以针对单个活动进行覆盖。\",\"pjp2n5\":\"选择谁支付平台费用。这不会影响您在账户设置中配置的额外费用。\",\"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\":\"点击查看备注\",\"RG3szS\":\"关闭\",\"RWw9Lg\":\"关闭弹窗\",\"XwdMMg\":\"代码只能包含字母、数字、连字符和下划线\",\"+yMJb7\":\"代码为必填项\",\"m9SD3V\":\"代码至少需要3个字符\",\"V1krgP\":\"代码不能超过20个字符\",\"psqIm5\":\"与您的团队协作,共同创建精彩的活动。\",\"4bUH9i\":\"收集每张购买门票的参与者详情。\",\"TkfG8v\":\"按订单收集信息\",\"96ryID\":\"按门票收集信息\",\"FpsvqB\":\"颜色模式\",\"jEu4bB\":\"列\",\"CWk59I\":\"喜剧\",\"rPA+Gc\":\"通信偏好\",\"zFT5rr\":\"complete\",\"bUQMpb\":\"Complete Stripe setup\",\"744BMm\":\"完成您的订单以确保获得门票。此优惠有时间限制,请尽快完成。\",\"5YrKW7\":\"完成付款以确保您的门票。\",\"xGU92i\":\"完成你的个人资料以加入团队。\",\"QOhkyl\":\"撰写\",\"ih35UP\":\"会议中心\",\"ywFj2D\":\"Configuration\",\"WTw0bB\":\"Configuration assigned\",\"X1zdE7\":\"配置创建成功\",\"mLBUMQ\":\"配置删除成功\",\"UIENhw\":\"配置名称对最终用户可见。固定费用将按当前汇率转换为订单货币。\",\"eeZdaB\":\"配置更新成功\",\"3cKoxx\":\"配置\",\"8v2LRU\":\"配置活动详情、地点、结账选项和电子邮件通知。\",\"raw09+\":\"配置结账时如何收集参与者信息\",\"FI60XC\":\"配置税费\",\"av6ukY\":\"Configure which products are available for this occurrence and optionally adjust pricing.\",\"NGXKG/\":\"确认电子邮件地址\",\"JRQitQ\":\"确认新密码\",\"Auz0Mz\":\"请确认您的邮箱以访问所有功能。\",\"7+grte\":\"确认邮件已发送!请检查您的收件箱。\",\"n/7+7Q\":\"确认已发送至\",\"x3wVFc\":\"恭喜!您的活动现已对公众可见。\",\"0W2NQP\":\"Connect bank\",\"/K4Vqr\":\"连接 Stripe 以接受付款\",\"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\":\"线上活动必须填写连接详情\",\"jfC/xh\":\"联系\",\"LOFgda\":[\"联系 \",[\"0\"]],\"41BQ3k\":\"联系邮箱\",\"m8WD6t\":\"继续设置\",\"0GwUT4\":\"继续结账\",\"sBV87H\":\"继续创建活动\",\"nKtyYu\":\"继续下一步\",\"F3/nus\":\"继续付款\",\"s30OcA\":\"控制活动页面上日期和时间的显示方式\",\"p2FRHj\":\"控制此活动的平台费用如何处理\",\"NqfabH\":\"Control who gets in for this date\",\"fmYxZx\":\"Control who gets in, and when\",\"1JnTgU\":\"从上方复制\",\"FxVG/l\":\"已复制到剪贴板\",\"PiH3UR\":\"已复制!\",\"4i7smN\":\"Copy account ID\",\"uUPbPg\":\"复制推广链接\",\"iVm46+\":\"复制代码\",\"cF2ICc\":\"复制客户链接\",\"+2ZJ7N\":\"将详情复制到第一位参与者\",\"ZN1WLO\":\"复制邮箱\",\"y1eoq1\":\"复制链接\",\"tUGbi8\":\"复制我的信息到:\",\"y22tv0\":\"复制此链接,在任意位置分享\",\"/4gGIX\":\"复制到剪贴板\",\"e0f4yB\":\"无法删除地点\",\"vkiDx2\":\"Could not prepare the bulk update.\",\"KOavaU\":\"无法获取地址详情\",\"/lq4oO\":\"Could not save date\",\"mHu0az\":\"Couldn't send verification email. Please try again.\",\"QOIm+S\":\"统计包含所有即将到来的日期。每人将获得其所选日期的名额。\",\"P0rbCt\":\"封面图像\",\"p4kqHr\":\"Cover image added\",\"60u+dQ\":\"封面图片将显示在活动页面顶部\",\"2NLjA6\":\"封面图像将显示在您的组织者页面顶部\",\"GkrqoY\":\"Covers every ticket\",\"zg4oSu\":[\"创建\",[\"0\"],\"模板\"],\"RKKhnW\":\"创建自定义小部件以在您的网站上销售门票。\",\"6sk7PP\":\"Create a fixed number\",\"jqhTmw\":\"Create a list for this date\",\"PhioFp\":\"Create a new check-in list for an active session, or contact the organizer if you think this is a mistake.\",\"yIRev4\":\"创建密码\",\"j7xZ7J\":\"创建额外的主办方来管理一个账户下的独立品牌、部门或活动系列。每个主办方拥有自己的活动、设置和公开页面。\",\"xfKgwv\":\"创建推广员\",\"tudG8q\":\"创建并配置待售门票和商品。\",\"YAl9Hg\":\"创建配置\",\"BTne9e\":\"为此活动创建自定义邮件模板以覆盖组织者默认设置\",\"YIDzi/\":\"创建自定义模板\",\"tsGqx5\":\"Create Date\",\"Nc3l/D\":\"创建折扣、隐藏门票的访问码和特别优惠。\",\"PybJS2\":\"Create event\",\"eWEV9G\":\"创建新密码\",\"wl2iai\":\"Create Schedule\",\"8AiKIu\":\"创建门票或产品\",\"/HGmW9\":\"创建可追踪链接以奖励推广您活动的合作伙伴。\",\"dkAPxi\":\"创建 Webhook\",\"5slqwZ\":\"创建您的活动\",\"JQNMrj\":\"创建您的第一个活动\",\"CCjxOC\":\"创建您的第一个活动以开始售票并管理参与者。\",\"ZCSSd+\":\"创建您自己的活动\",\"67NsZP\":\"正在创建活动...\",\"H34qcM\":\"正在创建主办方...\",\"1YMS+X\":\"正在创建您的活动,请稍候\",\"yiy8Jt\":\"正在创建您的主办方资料,请稍候\",\"lfLHNz\":\"CTA标签是必需的\",\"0xLR6W\":\"Currently assigned\",\"iTvh6I\":\"当前可购买\",\"A42Dqn\":\"Custom branding\",\"Guo0lU\":\"自定义日期和时间\",\"WDMdn8\":\"Custom questions\",\"O6mra8\":\"自定义问题\",\"axv/Mi\":\"自定义模板\",\"2YeVGY\":\"客户链接已复制到剪贴板\",\"QMHSMS\":\"客户将收到确认退款的电子邮件\",\"NihQNk\":\"客户\",\"hINN++\":\"Customize page\",\"7gsjkI\":\"使用Liquid模板自定义发送给客户的邮件。这些模板将用作您组织中所有活动的默认模板。\",\"xJaTUK\":\"自定义活动主页的布局、颜色和品牌。\",\"MXZfGN\":\"自定义结账时提出的问题,以从参与者那里收集重要信息。\",\"iX6SLo\":\"自定义“继续”按钮上显示的文本\",\"pxNIxa\":\"使用Liquid模板自定义您的邮件模板\",\"3trPKm\":\"自定义主办方页面外观\",\"U0sC6H\":\"Daily\",\"/gWrVZ\":\"所有活动的每日收入、税费和退款\",\"zgCHnE\":\"每日销售报告\",\"nHm0AI\":\"每日销售、税费和费用明细\",\"1aPnDT\":\"Dance\",\"pvnfJD\":\"深色\",\"MaB9wW\":\"Date Cancellation\",\"e6cAxJ\":\"Date cancelled\",\"81jBnC\":\"Date cancelled successfully\",\"a/C/6R\":\"Date created successfully\",\"IW7Q+u\":\"Date deleted\",\"rngCAz\":\"Date deleted successfully\",\"vHbfoQ\":\"Date reactivated\",\"hvah+S\":\"Date reopened for new sales\",\"Ez0YsD\":\"Date updated successfully\",\"Te33mU\":\"Dates are managed per occurrence\",\"91zCxb\":\"Dates with sessions\",\"/ITcnz\":\"day\",\"H7OUPr\":\"Day\",\"JtHrX9\":\"Day of Month\",\"J/Upwb\":\"days\",\"vDVA2I\":\"Days of Month\",\"rDLvlL\":\"Days of Week\",\"r6zgGo\":\"December\",\"jbq7j2\":\"拒绝\",\"ovBPCi\":\"默认\",\"JtI4vj\":\"默认参与者信息收集\",\"ULjv90\":\"Default capacity per date\",\"3R/Tu2\":\"默认费用处理\",\"1bZAZA\":\"将使用默认模板\",\"HNlEFZ\":\"删除\",\"KpnwJK\":[\"删除\\\"\",[\"0\"],\"\\\"?\"],\"BlII4o\":[\"Delete \",[\"count\"],\" selected date(s)? Dates with orders will be skipped. This cannot be undone.\"],\"vu7gDm\":\"删除推广员\",\"KZN4Lc\":\"全部删除\",\"6EkaOO\":\"Delete Date\",\"io0G93\":\"删除活动\",\"+jw/c1\":\"删除图片\",\"hdyeZ0\":\"删除任务\",\"xxjZeP\":\"删除地点\",\"sY3tIw\":\"删除主办方\",\"UBv8UK\":\"Delete Permanently\",\"dPyJ15\":\"删除模板\",\"IQTR34\":\"Delete this category? Any products in it will also be deleted. This cannot be undone.\",\"/1wMxk\":\"Delete this product? This cannot be undone.\",\"mxsm1o\":\"删除此问题?此操作无法撤销。\",\"snMaH4\":\"删除 Webhook\",\"LIZZLY\":[\"Deleted \",[\"0\"],\" date(s)\"],\"7w0Wev\":\"Description and venue added\",\"vYgeDk\":\"取消全选\",\"NvuEhl\":\"设计元素\",\"H8kMHT\":\"没有收到验证码?\",\"G8KNgd\":\"Different location\",\"E/QGRL\":\"Disabled\",\"OdPOhy\":\"Discord\",\"nZJ8tu\":\"Dismiss setup checklist\",\"QotGhf\":\"关闭此消息\",\"BREO0S\":\"显示一个复选框,允许客户选择接收此活动组织者的营销通讯。\",\"HtaSQp\":\"在门票组件中显示每个日期的剩余名额。您可以为单个日期单独设置。\",\"pfa8F0\":\"显示名称\",\"Kdpf90\":\"别忘了!\",\"352VU2\":\"还没有账户?<0>注册\",\"AXXqG+\":\"捐赠\",\"DPfwMq\":\"完成\",\"JoPiZ2\":\"Door staff instructions\",\"2+O9st\":\"下载所有已完成订单的销售、参与者和财务报告。\",\"eneWvv\":\"草稿\",\"Ts8hhq\":\"由于垃圾邮件的高风险,您必须连接Stripe账户才能修改电子邮件模板。这是为了确保所有活动组织者都经过验证和负责。\",\"TnzbL+\":\"由于垃圾邮件风险较高,您必须连接Stripe账户才能向参与者发送消息。\\n这是为了确保所有活动组织者都经过验证并承担责任。\",\"euc6Ns\":\"复制\",\"YueC+F\":\"Duplicate Date\",\"KRmTkx\":\"复制产品\",\"Jd3ymG\":\"Duration must be at least 1 minute.\",\"KIjvtr\":\"荷兰语\",\"22xieU\":\"例如 180(3小时)\",\"/zajIE\":\"e.g. Morning Session\",\"SPKbfM\":\"例如:获取门票,立即注册\",\"fc7wGW\":\"例如,关于您门票的重要更新\",\"54MPqC\":\"例如,标准版、高级版、企业版\",\"3RQ81z\":\"每个人将收到一封包含预留名额的电子邮件,以完成购买。\",\"Xfsjel\":\"每个商品\",\"5oD9f/\":\"Earlier\",\"LTzmgK\":[\"编辑\",[\"0\"],\"模板\"],\"v4+lcZ\":\"编辑推广员\",\"2iZEz7\":\"编辑答案\",\"t2bbp8\":\"编辑参与者\",\"etaWtB\":\"编辑参与者详情\",\"+guao5\":\"编辑配置\",\"1Mp/A4\":\"Edit Date\",\"m0ZqOT\":\"编辑地点\",\"8oivFT\":\"编辑地点\",\"vRWOrM\":\"编辑订单详情\",\"fW5sSv\":\"编辑 Webhook\",\"nP7CdQ\":\"编辑 Webhook\",\"MRZxAn\":\"Edited\",\"uBAxNB\":\"编辑器\",\"aqxYLv\":\"教育\",\"iiWXDL\":\"资格失败\",\"zPiC+q\":\"符合条件的签到列表\",\"SiVstt\":\"Email & scheduled messages\",\"V2sk3H\":\"电子邮件和模板\",\"hbwCKE\":\"邮箱地址已复制到剪贴板\",\"dSyJj6\":\"电子邮件地址不匹配\",\"elW7Tn\":\"邮件正文\",\"ZsZeV2\":\"邮箱为必填项\",\"Be4gD+\":\"邮件预览\",\"6IwNUc\":\"邮件模板\",\"H/UMUG\":\"需要验证邮箱\",\"PLEl94\":\"Email verified\",\"L86zy2\":\"邮箱验证成功!\",\"FSN4TS\":\"嵌入小部件\",\"z9NkYY\":\"Embeddable widget\",\"Qj0GKe\":\"启用参与者自助服务\",\"hEtQsg\":\"默认启用参与者自助服务\",\"Upeg/u\":\"启用此模板发送邮件\",\"7dSOhU\":\"启用候补名单\",\"RxzN1M\":\"已启用\",\"xDr/ct\":\"End\",\"sGjBEq\":\"结束日期和时间(可选)\",\"PKXt9R\":\"结束日期必须在开始日期之后\",\"ZayGC7\":\"End on a date\",\"48Y16Q\":\"结束时间(可选)\",\"TbaYrr\":[\"Ended \",[\"0\"]],\"CFgwiw\":[\"Ends \",[\"0\"]],\"SqOIQU\":\"Enter a capacity value or choose unlimited.\",\"h37gRz\":\"Enter a label or choose to remove it.\",\"7YZofi\":\"输入主题和正文以查看预览\",\"khyScF\":\"Enter a time to shift by.\",\"SKx/0u\":\"请输入场地名称或地址\",\"ppwojw\":\"线下活动请输入场地名称或地址\",\"j+eCIq\":\"手动输入地址\",\"3bR1r4\":\"输入推广员邮箱(可选)\",\"ARkzso\":\"输入推广员姓名\",\"ej4L8b\":\"Enter capacity\",\"6KnyG0\":\"输入电子邮件\",\"INDKM9\":\"输入邮件主题...\",\"xUgUTh\":\"输入名字\",\"9/1YKL\":\"输入姓氏\",\"VpwcSk\":\"输入新密码\",\"kWg31j\":\"输入唯一推广码\",\"C3nD/1\":\"输入您的电子邮箱\",\"VmXiz4\":\"输入您的电子邮件,我们将向您发送重置密码的说明。\",\"n9V+ps\":\"输入您的姓名\",\"IdULhL\":\"输入您的增值税号,包括国家代码,不带空格(例如,IE1234567A,DE123456789)\",\"RRlWVA\":\"整个订单\",\"o21Y+P\":\"entries\",\"X88/6w\":\"当客户加入已售罄产品的候补名单时,条目将显示在此处。\",\"LslKhj\":\"加载日志时出错\",\"VCNHvW\":\"活动已归档\",\"ZD0XSb\":\"活动已成功归档\",\"WgD6rb\":\"活动类别\",\"b46pt5\":\"活动封面图片\",\"NAUIJ7\":\"Event created\",\"1b77ID\":\"活动已创建\",\"1Hzev4\":\"活动自定义模板\",\"+v+GW0\":\"活动日期显示\",\"7u9/DO\":\"活动已成功删除\",\"imgKgl\":\"活动描述\",\"IzR/Fc\":\"Event lifetime\",\"PYs3rP\":\"活动名称\",\"HhwcTQ\":\"活动名称\",\"WZZzB6\":\"活动名称为必填项\",\"Wd5CDM\":\"活动名称应少于150个字符\",\"4JzCvP\":\"活动不可用\",\"mImacG\":\"活动页面\",\"Hk9Ki/\":\"活动已成功恢复\",\"JyD0LH\":\"活动设置\",\"XVLu2v\":\"活动标题\",\"OfmsI9\":\"活动太新\",\"4SILkp\":\"Event totals\",\"YDVUVl\":\"事件类型\",\"+HeiVx\":\"活动已更新\",\"19j6uh\":\"活动表现\",\"PC3/fk\":\"未来24小时内开始的活动\",\"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\":\"每个邮件模板都必须包含一个链接到相应页面的行动号召按钮\",\"BVinvJ\":\"示例:\\\"您是如何了解我们的?\\\"、\\\"发票公司名称\\\"\",\"2hGPQG\":\"示例:\\\"T恤尺码\\\"、\\\"餐饮偏好\\\"、\\\"职位\\\"\",\"qNuTh3\":\"异常\",\"M1RnFv\":\"已过期\",\"kF8HQ7\":\"导出答案\",\"2KAI4N\":\"导出CSV\",\"JKfSAv\":\"导出失败。请重试。\",\"SVOEsu\":\"导出已开始。正在准备文件...\",\"wuyaZh\":\"导出成功\",\"9bpUSo\":\"正在导出推广员\",\"jtrqH9\":\"正在导出与会者\",\"R4Oqr8\":\"导出完成。正在下载文件...\",\"UlAK8E\":\"正在导出订单\",\"DwuoH0\":\"Facebook\",\"7Bj3x9\":\"失败\",\"8uOlgz\":\"失败时间\",\"tKcbYd\":\"失败任务\",\"SsI9v/\":\"放弃订单失败。请重试。\",\"LdPKPR\":\"配置分配失败\",\"PO0cfn\":\"Failed to cancel date\",\"YUX+f+\":\"Failed to cancel dates\",\"SIHgVQ\":\"取消消息失败\",\"cEFg3R\":\"创建推广员失败\",\"dVgNF1\":\"配置创建失败\",\"fAoRRJ\":\"Failed to create schedule\",\"U66oUa\":\"创建模板失败\",\"aFk48v\":\"配置删除失败\",\"n1CYMH\":\"Failed to delete date\",\"KXv+Qn\":\"Failed to delete date. It may have existing orders.\",\"JJ0uRo\":\"Failed to delete dates\",\"rgoBnv\":\"删除活动失败\",\"Zw6LWb\":\"删除任务失败\",\"tq0abZ\":\"删除任务失败\",\"2mkc3c\":\"删除主办方失败\",\"5E23qd\":\"Failed to delete product. Please try again.\",\"vKMKnu\":\"删除问题失败\",\"xFj7Yj\":\"删除模板失败\",\"jo3Gm6\":\"导出推广员失败\",\"Jjw03p\":\"导出与会者失败\",\"ZPwFnN\":\"导出订单失败\",\"zGE3CH\":\"导出报告失败。请重试。\",\"lS9/aZ\":\"加载收件人失败\",\"X4o0MX\":\"加载 Webhook 失败\",\"ETcU7q\":\"提供名额失败\",\"5670b9\":\"提供票券失败\",\"e5KIbI\":\"Failed to reactivate date\",\"7zyx8a\":\"从等候名单中移除失败\",\"A/P7PX\":\"Failed to remove override\",\"ogWc1z\":\"Failed to reopen date\",\"0+iwE5\":\"重新排序问题失败\",\"EJPAcd\":\"重新发送订单确认失败\",\"DjSbj3\":\"重新发送门票失败\",\"YQ3QSS\":\"重新发送验证码失败\",\"wDioLj\":\"重试任务失败\",\"DKYTWG\":\"重试任务失败\",\"WRREqF\":\"Failed to save override\",\"sj/eZA\":\"Failed to save price override\",\"780n8A\":\"Failed to save product settings\",\"zTkTF3\":\"保存模板失败\",\"l6acRV\":\"保存增值税设置失败。请重试。\",\"T6B2gk\":\"发送消息失败。请重试。\",\"lKh069\":\"无法启动导出任务\",\"t/KVOk\":\"无法开始模拟。请重试。\",\"QXgjH0\":\"无法停止模拟。请重试。\",\"i0QKrm\":\"更新推广员失败\",\"NNc33d\":\"更新答案失败。\",\"E9jY+o\":\"更新参与者失败\",\"uQynyf\":\"配置更新失败\",\"i2PFQJ\":\"更新活动状态失败\",\"EhlbcI\":\"更新消息级别失败\",\"rpGMzC\":\"更新订单失败\",\"T2aCOV\":\"更新主办方状态失败\",\"Eeo/Gy\":\"更新设置失败\",\"kqA9lY\":\"增值税设置更新失败\",\"7/9RFs\":\"上传图片失败。\",\"nkNfWu\":\"上传图片失败。请重试。\",\"rxy0tG\":\"验证邮箱失败\",\"QRUpCk\":\"Family\",\"5LO38w\":\"Fast payouts to your bank\",\"4lgLew\":\"February\",\"9bHCo2\":\"费用货币\",\"/sV91a\":\"费用处理\",\"K4dKSP\":\"Fee override saved\",\"LyUWXA\":\"费用已绕过\",\"cf35MA\":\"节日\",\"pAey+4\":\"文件太大。最大大小为5MB。\",\"VejKUM\":\"请先在上方填写您的详细信息\",\"/n6q8B\":\"Film\",\"L1qbUx\":\"Filter attendees\",\"8OvVZZ\":\"筛选参与者\",\"N/H3++\":\"Filter by date\",\"mvrlBO\":\"按活动筛选\",\"g+xRXP\":\"Finish setting up Stripe\",\"LHH461\":\"Finish setup\",\"syyeb9\":\"First\",\"Vj6wk9\":\"First 30 days\",\"/bpZYb\":\"First 7 days\",\"ziEnjY\":\"First 90 days\",\"1vBhpG\":\"第一位参与者\",\"4pwejF\":\"名字为必填项\",\"rVogsf\":\"请先解决问题再发布\",\"3lkYdQ\":\"Fixed fee\",\"6bBh3/\":\"固定费用\",\"zWqUyJ\":\"每笔交易收取的固定费用\",\"LWL3Bs\":\"固定费用必须为0或更大\",\"0RI8m4\":\"Flash off\",\"q0923e\":\"Flash on\",\"X+U6/w\":\"字体\",\"lWxAUo\":\"美食美酒\",\"nFm+5u\":\"页脚文字\",\"a8nooQ\":\"Fourth\",\"wtuVU4\":\"Frequency\",\"xVhQZV\":\"Fri\",\"39y5bn\":\"Friday\",\"f5UbZ0\":\"Full data ownership\",\"cfvx/y\":\"Full event\",\"MY2SVM\":\"全额退款\",\"PGQLdy\":\"future\",\"8N/j1s\":\"Future dates only\",\"yRx/6K\":\"Future dates will be copied with capacity reset to zero\",\"T02gNN\":\"普通入场\",\"3ep0Gx\":\"您组织者的基本信息\",\"ziAjHi\":\"生成\",\"exy8uo\":\"生成代码\",\"4CETZY\":\"获取路线\",\"pjkEcB\":\"Get Paid\",\"lGYzP6\":\"Get paid with Stripe\",\"ZDIydz\":\"开始使用\",\"u6FPxT\":\"获取门票\",\"8KDgYV\":\"准备好您的活动\",\"RkXlPZ\":\"GitHub\",\"sr0UJD\":\"Go Back\",\"oNL5vN\":\"前往活动页面\",\"gHSuV/\":\"返回主页\",\"8+Cj55\":\"Go to Schedule\",\"6nDzTl\":\"良好的可读性\",\"76gPWk\":\"Got it\",\"CZXzs4\":\"希腊语\",\"aGWZUr\":\"总收入\",\"n8IUs7\":\"总收入\",\"O1wAlQ\":\"Guest\",\"LIYoRQ\":\"来宾管理\",\"NUsTc4\":\"Happening now\",\"kTSQej\":[\"您好 \",[\"0\"],\",从这里管理您的平台。\"],\"dORAcs\":\"以下是与您邮箱关联的所有票。\",\"g+2103\":\"这是您的推广链接\",\"bVsnqU\":\"Hi,\",\"/iE8xx\":\"Hi.Events 费用\",\"zppscQ\":\"Hi.Events 平台费用和每笔交易的增值税明细\",\"D+zLDD\":\"隐藏\",\"DRErHC\":\"对参与者隐藏 - 仅组织者可见\",\"NNnsM0\":\"隐藏高级选项\",\"P+5Pbo\":\"隐藏答案\",\"VMlRqi\":\"Hide details\",\"FmogyU\":\"隐藏选项\",\"uXNYjR\":\"隐藏已售罄的日期和时间\",\"g9RcYX\":\"隐藏日期\",\"uMwTx7\":\"隐藏此类别?\",\"gtEbeW\":\"突出显示\",\"NF8sdv\":\"突出显示消息\",\"MXSqmS\":\"突出显示此产品\",\"7ER2sc\":\"已突出显示\",\"sq7vjE\":\"突出显示的产品将具有不同的背景色,使其在活动页面上脱颖而出。\",\"1+WSY1\":\"Hobbies\",\"yY8wAv\":\"Hours\",\"49Tkiw\":\"折扣如何应用?\",\"sy9anN\":\"客户收到报价后完成购买的时限。留空表示无时间限制。\",\"n2ilNh\":\"How long does the schedule run?\",\"DMr2XN\":\"How often?\",\"cceMns\":\"How VAT is applied to the platform fees we charge you.\",\"FONsLE\":\"https://awesome-events.com\",\"htoh8N\":\"https://webhook-domain.com/webhook\",\"mkWad2\":\"匈牙利语\",\"8Wgd41\":\"我确认我作为数据控制者的责任\",\"O8m7VA\":\"我同意接收与此活动相关的电子邮件通知\",\"YLgdk5\":\"我确认这是与此活动相关的交易消息\",\"4/kP5a\":\"如果没有自动打开新标签页,请点击下方按钮继续结账。\",\"W/eN+G\":\"如果为空,地址将用于生成 Google 地图链接\",\"CY3yHL\":\"如果选中,此类别将对公众隐藏。\",\"iIEaNB\":\"如果您在我们这里有账户,您将收到一封包含如何重置密码说明的电子邮件。\",\"an5hVd\":\"图片\",\"tSVr6t\":\"模拟\",\"TWXU0c\":\"模拟用户\",\"5LAZwq\":\"模拟已开始\",\"IMwcdR\":\"模拟已停止\",\"0I0Hac\":\"重要通知\",\"yD3avI\":\"重要提示:更改您的电子邮件地址将更新访问此订单的链接。保存后,您将被重定向到新的订单链接。\",\"jT142F\":[[\"diffHours\"],\"小时后\"],\"OoSyqO\":[[\"diffMinutes\"],\"分钟后\"],\"PdMhEx\":[\"in last \",[\"0\"],\" min\"],\"u7r0G5\":\"In person — set a venue\",\"/LCAwL\":\"进行中\",\"F1Xp97\":\"个人与会者\",\"85e6zs\":\"插入Liquid令牌\",\"CTWsuc\":\"Instagram\",\"VopR6B\":\"Instant Stripe payouts\",\"nbfdhU\":\"集成\",\"I8eJ6/\":\"Internal notes on the attendee's ticket\",\"B2Tpo0\":\"无效邮箱\",\"5tT0+u\":\"邮箱格式无效\",\"f9WRpE\":\"无效的文件类型。请上传图片。\",\"tnL+GP\":\"无效的Liquid语法。请更正后再试。\",\"N9JsFT\":\"无效的增值税号格式\",\"g+lLS9\":\"邀请团队成员\",\"1z26sk\":\"邀请团队成员\",\"KR0679\":\"邀请团队成员\",\"aH6ZIb\":\"邀请您的团队\",\"Dn4OyV\":\"已邀请\",\"IuMGvq\":\"发票\",\"a/bUcL\":\"It happens on more than one date\",\"d+Oe9r\":\"It may have been unpublished or removed. Please check the link and try again.\",\"Lj7sBL\":\"意大利语\",\"F5/CBH\":\"项\",\"BzfzPK\":\"项目\",\"rjyWPb\":\"January\",\"KmWyx0\":\"任务\",\"o5r6b2\":\"任务已删除\",\"cd0jIM\":\"任务详情\",\"ruJO57\":\"任务名称\",\"YZi+Hu\":\"任务已排队等待重试\",\"nCywLA\":\"随时随地加入\",\"SNzppu\":\"加入候补名单\",\"dLouFI\":[\"加入\",[\"productDisplayName\"],\"的等候名单\"],\"2gMuHR\":\"已加入\",\"u4ex5r\":\"July\",\"zeEQd/\":\"June\",\"MxjCqk\":\"只是在找您的票?\",\"xOTzt5\":\"just now\",\"0RihU9\":\"Just wrapped\",\"lB2hSG\":[\"及时向我更新来自\",[\"0\"],\"的新闻和活动\"],\"ioFA9i\":\"Keep the profit.\",\"o66QSP\":\"label updates\",\"RtKKbA\":\"Last\",\"DruLRc\":\"过去14天\",\"ve9JTU\":\"姓氏为必填项\",\"h0Q9Iw\":\"最新响应\",\"gw3Ur5\":\"最近触发\",\"FIq1Ba\":\"Later\",\"xvnLMP\":\"Latest check-ins\",\"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\":\"浅色\",\"1qY5Ue\":\"链接已过期或无效\",\"gggTBm\":\"LinkedIn\",\"nvOPBA\":\"允许链接\",\"2BBAbc\":\"List\",\"dF6vP6\":\"上线\",\"fpMs2Z\":\"直播\",\"D9zTjx\":\"直播活动\",\"C33p4q\":\"Loaded dates\",\"WdmJIX\":\"加载预览中...\",\"IoDI2o\":\"加载令牌中...\",\"G3Ge9Z\":\"正在加载Webhook日志...\",\"NFxlHW\":\"正在加载 Webhook\",\"E0DoRM\":\"地点已删除\",\"7w8lJU\":\"地点已保存\",\"YsRXDD\":\"地点已更新\",\"A/kIva\":\"location updates\",\"iyZPPR\":\"个地点\",\"VppBoU\":\"地点\",\"iG7KNr\":\"标志\",\"vu7ZGG\":\"标志和封面\",\"gddQe0\":\"您的组织者的标志和封面图像\",\"TBEnp1\":\"标志将显示在页面头部\",\"Jzu30R\":\"标志将显示在票券上\",\"PSRm6/\":\"查找我的门票\",\"yJFu/X\":\"总部办公室\",\"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\":\"管理活动的等候名单,查看统计数据,并向参与者提供门票。\",\"g2npA5\":\"手动提供\",\"hg6l4j\":\"March\",\"pqRBOz\":\"Mark as validated (admin override)\",\"2L3vle\":\"最大消息数 / 24小时\",\"Qp4HWD\":\"最大收件人数 / 消息\",\"3JzsDb\":\"May\",\"agPptk\":\"媒介\",\"xDAtGP\":\"消息\",\"bECJqy\":\"消息批准成功\",\"1jRD0v\":\"向与会者发送特定门票的信息\",\"uQLXbS\":\"消息已取消\",\"48rf3i\":\"消息不能超过5000个字符\",\"ZPj0Q8\":\"消息详情\",\"Vjat/X\":\"消息为必填项\",\"0/yJtP\":\"向具有特定产品的订单所有者发送消息\",\"saG4At\":\"消息已定时\",\"mFdA+i\":\"消息级别\",\"v7xKtM\":\"消息级别更新成功\",\"H9HlDe\":\"分钟\",\"agRWc1\":\"Minutes\",\"zz/Wd/\":\"Mode\",\"fpMgHS\":\"Mon\",\"hty0d5\":\"Monday\",\"JbIgPz\":\"货币金额是所有货币的大致总和\",\"qvF+MT\":\"监控和管理失败的后台任务\",\"kY2ll9\":\"month\",\"HajiZl\":\"月\",\"+8Nek/\":\"Monthly\",\"1LkxnU\":\"Monthly Pattern\",\"6jefe3\":\"months\",\"f8jrkd\":\"more\",\"JcD7qf\":\"More actions\",\"w36OkR\":\"最多浏览活动(过去14天)\",\"+Y/na7\":\"Move all dates earlier or later\",\"3DIpY0\":\"Multiple locations\",\"g9cQCP\":\"Multiple ticket types\",\"GfaxEk\":\"音乐\",\"oVGCGh\":\"我的票\",\"8/brI5\":\"姓名为必填项\",\"sFFArG\":\"名称长度必须少于255个字符\",\"xxU3NX\":\"净收入\",\"7I8LlL\":\"New capacity\",\"n1GRql\":\"New label\",\"y0Fcpd\":\"新地点\",\"ArHT/C\":\"新注册\",\"uK7xWf\":\"New time:\",\"veT5Br\":\"Next occurrence\",\"WXtl5X\":[\"Next: \",[\"nextFormatted\"]],\"eWRECP\":\"夜生活\",\"HSw5l3\":\"否 - 我是个人或未注册增值税的企业\",\"VHfLAW\":\"无账户\",\"+jIeoh\":\"未找到账户\",\"074+X8\":\"没有活动的 Webhook\",\"zxnup4\":\"没有推广员可显示\",\"Dwf4dR\":\"暂无参与者问题\",\"th7rdT\":\"No attendees to show\",\"PKySlW\":\"No attendees yet for this date.\",\"/UC6qk\":\"未找到归因数据\",\"E2vYsO\":\"No capabilities reported by Stripe yet.\",\"amMkpL\":\"无容量\",\"d2Jf1f\":\"No change\",\"99ntUF\":\"此活动没有可用的签到列表。\",\"wG+knX\":\"No check-ins yet\",\"+dAKxg\":\"未找到配置\",\"LiLk8u\":\"No connections available\",\"eb47T5\":\"未找到所选筛选条件的数据。请尝试调整日期范围或货币。\",\"Zc216S\":\"No date added\",\"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\",\"OtJSnL\":\"未安排日期\",\"gEdNe8\":\"No dates scheduled yet\",\"pZNOT9\":\"无结束日期\",\"dW40Uz\":\"未找到活动\",\"8pQ3NJ\":\"未来24小时内没有开始的活动\",\"8zCZQf\":\"尚无活动\",\"Yc5YW6\":\"没有失败的任务\",\"EpvBAp\":\"无发票\",\"XZkeaI\":\"未找到日志\",\"IcAC6J\":\"没有匹配的字体\",\"nrSs2u\":\"未找到消息\",\"Rj99yx\":\"No occurrences available\",\"IFU1IG\":\"No occurrences on this date\",\"OVFwlg\":\"暂无订单问题\",\"EJ7bVz\":\"未找到订单\",\"NEmyqy\":\"尚无订单\",\"a77B6w\":\"No orders yet for this date.\",\"wUv5xQ\":\"过去14天没有组织者活动\",\"vLd1tV\":\"No organizer context available.\",\"B7w4KY\":\"无其他可用组织者\",\"PChXMe\":\"无付费订单\",\"6jYQGG\":\"没有过去的活动\",\"CHzaTD\":\"过去14天没有热门活动\",\"zK/+ef\":\"没有可供选择的产品\",\"M1/lXs\":\"No products configured for this event.\",\"kY7XDn\":\"没有产品有等候名单条目\",\"8mw4tm\":\"无产品消息\",\"wYiAtV\":\"没有最近的账户注册\",\"UW90md\":\"未找到收件人\",\"QoAi8D\":\"无响应\",\"JeO7SI\":\"无响应\",\"EK/G11\":\"尚无响应\",\"59OWd3\":\"暂无已保存的地点\",\"mPdY6W\":\"没有建议\",\"3sRuiW\":\"未找到票\",\"debCrL\":\"没有可售门票\",\"k2C0ZR\":\"No upcoming dates\",\"yM5c0q\":\"没有即将到来的活动\",\"qpC74J\":\"未找到用户\",\"8wgkoi\":\"过去14天没有浏览的活动\",\"Arzxc1\":\"没有候补名单条目\",\"n5vdm2\":\"此端点尚未记录任何 Webhook 事件。事件触发后将显示在此处。\",\"4GhX3c\":\"没有 Webhooks\",\"4+am6b\":\"否,保留在此\",\"4JVMUi\":\"non-edited\",\"Itw24Q\":\"Not checked in\",\"x5+Lcz\":\"未签到\",\"8n10sz\":\"不符合条件\",\"kLvU3F\":\"Notify attendees and stop sales\",\"t9QlBd\":\"November\",\"kAREMN\":\"Number of dates to create\",\"6u1B3O\":\"Occurrence\",\"mmoE62\":\"Occurrence Cancelled\",\"V9flmL\":\"Occurrence Schedule\",\"Kh3WO8\":\"Occurrence Summary\",\"byXCTu\":\"Occurrences\",\"KATw3p\":\"Occurrences (future only)\",\"85rTR2\":\"Occurrences can be configured after creation\",\"dzQfDY\":\"October\",\"BwJKBw\":\"共\",\"9h7RDh\":\"提供\",\"EfK2O6\":\"提供名额\",\"3sVRey\":\"提供门票\",\"2O7Ybb\":\"报价超时\",\"1jUg5D\":\"已提供\",\"l+/HS6\":[\"报价将在 \",[\"timeoutHours\"],\" 小时后过期。\"],\"6Aih4U\":\"离线\",\"nO3VbP\":[\"销售于\",[\"0\"]],\"oXOSPE\":\"在线\",\"aqmy5k\":\"Online — provide connection details\",\"LuZBbx\":\"Online & in-person\",\"IXuOqt\":\"Online & in-person — see schedule\",\"WjSpu5\":\"在线活动\",\"scPxI/\":[\"仅剩 \",[\"capacity\"],\" 个\"],\"NdOxqr\":\"只有账户管理员可以删除或归档活动。请联系您的账户管理员寻求帮助。\",\"rnoDMF\":\"只有账户管理员可以删除或归档主办方。请联系您的账户管理员寻求帮助。\",\"bU7oUm\":\"仅发送给具有这些状态的订单\",\"wkpaqp\":\"仅显示开始日期和时间\",\"DMk8F0\":\"Only tickets count toward capacity\",\"M2w1ni\":\"仅使用促销代码可见\",\"y8Bm7C\":\"Open check-in\",\"RLz7P+\":\"Open occurrence\",\"cDSdPb\":\"在选择器中显示的可选昵称,例如\\\"总部会议室\\\"\",\"HXMJxH\":\"免责声明、联系信息或感谢说明的可选文本(仅单行)\",\"L565X2\":\"选项\",\"8m9emP\":\"or add a single date\",\"eBskDE\":\"或启用线下付款并停用 Stripe\",\"dSeVIm\":\"order\",\"c/TIyD\":\"订单和门票\",\"H5qWhm\":\"订单已取消\",\"b6+Y+n\":\"订单完成\",\"x4MLWE\":\"订单确认\",\"CsTTH0\":\"订单确认重新发送成功\",\"ppuQR4\":\"订单已创建\",\"xtQzag\":\"Order details\",\"vrSW9M\":\"订单已取消并退款。订单所有者已收到通知。\",\"rzw+wS\":\"订单持有人\",\"oI/hGR\":\"订单ID\",\"RQCXz6\":\"订单限制\",\"SO9AEF\":\"订单限制已设置\",\"vu6Arl\":\"订单标记为已支付\",\"sLbJQz\":\"未找到订单\",\"kvYpYu\":\"未找到订单\",\"eJ8SvM\":\"Order number, purchase date, purchaser email\",\"FaPYw+\":\"订单所有者\",\"eB5vce\":\"具有特定产品的订单所有者\",\"CxLoxM\":\"具有产品的订单所有者\",\"UkHo4c\":\"订单参考\",\"EZy55F\":\"订单已退款\",\"6eSHqs\":\"订单状态\",\"oW5877\":\"订单总额\",\"e7eZuA\":\"订单已更新\",\"1SQRYo\":\"订单更新成功\",\"3NT0Ck\":\"订单已被取消\",\"V5khLm\":\"orders\",\"sd5IMt\":\"已完成订单\",\"5It1cQ\":\"订单已导出\",\"UQ0ACV\":\"订单总额\",\"B/EBQv\":\"订单:\",\"qtGTNu\":\"自然账户\",\"P/JHA4\":\"主办方已成功归档\",\"S3CZ5M\":\"组织者仪表板\",\"GzjTd0\":\"主办方已成功删除\",\"SQqJd8\":\"未找到组织者\",\"HF8Bxa\":\"主办方已成功恢复\",\"wpj63n\":\"组织者设置\",\"o1my93\":\"组织者状态更新失败。请稍后再试\",\"rLHma1\":\"组织者状态已更新\",\"LqBITi\":\"将使用组织者/默认模板\",\"q4zH+l\":\"Organizers\",\"/IX/7x\":\"其他\",\"RsiDDQ\":\"其他列表(不包含此票)\",\"aDfajK\":\"Outdoors\",\"qMASRF\":\"发出的消息\",\"iCOVQO\":\"Override\",\"GpFTEc\":\"Override fees on this organizer\",\"M9ZhMP\":\"Override price\",\"cnVIpl\":\"Override removed\",\"6/dCYd\":\"概览\",\"6WdDG7\":\"页面\",\"8uqsE5\":\"页面不再可用\",\"QkLf4H\":\"页面链接\",\"sF+Xp9\":\"页面浏览量\",\"v4nCHK\":\"Paid\",\"c+suC6\":\"付费账户\",\"5F7SYw\":\"部分退款\",\"fFYotW\":[\"部分退款:\",[\"0\"]],\"i8day5\":\"将费用转嫁给买家\",\"k4FLBQ\":\"转嫁给买家\",\"Ff0Dor\":\"过去\",\"BFjW8X\":\"Past due\",\"xTPjSy\":\"过去的活动\",\"/l/ckQ\":\"粘贴链接\",\"URAE3q\":\"已暂停\",\"4fL/V7\":\"付款\",\"c2/9VE\":\"负载数据\",\"5cxUwd\":\"支付日期\",\"ENEPLY\":\"付款方式\",\"8Lx2X7\":\"已收到付款\",\"fx8BTd\":\"付款不可用\",\"C+ylwF\":\"Payouts\",\"UbRKMZ\":\"Pending\",\"UkM20g\":\"待审核\",\"dPYu1F\":\"每位参与者\",\"mQV/nJ\":\"per min\",\"+kvxv+\":\"每单\",\"VlXNyK\":\"每个订单\",\"NhuGd7\":\"每件商品\",\"hauDFf\":\"每张门票\",\"mnF83a\":\"百分比费用\",\"TNLuRD\":\"Percentage fee (%)\",\"MixU2P\":\"百分比必须在0到100之间\",\"MkuVAZ\":\"交易金额的百分比\",\"/Bh+7r\":\"绩效\",\"fIp56F\":\"永久删除此活动及其所有相关数据。\",\"nJeeX7\":\"永久删除此主办方及其所有活动。\",\"wfCTgK\":\"Permanently remove this date\",\"6kPk3+\":\"个人信息\",\"zmwvG2\":\"电话\",\"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\":\"计划举办活动?\",\"J3lhKT\":\"平台费用\",\"RD51+P\":[\"从您的付款中扣除 \",[\"0\"],\" 的平台费用\"],\"br3Y/y\":\"平台费用\",\"3buiaw\":\"平台费用报告\",\"kv9dM4\":\"平台收入\",\"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\":\"请输入有效的电子邮件地址\",\"jEw0Mr\":\"请输入有效的 URL\",\"n8+Ng/\":\"请输入5位数验证码\",\"r+lQXT\":\"请输入您的增值税号码\",\"Dvq0wf\":\"请提供一张图片。\",\"2cUopP\":\"请重新开始结账流程。\",\"GoXxOA\":\"Please select a date and time\",\"8KmsFa\":\"请选择日期范围\",\"EFq6EG\":\"请选择一张图片。\",\"fuwKpE\":\"请再试一次。\",\"klWBeI\":\"请稍候再请求新的验证码\",\"hfHhaa\":\"请稍候,我们正在准备导出您的推广员...\",\"o+tJN/\":\"请稍候,我们正在准备导出您的与会者...\",\"+5Mlle\":\"请稍候,我们正在准备导出您的订单...\",\"trnWaw\":\"波兰语\",\"luHAJY\":\"热门活动(过去14天)\",\"p/78dY\":\"Position\",\"OESu7I\":\"通过在多种门票类型之间共享库存来防止超卖。\",\"NgVUL2\":\"预览结账表单\",\"cs5muu\":\"预览活动页面\",\"Jm2AC3\":\"Price Tier\",\"a5jvSX\":\"价格层级\",\"ReihZ7\":\"打印预览\",\"JnuPvH\":\"打印门票\",\"tYF4Zq\":\"打印为PDF\",\"LcET2C\":\"隐私政策\",\"8z6Y5D\":\"处理退款\",\"JcejNJ\":\"处理订单中\",\"EWCLpZ\":\"产品已创建\",\"XkFYVB\":\"产品已删除\",\"YMwcbR\":\"产品销售、收入和税费明细\",\"ls0mTC\":\"Product settings cannot be edited for cancelled dates.\",\"2339ej\":\"Product settings saved successfully\",\"ldVIlB\":\"产品已更新\",\"CP3D8G\":\"Progress\",\"JoKGiJ\":\"优惠码\",\"k3wH7i\":\"促销码使用情况及折扣明细\",\"tZqL0q\":\"promo codes\",\"oCHiz3\":\"Promo codes\",\"uEhdRh\":\"仅促销\",\"dLm8V5\":\"促销电子邮件可能导致账户暂停\",\"W0ETyY\":\"请至少填写一个地址字段(场地、街道、城市或国家)。\",\"2W/7Gz\":\"Provide the following before Stripe's next review to keep payouts flowing.\",\"EEYbdt\":\"发布\",\"JcgJKc\":\"仍要发布\",\"evDBV8\":\"发布活动\",\"2zEfOd\":\"Publish your event\",\"L7nrC8\":\"发布后,您的活动页面将公开并开放报名。\",\"dsFmM+\":\"已购买\",\"JunetL\":\"Purchaser\",\"phmeUH\":\"Purchaser email\",\"ywR4ZL\":\"QR code check-in\",\"oWXNE5\":\"数量\",\"biEyJ4\":\"Question answers\",\"k/bJj0\":\"问题已重新排序\",\"b24kPi\":\"队列\",\"lTPqpM\":\"Quick Tip\",\"fqDzSu\":\"费率\",\"mnUGVC\":\"超出速率限制。请稍后再试。\",\"t41hVI\":\"重新提供名额\",\"TNclgc\":\"Reactivate this date? It will be reopened for future sales.\",\"RENQ6j\":\"准备好发布了吗?\",\"uqoRbb\":\"Real-time analytics\",\"xzRvs4\":[\"接收 \",[\"0\"],\" 的产品更新。\"],\"pLXbi8\":\"最近账户注册\",\"M1HGuR\":\"Recent activity\",\"3kJ0gv\":\"Recent Attendees\",\"qhfiwV\":\"Recent check-ins\",\"S+0XMX\":\"Recent orders\",\"Fi3b48\":\"最近订单\",\"7hPBBn\":\"位收件人\",\"jp5bq8\":\"位收件人\",\"yPrbsy\":\"收件人\",\"E1F5Ji\":\"收件人在消息发送后可用\",\"WEYdDv\":\"Recommended\",\"wuhHPE\":\"Recurring\",\"asLqwt\":\"重复活动\",\"s3uzsK\":\"重复活动设置\",\"D0tAMe\":\"Recurring events\",\"JjMIKU\":\"Reddit\",\"HiGkFu\":\"正在重定向到 Stripe...\",\"pnoTN5\":\"推荐账户\",\"ACKu03\":\"刷新预览\",\"vuFYA6\":\"Refund all orders for these dates\",\"4cRUK3\":\"Refund all orders for this date\",\"fKn/k6\":\"退款金额\",\"qY4rpA\":\"退款失败\",\"FaK/8G\":[\"退款订单 \",[\"0\"]],\"MGbi9P\":\"退款处理中\",\"BDSRuX\":[\"已退款:\",[\"0\"]],\"bU4bS1\":\"退款\",\"rYXfOA\":\"区域设置\",\"5tl0Bp\":\"注册问题\",\"ZNo5k1\":\"Remaining\",\"Bjh87R\":\"Remove label from all dates\",\"IVZaEo\":\"从活动页面完全移除已售罄的日期和时间。禁用时,它们仍然可见并标记为已售罄。\",\"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\":\"未找到报告\",\"JEPMXN\":\"请求新链接\",\"TMLAx2\":\"必填\",\"mdeIOH\":\"重新发送验证码\",\"sQxe68\":\"重新发送确认\",\"bxoWpz\":\"重新发送确认邮件\",\"G42SNI\":\"重新发送邮件\",\"TTpXL3\":[[\"resendCooldown\"],\"秒后重新发送\"],\"5CiNPm\":\"重新发送门票\",\"Uwsg2F\":\"已预订\",\"8wUjGl\":\"保留至\",\"a5z8mb\":\"Reset to base price\",\"kCn6wb\":\"正在重置...\",\"ZlCDf+\":\"响应\",\"bsydMp\":\"响应详情\",\"yKu/3Y\":\"恢复\",\"RokrZf\":\"恢复活动\",\"/JyMGh\":\"恢复主办方\",\"HFvFRb\":\"恢复此活动以使其重新可见。\",\"DDIcqy\":\"恢复此主办方并使其重新活跃。\",\"mO8KLE\":\"results\",\"6gRgw8\":\"重试\",\"1BG8ga\":\"全部重试\",\"rDC+T6\":\"重试任务\",\"CbnrWb\":\"返回活动\",\"Lf7TCn\":\"当您创建带地址的活动时,可重复使用的场地会自动出现在这里,您也可以自行添加。\",\"mdQ0zb\":\"可在活动中重复使用的场地。通过自动补全创建的地点会自动保存在这里。\",\"XFOPle\":\"Reuse\",\"1Zehp4\":\"Reuse a Stripe connection from another organizer in this account.\",\"Oo/PLb\":\"收入摘要\",\"CfuueU\":\"撤销报价\",\"RIgKv+\":\"Run until a specific date\",\"dFFW9L\":[\"销售已于\",[\"0\"],\"结束\"],\"loCKGB\":[\"销售于\",[\"0\"],\"结束\"],\"wlfBad\":\"销售期\",\"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\":\"销售期已设置\",\"ftzaMf\":\"销售期、订单限制、可见性\",\"zpekWp\":[\"销售于\",[\"0\"],\"开始\"],\"mUv9U4\":\"销售\",\"9KnRdL\":\"销售已暂停\",\"JC3J0k\":\"Sales, attendance, and check-in breakdown per occurrence\",\"3VnlS9\":\"所有活动的销售、订单和性能指标\",\"3Q1AWe\":\"销售额:\",\"LeuERW\":\"Same as event\",\"B4nE3N\":\"示例票价\",\"8BRPoH\":\"示例场地\",\"PiK6Ld\":\"Sat\",\"+5kO8P\":\"Saturday\",\"zJiuDn\":\"Save fee override\",\"NB8Uxt\":\"Save Schedule\",\"KZrfYJ\":\"保存社交链接\",\"9Y3hAT\":\"保存模板\",\"C8ne4X\":\"保存票券设计\",\"cTI8IK\":\"Save VAT settings\",\"6/TNCd\":\"保存增值税设置\",\"4RvD9q\":\"已保存的地点\",\"cgw0cL\":\"已保存的地点\",\"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\":\"已安排\",\"qcP/8K\":\"定时时间\",\"A1taO8\":\"Search\",\"ftNXma\":\"搜索推广员...\",\"VMU+zM\":\"Search attendees\",\"VY+Bdn\":\"按账户名称或电子邮件搜索...\",\"VX+B3I\":\"按活动标题或主办方搜索...\",\"R0wEyA\":\"按任务名称或异常搜索...\",\"YnMfsK\":\"按名称或地址搜索...\",\"VT+urE\":\"按姓名或电子邮件搜索...\",\"GHdjuo\":\"按姓名、电子邮件或账户搜索...\",\"4mBFO7\":\"Search by name, order #, ticket # or email\",\"20ce0U\":\"按订单ID、客户姓名或电子邮件搜索...\",\"4DSz7Z\":\"按主题、活动或账户搜索...\",\"nQC7Z9\":\"Search dates...\",\"iRtEpV\":\"Search dates…\",\"JRM7ao\":\"Search for an address\",\"BWF1kC\":\"搜索消息...\",\"5WYZKZ\":\"搜索结果\",\"IG85fV\":\"搜索已保存的地点或查找地址...\",\"3aD3GF\":\"Seasonal\",\"ku//5b\":\"Second\",\"Mck5ht\":\"安全结账\",\"s7tXqF\":\"See schedule\",\"JFap6u\":\"See what Stripe still needs\",\"p7xUrt\":\"选择类别\",\"hTKQwS\":\"Select a Date & Time\",\"Ps6Xtf\":\"Select a date to see available times\",\"e4L7bF\":\"选择一条消息查看其内容\",\"zPRPMf\":\"选择级别\",\"BFRSTT\":\"选择账户\",\"wgNoIs\":\"Select all\",\"mCB6Je\":\"全选\",\"aCEysm\":[\"Select all on \",[\"0\"]],\"a6+167\":\"选择活动\",\"CFbaPk\":\"选择参会者组\",\"88a49s\":\"Select camera\",\"tVW/yo\":\"选择货币\",\"SJQM1I\":\"Select date\",\"n9ZhRa\":\"选择结束日期和时间\",\"gTN6Ws\":\"选择结束时间\",\"0U6E9W\":\"选择活动类别\",\"j9cPeF\":\"选择事件类型\",\"ypTjHL\":\"Select occurrence\",\"KizCK7\":\"选择开始日期和时间\",\"dJZTv2\":\"选择开始时间\",\"x8XMsJ\":\"为此帐户选择消息级别。这控制消息限制和链接权限。\",\"aT3jZX\":\"选择时区\",\"TxfvH2\":\"选择应该收到此消息的参会者\",\"Ropvj0\":\"选择哪些事件将触发此 Webhook\",\"+6YAwo\":\"selected\",\"ylXj1N\":\"已选择\",\"uq3CXQ\":\"Sell out your event.\",\"oBXbO4\":\"Selling a physical product? Cap its quantity on the <0>products page instead.\",\"j9b/iy\":\"热卖中 🔥\",\"73qYgo\":\"作为测试发送\",\"HMAqFK\":\"向参与者、持票人或订单所有者发送电子邮件。消息可以立即发送或安排稍后发送。\",\"22Itl6\":\"给我发送副本\",\"NpEm3p\":\"立即发送\",\"nOBvex\":\"将实时订单和参与者数据发送到您的外部系统。\",\"1lNPhX\":\"发送退款通知邮件\",\"eaUTwS\":\"发送重置链接\",\"5cV4PY\":\"Send to all occurrences, or choose a specific one\",\"QEQlnV\":\"发送您的第一条消息\",\"IoAuJG\":\"正在发送...\",\"h69WC6\":\"已发送\",\"BVu2Hz\":\"发送者\",\"ZFa8wv\":\"Sent to attendees when a scheduled date is cancelled\",\"SPdzrs\":\"客户下单时发送\",\"LxSN5F\":\"发送给每位参会者及其门票详情\",\"hgvbYY\":\"September\",\"5sN96e\":\"Session cancelled\",\"89xaFU\":\"为此组织者创建的新活动设置默认平台费用设置。\",\"eXssj5\":\"为此组织者创建的新活动设置默认设置。\",\"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\":\"为不同的入口、场次或日期设置签到列表。\",\"TaWVGe\":\"Set up payouts\",\"JA//e6\":\"Set up schedule\",\"gzXY7l\":\"Set Up Schedule\",\"0Ls9qe\":\"Set up the tickets you'll sell and their prices\",\"xMO+Ao\":\"设置您的组织\",\"5pEFnq\":\"Set up your schedule\",\"h/9JiC\":\"Set Up Your Schedule\",\"zRRuUD\":\"Set up your schedule in the next steps\",\"ETC76A\":\"Set, change, or remove the date's location or online details\",\"C3htzi\":\"设置已更新\",\"Ohn74G\":\"设置与设计\",\"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\":\"分享推广链接\",\"hL7sDJ\":\"分享组织者页面\",\"jy6QDF\":\"共享容量管理\",\"jDNHW4\":\"Shift times\",\"tPfIaW\":[\"Shifted times for \",[\"count\"],\" date(s)\"],\"WwlM8F\":\"显示高级选项\",\"cMW+gm\":[\"显示所有平台(另有 \",[\"0\"],\" 个包含值)\"],\"wXi9pZ\":\"Show attendee notes to non-logged-in staff\",\"4LZFir\":\"显示整个日期范围\",\"UVPI5D\":\"显示更少平台\",\"Eu/N/d\":\"显示营销订阅复选框\",\"SXzpzO\":\"默认显示营销订阅复选框\",\"b33PL9\":\"显示更多平台\",\"Eut7p9\":\"Show order details to non-logged-in staff\",\"+RoWKN\":\"Show question answers to non-logged-in staff\",\"jbcx6L\":\"Show remaining capacity on event dates\",\"rXxBOx\":\"Show remaining capacity to buyers\",\"t1LIQW\":[\"显示 \",[\"0\"],\" / \",[\"totalRows\"],\" 条记录\"],\"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\":\"注册时间\",\"5C7J+P\":\"Single Event\",\"E//btK\":\"Skip manually edited dates\",\"paESr6\":\"斯洛伐克语\",\"9wu8nm\":\"Snapchat\",\"kIKb9e\":\"社交\",\"d0rUsW\":\"社交链接\",\"j/TOB3\":\"社交链接与网站\",\"s9KGXU\":\"已售出\",\"yp+0jj\":\"sold out\",\"1hupow\":\"售罄,可加入候补名单\",\"iACSrw\":\"Some details are hidden from public access. Log in to view everything.\",\"Dia6iz\":\"Something went wrong while deleting the image. Please try again.\",\"KTxc6k\":\"出现问题,请重试,或在问题持续时联系客服\",\"lkE00/\":\"出了点问题。请稍后再试。\",\"wdxz7K\":\"来源\",\"fDG2by\":\"Spirituality\",\"oPaRES\":\"Split check-in across days, areas, or ticket types. Share the link with staff — no account needed on their end.\",\"7JFNej\":\"体育\",\"/bfV1Y\":\"Staff instructions\",\"tXkhj/\":\"Start\",\"StWUH4\":\"Start check-in\",\"JcQp9p\":\"开始日期和时间\",\"0m/ekX\":\"开始日期和时间\",\"izRfYP\":\"开始日期为必填项\",\"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/\":\"统计数据\",\"GVUxAX\":\"统计数据基于账户创建日期\",\"29Hx9U\":\"Stats\",\"5ia+r6\":\"Still needed\",\"wuV0bK\":\"停止模拟\",\"s/KaDb\":\"Stripe connected\",\"Bk06QI\":\"Stripe 已连接\",\"akZMv8\":[\"Stripe connection copied from \",[\"0\"],\".\"],\"v0aRY1\":\"Stripe didn't return a setup link. Please try again.\",\"aKtF0O\":\"Stripe未连接\",\"9i0++A\":\"Stripe 支付 ID\",\"R1lIMV\":\"Stripe will need a few more details soon\",\"FzcCHA\":\"Stripe will walk you through a few quick questions to finish setup.\",\"ii0qn/\":\"主题是必需的\",\"M7Uapz\":\"主题将显示在这里\",\"6aXq+t\":\"主题:\",\"JwTmB6\":\"产品复制成功\",\"WUOCgI\":\"已成功提供名额\",\"IvxA4G\":[\"已成功向 \",[\"count\"],\" 人提供门票\"],\"kKpkzy\":\"已成功向 1 人提供门票\",\"Zi3Sbw\":\"已成功从候补名单中移除\",\"RuaKfn\":\"地址更新成功\",\"kzx0uD\":\"成功更新活动默认设置\",\"5n+Wwp\":\"组织者更新成功\",\"DMCX/I\":\"平台费用默认设置更新成功\",\"URUYHc\":\"平台费用设置更新成功\",\"kRWc2g\":\"已成功更新重复活动设置\",\"0Dk/l8\":\"SEO 设置更新成功\",\"S8Tua9\":\"设置更新成功\",\"MhOoLQ\":\"社交链接更新成功\",\"CNSSfp\":\"跟踪设置更新成功\",\"kj7zYe\":\"Webhook 更新成功\",\"dXoieq\":\"摘要\",\"/RfJXt\":[\"夏季音乐节 \",[\"0\"]],\"CWOPIK\":\"2025夏季音乐节\",\"D89zck\":\"Sun\",\"DBC3t5\":\"Sunday\",\"UaISq3\":\"瑞典语\",\"JZTQI0\":\"切换组织者\",\"9YHrNC\":\"系统默认\",\"lruQkA\":\"Tap this screen to resume scanning\",\"TJUrME\":[\"Targeting attendees across \",[\"0\"],\" selected sessions.\"],\"yT6dQ8\":\"按税种和活动分组的已收税款\",\"Ye321X\":\"税种名称\",\"WyCBRt\":\"税务摘要\",\"GkH0Pq\":\"已应用税费\",\"Rwiyt2\":\"税费已配置\",\"iQZff7\":\"税费、费用、可见性、销售期、产品亮点和订单限制\",\"SXvRWU\":\"Team collaboration\",\"vlf/In\":\"科技\",\"SchpMp\":\"Telegram\",\"iWa9cY\":\"告诉人们您的活动会有哪些内容\",\"NiIUyb\":\"介绍一下您的活动\",\"DovcfC\":\"请告诉我们您的组织信息。这些信息将显示在您的活动页面上。\",\"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\":\"模板已激活\",\"QHhZeE\":\"模板创建成功\",\"xrWdPR\":\"模板删除成功\",\"G04Zjt\":\"模板保存成功\",\"xowcRf\":\"服务条款\",\"6K0GjX\":\"文字可能难以阅读\",\"nm3Iz/\":\"感谢您的参与!\",\"pYwj0k\":\"Thanks,\",\"k3IitN\":\"That's a wrap\",\"KfmPRW\":\"页面的背景颜色。使用封面图片时,此颜色将作为叠加层应用。\",\"MDNyJz\":\"验证码将在10分钟后过期。如果您没有收到邮件,请检查垃圾邮件文件夹。\",\"AIF7J2\":\"定义固定费用的货币。结账时将转换为订单货币。\",\"7oksH+\":[\"折扣将从每个符合条件的商品中扣除。例如:立减 \",[\"currencySymbol\"],\"10 × 3 张票 = 共减 \",[\"currencySymbol\"],\"30。\"],\"sKL8k2\":\"折扣仅从订单总额中扣除一次。\",\"cDHM1d\":\"电子邮件地址已更改。参与者将在更新后的电子邮件地址收到新门票。\",\"tXadb0\":\"您查找的活动目前不可用。它可能已被删除、过期或 URL 不正确。\",\"5fPdZe\":\"The first date this schedule will generate from.\",\"sxKqBm\":\"订单全额将退款至客户的原始付款方式。\",\"KgDp6G\":\"您尝试访问的链接已过期或不再有效。请检查您的电子邮件以获取管理订单的更新链接。\",\"Np4eLs\":[\"The maximum is \",[\"MAX_PREVIEW\"],\" sessions. Please reduce the date range, frequency, or number of sessions per day.\"],\"sYLeDq\":\"未找到您要查找的组织者。页面可能已被移动、删除或链接有误。\",\"PCr4zw\":\"The override is recorded in the order audit log.\",\"C4nQe5\":\"平台费用会添加到票价中。买家支付更多,但您会收到完整的票价。\",\"HxxXZO\":\"用于按钮和突出显示的主要品牌颜色\",\"OVSkIF\":\"敏捷的棕色狐狸跳过懒狗。\",\"z0KrIG\":\"定时时间为必填项\",\"EWErQh\":\"定时时间必须是将来的时间\",\"UNd0OU\":[\"The session for \\\"\",[\"title\"],\"\\\" originally scheduled for \",[\"0\"],\" has been rescheduled.\"],\"DEcpfp\":\"模板正文包含无效的Liquid语法。请更正后再试。\",\"injXD7\":\"增值税号无法验证。请检查号码并重试。\",\"A4UmDy\":\"戏剧\",\"tDwYhx\":\"主题与颜色\",\"ybBP2H\":\"There are no products available for this date. Please choose another date.\",\"O7g4eR\":\"There are no upcoming dates for this event\",\"062KsE\":\"These details are shown on the attendee's ticket and order summary for this date only.\",\"5Eu+tn\":\"这些详情仅在订单成功完成后显示。\",\"jQjwR+\":\"These details will replace any existing location on the affected dates and show on attendee tickets.\",\"6eaLu/\":\"这些价格适用于日程中的所有场次,层级数量限制的是所有场次合计的总销量。层级的销售日期全局生效。您可以在<0>场次安排页面为单个场次覆盖价格。\",\"QP3gP+\":\"这些设置仅适用于复制的嵌入代码,不会被保存。\",\"HirZe8\":\"这些模板将用作您组织中所有活动的默认模板。单个活动可以用自己的自定义版本覆盖这些模板。\",\"lzAaG5\":\"这些模板将仅覆盖此活动的组织者默认设置。如果这里没有设置自定义模板,将使用组织者模板。\",\"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\":\"此代码将用于跟踪销售。只允许字母、数字、连字符和下划线。\",\"AaP0M+\":\"此颜色组合对某些用户来说可能难以阅读\",\"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.\",\"E9BqZw\":\"This date only\",\"RzEvf5\":\"此活动已结束\",\"kc4bIA\":\"此活动还没有门票或商品,参与者将无法报名。\",\"eMaNd0\":\"This event is not available\",\"YClrdK\":\"此活动尚未发布\",\"GL6z+k\":\"该活动已售罄\",\"pIwDhS\":\"This event's dates and times are set on the occurrence schedule.\",\"ny5rgr\":\"This is a recurring event\",\"tc64Zz\":\"这是将显示在活动页面上的类别名称。\",\"dFJnia\":\"这是您的组织者名称,将展示给用户。\",\"vt7jiq\":\"签名密钥仅显示一次。请立即复制并妥善保存。\",\"5DpZrC\":\"此设置限制的是整个日程所有场次的总销量,而不是每场的限制。如需限制每场的人数,请在<0>场次安排页面设置容量。\",\"L7dIM7\":\"此链接无效或已过期。\",\"MR5ygV\":\"此链接不再有效\",\"9LEqK0\":\"此名称对最终用户可见\",\"QdUMM9\":\"This occurrence is at capacity\",\"j5FdeA\":\"此订单正在处理中。\",\"sjNPMw\":\"此订单已被放弃。您可以随时开始新订单。\",\"OhCesD\":\"此订单已被取消。您可以随时开始新订单。\",\"lyD7rQ\":\"此主办方资料尚未发布\",\"9b5956\":\"此预览显示您的邮件使用示例数据的外观。实际邮件将使用真实值。\",\"uM9Alj\":\"此产品在活动页面上已突出显示\",\"RqSKdX\":\"此产品已售罄\",\"qEGn8I\":\"此重复活动还没有日期,参与者无法预订。\",\"W12OdJ\":\"此报告仅供参考。在将此数据用于会计或税务目的之前,请务必咨询税务专业人士。请与您的Stripe仪表板进行交叉验证,因为Hi.Events可能缺少历史数据。\",\"1LuJNw\":\"此票已失效\",\"0Ew0uk\":\"此门票刚刚被扫描。请等待后再次扫描。\",\"FYXq7k\":[\"This will affect \",[\"loadedAffectedCount\"],\" date(s).\"],\"kvpxIU\":\"这将用于通知和与用户沟通。\",\"rhsath\":\"这对客户不可见,但有助于您识别推广员。\",\"hV6FeJ\":\"Throughput\",\"+FjWgX\":\"Thu\",\"kkDQ8m\":\"Thursday\",\"0GSPnc\":\"票券设计\",\"EZC/Cu\":\"票券设计保存成功\",\"bbslmb\":\"门票设计器\",\"1BPctx\":\"门票:\",\"HGuXjF\":\"票务持有人\",\"CMUt3Y\":\"票务持有人\",\"awHmAT\":\"门票 ID\",\"6czJik\":\"门票标志\",\"t79rDv\":\"未找到门票\",\"6tmWch\":\"票或商品\",\"1tfWrD\":\"门票预览:\",\"KnjoUA\":\"票价\",\"pGZOcL\":\"门票重新发送成功\",\"o02GZM\":\"Ticket sales have ended for this event\",\"8jLPgH\":\"票券类型\",\"8qsbZ5\":\"票务与销售\",\"zNECqg\":\"门票\",\"6GQNLE\":\"门票\",\"NRhrIB\":\"票务与商品\",\"OrWHoZ\":\"当有空余名额时,门票将自动提供给候补名单中的客户。\",\"EUnesn\":\"门票有售\",\"AGRilS\":\"已售票数\",\"zyUxcw\":\"TikTok\",\"LhMjLm\":\"Time\",\"fXf2r5\":[\"Times shown in \",[\"timezoneAbbr\"]],\"dMtLDE\":\"to\",\"/jQctM\":\"收件人\",\"tiI71C\":\"要提高您的限制,请联系我们\",\"ecUA8p\":\"Today\",\"W428WC\":\"切换列\",\"BRMXj0\":\"Tomorrow\",\"UBSG1X\":\"顶级组织者(过去14天)\",\"3sZ0xx\":\"总账户数\",\"SMDzqJ\":\"总参与人数\",\"orBECM\":\"总收款\",\"k5CU8c\":\"总条目\",\"4B7oCp\":\"总费用\",\"sMMlTX\":\"Total fees\",\"mlvCEl\":\"Total orders\",\"2AW/k5\":\"所有场次的总数量\",\"dp8BCb\":\"Total tax\",\"vb0Q0/\":\"总用户数\",\"oJjplO\":\"总浏览量\",\"rBZ9pz\":\"Tours\",\"orluER\":\"按归因来源跟踪账户增长和表现\",\"YwKzpH\":\"跟踪与分析\",\"GUA0Jy\":\"Try a different search term or filter\",\"2P/OWN\":\"Try adjusting your filters to see more dates.\",\"ouM5IM\":\"尝试其他邮箱\",\"3DZvE7\":\"免费试用Hi.Events\",\"vq2WxD\":\"Tue\",\"G3myU+\":\"Tuesday\",\"Kz91g/\":\"土耳其语\",\"GdOhw6\":\"关闭声音\",\"KUOhTy\":\"开启声音\",\"dBeuY2\":\"Twitch\",\"QytzQr\":\"输入\\\"删除\\\"以确认\",\"nWRfmt\":\"排版\",\"IrVSu+\":\"无法复制产品。请检查您的详细信息\",\"Vx2J6x\":\"无法获取参与者\",\"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\":\"未归因账户\",\"9uI/rE\":\"Undo\",\"Ef7StM\":\"未知\",\"ZBAScj\":\"未知参会者\",\"MEIAzV\":\"未命名\",\"K6L5Mx\":\"未命名地点\",\"7yiFvZ\":\"未支付\",\"X13xGn\":\"不受信任\",\"gyXpQN\":\"Upcoming events\",\"Pp1sWX\":\"更新推广员\",\"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\":\"上传组织者封面图像\",\"4kEGqW\":\"上传组织者 Logo\",\"lnCMdg\":\"上传图片\",\"29w7p6\":\"正在上传图像...\",\"HtrFfw\":\"URL 是必填项\",\"vzWC39\":\"USB\",\"td5pxI\":\"USB scanner listening\",\"dyTklH\":\"USB scanner paused\",\"OHJXlK\":\"使用 <0>Liquid 模板 个性化您的邮件\",\"/rsy72\":\"Use event default\",\"0k4cdb\":\"对所有参与者使用订单详情。参与者姓名和电子邮件将与买家信息匹配。\",\"bA31T4\":\"为所有参与者使用购买者的信息\",\"PpgtnC\":\"使用此地址\",\"rnoQsz\":\"用于边框、高亮和二维码样式\",\"BV4L/Q\":\"UTM 分析\",\"l5ackE\":\"UUID\",\"imLQ9Y\":\"正在验证您的增值税号...\",\"t7caBM\":\"VAT country code\",\"WLkfqH\":\"VAT number\",\"pnVh83\":\"增值税号码\",\"CabI04\":\"增值税号不得包含空格\",\"PMhxAR\":\"增值税号必须以2字母国家代码开头,后跟8-15个字母数字字符(例如,DE123456789)\",\"gPgdNV\":\"增值税号验证成功\",\"RUMiLy\":\"增值税号验证失败\",\"vqji3Y\":\"增值税号验证失败。请检查您的增值税号。\",\"8dENF9\":\"费用增值税\",\"ZutOKU\":\"增值税率\",\"+KJZt3\":\"VAT registered\",\"Nfbg76\":\"增值税设置已成功保存\",\"UvYql/\":\"增值税设置已保存。我们正在后台验证您的增值税号。\",\"bXn1Jz\":\"VAT settings updated\",\"tJylUv\":\"平台费用的增值税处理\",\"FlGprQ\":\"平台费用的增值税处理:欧盟增值税注册企业可以使用反向收费机制(0% - 增值税指令2006/112/EC第196条)。未注册增值税的企业需缴纳23%的爱尔兰增值税。\",\"516oLj\":\"增值税验证服务暂时不可用\",\"p6QQLa\":[\"VAT: \",[\"0\"]],\"5q87Y9\":\"VAT: not registered\",\"AdWhjZ\":\"验证码\",\"kUAumu\":\"Verification email sent. Check your inbox.\",\"QDEWii\":\"已验证\",\"wCKkSr\":\"验证邮箱\",\"/IBv6X\":\"验证您的邮箱\",\"u8nB38\":\"Verify your email so attendees can receive tickets\",\"e/cvV1\":\"正在验证...\",\"fROFIL\":\"越南语\",\"p5nYkr\":\"View All\",\"yA/6BX\":\"View all →\",\"6CQ7/B\":\"View all capabilities\",\"YSE15b\":\"View all check-in lists\",\"RnvnDc\":\"查看平台上发送的所有消息\",\"+WFMis\":\"查看和下载所有活动的报告。仅包含已完成的订单。\",\"c7VN/A\":\"查看答案\",\"SZw9tS\":\"查看详情\",\"9+84uW\":[\"View details for \",[\"0\"],\" \",[\"1\"]],\"FCVmuU\":\"查看活动\",\"c6SXHN\":\"查看活动页面\",\"n6EaWL\":\"查看日志\",\"OaKTzt\":\"查看地图\",\"zNZNMs\":\"查看消息\",\"67OJ7t\":\"查看订单\",\"tKKZn0\":\"查看订单详情\",\"KeCXJu\":\"查看订单详情、退款和重新发送确认。\",\"9jnAcN\":\"查看组织者主页\",\"1J/AWD\":\"查看门票\",\"N9FyyW\":\"查看、编辑和导出您的注册参与者。\",\"6dp/Hz\":\"Vimeo\",\"SS4mGB\":\"VK\",\"uUehLT\":\"等待中\",\"quR8Qp\":\"等待付款\",\"KrurBH\":\"Waiting for scan…\",\"u0n+wz\":\"候补名单\",\"3RXFtE\":\"等候名单已启用\",\"TwnTPy\":\"等候名单报价已过期\",\"aUi/Dz\":\"警告:这是系统默认配置。更改将影响所有未分配特定配置的账户。\",\"aT/44s\":\"We couldn't copy that Stripe connection. Please try again.\",\"RRZDED\":\"我们找不到与此邮箱关联的订单。\",\"2RZK9x\":\"我们找不到您要查找的订单。链接可能已过期或订单详情可能已更改。\",\"nefMIK\":\"我们找不到您要查找的门票。链接可能已过期或门票详情可能已更改。\",\"miysJh\":\"我们找不到此订单。它可能已被删除。\",\"Fjj/5/\":\"We couldn't load the check-in lists. Please try again.\",\"ADsQ23\":\"We couldn't reach Stripe just now. Please try again in a moment.\",\"HJKdzP\":\"加载此页面时遇到问题。请重试。\",\"jegrvW\":\"We partner with Stripe to send payouts straight to your bank account.\",\"IfN2Qo\":\"我们建议使用最小尺寸为200x200像素的方形标志\",\"wJzo/w\":\"建议尺寸为 400x400 像素,文件大小不超过 5MB\",\"L/KlAh\":[\"We sent a verification link to \",[\"0\"]],\"KRCDqH\":\"我们使用 Cookie 来帮助我们了解网站的使用情况并改善您的体验。\",\"x8rEDQ\":\"我们在多次尝试后无法验证您的增值税号。我们将在后台继续尝试。请稍后检查。\",\"mfM/HJ\":[\"如果\",[\"productDisplayName\"],\"在\",[\"occurrenceDate\"],\"有空位,我们将通过电子邮件通知您。\"],\"iy+M+c\":[\"如果\",[\"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\":\"我们将把您的门票发送到此邮箱\",\"ZOmUYW\":\"我们将在后台验证您的增值税号。如有任何问题,我们会通知您。\",\"LKjHr4\":[\"We've made changes to the schedule for \\\"\",[\"title\"],\"\\\" — \",[\"description\"],\" affecting \",[\"affectedCount\"],\" session(s).\"],\"Fq/Nx7\":\"我们已向以下邮箱发送了5位数验证码:\",\"GdWB+V\":\"Webhook 创建成功\",\"2X4ecw\":\"Webhook 删除成功\",\"ndBv0v\":\"Webhook integrations\",\"CThMKa\":\"Webhook 日志\",\"I0adYQ\":\"Webhook 签名密钥\",\"nuh/Wq\":\"Webhook URL\",\"8BMPMe\":\"Webhook 不会发送通知\",\"FSaY52\":\"Webhook 将发送通知\",\"v1kQyJ\":\"Webhooks\",\"On0aF2\":\"网站\",\"0f7U0k\":\"Wed\",\"VAcXNz\":\"Wednesday\",\"64X6l4\":\"week\",\"4XSc4l\":\"Weekly\",\"IAUiSh\":\"weeks\",\"vKLEXy\":\"微博\",\"9eF5oV\":\"欢迎回来\",\"QDWsl9\":[\"欢迎来到 \",[\"0\"],\",\",[\"1\"],\" 👋\"],\"LETnBR\":[\"欢迎来到 \",[\"0\"],\",这是您所有活动的列表\"],\"DDbx7K\":\"Wellness\",\"ywRaYa\":\"What time?\",\"FaSXqR\":\"什么类型的活动?\",\"0WyYF4\":\"What unauthenticated staff can see\",\"2+ExvJ\":\"WhatsApp\",\"cxsKvw\":\"当签到被删除时\",\"RPe6bE\":\"When a date is cancelled on a recurring event\",\"Gmd0hv\":\"当新与会者被创建时\",\"zyIyPe\":\"当创建新活动时\",\"Lc18qn\":\"当新订单被创建时\",\"dfkQIO\":\"当新产品被创建时\",\"8OhzyY\":\"当产品被删除时\",\"tRXdQ9\":\"当产品被更新时\",\"9L9/28\":\"当产品售罄时,客户可以加入等候名单,以便在有空位时收到通知。\",\"OIkHj+\":\"当产品售罄时,客户可以加入候补名单,以便在有空位时收到通知。客户加入的是特定日期的候补名单,名额也按日期提供。\",\"Q7CWxp\":\"当与会者被取消时\",\"IuUoyV\":\"当与会者签到时\",\"nBVOd7\":\"当与会者被更新时\",\"t7cuMp\":\"当活动被归档时\",\"gtoSzE\":\"当活动被更新时\",\"ny2r8d\":\"当订单被取消时\",\"c9RYbv\":\"当订单被标记为已支付时\",\"ejMDw1\":\"当订单被退款时\",\"fVPt0F\":\"当订单被更新时\",\"bcYlvb\":\"签到何时关闭\",\"XIG669\":\"签到何时开放\",\"de6HLN\":\"当客户购买门票后,他们的订单将显示在此处。\",\"pm9tpn\":\"启用后,购买者可以一次性将自己的姓名和电子邮箱复制给所有参会者。关闭此选项可移除“所有参会者”选项;购买者仍可复制给第一位参会者,其余参会者须逐一填写。\",\"403wpZ\":\"启用后,新活动将允许参与者通过安全链接管理自己的门票详情。这可以按活动覆盖。\",\"blXLKj\":\"启用后,新活动将在结账时显示营销订阅复选框。此设置可以针对每个活动单独覆盖。\",\"Kj0Txn\":\"启用后,Stripe Connect交易将不收取应用费用。用于不支持应用费用的国家。\",\"uchB0M\":\"小部件预览\",\"uvIqcj\":\"研讨会\",\"EpknJA\":\"请在此输入您的消息...\",\"nhtR6Y\":\"X(推特)\",\"7qI8sJ\":\"year\",\"zkWmBh\":\"Yearly\",\"+BGee5\":\"years\",\"X/azM1\":\"是 - 我有有效的欧盟增值税注册号码\",\"Tz5oXG\":\"是,取消我的订单\",\"QlSZU0\":[\"您正在模拟 <0>\",[\"0\"],\" (\",[\"1\"],\")\"],\"s14PLh\":[\"您正在发出部分退款。客户将获得 \",[\"0\"],\" \",[\"1\"],\" 的退款。\"],\"o7LgX6\":\"您可以在账户设置中配置额外的服务费和税费。\",\"rj3A7+\":\"You can override this for individual dates later.\",\"paWwQ0\":\"如有需要,您仍然可以手动提供门票。\",\"jTDzpA\":\"您无法归档账户中最后一个活跃的主办方。\",\"D8baxD\":\"您有付费门票,但尚未连接 Stripe,因此无法收款。\",\"5VGIlq\":\"您已达到消息限制。\",\"casL1O\":\"您已向免费产品添加了税费。您想要删除它们吗?\",\"9jJNZY\":\"保存前必须确认您的责任\",\"pCLes8\":\"您必须同意接收消息\",\"FVTVBy\":\"您必须先验证电子邮箱地址,才能更新组织者状态。\",\"ze4bi/\":\"You need to create at least one occurrence before you can add attendees to this recurring event.\",\"w65ZgF\":\"您需要验证账户电子邮件后才能修改电子邮件模板。\",\"FRl8Jv\":\"您需要验证您的帐户电子邮件才能发送消息。\",\"88cUW+\":\"您收到\",\"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\":[\"您将参加 \",[\"0\"],\"!\"],\"ZlLcht\":[\"您正在加入\",[\"occurrenceDate\"],\"的候补名单。\"],\"qGZz0m\":\"您已加入候补名单!\",\"/5HL6k\":\"您已获得一个名额!\",\"gbjFFH\":\"You've changed the session time\",\"p/Sa0j\":\"您的帐户有消息限制。要提高您的限制,请联系我们\",\"x/xjzn\":\"您的推广员已成功导出。\",\"TF37u6\":\"您的与会者已成功导出。\",\"79lXGw\":\"您的签到列表已成功创建。与您的签到工作人员共享以下链接。\",\"BnlG9U\":\"您当前的订单将丢失。\",\"nBqgQb\":\"您的电子邮件\",\"GG1fRP\":\"您的活动已上线!\",\"ifRqmm\":\"您的消息已成功发送!\",\"0/+Nn9\":\"您的消息将显示在此处\",\"/Rj5P4\":\"您的姓名\",\"PFjJxY\":\"您的新密码长度必须至少为8个字符。\",\"gzrCuN\":\"您的订单详情已更新。确认邮件已发送到新的电子邮件地址。\",\"naQW82\":\"您的订单已被取消。\",\"bhlHm/\":\"您的订单正在等待付款\",\"XeNum6\":\"您的订单已成功导出。\",\"Xd1R1a\":\"您组织者的地址\",\"WWYHKD\":\"您的付款受到银行级加密保护\",\"5b3QLi\":\"您的计划\",\"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\":\"您的门票已确认。\",\"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 Main Street\",\"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\":\"Are you sure you want to make this event public? This will make the event visible to the public\",\"s4JozW\":\"您确定要恢复此活动吗?它将作为草稿恢复。\",\"vJuISq\":\"您确定要删除此容量分配吗?\",\"baHeCz\":\"您确定要删除此签到列表吗?\",\"LBLOqH\":\"每份订单询问一次\",\"wu98dY\":\"每个产品询问一次\",\"ss9PbX\":\"参与者\",\"m0CFV2\":\"与会者详情\",\"QKim6l\":\"未找到参与者\",\"R5IT/I\":\"Attendee Notes\",\"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\":\"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\":\"取消\",\"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\":\"Check-in\",\"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\":\"定制您的活动页面\",\"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\":\"Dismiss\",\"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\":\"Event URL\",\"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\":\"No attendees have been added to this order.\",\"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\":\"No product associated with this attendee.\",\"Ya1JhR\":\"此类别中没有可用的产品。\",\"FTfObB\":\"尚无产品\",\"+Y976X\":\"无促销代码显示\",\"MAavyl\":\"No questions answered by this attendee.\",\"SnlQeq\":\"No questions have been asked for this order.\",\"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\":\"Online event\",\"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\":\"Order #\",\"B3gPuX\":\"取消订单\",\"SIbded\":\"Order Completed\",\"q/CcwE\":\"订购日期\",\"Tol4BF\":\"订购详情\",\"WbImlQ\":\"订单已取消,并已通知订单所有者。\",\"nAn4Oe\":\"订单已标记为已支付\",\"uzEfRz\":\"Order Notes\",\"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\":\"San Francisco\",\"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\":\"Suite 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\":\"View\",\"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\":\"(none)\",\"xYxQCZ\":[[\"0\"],\" \",[\"1\"]],\"lAOy2r\":[[\"0\"],\" \",[\"1\"],\" 已签到\"],\"3beCx0\":[[\"0\"],\" <0>checked in\"],\"S4PqS9\":[[\"0\"],\" 个活动的 Webhook\"],\"6MIiOI\":[\"剩余 \",[\"0\"]],\"COnw8D\":[[\"0\"],\" 标志\"],\"xG9N0H\":[[\"0\"],\" of \",[\"1\"],\" seats are taken.\"],\"B7pZfX\":[[\"0\"],\" 位组织者\"],\"/HkCs4\":[[\"0\"],\"张门票\"],\"30bTiU\":[[\"activeCount\"],\" enabled\"],\"jTs4am\":[[\"appName\"],\" logo\"],\"gbJOk9\":[[\"attendeeCount\"],\" attendees are registered for this session.\"],\"TjbIUI\":[[\"availableCount\"],\" / \",[\"totalCount\"],\" 可用\"],\"PSChHo\":[\"剩余 \",[\"capacity\"],\" 个名额\"],\"lzQ8/M\":[[\"checkedIn\"],\" / \",[\"total\"],\" checked in\"],\"RZ0JX3\":[[\"chipTime\"],\",已售罄\"],\"M4KnFs\":[[\"chipTime\"],\",售罄,可加入候补名单\"],\"SeyN12\":[[\"completedCount\"],\" of \",[\"totalCount\"],\" steps complete\"],\"f2rhaD\":[[\"diffHr\"],\"h ago\"],\"NRSLBe\":[[\"diffMin\"],\"m ago\"],\"iYfwJE\":[[\"diffSec\"],\"s ago\"],\"OJnhhX\":[[\"eventCount\"],\" 个事件\"],\"mhZbzw\":[[\"loadedAffectedAttendees\"],\" attendees are registered across the affected sessions.\"],\"RBuxIl\":[[\"productCount\"],\" ticket types configured\"],\"VFLd0I\":[[\"slotCount\"],\" times available\"],\"3IEF7U\":[[\"totalCount\"],\" 个票种\"],\"0cLzoF\":[[\"totalOccurrences\"],\" dates\"],\"AEGc4t\":[[\"totalOccurrences\"],\" sessions across \",[\"0\"],\" dates (\",[\"1\",\"plural\",{\"one\":[\"#\",\" session\"],\"other\":[\"#\",\" sessions\"]}],\" per day)\"],\"zGiMDM\":\"+1 234 567 890\",\"1d6kks\":\"+税费\",\"B1St2O\":\"<0>签到列表帮助您按日期、区域或票务类型管理活动入场。您可以将票务链接到特定列表,如VIP区域或第1天通行证,并与工作人员共享安全的签到链接。无需账户。签到适用于移动设备、桌面或平板电脑,使用设备相机或HID USB扫描仪。 \",\"v9VSIS\":\"<0>设置一个单一的总人数上限,同时适用于多个票种。<1>例如,如果你将<2>单日票和<3>全周末票关联起来,它们将共享同一个名额池。一旦达到上限,所有关联的票种将自动停止销售。\",\"Il5Uid\":\"<0>这是整个日程所有场次合计的可售总数量,而不是每场的限制。如需限制每场的人数,请在<1>场次安排页面设置容量。\",\"ZnVt5v\":\"<0>Webhooks 可在事件发生时立即通知外部服务,例如,在注册时将新与会者添加到您的 CRM 或邮件列表,确保无缝自动化。<1>使用第三方服务,如 <2>Zapier、<3>IFTTT 或 <4>Make 来创建自定义工作流并自动化任务。\",\"xFTHZ5\":[\"≈ \",[\"0\"],\"(按当前汇率)\"],\"M2DyLc\":\"1 个活动的 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张门票\",\"nz96Ue\":\"1个票种\",\"InX5ad\":\"1 ticket type configured\",\"y2Jh0m\":\"1 time available\",\"cGtUz6\":\"活动前1周\",\"HR/cvw\":\"示例街123号\",\"dgKxZ5\":\"135+ currencies & 40+ payment methods\",\"kMU5aM\":\"取消通知已发送至\",\"o++0qa\":\"a change in duration\",\"WuWSX5\":\"A few quick steps and you're ready to start selling.\",\"RQ5kDd\":\"当此类别中没有产品时显示的消息。\",\"V53XzQ\":\"新的验证码已发送到您的邮箱\",\"sr2Je0\":\"a shift in start/end times\",\"/z/bH1\":\"您组织者的简短描述,将展示给您的用户。\",\"aS0jtz\":\"已放弃\",\"uyJsf6\":\"关于\",\"JvuLls\":\"承担费用\",\"lk74+I\":\"承担费用\",\"1uJlG9\":\"强调色\",\"g3UF2V\":\"接受\",\"K5+3xg\":\"接受邀请\",\"jzb4Ep\":[\"Account · \",[\"0\"]],\"UqH1Q6\":[\"Account · \",[\"0\"],\" · \",[\"1\"]],\"vOuxvL\":\"账户信息\",\"EHNORh\":\"账户未找到\",\"bPwFdf\":\"账户\",\"AhwTa1\":\"需要操作:需要提供增值税信息\",\"APyAR/\":\"活跃活动\",\"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\":\"添加自定义问题以在结账时收集额外信息\",\"Z/dcxc\":\"Add Date\",\"QeupRg\":\"添加日期\",\"Q219NT\":\"Add Dates\",\"yjB5VC\":\"Add dates and times for your recurring event\",\"Z8idyM\":\"Add details\",\"wpirGs\":\"Add event details\",\"VX6WUv\":\"添加地点\",\"GCQlV2\":\"Add multiple times if you run several sessions per day.\",\"7JF9w9\":\"添加问题\",\"NLbIb6\":\"Add this attendee anyway (override capacity)\",\"6PNlRV\":\"将此活动添加到您的日历\",\"BGD9Yt\":\"添加机票\",\"uIv4Op\":\"将跟踪像素添加到您的公共活动页面和组织者主页。当跟踪处于活动状态时,将向访问者显示Cookie同意横幅。\",\"QN2F+7\":\"添加 Webhook\",\"NsWqSP\":\"添加您的社交媒体账号和网站链接。这些信息将显示在您的公开组织者页面上。\",\"bVjDs9\":\"额外费用\",\"MKqSg4\":\"需要管理员访问权限\",\"0Zypnp\":\"管理仪表板\",\"YAV57v\":\"推广员\",\"I+utEq\":\"推广码无法更改\",\"/jHBj5\":\"推广员创建成功\",\"uCFbG2\":\"推广员删除成功\",\"ld8I+f\":\"Affiliate program\",\"a41PKA\":\"将跟踪推广员销售\",\"mJJh2s\":\"将不会跟踪推广员销售。这将停用该推广员。\",\"jabmnm\":\"推广员更新成功\",\"CPXP5Z\":\"合作伙伴\",\"9Wh+ug\":\"推广员已导出\",\"3cqmut\":\"推广员帮助您跟踪合作伙伴和网红产生的销售。创建推广码并分享以监控绩效。\",\"3e31kI\":\"After your event is created, you can choose how often it repeats from the dashboard.\",\"z7GAMJ\":\"all\",\"N40H+G\":\"All\",\"7rLTkE\":\"所有已归档活动\",\"gKq1fa\":\"所有参与者\",\"63gRoO\":\"All attendees of the selected sessions\",\"uWxIoH\":\"All attendees of this occurrence\",\"pMLul+\":\"所有货币\",\"sgUdRZ\":\"All dates\",\"e4q4uO\":\"All Dates\",\"ZS/D7f\":\"所有已结束活动\",\"QsYjci\":\"所有活动\",\"31KB8w\":\"所有失败任务已删除\",\"D2g7C7\":\"所有任务已排队等待重试\",\"B4RFBk\":\"All matching dates\",\"F1/VgK\":\"All occurrences\",\"OpWjMq\":\"All Occurrences\",\"Sxm1lO\":\"所有状态\",\"dr7CWq\":\"所有即将到来的活动\",\"GpT6Uf\":\"允许参与者通过订单确认邮件中的安全链接更新他们的门票信息(姓名、电子邮件)。\",\"VZdky1\":\"允许购买者将其信息复制给所有参会者\",\"F3mW5G\":\"允许客户在该产品售罄时加入候补名单\",\"4CMO/q\":\"允许客户在该产品售罄时加入候补名单。客户加入的是特定日期的候补名单。\",\"c4uJfc\":\"快完成了!我们正在等待您的付款处理。这只需要几秒钟。\",\"ocS8eq\":[\"已有账户?<0>\",[\"0\"],\"\"],\"uCuEqI\":\"Already in\",\"/H326L\":\"已退款\",\"USEpOK\":\"Already use Stripe on another organizer? Reuse that connection.\",\"RtxQTF\":\"同时取消此订单\",\"jkNgQR\":\"同时退款此订单\",\"xYqsHg\":\"始终可用\",\"Wvrz79\":\"支付金额\",\"Zkymb9\":\"与此推广员关联的邮箱。推广员不会收到通知。\",\"vRznIT\":\"检查导出状态时发生错误。\",\"OPFdAM\":\"此类别的可选描述,将显示在活动页面上。\",\"eusccx\":\"在突出显示的产品上显示的可选消息,例如\\\"热卖中🔥\\\"或\\\"超值优惠\\\"\",\"5GJuNp\":[\"and \",[\"0\"],\" more...\"],\"QNrkms\":\"答案更新成功。\",\"+qygei\":\"Answers\",\"GK7Lnt\":\"Answers provided at checkout (e.g. meal choice)\",\"lE8PgT\":\"Any dates you've manually customized will be kept.\",\"jVoYha\":[\"已应用 — 订单立减 \",[\"0\"]],\"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\":\"批准消息\",\"naCW6Z\":\"April\",\"B495Gs\":\"归档\",\"5sNliy\":\"归档活动\",\"BrwnrJ\":\"归档主办方\",\"E5eghW\":\"归档此活动以向公众隐藏。您可以稍后恢复它。\",\"eqFkeI\":\"归档此主办方。这也将归档属于此主办方的所有活动。\",\"BzcxWv\":\"已归档的主办方\",\"9cQBd6\":\"您确定要归档此活动吗?它将不再对公众可见。\",\"Trnl3E\":\"您确定要归档此主办方吗?这也将归档属于此主办方的所有活动。\",\"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\":\"您确定要删除所有失败的任务吗?\",\"LchiNd\":\"您确定要删除此推广员吗?此操作无法撤销。\",\"vPeW/6\":\"确定要删除此配置吗?这可能会影响使用它的账户。\",\"h42Hc/\":\"Are you sure you want to delete this date? This action cannot be undone.\",\"RiF/yT\":\"Are you sure you want to delete this image?\",\"b3+Qku\":\"Are you sure you want to delete this tax or fee? It will no longer be applied to new orders.\",\"JmVITJ\":\"确定要删除此模板吗?此操作无法撤消,邮件将回退到默认模板。\",\"aLS+A6\":\"确定要删除此模板吗?此操作无法撤消,邮件将回退到组织者或默认模板。\",\"5H3Z78\":\"您确定要删除此 Webhook 吗?\",\"147G4h\":\"您确定要离开吗?\",\"VDWChT\":\"您确定要将此组织者设为草稿吗?这样将使组织者页面对公众不可见。\",\"pWtQJM\":\"您确定要将此组织者设为公开吗?这样将使组织者页面对公众可见。\",\"EOqL/A\":\"您确定要向此人提供名额吗?他们将收到电子邮件通知。\",\"yAXqWW\":\"Are you sure you want to permanently delete this date? This cannot be undone.\",\"WFHOlF\":\"您确定要发布此活动吗?一旦发布,将对公众可见。\",\"4TNVdy\":\"您确定要发布此主办方资料吗?一旦发布,将对公众可见。\",\"8x0pUg\":\"您确定要从候补名单中移除此条目吗?\",\"cDtoWq\":[\"您确定要将订单确认重新发送到 \",[\"0\"],\" 吗?\"],\"xeIaKw\":[\"您确定要将门票重新发送到 \",[\"0\"],\" 吗?\"],\"BjbocR\":\"您确定要恢复此活动吗?\",\"7MjfcR\":\"您确定要恢复此主办方吗?\",\"b7tkGp\":\"Are you sure you want to revoke this invitation?\",\"ExDt3P\":\"您确定要取消发布此活动吗?它将不再对公众可见。\",\"5Qmxo/\":\"您确定要取消发布此主办方资料吗?它将不再对公众可见。\",\"Uqefyd\":\"您在欧盟注册了增值税吗?\",\"+QARA4\":\"艺术\",\"tLf3yJ\":\"由于您的企业位于爱尔兰,所有平台费用将自动适用23%的爱尔兰增值税。\",\"tMeVa/\":\"为每张购买的门票询问姓名和电子邮件\",\"ui5ln+\":\"Assign a different plan\",\"9Jxliv\":\"Assign plan\",\"xdiER7\":\"分配的级别\",\"F2rX0R\":\"必须选择至少一种事件类型\",\"Z44eZS\":\"At least one product must stay available for this date. To make the date inaccessible, cancel it from the schedule instead.\",\"BCmibk\":\"尝试次数\",\"6PecK3\":\"所有活动的出席率和签到率\",\"K2tp3v\":\"attendee\",\"AJ4rvK\":\"与会者已取消\",\"qvylEK\":\"与会者已创建\",\"Aspq3b\":\"参与者信息收集\",\"fpb0rX\":\"参与者信息已从订单复制\",\"94aQMU\":\"参与者信息\",\"KkrBiR\":\"参与者信息收集\",\"sjPjOg\":\"Attendee notes\",\"cosfD8\":\"参与者状态\",\"D2qlBU\":\"与会者已更新\",\"22BOve\":\"参与者更新成功\",\"x8Vnvf\":\"参与者的票不包含在此列表中\",\"/Ywywr\":\"attendees\",\"zLRobu\":\"attendees checked in\",\"k3Tngl\":\"与会者已导出\",\"UoIRW8\":\"已注册参会者\",\"5UbY+B\":\"持有特定门票的与会者\",\"4HVzhV\":\"参与者:\",\"HVkhy2\":\"归因分析\",\"dMMjeD\":\"归因细分\",\"1oPDuj\":\"归因值\",\"DBHTm/\":\"August\",\"JgREph\":\"自动提供已启用\",\"V7Tejz\":\"自动处理候补名单\",\"PZ7FTW\":\"根据背景颜色自动检测,但可以手动覆盖\",\"zlnTuI\":\"当容量可用时自动向下一个人提供门票。如果禁用,您可以从等候名单页面手动处理等候名单。\",\"csDS2L\":\"可用\",\"Xp+ywP\":\"付款完成后可用\",\"dwDH1K\":[\"Available times on \",[\"dayName\"]],\"clF06r\":\"可退款\",\"NB5+UG\":\"可用令牌\",\"L+wGOG\":\"Awaiting\",\"qcw2OD\":\"Awaiting pay\",\"kNmmvE\":\"精彩活动有限公司\",\"TeSaQO\":\"返回账户\",\"kYqM1A\":\"返回活动\",\"s5QRF3\":\"返回消息\",\"td/bh+\":\"返回报告\",\"nsm7BA\":\"返回搜索\",\"imjKVx\":\"Bank account connected\",\"D9LTCH\":\"Base Price\",\"hviJef\":\"Based on the global sale period above, not per date\",\"jIPNJG\":\"基本信息\",\"UabgBd\":\"正文是必需的\",\"HWXuQK\":\"收藏此页面,随时管理您的订单。\",\"CUKVDt\":\"使用自定义徽标、颜色和页脚信息打造您的门票品牌。\",\"4BZj5p\":\"Built-in fraud protection\",\"cr7kGH\":\"Bulk Edit\",\"1Fbd6n\":\"Bulk Edit Dates\",\"Eq6Tu9\":\"Bulk update failed.\",\"9N+p+g\":\"商务\",\"SWnN1L\":\"Business address\",\"kQekXw\":\"Business name\",\"bv6RXK\":\"按钮标签\",\"ChDLlO\":\"按钮文字\",\"BUe8Wj\":\"买家支付\",\"qF1qbA\":\"买家看到的是净价。平台费用将从您的付款中扣除。\",\"dg05rc\":\"通过添加跟踪像素,您确认您和本平台是所收集数据的共同控制者。您有责任确保根据适用的隐私法律(GDPR、CCPA等)拥有合法的处理依据。\",\"DFqasq\":[\"继续操作即表示您同意<0>\",[\"0\"],\"服务条款\"],\"wVSa+U\":\"By day of month\",\"0MnNgi\":\"By day of week\",\"CetOZE\":\"By ticket type\",\"lFdbRS\":\"绕过应用费用\",\"AjVXBS\":\"Calendar\",\"2VLZwd\":\"行动号召按钮\",\"rT2cV+\":\"Camera\",\"7hYa9y\":\"Camera permission was denied. <0>Request permission again, or grant this page camera access in your browser settings.\",\"D02dD9\":\"活动\",\"RRPA79\":\"Can't check in\",\"OcVwAd\":[\"Cancel \",[\"count\"],\" date(s)\"],\"H4nE+E\":\"取消所有产品并释放回可用池\",\"Py78q9\":\"Cancel Date\",\"tOXAdc\":\"取消将取消与此订单关联的所有参与者,并将门票释放回可用池。\",\"FPpqc7\":[\"Cancelling \",[\"0\"],\" date(s). This may take a moment to complete.\"],\"01sEfm\":\"无法删除系统默认配置\",\"VsM1HH\":\"容量分配\",\"9bIMVF\":\"Capacity management\",\"H7K8og\":\"Capacity must be 0 or greater\",\"nzao08\":\"capacity updates\",\"4cp9NP\":\"Capacity Used\",\"K7tIrx\":\"类别\",\"DRK3Bq\":\"Category deleted successfully\",\"o+XJ9D\":\"更改\",\"kJkjoB\":\"Change duration\",\"J0KExZ\":\"Change the attendee limit\",\"ssospy\":\"Change time\",\"CIHJJf\":\"更改等候名单设置\",\"B5icLR\":[\"Changed duration for \",[\"count\"],\" date(s)\"],\"Kb+0BT\":\"Charges\",\"2tbLdK\":\"慈善\",\"BPWGKn\":\"Check in\",\"6uFFoY\":\"Check out\",\"FjAlwK\":[\"Check out this event: \",[\"0\"]],\"v4fiSg\":\"查看您的邮箱\",\"51AsAN\":\"请检查您的收件箱!如果此邮箱有关联的票,您将收到查看链接。\",\"Y3FYXy\":\"Check-In\",\"udRwQs\":\"签到已创建\",\"F4SRy3\":\"签到已删除\",\"as6XfO\":[\"Check-in for \",[\"0\"],\" was undone\"],\"9s/wrQ\":\"Check-in history\",\"Wwztk4\":\"Check-In List\",\"9gPPUY\":\"签到列表已创建!\",\"dwjiJt\":\"Check-in list info\",\"7od0PV\":\"check-in lists\",\"f2vU9t\":\"签到列表\",\"XprdTn\":\"Check-in navigation\",\"5tV1in\":\"Check-in progress\",\"SHJwyq\":\"签到率\",\"qCqdg6\":\"签到状态\",\"cKj6OE\":\"签到摘要\",\"7B5M35\":\"签到\",\"VrmydS\":\"Checked in\",\"DM4gBB\":\"中文(繁体)\",\"p8Jvp4\":\"Choose a configuration\",\"ElShBO\":\"Choose a different action\",\"pHEhf+\":\"选择与您的品牌相符的字体。字体通过 Bunny Fonts 自托管。\",\"Zok1Gx\":\"Choose an organizer\",\"pkk46Q\":\"选择一个组织者\",\"Ag32+c\":\"Choose another date\",\"Crr3pG\":\"选择日历\",\"Z38ZJu\":\"选择活动日期在票券上的显示方式\",\"LAW8Vb\":\"为新活动选择默认设置。这可以针对单个活动进行覆盖。\",\"pjp2n5\":\"选择谁支付平台费用。这不会影响您在账户设置中配置的额外费用。\",\"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\":\"点击查看备注\",\"RG3szS\":\"关闭\",\"RWw9Lg\":\"关闭弹窗\",\"XwdMMg\":\"代码只能包含字母、数字、连字符和下划线\",\"+yMJb7\":\"代码为必填项\",\"m9SD3V\":\"代码至少需要3个字符\",\"V1krgP\":\"代码不能超过20个字符\",\"psqIm5\":\"与您的团队协作,共同创建精彩的活动。\",\"4bUH9i\":\"收集每张购买门票的参与者详情。\",\"TkfG8v\":\"按订单收集信息\",\"96ryID\":\"按门票收集信息\",\"FpsvqB\":\"颜色模式\",\"jEu4bB\":\"列\",\"CWk59I\":\"喜剧\",\"rPA+Gc\":\"通信偏好\",\"zFT5rr\":\"complete\",\"bUQMpb\":\"Complete Stripe setup\",\"744BMm\":\"完成您的订单以确保获得门票。此优惠有时间限制,请尽快完成。\",\"5YrKW7\":\"完成付款以确保您的门票。\",\"xGU92i\":\"完成你的个人资料以加入团队。\",\"QOhkyl\":\"撰写\",\"ih35UP\":\"会议中心\",\"ywFj2D\":\"Configuration\",\"WTw0bB\":\"Configuration assigned\",\"X1zdE7\":\"配置创建成功\",\"mLBUMQ\":\"配置删除成功\",\"UIENhw\":\"配置名称对最终用户可见。固定费用将按当前汇率转换为订单货币。\",\"eeZdaB\":\"配置更新成功\",\"3cKoxx\":\"配置\",\"8v2LRU\":\"配置活动详情、地点、结账选项和电子邮件通知。\",\"raw09+\":\"配置结账时如何收集参与者信息\",\"FI60XC\":\"配置税费\",\"av6ukY\":\"Configure which products are available for this occurrence and optionally adjust pricing.\",\"NGXKG/\":\"确认电子邮件地址\",\"JRQitQ\":\"确认新密码\",\"Auz0Mz\":\"请确认您的邮箱以访问所有功能。\",\"7+grte\":\"确认邮件已发送!请检查您的收件箱。\",\"n/7+7Q\":\"确认已发送至\",\"x3wVFc\":\"恭喜!您的活动现已对公众可见。\",\"0W2NQP\":\"Connect bank\",\"/K4Vqr\":\"连接 Stripe 以接受付款\",\"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\":\"线上活动必须填写连接详情\",\"jfC/xh\":\"联系\",\"LOFgda\":[\"联系 \",[\"0\"]],\"41BQ3k\":\"联系邮箱\",\"m8WD6t\":\"继续设置\",\"0GwUT4\":\"继续结账\",\"sBV87H\":\"继续创建活动\",\"nKtyYu\":\"继续下一步\",\"F3/nus\":\"继续付款\",\"s30OcA\":\"控制活动页面上日期和时间的显示方式\",\"p2FRHj\":\"控制此活动的平台费用如何处理\",\"NqfabH\":\"Control who gets in for this date\",\"fmYxZx\":\"Control who gets in, and when\",\"1JnTgU\":\"从上方复制\",\"FxVG/l\":\"已复制到剪贴板\",\"PiH3UR\":\"已复制!\",\"4i7smN\":\"Copy account ID\",\"uUPbPg\":\"复制推广链接\",\"iVm46+\":\"复制代码\",\"cF2ICc\":\"复制客户链接\",\"+2ZJ7N\":\"将详情复制到第一位参与者\",\"ZN1WLO\":\"复制邮箱\",\"y1eoq1\":\"复制链接\",\"tUGbi8\":\"复制我的信息到:\",\"y22tv0\":\"复制此链接,在任意位置分享\",\"/4gGIX\":\"复制到剪贴板\",\"e0f4yB\":\"无法删除地点\",\"vkiDx2\":\"Could not prepare the bulk update.\",\"KOavaU\":\"无法获取地址详情\",\"/lq4oO\":\"Could not save date\",\"mHu0az\":\"Couldn't send verification email. Please try again.\",\"QOIm+S\":\"统计包含所有即将到来的日期。每人将获得其所选日期的名额。\",\"P0rbCt\":\"封面图像\",\"p4kqHr\":\"Cover image added\",\"60u+dQ\":\"封面图片将显示在活动页面顶部\",\"2NLjA6\":\"封面图像将显示在您的组织者页面顶部\",\"GkrqoY\":\"Covers every ticket\",\"zg4oSu\":[\"创建\",[\"0\"],\"模板\"],\"RKKhnW\":\"创建自定义小部件以在您的网站上销售门票。\",\"6sk7PP\":\"Create a fixed number\",\"jqhTmw\":\"Create a list for this date\",\"PhioFp\":\"Create a new check-in list for an active session, or contact the organizer if you think this is a mistake.\",\"yIRev4\":\"创建密码\",\"j7xZ7J\":\"创建额外的主办方来管理一个账户下的独立品牌、部门或活动系列。每个主办方拥有自己的活动、设置和公开页面。\",\"xfKgwv\":\"创建推广员\",\"tudG8q\":\"创建并配置待售门票和商品。\",\"YAl9Hg\":\"创建配置\",\"BTne9e\":\"为此活动创建自定义邮件模板以覆盖组织者默认设置\",\"YIDzi/\":\"创建自定义模板\",\"tsGqx5\":\"Create Date\",\"Nc3l/D\":\"创建折扣、隐藏门票的访问码和特别优惠。\",\"PybJS2\":\"Create event\",\"eWEV9G\":\"创建新密码\",\"wl2iai\":\"Create Schedule\",\"8AiKIu\":\"创建门票或产品\",\"/HGmW9\":\"创建可追踪链接以奖励推广您活动的合作伙伴。\",\"dkAPxi\":\"创建 Webhook\",\"5slqwZ\":\"创建您的活动\",\"JQNMrj\":\"创建您的第一个活动\",\"CCjxOC\":\"创建您的第一个活动以开始售票并管理参与者。\",\"ZCSSd+\":\"创建您自己的活动\",\"qdv10s\":[\"正在创建 \",[\"0\"],\" 个日期。这可能需要一些时间。\"],\"67NsZP\":\"正在创建活动...\",\"H34qcM\":\"正在创建主办方...\",\"1YMS+X\":\"正在创建您的活动,请稍候\",\"yiy8Jt\":\"正在创建您的主办方资料,请稍候\",\"lfLHNz\":\"CTA标签是必需的\",\"0xLR6W\":\"Currently assigned\",\"iTvh6I\":\"当前可购买\",\"A42Dqn\":\"Custom branding\",\"Guo0lU\":\"自定义日期和时间\",\"WDMdn8\":\"Custom questions\",\"O6mra8\":\"自定义问题\",\"axv/Mi\":\"自定义模板\",\"2YeVGY\":\"客户链接已复制到剪贴板\",\"QMHSMS\":\"客户将收到确认退款的电子邮件\",\"NihQNk\":\"客户\",\"hINN++\":\"Customize page\",\"7gsjkI\":\"使用Liquid模板自定义发送给客户的邮件。这些模板将用作您组织中所有活动的默认模板。\",\"xJaTUK\":\"自定义活动主页的布局、颜色和品牌。\",\"MXZfGN\":\"自定义结账时提出的问题,以从参与者那里收集重要信息。\",\"iX6SLo\":\"自定义“继续”按钮上显示的文本\",\"pxNIxa\":\"使用Liquid模板自定义您的邮件模板\",\"3trPKm\":\"自定义主办方页面外观\",\"U0sC6H\":\"Daily\",\"/gWrVZ\":\"所有活动的每日收入、税费和退款\",\"zgCHnE\":\"每日销售报告\",\"nHm0AI\":\"每日销售、税费和费用明细\",\"1aPnDT\":\"Dance\",\"pvnfJD\":\"深色\",\"MaB9wW\":\"Date Cancellation\",\"e6cAxJ\":\"Date cancelled\",\"81jBnC\":\"Date cancelled successfully\",\"a/C/6R\":\"Date created successfully\",\"IW7Q+u\":\"Date deleted\",\"rngCAz\":\"Date deleted successfully\",\"vHbfoQ\":\"Date reactivated\",\"hvah+S\":\"Date reopened for new sales\",\"Ez0YsD\":\"Date updated successfully\",\"Te33mU\":\"Dates are managed per occurrence\",\"91zCxb\":\"Dates with sessions\",\"/ITcnz\":\"day\",\"H7OUPr\":\"Day\",\"JtHrX9\":\"Day of Month\",\"J/Upwb\":\"days\",\"vDVA2I\":\"Days of Month\",\"rDLvlL\":\"Days of Week\",\"r6zgGo\":\"December\",\"jbq7j2\":\"拒绝\",\"ovBPCi\":\"默认\",\"JtI4vj\":\"默认参与者信息收集\",\"ULjv90\":\"Default capacity per date\",\"3R/Tu2\":\"默认费用处理\",\"1bZAZA\":\"将使用默认模板\",\"HNlEFZ\":\"删除\",\"KpnwJK\":[\"删除\\\"\",[\"0\"],\"\\\"?\"],\"BlII4o\":[\"Delete \",[\"count\"],\" selected date(s)? Dates with orders will be skipped. This cannot be undone.\"],\"vu7gDm\":\"删除推广员\",\"KZN4Lc\":\"全部删除\",\"6EkaOO\":\"Delete Date\",\"io0G93\":\"删除活动\",\"+jw/c1\":\"删除图片\",\"hdyeZ0\":\"删除任务\",\"xxjZeP\":\"删除地点\",\"sY3tIw\":\"删除主办方\",\"UBv8UK\":\"Delete Permanently\",\"dPyJ15\":\"删除模板\",\"IQTR34\":\"Delete this category? Any products in it will also be deleted. This cannot be undone.\",\"/1wMxk\":\"Delete this product? This cannot be undone.\",\"mxsm1o\":\"删除此问题?此操作无法撤销。\",\"snMaH4\":\"删除 Webhook\",\"LIZZLY\":[\"Deleted \",[\"0\"],\" date(s)\"],\"7w0Wev\":\"Description and venue added\",\"vYgeDk\":\"取消全选\",\"NvuEhl\":\"设计元素\",\"H8kMHT\":\"没有收到验证码?\",\"G8KNgd\":\"Different location\",\"E/QGRL\":\"Disabled\",\"OdPOhy\":\"Discord\",\"nZJ8tu\":\"Dismiss setup checklist\",\"QotGhf\":\"关闭此消息\",\"BREO0S\":\"显示一个复选框,允许客户选择接收此活动组织者的营销通讯。\",\"HtaSQp\":\"在门票组件中显示每个日期的剩余名额。您可以为单个日期单独设置。\",\"pfa8F0\":\"显示名称\",\"Kdpf90\":\"别忘了!\",\"352VU2\":\"还没有账户?<0>注册\",\"AXXqG+\":\"捐赠\",\"DPfwMq\":\"完成\",\"JoPiZ2\":\"Door staff instructions\",\"2+O9st\":\"下载所有已完成订单的销售、参与者和财务报告。\",\"eneWvv\":\"草稿\",\"Ts8hhq\":\"由于垃圾邮件的高风险,您必须连接Stripe账户才能修改电子邮件模板。这是为了确保所有活动组织者都经过验证和负责。\",\"TnzbL+\":\"由于垃圾邮件风险较高,您必须连接Stripe账户才能向参与者发送消息。\\n这是为了确保所有活动组织者都经过验证并承担责任。\",\"euc6Ns\":\"复制\",\"YueC+F\":\"Duplicate Date\",\"KRmTkx\":\"复制产品\",\"Jd3ymG\":\"Duration must be at least 1 minute.\",\"KIjvtr\":\"荷兰语\",\"22xieU\":\"例如 180(3小时)\",\"/zajIE\":\"e.g. Morning Session\",\"SPKbfM\":\"例如:获取门票,立即注册\",\"fc7wGW\":\"例如,关于您门票的重要更新\",\"54MPqC\":\"例如,标准版、高级版、企业版\",\"3RQ81z\":\"每个人将收到一封包含预留名额的电子邮件,以完成购买。\",\"Xfsjel\":\"每个商品\",\"5oD9f/\":\"Earlier\",\"LTzmgK\":[\"编辑\",[\"0\"],\"模板\"],\"v4+lcZ\":\"编辑推广员\",\"2iZEz7\":\"编辑答案\",\"t2bbp8\":\"编辑参与者\",\"etaWtB\":\"编辑参与者详情\",\"+guao5\":\"编辑配置\",\"1Mp/A4\":\"Edit Date\",\"m0ZqOT\":\"编辑地点\",\"8oivFT\":\"编辑地点\",\"vRWOrM\":\"编辑订单详情\",\"fW5sSv\":\"编辑 Webhook\",\"nP7CdQ\":\"编辑 Webhook\",\"MRZxAn\":\"Edited\",\"uBAxNB\":\"编辑器\",\"aqxYLv\":\"教育\",\"iiWXDL\":\"资格失败\",\"zPiC+q\":\"符合条件的签到列表\",\"SiVstt\":\"Email & scheduled messages\",\"V2sk3H\":\"电子邮件和模板\",\"hbwCKE\":\"邮箱地址已复制到剪贴板\",\"dSyJj6\":\"电子邮件地址不匹配\",\"elW7Tn\":\"邮件正文\",\"ZsZeV2\":\"邮箱为必填项\",\"Be4gD+\":\"邮件预览\",\"6IwNUc\":\"邮件模板\",\"H/UMUG\":\"需要验证邮箱\",\"PLEl94\":\"Email verified\",\"L86zy2\":\"邮箱验证成功!\",\"FSN4TS\":\"嵌入小部件\",\"z9NkYY\":\"Embeddable widget\",\"Qj0GKe\":\"启用参与者自助服务\",\"hEtQsg\":\"默认启用参与者自助服务\",\"Upeg/u\":\"启用此模板发送邮件\",\"7dSOhU\":\"启用候补名单\",\"RxzN1M\":\"已启用\",\"xDr/ct\":\"End\",\"sGjBEq\":\"结束日期和时间(可选)\",\"PKXt9R\":\"结束日期必须在开始日期之后\",\"ZayGC7\":\"End on a date\",\"48Y16Q\":\"结束时间(可选)\",\"TbaYrr\":[\"Ended \",[\"0\"]],\"CFgwiw\":[\"Ends \",[\"0\"]],\"SqOIQU\":\"Enter a capacity value or choose unlimited.\",\"h37gRz\":\"Enter a label or choose to remove it.\",\"7YZofi\":\"输入主题和正文以查看预览\",\"khyScF\":\"Enter a time to shift by.\",\"SKx/0u\":\"请输入场地名称或地址\",\"ppwojw\":\"线下活动请输入场地名称或地址\",\"j+eCIq\":\"手动输入地址\",\"3bR1r4\":\"输入推广员邮箱(可选)\",\"ARkzso\":\"输入推广员姓名\",\"ej4L8b\":\"Enter capacity\",\"6KnyG0\":\"输入电子邮件\",\"INDKM9\":\"输入邮件主题...\",\"xUgUTh\":\"输入名字\",\"9/1YKL\":\"输入姓氏\",\"VpwcSk\":\"输入新密码\",\"kWg31j\":\"输入唯一推广码\",\"C3nD/1\":\"输入您的电子邮箱\",\"VmXiz4\":\"输入您的电子邮件,我们将向您发送重置密码的说明。\",\"n9V+ps\":\"输入您的姓名\",\"IdULhL\":\"输入您的增值税号,包括国家代码,不带空格(例如,IE1234567A,DE123456789)\",\"RRlWVA\":\"整个订单\",\"o21Y+P\":\"entries\",\"X88/6w\":\"当客户加入已售罄产品的候补名单时,条目将显示在此处。\",\"LslKhj\":\"加载日志时出错\",\"VCNHvW\":\"活动已归档\",\"ZD0XSb\":\"活动已成功归档\",\"WgD6rb\":\"活动类别\",\"b46pt5\":\"活动封面图片\",\"NAUIJ7\":\"Event created\",\"1b77ID\":\"活动已创建\",\"1Hzev4\":\"活动自定义模板\",\"+v+GW0\":\"活动日期显示\",\"7u9/DO\":\"活动已成功删除\",\"imgKgl\":\"活动描述\",\"IzR/Fc\":\"Event lifetime\",\"PYs3rP\":\"活动名称\",\"HhwcTQ\":\"活动名称\",\"WZZzB6\":\"活动名称为必填项\",\"Wd5CDM\":\"活动名称应少于150个字符\",\"4JzCvP\":\"活动不可用\",\"mImacG\":\"活动页面\",\"Hk9Ki/\":\"活动已成功恢复\",\"JyD0LH\":\"活动设置\",\"XVLu2v\":\"活动标题\",\"OfmsI9\":\"活动太新\",\"4SILkp\":\"Event totals\",\"YDVUVl\":\"事件类型\",\"+HeiVx\":\"活动已更新\",\"19j6uh\":\"活动表现\",\"PC3/fk\":\"未来24小时内开始的活动\",\"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\":\"每个邮件模板都必须包含一个链接到相应页面的行动号召按钮\",\"BVinvJ\":\"示例:\\\"您是如何了解我们的?\\\"、\\\"发票公司名称\\\"\",\"2hGPQG\":\"示例:\\\"T恤尺码\\\"、\\\"餐饮偏好\\\"、\\\"职位\\\"\",\"qNuTh3\":\"异常\",\"M1RnFv\":\"已过期\",\"kF8HQ7\":\"导出答案\",\"2KAI4N\":\"导出CSV\",\"JKfSAv\":\"导出失败。请重试。\",\"SVOEsu\":\"导出已开始。正在准备文件...\",\"wuyaZh\":\"导出成功\",\"9bpUSo\":\"正在导出推广员\",\"jtrqH9\":\"正在导出与会者\",\"R4Oqr8\":\"导出完成。正在下载文件...\",\"UlAK8E\":\"正在导出订单\",\"DwuoH0\":\"Facebook\",\"7Bj3x9\":\"失败\",\"8uOlgz\":\"失败时间\",\"tKcbYd\":\"失败任务\",\"SsI9v/\":\"放弃订单失败。请重试。\",\"LdPKPR\":\"配置分配失败\",\"PO0cfn\":\"Failed to cancel date\",\"YUX+f+\":\"Failed to cancel dates\",\"SIHgVQ\":\"取消消息失败\",\"cEFg3R\":\"创建推广员失败\",\"dVgNF1\":\"配置创建失败\",\"fAoRRJ\":\"Failed to create schedule\",\"4yLYTb\":\"创建日程失败。请重试。\",\"U66oUa\":\"创建模板失败\",\"aFk48v\":\"配置删除失败\",\"n1CYMH\":\"Failed to delete date\",\"KXv+Qn\":\"Failed to delete date. It may have existing orders.\",\"JJ0uRo\":\"Failed to delete dates\",\"rgoBnv\":\"删除活动失败\",\"Zw6LWb\":\"删除任务失败\",\"tq0abZ\":\"删除任务失败\",\"2mkc3c\":\"删除主办方失败\",\"5E23qd\":\"Failed to delete product. Please try again.\",\"vKMKnu\":\"删除问题失败\",\"xFj7Yj\":\"删除模板失败\",\"jo3Gm6\":\"导出推广员失败\",\"Jjw03p\":\"导出与会者失败\",\"ZPwFnN\":\"导出订单失败\",\"zGE3CH\":\"导出报告失败。请重试。\",\"lS9/aZ\":\"加载收件人失败\",\"X4o0MX\":\"加载 Webhook 失败\",\"ETcU7q\":\"提供名额失败\",\"5670b9\":\"提供票券失败\",\"e5KIbI\":\"Failed to reactivate date\",\"7zyx8a\":\"从等候名单中移除失败\",\"A/P7PX\":\"Failed to remove override\",\"ogWc1z\":\"Failed to reopen date\",\"0+iwE5\":\"重新排序问题失败\",\"EJPAcd\":\"重新发送订单确认失败\",\"DjSbj3\":\"重新发送门票失败\",\"YQ3QSS\":\"重新发送验证码失败\",\"wDioLj\":\"重试任务失败\",\"DKYTWG\":\"重试任务失败\",\"WRREqF\":\"Failed to save override\",\"sj/eZA\":\"Failed to save price override\",\"780n8A\":\"Failed to save product settings\",\"zTkTF3\":\"保存模板失败\",\"l6acRV\":\"保存增值税设置失败。请重试。\",\"T6B2gk\":\"发送消息失败。请重试。\",\"lKh069\":\"无法启动导出任务\",\"t/KVOk\":\"无法开始模拟。请重试。\",\"QXgjH0\":\"无法停止模拟。请重试。\",\"i0QKrm\":\"更新推广员失败\",\"NNc33d\":\"更新答案失败。\",\"E9jY+o\":\"更新参与者失败\",\"uQynyf\":\"配置更新失败\",\"i2PFQJ\":\"更新活动状态失败\",\"EhlbcI\":\"更新消息级别失败\",\"rpGMzC\":\"更新订单失败\",\"T2aCOV\":\"更新主办方状态失败\",\"Eeo/Gy\":\"更新设置失败\",\"kqA9lY\":\"增值税设置更新失败\",\"7/9RFs\":\"上传图片失败。\",\"nkNfWu\":\"上传图片失败。请重试。\",\"rxy0tG\":\"验证邮箱失败\",\"QRUpCk\":\"Family\",\"5LO38w\":\"Fast payouts to your bank\",\"4lgLew\":\"February\",\"9bHCo2\":\"费用货币\",\"/sV91a\":\"费用处理\",\"K4dKSP\":\"Fee override saved\",\"LyUWXA\":\"费用已绕过\",\"cf35MA\":\"节日\",\"pAey+4\":\"文件太大。最大大小为5MB。\",\"VejKUM\":\"请先在上方填写您的详细信息\",\"/n6q8B\":\"Film\",\"L1qbUx\":\"Filter attendees\",\"8OvVZZ\":\"筛选参与者\",\"N/H3++\":\"Filter by date\",\"mvrlBO\":\"按活动筛选\",\"g+xRXP\":\"Finish setting up Stripe\",\"LHH461\":\"Finish setup\",\"syyeb9\":\"First\",\"Vj6wk9\":\"First 30 days\",\"/bpZYb\":\"First 7 days\",\"ziEnjY\":\"First 90 days\",\"1vBhpG\":\"第一位参与者\",\"4pwejF\":\"名字为必填项\",\"rVogsf\":\"请先解决问题再发布\",\"3lkYdQ\":\"Fixed fee\",\"6bBh3/\":\"固定费用\",\"zWqUyJ\":\"每笔交易收取的固定费用\",\"LWL3Bs\":\"固定费用必须为0或更大\",\"0RI8m4\":\"Flash off\",\"q0923e\":\"Flash on\",\"X+U6/w\":\"字体\",\"lWxAUo\":\"美食美酒\",\"nFm+5u\":\"页脚文字\",\"a8nooQ\":\"Fourth\",\"wtuVU4\":\"Frequency\",\"xVhQZV\":\"Fri\",\"39y5bn\":\"Friday\",\"f5UbZ0\":\"Full data ownership\",\"cfvx/y\":\"Full event\",\"MY2SVM\":\"全额退款\",\"PGQLdy\":\"future\",\"8N/j1s\":\"Future dates only\",\"yRx/6K\":\"Future dates will be copied with capacity reset to zero\",\"T02gNN\":\"普通入场\",\"3ep0Gx\":\"您组织者的基本信息\",\"ziAjHi\":\"生成\",\"exy8uo\":\"生成代码\",\"4CETZY\":\"获取路线\",\"pjkEcB\":\"Get Paid\",\"lGYzP6\":\"Get paid with Stripe\",\"ZDIydz\":\"开始使用\",\"u6FPxT\":\"获取门票\",\"8KDgYV\":\"准备好您的活动\",\"RkXlPZ\":\"GitHub\",\"sr0UJD\":\"Go Back\",\"oNL5vN\":\"前往活动页面\",\"gHSuV/\":\"返回主页\",\"8+Cj55\":\"Go to Schedule\",\"6nDzTl\":\"良好的可读性\",\"76gPWk\":\"Got it\",\"CZXzs4\":\"希腊语\",\"aGWZUr\":\"总收入\",\"n8IUs7\":\"总收入\",\"O1wAlQ\":\"Guest\",\"LIYoRQ\":\"来宾管理\",\"NUsTc4\":\"Happening now\",\"kTSQej\":[\"您好 \",[\"0\"],\",从这里管理您的平台。\"],\"dORAcs\":\"以下是与您邮箱关联的所有票。\",\"g+2103\":\"这是您的推广链接\",\"bVsnqU\":\"Hi,\",\"/iE8xx\":\"Hi.Events 费用\",\"zppscQ\":\"Hi.Events 平台费用和每笔交易的增值税明细\",\"D+zLDD\":\"隐藏\",\"DRErHC\":\"对参与者隐藏 - 仅组织者可见\",\"NNnsM0\":\"隐藏高级选项\",\"P+5Pbo\":\"隐藏答案\",\"VMlRqi\":\"Hide details\",\"FmogyU\":\"隐藏选项\",\"uXNYjR\":\"隐藏已售罄的日期和时间\",\"g9RcYX\":\"隐藏日期\",\"uMwTx7\":\"隐藏此类别?\",\"gtEbeW\":\"突出显示\",\"NF8sdv\":\"突出显示消息\",\"MXSqmS\":\"突出显示此产品\",\"7ER2sc\":\"已突出显示\",\"sq7vjE\":\"突出显示的产品将具有不同的背景色,使其在活动页面上脱颖而出。\",\"1+WSY1\":\"Hobbies\",\"yY8wAv\":\"Hours\",\"49Tkiw\":\"折扣如何应用?\",\"sy9anN\":\"客户收到报价后完成购买的时限。留空表示无时间限制。\",\"n2ilNh\":\"How long does the schedule run?\",\"DMr2XN\":\"How often?\",\"cceMns\":\"How VAT is applied to the platform fees we charge you.\",\"FONsLE\":\"https://awesome-events.com\",\"htoh8N\":\"https://webhook-domain.com/webhook\",\"mkWad2\":\"匈牙利语\",\"8Wgd41\":\"我确认我作为数据控制者的责任\",\"O8m7VA\":\"我同意接收与此活动相关的电子邮件通知\",\"YLgdk5\":\"我确认这是与此活动相关的交易消息\",\"4/kP5a\":\"如果没有自动打开新标签页,请点击下方按钮继续结账。\",\"W/eN+G\":\"如果为空,地址将用于生成 Google 地图链接\",\"CY3yHL\":\"如果选中,此类别将对公众隐藏。\",\"iIEaNB\":\"如果您在我们这里有账户,您将收到一封包含如何重置密码说明的电子邮件。\",\"an5hVd\":\"图片\",\"tSVr6t\":\"模拟\",\"TWXU0c\":\"模拟用户\",\"5LAZwq\":\"模拟已开始\",\"IMwcdR\":\"模拟已停止\",\"0I0Hac\":\"重要通知\",\"yD3avI\":\"重要提示:更改您的电子邮件地址将更新访问此订单的链接。保存后,您将被重定向到新的订单链接。\",\"jT142F\":[[\"diffHours\"],\"小时后\"],\"OoSyqO\":[[\"diffMinutes\"],\"分钟后\"],\"PdMhEx\":[\"in last \",[\"0\"],\" min\"],\"u7r0G5\":\"In person — set a venue\",\"/LCAwL\":\"进行中\",\"F1Xp97\":\"个人与会者\",\"85e6zs\":\"插入Liquid令牌\",\"CTWsuc\":\"Instagram\",\"VopR6B\":\"Instant Stripe payouts\",\"nbfdhU\":\"集成\",\"I8eJ6/\":\"Internal notes on the attendee's ticket\",\"B2Tpo0\":\"无效邮箱\",\"5tT0+u\":\"邮箱格式无效\",\"f9WRpE\":\"无效的文件类型。请上传图片。\",\"tnL+GP\":\"无效的Liquid语法。请更正后再试。\",\"N9JsFT\":\"无效的增值税号格式\",\"g+lLS9\":\"邀请团队成员\",\"1z26sk\":\"邀请团队成员\",\"KR0679\":\"邀请团队成员\",\"aH6ZIb\":\"邀请您的团队\",\"Dn4OyV\":\"已邀请\",\"IuMGvq\":\"发票\",\"a/bUcL\":\"It happens on more than one date\",\"d+Oe9r\":\"It may have been unpublished or removed. Please check the link and try again.\",\"Lj7sBL\":\"意大利语\",\"F5/CBH\":\"项\",\"BzfzPK\":\"项目\",\"rjyWPb\":\"January\",\"KmWyx0\":\"任务\",\"o5r6b2\":\"任务已删除\",\"cd0jIM\":\"任务详情\",\"ruJO57\":\"任务名称\",\"YZi+Hu\":\"任务已排队等待重试\",\"nCywLA\":\"随时随地加入\",\"SNzppu\":\"加入候补名单\",\"dLouFI\":[\"加入\",[\"productDisplayName\"],\"的等候名单\"],\"2gMuHR\":\"已加入\",\"u4ex5r\":\"July\",\"zeEQd/\":\"June\",\"MxjCqk\":\"只是在找您的票?\",\"xOTzt5\":\"just now\",\"0RihU9\":\"Just wrapped\",\"lB2hSG\":[\"及时向我更新来自\",[\"0\"],\"的新闻和活动\"],\"ioFA9i\":\"Keep the profit.\",\"o66QSP\":\"label updates\",\"RtKKbA\":\"Last\",\"DruLRc\":\"过去14天\",\"ve9JTU\":\"姓氏为必填项\",\"h0Q9Iw\":\"最新响应\",\"gw3Ur5\":\"最近触发\",\"FIq1Ba\":\"Later\",\"xvnLMP\":\"Latest check-ins\",\"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\":\"浅色\",\"1qY5Ue\":\"链接已过期或无效\",\"gggTBm\":\"LinkedIn\",\"nvOPBA\":\"允许链接\",\"2BBAbc\":\"List\",\"dF6vP6\":\"上线\",\"fpMs2Z\":\"直播\",\"D9zTjx\":\"直播活动\",\"C33p4q\":\"Loaded dates\",\"WdmJIX\":\"加载预览中...\",\"IoDI2o\":\"加载令牌中...\",\"G3Ge9Z\":\"正在加载Webhook日志...\",\"NFxlHW\":\"正在加载 Webhook\",\"E0DoRM\":\"地点已删除\",\"7w8lJU\":\"地点已保存\",\"YsRXDD\":\"地点已更新\",\"A/kIva\":\"location updates\",\"iyZPPR\":\"个地点\",\"VppBoU\":\"地点\",\"iG7KNr\":\"标志\",\"vu7ZGG\":\"标志和封面\",\"gddQe0\":\"您的组织者的标志和封面图像\",\"TBEnp1\":\"标志将显示在页面头部\",\"Jzu30R\":\"标志将显示在票券上\",\"PSRm6/\":\"查找我的门票\",\"yJFu/X\":\"总部办公室\",\"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\":\"管理活动的等候名单,查看统计数据,并向参与者提供门票。\",\"g2npA5\":\"手动提供\",\"hg6l4j\":\"March\",\"pqRBOz\":\"Mark as validated (admin override)\",\"2L3vle\":\"最大消息数 / 24小时\",\"Qp4HWD\":\"最大收件人数 / 消息\",\"3JzsDb\":\"May\",\"agPptk\":\"媒介\",\"xDAtGP\":\"消息\",\"bECJqy\":\"消息批准成功\",\"1jRD0v\":\"向与会者发送特定门票的信息\",\"uQLXbS\":\"消息已取消\",\"48rf3i\":\"消息不能超过5000个字符\",\"ZPj0Q8\":\"消息详情\",\"Vjat/X\":\"消息为必填项\",\"0/yJtP\":\"向具有特定产品的订单所有者发送消息\",\"saG4At\":\"消息已定时\",\"mFdA+i\":\"消息级别\",\"v7xKtM\":\"消息级别更新成功\",\"H9HlDe\":\"分钟\",\"agRWc1\":\"Minutes\",\"zz/Wd/\":\"Mode\",\"fpMgHS\":\"Mon\",\"hty0d5\":\"Monday\",\"JbIgPz\":\"货币金额是所有货币的大致总和\",\"qvF+MT\":\"监控和管理失败的后台任务\",\"kY2ll9\":\"month\",\"HajiZl\":\"月\",\"+8Nek/\":\"Monthly\",\"1LkxnU\":\"Monthly Pattern\",\"6jefe3\":\"months\",\"f8jrkd\":\"more\",\"JcD7qf\":\"More actions\",\"w36OkR\":\"最多浏览活动(过去14天)\",\"+Y/na7\":\"Move all dates earlier or later\",\"3DIpY0\":\"Multiple locations\",\"g9cQCP\":\"Multiple ticket types\",\"GfaxEk\":\"音乐\",\"oVGCGh\":\"我的票\",\"8/brI5\":\"姓名为必填项\",\"sFFArG\":\"名称长度必须少于255个字符\",\"xxU3NX\":\"净收入\",\"7I8LlL\":\"New capacity\",\"n1GRql\":\"New label\",\"y0Fcpd\":\"新地点\",\"ArHT/C\":\"新注册\",\"uK7xWf\":\"New time:\",\"veT5Br\":\"Next occurrence\",\"WXtl5X\":[\"Next: \",[\"nextFormatted\"]],\"eWRECP\":\"夜生活\",\"HSw5l3\":\"否 - 我是个人或未注册增值税的企业\",\"VHfLAW\":\"无账户\",\"+jIeoh\":\"未找到账户\",\"074+X8\":\"没有活动的 Webhook\",\"zxnup4\":\"没有推广员可显示\",\"Dwf4dR\":\"暂无参与者问题\",\"th7rdT\":\"No attendees to show\",\"PKySlW\":\"No attendees yet for this date.\",\"/UC6qk\":\"未找到归因数据\",\"E2vYsO\":\"No capabilities reported by Stripe yet.\",\"amMkpL\":\"无容量\",\"d2Jf1f\":\"No change\",\"99ntUF\":\"此活动没有可用的签到列表。\",\"wG+knX\":\"No check-ins yet\",\"+dAKxg\":\"未找到配置\",\"LiLk8u\":\"No connections available\",\"eb47T5\":\"未找到所选筛选条件的数据。请尝试调整日期范围或货币。\",\"Zc216S\":\"No date added\",\"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\",\"OtJSnL\":\"未安排日期\",\"gEdNe8\":\"No dates scheduled yet\",\"pZNOT9\":\"无结束日期\",\"dW40Uz\":\"未找到活动\",\"8pQ3NJ\":\"未来24小时内没有开始的活动\",\"8zCZQf\":\"尚无活动\",\"Yc5YW6\":\"没有失败的任务\",\"EpvBAp\":\"无发票\",\"XZkeaI\":\"未找到日志\",\"IcAC6J\":\"没有匹配的字体\",\"nrSs2u\":\"未找到消息\",\"Rj99yx\":\"No occurrences available\",\"IFU1IG\":\"No occurrences on this date\",\"OVFwlg\":\"暂无订单问题\",\"EJ7bVz\":\"未找到订单\",\"NEmyqy\":\"尚无订单\",\"a77B6w\":\"No orders yet for this date.\",\"wUv5xQ\":\"过去14天没有组织者活动\",\"vLd1tV\":\"No organizer context available.\",\"B7w4KY\":\"无其他可用组织者\",\"PChXMe\":\"无付费订单\",\"6jYQGG\":\"没有过去的活动\",\"CHzaTD\":\"过去14天没有热门活动\",\"zK/+ef\":\"没有可供选择的产品\",\"M1/lXs\":\"No products configured for this event.\",\"kY7XDn\":\"没有产品有等候名单条目\",\"8mw4tm\":\"无产品消息\",\"wYiAtV\":\"没有最近的账户注册\",\"UW90md\":\"未找到收件人\",\"QoAi8D\":\"无响应\",\"JeO7SI\":\"无响应\",\"EK/G11\":\"尚无响应\",\"59OWd3\":\"暂无已保存的地点\",\"mPdY6W\":\"没有建议\",\"3sRuiW\":\"未找到票\",\"debCrL\":\"没有可售门票\",\"k2C0ZR\":\"No upcoming dates\",\"yM5c0q\":\"没有即将到来的活动\",\"qpC74J\":\"未找到用户\",\"8wgkoi\":\"过去14天没有浏览的活动\",\"Arzxc1\":\"没有候补名单条目\",\"n5vdm2\":\"此端点尚未记录任何 Webhook 事件。事件触发后将显示在此处。\",\"4GhX3c\":\"没有 Webhooks\",\"4+am6b\":\"否,保留在此\",\"4JVMUi\":\"non-edited\",\"Itw24Q\":\"Not checked in\",\"x5+Lcz\":\"未签到\",\"8n10sz\":\"不符合条件\",\"kLvU3F\":\"Notify attendees and stop sales\",\"t9QlBd\":\"November\",\"kAREMN\":\"Number of dates to create\",\"6u1B3O\":\"Occurrence\",\"mmoE62\":\"Occurrence Cancelled\",\"V9flmL\":\"Occurrence Schedule\",\"Kh3WO8\":\"Occurrence Summary\",\"byXCTu\":\"Occurrences\",\"KATw3p\":\"Occurrences (future only)\",\"85rTR2\":\"Occurrences can be configured after creation\",\"dzQfDY\":\"October\",\"BwJKBw\":\"共\",\"9h7RDh\":\"提供\",\"EfK2O6\":\"提供名额\",\"3sVRey\":\"提供门票\",\"2O7Ybb\":\"报价超时\",\"1jUg5D\":\"已提供\",\"l+/HS6\":[\"报价将在 \",[\"timeoutHours\"],\" 小时后过期。\"],\"6Aih4U\":\"离线\",\"nO3VbP\":[\"销售于\",[\"0\"]],\"oXOSPE\":\"在线\",\"aqmy5k\":\"Online — provide connection details\",\"LuZBbx\":\"Online & in-person\",\"IXuOqt\":\"Online & in-person — see schedule\",\"WjSpu5\":\"在线活动\",\"scPxI/\":[\"仅剩 \",[\"capacity\"],\" 个\"],\"NdOxqr\":\"只有账户管理员可以删除或归档活动。请联系您的账户管理员寻求帮助。\",\"rnoDMF\":\"只有账户管理员可以删除或归档主办方。请联系您的账户管理员寻求帮助。\",\"bU7oUm\":\"仅发送给具有这些状态的订单\",\"wkpaqp\":\"仅显示开始日期和时间\",\"DMk8F0\":\"Only tickets count toward capacity\",\"M2w1ni\":\"仅使用促销代码可见\",\"y8Bm7C\":\"Open check-in\",\"RLz7P+\":\"Open occurrence\",\"cDSdPb\":\"在选择器中显示的可选昵称,例如\\\"总部会议室\\\"\",\"HXMJxH\":\"免责声明、联系信息或感谢说明的可选文本(仅单行)\",\"L565X2\":\"选项\",\"8m9emP\":\"or add a single date\",\"eBskDE\":\"或启用线下付款并停用 Stripe\",\"dSeVIm\":\"order\",\"c/TIyD\":\"订单和门票\",\"H5qWhm\":\"订单已取消\",\"b6+Y+n\":\"订单完成\",\"x4MLWE\":\"订单确认\",\"CsTTH0\":\"订单确认重新发送成功\",\"ppuQR4\":\"订单已创建\",\"xtQzag\":\"Order details\",\"vrSW9M\":\"订单已取消并退款。订单所有者已收到通知。\",\"rzw+wS\":\"订单持有人\",\"oI/hGR\":\"订单ID\",\"RQCXz6\":\"订单限制\",\"SO9AEF\":\"订单限制已设置\",\"vu6Arl\":\"订单标记为已支付\",\"sLbJQz\":\"未找到订单\",\"kvYpYu\":\"未找到订单\",\"eJ8SvM\":\"Order number, purchase date, purchaser email\",\"FaPYw+\":\"订单所有者\",\"eB5vce\":\"具有特定产品的订单所有者\",\"CxLoxM\":\"具有产品的订单所有者\",\"UkHo4c\":\"订单参考\",\"EZy55F\":\"订单已退款\",\"6eSHqs\":\"订单状态\",\"oW5877\":\"订单总额\",\"e7eZuA\":\"订单已更新\",\"1SQRYo\":\"订单更新成功\",\"3NT0Ck\":\"订单已被取消\",\"V5khLm\":\"orders\",\"sd5IMt\":\"已完成订单\",\"5It1cQ\":\"订单已导出\",\"UQ0ACV\":\"订单总额\",\"B/EBQv\":\"订单:\",\"qtGTNu\":\"自然账户\",\"P/JHA4\":\"主办方已成功归档\",\"S3CZ5M\":\"组织者仪表板\",\"GzjTd0\":\"主办方已成功删除\",\"SQqJd8\":\"未找到组织者\",\"HF8Bxa\":\"主办方已成功恢复\",\"wpj63n\":\"组织者设置\",\"o1my93\":\"组织者状态更新失败。请稍后再试\",\"rLHma1\":\"组织者状态已更新\",\"LqBITi\":\"将使用组织者/默认模板\",\"q4zH+l\":\"Organizers\",\"/IX/7x\":\"其他\",\"RsiDDQ\":\"其他列表(不包含此票)\",\"aDfajK\":\"Outdoors\",\"qMASRF\":\"发出的消息\",\"iCOVQO\":\"Override\",\"GpFTEc\":\"Override fees on this organizer\",\"M9ZhMP\":\"Override price\",\"cnVIpl\":\"Override removed\",\"6/dCYd\":\"概览\",\"6WdDG7\":\"页面\",\"8uqsE5\":\"页面不再可用\",\"QkLf4H\":\"页面链接\",\"sF+Xp9\":\"页面浏览量\",\"v4nCHK\":\"Paid\",\"c+suC6\":\"付费账户\",\"5F7SYw\":\"部分退款\",\"fFYotW\":[\"部分退款:\",[\"0\"]],\"i8day5\":\"将费用转嫁给买家\",\"k4FLBQ\":\"转嫁给买家\",\"Ff0Dor\":\"过去\",\"BFjW8X\":\"Past due\",\"xTPjSy\":\"过去的活动\",\"/l/ckQ\":\"粘贴链接\",\"URAE3q\":\"已暂停\",\"4fL/V7\":\"付款\",\"c2/9VE\":\"负载数据\",\"5cxUwd\":\"支付日期\",\"ENEPLY\":\"付款方式\",\"8Lx2X7\":\"已收到付款\",\"fx8BTd\":\"付款不可用\",\"C+ylwF\":\"Payouts\",\"UbRKMZ\":\"Pending\",\"UkM20g\":\"待审核\",\"dPYu1F\":\"每位参与者\",\"mQV/nJ\":\"per min\",\"+kvxv+\":\"每单\",\"VlXNyK\":\"每个订单\",\"NhuGd7\":\"每件商品\",\"hauDFf\":\"每张门票\",\"mnF83a\":\"百分比费用\",\"TNLuRD\":\"Percentage fee (%)\",\"MixU2P\":\"百分比必须在0到100之间\",\"MkuVAZ\":\"交易金额的百分比\",\"/Bh+7r\":\"绩效\",\"fIp56F\":\"永久删除此活动及其所有相关数据。\",\"nJeeX7\":\"永久删除此主办方及其所有活动。\",\"wfCTgK\":\"Permanently remove this date\",\"6kPk3+\":\"个人信息\",\"zmwvG2\":\"电话\",\"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\":\"计划举办活动?\",\"J3lhKT\":\"平台费用\",\"RD51+P\":[\"从您的付款中扣除 \",[\"0\"],\" 的平台费用\"],\"br3Y/y\":\"平台费用\",\"3buiaw\":\"平台费用报告\",\"kv9dM4\":\"平台收入\",\"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\":\"请输入有效的电子邮件地址\",\"jEw0Mr\":\"请输入有效的 URL\",\"n8+Ng/\":\"请输入5位数验证码\",\"r+lQXT\":\"请输入您的增值税号码\",\"Dvq0wf\":\"请提供一张图片。\",\"2cUopP\":\"请重新开始结账流程。\",\"GoXxOA\":\"Please select a date and time\",\"8KmsFa\":\"请选择日期范围\",\"EFq6EG\":\"请选择一张图片。\",\"fuwKpE\":\"请再试一次。\",\"klWBeI\":\"请稍候再请求新的验证码\",\"hfHhaa\":\"请稍候,我们正在准备导出您的推广员...\",\"o+tJN/\":\"请稍候,我们正在准备导出您的与会者...\",\"+5Mlle\":\"请稍候,我们正在准备导出您的订单...\",\"trnWaw\":\"波兰语\",\"luHAJY\":\"热门活动(过去14天)\",\"p/78dY\":\"Position\",\"OESu7I\":\"通过在多种门票类型之间共享库存来防止超卖。\",\"NgVUL2\":\"预览结账表单\",\"cs5muu\":\"预览活动页面\",\"Jm2AC3\":\"Price Tier\",\"a5jvSX\":\"价格层级\",\"ReihZ7\":\"打印预览\",\"JnuPvH\":\"打印门票\",\"tYF4Zq\":\"打印为PDF\",\"LcET2C\":\"隐私政策\",\"8z6Y5D\":\"处理退款\",\"JcejNJ\":\"处理订单中\",\"EWCLpZ\":\"产品已创建\",\"XkFYVB\":\"产品已删除\",\"YMwcbR\":\"产品销售、收入和税费明细\",\"ls0mTC\":\"Product settings cannot be edited for cancelled dates.\",\"2339ej\":\"Product settings saved successfully\",\"ldVIlB\":\"产品已更新\",\"CP3D8G\":\"Progress\",\"JoKGiJ\":\"优惠码\",\"k3wH7i\":\"促销码使用情况及折扣明细\",\"tZqL0q\":\"promo codes\",\"oCHiz3\":\"Promo codes\",\"uEhdRh\":\"仅促销\",\"dLm8V5\":\"促销电子邮件可能导致账户暂停\",\"W0ETyY\":\"请至少填写一个地址字段(场地、街道、城市或国家)。\",\"2W/7Gz\":\"Provide the following before Stripe's next review to keep payouts flowing.\",\"EEYbdt\":\"发布\",\"JcgJKc\":\"仍要发布\",\"evDBV8\":\"发布活动\",\"2zEfOd\":\"Publish your event\",\"L7nrC8\":\"发布后,您的活动页面将公开并开放报名。\",\"dsFmM+\":\"已购买\",\"JunetL\":\"Purchaser\",\"phmeUH\":\"Purchaser email\",\"ywR4ZL\":\"QR code check-in\",\"oWXNE5\":\"数量\",\"biEyJ4\":\"Question answers\",\"k/bJj0\":\"问题已重新排序\",\"b24kPi\":\"队列\",\"lTPqpM\":\"Quick Tip\",\"fqDzSu\":\"费率\",\"mnUGVC\":\"超出速率限制。请稍后再试。\",\"t41hVI\":\"重新提供名额\",\"TNclgc\":\"Reactivate this date? It will be reopened for future sales.\",\"RENQ6j\":\"准备好发布了吗?\",\"uqoRbb\":\"Real-time analytics\",\"xzRvs4\":[\"接收 \",[\"0\"],\" 的产品更新。\"],\"pLXbi8\":\"最近账户注册\",\"M1HGuR\":\"Recent activity\",\"3kJ0gv\":\"Recent Attendees\",\"qhfiwV\":\"Recent check-ins\",\"S+0XMX\":\"Recent orders\",\"Fi3b48\":\"最近订单\",\"7hPBBn\":\"位收件人\",\"jp5bq8\":\"位收件人\",\"yPrbsy\":\"收件人\",\"E1F5Ji\":\"收件人在消息发送后可用\",\"WEYdDv\":\"Recommended\",\"wuhHPE\":\"Recurring\",\"asLqwt\":\"重复活动\",\"s3uzsK\":\"重复活动设置\",\"D0tAMe\":\"Recurring events\",\"JjMIKU\":\"Reddit\",\"HiGkFu\":\"正在重定向到 Stripe...\",\"pnoTN5\":\"推荐账户\",\"ACKu03\":\"刷新预览\",\"vuFYA6\":\"Refund all orders for these dates\",\"4cRUK3\":\"Refund all orders for this date\",\"fKn/k6\":\"退款金额\",\"qY4rpA\":\"退款失败\",\"FaK/8G\":[\"退款订单 \",[\"0\"]],\"MGbi9P\":\"退款处理中\",\"BDSRuX\":[\"已退款:\",[\"0\"]],\"bU4bS1\":\"退款\",\"rYXfOA\":\"区域设置\",\"5tl0Bp\":\"注册问题\",\"ZNo5k1\":\"Remaining\",\"Bjh87R\":\"Remove label from all dates\",\"IVZaEo\":\"从活动页面完全移除已售罄的日期和时间。禁用时,它们仍然可见并标记为已售罄。\",\"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\":\"未找到报告\",\"JEPMXN\":\"请求新链接\",\"TMLAx2\":\"必填\",\"mdeIOH\":\"重新发送验证码\",\"sQxe68\":\"重新发送确认\",\"bxoWpz\":\"重新发送确认邮件\",\"G42SNI\":\"重新发送邮件\",\"TTpXL3\":[[\"resendCooldown\"],\"秒后重新发送\"],\"5CiNPm\":\"重新发送门票\",\"Uwsg2F\":\"已预订\",\"8wUjGl\":\"保留至\",\"a5z8mb\":\"Reset to base price\",\"kCn6wb\":\"正在重置...\",\"ZlCDf+\":\"响应\",\"bsydMp\":\"响应详情\",\"yKu/3Y\":\"恢复\",\"RokrZf\":\"恢复活动\",\"/JyMGh\":\"恢复主办方\",\"HFvFRb\":\"恢复此活动以使其重新可见。\",\"DDIcqy\":\"恢复此主办方并使其重新活跃。\",\"mO8KLE\":\"results\",\"6gRgw8\":\"重试\",\"1BG8ga\":\"全部重试\",\"rDC+T6\":\"重试任务\",\"CbnrWb\":\"返回活动\",\"Lf7TCn\":\"当您创建带地址的活动时,可重复使用的场地会自动出现在这里,您也可以自行添加。\",\"mdQ0zb\":\"可在活动中重复使用的场地。通过自动补全创建的地点会自动保存在这里。\",\"XFOPle\":\"Reuse\",\"1Zehp4\":\"Reuse a Stripe connection from another organizer in this account.\",\"Oo/PLb\":\"收入摘要\",\"CfuueU\":\"撤销报价\",\"RIgKv+\":\"Run until a specific date\",\"dFFW9L\":[\"销售已于\",[\"0\"],\"结束\"],\"loCKGB\":[\"销售于\",[\"0\"],\"结束\"],\"wlfBad\":\"销售期\",\"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\":\"销售期已设置\",\"ftzaMf\":\"销售期、订单限制、可见性\",\"zpekWp\":[\"销售于\",[\"0\"],\"开始\"],\"mUv9U4\":\"销售\",\"9KnRdL\":\"销售已暂停\",\"JC3J0k\":\"Sales, attendance, and check-in breakdown per occurrence\",\"3VnlS9\":\"所有活动的销售、订单和性能指标\",\"3Q1AWe\":\"销售额:\",\"LeuERW\":\"Same as event\",\"B4nE3N\":\"示例票价\",\"8BRPoH\":\"示例场地\",\"PiK6Ld\":\"Sat\",\"+5kO8P\":\"Saturday\",\"zJiuDn\":\"Save fee override\",\"NB8Uxt\":\"Save Schedule\",\"KZrfYJ\":\"保存社交链接\",\"9Y3hAT\":\"保存模板\",\"C8ne4X\":\"保存票券设计\",\"cTI8IK\":\"Save VAT settings\",\"6/TNCd\":\"保存增值税设置\",\"4RvD9q\":\"已保存的地点\",\"cgw0cL\":\"已保存的地点\",\"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\":\"已安排\",\"qcP/8K\":\"定时时间\",\"A1taO8\":\"Search\",\"ftNXma\":\"搜索推广员...\",\"VMU+zM\":\"Search attendees\",\"VY+Bdn\":\"按账户名称或电子邮件搜索...\",\"VX+B3I\":\"按活动标题或主办方搜索...\",\"R0wEyA\":\"按任务名称或异常搜索...\",\"YnMfsK\":\"按名称或地址搜索...\",\"VT+urE\":\"按姓名或电子邮件搜索...\",\"GHdjuo\":\"按姓名、电子邮件或账户搜索...\",\"4mBFO7\":\"Search by name, order #, ticket # or email\",\"20ce0U\":\"按订单ID、客户姓名或电子邮件搜索...\",\"4DSz7Z\":\"按主题、活动或账户搜索...\",\"nQC7Z9\":\"Search dates...\",\"iRtEpV\":\"Search dates…\",\"JRM7ao\":\"Search for an address\",\"BWF1kC\":\"搜索消息...\",\"5WYZKZ\":\"搜索结果\",\"IG85fV\":\"搜索已保存的地点或查找地址...\",\"3aD3GF\":\"Seasonal\",\"ku//5b\":\"Second\",\"Mck5ht\":\"安全结账\",\"s7tXqF\":\"See schedule\",\"JFap6u\":\"See what Stripe still needs\",\"p7xUrt\":\"选择类别\",\"hTKQwS\":\"Select a Date & Time\",\"Ps6Xtf\":\"Select a date to see available times\",\"e4L7bF\":\"选择一条消息查看其内容\",\"zPRPMf\":\"选择级别\",\"BFRSTT\":\"选择账户\",\"wgNoIs\":\"Select all\",\"mCB6Je\":\"全选\",\"aCEysm\":[\"Select all on \",[\"0\"]],\"a6+167\":\"选择活动\",\"CFbaPk\":\"选择参会者组\",\"88a49s\":\"Select camera\",\"tVW/yo\":\"选择货币\",\"SJQM1I\":\"Select date\",\"n9ZhRa\":\"选择结束日期和时间\",\"gTN6Ws\":\"选择结束时间\",\"0U6E9W\":\"选择活动类别\",\"j9cPeF\":\"选择事件类型\",\"ypTjHL\":\"Select occurrence\",\"KizCK7\":\"选择开始日期和时间\",\"dJZTv2\":\"选择开始时间\",\"x8XMsJ\":\"为此帐户选择消息级别。这控制消息限制和链接权限。\",\"aT3jZX\":\"选择时区\",\"TxfvH2\":\"选择应该收到此消息的参会者\",\"Ropvj0\":\"选择哪些事件将触发此 Webhook\",\"+6YAwo\":\"selected\",\"ylXj1N\":\"已选择\",\"uq3CXQ\":\"Sell out your event.\",\"oBXbO4\":\"Selling a physical product? Cap its quantity on the <0>products page instead.\",\"j9b/iy\":\"热卖中 🔥\",\"73qYgo\":\"作为测试发送\",\"HMAqFK\":\"向参与者、持票人或订单所有者发送电子邮件。消息可以立即发送或安排稍后发送。\",\"22Itl6\":\"给我发送副本\",\"NpEm3p\":\"立即发送\",\"nOBvex\":\"将实时订单和参与者数据发送到您的外部系统。\",\"1lNPhX\":\"发送退款通知邮件\",\"eaUTwS\":\"发送重置链接\",\"5cV4PY\":\"Send to all occurrences, or choose a specific one\",\"QEQlnV\":\"发送您的第一条消息\",\"IoAuJG\":\"正在发送...\",\"h69WC6\":\"已发送\",\"BVu2Hz\":\"发送者\",\"ZFa8wv\":\"Sent to attendees when a scheduled date is cancelled\",\"SPdzrs\":\"客户下单时发送\",\"LxSN5F\":\"发送给每位参会者及其门票详情\",\"hgvbYY\":\"September\",\"5sN96e\":\"Session cancelled\",\"89xaFU\":\"为此组织者创建的新活动设置默认平台费用设置。\",\"eXssj5\":\"为此组织者创建的新活动设置默认设置。\",\"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\":\"为不同的入口、场次或日期设置签到列表。\",\"TaWVGe\":\"Set up payouts\",\"JA//e6\":\"Set up schedule\",\"gzXY7l\":\"Set Up Schedule\",\"0Ls9qe\":\"Set up the tickets you'll sell and their prices\",\"xMO+Ao\":\"设置您的组织\",\"5pEFnq\":\"Set up your schedule\",\"h/9JiC\":\"Set Up Your Schedule\",\"zRRuUD\":\"Set up your schedule in the next steps\",\"ETC76A\":\"Set, change, or remove the date's location or online details\",\"C3htzi\":\"设置已更新\",\"Ohn74G\":\"设置与设计\",\"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\":\"分享推广链接\",\"hL7sDJ\":\"分享组织者页面\",\"jy6QDF\":\"共享容量管理\",\"jDNHW4\":\"Shift times\",\"tPfIaW\":[\"Shifted times for \",[\"count\"],\" date(s)\"],\"WwlM8F\":\"显示高级选项\",\"cMW+gm\":[\"显示所有平台(另有 \",[\"0\"],\" 个包含值)\"],\"wXi9pZ\":\"Show attendee notes to non-logged-in staff\",\"4LZFir\":\"显示整个日期范围\",\"UVPI5D\":\"显示更少平台\",\"Eu/N/d\":\"显示营销订阅复选框\",\"SXzpzO\":\"默认显示营销订阅复选框\",\"b33PL9\":\"显示更多平台\",\"Eut7p9\":\"Show order details to non-logged-in staff\",\"+RoWKN\":\"Show question answers to non-logged-in staff\",\"jbcx6L\":\"Show remaining capacity on event dates\",\"rXxBOx\":\"Show remaining capacity to buyers\",\"t1LIQW\":[\"显示 \",[\"0\"],\" / \",[\"totalRows\"],\" 条记录\"],\"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\":\"注册时间\",\"5C7J+P\":\"Single Event\",\"E//btK\":\"Skip manually edited dates\",\"paESr6\":\"斯洛伐克语\",\"9wu8nm\":\"Snapchat\",\"kIKb9e\":\"社交\",\"d0rUsW\":\"社交链接\",\"j/TOB3\":\"社交链接与网站\",\"s9KGXU\":\"已售出\",\"yp+0jj\":\"sold out\",\"1hupow\":\"售罄,可加入候补名单\",\"iACSrw\":\"Some details are hidden from public access. Log in to view everything.\",\"Dia6iz\":\"Something went wrong while deleting the image. Please try again.\",\"KTxc6k\":\"出现问题,请重试,或在问题持续时联系客服\",\"lkE00/\":\"出了点问题。请稍后再试。\",\"wdxz7K\":\"来源\",\"fDG2by\":\"Spirituality\",\"oPaRES\":\"Split check-in across days, areas, or ticket types. Share the link with staff — no account needed on their end.\",\"7JFNej\":\"体育\",\"/bfV1Y\":\"Staff instructions\",\"tXkhj/\":\"Start\",\"StWUH4\":\"Start check-in\",\"JcQp9p\":\"开始日期和时间\",\"0m/ekX\":\"开始日期和时间\",\"izRfYP\":\"开始日期为必填项\",\"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/\":\"统计数据\",\"GVUxAX\":\"统计数据基于账户创建日期\",\"29Hx9U\":\"Stats\",\"5ia+r6\":\"Still needed\",\"wuV0bK\":\"停止模拟\",\"s/KaDb\":\"Stripe connected\",\"Bk06QI\":\"Stripe 已连接\",\"akZMv8\":[\"Stripe connection copied from \",[\"0\"],\".\"],\"v0aRY1\":\"Stripe didn't return a setup link. Please try again.\",\"aKtF0O\":\"Stripe未连接\",\"9i0++A\":\"Stripe 支付 ID\",\"R1lIMV\":\"Stripe will need a few more details soon\",\"FzcCHA\":\"Stripe will walk you through a few quick questions to finish setup.\",\"ii0qn/\":\"主题是必需的\",\"M7Uapz\":\"主题将显示在这里\",\"6aXq+t\":\"主题:\",\"JwTmB6\":\"产品复制成功\",\"WUOCgI\":\"已成功提供名额\",\"IvxA4G\":[\"已成功向 \",[\"count\"],\" 人提供门票\"],\"kKpkzy\":\"已成功向 1 人提供门票\",\"Zi3Sbw\":\"已成功从候补名单中移除\",\"RuaKfn\":\"地址更新成功\",\"kzx0uD\":\"成功更新活动默认设置\",\"5n+Wwp\":\"组织者更新成功\",\"DMCX/I\":\"平台费用默认设置更新成功\",\"URUYHc\":\"平台费用设置更新成功\",\"kRWc2g\":\"已成功更新重复活动设置\",\"0Dk/l8\":\"SEO 设置更新成功\",\"S8Tua9\":\"设置更新成功\",\"MhOoLQ\":\"社交链接更新成功\",\"CNSSfp\":\"跟踪设置更新成功\",\"kj7zYe\":\"Webhook 更新成功\",\"dXoieq\":\"摘要\",\"/RfJXt\":[\"夏季音乐节 \",[\"0\"]],\"CWOPIK\":\"2025夏季音乐节\",\"D89zck\":\"Sun\",\"DBC3t5\":\"Sunday\",\"UaISq3\":\"瑞典语\",\"JZTQI0\":\"切换组织者\",\"9YHrNC\":\"系统默认\",\"lruQkA\":\"Tap this screen to resume scanning\",\"TJUrME\":[\"Targeting attendees across \",[\"0\"],\" selected sessions.\"],\"yT6dQ8\":\"按税种和活动分组的已收税款\",\"Ye321X\":\"税种名称\",\"WyCBRt\":\"税务摘要\",\"GkH0Pq\":\"已应用税费\",\"Rwiyt2\":\"税费已配置\",\"iQZff7\":\"税费、费用、可见性、销售期、产品亮点和订单限制\",\"SXvRWU\":\"Team collaboration\",\"vlf/In\":\"科技\",\"SchpMp\":\"Telegram\",\"iWa9cY\":\"告诉人们您的活动会有哪些内容\",\"NiIUyb\":\"介绍一下您的活动\",\"DovcfC\":\"请告诉我们您的组织信息。这些信息将显示在您的活动页面上。\",\"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\":\"模板已激活\",\"QHhZeE\":\"模板创建成功\",\"xrWdPR\":\"模板删除成功\",\"G04Zjt\":\"模板保存成功\",\"xowcRf\":\"服务条款\",\"6K0GjX\":\"文字可能难以阅读\",\"nm3Iz/\":\"感谢您的参与!\",\"pYwj0k\":\"Thanks,\",\"k3IitN\":\"That's a wrap\",\"KfmPRW\":\"页面的背景颜色。使用封面图片时,此颜色将作为叠加层应用。\",\"MDNyJz\":\"验证码将在10分钟后过期。如果您没有收到邮件,请检查垃圾邮件文件夹。\",\"AIF7J2\":\"定义固定费用的货币。结账时将转换为订单货币。\",\"7oksH+\":[\"折扣将从每个符合条件的商品中扣除。例如:立减 \",[\"currencySymbol\"],\"10 × 3 张票 = 共减 \",[\"currencySymbol\"],\"30。\"],\"sKL8k2\":\"折扣仅从订单总额中扣除一次。\",\"cDHM1d\":\"电子邮件地址已更改。参与者将在更新后的电子邮件地址收到新门票。\",\"tXadb0\":\"您查找的活动目前不可用。它可能已被删除、过期或 URL 不正确。\",\"5fPdZe\":\"The first date this schedule will generate from.\",\"sxKqBm\":\"订单全额将退款至客户的原始付款方式。\",\"KgDp6G\":\"您尝试访问的链接已过期或不再有效。请检查您的电子邮件以获取管理订单的更新链接。\",\"Np4eLs\":[\"The maximum is \",[\"MAX_PREVIEW\"],\" sessions. Please reduce the date range, frequency, or number of sessions per day.\"],\"sYLeDq\":\"未找到您要查找的组织者。页面可能已被移动、删除或链接有误。\",\"PCr4zw\":\"The override is recorded in the order audit log.\",\"C4nQe5\":\"平台费用会添加到票价中。买家支付更多,但您会收到完整的票价。\",\"HxxXZO\":\"用于按钮和突出显示的主要品牌颜色\",\"OVSkIF\":\"敏捷的棕色狐狸跳过懒狗。\",\"z0KrIG\":\"定时时间为必填项\",\"EWErQh\":\"定时时间必须是将来的时间\",\"UNd0OU\":[\"The session for \\\"\",[\"title\"],\"\\\" originally scheduled for \",[\"0\"],\" has been rescheduled.\"],\"DEcpfp\":\"模板正文包含无效的Liquid语法。请更正后再试。\",\"injXD7\":\"增值税号无法验证。请检查号码并重试。\",\"A4UmDy\":\"戏剧\",\"tDwYhx\":\"主题与颜色\",\"ybBP2H\":\"There are no products available for this date. Please choose another date.\",\"O7g4eR\":\"There are no upcoming dates for this event\",\"062KsE\":\"These details are shown on the attendee's ticket and order summary for this date only.\",\"5Eu+tn\":\"这些详情仅在订单成功完成后显示。\",\"jQjwR+\":\"These details will replace any existing location on the affected dates and show on attendee tickets.\",\"6eaLu/\":\"这些价格适用于日程中的所有场次,层级数量限制的是所有场次合计的总销量。层级的销售日期全局生效。您可以在<0>场次安排页面为单个场次覆盖价格。\",\"QP3gP+\":\"这些设置仅适用于复制的嵌入代码,不会被保存。\",\"HirZe8\":\"这些模板将用作您组织中所有活动的默认模板。单个活动可以用自己的自定义版本覆盖这些模板。\",\"lzAaG5\":\"这些模板将仅覆盖此活动的组织者默认设置。如果这里没有设置自定义模板,将使用组织者模板。\",\"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\":\"此代码将用于跟踪销售。只允许字母、数字、连字符和下划线。\",\"AaP0M+\":\"此颜色组合对某些用户来说可能难以阅读\",\"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.\",\"E9BqZw\":\"This date only\",\"RzEvf5\":\"此活动已结束\",\"kc4bIA\":\"此活动还没有门票或商品,参与者将无法报名。\",\"eMaNd0\":\"This event is not available\",\"YClrdK\":\"此活动尚未发布\",\"GL6z+k\":\"该活动已售罄\",\"pIwDhS\":\"This event's dates and times are set on the occurrence schedule.\",\"ny5rgr\":\"This is a recurring event\",\"tc64Zz\":\"这是将显示在活动页面上的类别名称。\",\"dFJnia\":\"这是您的组织者名称,将展示给用户。\",\"vt7jiq\":\"签名密钥仅显示一次。请立即复制并妥善保存。\",\"5DpZrC\":\"此设置限制的是整个日程所有场次的总销量,而不是每场的限制。如需限制每场的人数,请在<0>场次安排页面设置容量。\",\"L7dIM7\":\"此链接无效或已过期。\",\"MR5ygV\":\"此链接不再有效\",\"9LEqK0\":\"此名称对最终用户可见\",\"QdUMM9\":\"This occurrence is at capacity\",\"j5FdeA\":\"此订单正在处理中。\",\"sjNPMw\":\"此订单已被放弃。您可以随时开始新订单。\",\"OhCesD\":\"此订单已被取消。您可以随时开始新订单。\",\"lyD7rQ\":\"此主办方资料尚未发布\",\"9b5956\":\"此预览显示您的邮件使用示例数据的外观。实际邮件将使用真实值。\",\"uM9Alj\":\"此产品在活动页面上已突出显示\",\"RqSKdX\":\"此产品已售罄\",\"qEGn8I\":\"此重复活动还没有日期,参与者无法预订。\",\"W12OdJ\":\"此报告仅供参考。在将此数据用于会计或税务目的之前,请务必咨询税务专业人士。请与您的Stripe仪表板进行交叉验证,因为Hi.Events可能缺少历史数据。\",\"1LuJNw\":\"此票已失效\",\"0Ew0uk\":\"此门票刚刚被扫描。请等待后再次扫描。\",\"FYXq7k\":[\"This will affect \",[\"loadedAffectedCount\"],\" date(s).\"],\"kvpxIU\":\"这将用于通知和与用户沟通。\",\"rhsath\":\"这对客户不可见,但有助于您识别推广员。\",\"hV6FeJ\":\"Throughput\",\"+FjWgX\":\"Thu\",\"kkDQ8m\":\"Thursday\",\"0GSPnc\":\"票券设计\",\"EZC/Cu\":\"票券设计保存成功\",\"bbslmb\":\"门票设计器\",\"1BPctx\":\"门票:\",\"HGuXjF\":\"票务持有人\",\"CMUt3Y\":\"票务持有人\",\"awHmAT\":\"门票 ID\",\"6czJik\":\"门票标志\",\"t79rDv\":\"未找到门票\",\"6tmWch\":\"票或商品\",\"1tfWrD\":\"门票预览:\",\"KnjoUA\":\"票价\",\"pGZOcL\":\"门票重新发送成功\",\"o02GZM\":\"Ticket sales have ended for this event\",\"8jLPgH\":\"票券类型\",\"8qsbZ5\":\"票务与销售\",\"zNECqg\":\"门票\",\"6GQNLE\":\"门票\",\"NRhrIB\":\"票务与商品\",\"OrWHoZ\":\"当有空余名额时,门票将自动提供给候补名单中的客户。\",\"EUnesn\":\"门票有售\",\"AGRilS\":\"已售票数\",\"zyUxcw\":\"TikTok\",\"LhMjLm\":\"Time\",\"fXf2r5\":[\"Times shown in \",[\"timezoneAbbr\"]],\"dMtLDE\":\"to\",\"/jQctM\":\"收件人\",\"tiI71C\":\"要提高您的限制,请联系我们\",\"ecUA8p\":\"Today\",\"W428WC\":\"切换列\",\"BRMXj0\":\"Tomorrow\",\"UBSG1X\":\"顶级组织者(过去14天)\",\"3sZ0xx\":\"总账户数\",\"SMDzqJ\":\"总参与人数\",\"orBECM\":\"总收款\",\"k5CU8c\":\"总条目\",\"4B7oCp\":\"总费用\",\"sMMlTX\":\"Total fees\",\"mlvCEl\":\"Total orders\",\"2AW/k5\":\"所有场次的总数量\",\"dp8BCb\":\"Total tax\",\"vb0Q0/\":\"总用户数\",\"oJjplO\":\"总浏览量\",\"rBZ9pz\":\"Tours\",\"orluER\":\"按归因来源跟踪账户增长和表现\",\"YwKzpH\":\"跟踪与分析\",\"GUA0Jy\":\"Try a different search term or filter\",\"2P/OWN\":\"Try adjusting your filters to see more dates.\",\"ouM5IM\":\"尝试其他邮箱\",\"3DZvE7\":\"免费试用Hi.Events\",\"vq2WxD\":\"Tue\",\"G3myU+\":\"Tuesday\",\"Kz91g/\":\"土耳其语\",\"GdOhw6\":\"关闭声音\",\"KUOhTy\":\"开启声音\",\"dBeuY2\":\"Twitch\",\"QytzQr\":\"输入\\\"删除\\\"以确认\",\"nWRfmt\":\"排版\",\"IrVSu+\":\"无法复制产品。请检查您的详细信息\",\"Vx2J6x\":\"无法获取参与者\",\"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\":\"未归因账户\",\"9uI/rE\":\"Undo\",\"Ef7StM\":\"未知\",\"ZBAScj\":\"未知参会者\",\"MEIAzV\":\"未命名\",\"K6L5Mx\":\"未命名地点\",\"7yiFvZ\":\"未支付\",\"X13xGn\":\"不受信任\",\"gyXpQN\":\"Upcoming events\",\"Pp1sWX\":\"更新推广员\",\"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\":\"上传组织者封面图像\",\"4kEGqW\":\"上传组织者 Logo\",\"lnCMdg\":\"上传图片\",\"29w7p6\":\"正在上传图像...\",\"HtrFfw\":\"URL 是必填项\",\"vzWC39\":\"USB\",\"td5pxI\":\"USB scanner listening\",\"dyTklH\":\"USB scanner paused\",\"OHJXlK\":\"使用 <0>Liquid 模板 个性化您的邮件\",\"/rsy72\":\"Use event default\",\"0k4cdb\":\"对所有参与者使用订单详情。参与者姓名和电子邮件将与买家信息匹配。\",\"bA31T4\":\"为所有参与者使用购买者的信息\",\"PpgtnC\":\"使用此地址\",\"rnoQsz\":\"用于边框、高亮和二维码样式\",\"BV4L/Q\":\"UTM 分析\",\"l5ackE\":\"UUID\",\"imLQ9Y\":\"正在验证您的增值税号...\",\"t7caBM\":\"VAT country code\",\"WLkfqH\":\"VAT number\",\"pnVh83\":\"增值税号码\",\"CabI04\":\"增值税号不得包含空格\",\"PMhxAR\":\"增值税号必须以2字母国家代码开头,后跟8-15个字母数字字符(例如,DE123456789)\",\"gPgdNV\":\"增值税号验证成功\",\"RUMiLy\":\"增值税号验证失败\",\"vqji3Y\":\"增值税号验证失败。请检查您的增值税号。\",\"8dENF9\":\"费用增值税\",\"ZutOKU\":\"增值税率\",\"+KJZt3\":\"VAT registered\",\"Nfbg76\":\"增值税设置已成功保存\",\"UvYql/\":\"增值税设置已保存。我们正在后台验证您的增值税号。\",\"bXn1Jz\":\"VAT settings updated\",\"tJylUv\":\"平台费用的增值税处理\",\"FlGprQ\":\"平台费用的增值税处理:欧盟增值税注册企业可以使用反向收费机制(0% - 增值税指令2006/112/EC第196条)。未注册增值税的企业需缴纳23%的爱尔兰增值税。\",\"516oLj\":\"增值税验证服务暂时不可用\",\"p6QQLa\":[\"VAT: \",[\"0\"]],\"5q87Y9\":\"VAT: not registered\",\"AdWhjZ\":\"验证码\",\"kUAumu\":\"Verification email sent. Check your inbox.\",\"QDEWii\":\"已验证\",\"wCKkSr\":\"验证邮箱\",\"/IBv6X\":\"验证您的邮箱\",\"u8nB38\":\"Verify your email so attendees can receive tickets\",\"e/cvV1\":\"正在验证...\",\"fROFIL\":\"越南语\",\"p5nYkr\":\"View All\",\"yA/6BX\":\"View all →\",\"6CQ7/B\":\"View all capabilities\",\"YSE15b\":\"View all check-in lists\",\"RnvnDc\":\"查看平台上发送的所有消息\",\"+WFMis\":\"查看和下载所有活动的报告。仅包含已完成的订单。\",\"c7VN/A\":\"查看答案\",\"SZw9tS\":\"查看详情\",\"9+84uW\":[\"View details for \",[\"0\"],\" \",[\"1\"]],\"FCVmuU\":\"查看活动\",\"c6SXHN\":\"查看活动页面\",\"n6EaWL\":\"查看日志\",\"OaKTzt\":\"查看地图\",\"zNZNMs\":\"查看消息\",\"67OJ7t\":\"查看订单\",\"tKKZn0\":\"查看订单详情\",\"KeCXJu\":\"查看订单详情、退款和重新发送确认。\",\"9jnAcN\":\"查看组织者主页\",\"1J/AWD\":\"查看门票\",\"N9FyyW\":\"查看、编辑和导出您的注册参与者。\",\"6dp/Hz\":\"Vimeo\",\"SS4mGB\":\"VK\",\"uUehLT\":\"等待中\",\"quR8Qp\":\"等待付款\",\"KrurBH\":\"Waiting for scan…\",\"u0n+wz\":\"候补名单\",\"3RXFtE\":\"等候名单已启用\",\"TwnTPy\":\"等候名单报价已过期\",\"aUi/Dz\":\"警告:这是系统默认配置。更改将影响所有未分配特定配置的账户。\",\"aT/44s\":\"We couldn't copy that Stripe connection. Please try again.\",\"RRZDED\":\"我们找不到与此邮箱关联的订单。\",\"2RZK9x\":\"我们找不到您要查找的订单。链接可能已过期或订单详情可能已更改。\",\"nefMIK\":\"我们找不到您要查找的门票。链接可能已过期或门票详情可能已更改。\",\"miysJh\":\"我们找不到此订单。它可能已被删除。\",\"Fjj/5/\":\"We couldn't load the check-in lists. Please try again.\",\"ADsQ23\":\"We couldn't reach Stripe just now. Please try again in a moment.\",\"HJKdzP\":\"加载此页面时遇到问题。请重试。\",\"jegrvW\":\"We partner with Stripe to send payouts straight to your bank account.\",\"IfN2Qo\":\"我们建议使用最小尺寸为200x200像素的方形标志\",\"wJzo/w\":\"建议尺寸为 400x400 像素,文件大小不超过 5MB\",\"L/KlAh\":[\"We sent a verification link to \",[\"0\"]],\"KRCDqH\":\"我们使用 Cookie 来帮助我们了解网站的使用情况并改善您的体验。\",\"x8rEDQ\":\"我们在多次尝试后无法验证您的增值税号。我们将在后台继续尝试。请稍后检查。\",\"mfM/HJ\":[\"如果\",[\"productDisplayName\"],\"在\",[\"occurrenceDate\"],\"有空位,我们将通过电子邮件通知您。\"],\"iy+M+c\":[\"如果\",[\"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\":\"我们将把您的门票发送到此邮箱\",\"ZOmUYW\":\"我们将在后台验证您的增值税号。如有任何问题,我们会通知您。\",\"LKjHr4\":[\"We've made changes to the schedule for \\\"\",[\"title\"],\"\\\" — \",[\"description\"],\" affecting \",[\"affectedCount\"],\" session(s).\"],\"Fq/Nx7\":\"我们已向以下邮箱发送了5位数验证码:\",\"GdWB+V\":\"Webhook 创建成功\",\"2X4ecw\":\"Webhook 删除成功\",\"ndBv0v\":\"Webhook integrations\",\"CThMKa\":\"Webhook 日志\",\"I0adYQ\":\"Webhook 签名密钥\",\"nuh/Wq\":\"Webhook URL\",\"8BMPMe\":\"Webhook 不会发送通知\",\"FSaY52\":\"Webhook 将发送通知\",\"v1kQyJ\":\"Webhooks\",\"On0aF2\":\"网站\",\"0f7U0k\":\"Wed\",\"VAcXNz\":\"Wednesday\",\"64X6l4\":\"week\",\"4XSc4l\":\"Weekly\",\"IAUiSh\":\"weeks\",\"vKLEXy\":\"微博\",\"9eF5oV\":\"欢迎回来\",\"QDWsl9\":[\"欢迎来到 \",[\"0\"],\",\",[\"1\"],\" 👋\"],\"LETnBR\":[\"欢迎来到 \",[\"0\"],\",这是您所有活动的列表\"],\"DDbx7K\":\"Wellness\",\"ywRaYa\":\"What time?\",\"FaSXqR\":\"什么类型的活动?\",\"0WyYF4\":\"What unauthenticated staff can see\",\"2+ExvJ\":\"WhatsApp\",\"cxsKvw\":\"当签到被删除时\",\"RPe6bE\":\"When a date is cancelled on a recurring event\",\"Gmd0hv\":\"当新与会者被创建时\",\"zyIyPe\":\"当创建新活动时\",\"Lc18qn\":\"当新订单被创建时\",\"dfkQIO\":\"当新产品被创建时\",\"8OhzyY\":\"当产品被删除时\",\"tRXdQ9\":\"当产品被更新时\",\"9L9/28\":\"当产品售罄时,客户可以加入等候名单,以便在有空位时收到通知。\",\"OIkHj+\":\"当产品售罄时,客户可以加入候补名单,以便在有空位时收到通知。客户加入的是特定日期的候补名单,名额也按日期提供。\",\"Q7CWxp\":\"当与会者被取消时\",\"IuUoyV\":\"当与会者签到时\",\"nBVOd7\":\"当与会者被更新时\",\"t7cuMp\":\"当活动被归档时\",\"gtoSzE\":\"当活动被更新时\",\"ny2r8d\":\"当订单被取消时\",\"c9RYbv\":\"当订单被标记为已支付时\",\"ejMDw1\":\"当订单被退款时\",\"fVPt0F\":\"当订单被更新时\",\"bcYlvb\":\"签到何时关闭\",\"XIG669\":\"签到何时开放\",\"de6HLN\":\"当客户购买门票后,他们的订单将显示在此处。\",\"pm9tpn\":\"启用后,购买者可以一次性将自己的姓名和电子邮箱复制给所有参会者。关闭此选项可移除“所有参会者”选项;购买者仍可复制给第一位参会者,其余参会者须逐一填写。\",\"403wpZ\":\"启用后,新活动将允许参与者通过安全链接管理自己的门票详情。这可以按活动覆盖。\",\"blXLKj\":\"启用后,新活动将在结账时显示营销订阅复选框。此设置可以针对每个活动单独覆盖。\",\"Kj0Txn\":\"启用后,Stripe Connect交易将不收取应用费用。用于不支持应用费用的国家。\",\"uchB0M\":\"小部件预览\",\"uvIqcj\":\"研讨会\",\"EpknJA\":\"请在此输入您的消息...\",\"nhtR6Y\":\"X(推特)\",\"7qI8sJ\":\"year\",\"zkWmBh\":\"Yearly\",\"+BGee5\":\"years\",\"X/azM1\":\"是 - 我有有效的欧盟增值税注册号码\",\"Tz5oXG\":\"是,取消我的订单\",\"QlSZU0\":[\"您正在模拟 <0>\",[\"0\"],\" (\",[\"1\"],\")\"],\"s14PLh\":[\"您正在发出部分退款。客户将获得 \",[\"0\"],\" \",[\"1\"],\" 的退款。\"],\"o7LgX6\":\"您可以在账户设置中配置额外的服务费和税费。\",\"rj3A7+\":\"You can override this for individual dates later.\",\"paWwQ0\":\"如有需要,您仍然可以手动提供门票。\",\"jTDzpA\":\"您无法归档账户中最后一个活跃的主办方。\",\"D8baxD\":\"您有付费门票,但尚未连接 Stripe,因此无法收款。\",\"5VGIlq\":\"您已达到消息限制。\",\"casL1O\":\"您已向免费产品添加了税费。您想要删除它们吗?\",\"9jJNZY\":\"保存前必须确认您的责任\",\"pCLes8\":\"您必须同意接收消息\",\"FVTVBy\":\"您必须先验证电子邮箱地址,才能更新组织者状态。\",\"ze4bi/\":\"You need to create at least one occurrence before you can add attendees to this recurring event.\",\"w65ZgF\":\"您需要验证账户电子邮件后才能修改电子邮件模板。\",\"FRl8Jv\":\"您需要验证您的帐户电子邮件才能发送消息。\",\"88cUW+\":\"您收到\",\"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\":[\"您将参加 \",[\"0\"],\"!\"],\"ZlLcht\":[\"您正在加入\",[\"occurrenceDate\"],\"的候补名单。\"],\"qGZz0m\":\"您已加入候补名单!\",\"/5HL6k\":\"您已获得一个名额!\",\"gbjFFH\":\"You've changed the session time\",\"p/Sa0j\":\"您的帐户有消息限制。要提高您的限制,请联系我们\",\"x/xjzn\":\"您的推广员已成功导出。\",\"TF37u6\":\"您的与会者已成功导出。\",\"79lXGw\":\"您的签到列表已成功创建。与您的签到工作人员共享以下链接。\",\"BnlG9U\":\"您当前的订单将丢失。\",\"nBqgQb\":\"您的电子邮件\",\"GG1fRP\":\"您的活动已上线!\",\"ifRqmm\":\"您的消息已成功发送!\",\"0/+Nn9\":\"您的消息将显示在此处\",\"/Rj5P4\":\"您的姓名\",\"PFjJxY\":\"您的新密码长度必须至少为8个字符。\",\"gzrCuN\":\"您的订单详情已更新。确认邮件已发送到新的电子邮件地址。\",\"naQW82\":\"您的订单已被取消。\",\"bhlHm/\":\"您的订单正在等待付款\",\"XeNum6\":\"您的订单已成功导出。\",\"Xd1R1a\":\"您组织者的地址\",\"WWYHKD\":\"您的付款受到银行级加密保护\",\"5b3QLi\":\"您的计划\",\"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\":\"您的门票已确认。\",\"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 de5728a22e..267dabd87b 100644 --- a/frontend/src/locales/zh-cn.po +++ b/frontend/src/locales/zh-cn.po @@ -179,11 +179,11 @@ msgstr "" msgid "{totalCount} ticket types" msgstr "{totalCount} 个票种" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:554 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:567 msgid "{totalOccurrences} dates" msgstr "" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:547 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:560 msgid "{totalOccurrences} sessions across {0} dates ({1, plural, one {# session} other {# sessions}} per day)" msgstr "" @@ -516,7 +516,7 @@ msgstr "活跃活动" msgid "Active payment methods" msgstr "" -#: src/components/routes/event/OccurrencesTab/index.tsx:400 +#: src/components/routes/event/OccurrencesTab/index.tsx:402 msgid "Activity" msgstr "" @@ -536,11 +536,11 @@ msgstr "" msgid "Add a description for this check-in list" msgstr "为此签到列表添加描述" -#: src/components/routes/event/OccurrencesTab/index.tsx:538 +#: src/components/routes/event/OccurrencesTab/index.tsx:541 msgid "Add a Single Date" msgstr "" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:739 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:752 msgid "Add another time" msgstr "" @@ -560,7 +560,7 @@ msgstr "添加关于订单的备注。这些信息不会对客户可见。" msgid "Add any notes about the order..." msgstr "添加关于订单的备注..." -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:375 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:382 msgid "Add at least one time" msgstr "" @@ -580,7 +580,7 @@ msgstr "" msgid "Add dates" msgstr "添加日期" -#: src/components/routes/event/OccurrencesTab/index.tsx:524 +#: src/components/routes/event/OccurrencesTab/index.tsx:526 msgid "Add Dates" msgstr "" @@ -611,7 +611,7 @@ msgstr "添加线下支付的说明(例如,银行转账详情、支票寄送 msgid "Add Location" msgstr "添加地点" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:743 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:756 msgid "Add multiple times if you run several sessions per day." msgstr "" @@ -796,7 +796,7 @@ msgid "all" msgstr "" #: src/components/layouts/CheckIn/tabs/SearchTab.tsx:133 -#: src/components/routes/event/OccurrencesTab/index.tsx:485 +#: src/components/routes/event/OccurrencesTab/index.tsx:487 msgid "All" msgstr "" @@ -987,7 +987,7 @@ msgstr "出现意外错误。" msgid "An unexpected error occurred. Please try again." msgstr "出现意外错误。请重试。" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:849 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:862 msgid "and {0} more..." msgstr "" @@ -1003,7 +1003,7 @@ msgstr "" msgid "Answers provided at checkout (e.g. meal choice)" msgstr "" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:564 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:577 msgid "Any dates you've manually customized will be kept." msgstr "" @@ -1071,7 +1071,7 @@ msgstr "" msgid "Approve Message" msgstr "批准消息" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:74 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:76 msgid "April" msgstr "" @@ -1127,7 +1127,7 @@ msgstr "您确定要归档此活动吗?它将不再对公众可见。" msgid "Are you sure you want to archive this organizer? This will also archive all events belonging to this organizer." msgstr "您确定要归档此主办方吗?这也将归档属于此主办方的所有活动。" -#: src/components/routes/event/OccurrencesTab/index.tsx:213 +#: src/components/routes/event/OccurrencesTab/index.tsx:215 msgid "Are you sure you want to cancel {count} date(s)? Affected attendees will be notified by email." msgstr "" @@ -1159,7 +1159,7 @@ msgstr "确定要删除此配置吗?这可能会影响使用它的账户。" #: src/components/modals/ManageOccurrenceModal/index.tsx:58 #: src/components/routes/event/OccurrenceDetail/index.tsx:84 -#: src/components/routes/event/OccurrencesTab/index.tsx:182 +#: src/components/routes/event/OccurrencesTab/index.tsx:184 msgid "Are you sure you want to delete this date? This action cannot be undone." msgstr "" @@ -1446,7 +1446,7 @@ msgstr "归因细分" msgid "Attribution Value" msgstr "归因值" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:78 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:80 msgid "August" msgstr "" @@ -1625,7 +1625,7 @@ msgstr "巴西葡萄牙语" msgid "Built-in fraud protection" msgstr "" -#: src/components/routes/event/OccurrencesTab/index.tsx:515 +#: src/components/routes/event/OccurrencesTab/index.tsx:517 msgid "Bulk Edit" msgstr "" @@ -1674,11 +1674,11 @@ msgstr "通过添加跟踪像素,您确认您和本平台是所收集数据的 msgid "By continuing, you agree to the <0>{0} Terms of Service" msgstr "继续操作即表示您同意<0>{0}服务条款" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:628 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:641 msgid "By day of month" msgstr "" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:629 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:642 msgid "By day of week" msgstr "" @@ -1698,7 +1698,7 @@ msgstr "绕过应用费用" msgid "Calculation Type" msgstr "计算类型" -#: src/components/routes/event/OccurrencesTab/index.tsx:471 +#: src/components/routes/event/OccurrencesTab/index.tsx:473 msgid "Calendar" msgstr "" @@ -1735,7 +1735,7 @@ msgstr "" #: src/components/modals/ManageOrderModal/index.tsx:209 #: src/components/modals/PublishEventModal/index.tsx:208 #: src/components/routes/event/messages.tsx:80 -#: src/components/routes/event/OccurrencesTab/index.tsx:497 +#: src/components/routes/event/OccurrencesTab/index.tsx:499 #: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:272 #: src/components/routes/event/OccurrencesTab/OccurrenceEditModal/index.tsx:306 #: src/components/routes/event/OccurrencesTab/OccurrenceMenu.tsx:61 @@ -1748,8 +1748,8 @@ msgstr "" msgid "Cancel" msgstr "取消" -#: src/components/routes/event/OccurrencesTab/index.tsx:209 -#: src/components/routes/event/OccurrencesTab/index.tsx:221 +#: src/components/routes/event/OccurrencesTab/index.tsx:211 +#: src/components/routes/event/OccurrencesTab/index.tsx:223 msgid "Cancel {count} date(s)" msgstr "" @@ -1809,7 +1809,7 @@ msgstr "取消将取消与此订单关联的所有参与者,并将门票释放 msgid "Cancelled" msgstr "已取消" -#: src/components/routes/event/OccurrencesTab/index.tsx:235 +#: src/components/routes/event/OccurrencesTab/index.tsx:237 msgid "Cancelling {0} date(s). This may take a moment to complete." msgstr "" @@ -1819,7 +1819,7 @@ msgstr "无法删除系统默认配置" #: src/components/forms/CapaciyAssigmentForm/index.tsx:42 #: src/components/routes/event/OccurrencesTab/OccurrenceEditModal/index.tsx:503 -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:811 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:824 msgid "Capacity" msgstr "容量" @@ -2154,7 +2154,7 @@ msgid "City" msgstr "城市" #: src/components/common/OccurrenceSelect/index.tsx:133 -#: src/components/routes/event/OccurrencesTab/index.tsx:503 +#: src/components/routes/event/OccurrencesTab/index.tsx:505 msgid "Clear" msgstr "" @@ -2174,7 +2174,7 @@ msgstr "清除搜索文本" msgid "Clearing removes any per-date override. Affected dates will fall back to the event's default location." msgstr "" -#: src/components/routes/event/OccurrencesTab/index.tsx:331 +#: src/components/routes/event/OccurrencesTab/index.tsx:333 msgid "Click to cancel" msgstr "" @@ -2182,7 +2182,7 @@ msgstr "" msgid "Click to copy" msgstr "点击复制" -#: src/components/routes/event/OccurrencesTab/index.tsx:333 +#: src/components/routes/event/OccurrencesTab/index.tsx:335 msgid "Click to reopen for new sales" msgstr "" @@ -2743,7 +2743,7 @@ msgstr "创建{0}模板" msgid "Create a custom widget to sell tickets on your site." msgstr "创建自定义小部件以在您的网站上销售门票。" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:785 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:798 msgid "Create a fixed number" msgstr "" @@ -2879,7 +2879,7 @@ msgstr "创建促销代码" msgid "Create Question" msgstr "创建问题" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:864 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:877 msgid "Create Schedule" msgstr "" @@ -2927,6 +2927,10 @@ msgstr "创建您自己的活动" msgid "Created" msgstr "已创建" +#: src/components/routes/event/OccurrencesTab/index.tsx:549 +msgid "Creating {0} dates. This may take a moment." +msgstr "正在创建 {0} 个日期。这可能需要一些时间。" + #: src/components/routes/welcome/index.tsx:472 msgid "Creating Event..." msgstr "正在创建活动..." @@ -3066,7 +3070,7 @@ msgstr "定制您的活动页面" msgid "Customize your organizer page appearance" msgstr "自定义主办方页面外观" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:56 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:58 #: src/components/routes/product-widget/OccurrenceSelector/index.tsx:32 msgid "Daily" msgstr "" @@ -3155,7 +3159,7 @@ msgstr "" #: src/components/modals/ManageOccurrenceModal/index.tsx:61 #: src/components/routes/event/OccurrenceDetail/index.tsx:87 -#: src/components/routes/event/OccurrencesTab/index.tsx:184 +#: src/components/routes/event/OccurrencesTab/index.tsx:186 msgid "Date deleted" msgstr "" @@ -3168,7 +3172,7 @@ msgstr "" msgid "Date reactivated" msgstr "" -#: src/components/routes/event/OccurrencesTab/index.tsx:198 +#: src/components/routes/event/OccurrencesTab/index.tsx:200 msgid "Date reopened for new sales" msgstr "" @@ -3184,15 +3188,15 @@ msgstr "" msgid "Dates with sessions" msgstr "" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:93 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:95 msgid "day" msgstr "" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:659 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:672 msgid "Day" msgstr "" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:676 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:689 msgid "Day of Month" msgstr "" @@ -3200,19 +3204,19 @@ msgstr "" msgid "Day one capacity" msgstr "第一天容量" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:101 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:103 msgid "days" msgstr "" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:635 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:648 msgid "Days of Month" msgstr "" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:605 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:618 msgid "Days of Week" msgstr "" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:82 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:84 msgid "December" msgstr "" @@ -3230,7 +3234,7 @@ msgstr "默认" msgid "Default attendee information collection" msgstr "默认参与者信息收集" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:815 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:828 msgid "Default capacity per date" msgstr "" @@ -3253,7 +3257,7 @@ msgstr "删除" #: src/components/common/QuestionsTable/index.tsx:150 #: src/components/common/TaxAndFeeList/index.tsx:81 #: src/components/routes/admin/FailedJobs/index.tsx:209 -#: src/components/routes/event/OccurrencesTab/index.tsx:500 +#: src/components/routes/event/OccurrencesTab/index.tsx:502 #: src/components/routes/event/OccurrencesTab/OccurrenceMenu.tsx:62 msgid "Delete" msgstr "删除" @@ -3262,7 +3266,7 @@ msgstr "删除" msgid "Delete \"{0}\"?" msgstr "删除\"{0}\"?" -#: src/components/routes/event/OccurrencesTab/index.tsx:247 +#: src/components/routes/event/OccurrencesTab/index.tsx:249 msgid "Delete {count} selected date(s)? Dates with orders will be skipped. This cannot be undone." msgstr "" @@ -3344,7 +3348,7 @@ msgstr "删除此问题?此操作无法撤销。" msgid "Delete webhook" msgstr "删除 Webhook" -#: src/components/routes/event/OccurrencesTab/index.tsx:253 +#: src/components/routes/event/OccurrencesTab/index.tsx:255 msgid "Deleted {0} date(s)" msgstr "" @@ -3565,7 +3569,7 @@ msgstr "例如 180(3小时)" #: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:452 #: src/components/routes/event/OccurrencesTab/OccurrenceEditModal/index.tsx:450 -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:714 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:727 msgid "e.g. Morning Session" msgstr "" @@ -3724,7 +3728,7 @@ msgstr "编辑 Webhook" msgid "Edit Webhook" msgstr "编辑 Webhook" -#: src/components/routes/event/OccurrencesTab/index.tsx:306 +#: src/components/routes/event/OccurrencesTab/index.tsx:308 msgid "Edited" msgstr "" @@ -3913,7 +3917,7 @@ msgstr "启用候补名单" msgid "Enabled" msgstr "已启用" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:704 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:717 msgid "End" msgstr "" @@ -3934,7 +3938,7 @@ msgstr "结束日期和时间(可选)" msgid "End date must be after start date" msgstr "结束日期必须在开始日期之后" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:771 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:784 msgid "End on a date" msgstr "" @@ -4409,7 +4413,7 @@ msgstr "取消与会者失败" msgid "Failed to cancel date" msgstr "" -#: src/components/routes/event/OccurrencesTab/index.tsx:239 +#: src/components/routes/event/OccurrencesTab/index.tsx:241 msgid "Failed to cancel dates" msgstr "" @@ -4429,10 +4433,14 @@ msgstr "创建推广员失败" msgid "Failed to create configuration" msgstr "配置创建失败" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:530 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:543 msgid "Failed to create schedule" msgstr "" +#: src/hooks/useOccurrenceGenerationPolling.ts:44 +msgid "Failed to create schedule. Please try again." +msgstr "创建日程失败。请重试。" + #: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:192 #: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:195 msgid "Failed to create template" @@ -4444,7 +4452,7 @@ msgstr "配置删除失败" #: src/components/modals/ManageOccurrenceModal/index.tsx:64 #: src/components/routes/event/OccurrenceDetail/index.tsx:90 -#: src/components/routes/event/OccurrencesTab/index.tsx:185 +#: src/components/routes/event/OccurrencesTab/index.tsx:187 msgid "Failed to delete date" msgstr "" @@ -4452,7 +4460,7 @@ msgstr "" msgid "Failed to delete date. It may have existing orders." msgstr "" -#: src/components/routes/event/OccurrencesTab/index.tsx:256 +#: src/components/routes/event/OccurrencesTab/index.tsx:258 msgid "Failed to delete dates" msgstr "" @@ -4540,7 +4548,7 @@ msgstr "从等候名单中移除失败" msgid "Failed to remove override" msgstr "" -#: src/components/routes/event/OccurrencesTab/index.tsx:199 +#: src/components/routes/event/OccurrencesTab/index.tsx:201 msgid "Failed to reopen date" msgstr "" @@ -4677,7 +4685,7 @@ msgstr "" msgid "Fast payouts to your bank" msgstr "" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:72 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:74 msgid "February" msgstr "" @@ -4769,7 +4777,7 @@ msgstr "" msgid "Finish setup" msgstr "" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:63 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:65 msgid "First" msgstr "" @@ -4882,7 +4890,7 @@ msgstr "页脚文字" msgid "Forgot password?" msgstr "忘记密码?" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:66 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:68 msgid "Fourth" msgstr "" @@ -4909,11 +4917,11 @@ msgstr "免费产品,无需付款信息" msgid "French" msgstr "法语" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:586 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:599 msgid "Frequency" msgstr "" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:50 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:52 msgid "Fri" msgstr "" @@ -5004,7 +5012,7 @@ msgstr "GitHub" #: src/components/routes/event/OccurrenceDetail/index.tsx:72 #: src/components/routes/event/OccurrencesTab/cancelOccurrenceDialog.tsx:49 -#: src/components/routes/event/OccurrencesTab/index.tsx:221 +#: src/components/routes/event/OccurrencesTab/index.tsx:223 #: src/components/routes/event/OccurrencesTab/OccurrenceEditModal/index.tsx:339 #: src/components/routes/event/OccurrencesTab/OccurrenceEditModal/index.tsx:363 msgid "Go Back" @@ -5271,7 +5279,7 @@ msgstr "折扣如何应用?" msgid "How long a customer has to complete their purchase after receiving an offer. Leave empty for no timeout." msgstr "客户收到报价后完成购买的时限。留空表示无时间限制。" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:750 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:763 msgid "How long does the schedule run?" msgstr "" @@ -5283,7 +5291,7 @@ msgstr "客户有多少分钟来完成订单。我们建议至少 15 分钟" msgid "How many times can this code be used?" msgstr "这个代码可以使用多少次?" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:581 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:594 msgid "How often?" msgstr "" @@ -5589,7 +5597,7 @@ msgstr "项" msgid "Items" msgstr "项目" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:71 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:73 msgid "January" msgstr "" @@ -5640,11 +5648,11 @@ msgstr "加入{productDisplayName}的等候名单" msgid "Joined" msgstr "已加入" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:77 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:79 msgid "July" msgstr "" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:76 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:78 msgid "June" msgstr "" @@ -5670,7 +5678,7 @@ msgstr "" #: src/components/forms/ProductForm/index.tsx:108 #: src/components/routes/event/OccurrencesTab/OccurrenceEditModal/index.tsx:449 -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:711 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:724 #: src/components/routes/event/Reports/OccurrenceSummaryReport/index.tsx:45 msgid "Label" msgstr "标签" @@ -5685,7 +5693,7 @@ msgstr "" msgid "Language" msgstr "语言" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:67 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:69 msgid "Last" msgstr "" @@ -5794,7 +5802,7 @@ msgid "Leave blank to use the default word \"Invoice\"" msgstr "留空以使用默认词“发票”" #: src/components/routes/event/OccurrencesTab/OccurrenceEditModal/index.tsx:507 -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:816 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:829 msgid "Leave empty for unlimited" msgstr "" @@ -5834,7 +5842,7 @@ msgstr "LinkedIn" msgid "Links Allowed" msgstr "允许链接" -#: src/components/routes/event/OccurrencesTab/index.tsx:470 +#: src/components/routes/event/OccurrencesTab/index.tsx:472 msgid "List" msgstr "" @@ -6003,7 +6011,7 @@ msgstr "" msgid "Manage attendee" msgstr "管理与会者" -#: src/components/routes/event/OccurrencesTab/index.tsx:460 +#: src/components/routes/event/OccurrencesTab/index.tsx:462 msgid "Manage dates and times for your recurring event" msgstr "" @@ -6074,7 +6082,7 @@ msgstr "手动添加与会者" msgid "Manually Add Attendee" msgstr "手动添加与会者" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:73 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:75 msgid "March" msgstr "" @@ -6098,7 +6106,7 @@ msgstr "最大收件人数 / 消息" msgid "Maximum Per Order" msgstr "每份订单的最高限额" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:75 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:77 msgid "May" msgstr "" @@ -6214,7 +6222,7 @@ msgstr "杂项设置" msgid "Mode" msgstr "" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:46 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:48 msgid "Mon" msgstr "" @@ -6230,24 +6238,24 @@ msgstr "货币金额是所有货币的大致总和" msgid "Monitor and manage failed background jobs" msgstr "监控和管理失败的后台任务" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:95 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:97 msgid "month" msgstr "" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:671 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:684 msgid "Month" msgstr "月" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:58 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:60 #: src/components/routes/product-widget/OccurrenceSelector/index.tsx:41 msgid "Monthly" msgstr "" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:624 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:637 msgid "Monthly Pattern" msgstr "" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:103 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:105 msgid "months" msgstr "" @@ -6516,7 +6524,7 @@ msgstr "" msgid "No dates match the current filters." msgstr "" -#: src/components/routes/event/OccurrencesTab/index.tsx:570 +#: src/components/routes/event/OccurrencesTab/index.tsx:580 msgid "No dates match your filters" msgstr "" @@ -6529,7 +6537,7 @@ msgstr "" msgid "No dates scheduled" msgstr "未安排日期" -#: src/components/routes/event/OccurrencesTab/index.tsx:570 +#: src/components/routes/event/OccurrencesTab/index.tsx:580 msgid "No dates scheduled yet" msgstr "" @@ -6820,11 +6828,11 @@ msgstr "" msgid "Notify organizer of new orders" msgstr "将新订单通知组织者" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:81 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:83 msgid "November" msgstr "" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:800 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:813 msgid "Number of dates to create" msgstr "" @@ -6849,7 +6857,7 @@ msgid "Occurrence Cancelled" msgstr "" #: src/components/layouts/Event/index.tsx:113 -#: src/components/routes/event/OccurrencesTab/index.tsx:461 +#: src/components/routes/event/OccurrencesTab/index.tsx:463 msgid "Occurrence Schedule" msgstr "" @@ -6871,7 +6879,7 @@ msgstr "" msgid "Occurrences can be configured after creation" msgstr "" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:80 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:82 msgid "October" msgstr "" @@ -6965,7 +6973,7 @@ msgstr "持续进行" #: src/components/common/EventCard/index.tsx:103 #: src/components/layouts/OrganizerHomepage/EventCard/index.tsx:49 -#: src/components/routes/event/OccurrencesTab/index.tsx:316 +#: src/components/routes/event/OccurrencesTab/index.tsx:318 #: src/components/routes/event/OccurrencesTab/OccurrenceEditModal/index.tsx:473 #: src/components/routes/my-tickets/index.tsx:56 #: src/components/routes/product-widget/OccurrenceSelector/index.tsx:122 @@ -7080,7 +7088,7 @@ msgstr "选项" msgid "or" msgstr "或" -#: src/components/routes/event/OccurrencesTab/index.tsx:593 +#: src/components/routes/event/OccurrencesTab/index.tsx:603 msgid "or add a single date" msgstr "" @@ -7088,7 +7096,7 @@ msgstr "" msgid "Or enable offline payments and disable Stripe" msgstr "或启用线下付款并停用 Stripe" -#: src/components/routes/event/OccurrencesTab/index.tsx:413 +#: src/components/routes/event/OccurrencesTab/index.tsx:415 msgid "order" msgstr "" @@ -7250,7 +7258,7 @@ msgstr "订单更新成功" msgid "Order was cancelled" msgstr "订单已被取消" -#: src/components/routes/event/OccurrencesTab/index.tsx:413 +#: src/components/routes/event/OccurrencesTab/index.tsx:415 #: src/components/routes/event/orders.tsx:197 msgid "orders" msgstr "" @@ -7503,7 +7511,7 @@ msgid "Passwords are not the same" msgstr "密码不一样" #: src/components/layouts/OrganizerHomepage/index.tsx:291 -#: src/components/routes/event/OccurrencesTab/index.tsx:484 +#: src/components/routes/event/OccurrencesTab/index.tsx:486 #: src/components/routes/organizer/Reports/EventsPerformanceReport/index.tsx:30 msgid "Past" msgstr "过去" @@ -7707,15 +7715,15 @@ msgstr "个人信息" msgid "Phone" msgstr "电话" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:372 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:379 msgid "Pick an end date" msgstr "" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:380 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:387 msgid "Pick at least one day of the month" msgstr "" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:369 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:376 msgid "Pick at least one day of the week" msgstr "" @@ -7765,7 +7773,7 @@ msgstr "平台收入" msgid "Please add at least one option" msgstr "请至少添加一个选项" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:527 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:540 #: src/hooks/useFormErrorResponseHandler.tsx:18 msgid "Please check the provided information is correct" msgstr "请检查所提供的信息是否正确" @@ -7895,7 +7903,7 @@ msgstr "热门活动(过去14天)" msgid "Portuguese" msgstr "葡萄牙语" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:654 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:667 msgid "Position" msgstr "" @@ -8385,7 +8393,7 @@ msgstr "推荐账户" msgid "Refresh Preview" msgstr "刷新预览" -#: src/components/routes/event/OccurrencesTab/index.tsx:216 +#: src/components/routes/event/OccurrencesTab/index.tsx:218 msgid "Refund all orders for these dates" msgstr "" @@ -8494,11 +8502,11 @@ msgstr "从活动页面完全移除已售罄的日期和时间。禁用时,它 msgid "Reopen for new sales" msgstr "" -#: src/components/routes/event/OccurrencesTab/index.tsx:192 +#: src/components/routes/event/OccurrencesTab/index.tsx:194 msgid "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." msgstr "" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:591 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:604 msgid "Repeat every" msgstr "" @@ -8699,7 +8707,7 @@ msgstr "撤销报价" msgid "Role" msgstr "角色" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:772 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:785 msgid "Run until a specific date" msgstr "" @@ -8786,7 +8794,7 @@ msgstr "示例票价" msgid "Sample Venue" msgstr "示例场地" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:51 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:53 msgid "Sat" msgstr "" @@ -8836,7 +8844,7 @@ msgstr "" msgid "Save Organizer" msgstr "保存组织器" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:864 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:877 msgid "Save Schedule" msgstr "" @@ -8900,11 +8908,12 @@ msgstr "" msgid "Schedule added" msgstr "" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:520 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:530 +#: src/hooks/useOccurrenceGenerationPolling.ts:36 msgid "Schedule created successfully" msgstr "" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:793 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:806 msgid "Schedule ends on" msgstr "" @@ -8916,7 +8925,7 @@ msgstr "稍后发送" msgid "Schedule Message" msgstr "定时发送消息" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:755 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:768 msgid "Schedule starts on" msgstr "" @@ -9039,7 +9048,7 @@ msgstr "搜索..." msgid "Seasonal" msgstr "" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:64 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:66 msgid "Second" msgstr "" @@ -9215,7 +9224,7 @@ msgstr "选择哪些事件将触发此 Webhook" msgid "Select..." msgstr "选择..." -#: src/components/routes/event/OccurrencesTab/index.tsx:495 +#: src/components/routes/event/OccurrencesTab/index.tsx:497 msgid "selected" msgstr "" @@ -9345,7 +9354,7 @@ msgstr "搜索引擎优化设置" msgid "SEO Title" msgstr "搜索引擎优化标题" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:79 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:81 msgid "September" msgstr "" @@ -9373,7 +9382,7 @@ msgstr "为此组织者创建的新活动设置默认设置。" msgid "Set how long each date lasts" msgstr "" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:784 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:797 msgid "Set number of dates" msgstr "" @@ -9393,7 +9402,7 @@ msgstr "设置发票编号的起始编号。一旦发票生成,就无法更改 msgid "Set to unlimited (remove limit)" msgstr "" -#: src/components/routes/event/OccurrencesTab/index.tsx:575 +#: src/components/routes/event/OccurrencesTab/index.tsx:585 msgid "Set up a recurring schedule to automatically create dates, or add them one at a time." msgstr "" @@ -9410,8 +9419,8 @@ msgstr "" msgid "Set up schedule" msgstr "" -#: src/components/routes/event/OccurrencesTab/index.tsx:532 -#: src/components/routes/event/OccurrencesTab/index.tsx:586 +#: src/components/routes/event/OccurrencesTab/index.tsx:535 +#: src/components/routes/event/OccurrencesTab/index.tsx:596 msgid "Set Up Schedule" msgstr "" @@ -9427,7 +9436,7 @@ msgstr "设置您的组织" msgid "Set up your schedule" msgstr "" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:569 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:582 msgid "Set Up Your Schedule" msgstr "" @@ -9564,7 +9573,7 @@ msgstr "单独显示税费" msgid "Showing {0} of {totalRows} records" msgstr "显示 {0} / {totalRows} 条记录" -#: src/components/routes/event/OccurrencesTab/index.tsx:614 +#: src/components/routes/event/OccurrencesTab/index.tsx:624 msgid "Showing {0}–{1} of {2}" msgstr "" @@ -9645,7 +9654,7 @@ msgstr "社交链接与网站" #: src/components/common/ProductsTable/SortableProduct/index.tsx:387 #: src/components/modals/ManageOccurrenceModal/index.tsx:186 -#: src/components/routes/event/OccurrencesTab/index.tsx:369 +#: src/components/routes/event/OccurrencesTab/index.tsx:371 msgid "Sold" msgstr "已售出" @@ -9753,7 +9762,7 @@ msgstr "" msgid "Standard product with a fixed price" msgstr "固定价格的标准产品" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:696 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:709 msgid "Start" msgstr "" @@ -9846,7 +9855,7 @@ msgstr "" #: src/components/routes/admin/Messages/index.tsx:120 #: src/components/routes/admin/Messages/index.tsx:167 #: src/components/routes/admin/Messages/index.tsx:294 -#: src/components/routes/event/OccurrencesTab/index.tsx:326 +#: src/components/routes/event/OccurrencesTab/index.tsx:328 #: src/components/routes/event/Reports/OccurrenceSummaryReport/index.tsx:51 #: src/components/routes/event/Reports/PromoCodesReport/index.tsx:88 #: src/components/routes/organizer/Reports/EventsPerformanceReport/index.tsx:62 @@ -10104,7 +10113,7 @@ msgstr "夏季音乐节 {0}" msgid "Summer Music Festival 2025" msgstr "2025夏季音乐节" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:52 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:54 msgid "Sun" msgstr "" @@ -10231,7 +10240,7 @@ msgstr "介绍一下您的活动" msgid "Tell us about your organization. This information will be displayed on your event pages." msgstr "请告诉我们您的组织信息。这些信息将显示在您的活动页面上。" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:573 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:586 msgid "Tell us how often your event repeats and we'll create all the dates for you." msgstr "" @@ -10325,7 +10334,7 @@ msgstr "电子邮件地址已更改。参与者将在更新后的电子邮件地 msgid "The event you're looking for is not available at the moment. It may have been removed, expired, or the URL might be incorrect." msgstr "您查找的活动目前不可用。它可能已被删除、过期或 URL 不正确。" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:756 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:769 msgid "The first date this schedule will generate from." msgstr "" @@ -10345,7 +10354,7 @@ msgstr "您尝试访问的链接已过期或不再有效。请检查您的电子 msgid "The link you clicked is invalid." msgstr "您点击的链接无效。" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:840 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:853 msgid "The maximum is {MAX_PREVIEW} sessions. Please reduce the date range, frequency, or number of sessions per day." msgstr "" @@ -10481,7 +10490,7 @@ msgstr "这些模板将用作您组织中所有活动的默认模板。单个活 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 "这些模板将仅覆盖此活动的组织者默认设置。如果这里没有设置自定义模板,将使用组织者模板。" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:65 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:67 msgid "Third" msgstr "" @@ -10744,7 +10753,7 @@ msgstr "这对客户不可见,但有助于您识别推广员。" msgid "Throughput" msgstr "" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:49 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:51 msgid "Thu" msgstr "" @@ -10881,7 +10890,7 @@ msgstr "分层产品允许您为同一产品提供多种价格选项。这非常 msgid "TikTok" msgstr "TikTok" -#: src/components/routes/event/OccurrencesTab/index.tsx:290 +#: src/components/routes/event/OccurrencesTab/index.tsx:292 msgid "Time" msgstr "" @@ -10912,7 +10921,7 @@ msgstr "使用次数" msgid "Timezone" msgstr "时区" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:702 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:715 msgid "to" msgstr "" @@ -11056,7 +11065,7 @@ msgstr "跟踪与分析" msgid "Try a different search term or filter" msgstr "" -#: src/components/routes/event/OccurrencesTab/index.tsx:574 +#: src/components/routes/event/OccurrencesTab/index.tsx:584 msgid "Try adjusting your filters to see more dates." msgstr "" @@ -11069,7 +11078,7 @@ msgstr "尝试其他邮箱" msgid "Try Hi.Events Free" msgstr "免费试用Hi.Events" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:47 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:49 msgid "Tue" msgstr "" @@ -11232,7 +11241,7 @@ msgstr "不受信任" #: src/components/common/EventsDashboardStatusButtons/index.tsx:20 #: src/components/common/EventStatusBadge/index.tsx:16 #: src/components/layouts/OrganizerHomepage/index.tsx:285 -#: src/components/routes/event/OccurrencesTab/index.tsx:483 +#: src/components/routes/event/OccurrencesTab/index.tsx:485 #: src/components/routes/organizer/Reports/EventsPerformanceReport/index.tsx:33 msgid "Upcoming" msgstr "即将推出" @@ -11880,7 +11889,7 @@ msgstr "Webhooks" msgid "Website" msgstr "网站" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:48 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:50 msgid "Wed" msgstr "" @@ -11888,16 +11897,16 @@ msgstr "" msgid "Wednesday" msgstr "" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:94 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:96 msgid "week" msgstr "" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:57 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:59 #: src/components/routes/product-widget/OccurrenceSelector/index.tsx:35 msgid "Weekly" msgstr "" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:102 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:104 msgid "weeks" msgstr "" @@ -11953,7 +11962,7 @@ msgstr "此容量应适用于哪些产品?" msgid "What time will you be arriving?" msgstr "您什么时候抵达?" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:688 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:701 msgid "What time?" msgstr "" @@ -12140,7 +12149,7 @@ msgstr "请在此输入您的消息..." msgid "X (Twitter)" msgstr "X(推特)" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:96 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:98 msgid "year" msgstr "" @@ -12150,12 +12159,12 @@ msgstr "" msgid "Year to date" msgstr "年度至今" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:59 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:61 #: src/components/routes/product-widget/OccurrenceSelector/index.tsx:43 msgid "Yearly" msgstr "" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:104 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:106 msgid "years" msgstr "" @@ -12200,7 +12209,7 @@ msgstr "您可以在账户设置中配置额外的服务费和税费。" msgid "You can create a promo code which targets this product on the" msgstr "您可以创建一个促销代码,针对该产品" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:823 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:836 msgid "You can override this for individual dates later." msgstr "" diff --git a/frontend/src/locales/zh-hk.js b/frontend/src/locales/zh-hk.js index 8fb0b77154..f5e0e16c6a 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 Main Street\",\"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\":\"Are you sure you want to make this event public? This will make the event visible to the public\",\"s4JozW\":\"您確定要恢復此活動嗎?它將作為草稿恢復。\",\"vJuISq\":\"您確定要刪除此容量分配嗎?\",\"baHeCz\":\"您確定要刪除此簽到列表嗎?\",\"LBLOqH\":\"每份訂單詢問一次\",\"wu98dY\":\"每個產品詢問一次\",\"ss9PbX\":\"參加者\",\"m0CFV2\":\"與會者詳情\",\"QKim6l\":\"未找到參與者\",\"R5IT/I\":\"Attendee Notes\",\"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\":\"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\":\"取消\",\"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\":\"Check-in\",\"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\":\"定製您的活動頁面\",\"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\":\"Dismiss\",\"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\":\"Event URL\",\"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\":\"No attendees have been added to this order.\",\"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\":\"No product associated with this attendee.\",\"Ya1JhR\":\"此類別中沒有可用的產品。\",\"FTfObB\":\"尚無產品\",\"+Y976X\":\"無促銷代碼顯示\",\"MAavyl\":\"No questions answered by this attendee.\",\"SnlQeq\":\"No questions have been asked for this order.\",\"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\":\"Online event\",\"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\":\"Order #\",\"B3gPuX\":\"取消訂單\",\"SIbded\":\"Order Completed\",\"q/CcwE\":\"訂購日期\",\"Tol4BF\":\"訂購詳情\",\"WbImlQ\":\"訂單已取消,並已通知訂單所有者。\",\"nAn4Oe\":\"訂單已標記為已支付\",\"uzEfRz\":\"Order Notes\",\"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\":\"San Francisco\",\"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\":\"Suite 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\":\"View\",\"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\":\"(none)\",\"xYxQCZ\":[[\"0\"],\" \",[\"1\"]],\"lAOy2r\":[[\"0\"],\" \",[\"1\"],\" 已簽到\"],\"3beCx0\":[[\"0\"],\" <0>checked in\"],\"S4PqS9\":[[\"0\"],\" 個活動的 Webhook\"],\"6MIiOI\":[\"剩餘 \",[\"0\"]],\"COnw8D\":[[\"0\"],\" 標誌\"],\"xG9N0H\":[[\"0\"],\" of \",[\"1\"],\" seats are taken.\"],\"B7pZfX\":[[\"0\"],\" 位主辦單位\"],\"/HkCs4\":[[\"0\"],\"張門票\"],\"30bTiU\":[[\"activeCount\"],\" enabled\"],\"jTs4am\":[[\"appName\"],\" logo\"],\"gbJOk9\":[[\"attendeeCount\"],\" attendees are registered for this session.\"],\"TjbIUI\":[[\"totalCount\"],\" 中有 \",[\"availableCount\"],\" 可用\"],\"PSChHo\":[\"剩餘 \",[\"capacity\"],\" 個名額\"],\"lzQ8/M\":[[\"checkedIn\"],\" / \",[\"total\"],\" checked in\"],\"RZ0JX3\":[[\"chipTime\"],\",已售罄\"],\"M4KnFs\":[[\"chipTime\"],\",售罄,可加入候補名單\"],\"SeyN12\":[[\"completedCount\"],\" of \",[\"totalCount\"],\" steps complete\"],\"f2rhaD\":[[\"diffHr\"],\"h ago\"],\"NRSLBe\":[[\"diffMin\"],\"m ago\"],\"iYfwJE\":[[\"diffSec\"],\"s ago\"],\"OJnhhX\":[[\"eventCount\"],\" 個事件\"],\"mhZbzw\":[[\"loadedAffectedAttendees\"],\" attendees are registered across the affected sessions.\"],\"RBuxIl\":[[\"productCount\"],\" ticket types configured\"],\"VFLd0I\":[[\"slotCount\"],\" times available\"],\"3IEF7U\":[[\"totalCount\"],\" 種門票類型\"],\"0cLzoF\":[[\"totalOccurrences\"],\" dates\"],\"AEGc4t\":[[\"totalOccurrences\"],\" sessions across \",[\"0\"],\" dates (\",[\"1\",\"plural\",{\"one\":[\"#\",\" session\"],\"other\":[\"#\",\" sessions\"]}],\" per day)\"],\"zGiMDM\":\"+1 234 567 890\",\"1d6kks\":\"+稅/費\",\"B1St2O\":\"<0>簽到列表幫助您按日期、區域或票務類型管理活動入場。您可以將票務連結到特定列表,如VIP區域或第1天通行證,並與工作人員共享安全的簽到連結。無需帳戶。簽到適用於移動裝置、桌面或平板電腦,使用裝置相機或HID USB掃描器。 \",\"v9VSIS\":\"<0>設定單一總參加人數限制,同時適用於多種門票類型。<1>例如,如果您連結 <2>日票 和 <3>整個週末 門票,它們將從同一個名額池中抽取。一旦達到限制,所有連結的門票將自動停止銷售。\",\"Il5Uid\":\"<0>這是整個日程所有場次合計的可售總數量,而不是每場的限制。如需限制每場的人數,請在<1>場次安排頁面設定容量。\",\"ZnVt5v\":\"<0>Webhooks 可在事件發生時立即通知外部服務,例如,在註冊時將新與會者添加到您的 CRM 或郵件列表,確保無縫自動化。<1>使用第三方服務,如 <2>Zapier、<3>IFTTT 或 <4>Make 來創建自定義工作流並自動化任務。\",\"xFTHZ5\":[\"≈ \",[\"0\"],\"(按目前匯率)\"],\"M2DyLc\":\"1 個活動的 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張門票\",\"nz96Ue\":\"1 種門票類型\",\"InX5ad\":\"1 ticket type configured\",\"y2Jh0m\":\"1 time available\",\"cGtUz6\":\"活動前1週\",\"HR/cvw\":\"示例街123號\",\"dgKxZ5\":\"135+ currencies & 40+ payment methods\",\"kMU5aM\":\"取消通知已發送至\",\"o++0qa\":\"a change in duration\",\"WuWSX5\":\"A few quick steps and you're ready to start selling.\",\"RQ5kDd\":\"當此類別中沒有產品時顯示的訊息。\",\"V53XzQ\":\"新嘅驗證碼已經發送到你嘅電郵\",\"sr2Je0\":\"a shift in start/end times\",\"/z/bH1\":\"您主辦單位的簡短描述,將會顯示給您的使用者。\",\"aS0jtz\":\"已放棄\",\"uyJsf6\":\"關於\",\"JvuLls\":\"承擔費用\",\"lk74+I\":\"承擔費用\",\"1uJlG9\":\"強調色\",\"g3UF2V\":\"接受\",\"K5+3xg\":\"接受邀請\",\"jzb4Ep\":[\"Account · \",[\"0\"]],\"UqH1Q6\":[\"Account · \",[\"0\"],\" · \",[\"1\"]],\"vOuxvL\":\"帳戶資訊\",\"EHNORh\":\"找不到帳戶\",\"bPwFdf\":\"賬戶\",\"AhwTa1\":\"需要操作:需提供增值稅資料\",\"APyAR/\":\"活躍活動\",\"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\":\"新增自訂問題以在結帳時收集額外資訊\",\"Z/dcxc\":\"Add Date\",\"QeupRg\":\"新增日期\",\"Q219NT\":\"Add Dates\",\"yjB5VC\":\"Add dates and times for your recurring event\",\"Z8idyM\":\"Add details\",\"wpirGs\":\"Add event details\",\"VX6WUv\":\"新增地點\",\"GCQlV2\":\"Add multiple times if you run several sessions per day.\",\"7JF9w9\":\"新增問題\",\"NLbIb6\":\"Add this attendee anyway (override capacity)\",\"6PNlRV\":\"將此活動添加到您的日曆\",\"BGD9Yt\":\"添加機票\",\"uIv4Op\":\"將追蹤像素添加到您的公開活動頁面和主辦方首頁。當追蹤處於活動狀態時,將向訪客顯示Cookie同意橫幅。\",\"QN2F+7\":\"添加 Webhook\",\"NsWqSP\":\"新增您的社交媒體帳號及網站網址。這些資訊將會顯示在您的公開主辦單位頁面。\",\"bVjDs9\":\"額外費用\",\"MKqSg4\":\"需要管理員存取權限\",\"0Zypnp\":\"管理儀表板\",\"YAV57v\":\"推廣夥伴\",\"I+utEq\":\"推廣碼無法更改\",\"/jHBj5\":\"推廣夥伴建立成功\",\"uCFbG2\":\"推廣夥伴刪除成功\",\"ld8I+f\":\"Affiliate program\",\"a41PKA\":\"將會追蹤推廣夥伴銷售\",\"mJJh2s\":\"唔會追蹤推廣夥伴銷售。呢個會停用該推廣夥伴。\",\"jabmnm\":\"推廣夥伴更新成功\",\"CPXP5Z\":\"合作夥伴\",\"9Wh+ug\":\"推廣夥伴已匯出\",\"3cqmut\":\"推廣夥伴幫助你追蹤合作夥伴同KOL產生嘅銷售。建立推廣碼並分享以監控表現。\",\"3e31kI\":\"After your event is created, you can choose how often it repeats from the dashboard.\",\"z7GAMJ\":\"all\",\"N40H+G\":\"All\",\"7rLTkE\":\"所有已封存活動\",\"gKq1fa\":\"所有參與者\",\"63gRoO\":\"All attendees of the selected sessions\",\"uWxIoH\":\"All attendees of this occurrence\",\"pMLul+\":\"所有貨幣\",\"sgUdRZ\":\"All dates\",\"e4q4uO\":\"All Dates\",\"ZS/D7f\":\"所有已結束活動\",\"QsYjci\":\"所有活動\",\"31KB8w\":\"所有失敗任務已刪除\",\"D2g7C7\":\"所有任務已排隊等待重試\",\"B4RFBk\":\"All matching dates\",\"F1/VgK\":\"All occurrences\",\"OpWjMq\":\"All Occurrences\",\"Sxm1lO\":\"所有狀態\",\"dr7CWq\":\"所有即將舉行的活動\",\"GpT6Uf\":\"允許參與者通過訂單確認電郵中的安全連結更新他們的門票資訊(姓名、電郵)。\",\"VZdky1\":\"允許購買者將其資料複製給所有參加者\",\"F3mW5G\":\"允許客戶在該產品售罄時加入候補名單\",\"4CMO/q\":\"允許客戶在該產品售罄時加入候補名單。客戶加入的是特定日期的候補名單。\",\"c4uJfc\":\"快完成了!我們正在等待您的付款處理。這只需要幾秒鐘。\",\"ocS8eq\":[\"已有帳戶?<0>\",[\"0\"],\"\"],\"uCuEqI\":\"Already in\",\"/H326L\":\"已退款\",\"USEpOK\":\"Already use Stripe on another organizer? Reuse that connection.\",\"RtxQTF\":\"同時取消此訂單\",\"jkNgQR\":\"同時退款此訂單\",\"xYqsHg\":\"總是可用\",\"Wvrz79\":\"支付金額\",\"Zkymb9\":\"同呢個推廣夥伴關聯嘅電郵。推廣夥伴唔會收到通知。\",\"vRznIT\":\"檢查導出狀態時發生錯誤。\",\"OPFdAM\":\"此類別的可選描述,將顯示在活動頁面上。\",\"eusccx\":\"顯示在突出產品上的可選訊息,例如「熱賣中 🔥」或「最佳價值」\",\"5GJuNp\":[\"and \",[\"0\"],\" more...\"],\"QNrkms\":\"答案更新成功。\",\"+qygei\":\"Answers\",\"GK7Lnt\":\"Answers provided at checkout (e.g. meal choice)\",\"lE8PgT\":\"Any dates you've manually customized will be kept.\",\"jVoYha\":[\"已應用 — 訂單立減 \",[\"0\"]],\"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\":\"批准訊息\",\"naCW6Z\":\"April\",\"B495Gs\":\"封存\",\"5sNliy\":\"封存活動\",\"BrwnrJ\":\"封存主辦方\",\"E5eghW\":\"封存此活動以向公眾隱藏。您可以稍後還原它。\",\"eqFkeI\":\"封存此主辦方。這也將封存屬於此主辦方的所有活動。\",\"BzcxWv\":\"已封存的主辦方\",\"9cQBd6\":\"您確定要封存此活動嗎?它將不再對公眾可見。\",\"Trnl3E\":\"您確定要封存此主辦方嗎?這也將封存屬於此主辦方的所有活動。\",\"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\":\"您確定要刪除所有失敗的任務嗎?\",\"LchiNd\":\"你確定要刪除呢個推廣夥伴嗎?呢個操作無法撤銷。\",\"vPeW/6\":\"您確定要刪除此配置嗎?這可能會影響使用它的帳戶。\",\"h42Hc/\":\"Are you sure you want to delete this date? This action cannot be undone.\",\"RiF/yT\":\"Are you sure you want to delete this image?\",\"b3+Qku\":\"Are you sure you want to delete this tax or fee? It will no longer be applied to new orders.\",\"JmVITJ\":\"確定要刪除此範本嗎?此操作無法復原,郵件將回退到預設範本。\",\"aLS+A6\":\"確定要刪除此範本嗎?此操作無法復原,郵件將回退到組織者或預設範本。\",\"5H3Z78\":\"您確定要刪除此 Webhook 嗎?\",\"147G4h\":\"您確定要離開嗎?\",\"VDWChT\":\"您確定要將此主辦單位設為草稿嗎?這將使該頁面對公眾隱藏。\",\"pWtQJM\":\"您確定要將此主辦單位設為公開嗎?這將使該頁面對公眾可見。\",\"EOqL/A\":\"您確定要向此人提供名額嗎?他們將收到電子郵件通知。\",\"yAXqWW\":\"Are you sure you want to permanently delete this date? This cannot be undone.\",\"WFHOlF\":\"你確定要發佈呢個活動嗎?一旦發佈,將會對公眾可見。\",\"4TNVdy\":\"你確定要發佈呢個主辦方資料嗎?一旦發佈,將會對公眾可見。\",\"8x0pUg\":\"您確定要從候補名單中移除此條目嗎?\",\"cDtoWq\":[\"您確定要將訂單確認重新發送到 \",[\"0\"],\" 嗎?\"],\"xeIaKw\":[\"您確定要將門票重新發送到 \",[\"0\"],\" 嗎?\"],\"BjbocR\":\"您確定要還原此活動嗎?\",\"7MjfcR\":\"您確定要還原此主辦方嗎?\",\"b7tkGp\":\"Are you sure you want to revoke this invitation?\",\"ExDt3P\":\"你確定要取消發佈呢個活動嗎?佢將唔再對公眾可見。\",\"5Qmxo/\":\"你確定要取消發佈呢個主辦方資料嗎?佢將唔再對公眾可見。\",\"Uqefyd\":\"您在歐盟註冊了增值稅嗎?\",\"+QARA4\":\"藝術\",\"tLf3yJ\":\"由於您的業務位於愛爾蘭,愛爾蘭增值稅(23%)將自動套用於所有平台費用。\",\"tMeVa/\":\"為每張購買的門票詢問姓名和電郵\",\"ui5ln+\":\"Assign a different plan\",\"9Jxliv\":\"Assign plan\",\"xdiER7\":\"分配的級別\",\"F2rX0R\":\"必須選擇至少一種事件類型\",\"Z44eZS\":\"At least one product must stay available for this date. To make the date inaccessible, cancel it from the schedule instead.\",\"BCmibk\":\"嘗試次數\",\"6PecK3\":\"所有活動的出席率和簽到率\",\"K2tp3v\":\"attendee\",\"AJ4rvK\":\"與會者已取消\",\"qvylEK\":\"與會者已創建\",\"Aspq3b\":\"參與者資料收集\",\"fpb0rX\":\"參與者資料已從訂單複製\",\"94aQMU\":\"參與者資訊\",\"KkrBiR\":\"參加者資料收集\",\"sjPjOg\":\"Attendee notes\",\"cosfD8\":\"參與者狀態\",\"D2qlBU\":\"與會者已更新\",\"22BOve\":\"參與者更新成功\",\"x8Vnvf\":\"參與者的票不包含在此列表中\",\"/Ywywr\":\"attendees\",\"zLRobu\":\"attendees checked in\",\"k3Tngl\":\"與會者已導出\",\"UoIRW8\":\"已註冊參加者\",\"5UbY+B\":\"持有特定門票的與會者\",\"4HVzhV\":\"參與者:\",\"HVkhy2\":\"歸因分析\",\"dMMjeD\":\"歸因細分\",\"1oPDuj\":\"歸因值\",\"DBHTm/\":\"August\",\"JgREph\":\"自動提供已啟用\",\"V7Tejz\":\"自動處理候補名單\",\"PZ7FTW\":\"根據背景顏色自動檢測,但可以覆蓋\",\"zlnTuI\":\"當容量可用時自動向下一個人提供門票。如果停用,您可以從候補名單頁面手動處理候補名單。\",\"csDS2L\":\"可用\",\"Xp+ywP\":\"付款完成後可使用\",\"dwDH1K\":[\"Available times on \",[\"dayName\"]],\"clF06r\":\"可退款\",\"NB5+UG\":\"可用標記\",\"L+wGOG\":\"Awaiting\",\"qcw2OD\":\"Awaiting pay\",\"kNmmvE\":\"Awesome Events 有限公司\",\"TeSaQO\":\"返回帳戶\",\"kYqM1A\":\"返回活動\",\"s5QRF3\":\"返回訊息\",\"td/bh+\":\"返回報告\",\"nsm7BA\":\"返回搜尋\",\"imjKVx\":\"Bank account connected\",\"D9LTCH\":\"Base Price\",\"hviJef\":\"Based on the global sale period above, not per date\",\"jIPNJG\":\"基本資料\",\"UabgBd\":\"正文是必需的\",\"HWXuQK\":\"收藏此頁面,隨時管理您的訂單。\",\"CUKVDt\":\"使用自訂標誌、顏色和頁腳訊息打造您的門票品牌。\",\"4BZj5p\":\"Built-in fraud protection\",\"cr7kGH\":\"Bulk Edit\",\"1Fbd6n\":\"Bulk Edit Dates\",\"Eq6Tu9\":\"Bulk update failed.\",\"9N+p+g\":\"商務\",\"SWnN1L\":\"Business address\",\"kQekXw\":\"Business name\",\"bv6RXK\":\"按鈕標籤\",\"ChDLlO\":\"按鈕文字\",\"BUe8Wj\":\"買家支付\",\"qF1qbA\":\"買家看到的是淨價。平台費用將從您的付款中扣除。\",\"dg05rc\":\"通過添加追蹤像素,您確認您和本平台是所收集數據的共同控制者。您有責任確保根據適用的私隱法律(GDPR、CCPA等)擁有合法的處理依據。\",\"DFqasq\":[\"繼續即表示您同意 <0>\",[\"0\"],\" 服務條款\"],\"wVSa+U\":\"By day of month\",\"0MnNgi\":\"By day of week\",\"CetOZE\":\"By ticket type\",\"lFdbRS\":\"繞過應用費用\",\"AjVXBS\":\"Calendar\",\"2VLZwd\":\"行動號召按鈕\",\"rT2cV+\":\"Camera\",\"7hYa9y\":\"Camera permission was denied. <0>Request permission again, or grant this page camera access in your browser settings.\",\"D02dD9\":\"活動\",\"RRPA79\":\"Can't check in\",\"OcVwAd\":[\"Cancel \",[\"count\"],\" date(s)\"],\"H4nE+E\":\"取消所有產品並釋放回可用池\",\"Py78q9\":\"Cancel Date\",\"tOXAdc\":\"取消將取消與此訂單關聯的所有參與者,並將門票釋放回可用池。\",\"FPpqc7\":[\"Cancelling \",[\"0\"],\" date(s). This may take a moment to complete.\"],\"01sEfm\":\"無法刪除系統預設配置\",\"VsM1HH\":\"容量分配\",\"9bIMVF\":\"Capacity management\",\"H7K8og\":\"Capacity must be 0 or greater\",\"nzao08\":\"capacity updates\",\"4cp9NP\":\"Capacity Used\",\"K7tIrx\":\"類別\",\"DRK3Bq\":\"Category deleted successfully\",\"o+XJ9D\":\"更改\",\"kJkjoB\":\"Change duration\",\"J0KExZ\":\"Change the attendee limit\",\"ssospy\":\"Change time\",\"CIHJJf\":\"更改等候名單設定\",\"B5icLR\":[\"Changed duration for \",[\"count\"],\" date(s)\"],\"Kb+0BT\":\"Charges\",\"2tbLdK\":\"慈善\",\"BPWGKn\":\"Check in\",\"6uFFoY\":\"Check out\",\"FjAlwK\":[\"Check out this event: \",[\"0\"]],\"v4fiSg\":\"查看你嘅電郵\",\"51AsAN\":\"請檢查您的收件箱!如果此郵箱有關聯的票,您將收到查看連結。\",\"Y3FYXy\":\"Check-In\",\"udRwQs\":\"簽到已創建\",\"F4SRy3\":\"簽到已刪除\",\"as6XfO\":[\"Check-in for \",[\"0\"],\" was undone\"],\"9s/wrQ\":\"Check-in history\",\"Wwztk4\":\"Check-In List\",\"9gPPUY\":\"簽到名單已建立!\",\"dwjiJt\":\"Check-in list info\",\"7od0PV\":\"check-in lists\",\"f2vU9t\":\"簽到列表\",\"XprdTn\":\"Check-in navigation\",\"5tV1in\":\"Check-in progress\",\"SHJwyq\":\"簽到率\",\"qCqdg6\":\"簽到狀態\",\"cKj6OE\":\"簽到摘要\",\"7B5M35\":\"簽到\",\"VrmydS\":\"Checked in\",\"DM4gBB\":\"中文(繁體)\",\"p8Jvp4\":\"Choose a configuration\",\"ElShBO\":\"Choose a different action\",\"pHEhf+\":\"選擇符合您品牌的字體。字體透過 Bunny Fonts 自行託管。\",\"Zok1Gx\":\"Choose an organizer\",\"pkk46Q\":\"選擇一個主辦單位\",\"Ag32+c\":\"Choose another date\",\"Crr3pG\":\"選擇日曆\",\"Z38ZJu\":\"選擇活動日期在票券上的顯示方式\",\"LAW8Vb\":\"為新活動選擇預設設置。這可以針對單個活動進行覆蓋。\",\"pjp2n5\":\"選擇誰支付平台費用。這不會影響您在帳戶設置中配置的額外費用。\",\"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\":\"點擊查看備註\",\"RG3szS\":\"關閉\",\"RWw9Lg\":\"關閉視窗\",\"XwdMMg\":\"代碼只可以包含字母、數字、連字號同底線\",\"+yMJb7\":\"必須填寫代碼\",\"m9SD3V\":\"代碼至少需要3個字元\",\"V1krgP\":\"代碼唔可以超過20個字元\",\"psqIm5\":\"與您的團隊合作,一起創造精彩活動。\",\"4bUH9i\":\"為每張購買的門票收集參加者詳情。\",\"TkfG8v\":\"按訂單收集資料\",\"96ryID\":\"按門票收集資料\",\"FpsvqB\":\"顏色模式\",\"jEu4bB\":\"欄位\",\"CWk59I\":\"喜劇\",\"rPA+Gc\":\"通訊偏好\",\"zFT5rr\":\"complete\",\"bUQMpb\":\"Complete Stripe setup\",\"744BMm\":\"完成您的訂單以確保獲得門票。此優惠有時間限制,請盡快完成。\",\"5YrKW7\":\"完成付款以確保您的門票。\",\"xGU92i\":\"完成您的個人資料以加入團隊。\",\"QOhkyl\":\"撰寫\",\"ih35UP\":\"會議中心\",\"ywFj2D\":\"Configuration\",\"WTw0bB\":\"Configuration assigned\",\"X1zdE7\":\"配置建立成功\",\"mLBUMQ\":\"配置刪除成功\",\"UIENhw\":\"配置名稱對最終用戶可見。固定費用將按當前匯率轉換為訂單貨幣。\",\"eeZdaB\":\"配置更新成功\",\"3cKoxx\":\"配置\",\"8v2LRU\":\"設定活動詳情、地點、結帳選項和電郵通知。\",\"raw09+\":\"設定結帳時如何收集參與者資料\",\"FI60XC\":\"配置稅費\",\"av6ukY\":\"Configure which products are available for this occurrence and optionally adjust pricing.\",\"NGXKG/\":\"確認電子郵件地址\",\"JRQitQ\":\"確認新密碼\",\"Auz0Mz\":\"請確認您的電郵地址以使用所有功能。\",\"7+grte\":\"確認電郵已發送!請檢查您的收件匣。\",\"n/7+7Q\":\"確認已發送至\",\"x3wVFc\":\"恭喜!您的活動現已對公眾可見。\",\"0W2NQP\":\"Connect bank\",\"/K4Vqr\":\"連接 Stripe 以接受付款\",\"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\":\"線上活動必須填寫連線詳情\",\"jfC/xh\":\"聯絡\",\"LOFgda\":[\"聯絡 \",[\"0\"]],\"41BQ3k\":\"聯絡電郵\",\"m8WD6t\":\"繼續設置\",\"0GwUT4\":\"繼續結帳\",\"sBV87H\":\"繼續建立活動\",\"nKtyYu\":\"繼續下一步\",\"F3/nus\":\"繼續付款\",\"s30OcA\":\"控制活動頁面上日期和時間的顯示方式\",\"p2FRHj\":\"控制此活動的平台費用如何處理\",\"NqfabH\":\"Control who gets in for this date\",\"fmYxZx\":\"Control who gets in, and when\",\"1JnTgU\":\"從上方複製\",\"FxVG/l\":\"已複製到剪貼簿\",\"PiH3UR\":\"已複製!\",\"4i7smN\":\"Copy account ID\",\"uUPbPg\":\"複製推廣連結\",\"iVm46+\":\"複製代碼\",\"cF2ICc\":\"複製客戶連結\",\"+2ZJ7N\":\"將詳情複製到第一位參與者\",\"ZN1WLO\":\"複製郵箱\",\"y1eoq1\":\"複製連結\",\"tUGbi8\":\"複製我的資料到:\",\"y22tv0\":\"複製此連結以便隨處分享\",\"/4gGIX\":\"複製到剪貼簿\",\"e0f4yB\":\"無法刪除地點\",\"vkiDx2\":\"Could not prepare the bulk update.\",\"KOavaU\":\"無法取得地址詳情\",\"/lq4oO\":\"Could not save date\",\"mHu0az\":\"Couldn't send verification email. Please try again.\",\"QOIm+S\":\"統計包含所有即將舉行的日期。每人將獲得其所選日期的名額。\",\"P0rbCt\":\"封面圖片\",\"p4kqHr\":\"Cover image added\",\"60u+dQ\":\"封面圖片將顯示在活動頁面頂部\",\"2NLjA6\":\"封面圖片將顯示在您的主辦單位頁面頂部\",\"GkrqoY\":\"Covers every ticket\",\"zg4oSu\":[\"建立\",[\"0\"],\"範本\"],\"RKKhnW\":\"建立自訂小工具以在您的網站上銷售門票。\",\"6sk7PP\":\"Create a fixed number\",\"jqhTmw\":\"Create a list for this date\",\"PhioFp\":\"Create a new check-in list for an active session, or contact the organizer if you think this is a mistake.\",\"yIRev4\":\"建立密碼\",\"j7xZ7J\":\"建立額外的主辦方以在一個帳戶下管理獨立的品牌、部門或活動系列。每個主辦方都有自己的活動、設定和公開頁面。\",\"xfKgwv\":\"建立推廣夥伴\",\"tudG8q\":\"建立並設定待售門票和商品。\",\"YAl9Hg\":\"建立配置\",\"BTne9e\":\"為此活動建立自定義郵件範本以覆蓋組織者預設設置\",\"YIDzi/\":\"建立自定義範本\",\"tsGqx5\":\"Create Date\",\"Nc3l/D\":\"建立折扣、隱藏門票的存取碼和特別優惠。\",\"PybJS2\":\"Create event\",\"eWEV9G\":\"建立新密碼\",\"wl2iai\":\"Create Schedule\",\"8AiKIu\":\"建立門票或商品\",\"/HGmW9\":\"建立可追蹤連結以獎勵推廣您活動的合作夥伴。\",\"dkAPxi\":\"創建 Webhook\",\"5slqwZ\":\"建立您的活動\",\"JQNMrj\":\"建立你嘅第一個活動\",\"CCjxOC\":\"建立您的第一個活動以開始銷售門票並管理參加者。\",\"ZCSSd+\":\"建立您自己的活動\",\"67NsZP\":\"建立緊活動...\",\"H34qcM\":\"建立緊主辦方...\",\"1YMS+X\":\"建立緊你嘅活動,請稍候\",\"yiy8Jt\":\"建立緊你嘅主辦方資料,請稍候\",\"lfLHNz\":\"CTA標籤是必需的\",\"0xLR6W\":\"Currently assigned\",\"iTvh6I\":\"目前可供購買\",\"A42Dqn\":\"Custom branding\",\"Guo0lU\":\"自訂日期和時間\",\"WDMdn8\":\"Custom questions\",\"O6mra8\":\"自訂問題\",\"axv/Mi\":\"自定義範本\",\"2YeVGY\":\"客戶連結已複製到剪貼板\",\"QMHSMS\":\"客戶將收到確認退款的電子郵件\",\"NihQNk\":\"客戶\",\"hINN++\":\"Customize page\",\"7gsjkI\":\"使用Liquid範本自定義發送給客戶的郵件。這些範本將用作您組織中所有活動的預設範本。\",\"xJaTUK\":\"自訂活動首頁的版面配置、顏色和品牌。\",\"MXZfGN\":\"自訂結帳時提出的問題,以從參與者那裡收集重要資訊。\",\"iX6SLo\":\"自訂繼續按鈕上顯示的文字\",\"pxNIxa\":\"使用Liquid範本自定義您的郵件範本\",\"3trPKm\":\"自訂主辦單位頁面外觀\",\"U0sC6H\":\"Daily\",\"/gWrVZ\":\"所有活動的每日收入、稅費和退款\",\"zgCHnE\":\"每日銷售報告\",\"nHm0AI\":\"每日銷售、税費和費用明細\",\"1aPnDT\":\"Dance\",\"pvnfJD\":\"深色\",\"MaB9wW\":\"Date Cancellation\",\"e6cAxJ\":\"Date cancelled\",\"81jBnC\":\"Date cancelled successfully\",\"a/C/6R\":\"Date created successfully\",\"IW7Q+u\":\"Date deleted\",\"rngCAz\":\"Date deleted successfully\",\"vHbfoQ\":\"Date reactivated\",\"hvah+S\":\"Date reopened for new sales\",\"Ez0YsD\":\"Date updated successfully\",\"Te33mU\":\"Dates are managed per occurrence\",\"91zCxb\":\"Dates with sessions\",\"/ITcnz\":\"day\",\"H7OUPr\":\"Day\",\"JtHrX9\":\"Day of Month\",\"J/Upwb\":\"days\",\"vDVA2I\":\"Days of Month\",\"rDLvlL\":\"Days of Week\",\"r6zgGo\":\"December\",\"jbq7j2\":\"拒絕\",\"ovBPCi\":\"預設\",\"JtI4vj\":\"預設參加者資料收集\",\"ULjv90\":\"Default capacity per date\",\"3R/Tu2\":\"預設費用處理\",\"1bZAZA\":\"將使用預設範本\",\"HNlEFZ\":\"刪除\",\"KpnwJK\":[\"刪除\\\"\",[\"0\"],\"\\\"?\"],\"BlII4o\":[\"Delete \",[\"count\"],\" selected date(s)? Dates with orders will be skipped. This cannot be undone.\"],\"vu7gDm\":\"刪除推廣夥伴\",\"KZN4Lc\":\"全部刪除\",\"6EkaOO\":\"Delete Date\",\"io0G93\":\"刪除活動\",\"+jw/c1\":\"刪除圖片\",\"hdyeZ0\":\"刪除任務\",\"xxjZeP\":\"刪除地點\",\"sY3tIw\":\"刪除主辦方\",\"UBv8UK\":\"Delete Permanently\",\"dPyJ15\":\"刪除範本\",\"IQTR34\":\"Delete this category? Any products in it will also be deleted. This cannot be undone.\",\"/1wMxk\":\"Delete this product? This cannot be undone.\",\"mxsm1o\":\"刪除此問題?此操作無法復原。\",\"snMaH4\":\"刪除 Webhook\",\"LIZZLY\":[\"Deleted \",[\"0\"],\" date(s)\"],\"7w0Wev\":\"Description and venue added\",\"vYgeDk\":\"取消全選\",\"NvuEhl\":\"設計元素\",\"H8kMHT\":\"收唔到驗證碼?\",\"G8KNgd\":\"Different location\",\"E/QGRL\":\"Disabled\",\"OdPOhy\":\"Discord\",\"nZJ8tu\":\"Dismiss setup checklist\",\"QotGhf\":\"關閉此訊息\",\"BREO0S\":\"顯示一個複選框,允許客戶選擇接收此活動組織者的營銷通訊。\",\"HtaSQp\":\"在門票小工具中顯示每個日期的剩餘名額。您可以為個別日期單獨設定。\",\"pfa8F0\":\"顯示名稱\",\"Kdpf90\":\"別忘了!\",\"352VU2\":\"沒有帳戶?<0>註冊\",\"AXXqG+\":\"捐款\",\"DPfwMq\":\"完成\",\"JoPiZ2\":\"Door staff instructions\",\"2+O9st\":\"下載所有已完成訂單的銷售、參與者和財務報告。\",\"eneWvv\":\"草稿\",\"Ts8hhq\":\"由於垃圾郵件風險高,您必須先連接 Stripe 帳戶才能修改電子郵件範本。這是為了確保所有活動主辦方都經過驗證並負責。\",\"TnzbL+\":\"由於垃圾郵件風險較高,您必須連接Stripe帳戶才能向參與者發送訊息。\\n這是為了確保所有活動組織者都經過驗證並承擔責任。\",\"euc6Ns\":\"複製\",\"YueC+F\":\"Duplicate Date\",\"KRmTkx\":\"複製產品\",\"Jd3ymG\":\"Duration must be at least 1 minute.\",\"KIjvtr\":\"荷蘭語\",\"22xieU\":\"例如 180(3小時)\",\"/zajIE\":\"e.g. Morning Session\",\"SPKbfM\":\"例如:取得門票,立即註冊\",\"fc7wGW\":\"例如:關於您門票的重要更新\",\"54MPqC\":\"例如:標準版、進階版、企業版\",\"3RQ81z\":\"每位人士將收到一封包含預留名額的電子郵件,以完成購買。\",\"Xfsjel\":\"每個商品\",\"5oD9f/\":\"Earlier\",\"LTzmgK\":[\"編輯\",[\"0\"],\"範本\"],\"v4+lcZ\":\"編輯推廣夥伴\",\"2iZEz7\":\"編輯答案\",\"t2bbp8\":\"編輯參與者\",\"etaWtB\":\"編輯參與者詳情\",\"+guao5\":\"編輯配置\",\"1Mp/A4\":\"Edit Date\",\"m0ZqOT\":\"編輯地點\",\"8oivFT\":\"編輯地點\",\"vRWOrM\":\"編輯訂單詳情\",\"fW5sSv\":\"編輯 Webhook\",\"nP7CdQ\":\"編輯 Webhook\",\"MRZxAn\":\"Edited\",\"uBAxNB\":\"編輯器\",\"aqxYLv\":\"教育\",\"iiWXDL\":\"資格失敗\",\"zPiC+q\":\"符合條件的簽到列表\",\"SiVstt\":\"Email & scheduled messages\",\"V2sk3H\":\"電子郵件和模板\",\"hbwCKE\":\"郵箱地址已複製到剪貼板\",\"dSyJj6\":\"電子郵件地址不匹配\",\"elW7Tn\":\"郵件正文\",\"ZsZeV2\":\"必須填寫電郵\",\"Be4gD+\":\"郵件預覽\",\"6IwNUc\":\"郵件範本\",\"H/UMUG\":\"需要電郵驗證\",\"PLEl94\":\"Email verified\",\"L86zy2\":\"電郵驗證成功!\",\"FSN4TS\":\"嵌入小工具\",\"z9NkYY\":\"Embeddable widget\",\"Qj0GKe\":\"啟用參與者自助服務\",\"hEtQsg\":\"預設啟用參與者自助服務\",\"Upeg/u\":\"啟用此範本發送郵件\",\"7dSOhU\":\"啟用候補名單\",\"RxzN1M\":\"已啟用\",\"xDr/ct\":\"End\",\"sGjBEq\":\"結束日期與時間(可選)\",\"PKXt9R\":\"結束日期必須在開始日期之後\",\"ZayGC7\":\"End on a date\",\"48Y16Q\":\"結束時間(選填)\",\"TbaYrr\":[\"Ended \",[\"0\"]],\"CFgwiw\":[\"Ends \",[\"0\"]],\"SqOIQU\":\"Enter a capacity value or choose unlimited.\",\"h37gRz\":\"Enter a label or choose to remove it.\",\"7YZofi\":\"輸入主題和正文以查看預覽\",\"khyScF\":\"Enter a time to shift by.\",\"SKx/0u\":\"請輸入場地名稱或地址\",\"ppwojw\":\"線下活動請輸入場地名稱或地址\",\"j+eCIq\":\"手動輸入地址\",\"3bR1r4\":\"輸入推廣夥伴電郵(選填)\",\"ARkzso\":\"輸入推廣夥伴名稱\",\"ej4L8b\":\"Enter capacity\",\"6KnyG0\":\"輸入電郵\",\"INDKM9\":\"輸入郵件主題...\",\"xUgUTh\":\"輸入名字\",\"9/1YKL\":\"輸入姓氏\",\"VpwcSk\":\"輸入新密碼\",\"kWg31j\":\"輸入獨特推廣碼\",\"C3nD/1\":\"輸入您的電郵地址\",\"VmXiz4\":\"輸入您的電子郵件,我們將向您發送重置密碼的說明。\",\"n9V+ps\":\"輸入您的姓名\",\"IdULhL\":\"輸入您的增值稅號碼,包括國家代碼,不含空格(例如:IE1234567A、DE123456789)\",\"RRlWVA\":\"整份訂單\",\"o21Y+P\":\"entries\",\"X88/6w\":\"當客戶加入已售罄產品的候補名單時,條目將顯示在此處。\",\"LslKhj\":\"加載日誌時出錯\",\"VCNHvW\":\"活動已歸檔\",\"ZD0XSb\":\"活動已成功封存\",\"WgD6rb\":\"活動類別\",\"b46pt5\":\"活動封面圖片\",\"NAUIJ7\":\"Event created\",\"1b77ID\":\"活動已建立\",\"1Hzev4\":\"活動自定義範本\",\"+v+GW0\":\"活動日期顯示\",\"7u9/DO\":\"活動已成功刪除\",\"imgKgl\":\"活動描述\",\"IzR/Fc\":\"Event lifetime\",\"PYs3rP\":\"活動名稱\",\"HhwcTQ\":\"活動名稱\",\"WZZzB6\":\"必須填寫活動名稱\",\"Wd5CDM\":\"活動名稱應少於 150 個字元\",\"4JzCvP\":\"活動不可用\",\"mImacG\":\"活動頁面\",\"Hk9Ki/\":\"活動已成功還原\",\"JyD0LH\":\"活動設定\",\"XVLu2v\":\"活動標題\",\"OfmsI9\":\"活動太新\",\"4SILkp\":\"Event totals\",\"YDVUVl\":\"事件類型\",\"+HeiVx\":\"活動已更新\",\"19j6uh\":\"活動表現\",\"PC3/fk\":\"未來 24 小時內開始的活動\",\"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\":\"每個郵件範本都必須包含一個連結到相應頁面的行動號召按鈕\",\"BVinvJ\":\"例子:「您是如何得知我們的?」、「發票公司名稱」\",\"2hGPQG\":\"例子:「T恤尺碼」、「餐飲偏好」、「職位」\",\"qNuTh3\":\"異常\",\"M1RnFv\":\"已過期\",\"kF8HQ7\":\"匯出答案\",\"2KAI4N\":\"匯出CSV\",\"JKfSAv\":\"導出失敗。請重試。\",\"SVOEsu\":\"導出已開始。正在準備文件...\",\"wuyaZh\":\"匯出成功\",\"9bpUSo\":\"匯出緊推廣夥伴\",\"jtrqH9\":\"正在導出與會者\",\"R4Oqr8\":\"導出完成。正在下載文件...\",\"UlAK8E\":\"正在導出訂單\",\"DwuoH0\":\"Facebook\",\"7Bj3x9\":\"失敗\",\"8uOlgz\":\"失敗時間\",\"tKcbYd\":\"失敗任務\",\"SsI9v/\":\"放棄訂單失敗。請重試。\",\"LdPKPR\":\"分配配置失敗\",\"PO0cfn\":\"Failed to cancel date\",\"YUX+f+\":\"Failed to cancel dates\",\"SIHgVQ\":\"取消訊息失敗\",\"cEFg3R\":\"建立推廣夥伴失敗\",\"dVgNF1\":\"建立配置失敗\",\"fAoRRJ\":\"Failed to create schedule\",\"U66oUa\":\"建立範本失敗\",\"aFk48v\":\"刪除配置失敗\",\"n1CYMH\":\"Failed to delete date\",\"KXv+Qn\":\"Failed to delete date. It may have existing orders.\",\"JJ0uRo\":\"Failed to delete dates\",\"rgoBnv\":\"刪除活動失敗\",\"Zw6LWb\":\"刪除任務失敗\",\"tq0abZ\":\"刪除任務失敗\",\"2mkc3c\":\"刪除主辦方失敗\",\"5E23qd\":\"Failed to delete product. Please try again.\",\"vKMKnu\":\"刪除問題失敗\",\"xFj7Yj\":\"刪除範本失敗\",\"jo3Gm6\":\"匯出推廣夥伴失敗\",\"Jjw03p\":\"導出與會者失敗\",\"ZPwFnN\":\"導出訂單失敗\",\"zGE3CH\":\"匯出報告失敗。請重試。\",\"lS9/aZ\":\"載入收件人失敗\",\"X4o0MX\":\"加載 Webhook 失敗\",\"ETcU7q\":\"提供名額失敗\",\"5670b9\":\"提供票券失敗\",\"e5KIbI\":\"Failed to reactivate date\",\"7zyx8a\":\"從候補名單中移除失敗\",\"A/P7PX\":\"Failed to remove override\",\"ogWc1z\":\"Failed to reopen date\",\"0+iwE5\":\"重新排序問題失敗\",\"EJPAcd\":\"重新發送訂單確認失敗\",\"DjSbj3\":\"重新發送門票失敗\",\"YQ3QSS\":\"重新發送驗證碼失敗\",\"wDioLj\":\"重試任務失敗\",\"DKYTWG\":\"重試任務失敗\",\"WRREqF\":\"Failed to save override\",\"sj/eZA\":\"Failed to save price override\",\"780n8A\":\"Failed to save product settings\",\"zTkTF3\":\"儲存範本失敗\",\"l6acRV\":\"儲存增值稅設定失敗。請重試。\",\"T6B2gk\":\"發送訊息失敗。請再試一次。\",\"lKh069\":\"無法啟動導出任務\",\"t/KVOk\":\"無法開始模擬。請重試。\",\"QXgjH0\":\"無法停止模擬。請重試。\",\"i0QKrm\":\"更新推廣夥伴失敗\",\"NNc33d\":\"更新答案失敗。\",\"E9jY+o\":\"更新參與者失敗\",\"uQynyf\":\"更新配置失敗\",\"i2PFQJ\":\"更新活動狀態失敗\",\"EhlbcI\":\"更新訊息級別失敗\",\"rpGMzC\":\"更新訂單失敗\",\"T2aCOV\":\"更新主辦方狀態失敗\",\"Eeo/Gy\":\"更新設定失敗\",\"kqA9lY\":\"更新增值稅設定失敗\",\"7/9RFs\":\"上傳圖片失敗。\",\"nkNfWu\":\"圖片上傳失敗。請再試一次。\",\"rxy0tG\":\"驗證電郵失敗\",\"QRUpCk\":\"Family\",\"5LO38w\":\"Fast payouts to your bank\",\"4lgLew\":\"February\",\"9bHCo2\":\"費用貨幣\",\"/sV91a\":\"費用處理\",\"K4dKSP\":\"Fee override saved\",\"LyUWXA\":\"費用已繞過\",\"cf35MA\":\"節慶\",\"pAey+4\":\"檔案過大。最大大小為 5MB。\",\"VejKUM\":\"請先在上方填寫您的詳細信息\",\"/n6q8B\":\"Film\",\"L1qbUx\":\"Filter attendees\",\"8OvVZZ\":\"篩選參與者\",\"N/H3++\":\"Filter by date\",\"mvrlBO\":\"按活動篩選\",\"g+xRXP\":\"Finish setting up Stripe\",\"LHH461\":\"Finish setup\",\"syyeb9\":\"First\",\"Vj6wk9\":\"First 30 days\",\"/bpZYb\":\"First 7 days\",\"ziEnjY\":\"First 90 days\",\"1vBhpG\":\"第一位參與者\",\"4pwejF\":\"名字為必填項\",\"rVogsf\":\"請先解決問題再發布\",\"3lkYdQ\":\"Fixed fee\",\"6bBh3/\":\"固定費用\",\"zWqUyJ\":\"每筆交易收取的固定費用\",\"LWL3Bs\":\"固定費用必須為 0 或更高\",\"0RI8m4\":\"Flash off\",\"q0923e\":\"Flash on\",\"X+U6/w\":\"字體\",\"lWxAUo\":\"飲食\",\"nFm+5u\":\"頁腳文字\",\"a8nooQ\":\"Fourth\",\"wtuVU4\":\"Frequency\",\"xVhQZV\":\"Fri\",\"39y5bn\":\"Friday\",\"f5UbZ0\":\"Full data ownership\",\"cfvx/y\":\"Full event\",\"MY2SVM\":\"全額退款\",\"PGQLdy\":\"future\",\"8N/j1s\":\"Future dates only\",\"yRx/6K\":\"Future dates will be copied with capacity reset to zero\",\"T02gNN\":\"一般入場\",\"3ep0Gx\":\"關於您主辦單位的一般資訊\",\"ziAjHi\":\"產生\",\"exy8uo\":\"產生代碼\",\"4CETZY\":\"取得路線\",\"pjkEcB\":\"Get Paid\",\"lGYzP6\":\"Get paid with Stripe\",\"ZDIydz\":\"開始使用\",\"u6FPxT\":\"購票\",\"8KDgYV\":\"準備好您的活動\",\"RkXlPZ\":\"GitHub\",\"sr0UJD\":\"Go Back\",\"oNL5vN\":\"前往活動頁面\",\"gHSuV/\":\"返回主頁\",\"8+Cj55\":\"Go to Schedule\",\"6nDzTl\":\"良好的可讀性\",\"76gPWk\":\"Got it\",\"CZXzs4\":\"希臘語\",\"aGWZUr\":\"總收入\",\"n8IUs7\":\"總收入\",\"O1wAlQ\":\"Guest\",\"LIYoRQ\":\"賓客管理\",\"NUsTc4\":\"Happening now\",\"kTSQej\":[\"您好 \",[\"0\"],\",從這裡管理您的平台。\"],\"dORAcs\":\"以下是與您郵箱關聯的所有票。\",\"g+2103\":\"呢個係你嘅推廣連結\",\"bVsnqU\":\"Hi,\",\"/iE8xx\":\"Hi.Events 費用\",\"zppscQ\":\"Hi.Events 平台費用及每筆交易的增值稅明細\",\"D+zLDD\":\"已隱藏\",\"DRErHC\":\"對參與者隱藏 - 僅主辦方可見\",\"NNnsM0\":\"隱藏進階選項\",\"P+5Pbo\":\"隱藏答案\",\"VMlRqi\":\"Hide details\",\"FmogyU\":\"隱藏選項\",\"uXNYjR\":\"隱藏已售罄的日期和時間\",\"g9RcYX\":\"隱藏日期\",\"uMwTx7\":\"隱藏此類別?\",\"gtEbeW\":\"突出顯示\",\"NF8sdv\":\"突出顯示訊息\",\"MXSqmS\":\"突出顯示此產品\",\"7ER2sc\":\"已突出顯示\",\"sq7vjE\":\"突出顯示的產品將具有不同的背景色,使其在活動頁面上脫穎而出。\",\"1+WSY1\":\"Hobbies\",\"yY8wAv\":\"Hours\",\"49Tkiw\":\"折扣如何應用?\",\"sy9anN\":\"客戶收到報價後完成購買的時限。留空表示無時間限制。\",\"n2ilNh\":\"How long does the schedule run?\",\"DMr2XN\":\"How often?\",\"cceMns\":\"How VAT is applied to the platform fees we charge you.\",\"FONsLE\":\"https://awesome-events.com\",\"htoh8N\":\"https://webhook-domain.com/webhook\",\"mkWad2\":\"匈牙利語\",\"8Wgd41\":\"我確認我作為數據控制者的責任\",\"O8m7VA\":\"我同意接收與此活動相關的電子郵件通知\",\"YLgdk5\":\"我確認這是與此活動相關的交易訊息\",\"4/kP5a\":\"如果未自動開啟新分頁,請點擊下方按鈕繼續結帳。\",\"W/eN+G\":\"如果留空,地址將用於生成 Google 地圖連結\",\"CY3yHL\":\"如果勾選,此類別將對公眾隱藏。\",\"iIEaNB\":\"如果您在我們這裡有帳戶,您將收到一封電子郵件,其中包含如何重置密碼的說明。\",\"an5hVd\":\"圖片\",\"tSVr6t\":\"模擬\",\"TWXU0c\":\"模擬用戶\",\"5LAZwq\":\"模擬已開始\",\"IMwcdR\":\"模擬已停止\",\"0I0Hac\":\"重要通知\",\"yD3avI\":\"重要提示:更改您的電郵地址將更新存取此訂單的連結。儲存後,您將被重新導向至新的訂單連結。\",\"jT142F\":[[\"diffHours\"],\" 小時後\"],\"OoSyqO\":[[\"diffMinutes\"],\" 分鐘後\"],\"PdMhEx\":[\"in last \",[\"0\"],\" min\"],\"u7r0G5\":\"In person — set a venue\",\"/LCAwL\":\"進行中\",\"F1Xp97\":\"個人與會者\",\"85e6zs\":\"插入Liquid標記\",\"CTWsuc\":\"Instagram\",\"VopR6B\":\"Instant Stripe payouts\",\"nbfdhU\":\"整合\",\"I8eJ6/\":\"Internal notes on the attendee's ticket\",\"B2Tpo0\":\"無效電郵\",\"5tT0+u\":\"電郵格式無效\",\"f9WRpE\":\"無效的檔案類型。請上傳圖片。\",\"tnL+GP\":\"無效的Liquid語法。請更正後再試。\",\"N9JsFT\":\"無效的增值稅號碼格式\",\"g+lLS9\":\"邀請團隊成員\",\"1z26sk\":\"邀請團隊成員\",\"KR0679\":\"邀請團隊成員\",\"aH6ZIb\":\"邀請您的團隊\",\"Dn4OyV\":\"已邀請\",\"IuMGvq\":\"發票\",\"a/bUcL\":\"It happens on more than one date\",\"d+Oe9r\":\"It may have been unpublished or removed. Please check the link and try again.\",\"Lj7sBL\":\"意大利語\",\"F5/CBH\":\"項目\",\"BzfzPK\":\"項目\",\"rjyWPb\":\"January\",\"KmWyx0\":\"任務\",\"o5r6b2\":\"任務已刪除\",\"cd0jIM\":\"任務詳情\",\"ruJO57\":\"任務名稱\",\"YZi+Hu\":\"任務已排隊等待重試\",\"nCywLA\":\"隨時隨地加入\",\"SNzppu\":\"加入候補名單\",\"dLouFI\":[\"加入\",[\"productDisplayName\"],\"的候補名單\"],\"2gMuHR\":\"已加入\",\"u4ex5r\":\"July\",\"zeEQd/\":\"June\",\"MxjCqk\":\"只是在找您的票?\",\"xOTzt5\":\"just now\",\"0RihU9\":\"Just wrapped\",\"lB2hSG\":[\"讓我隨時了解來自 \",[\"0\"],\" 的新聞和活動\"],\"ioFA9i\":\"Keep the profit.\",\"o66QSP\":\"label updates\",\"RtKKbA\":\"Last\",\"DruLRc\":\"過去14天\",\"ve9JTU\":\"姓氏為必填項\",\"h0Q9Iw\":\"最新響應\",\"gw3Ur5\":\"最近觸發\",\"FIq1Ba\":\"Later\",\"xvnLMP\":\"Latest check-ins\",\"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\":\"淺色\",\"1qY5Ue\":\"連結已過期或無效\",\"gggTBm\":\"LinkedIn\",\"nvOPBA\":\"允許連結\",\"2BBAbc\":\"List\",\"dF6vP6\":\"已上線\",\"fpMs2Z\":\"直播\",\"D9zTjx\":\"直播活動\",\"C33p4q\":\"Loaded dates\",\"WdmJIX\":\"載入預覽中...\",\"IoDI2o\":\"載入標記中...\",\"G3Ge9Z\":\"正在載入Webhook日誌...\",\"NFxlHW\":\"正在加載 Webhook\",\"E0DoRM\":\"地點已刪除\",\"7w8lJU\":\"地點已儲存\",\"YsRXDD\":\"地點已更新\",\"A/kIva\":\"location updates\",\"iyZPPR\":\"個地點\",\"VppBoU\":\"地點\",\"iG7KNr\":\"標誌\",\"vu7ZGG\":\"標誌與封面\",\"gddQe0\":\"您主辦單位的標誌與封面圖片\",\"TBEnp1\":\"標誌將顯示於頁首\",\"Jzu30R\":\"標誌將顯示在門票上\",\"PSRm6/\":\"查找我的門票\",\"yJFu/X\":\"總部辦公室\",\"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\":\"管理活動的候補名單,查看統計數據,並向參與者提供門票。\",\"g2npA5\":\"手動提供\",\"hg6l4j\":\"March\",\"pqRBOz\":\"Mark as validated (admin override)\",\"2L3vle\":\"最大訊息數 / 24小時\",\"Qp4HWD\":\"最大收件人數 / 訊息\",\"3JzsDb\":\"May\",\"agPptk\":\"媒介\",\"xDAtGP\":\"訊息\",\"bECJqy\":\"訊息批准成功\",\"1jRD0v\":\"向與會者發送特定門票的信息\",\"uQLXbS\":\"訊息已取消\",\"48rf3i\":\"訊息不能超過5000個字符\",\"ZPj0Q8\":\"訊息詳情\",\"Vjat/X\":\"必須填寫訊息\",\"0/yJtP\":\"向具有特定產品的訂單所有者發送消息\",\"saG4At\":\"訊息已排程\",\"mFdA+i\":\"訊息級別\",\"v7xKtM\":\"訊息級別更新成功\",\"H9HlDe\":\"分鐘\",\"agRWc1\":\"Minutes\",\"zz/Wd/\":\"Mode\",\"fpMgHS\":\"Mon\",\"hty0d5\":\"Monday\",\"JbIgPz\":\"貨幣金額是所有貨幣的大致總和\",\"qvF+MT\":\"監控和管理失敗的後台任務\",\"kY2ll9\":\"month\",\"HajiZl\":\"月\",\"+8Nek/\":\"Monthly\",\"1LkxnU\":\"Monthly Pattern\",\"6jefe3\":\"months\",\"f8jrkd\":\"more\",\"JcD7qf\":\"More actions\",\"w36OkR\":\"最多瀏覽活動(過去14天)\",\"+Y/na7\":\"Move all dates earlier or later\",\"3DIpY0\":\"Multiple locations\",\"g9cQCP\":\"Multiple ticket types\",\"GfaxEk\":\"音樂\",\"oVGCGh\":\"我的票\",\"8/brI5\":\"必須填寫名稱\",\"sFFArG\":\"名稱必須少於 255 個字元\",\"xxU3NX\":\"淨收入\",\"7I8LlL\":\"New capacity\",\"n1GRql\":\"New label\",\"y0Fcpd\":\"新地點\",\"ArHT/C\":\"新註冊\",\"uK7xWf\":\"New time:\",\"veT5Br\":\"Next occurrence\",\"WXtl5X\":[\"Next: \",[\"nextFormatted\"]],\"eWRECP\":\"夜生活\",\"HSw5l3\":\"否 - 我是個人或非增值稅註冊企業\",\"VHfLAW\":\"無帳戶\",\"+jIeoh\":\"未找到賬戶\",\"074+X8\":\"沒有活動的 Webhook\",\"zxnup4\":\"冇推廣夥伴可顯示\",\"Dwf4dR\":\"暫無參與者問題\",\"th7rdT\":\"No attendees to show\",\"PKySlW\":\"No attendees yet for this date.\",\"/UC6qk\":\"未找到歸因數據\",\"E2vYsO\":\"No capabilities reported by Stripe yet.\",\"amMkpL\":\"無容量\",\"d2Jf1f\":\"No change\",\"99ntUF\":\"此活動沒有可用的簽到列表。\",\"wG+knX\":\"No check-ins yet\",\"+dAKxg\":\"找不到配置\",\"LiLk8u\":\"No connections available\",\"eb47T5\":\"未找到所選篩選條件的數據。請嘗試調整日期範圍或貨幣。\",\"Zc216S\":\"No date added\",\"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\",\"OtJSnL\":\"未安排日期\",\"gEdNe8\":\"No dates scheduled yet\",\"pZNOT9\":\"沒有結束日期\",\"dW40Uz\":\"未找到活動\",\"8pQ3NJ\":\"未來 24 小時內沒有活動開始\",\"8zCZQf\":\"尚無活動\",\"Yc5YW6\":\"沒有失敗的任務\",\"EpvBAp\":\"無發票\",\"XZkeaI\":\"未找到日誌\",\"IcAC6J\":\"沒有匹配的字體\",\"nrSs2u\":\"未找到訊息\",\"Rj99yx\":\"No occurrences available\",\"IFU1IG\":\"No occurrences on this date\",\"OVFwlg\":\"暫無訂單問題\",\"EJ7bVz\":\"找不到訂單\",\"NEmyqy\":\"尚無訂單\",\"a77B6w\":\"No orders yet for this date.\",\"wUv5xQ\":\"過去14天沒有主辦方活動\",\"vLd1tV\":\"No organizer context available.\",\"B7w4KY\":\"沒有其他可用的主辦單位\",\"PChXMe\":\"無付費訂單\",\"6jYQGG\":\"沒有過往活動\",\"CHzaTD\":\"過去14天沒有熱門活動\",\"zK/+ef\":\"沒有可供選擇的產品\",\"M1/lXs\":\"No products configured for this event.\",\"kY7XDn\":\"沒有產品有等候名單條目\",\"8mw4tm\":\"無產品訊息\",\"wYiAtV\":\"沒有最近的帳戶註冊\",\"UW90md\":\"未找到收件人\",\"QoAi8D\":\"無響應\",\"JeO7SI\":\"無回應\",\"EK/G11\":\"尚無響應\",\"59OWd3\":\"沒有已儲存的地點\",\"mPdY6W\":\"沒有建議\",\"3sRuiW\":\"未找到票\",\"debCrL\":\"沒有可售門票\",\"k2C0ZR\":\"No upcoming dates\",\"yM5c0q\":\"沒有即將舉行的活動\",\"qpC74J\":\"未找到用戶\",\"8wgkoi\":\"過去14天沒有瀏覽的活動\",\"Arzxc1\":\"沒有候補名單條目\",\"n5vdm2\":\"此端點尚未記錄任何 Webhook 事件。事件觸發後將顯示在此處。\",\"4GhX3c\":\"沒有 Webhooks\",\"4+am6b\":\"否,保留在此\",\"4JVMUi\":\"non-edited\",\"Itw24Q\":\"Not checked in\",\"x5+Lcz\":\"未簽到\",\"8n10sz\":\"不符合條件\",\"kLvU3F\":\"Notify attendees and stop sales\",\"t9QlBd\":\"November\",\"kAREMN\":\"Number of dates to create\",\"6u1B3O\":\"Occurrence\",\"mmoE62\":\"Occurrence Cancelled\",\"V9flmL\":\"Occurrence Schedule\",\"Kh3WO8\":\"Occurrence Summary\",\"byXCTu\":\"Occurrences\",\"KATw3p\":\"Occurrences (future only)\",\"85rTR2\":\"Occurrences can be configured after creation\",\"dzQfDY\":\"October\",\"BwJKBw\":\"共\",\"9h7RDh\":\"提供\",\"EfK2O6\":\"提供名額\",\"3sVRey\":\"提供門票\",\"2O7Ybb\":\"報價逾時\",\"1jUg5D\":\"已提供\",\"l+/HS6\":[\"報價將在 \",[\"timeoutHours\"],\" 小時後過期。\"],\"6Aih4U\":\"離線\",\"nO3VbP\":[\"正在銷售 \",[\"0\"]],\"oXOSPE\":\"線上\",\"aqmy5k\":\"Online — provide connection details\",\"LuZBbx\":\"Online & in-person\",\"IXuOqt\":\"Online & in-person — see schedule\",\"WjSpu5\":\"線上活動\",\"scPxI/\":[\"僅剩 \",[\"capacity\"],\" 個\"],\"NdOxqr\":\"只有帳戶管理員可以刪除或封存活動。請聯絡您的帳戶管理員尋求協助。\",\"rnoDMF\":\"只有帳戶管理員可以刪除或封存主辦方。請聯絡您的帳戶管理員尋求協助。\",\"bU7oUm\":\"僅發送給具有這些狀態的訂單\",\"wkpaqp\":\"僅顯示開始日期和時間\",\"DMk8F0\":\"Only tickets count toward capacity\",\"M2w1ni\":\"僅使用促銷代碼時可見\",\"y8Bm7C\":\"Open check-in\",\"RLz7P+\":\"Open occurrence\",\"cDSdPb\":\"在選擇器中顯示的可選暱稱,例如\\\"總部會議室\\\"\",\"HXMJxH\":\"免責聲明、聯繫信息或感謝說明的可選文本(僅單行)\",\"L565X2\":\"選項\",\"8m9emP\":\"or add a single date\",\"eBskDE\":\"或啟用線下付款並停用 Stripe\",\"dSeVIm\":\"order\",\"c/TIyD\":\"訂單及門票\",\"H5qWhm\":\"訂單已取消\",\"b6+Y+n\":\"訂單完成\",\"x4MLWE\":\"訂單確認\",\"CsTTH0\":\"訂單確認重新發送成功\",\"ppuQR4\":\"訂單已創建\",\"xtQzag\":\"Order details\",\"vrSW9M\":\"訂單已取消並退款。訂單所有者已收到通知。\",\"rzw+wS\":\"訂單持有人\",\"oI/hGR\":\"訂單編號\",\"RQCXz6\":\"訂單限制\",\"SO9AEF\":\"已設定訂單限制\",\"vu6Arl\":\"訂單標記為已支付\",\"sLbJQz\":\"未找到訂單\",\"kvYpYu\":\"找不到訂單\",\"eJ8SvM\":\"Order number, purchase date, purchaser email\",\"FaPYw+\":\"訂單所有者\",\"eB5vce\":\"具有特定產品的訂單所有者\",\"CxLoxM\":\"具有產品的訂單所有者\",\"UkHo4c\":\"訂單參考\",\"EZy55F\":\"訂單已退款\",\"6eSHqs\":\"訂單狀態\",\"oW5877\":\"訂單總額\",\"e7eZuA\":\"訂單已更新\",\"1SQRYo\":\"訂單更新成功\",\"3NT0Ck\":\"訂單已被取消\",\"V5khLm\":\"orders\",\"sd5IMt\":\"已完成訂單\",\"5It1cQ\":\"訂單已導出\",\"UQ0ACV\":\"訂單總額\",\"B/EBQv\":\"訂單:\",\"qtGTNu\":\"自然帳戶\",\"P/JHA4\":\"主辦方已成功封存\",\"S3CZ5M\":\"主辦單位儀表板\",\"GzjTd0\":\"主辦方已成功刪除\",\"SQqJd8\":\"找不到主辦單位\",\"HF8Bxa\":\"主辦方已成功還原\",\"wpj63n\":\"主辦單位設定\",\"o1my93\":\"更新主辦單位狀態失敗。請稍後再試。\",\"rLHma1\":\"主辦單位狀態已更新\",\"LqBITi\":\"將使用組織者/預設範本\",\"q4zH+l\":\"Organizers\",\"/IX/7x\":\"其他\",\"RsiDDQ\":\"其他列表(不包含此票)\",\"aDfajK\":\"Outdoors\",\"qMASRF\":\"發出的訊息\",\"iCOVQO\":\"Override\",\"GpFTEc\":\"Override fees on this organizer\",\"M9ZhMP\":\"Override price\",\"cnVIpl\":\"Override removed\",\"6/dCYd\":\"總覽\",\"6WdDG7\":\"頁面\",\"8uqsE5\":\"頁面不再可用\",\"QkLf4H\":\"頁面網址\",\"sF+Xp9\":\"頁面瀏覽量\",\"v4nCHK\":\"Paid\",\"c+suC6\":\"付費帳戶\",\"5F7SYw\":\"部分退款\",\"fFYotW\":[\"部分退款:\",[\"0\"]],\"i8day5\":\"將費用轉嫁給買家\",\"k4FLBQ\":\"轉嫁給買家\",\"Ff0Dor\":\"過去\",\"BFjW8X\":\"Past due\",\"xTPjSy\":\"過往活動\",\"/l/ckQ\":\"貼上網址\",\"URAE3q\":\"已暫停\",\"4fL/V7\":\"付款\",\"c2/9VE\":\"負載數據\",\"5cxUwd\":\"付款日期\",\"ENEPLY\":\"付款方式\",\"8Lx2X7\":\"已收到付款\",\"fx8BTd\":\"付款不可用\",\"C+ylwF\":\"Payouts\",\"UbRKMZ\":\"Pending\",\"UkM20g\":\"待審核\",\"dPYu1F\":\"每位參與者\",\"mQV/nJ\":\"per min\",\"+kvxv+\":\"每單\",\"VlXNyK\":\"每份訂單\",\"NhuGd7\":\"每件商品\",\"hauDFf\":\"每張門票\",\"mnF83a\":\"百分比費用\",\"TNLuRD\":\"Percentage fee (%)\",\"MixU2P\":\"百分比必須介於 0 到 100 之間\",\"MkuVAZ\":\"交易金額的百分比\",\"/Bh+7r\":\"表現\",\"fIp56F\":\"永久刪除此活動及其所有相關資料。\",\"nJeeX7\":\"永久刪除此主辦方及其所有活動。\",\"wfCTgK\":\"Permanently remove this date\",\"6kPk3+\":\"個人資料\",\"zmwvG2\":\"電話\",\"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\":\"計劃舉辦活動?\",\"J3lhKT\":\"平台費用\",\"RD51+P\":[\"從您的付款中扣除 \",[\"0\"],\" 的平台費用\"],\"br3Y/y\":\"平台費用\",\"3buiaw\":\"平台費用報告\",\"kv9dM4\":\"平台收入\",\"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\":\"請輸入有效的電子郵件地址\",\"jEw0Mr\":\"請輸入有效的 URL\",\"n8+Ng/\":\"請輸入5位數驗證碼\",\"r+lQXT\":\"請輸入您的增值稅號碼\",\"Dvq0wf\":\"請提供圖片。\",\"2cUopP\":\"請重新開始結賬流程。\",\"GoXxOA\":\"Please select a date and time\",\"8KmsFa\":\"請選擇日期範圍\",\"EFq6EG\":\"請選擇圖片。\",\"fuwKpE\":\"請再試一次。\",\"klWBeI\":\"請等一陣再申請新嘅驗證碼\",\"hfHhaa\":\"請稍候,我哋準備緊匯出你嘅推廣夥伴...\",\"o+tJN/\":\"請稍候,我們正在準備導出您的與會者...\",\"+5Mlle\":\"請稍候,我們正在準備導出您的訂單...\",\"trnWaw\":\"波蘭語\",\"luHAJY\":\"熱門活動(過去14天)\",\"p/78dY\":\"Position\",\"OESu7I\":\"透過在多種門票類型之間共享庫存來防止超賣。\",\"NgVUL2\":\"預覽結帳表單\",\"cs5muu\":\"預覽活動頁面\",\"Jm2AC3\":\"Price Tier\",\"a5jvSX\":\"價格等級\",\"ReihZ7\":\"列印預覽\",\"JnuPvH\":\"列印門票\",\"tYF4Zq\":\"列印為PDF\",\"LcET2C\":\"私隱政策\",\"8z6Y5D\":\"處理退款\",\"JcejNJ\":\"處理訂單中\",\"EWCLpZ\":\"產品已創建\",\"XkFYVB\":\"產品已刪除\",\"YMwcbR\":\"產品銷售、收入和税費明細\",\"ls0mTC\":\"Product settings cannot be edited for cancelled dates.\",\"2339ej\":\"Product settings saved successfully\",\"ldVIlB\":\"產品已更新\",\"CP3D8G\":\"Progress\",\"JoKGiJ\":\"優惠碼\",\"k3wH7i\":\"促銷碼使用情況及折扣明細\",\"tZqL0q\":\"promo codes\",\"oCHiz3\":\"Promo codes\",\"uEhdRh\":\"僅限促銷\",\"dLm8V5\":\"促銷電子郵件可能導致帳戶被暫停\",\"W0ETyY\":\"請至少填寫一個地址欄位(場地、街道、城市或國家)。\",\"2W/7Gz\":\"Provide the following before Stripe's next review to keep payouts flowing.\",\"EEYbdt\":\"發佈\",\"JcgJKc\":\"仍要發布\",\"evDBV8\":\"發布活動\",\"2zEfOd\":\"Publish your event\",\"L7nrC8\":\"發布後,您的活動頁面將公開並開放報名。\",\"dsFmM+\":\"已購買\",\"JunetL\":\"Purchaser\",\"phmeUH\":\"Purchaser email\",\"ywR4ZL\":\"QR code check-in\",\"oWXNE5\":\"數量\",\"biEyJ4\":\"Question answers\",\"k/bJj0\":\"問題已重新排序\",\"b24kPi\":\"隊列\",\"lTPqpM\":\"Quick Tip\",\"fqDzSu\":\"費率\",\"mnUGVC\":\"超出速率限制。請稍後再試。\",\"t41hVI\":\"重新提供名額\",\"TNclgc\":\"Reactivate this date? It will be reopened for future sales.\",\"RENQ6j\":\"準備好發布了嗎?\",\"uqoRbb\":\"Real-time analytics\",\"xzRvs4\":[\"接收 \",[\"0\"],\" 的產品更新。\"],\"pLXbi8\":\"最近帳戶註冊\",\"M1HGuR\":\"Recent activity\",\"3kJ0gv\":\"Recent Attendees\",\"qhfiwV\":\"Recent check-ins\",\"S+0XMX\":\"Recent orders\",\"Fi3b48\":\"最近訂單\",\"7hPBBn\":\"位收件人\",\"jp5bq8\":\"位收件人\",\"yPrbsy\":\"收件人\",\"E1F5Ji\":\"收件人在訊息發送後可用\",\"WEYdDv\":\"Recommended\",\"wuhHPE\":\"Recurring\",\"asLqwt\":\"重複活動\",\"s3uzsK\":\"重複活動設定\",\"D0tAMe\":\"Recurring events\",\"JjMIKU\":\"Reddit\",\"HiGkFu\":\"正在重定向到 Stripe...\",\"pnoTN5\":\"推薦帳戶\",\"ACKu03\":\"刷新預覽\",\"vuFYA6\":\"Refund all orders for these dates\",\"4cRUK3\":\"Refund all orders for this date\",\"fKn/k6\":\"退款金額\",\"qY4rpA\":\"退款失敗\",\"FaK/8G\":[\"退款訂單 \",[\"0\"]],\"MGbi9P\":\"退款待處理\",\"BDSRuX\":[\"已退款:\",[\"0\"]],\"bU4bS1\":\"退款\",\"rYXfOA\":\"地區設定\",\"5tl0Bp\":\"註冊問題\",\"ZNo5k1\":\"Remaining\",\"Bjh87R\":\"Remove label from all dates\",\"IVZaEo\":\"從活動頁面完全移除已售罄的日期和時間。停用時,它們仍然可見並標示為已售罄。\",\"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\":\"未找到報告\",\"JEPMXN\":\"請求新連結\",\"TMLAx2\":\"必填\",\"mdeIOH\":\"重新發送驗證碼\",\"sQxe68\":\"重新發送確認\",\"bxoWpz\":\"重新發送確認電郵\",\"G42SNI\":\"重新發送電郵\",\"TTpXL3\":[[\"resendCooldown\"],\"秒後重新發送\"],\"5CiNPm\":\"重新發送門票\",\"Uwsg2F\":\"已預留\",\"8wUjGl\":\"保留至\",\"a5z8mb\":\"Reset to base price\",\"kCn6wb\":\"重置中...\",\"ZlCDf+\":\"回應\",\"bsydMp\":\"回應詳情\",\"yKu/3Y\":\"還原\",\"RokrZf\":\"還原活動\",\"/JyMGh\":\"還原主辦方\",\"HFvFRb\":\"還原此活動以使其再次可見。\",\"DDIcqy\":\"還原此主辦方並使其重新活躍。\",\"mO8KLE\":\"results\",\"6gRgw8\":\"重試\",\"1BG8ga\":\"全部重試\",\"rDC+T6\":\"重試任務\",\"CbnrWb\":\"返回活動\",\"Lf7TCn\":\"當您建立帶地址的活動時,可重複使用的場地會自動出現在這裡,您也可以自行新增。\",\"mdQ0zb\":\"可在活動中重複使用的場地。透過自動完成建立的地點會自動儲存在這裡。\",\"XFOPle\":\"Reuse\",\"1Zehp4\":\"Reuse a Stripe connection from another organizer in this account.\",\"Oo/PLb\":\"收入摘要\",\"CfuueU\":\"撤銷報價\",\"RIgKv+\":\"Run until a specific date\",\"dFFW9L\":[\"銷售已於 \",[\"0\"],\" 結束\"],\"loCKGB\":[\"銷售於 \",[\"0\"],\" 結束\"],\"wlfBad\":\"銷售期間\",\"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\":\"已設定銷售期間\",\"ftzaMf\":\"銷售期間、訂單限制、可見性\",\"zpekWp\":[\"銷售於 \",[\"0\"],\" 開始\"],\"mUv9U4\":\"銷售\",\"9KnRdL\":\"銷售已暫停\",\"JC3J0k\":\"Sales, attendance, and check-in breakdown per occurrence\",\"3VnlS9\":\"所有活動的銷售、訂單和表現指標\",\"3Q1AWe\":\"銷售額:\",\"LeuERW\":\"Same as event\",\"B4nE3N\":\"示例票價\",\"8BRPoH\":\"示例場地\",\"PiK6Ld\":\"Sat\",\"+5kO8P\":\"Saturday\",\"zJiuDn\":\"Save fee override\",\"NB8Uxt\":\"Save Schedule\",\"KZrfYJ\":\"儲存社交連結\",\"9Y3hAT\":\"儲存範本\",\"C8ne4X\":\"儲存門票設計\",\"cTI8IK\":\"Save VAT settings\",\"6/TNCd\":\"儲存增值稅設定\",\"4RvD9q\":\"已儲存的地點\",\"cgw0cL\":\"已儲存的地點\",\"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\":\"已排程\",\"qcP/8K\":\"排程時間\",\"A1taO8\":\"Search\",\"ftNXma\":\"搜尋推廣夥伴...\",\"VMU+zM\":\"Search attendees\",\"VY+Bdn\":\"按賬戶名稱或電子郵件搜尋...\",\"VX+B3I\":\"按活動標題或主辦方搜索...\",\"R0wEyA\":\"按任務名稱或異常搜索...\",\"YnMfsK\":\"按名稱或地址搜尋...\",\"VT+urE\":\"按姓名或電子郵件搜尋...\",\"GHdjuo\":\"按姓名、電子郵件或帳戶搜索...\",\"4mBFO7\":\"Search by name, order #, ticket # or email\",\"20ce0U\":\"按訂單編號、客戶姓名或電子郵件搜尋...\",\"4DSz7Z\":\"按主題、活動或賬戶搜索...\",\"nQC7Z9\":\"Search dates...\",\"iRtEpV\":\"Search dates…\",\"JRM7ao\":\"Search for an address\",\"BWF1kC\":\"搜尋訊息...\",\"5WYZKZ\":\"搜尋結果\",\"IG85fV\":\"搜尋已儲存的地點或尋找地址...\",\"3aD3GF\":\"Seasonal\",\"ku//5b\":\"Second\",\"Mck5ht\":\"安全結帳\",\"s7tXqF\":\"See schedule\",\"JFap6u\":\"See what Stripe still needs\",\"p7xUrt\":\"選擇類別\",\"hTKQwS\":\"Select a Date & Time\",\"Ps6Xtf\":\"Select a date to see available times\",\"e4L7bF\":\"選擇一則訊息查看其內容\",\"zPRPMf\":\"選擇級別\",\"BFRSTT\":\"選擇帳戶\",\"wgNoIs\":\"Select all\",\"mCB6Je\":\"全選\",\"aCEysm\":[\"Select all on \",[\"0\"]],\"a6+167\":\"選擇活動\",\"CFbaPk\":\"選擇參加者群組\",\"88a49s\":\"Select camera\",\"tVW/yo\":\"選擇貨幣\",\"SJQM1I\":\"Select date\",\"n9ZhRa\":\"選擇結束日期與時間\",\"gTN6Ws\":\"選擇結束時間\",\"0U6E9W\":\"選擇活動類別\",\"j9cPeF\":\"選擇事件類型\",\"ypTjHL\":\"Select occurrence\",\"KizCK7\":\"選擇開始日期與時間\",\"dJZTv2\":\"選擇開始時間\",\"x8XMsJ\":\"為此帳戶選擇訊息級別。這控制訊息限制和連結權限。\",\"aT3jZX\":\"選擇時區\",\"TxfvH2\":\"選擇哪些參加者應該收到此訊息\",\"Ropvj0\":\"選擇哪些事件將觸發此 Webhook\",\"+6YAwo\":\"selected\",\"ylXj1N\":\"已選擇\",\"uq3CXQ\":\"Sell out your event.\",\"oBXbO4\":\"Selling a physical product? Cap its quantity on the <0>products page instead.\",\"j9b/iy\":\"熱賣中 🔥\",\"73qYgo\":\"作為測試發送\",\"HMAqFK\":\"向參與者、持票人或訂單擁有者發送電子郵件。訊息可以立即發送或安排稍後發送。\",\"22Itl6\":\"發送副本給我\",\"NpEm3p\":\"立即發送\",\"nOBvex\":\"將即時訂單和參與者資料傳送到您的外部系統。\",\"1lNPhX\":\"發送退款通知郵件\",\"eaUTwS\":\"發送重置連結\",\"5cV4PY\":\"Send to all occurrences, or choose a specific one\",\"QEQlnV\":\"發送您的第一則訊息\",\"IoAuJG\":\"發送中...\",\"h69WC6\":\"已發送\",\"BVu2Hz\":\"發送者\",\"ZFa8wv\":\"Sent to attendees when a scheduled date is cancelled\",\"SPdzrs\":\"客戶下訂時發送\",\"LxSN5F\":\"發送給每位參會者及其門票詳情\",\"hgvbYY\":\"September\",\"5sN96e\":\"Session cancelled\",\"89xaFU\":\"為此主辦方創建的新活動設置預設平台費用設置。\",\"eXssj5\":\"為此主辦單位下創建的新活動設定預設設定。\",\"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\":\"為不同的入口、場次或日期設定簽到列表。\",\"TaWVGe\":\"Set up payouts\",\"JA//e6\":\"Set up schedule\",\"gzXY7l\":\"Set Up Schedule\",\"0Ls9qe\":\"Set up the tickets you'll sell and their prices\",\"xMO+Ao\":\"設定你嘅機構\",\"5pEFnq\":\"Set up your schedule\",\"h/9JiC\":\"Set Up Your Schedule\",\"zRRuUD\":\"Set up your schedule in the next steps\",\"ETC76A\":\"Set, change, or remove the date's location or online details\",\"C3htzi\":\"設定已更新\",\"Ohn74G\":\"設定與設計\",\"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\":\"分享推廣連結\",\"hL7sDJ\":\"分享主辦單位頁面\",\"jy6QDF\":\"共享容量管理\",\"jDNHW4\":\"Shift times\",\"tPfIaW\":[\"Shifted times for \",[\"count\"],\" date(s)\"],\"WwlM8F\":\"顯示進階選項\",\"cMW+gm\":[\"顯示所有平台(另有 \",[\"0\"],\" 個有內容)\"],\"wXi9pZ\":\"Show attendee notes to non-logged-in staff\",\"4LZFir\":\"顯示整個日期範圍\",\"UVPI5D\":\"顯示較少平台\",\"Eu/N/d\":\"顯示營銷訂閱複選框\",\"SXzpzO\":\"預設顯示營銷訂閱複選框\",\"b33PL9\":\"顯示更多平台\",\"Eut7p9\":\"Show order details to non-logged-in staff\",\"+RoWKN\":\"Show question answers to non-logged-in staff\",\"jbcx6L\":\"Show remaining capacity on event dates\",\"rXxBOx\":\"Show remaining capacity to buyers\",\"t1LIQW\":[\"顯示 \",[\"0\"],\" / \",[\"totalRows\"],\" 條記錄\"],\"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\":\"註冊時間\",\"5C7J+P\":\"Single Event\",\"E//btK\":\"Skip manually edited dates\",\"paESr6\":\"斯洛伐克語\",\"9wu8nm\":\"Snapchat\",\"kIKb9e\":\"社交\",\"d0rUsW\":\"社交連結\",\"j/TOB3\":\"社交連結與網站\",\"s9KGXU\":\"已售出\",\"yp+0jj\":\"sold out\",\"1hupow\":\"售罄,可加入候補名單\",\"iACSrw\":\"Some details are hidden from public access. Log in to view everything.\",\"Dia6iz\":\"Something went wrong while deleting the image. Please try again.\",\"KTxc6k\":\"出現問題,請重試,或在問題持續時聯繫客服\",\"lkE00/\":\"出了點問題。請稍後再試。\",\"wdxz7K\":\"來源\",\"fDG2by\":\"Spirituality\",\"oPaRES\":\"Split check-in across days, areas, or ticket types. Share the link with staff — no account needed on their end.\",\"7JFNej\":\"體育\",\"/bfV1Y\":\"Staff instructions\",\"tXkhj/\":\"Start\",\"StWUH4\":\"Start check-in\",\"JcQp9p\":\"開始日期同時間\",\"0m/ekX\":\"開始日期與時間\",\"izRfYP\":\"必須填寫開始日期\",\"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/\":\"統計數據\",\"GVUxAX\":\"統計數據基於帳戶創建日期\",\"29Hx9U\":\"Stats\",\"5ia+r6\":\"Still needed\",\"wuV0bK\":\"停止模擬\",\"s/KaDb\":\"Stripe connected\",\"Bk06QI\":\"Stripe 已連接\",\"akZMv8\":[\"Stripe connection copied from \",[\"0\"],\".\"],\"v0aRY1\":\"Stripe didn't return a setup link. Please try again.\",\"aKtF0O\":\"Stripe未連接\",\"9i0++A\":\"Stripe 付款 ID\",\"R1lIMV\":\"Stripe will need a few more details soon\",\"FzcCHA\":\"Stripe will walk you through a few quick questions to finish setup.\",\"ii0qn/\":\"主題是必需的\",\"M7Uapz\":\"主題將顯示在這裏\",\"6aXq+t\":\"主題:\",\"JwTmB6\":\"產品複製成功\",\"WUOCgI\":\"已成功提供名額\",\"IvxA4G\":[\"已成功向 \",[\"count\"],\" 人提供門票\"],\"kKpkzy\":\"已成功向 1 人提供門票\",\"Zi3Sbw\":\"已成功從候補名單中移除\",\"RuaKfn\":\"地址更新成功\",\"kzx0uD\":\"成功更新活動預設值\",\"5n+Wwp\":\"主辦單位更新成功\",\"DMCX/I\":\"平台費用預設設置更新成功\",\"URUYHc\":\"平台費用設置更新成功\",\"kRWc2g\":\"已成功更新重複活動設定\",\"0Dk/l8\":\"SEO 設定已成功更新\",\"S8Tua9\":\"設定更新成功\",\"MhOoLQ\":\"社交連結更新成功\",\"CNSSfp\":\"追蹤設定更新成功\",\"kj7zYe\":\"Webhook 更新成功\",\"dXoieq\":\"摘要\",\"/RfJXt\":[\"夏日音樂節 \",[\"0\"]],\"CWOPIK\":\"2025夏季音樂節\",\"D89zck\":\"Sun\",\"DBC3t5\":\"Sunday\",\"UaISq3\":\"瑞典語\",\"JZTQI0\":\"切換主辦單位\",\"9YHrNC\":\"系統預設\",\"lruQkA\":\"Tap this screen to resume scanning\",\"TJUrME\":[\"Targeting attendees across \",[\"0\"],\" selected sessions.\"],\"yT6dQ8\":\"按稅種和活動分組的已收稅款\",\"Ye321X\":\"稅種名稱\",\"WyCBRt\":\"稅務摘要\",\"GkH0Pq\":\"已套用稅項及費用\",\"Rwiyt2\":\"已配置稅項\",\"iQZff7\":\"稅項、費用、可見性、銷售期間、產品重點和訂單限制\",\"SXvRWU\":\"Team collaboration\",\"vlf/In\":\"科技\",\"SchpMp\":\"Telegram\",\"iWa9cY\":\"讓人們知道您的活動有什麼內容\",\"NiIUyb\":\"請告訴我們您的活動\",\"DovcfC\":\"話俾我哋知你嘅機構資料。呢啲資料會顯示喺你嘅活動頁面。\",\"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\":\"範本已啟用\",\"QHhZeE\":\"範本建立成功\",\"xrWdPR\":\"範本刪除成功\",\"G04Zjt\":\"範本儲存成功\",\"xowcRf\":\"服務條款\",\"6K0GjX\":\"文字可能難以閱讀\",\"nm3Iz/\":\"感謝您的參與!\",\"pYwj0k\":\"Thanks,\",\"k3IitN\":\"That's a wrap\",\"KfmPRW\":\"頁面的背景顏色。使用封面圖片時,這會作為覆蓋層應用。\",\"MDNyJz\":\"驗證碼會喺10分鐘後過期。如果你搵唔到電郵,請檢查垃圾郵件資料夾。\",\"AIF7J2\":\"定義固定費用的貨幣。結帳時將轉換為訂單貨幣。\",\"7oksH+\":[\"折扣將從每個符合條件的商品中扣除。例如:立減 \",[\"currencySymbol\"],\"10 × 3 張票 = 共減 \",[\"currencySymbol\"],\"30。\"],\"sKL8k2\":\"折扣僅從訂單總額中扣除一次。\",\"cDHM1d\":\"電郵地址已更改。參與者將在更新後的電郵地址收到新門票。\",\"tXadb0\":\"您查找的活動目前不可用。它可能已被刪除、過期或 URL 不正確。\",\"5fPdZe\":\"The first date this schedule will generate from.\",\"sxKqBm\":\"訂單全額將退款至客戶的原始付款方式。\",\"KgDp6G\":\"您嘗試存取的連結已過期或不再有效。請檢查您的電郵以獲取管理訂單的更新連結。\",\"Np4eLs\":[\"The maximum is \",[\"MAX_PREVIEW\"],\" sessions. Please reduce the date range, frequency, or number of sessions per day.\"],\"sYLeDq\":\"找不到您正在尋找的主辦單位。頁面可能已被移動、刪除,或網址不正確。\",\"PCr4zw\":\"The override is recorded in the order audit log.\",\"C4nQe5\":\"平台費用會添加到票價中。買家支付更多,但您會收到完整的票價。\",\"HxxXZO\":\"用於按鈕和突出顯示的主要品牌顏色\",\"OVSkIF\":\"敏捷的棕色狐狸跳過懶狗。\",\"z0KrIG\":\"排程時間為必填項\",\"EWErQh\":\"排程時間必須是將來的時間\",\"UNd0OU\":[\"The session for \\\"\",[\"title\"],\"\\\" originally scheduled for \",[\"0\"],\" has been rescheduled.\"],\"DEcpfp\":\"模板正文包含無效的Liquid語法。請更正後再試。\",\"injXD7\":\"無法驗證增值稅號碼。請檢查號碼並重試。\",\"A4UmDy\":\"劇場\",\"tDwYhx\":\"主題與顏色\",\"ybBP2H\":\"There are no products available for this date. Please choose another date.\",\"O7g4eR\":\"There are no upcoming dates for this event\",\"062KsE\":\"These details are shown on the attendee's ticket and order summary for this date only.\",\"5Eu+tn\":\"這些詳情僅在訂單成功完成後顯示。\",\"jQjwR+\":\"These details will replace any existing location on the affected dates and show on attendee tickets.\",\"6eaLu/\":\"這些價格適用於日程中的所有場次,層級數量限制的是所有場次合計的總銷量。層級的銷售日期全域生效。您可以在<0>場次安排頁面為個別場次覆寫價格。\",\"QP3gP+\":\"這些設定僅適用於複製的嵌入代碼,不會被儲存。\",\"HirZe8\":\"這些範本將用作您組織中所有活動的預設範本。單個活動可以用自己的自定義版本覆蓋這些範本。\",\"lzAaG5\":\"這些範本將僅覆蓋此活動的組織者預設設置。如果這裏沒有設置自定義範本,將使用組織者範本。\",\"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\":\"呢個代碼會用嚟追蹤銷售。只可以用字母、數字、連字號同底線。\",\"AaP0M+\":\"對某些使用者來說,此顏色組合可能難以閱讀\",\"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.\",\"E9BqZw\":\"This date only\",\"RzEvf5\":\"此活動已結束\",\"kc4bIA\":\"此活動尚未有門票或商品,參加者將無法報名。\",\"eMaNd0\":\"This event is not available\",\"YClrdK\":\"呢個活動未發佈\",\"GL6z+k\":\"此活動已售罄\",\"pIwDhS\":\"This event's dates and times are set on the occurrence schedule.\",\"ny5rgr\":\"This is a recurring event\",\"tc64Zz\":\"這是將顯示在活動頁面上的類別名稱。\",\"dFJnia\":\"這是將會顯示給使用者的主辦單位名稱。\",\"vt7jiq\":\"簽名密鑰僅顯示一次。請立即複製並妥善保存。\",\"5DpZrC\":\"此設定限制的是整個日程所有場次的總銷量,而不是每場的限制。如需限制每場的人數,請在<0>場次安排頁面設定容量。\",\"L7dIM7\":\"此連結無效或已過期。\",\"MR5ygV\":\"此連結不再有效\",\"9LEqK0\":\"此名稱對最終用戶可見\",\"QdUMM9\":\"This occurrence is at capacity\",\"j5FdeA\":\"此訂單正在處理中。\",\"sjNPMw\":\"此訂單已被放棄。您可以隨時開始新的訂單。\",\"OhCesD\":\"此訂單已被取消。您可以隨時開始新訂單。\",\"lyD7rQ\":\"呢個主辦方資料未發佈\",\"9b5956\":\"此預覽顯示您的郵件使用示例資料的外觀。實際郵件將使用真實值。\",\"uM9Alj\":\"此產品在活動頁面上突出顯示\",\"RqSKdX\":\"此產品已售罄\",\"qEGn8I\":\"此重複活動尚未有日期,參加者無法預訂。\",\"W12OdJ\":\"此報告僅供參考。在將此數據用於會計或稅務目的之前,請務必諮詢稅務專業人士。請與您的Stripe儀表板進行交叉驗證,因為Hi.Events可能缺少歷史數據。\",\"1LuJNw\":\"此門票已失效\",\"0Ew0uk\":\"此門票剛剛被掃描。請等待後再次掃描。\",\"FYXq7k\":[\"This will affect \",[\"loadedAffectedCount\"],\" date(s).\"],\"kvpxIU\":\"這將用於通知和與使用者的溝通。\",\"rhsath\":\"呢個唔會俾客戶睇到,但可以幫你識別推廣夥伴。\",\"hV6FeJ\":\"Throughput\",\"+FjWgX\":\"Thu\",\"kkDQ8m\":\"Thursday\",\"0GSPnc\":\"門票設計\",\"EZC/Cu\":\"門票設計儲存成功\",\"bbslmb\":\"門票設計器\",\"1BPctx\":\"門票:\",\"HGuXjF\":\"票務持有人\",\"CMUt3Y\":\"票務持有人\",\"awHmAT\":\"門票 ID\",\"6czJik\":\"門票標誌\",\"t79rDv\":\"找不到門票\",\"6tmWch\":\"票券或產品\",\"1tfWrD\":\"門票預覽:\",\"KnjoUA\":\"票價\",\"pGZOcL\":\"門票重新發送成功\",\"o02GZM\":\"Ticket sales have ended for this event\",\"8jLPgH\":\"門票類型\",\"8qsbZ5\":\"票務與銷售\",\"zNECqg\":\"門票\",\"6GQNLE\":\"門票\",\"NRhrIB\":\"票券與產品\",\"OrWHoZ\":\"當有空餘名額時,門票將自動提供給候補名單中的客戶。\",\"EUnesn\":\"門票有售\",\"AGRilS\":\"已售票數\",\"zyUxcw\":\"TikTok\",\"LhMjLm\":\"Time\",\"fXf2r5\":[\"Times shown in \",[\"timezoneAbbr\"]],\"dMtLDE\":\"to\",\"/jQctM\":\"收件人\",\"tiI71C\":\"要提高您的限制,請聯繫我們\",\"ecUA8p\":\"Today\",\"W428WC\":\"切換欄位\",\"BRMXj0\":\"Tomorrow\",\"UBSG1X\":\"頂級主辦方(過去14天)\",\"3sZ0xx\":\"總賬戶數\",\"SMDzqJ\":\"總參與人數\",\"orBECM\":\"總收款\",\"k5CU8c\":\"總條目\",\"4B7oCp\":\"總費用\",\"sMMlTX\":\"Total fees\",\"mlvCEl\":\"Total orders\",\"2AW/k5\":\"所有場次的總數量\",\"dp8BCb\":\"Total tax\",\"vb0Q0/\":\"總用戶數\",\"oJjplO\":\"總瀏覽量\",\"rBZ9pz\":\"Tours\",\"orluER\":\"按歸因來源追蹤帳戶增長和表現\",\"YwKzpH\":\"追蹤與分析\",\"GUA0Jy\":\"Try a different search term or filter\",\"2P/OWN\":\"Try adjusting your filters to see more dates.\",\"ouM5IM\":\"嘗試其他郵箱\",\"3DZvE7\":\"免費試用Hi.Events\",\"vq2WxD\":\"Tue\",\"G3myU+\":\"Tuesday\",\"Kz91g/\":\"土耳其語\",\"GdOhw6\":\"關閉聲音\",\"KUOhTy\":\"開啟聲音\",\"dBeuY2\":\"Twitch\",\"QytzQr\":\"輸入\\\"刪除\\\"以確認\",\"nWRfmt\":\"排版\",\"IrVSu+\":\"無法複製產品。請檢查您的詳細信息\",\"Vx2J6x\":\"無法擷取參與者資料\",\"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\":\"未歸因帳戶\",\"9uI/rE\":\"Undo\",\"Ef7StM\":\"未知\",\"ZBAScj\":\"未知參會者\",\"MEIAzV\":\"未命名\",\"K6L5Mx\":\"未命名地點\",\"7yiFvZ\":\"未付款\",\"X13xGn\":\"不受信任\",\"gyXpQN\":\"Upcoming events\",\"Pp1sWX\":\"更新推廣夥伴\",\"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\":\"上傳主辦單位的封面圖片\",\"4kEGqW\":\"上傳主辦單位的標誌\",\"lnCMdg\":\"上傳圖片\",\"29w7p6\":\"正在上傳圖片...\",\"HtrFfw\":\"URL 是必填項\",\"vzWC39\":\"USB\",\"td5pxI\":\"USB scanner listening\",\"dyTklH\":\"USB scanner paused\",\"OHJXlK\":\"使用 <0>Liquid 模板 個性化您的郵件\",\"/rsy72\":\"Use event default\",\"0k4cdb\":\"為所有參加者使用訂單詳情。參加者姓名和電郵將與買家資料相符。\",\"bA31T4\":\"為所有參與者使用購買者的資料\",\"PpgtnC\":\"使用此地址\",\"rnoQsz\":\"用於邊框、高亮和二維碼樣式\",\"BV4L/Q\":\"UTM 分析\",\"l5ackE\":\"UUID\",\"imLQ9Y\":\"正在驗證您的增值稅號碼...\",\"t7caBM\":\"VAT country code\",\"WLkfqH\":\"VAT number\",\"pnVh83\":\"增值稅號碼\",\"CabI04\":\"增值稅號碼不得包含空格\",\"PMhxAR\":\"增值稅號碼必須以 2 個字母的國家代碼開頭,後跟 8-15 個字母數字字元(例如:DE123456789)\",\"gPgdNV\":\"增值稅號碼驗證成功\",\"RUMiLy\":\"增值稅號碼驗證失敗\",\"vqji3Y\":\"增值稅號碼驗證失敗。請檢查您的增值稅號碼。\",\"8dENF9\":\"費用增值稅\",\"ZutOKU\":\"增值稅率\",\"+KJZt3\":\"VAT registered\",\"Nfbg76\":\"增值稅設定已成功儲存\",\"UvYql/\":\"增值稅設定已儲存。我們正在後台驗證您的增值稅號碼。\",\"bXn1Jz\":\"VAT settings updated\",\"tJylUv\":\"平台費用的增值稅處理\",\"FlGprQ\":\"平台費用的增值稅處理:歐盟增值稅註冊企業可使用反向收費機制(0% - 增值稅指令 2006/112/EC 第 196 條)。非增值稅註冊企業將收取 23% 的愛爾蘭增值稅。\",\"516oLj\":\"增值稅驗證服務暫時無法使用\",\"p6QQLa\":[\"VAT: \",[\"0\"]],\"5q87Y9\":\"VAT: not registered\",\"AdWhjZ\":\"驗證碼\",\"kUAumu\":\"Verification email sent. Check your inbox.\",\"QDEWii\":\"已驗證\",\"wCKkSr\":\"驗證電郵\",\"/IBv6X\":\"驗證您的電郵\",\"u8nB38\":\"Verify your email so attendees can receive tickets\",\"e/cvV1\":\"驗證緊...\",\"fROFIL\":\"越南語\",\"p5nYkr\":\"View All\",\"yA/6BX\":\"View all →\",\"6CQ7/B\":\"View all capabilities\",\"YSE15b\":\"View all check-in lists\",\"RnvnDc\":\"查看平台上發送的所有訊息\",\"+WFMis\":\"查看和下載所有活動的報告。僅包含已完成的訂單。\",\"c7VN/A\":\"查看答案\",\"SZw9tS\":\"查看詳情\",\"9+84uW\":[\"View details for \",[\"0\"],\" \",[\"1\"]],\"FCVmuU\":\"查看活動\",\"c6SXHN\":\"查看活動頁面\",\"n6EaWL\":\"查看日誌\",\"OaKTzt\":\"查看地圖\",\"zNZNMs\":\"查看訊息\",\"67OJ7t\":\"查看訂單\",\"tKKZn0\":\"查看訂單詳情\",\"KeCXJu\":\"查看訂單詳情、退款和重新傳送確認。\",\"9jnAcN\":\"查看主辦單位主頁\",\"1J/AWD\":\"查看門票\",\"N9FyyW\":\"查看、編輯和匯出您的已註冊參與者。\",\"6dp/Hz\":\"Vimeo\",\"SS4mGB\":\"VK\",\"uUehLT\":\"等待中\",\"quR8Qp\":\"等待付款\",\"KrurBH\":\"Waiting for scan…\",\"u0n+wz\":\"候補名單\",\"3RXFtE\":\"候補名單已啟用\",\"TwnTPy\":\"候補名單報價已過期\",\"aUi/Dz\":\"警告:這是系統預設配置。變更將影響所有未分配特定配置的帳戶。\",\"aT/44s\":\"We couldn't copy that Stripe connection. Please try again.\",\"RRZDED\":\"我們找不到與此郵箱關聯的訂單。\",\"2RZK9x\":\"我們找不到您要查找的訂單。連結可能已過期或訂單詳情可能已更改。\",\"nefMIK\":\"我們找不到您要查找的門票。連結可能已過期或門票詳情可能已更改。\",\"miysJh\":\"我們找不到此訂單。它可能已被刪除。\",\"Fjj/5/\":\"We couldn't load the check-in lists. Please try again.\",\"ADsQ23\":\"We couldn't reach Stripe just now. Please try again in a moment.\",\"HJKdzP\":\"載入此頁面時遇到問題。請重試。\",\"jegrvW\":\"We partner with Stripe to send payouts straight to your bank account.\",\"IfN2Qo\":\"我們建議使用最小尺寸為200x200像素的方形標誌\",\"wJzo/w\":\"我們建議尺寸為 400x400 像素,檔案大小不超過 5MB\",\"L/KlAh\":[\"We sent a verification link to \",[\"0\"]],\"KRCDqH\":\"我們使用 Cookie 來幫助我們了解網站的使用情況並改善您的體驗。\",\"x8rEDQ\":\"我們在多次嘗試後無法驗證您的增值稅號碼。我們將繼續在後台嘗試。請稍後再查看。\",\"mfM/HJ\":[\"如果\",[\"productDisplayName\"],\"在\",[\"occurrenceDate\"],\"有空位,我們將通過電郵通知您。\"],\"iy+M+c\":[\"如果\",[\"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\":\"我們將把您的門票發送到此郵箱\",\"ZOmUYW\":\"我們將在後台驗證您的增值稅號碼。如果有任何問題,我們會通知您。\",\"LKjHr4\":[\"We've made changes to the schedule for \\\"\",[\"title\"],\"\\\" — \",[\"description\"],\" affecting \",[\"affectedCount\"],\" session(s).\"],\"Fq/Nx7\":\"我哋已經將5位數驗證碼發送到:\",\"GdWB+V\":\"Webhook 創建成功\",\"2X4ecw\":\"Webhook 刪除成功\",\"ndBv0v\":\"Webhook integrations\",\"CThMKa\":\"Webhook 日誌\",\"I0adYQ\":\"Webhook 簽名密鑰\",\"nuh/Wq\":\"Webhook URL\",\"8BMPMe\":\"Webhook 不會發送通知\",\"FSaY52\":\"Webhook 將發送通知\",\"v1kQyJ\":\"Webhooks\",\"On0aF2\":\"網站\",\"0f7U0k\":\"Wed\",\"VAcXNz\":\"Wednesday\",\"64X6l4\":\"week\",\"4XSc4l\":\"Weekly\",\"IAUiSh\":\"weeks\",\"vKLEXy\":\"微博\",\"9eF5oV\":\"歡迎回來\",\"QDWsl9\":[\"歡迎嚟到 \",[\"0\"],\",\",[\"1\"],\" 👋\"],\"LETnBR\":[\"歡迎嚟到 \",[\"0\"],\",呢度係你所有活動嘅列表\"],\"DDbx7K\":\"Wellness\",\"ywRaYa\":\"What time?\",\"FaSXqR\":\"咩類型嘅活動?\",\"0WyYF4\":\"What unauthenticated staff can see\",\"2+ExvJ\":\"WhatsApp\",\"cxsKvw\":\"當簽到被刪除時\",\"RPe6bE\":\"When a date is cancelled on a recurring event\",\"Gmd0hv\":\"當新與會者被創建時\",\"zyIyPe\":\"當建立新活動時\",\"Lc18qn\":\"當新訂單被創建時\",\"dfkQIO\":\"當新產品被創建時\",\"8OhzyY\":\"當產品被刪除時\",\"tRXdQ9\":\"當產品被更新時\",\"9L9/28\":\"當產品售罄時,客戶可以加入候補名單,以便在有空位時收到通知。\",\"OIkHj+\":\"當產品售罄時,客戶可以加入候補名單,以便在有空位時收到通知。客戶加入的是特定日期的候補名單,名額也按日期提供。\",\"Q7CWxp\":\"當與會者被取消時\",\"IuUoyV\":\"當與會者簽到時\",\"nBVOd7\":\"當與會者被更新時\",\"t7cuMp\":\"當活動被歸檔時\",\"gtoSzE\":\"當活動被更新時\",\"ny2r8d\":\"當訂單被取消時\",\"c9RYbv\":\"當訂單被標記為已支付時\",\"ejMDw1\":\"當訂單被退款時\",\"fVPt0F\":\"當訂單被更新時\",\"bcYlvb\":\"簽到何時關閉\",\"XIG669\":\"簽到何時開放\",\"de6HLN\":\"當顧客購買門票時,他們的訂單將會顯示在這裡。\",\"pm9tpn\":\"啟用後,購買者可以一次過將自己的姓名和電郵複製給所有參加者。關閉此選項可移除「所有參加者」選項;購買者仍可複製給第一位參加者,其餘參加者須逐一填寫。\",\"403wpZ\":\"啟用後,新活動將允許參與者通過安全連結管理自己的門票詳情。這可以按活動覆蓋。\",\"blXLKj\":\"啟用後,新活動將在結帳時顯示營銷訂閱複選框。此設置可以針對每個活動單獨覆蓋。\",\"Kj0Txn\":\"啟用後,Stripe Connect交易將不收取應用費用。用於不支持應用費用的國家。\",\"uchB0M\":\"小工具預覽\",\"uvIqcj\":\"工作坊\",\"EpknJA\":\"請在此輸入您的訊息...\",\"nhtR6Y\":\"X(Twitter)\",\"7qI8sJ\":\"year\",\"zkWmBh\":\"Yearly\",\"+BGee5\":\"years\",\"X/azM1\":\"是 - 我有有效的歐盟增值稅註冊號碼\",\"Tz5oXG\":\"是,取消我的訂單\",\"QlSZU0\":[\"您正在模擬 <0>\",[\"0\"],\" (\",[\"1\"],\")\"],\"s14PLh\":[\"您正在發出部分退款。客戶將獲得 \",[\"0\"],\" \",[\"1\"],\" 的退款。\"],\"o7LgX6\":\"您可以在帳戶設置中配置額外的服務費和稅費。\",\"rj3A7+\":\"You can override this for individual dates later.\",\"paWwQ0\":\"如有需要,您仍然可以手動提供門票。\",\"jTDzpA\":\"您無法封存帳戶中最後一個活躍的主辦方。\",\"D8baxD\":\"您有付費門票,但尚未連接 Stripe,因此無法收款。\",\"5VGIlq\":\"您已達到訊息限制。\",\"casL1O\":\"您已向免費產品添加了税費。您想要刪除它們嗎?\",\"9jJNZY\":\"儲存前必須確認您的責任\",\"pCLes8\":\"您必須同意接收訊息\",\"FVTVBy\":\"在更新主辦單位狀態之前,您必須先驗證您的電郵地址。\",\"ze4bi/\":\"You need to create at least one occurrence before you can add attendees to this recurring event.\",\"w65ZgF\":\"您需要驗證您的帳戶電子郵件才能修改電子郵件範本。\",\"FRl8Jv\":\"您需要驗證您的帳户電子郵件才能發送消息。\",\"88cUW+\":\"您收到\",\"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\":[\"您將參加 \",[\"0\"],\"!\"],\"ZlLcht\":[\"您正在加入\",[\"occurrenceDate\"],\"的候補名單。\"],\"qGZz0m\":\"您已加入候補名單!\",\"/5HL6k\":\"您已獲得一個名額!\",\"gbjFFH\":\"You've changed the session time\",\"p/Sa0j\":\"您的帳戶有訊息限制。要提高您的限制,請聯繫我們\",\"x/xjzn\":\"你嘅推廣夥伴已經成功匯出。\",\"TF37u6\":\"您的與會者已成功導出。\",\"79lXGw\":\"您的簽到名單已成功建立。與您的簽到工作人員共享以下連結。\",\"BnlG9U\":\"您當前的訂單將丟失。\",\"nBqgQb\":\"您的電子郵件\",\"GG1fRP\":\"您的活動已上線!\",\"ifRqmm\":\"你嘅訊息已經成功發送!\",\"0/+Nn9\":\"您的訊息將顯示在此處\",\"/Rj5P4\":\"您的姓名\",\"PFjJxY\":\"您的新密碼必須至少為 8 個字元。\",\"gzrCuN\":\"您的訂單詳情已更新。確認電郵已發送到新的電郵地址。\",\"naQW82\":\"您的訂單已被取消。\",\"bhlHm/\":\"您的訂單正在等待付款\",\"XeNum6\":\"您的訂單已成功導出。\",\"Xd1R1a\":\"您主辦單位的地址\",\"WWYHKD\":\"您的付款受到銀行級加密保護\",\"5b3QLi\":\"您的計劃\",\"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\":\"您的門票已確認。\",\"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 Main Street\",\"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\":\"Are you sure you want to make this event public? This will make the event visible to the public\",\"s4JozW\":\"您確定要恢復此活動嗎?它將作為草稿恢復。\",\"vJuISq\":\"您確定要刪除此容量分配嗎?\",\"baHeCz\":\"您確定要刪除此簽到列表嗎?\",\"LBLOqH\":\"每份訂單詢問一次\",\"wu98dY\":\"每個產品詢問一次\",\"ss9PbX\":\"參加者\",\"m0CFV2\":\"與會者詳情\",\"QKim6l\":\"未找到參與者\",\"R5IT/I\":\"Attendee Notes\",\"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\":\"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\":\"取消\",\"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\":\"Check-in\",\"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\":\"定製您的活動頁面\",\"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\":\"Dismiss\",\"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\":\"Event URL\",\"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\":\"No attendees have been added to this order.\",\"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\":\"No product associated with this attendee.\",\"Ya1JhR\":\"此類別中沒有可用的產品。\",\"FTfObB\":\"尚無產品\",\"+Y976X\":\"無促銷代碼顯示\",\"MAavyl\":\"No questions answered by this attendee.\",\"SnlQeq\":\"No questions have been asked for this order.\",\"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\":\"Online event\",\"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\":\"Order #\",\"B3gPuX\":\"取消訂單\",\"SIbded\":\"Order Completed\",\"q/CcwE\":\"訂購日期\",\"Tol4BF\":\"訂購詳情\",\"WbImlQ\":\"訂單已取消,並已通知訂單所有者。\",\"nAn4Oe\":\"訂單已標記為已支付\",\"uzEfRz\":\"Order Notes\",\"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\":\"San Francisco\",\"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\":\"Suite 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\":\"View\",\"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\":\"(none)\",\"xYxQCZ\":[[\"0\"],\" \",[\"1\"]],\"lAOy2r\":[[\"0\"],\" \",[\"1\"],\" 已簽到\"],\"3beCx0\":[[\"0\"],\" <0>checked in\"],\"S4PqS9\":[[\"0\"],\" 個活動的 Webhook\"],\"6MIiOI\":[\"剩餘 \",[\"0\"]],\"COnw8D\":[[\"0\"],\" 標誌\"],\"xG9N0H\":[[\"0\"],\" of \",[\"1\"],\" seats are taken.\"],\"B7pZfX\":[[\"0\"],\" 位主辦單位\"],\"/HkCs4\":[[\"0\"],\"張門票\"],\"30bTiU\":[[\"activeCount\"],\" enabled\"],\"jTs4am\":[[\"appName\"],\" logo\"],\"gbJOk9\":[[\"attendeeCount\"],\" attendees are registered for this session.\"],\"TjbIUI\":[[\"totalCount\"],\" 中有 \",[\"availableCount\"],\" 可用\"],\"PSChHo\":[\"剩餘 \",[\"capacity\"],\" 個名額\"],\"lzQ8/M\":[[\"checkedIn\"],\" / \",[\"total\"],\" checked in\"],\"RZ0JX3\":[[\"chipTime\"],\",已售罄\"],\"M4KnFs\":[[\"chipTime\"],\",售罄,可加入候補名單\"],\"SeyN12\":[[\"completedCount\"],\" of \",[\"totalCount\"],\" steps complete\"],\"f2rhaD\":[[\"diffHr\"],\"h ago\"],\"NRSLBe\":[[\"diffMin\"],\"m ago\"],\"iYfwJE\":[[\"diffSec\"],\"s ago\"],\"OJnhhX\":[[\"eventCount\"],\" 個事件\"],\"mhZbzw\":[[\"loadedAffectedAttendees\"],\" attendees are registered across the affected sessions.\"],\"RBuxIl\":[[\"productCount\"],\" ticket types configured\"],\"VFLd0I\":[[\"slotCount\"],\" times available\"],\"3IEF7U\":[[\"totalCount\"],\" 種門票類型\"],\"0cLzoF\":[[\"totalOccurrences\"],\" dates\"],\"AEGc4t\":[[\"totalOccurrences\"],\" sessions across \",[\"0\"],\" dates (\",[\"1\",\"plural\",{\"one\":[\"#\",\" session\"],\"other\":[\"#\",\" sessions\"]}],\" per day)\"],\"zGiMDM\":\"+1 234 567 890\",\"1d6kks\":\"+稅/費\",\"B1St2O\":\"<0>簽到列表幫助您按日期、區域或票務類型管理活動入場。您可以將票務連結到特定列表,如VIP區域或第1天通行證,並與工作人員共享安全的簽到連結。無需帳戶。簽到適用於移動裝置、桌面或平板電腦,使用裝置相機或HID USB掃描器。 \",\"v9VSIS\":\"<0>設定單一總參加人數限制,同時適用於多種門票類型。<1>例如,如果您連結 <2>日票 和 <3>整個週末 門票,它們將從同一個名額池中抽取。一旦達到限制,所有連結的門票將自動停止銷售。\",\"Il5Uid\":\"<0>這是整個日程所有場次合計的可售總數量,而不是每場的限制。如需限制每場的人數,請在<1>場次安排頁面設定容量。\",\"ZnVt5v\":\"<0>Webhooks 可在事件發生時立即通知外部服務,例如,在註冊時將新與會者添加到您的 CRM 或郵件列表,確保無縫自動化。<1>使用第三方服務,如 <2>Zapier、<3>IFTTT 或 <4>Make 來創建自定義工作流並自動化任務。\",\"xFTHZ5\":[\"≈ \",[\"0\"],\"(按目前匯率)\"],\"M2DyLc\":\"1 個活動的 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張門票\",\"nz96Ue\":\"1 種門票類型\",\"InX5ad\":\"1 ticket type configured\",\"y2Jh0m\":\"1 time available\",\"cGtUz6\":\"活動前1週\",\"HR/cvw\":\"示例街123號\",\"dgKxZ5\":\"135+ currencies & 40+ payment methods\",\"kMU5aM\":\"取消通知已發送至\",\"o++0qa\":\"a change in duration\",\"WuWSX5\":\"A few quick steps and you're ready to start selling.\",\"RQ5kDd\":\"當此類別中沒有產品時顯示的訊息。\",\"V53XzQ\":\"新嘅驗證碼已經發送到你嘅電郵\",\"sr2Je0\":\"a shift in start/end times\",\"/z/bH1\":\"您主辦單位的簡短描述,將會顯示給您的使用者。\",\"aS0jtz\":\"已放棄\",\"uyJsf6\":\"關於\",\"JvuLls\":\"承擔費用\",\"lk74+I\":\"承擔費用\",\"1uJlG9\":\"強調色\",\"g3UF2V\":\"接受\",\"K5+3xg\":\"接受邀請\",\"jzb4Ep\":[\"Account · \",[\"0\"]],\"UqH1Q6\":[\"Account · \",[\"0\"],\" · \",[\"1\"]],\"vOuxvL\":\"帳戶資訊\",\"EHNORh\":\"找不到帳戶\",\"bPwFdf\":\"賬戶\",\"AhwTa1\":\"需要操作:需提供增值稅資料\",\"APyAR/\":\"活躍活動\",\"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\":\"新增自訂問題以在結帳時收集額外資訊\",\"Z/dcxc\":\"Add Date\",\"QeupRg\":\"新增日期\",\"Q219NT\":\"Add Dates\",\"yjB5VC\":\"Add dates and times for your recurring event\",\"Z8idyM\":\"Add details\",\"wpirGs\":\"Add event details\",\"VX6WUv\":\"新增地點\",\"GCQlV2\":\"Add multiple times if you run several sessions per day.\",\"7JF9w9\":\"新增問題\",\"NLbIb6\":\"Add this attendee anyway (override capacity)\",\"6PNlRV\":\"將此活動添加到您的日曆\",\"BGD9Yt\":\"添加機票\",\"uIv4Op\":\"將追蹤像素添加到您的公開活動頁面和主辦方首頁。當追蹤處於活動狀態時,將向訪客顯示Cookie同意橫幅。\",\"QN2F+7\":\"添加 Webhook\",\"NsWqSP\":\"新增您的社交媒體帳號及網站網址。這些資訊將會顯示在您的公開主辦單位頁面。\",\"bVjDs9\":\"額外費用\",\"MKqSg4\":\"需要管理員存取權限\",\"0Zypnp\":\"管理儀表板\",\"YAV57v\":\"推廣夥伴\",\"I+utEq\":\"推廣碼無法更改\",\"/jHBj5\":\"推廣夥伴建立成功\",\"uCFbG2\":\"推廣夥伴刪除成功\",\"ld8I+f\":\"Affiliate program\",\"a41PKA\":\"將會追蹤推廣夥伴銷售\",\"mJJh2s\":\"唔會追蹤推廣夥伴銷售。呢個會停用該推廣夥伴。\",\"jabmnm\":\"推廣夥伴更新成功\",\"CPXP5Z\":\"合作夥伴\",\"9Wh+ug\":\"推廣夥伴已匯出\",\"3cqmut\":\"推廣夥伴幫助你追蹤合作夥伴同KOL產生嘅銷售。建立推廣碼並分享以監控表現。\",\"3e31kI\":\"After your event is created, you can choose how often it repeats from the dashboard.\",\"z7GAMJ\":\"all\",\"N40H+G\":\"All\",\"7rLTkE\":\"所有已封存活動\",\"gKq1fa\":\"所有參與者\",\"63gRoO\":\"All attendees of the selected sessions\",\"uWxIoH\":\"All attendees of this occurrence\",\"pMLul+\":\"所有貨幣\",\"sgUdRZ\":\"All dates\",\"e4q4uO\":\"All Dates\",\"ZS/D7f\":\"所有已結束活動\",\"QsYjci\":\"所有活動\",\"31KB8w\":\"所有失敗任務已刪除\",\"D2g7C7\":\"所有任務已排隊等待重試\",\"B4RFBk\":\"All matching dates\",\"F1/VgK\":\"All occurrences\",\"OpWjMq\":\"All Occurrences\",\"Sxm1lO\":\"所有狀態\",\"dr7CWq\":\"所有即將舉行的活動\",\"GpT6Uf\":\"允許參與者通過訂單確認電郵中的安全連結更新他們的門票資訊(姓名、電郵)。\",\"VZdky1\":\"允許購買者將其資料複製給所有參加者\",\"F3mW5G\":\"允許客戶在該產品售罄時加入候補名單\",\"4CMO/q\":\"允許客戶在該產品售罄時加入候補名單。客戶加入的是特定日期的候補名單。\",\"c4uJfc\":\"快完成了!我們正在等待您的付款處理。這只需要幾秒鐘。\",\"ocS8eq\":[\"已有帳戶?<0>\",[\"0\"],\"\"],\"uCuEqI\":\"Already in\",\"/H326L\":\"已退款\",\"USEpOK\":\"Already use Stripe on another organizer? Reuse that connection.\",\"RtxQTF\":\"同時取消此訂單\",\"jkNgQR\":\"同時退款此訂單\",\"xYqsHg\":\"總是可用\",\"Wvrz79\":\"支付金額\",\"Zkymb9\":\"同呢個推廣夥伴關聯嘅電郵。推廣夥伴唔會收到通知。\",\"vRznIT\":\"檢查導出狀態時發生錯誤。\",\"OPFdAM\":\"此類別的可選描述,將顯示在活動頁面上。\",\"eusccx\":\"顯示在突出產品上的可選訊息,例如「熱賣中 🔥」或「最佳價值」\",\"5GJuNp\":[\"and \",[\"0\"],\" more...\"],\"QNrkms\":\"答案更新成功。\",\"+qygei\":\"Answers\",\"GK7Lnt\":\"Answers provided at checkout (e.g. meal choice)\",\"lE8PgT\":\"Any dates you've manually customized will be kept.\",\"jVoYha\":[\"已應用 — 訂單立減 \",[\"0\"]],\"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\":\"批准訊息\",\"naCW6Z\":\"April\",\"B495Gs\":\"封存\",\"5sNliy\":\"封存活動\",\"BrwnrJ\":\"封存主辦方\",\"E5eghW\":\"封存此活動以向公眾隱藏。您可以稍後還原它。\",\"eqFkeI\":\"封存此主辦方。這也將封存屬於此主辦方的所有活動。\",\"BzcxWv\":\"已封存的主辦方\",\"9cQBd6\":\"您確定要封存此活動嗎?它將不再對公眾可見。\",\"Trnl3E\":\"您確定要封存此主辦方嗎?這也將封存屬於此主辦方的所有活動。\",\"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\":\"您確定要刪除所有失敗的任務嗎?\",\"LchiNd\":\"你確定要刪除呢個推廣夥伴嗎?呢個操作無法撤銷。\",\"vPeW/6\":\"您確定要刪除此配置嗎?這可能會影響使用它的帳戶。\",\"h42Hc/\":\"Are you sure you want to delete this date? This action cannot be undone.\",\"RiF/yT\":\"Are you sure you want to delete this image?\",\"b3+Qku\":\"Are you sure you want to delete this tax or fee? It will no longer be applied to new orders.\",\"JmVITJ\":\"確定要刪除此範本嗎?此操作無法復原,郵件將回退到預設範本。\",\"aLS+A6\":\"確定要刪除此範本嗎?此操作無法復原,郵件將回退到組織者或預設範本。\",\"5H3Z78\":\"您確定要刪除此 Webhook 嗎?\",\"147G4h\":\"您確定要離開嗎?\",\"VDWChT\":\"您確定要將此主辦單位設為草稿嗎?這將使該頁面對公眾隱藏。\",\"pWtQJM\":\"您確定要將此主辦單位設為公開嗎?這將使該頁面對公眾可見。\",\"EOqL/A\":\"您確定要向此人提供名額嗎?他們將收到電子郵件通知。\",\"yAXqWW\":\"Are you sure you want to permanently delete this date? This cannot be undone.\",\"WFHOlF\":\"你確定要發佈呢個活動嗎?一旦發佈,將會對公眾可見。\",\"4TNVdy\":\"你確定要發佈呢個主辦方資料嗎?一旦發佈,將會對公眾可見。\",\"8x0pUg\":\"您確定要從候補名單中移除此條目嗎?\",\"cDtoWq\":[\"您確定要將訂單確認重新發送到 \",[\"0\"],\" 嗎?\"],\"xeIaKw\":[\"您確定要將門票重新發送到 \",[\"0\"],\" 嗎?\"],\"BjbocR\":\"您確定要還原此活動嗎?\",\"7MjfcR\":\"您確定要還原此主辦方嗎?\",\"b7tkGp\":\"Are you sure you want to revoke this invitation?\",\"ExDt3P\":\"你確定要取消發佈呢個活動嗎?佢將唔再對公眾可見。\",\"5Qmxo/\":\"你確定要取消發佈呢個主辦方資料嗎?佢將唔再對公眾可見。\",\"Uqefyd\":\"您在歐盟註冊了增值稅嗎?\",\"+QARA4\":\"藝術\",\"tLf3yJ\":\"由於您的業務位於愛爾蘭,愛爾蘭增值稅(23%)將自動套用於所有平台費用。\",\"tMeVa/\":\"為每張購買的門票詢問姓名和電郵\",\"ui5ln+\":\"Assign a different plan\",\"9Jxliv\":\"Assign plan\",\"xdiER7\":\"分配的級別\",\"F2rX0R\":\"必須選擇至少一種事件類型\",\"Z44eZS\":\"At least one product must stay available for this date. To make the date inaccessible, cancel it from the schedule instead.\",\"BCmibk\":\"嘗試次數\",\"6PecK3\":\"所有活動的出席率和簽到率\",\"K2tp3v\":\"attendee\",\"AJ4rvK\":\"與會者已取消\",\"qvylEK\":\"與會者已創建\",\"Aspq3b\":\"參與者資料收集\",\"fpb0rX\":\"參與者資料已從訂單複製\",\"94aQMU\":\"參與者資訊\",\"KkrBiR\":\"參加者資料收集\",\"sjPjOg\":\"Attendee notes\",\"cosfD8\":\"參與者狀態\",\"D2qlBU\":\"與會者已更新\",\"22BOve\":\"參與者更新成功\",\"x8Vnvf\":\"參與者的票不包含在此列表中\",\"/Ywywr\":\"attendees\",\"zLRobu\":\"attendees checked in\",\"k3Tngl\":\"與會者已導出\",\"UoIRW8\":\"已註冊參加者\",\"5UbY+B\":\"持有特定門票的與會者\",\"4HVzhV\":\"參與者:\",\"HVkhy2\":\"歸因分析\",\"dMMjeD\":\"歸因細分\",\"1oPDuj\":\"歸因值\",\"DBHTm/\":\"August\",\"JgREph\":\"自動提供已啟用\",\"V7Tejz\":\"自動處理候補名單\",\"PZ7FTW\":\"根據背景顏色自動檢測,但可以覆蓋\",\"zlnTuI\":\"當容量可用時自動向下一個人提供門票。如果停用,您可以從候補名單頁面手動處理候補名單。\",\"csDS2L\":\"可用\",\"Xp+ywP\":\"付款完成後可使用\",\"dwDH1K\":[\"Available times on \",[\"dayName\"]],\"clF06r\":\"可退款\",\"NB5+UG\":\"可用標記\",\"L+wGOG\":\"Awaiting\",\"qcw2OD\":\"Awaiting pay\",\"kNmmvE\":\"Awesome Events 有限公司\",\"TeSaQO\":\"返回帳戶\",\"kYqM1A\":\"返回活動\",\"s5QRF3\":\"返回訊息\",\"td/bh+\":\"返回報告\",\"nsm7BA\":\"返回搜尋\",\"imjKVx\":\"Bank account connected\",\"D9LTCH\":\"Base Price\",\"hviJef\":\"Based on the global sale period above, not per date\",\"jIPNJG\":\"基本資料\",\"UabgBd\":\"正文是必需的\",\"HWXuQK\":\"收藏此頁面,隨時管理您的訂單。\",\"CUKVDt\":\"使用自訂標誌、顏色和頁腳訊息打造您的門票品牌。\",\"4BZj5p\":\"Built-in fraud protection\",\"cr7kGH\":\"Bulk Edit\",\"1Fbd6n\":\"Bulk Edit Dates\",\"Eq6Tu9\":\"Bulk update failed.\",\"9N+p+g\":\"商務\",\"SWnN1L\":\"Business address\",\"kQekXw\":\"Business name\",\"bv6RXK\":\"按鈕標籤\",\"ChDLlO\":\"按鈕文字\",\"BUe8Wj\":\"買家支付\",\"qF1qbA\":\"買家看到的是淨價。平台費用將從您的付款中扣除。\",\"dg05rc\":\"通過添加追蹤像素,您確認您和本平台是所收集數據的共同控制者。您有責任確保根據適用的私隱法律(GDPR、CCPA等)擁有合法的處理依據。\",\"DFqasq\":[\"繼續即表示您同意 <0>\",[\"0\"],\" 服務條款\"],\"wVSa+U\":\"By day of month\",\"0MnNgi\":\"By day of week\",\"CetOZE\":\"By ticket type\",\"lFdbRS\":\"繞過應用費用\",\"AjVXBS\":\"Calendar\",\"2VLZwd\":\"行動號召按鈕\",\"rT2cV+\":\"Camera\",\"7hYa9y\":\"Camera permission was denied. <0>Request permission again, or grant this page camera access in your browser settings.\",\"D02dD9\":\"活動\",\"RRPA79\":\"Can't check in\",\"OcVwAd\":[\"Cancel \",[\"count\"],\" date(s)\"],\"H4nE+E\":\"取消所有產品並釋放回可用池\",\"Py78q9\":\"Cancel Date\",\"tOXAdc\":\"取消將取消與此訂單關聯的所有參與者,並將門票釋放回可用池。\",\"FPpqc7\":[\"Cancelling \",[\"0\"],\" date(s). This may take a moment to complete.\"],\"01sEfm\":\"無法刪除系統預設配置\",\"VsM1HH\":\"容量分配\",\"9bIMVF\":\"Capacity management\",\"H7K8og\":\"Capacity must be 0 or greater\",\"nzao08\":\"capacity updates\",\"4cp9NP\":\"Capacity Used\",\"K7tIrx\":\"類別\",\"DRK3Bq\":\"Category deleted successfully\",\"o+XJ9D\":\"更改\",\"kJkjoB\":\"Change duration\",\"J0KExZ\":\"Change the attendee limit\",\"ssospy\":\"Change time\",\"CIHJJf\":\"更改等候名單設定\",\"B5icLR\":[\"Changed duration for \",[\"count\"],\" date(s)\"],\"Kb+0BT\":\"Charges\",\"2tbLdK\":\"慈善\",\"BPWGKn\":\"Check in\",\"6uFFoY\":\"Check out\",\"FjAlwK\":[\"Check out this event: \",[\"0\"]],\"v4fiSg\":\"查看你嘅電郵\",\"51AsAN\":\"請檢查您的收件箱!如果此郵箱有關聯的票,您將收到查看連結。\",\"Y3FYXy\":\"Check-In\",\"udRwQs\":\"簽到已創建\",\"F4SRy3\":\"簽到已刪除\",\"as6XfO\":[\"Check-in for \",[\"0\"],\" was undone\"],\"9s/wrQ\":\"Check-in history\",\"Wwztk4\":\"Check-In List\",\"9gPPUY\":\"簽到名單已建立!\",\"dwjiJt\":\"Check-in list info\",\"7od0PV\":\"check-in lists\",\"f2vU9t\":\"簽到列表\",\"XprdTn\":\"Check-in navigation\",\"5tV1in\":\"Check-in progress\",\"SHJwyq\":\"簽到率\",\"qCqdg6\":\"簽到狀態\",\"cKj6OE\":\"簽到摘要\",\"7B5M35\":\"簽到\",\"VrmydS\":\"Checked in\",\"DM4gBB\":\"中文(繁體)\",\"p8Jvp4\":\"Choose a configuration\",\"ElShBO\":\"Choose a different action\",\"pHEhf+\":\"選擇符合您品牌的字體。字體透過 Bunny Fonts 自行託管。\",\"Zok1Gx\":\"Choose an organizer\",\"pkk46Q\":\"選擇一個主辦單位\",\"Ag32+c\":\"Choose another date\",\"Crr3pG\":\"選擇日曆\",\"Z38ZJu\":\"選擇活動日期在票券上的顯示方式\",\"LAW8Vb\":\"為新活動選擇預設設置。這可以針對單個活動進行覆蓋。\",\"pjp2n5\":\"選擇誰支付平台費用。這不會影響您在帳戶設置中配置的額外費用。\",\"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\":\"點擊查看備註\",\"RG3szS\":\"關閉\",\"RWw9Lg\":\"關閉視窗\",\"XwdMMg\":\"代碼只可以包含字母、數字、連字號同底線\",\"+yMJb7\":\"必須填寫代碼\",\"m9SD3V\":\"代碼至少需要3個字元\",\"V1krgP\":\"代碼唔可以超過20個字元\",\"psqIm5\":\"與您的團隊合作,一起創造精彩活動。\",\"4bUH9i\":\"為每張購買的門票收集參加者詳情。\",\"TkfG8v\":\"按訂單收集資料\",\"96ryID\":\"按門票收集資料\",\"FpsvqB\":\"顏色模式\",\"jEu4bB\":\"欄位\",\"CWk59I\":\"喜劇\",\"rPA+Gc\":\"通訊偏好\",\"zFT5rr\":\"complete\",\"bUQMpb\":\"Complete Stripe setup\",\"744BMm\":\"完成您的訂單以確保獲得門票。此優惠有時間限制,請盡快完成。\",\"5YrKW7\":\"完成付款以確保您的門票。\",\"xGU92i\":\"完成您的個人資料以加入團隊。\",\"QOhkyl\":\"撰寫\",\"ih35UP\":\"會議中心\",\"ywFj2D\":\"Configuration\",\"WTw0bB\":\"Configuration assigned\",\"X1zdE7\":\"配置建立成功\",\"mLBUMQ\":\"配置刪除成功\",\"UIENhw\":\"配置名稱對最終用戶可見。固定費用將按當前匯率轉換為訂單貨幣。\",\"eeZdaB\":\"配置更新成功\",\"3cKoxx\":\"配置\",\"8v2LRU\":\"設定活動詳情、地點、結帳選項和電郵通知。\",\"raw09+\":\"設定結帳時如何收集參與者資料\",\"FI60XC\":\"配置稅費\",\"av6ukY\":\"Configure which products are available for this occurrence and optionally adjust pricing.\",\"NGXKG/\":\"確認電子郵件地址\",\"JRQitQ\":\"確認新密碼\",\"Auz0Mz\":\"請確認您的電郵地址以使用所有功能。\",\"7+grte\":\"確認電郵已發送!請檢查您的收件匣。\",\"n/7+7Q\":\"確認已發送至\",\"x3wVFc\":\"恭喜!您的活動現已對公眾可見。\",\"0W2NQP\":\"Connect bank\",\"/K4Vqr\":\"連接 Stripe 以接受付款\",\"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\":\"線上活動必須填寫連線詳情\",\"jfC/xh\":\"聯絡\",\"LOFgda\":[\"聯絡 \",[\"0\"]],\"41BQ3k\":\"聯絡電郵\",\"m8WD6t\":\"繼續設置\",\"0GwUT4\":\"繼續結帳\",\"sBV87H\":\"繼續建立活動\",\"nKtyYu\":\"繼續下一步\",\"F3/nus\":\"繼續付款\",\"s30OcA\":\"控制活動頁面上日期和時間的顯示方式\",\"p2FRHj\":\"控制此活動的平台費用如何處理\",\"NqfabH\":\"Control who gets in for this date\",\"fmYxZx\":\"Control who gets in, and when\",\"1JnTgU\":\"從上方複製\",\"FxVG/l\":\"已複製到剪貼簿\",\"PiH3UR\":\"已複製!\",\"4i7smN\":\"Copy account ID\",\"uUPbPg\":\"複製推廣連結\",\"iVm46+\":\"複製代碼\",\"cF2ICc\":\"複製客戶連結\",\"+2ZJ7N\":\"將詳情複製到第一位參與者\",\"ZN1WLO\":\"複製郵箱\",\"y1eoq1\":\"複製連結\",\"tUGbi8\":\"複製我的資料到:\",\"y22tv0\":\"複製此連結以便隨處分享\",\"/4gGIX\":\"複製到剪貼簿\",\"e0f4yB\":\"無法刪除地點\",\"vkiDx2\":\"Could not prepare the bulk update.\",\"KOavaU\":\"無法取得地址詳情\",\"/lq4oO\":\"Could not save date\",\"mHu0az\":\"Couldn't send verification email. Please try again.\",\"QOIm+S\":\"統計包含所有即將舉行的日期。每人將獲得其所選日期的名額。\",\"P0rbCt\":\"封面圖片\",\"p4kqHr\":\"Cover image added\",\"60u+dQ\":\"封面圖片將顯示在活動頁面頂部\",\"2NLjA6\":\"封面圖片將顯示在您的主辦單位頁面頂部\",\"GkrqoY\":\"Covers every ticket\",\"zg4oSu\":[\"建立\",[\"0\"],\"範本\"],\"RKKhnW\":\"建立自訂小工具以在您的網站上銷售門票。\",\"6sk7PP\":\"Create a fixed number\",\"jqhTmw\":\"Create a list for this date\",\"PhioFp\":\"Create a new check-in list for an active session, or contact the organizer if you think this is a mistake.\",\"yIRev4\":\"建立密碼\",\"j7xZ7J\":\"建立額外的主辦方以在一個帳戶下管理獨立的品牌、部門或活動系列。每個主辦方都有自己的活動、設定和公開頁面。\",\"xfKgwv\":\"建立推廣夥伴\",\"tudG8q\":\"建立並設定待售門票和商品。\",\"YAl9Hg\":\"建立配置\",\"BTne9e\":\"為此活動建立自定義郵件範本以覆蓋組織者預設設置\",\"YIDzi/\":\"建立自定義範本\",\"tsGqx5\":\"Create Date\",\"Nc3l/D\":\"建立折扣、隱藏門票的存取碼和特別優惠。\",\"PybJS2\":\"Create event\",\"eWEV9G\":\"建立新密碼\",\"wl2iai\":\"Create Schedule\",\"8AiKIu\":\"建立門票或商品\",\"/HGmW9\":\"建立可追蹤連結以獎勵推廣您活動的合作夥伴。\",\"dkAPxi\":\"創建 Webhook\",\"5slqwZ\":\"建立您的活動\",\"JQNMrj\":\"建立你嘅第一個活動\",\"CCjxOC\":\"建立您的第一個活動以開始銷售門票並管理參加者。\",\"ZCSSd+\":\"建立您自己的活動\",\"qdv10s\":[\"正在建立 \",[\"0\"],\" 個日期。這可能需要一些時間。\"],\"67NsZP\":\"建立緊活動...\",\"H34qcM\":\"建立緊主辦方...\",\"1YMS+X\":\"建立緊你嘅活動,請稍候\",\"yiy8Jt\":\"建立緊你嘅主辦方資料,請稍候\",\"lfLHNz\":\"CTA標籤是必需的\",\"0xLR6W\":\"Currently assigned\",\"iTvh6I\":\"目前可供購買\",\"A42Dqn\":\"Custom branding\",\"Guo0lU\":\"自訂日期和時間\",\"WDMdn8\":\"Custom questions\",\"O6mra8\":\"自訂問題\",\"axv/Mi\":\"自定義範本\",\"2YeVGY\":\"客戶連結已複製到剪貼板\",\"QMHSMS\":\"客戶將收到確認退款的電子郵件\",\"NihQNk\":\"客戶\",\"hINN++\":\"Customize page\",\"7gsjkI\":\"使用Liquid範本自定義發送給客戶的郵件。這些範本將用作您組織中所有活動的預設範本。\",\"xJaTUK\":\"自訂活動首頁的版面配置、顏色和品牌。\",\"MXZfGN\":\"自訂結帳時提出的問題,以從參與者那裡收集重要資訊。\",\"iX6SLo\":\"自訂繼續按鈕上顯示的文字\",\"pxNIxa\":\"使用Liquid範本自定義您的郵件範本\",\"3trPKm\":\"自訂主辦單位頁面外觀\",\"U0sC6H\":\"Daily\",\"/gWrVZ\":\"所有活動的每日收入、稅費和退款\",\"zgCHnE\":\"每日銷售報告\",\"nHm0AI\":\"每日銷售、税費和費用明細\",\"1aPnDT\":\"Dance\",\"pvnfJD\":\"深色\",\"MaB9wW\":\"Date Cancellation\",\"e6cAxJ\":\"Date cancelled\",\"81jBnC\":\"Date cancelled successfully\",\"a/C/6R\":\"Date created successfully\",\"IW7Q+u\":\"Date deleted\",\"rngCAz\":\"Date deleted successfully\",\"vHbfoQ\":\"Date reactivated\",\"hvah+S\":\"Date reopened for new sales\",\"Ez0YsD\":\"Date updated successfully\",\"Te33mU\":\"Dates are managed per occurrence\",\"91zCxb\":\"Dates with sessions\",\"/ITcnz\":\"day\",\"H7OUPr\":\"Day\",\"JtHrX9\":\"Day of Month\",\"J/Upwb\":\"days\",\"vDVA2I\":\"Days of Month\",\"rDLvlL\":\"Days of Week\",\"r6zgGo\":\"December\",\"jbq7j2\":\"拒絕\",\"ovBPCi\":\"預設\",\"JtI4vj\":\"預設參加者資料收集\",\"ULjv90\":\"Default capacity per date\",\"3R/Tu2\":\"預設費用處理\",\"1bZAZA\":\"將使用預設範本\",\"HNlEFZ\":\"刪除\",\"KpnwJK\":[\"刪除\\\"\",[\"0\"],\"\\\"?\"],\"BlII4o\":[\"Delete \",[\"count\"],\" selected date(s)? Dates with orders will be skipped. This cannot be undone.\"],\"vu7gDm\":\"刪除推廣夥伴\",\"KZN4Lc\":\"全部刪除\",\"6EkaOO\":\"Delete Date\",\"io0G93\":\"刪除活動\",\"+jw/c1\":\"刪除圖片\",\"hdyeZ0\":\"刪除任務\",\"xxjZeP\":\"刪除地點\",\"sY3tIw\":\"刪除主辦方\",\"UBv8UK\":\"Delete Permanently\",\"dPyJ15\":\"刪除範本\",\"IQTR34\":\"Delete this category? Any products in it will also be deleted. This cannot be undone.\",\"/1wMxk\":\"Delete this product? This cannot be undone.\",\"mxsm1o\":\"刪除此問題?此操作無法復原。\",\"snMaH4\":\"刪除 Webhook\",\"LIZZLY\":[\"Deleted \",[\"0\"],\" date(s)\"],\"7w0Wev\":\"Description and venue added\",\"vYgeDk\":\"取消全選\",\"NvuEhl\":\"設計元素\",\"H8kMHT\":\"收唔到驗證碼?\",\"G8KNgd\":\"Different location\",\"E/QGRL\":\"Disabled\",\"OdPOhy\":\"Discord\",\"nZJ8tu\":\"Dismiss setup checklist\",\"QotGhf\":\"關閉此訊息\",\"BREO0S\":\"顯示一個複選框,允許客戶選擇接收此活動組織者的營銷通訊。\",\"HtaSQp\":\"在門票小工具中顯示每個日期的剩餘名額。您可以為個別日期單獨設定。\",\"pfa8F0\":\"顯示名稱\",\"Kdpf90\":\"別忘了!\",\"352VU2\":\"沒有帳戶?<0>註冊\",\"AXXqG+\":\"捐款\",\"DPfwMq\":\"完成\",\"JoPiZ2\":\"Door staff instructions\",\"2+O9st\":\"下載所有已完成訂單的銷售、參與者和財務報告。\",\"eneWvv\":\"草稿\",\"Ts8hhq\":\"由於垃圾郵件風險高,您必須先連接 Stripe 帳戶才能修改電子郵件範本。這是為了確保所有活動主辦方都經過驗證並負責。\",\"TnzbL+\":\"由於垃圾郵件風險較高,您必須連接Stripe帳戶才能向參與者發送訊息。\\n這是為了確保所有活動組織者都經過驗證並承擔責任。\",\"euc6Ns\":\"複製\",\"YueC+F\":\"Duplicate Date\",\"KRmTkx\":\"複製產品\",\"Jd3ymG\":\"Duration must be at least 1 minute.\",\"KIjvtr\":\"荷蘭語\",\"22xieU\":\"例如 180(3小時)\",\"/zajIE\":\"e.g. Morning Session\",\"SPKbfM\":\"例如:取得門票,立即註冊\",\"fc7wGW\":\"例如:關於您門票的重要更新\",\"54MPqC\":\"例如:標準版、進階版、企業版\",\"3RQ81z\":\"每位人士將收到一封包含預留名額的電子郵件,以完成購買。\",\"Xfsjel\":\"每個商品\",\"5oD9f/\":\"Earlier\",\"LTzmgK\":[\"編輯\",[\"0\"],\"範本\"],\"v4+lcZ\":\"編輯推廣夥伴\",\"2iZEz7\":\"編輯答案\",\"t2bbp8\":\"編輯參與者\",\"etaWtB\":\"編輯參與者詳情\",\"+guao5\":\"編輯配置\",\"1Mp/A4\":\"Edit Date\",\"m0ZqOT\":\"編輯地點\",\"8oivFT\":\"編輯地點\",\"vRWOrM\":\"編輯訂單詳情\",\"fW5sSv\":\"編輯 Webhook\",\"nP7CdQ\":\"編輯 Webhook\",\"MRZxAn\":\"Edited\",\"uBAxNB\":\"編輯器\",\"aqxYLv\":\"教育\",\"iiWXDL\":\"資格失敗\",\"zPiC+q\":\"符合條件的簽到列表\",\"SiVstt\":\"Email & scheduled messages\",\"V2sk3H\":\"電子郵件和模板\",\"hbwCKE\":\"郵箱地址已複製到剪貼板\",\"dSyJj6\":\"電子郵件地址不匹配\",\"elW7Tn\":\"郵件正文\",\"ZsZeV2\":\"必須填寫電郵\",\"Be4gD+\":\"郵件預覽\",\"6IwNUc\":\"郵件範本\",\"H/UMUG\":\"需要電郵驗證\",\"PLEl94\":\"Email verified\",\"L86zy2\":\"電郵驗證成功!\",\"FSN4TS\":\"嵌入小工具\",\"z9NkYY\":\"Embeddable widget\",\"Qj0GKe\":\"啟用參與者自助服務\",\"hEtQsg\":\"預設啟用參與者自助服務\",\"Upeg/u\":\"啟用此範本發送郵件\",\"7dSOhU\":\"啟用候補名單\",\"RxzN1M\":\"已啟用\",\"xDr/ct\":\"End\",\"sGjBEq\":\"結束日期與時間(可選)\",\"PKXt9R\":\"結束日期必須在開始日期之後\",\"ZayGC7\":\"End on a date\",\"48Y16Q\":\"結束時間(選填)\",\"TbaYrr\":[\"Ended \",[\"0\"]],\"CFgwiw\":[\"Ends \",[\"0\"]],\"SqOIQU\":\"Enter a capacity value or choose unlimited.\",\"h37gRz\":\"Enter a label or choose to remove it.\",\"7YZofi\":\"輸入主題和正文以查看預覽\",\"khyScF\":\"Enter a time to shift by.\",\"SKx/0u\":\"請輸入場地名稱或地址\",\"ppwojw\":\"線下活動請輸入場地名稱或地址\",\"j+eCIq\":\"手動輸入地址\",\"3bR1r4\":\"輸入推廣夥伴電郵(選填)\",\"ARkzso\":\"輸入推廣夥伴名稱\",\"ej4L8b\":\"Enter capacity\",\"6KnyG0\":\"輸入電郵\",\"INDKM9\":\"輸入郵件主題...\",\"xUgUTh\":\"輸入名字\",\"9/1YKL\":\"輸入姓氏\",\"VpwcSk\":\"輸入新密碼\",\"kWg31j\":\"輸入獨特推廣碼\",\"C3nD/1\":\"輸入您的電郵地址\",\"VmXiz4\":\"輸入您的電子郵件,我們將向您發送重置密碼的說明。\",\"n9V+ps\":\"輸入您的姓名\",\"IdULhL\":\"輸入您的增值稅號碼,包括國家代碼,不含空格(例如:IE1234567A、DE123456789)\",\"RRlWVA\":\"整份訂單\",\"o21Y+P\":\"entries\",\"X88/6w\":\"當客戶加入已售罄產品的候補名單時,條目將顯示在此處。\",\"LslKhj\":\"加載日誌時出錯\",\"VCNHvW\":\"活動已歸檔\",\"ZD0XSb\":\"活動已成功封存\",\"WgD6rb\":\"活動類別\",\"b46pt5\":\"活動封面圖片\",\"NAUIJ7\":\"Event created\",\"1b77ID\":\"活動已建立\",\"1Hzev4\":\"活動自定義範本\",\"+v+GW0\":\"活動日期顯示\",\"7u9/DO\":\"活動已成功刪除\",\"imgKgl\":\"活動描述\",\"IzR/Fc\":\"Event lifetime\",\"PYs3rP\":\"活動名稱\",\"HhwcTQ\":\"活動名稱\",\"WZZzB6\":\"必須填寫活動名稱\",\"Wd5CDM\":\"活動名稱應少於 150 個字元\",\"4JzCvP\":\"活動不可用\",\"mImacG\":\"活動頁面\",\"Hk9Ki/\":\"活動已成功還原\",\"JyD0LH\":\"活動設定\",\"XVLu2v\":\"活動標題\",\"OfmsI9\":\"活動太新\",\"4SILkp\":\"Event totals\",\"YDVUVl\":\"事件類型\",\"+HeiVx\":\"活動已更新\",\"19j6uh\":\"活動表現\",\"PC3/fk\":\"未來 24 小時內開始的活動\",\"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\":\"每個郵件範本都必須包含一個連結到相應頁面的行動號召按鈕\",\"BVinvJ\":\"例子:「您是如何得知我們的?」、「發票公司名稱」\",\"2hGPQG\":\"例子:「T恤尺碼」、「餐飲偏好」、「職位」\",\"qNuTh3\":\"異常\",\"M1RnFv\":\"已過期\",\"kF8HQ7\":\"匯出答案\",\"2KAI4N\":\"匯出CSV\",\"JKfSAv\":\"導出失敗。請重試。\",\"SVOEsu\":\"導出已開始。正在準備文件...\",\"wuyaZh\":\"匯出成功\",\"9bpUSo\":\"匯出緊推廣夥伴\",\"jtrqH9\":\"正在導出與會者\",\"R4Oqr8\":\"導出完成。正在下載文件...\",\"UlAK8E\":\"正在導出訂單\",\"DwuoH0\":\"Facebook\",\"7Bj3x9\":\"失敗\",\"8uOlgz\":\"失敗時間\",\"tKcbYd\":\"失敗任務\",\"SsI9v/\":\"放棄訂單失敗。請重試。\",\"LdPKPR\":\"分配配置失敗\",\"PO0cfn\":\"Failed to cancel date\",\"YUX+f+\":\"Failed to cancel dates\",\"SIHgVQ\":\"取消訊息失敗\",\"cEFg3R\":\"建立推廣夥伴失敗\",\"dVgNF1\":\"建立配置失敗\",\"fAoRRJ\":\"Failed to create schedule\",\"4yLYTb\":\"建立日程失敗。請重試。\",\"U66oUa\":\"建立範本失敗\",\"aFk48v\":\"刪除配置失敗\",\"n1CYMH\":\"Failed to delete date\",\"KXv+Qn\":\"Failed to delete date. It may have existing orders.\",\"JJ0uRo\":\"Failed to delete dates\",\"rgoBnv\":\"刪除活動失敗\",\"Zw6LWb\":\"刪除任務失敗\",\"tq0abZ\":\"刪除任務失敗\",\"2mkc3c\":\"刪除主辦方失敗\",\"5E23qd\":\"Failed to delete product. Please try again.\",\"vKMKnu\":\"刪除問題失敗\",\"xFj7Yj\":\"刪除範本失敗\",\"jo3Gm6\":\"匯出推廣夥伴失敗\",\"Jjw03p\":\"導出與會者失敗\",\"ZPwFnN\":\"導出訂單失敗\",\"zGE3CH\":\"匯出報告失敗。請重試。\",\"lS9/aZ\":\"載入收件人失敗\",\"X4o0MX\":\"加載 Webhook 失敗\",\"ETcU7q\":\"提供名額失敗\",\"5670b9\":\"提供票券失敗\",\"e5KIbI\":\"Failed to reactivate date\",\"7zyx8a\":\"從候補名單中移除失敗\",\"A/P7PX\":\"Failed to remove override\",\"ogWc1z\":\"Failed to reopen date\",\"0+iwE5\":\"重新排序問題失敗\",\"EJPAcd\":\"重新發送訂單確認失敗\",\"DjSbj3\":\"重新發送門票失敗\",\"YQ3QSS\":\"重新發送驗證碼失敗\",\"wDioLj\":\"重試任務失敗\",\"DKYTWG\":\"重試任務失敗\",\"WRREqF\":\"Failed to save override\",\"sj/eZA\":\"Failed to save price override\",\"780n8A\":\"Failed to save product settings\",\"zTkTF3\":\"儲存範本失敗\",\"l6acRV\":\"儲存增值稅設定失敗。請重試。\",\"T6B2gk\":\"發送訊息失敗。請再試一次。\",\"lKh069\":\"無法啟動導出任務\",\"t/KVOk\":\"無法開始模擬。請重試。\",\"QXgjH0\":\"無法停止模擬。請重試。\",\"i0QKrm\":\"更新推廣夥伴失敗\",\"NNc33d\":\"更新答案失敗。\",\"E9jY+o\":\"更新參與者失敗\",\"uQynyf\":\"更新配置失敗\",\"i2PFQJ\":\"更新活動狀態失敗\",\"EhlbcI\":\"更新訊息級別失敗\",\"rpGMzC\":\"更新訂單失敗\",\"T2aCOV\":\"更新主辦方狀態失敗\",\"Eeo/Gy\":\"更新設定失敗\",\"kqA9lY\":\"更新增值稅設定失敗\",\"7/9RFs\":\"上傳圖片失敗。\",\"nkNfWu\":\"圖片上傳失敗。請再試一次。\",\"rxy0tG\":\"驗證電郵失敗\",\"QRUpCk\":\"Family\",\"5LO38w\":\"Fast payouts to your bank\",\"4lgLew\":\"February\",\"9bHCo2\":\"費用貨幣\",\"/sV91a\":\"費用處理\",\"K4dKSP\":\"Fee override saved\",\"LyUWXA\":\"費用已繞過\",\"cf35MA\":\"節慶\",\"pAey+4\":\"檔案過大。最大大小為 5MB。\",\"VejKUM\":\"請先在上方填寫您的詳細信息\",\"/n6q8B\":\"Film\",\"L1qbUx\":\"Filter attendees\",\"8OvVZZ\":\"篩選參與者\",\"N/H3++\":\"Filter by date\",\"mvrlBO\":\"按活動篩選\",\"g+xRXP\":\"Finish setting up Stripe\",\"LHH461\":\"Finish setup\",\"syyeb9\":\"First\",\"Vj6wk9\":\"First 30 days\",\"/bpZYb\":\"First 7 days\",\"ziEnjY\":\"First 90 days\",\"1vBhpG\":\"第一位參與者\",\"4pwejF\":\"名字為必填項\",\"rVogsf\":\"請先解決問題再發布\",\"3lkYdQ\":\"Fixed fee\",\"6bBh3/\":\"固定費用\",\"zWqUyJ\":\"每筆交易收取的固定費用\",\"LWL3Bs\":\"固定費用必須為 0 或更高\",\"0RI8m4\":\"Flash off\",\"q0923e\":\"Flash on\",\"X+U6/w\":\"字體\",\"lWxAUo\":\"飲食\",\"nFm+5u\":\"頁腳文字\",\"a8nooQ\":\"Fourth\",\"wtuVU4\":\"Frequency\",\"xVhQZV\":\"Fri\",\"39y5bn\":\"Friday\",\"f5UbZ0\":\"Full data ownership\",\"cfvx/y\":\"Full event\",\"MY2SVM\":\"全額退款\",\"PGQLdy\":\"future\",\"8N/j1s\":\"Future dates only\",\"yRx/6K\":\"Future dates will be copied with capacity reset to zero\",\"T02gNN\":\"一般入場\",\"3ep0Gx\":\"關於您主辦單位的一般資訊\",\"ziAjHi\":\"產生\",\"exy8uo\":\"產生代碼\",\"4CETZY\":\"取得路線\",\"pjkEcB\":\"Get Paid\",\"lGYzP6\":\"Get paid with Stripe\",\"ZDIydz\":\"開始使用\",\"u6FPxT\":\"購票\",\"8KDgYV\":\"準備好您的活動\",\"RkXlPZ\":\"GitHub\",\"sr0UJD\":\"Go Back\",\"oNL5vN\":\"前往活動頁面\",\"gHSuV/\":\"返回主頁\",\"8+Cj55\":\"Go to Schedule\",\"6nDzTl\":\"良好的可讀性\",\"76gPWk\":\"Got it\",\"CZXzs4\":\"希臘語\",\"aGWZUr\":\"總收入\",\"n8IUs7\":\"總收入\",\"O1wAlQ\":\"Guest\",\"LIYoRQ\":\"賓客管理\",\"NUsTc4\":\"Happening now\",\"kTSQej\":[\"您好 \",[\"0\"],\",從這裡管理您的平台。\"],\"dORAcs\":\"以下是與您郵箱關聯的所有票。\",\"g+2103\":\"呢個係你嘅推廣連結\",\"bVsnqU\":\"Hi,\",\"/iE8xx\":\"Hi.Events 費用\",\"zppscQ\":\"Hi.Events 平台費用及每筆交易的增值稅明細\",\"D+zLDD\":\"已隱藏\",\"DRErHC\":\"對參與者隱藏 - 僅主辦方可見\",\"NNnsM0\":\"隱藏進階選項\",\"P+5Pbo\":\"隱藏答案\",\"VMlRqi\":\"Hide details\",\"FmogyU\":\"隱藏選項\",\"uXNYjR\":\"隱藏已售罄的日期和時間\",\"g9RcYX\":\"隱藏日期\",\"uMwTx7\":\"隱藏此類別?\",\"gtEbeW\":\"突出顯示\",\"NF8sdv\":\"突出顯示訊息\",\"MXSqmS\":\"突出顯示此產品\",\"7ER2sc\":\"已突出顯示\",\"sq7vjE\":\"突出顯示的產品將具有不同的背景色,使其在活動頁面上脫穎而出。\",\"1+WSY1\":\"Hobbies\",\"yY8wAv\":\"Hours\",\"49Tkiw\":\"折扣如何應用?\",\"sy9anN\":\"客戶收到報價後完成購買的時限。留空表示無時間限制。\",\"n2ilNh\":\"How long does the schedule run?\",\"DMr2XN\":\"How often?\",\"cceMns\":\"How VAT is applied to the platform fees we charge you.\",\"FONsLE\":\"https://awesome-events.com\",\"htoh8N\":\"https://webhook-domain.com/webhook\",\"mkWad2\":\"匈牙利語\",\"8Wgd41\":\"我確認我作為數據控制者的責任\",\"O8m7VA\":\"我同意接收與此活動相關的電子郵件通知\",\"YLgdk5\":\"我確認這是與此活動相關的交易訊息\",\"4/kP5a\":\"如果未自動開啟新分頁,請點擊下方按鈕繼續結帳。\",\"W/eN+G\":\"如果留空,地址將用於生成 Google 地圖連結\",\"CY3yHL\":\"如果勾選,此類別將對公眾隱藏。\",\"iIEaNB\":\"如果您在我們這裡有帳戶,您將收到一封電子郵件,其中包含如何重置密碼的說明。\",\"an5hVd\":\"圖片\",\"tSVr6t\":\"模擬\",\"TWXU0c\":\"模擬用戶\",\"5LAZwq\":\"模擬已開始\",\"IMwcdR\":\"模擬已停止\",\"0I0Hac\":\"重要通知\",\"yD3avI\":\"重要提示:更改您的電郵地址將更新存取此訂單的連結。儲存後,您將被重新導向至新的訂單連結。\",\"jT142F\":[[\"diffHours\"],\" 小時後\"],\"OoSyqO\":[[\"diffMinutes\"],\" 分鐘後\"],\"PdMhEx\":[\"in last \",[\"0\"],\" min\"],\"u7r0G5\":\"In person — set a venue\",\"/LCAwL\":\"進行中\",\"F1Xp97\":\"個人與會者\",\"85e6zs\":\"插入Liquid標記\",\"CTWsuc\":\"Instagram\",\"VopR6B\":\"Instant Stripe payouts\",\"nbfdhU\":\"整合\",\"I8eJ6/\":\"Internal notes on the attendee's ticket\",\"B2Tpo0\":\"無效電郵\",\"5tT0+u\":\"電郵格式無效\",\"f9WRpE\":\"無效的檔案類型。請上傳圖片。\",\"tnL+GP\":\"無效的Liquid語法。請更正後再試。\",\"N9JsFT\":\"無效的增值稅號碼格式\",\"g+lLS9\":\"邀請團隊成員\",\"1z26sk\":\"邀請團隊成員\",\"KR0679\":\"邀請團隊成員\",\"aH6ZIb\":\"邀請您的團隊\",\"Dn4OyV\":\"已邀請\",\"IuMGvq\":\"發票\",\"a/bUcL\":\"It happens on more than one date\",\"d+Oe9r\":\"It may have been unpublished or removed. Please check the link and try again.\",\"Lj7sBL\":\"意大利語\",\"F5/CBH\":\"項目\",\"BzfzPK\":\"項目\",\"rjyWPb\":\"January\",\"KmWyx0\":\"任務\",\"o5r6b2\":\"任務已刪除\",\"cd0jIM\":\"任務詳情\",\"ruJO57\":\"任務名稱\",\"YZi+Hu\":\"任務已排隊等待重試\",\"nCywLA\":\"隨時隨地加入\",\"SNzppu\":\"加入候補名單\",\"dLouFI\":[\"加入\",[\"productDisplayName\"],\"的候補名單\"],\"2gMuHR\":\"已加入\",\"u4ex5r\":\"July\",\"zeEQd/\":\"June\",\"MxjCqk\":\"只是在找您的票?\",\"xOTzt5\":\"just now\",\"0RihU9\":\"Just wrapped\",\"lB2hSG\":[\"讓我隨時了解來自 \",[\"0\"],\" 的新聞和活動\"],\"ioFA9i\":\"Keep the profit.\",\"o66QSP\":\"label updates\",\"RtKKbA\":\"Last\",\"DruLRc\":\"過去14天\",\"ve9JTU\":\"姓氏為必填項\",\"h0Q9Iw\":\"最新響應\",\"gw3Ur5\":\"最近觸發\",\"FIq1Ba\":\"Later\",\"xvnLMP\":\"Latest check-ins\",\"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\":\"淺色\",\"1qY5Ue\":\"連結已過期或無效\",\"gggTBm\":\"LinkedIn\",\"nvOPBA\":\"允許連結\",\"2BBAbc\":\"List\",\"dF6vP6\":\"已上線\",\"fpMs2Z\":\"直播\",\"D9zTjx\":\"直播活動\",\"C33p4q\":\"Loaded dates\",\"WdmJIX\":\"載入預覽中...\",\"IoDI2o\":\"載入標記中...\",\"G3Ge9Z\":\"正在載入Webhook日誌...\",\"NFxlHW\":\"正在加載 Webhook\",\"E0DoRM\":\"地點已刪除\",\"7w8lJU\":\"地點已儲存\",\"YsRXDD\":\"地點已更新\",\"A/kIva\":\"location updates\",\"iyZPPR\":\"個地點\",\"VppBoU\":\"地點\",\"iG7KNr\":\"標誌\",\"vu7ZGG\":\"標誌與封面\",\"gddQe0\":\"您主辦單位的標誌與封面圖片\",\"TBEnp1\":\"標誌將顯示於頁首\",\"Jzu30R\":\"標誌將顯示在門票上\",\"PSRm6/\":\"查找我的門票\",\"yJFu/X\":\"總部辦公室\",\"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\":\"管理活動的候補名單,查看統計數據,並向參與者提供門票。\",\"g2npA5\":\"手動提供\",\"hg6l4j\":\"March\",\"pqRBOz\":\"Mark as validated (admin override)\",\"2L3vle\":\"最大訊息數 / 24小時\",\"Qp4HWD\":\"最大收件人數 / 訊息\",\"3JzsDb\":\"May\",\"agPptk\":\"媒介\",\"xDAtGP\":\"訊息\",\"bECJqy\":\"訊息批准成功\",\"1jRD0v\":\"向與會者發送特定門票的信息\",\"uQLXbS\":\"訊息已取消\",\"48rf3i\":\"訊息不能超過5000個字符\",\"ZPj0Q8\":\"訊息詳情\",\"Vjat/X\":\"必須填寫訊息\",\"0/yJtP\":\"向具有特定產品的訂單所有者發送消息\",\"saG4At\":\"訊息已排程\",\"mFdA+i\":\"訊息級別\",\"v7xKtM\":\"訊息級別更新成功\",\"H9HlDe\":\"分鐘\",\"agRWc1\":\"Minutes\",\"zz/Wd/\":\"Mode\",\"fpMgHS\":\"Mon\",\"hty0d5\":\"Monday\",\"JbIgPz\":\"貨幣金額是所有貨幣的大致總和\",\"qvF+MT\":\"監控和管理失敗的後台任務\",\"kY2ll9\":\"month\",\"HajiZl\":\"月\",\"+8Nek/\":\"Monthly\",\"1LkxnU\":\"Monthly Pattern\",\"6jefe3\":\"months\",\"f8jrkd\":\"more\",\"JcD7qf\":\"More actions\",\"w36OkR\":\"最多瀏覽活動(過去14天)\",\"+Y/na7\":\"Move all dates earlier or later\",\"3DIpY0\":\"Multiple locations\",\"g9cQCP\":\"Multiple ticket types\",\"GfaxEk\":\"音樂\",\"oVGCGh\":\"我的票\",\"8/brI5\":\"必須填寫名稱\",\"sFFArG\":\"名稱必須少於 255 個字元\",\"xxU3NX\":\"淨收入\",\"7I8LlL\":\"New capacity\",\"n1GRql\":\"New label\",\"y0Fcpd\":\"新地點\",\"ArHT/C\":\"新註冊\",\"uK7xWf\":\"New time:\",\"veT5Br\":\"Next occurrence\",\"WXtl5X\":[\"Next: \",[\"nextFormatted\"]],\"eWRECP\":\"夜生活\",\"HSw5l3\":\"否 - 我是個人或非增值稅註冊企業\",\"VHfLAW\":\"無帳戶\",\"+jIeoh\":\"未找到賬戶\",\"074+X8\":\"沒有活動的 Webhook\",\"zxnup4\":\"冇推廣夥伴可顯示\",\"Dwf4dR\":\"暫無參與者問題\",\"th7rdT\":\"No attendees to show\",\"PKySlW\":\"No attendees yet for this date.\",\"/UC6qk\":\"未找到歸因數據\",\"E2vYsO\":\"No capabilities reported by Stripe yet.\",\"amMkpL\":\"無容量\",\"d2Jf1f\":\"No change\",\"99ntUF\":\"此活動沒有可用的簽到列表。\",\"wG+knX\":\"No check-ins yet\",\"+dAKxg\":\"找不到配置\",\"LiLk8u\":\"No connections available\",\"eb47T5\":\"未找到所選篩選條件的數據。請嘗試調整日期範圍或貨幣。\",\"Zc216S\":\"No date added\",\"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\",\"OtJSnL\":\"未安排日期\",\"gEdNe8\":\"No dates scheduled yet\",\"pZNOT9\":\"沒有結束日期\",\"dW40Uz\":\"未找到活動\",\"8pQ3NJ\":\"未來 24 小時內沒有活動開始\",\"8zCZQf\":\"尚無活動\",\"Yc5YW6\":\"沒有失敗的任務\",\"EpvBAp\":\"無發票\",\"XZkeaI\":\"未找到日誌\",\"IcAC6J\":\"沒有匹配的字體\",\"nrSs2u\":\"未找到訊息\",\"Rj99yx\":\"No occurrences available\",\"IFU1IG\":\"No occurrences on this date\",\"OVFwlg\":\"暫無訂單問題\",\"EJ7bVz\":\"找不到訂單\",\"NEmyqy\":\"尚無訂單\",\"a77B6w\":\"No orders yet for this date.\",\"wUv5xQ\":\"過去14天沒有主辦方活動\",\"vLd1tV\":\"No organizer context available.\",\"B7w4KY\":\"沒有其他可用的主辦單位\",\"PChXMe\":\"無付費訂單\",\"6jYQGG\":\"沒有過往活動\",\"CHzaTD\":\"過去14天沒有熱門活動\",\"zK/+ef\":\"沒有可供選擇的產品\",\"M1/lXs\":\"No products configured for this event.\",\"kY7XDn\":\"沒有產品有等候名單條目\",\"8mw4tm\":\"無產品訊息\",\"wYiAtV\":\"沒有最近的帳戶註冊\",\"UW90md\":\"未找到收件人\",\"QoAi8D\":\"無響應\",\"JeO7SI\":\"無回應\",\"EK/G11\":\"尚無響應\",\"59OWd3\":\"沒有已儲存的地點\",\"mPdY6W\":\"沒有建議\",\"3sRuiW\":\"未找到票\",\"debCrL\":\"沒有可售門票\",\"k2C0ZR\":\"No upcoming dates\",\"yM5c0q\":\"沒有即將舉行的活動\",\"qpC74J\":\"未找到用戶\",\"8wgkoi\":\"過去14天沒有瀏覽的活動\",\"Arzxc1\":\"沒有候補名單條目\",\"n5vdm2\":\"此端點尚未記錄任何 Webhook 事件。事件觸發後將顯示在此處。\",\"4GhX3c\":\"沒有 Webhooks\",\"4+am6b\":\"否,保留在此\",\"4JVMUi\":\"non-edited\",\"Itw24Q\":\"Not checked in\",\"x5+Lcz\":\"未簽到\",\"8n10sz\":\"不符合條件\",\"kLvU3F\":\"Notify attendees and stop sales\",\"t9QlBd\":\"November\",\"kAREMN\":\"Number of dates to create\",\"6u1B3O\":\"Occurrence\",\"mmoE62\":\"Occurrence Cancelled\",\"V9flmL\":\"Occurrence Schedule\",\"Kh3WO8\":\"Occurrence Summary\",\"byXCTu\":\"Occurrences\",\"KATw3p\":\"Occurrences (future only)\",\"85rTR2\":\"Occurrences can be configured after creation\",\"dzQfDY\":\"October\",\"BwJKBw\":\"共\",\"9h7RDh\":\"提供\",\"EfK2O6\":\"提供名額\",\"3sVRey\":\"提供門票\",\"2O7Ybb\":\"報價逾時\",\"1jUg5D\":\"已提供\",\"l+/HS6\":[\"報價將在 \",[\"timeoutHours\"],\" 小時後過期。\"],\"6Aih4U\":\"離線\",\"nO3VbP\":[\"正在銷售 \",[\"0\"]],\"oXOSPE\":\"線上\",\"aqmy5k\":\"Online — provide connection details\",\"LuZBbx\":\"Online & in-person\",\"IXuOqt\":\"Online & in-person — see schedule\",\"WjSpu5\":\"線上活動\",\"scPxI/\":[\"僅剩 \",[\"capacity\"],\" 個\"],\"NdOxqr\":\"只有帳戶管理員可以刪除或封存活動。請聯絡您的帳戶管理員尋求協助。\",\"rnoDMF\":\"只有帳戶管理員可以刪除或封存主辦方。請聯絡您的帳戶管理員尋求協助。\",\"bU7oUm\":\"僅發送給具有這些狀態的訂單\",\"wkpaqp\":\"僅顯示開始日期和時間\",\"DMk8F0\":\"Only tickets count toward capacity\",\"M2w1ni\":\"僅使用促銷代碼時可見\",\"y8Bm7C\":\"Open check-in\",\"RLz7P+\":\"Open occurrence\",\"cDSdPb\":\"在選擇器中顯示的可選暱稱,例如\\\"總部會議室\\\"\",\"HXMJxH\":\"免責聲明、聯繫信息或感謝說明的可選文本(僅單行)\",\"L565X2\":\"選項\",\"8m9emP\":\"or add a single date\",\"eBskDE\":\"或啟用線下付款並停用 Stripe\",\"dSeVIm\":\"order\",\"c/TIyD\":\"訂單及門票\",\"H5qWhm\":\"訂單已取消\",\"b6+Y+n\":\"訂單完成\",\"x4MLWE\":\"訂單確認\",\"CsTTH0\":\"訂單確認重新發送成功\",\"ppuQR4\":\"訂單已創建\",\"xtQzag\":\"Order details\",\"vrSW9M\":\"訂單已取消並退款。訂單所有者已收到通知。\",\"rzw+wS\":\"訂單持有人\",\"oI/hGR\":\"訂單編號\",\"RQCXz6\":\"訂單限制\",\"SO9AEF\":\"已設定訂單限制\",\"vu6Arl\":\"訂單標記為已支付\",\"sLbJQz\":\"未找到訂單\",\"kvYpYu\":\"找不到訂單\",\"eJ8SvM\":\"Order number, purchase date, purchaser email\",\"FaPYw+\":\"訂單所有者\",\"eB5vce\":\"具有特定產品的訂單所有者\",\"CxLoxM\":\"具有產品的訂單所有者\",\"UkHo4c\":\"訂單參考\",\"EZy55F\":\"訂單已退款\",\"6eSHqs\":\"訂單狀態\",\"oW5877\":\"訂單總額\",\"e7eZuA\":\"訂單已更新\",\"1SQRYo\":\"訂單更新成功\",\"3NT0Ck\":\"訂單已被取消\",\"V5khLm\":\"orders\",\"sd5IMt\":\"已完成訂單\",\"5It1cQ\":\"訂單已導出\",\"UQ0ACV\":\"訂單總額\",\"B/EBQv\":\"訂單:\",\"qtGTNu\":\"自然帳戶\",\"P/JHA4\":\"主辦方已成功封存\",\"S3CZ5M\":\"主辦單位儀表板\",\"GzjTd0\":\"主辦方已成功刪除\",\"SQqJd8\":\"找不到主辦單位\",\"HF8Bxa\":\"主辦方已成功還原\",\"wpj63n\":\"主辦單位設定\",\"o1my93\":\"更新主辦單位狀態失敗。請稍後再試。\",\"rLHma1\":\"主辦單位狀態已更新\",\"LqBITi\":\"將使用組織者/預設範本\",\"q4zH+l\":\"Organizers\",\"/IX/7x\":\"其他\",\"RsiDDQ\":\"其他列表(不包含此票)\",\"aDfajK\":\"Outdoors\",\"qMASRF\":\"發出的訊息\",\"iCOVQO\":\"Override\",\"GpFTEc\":\"Override fees on this organizer\",\"M9ZhMP\":\"Override price\",\"cnVIpl\":\"Override removed\",\"6/dCYd\":\"總覽\",\"6WdDG7\":\"頁面\",\"8uqsE5\":\"頁面不再可用\",\"QkLf4H\":\"頁面網址\",\"sF+Xp9\":\"頁面瀏覽量\",\"v4nCHK\":\"Paid\",\"c+suC6\":\"付費帳戶\",\"5F7SYw\":\"部分退款\",\"fFYotW\":[\"部分退款:\",[\"0\"]],\"i8day5\":\"將費用轉嫁給買家\",\"k4FLBQ\":\"轉嫁給買家\",\"Ff0Dor\":\"過去\",\"BFjW8X\":\"Past due\",\"xTPjSy\":\"過往活動\",\"/l/ckQ\":\"貼上網址\",\"URAE3q\":\"已暫停\",\"4fL/V7\":\"付款\",\"c2/9VE\":\"負載數據\",\"5cxUwd\":\"付款日期\",\"ENEPLY\":\"付款方式\",\"8Lx2X7\":\"已收到付款\",\"fx8BTd\":\"付款不可用\",\"C+ylwF\":\"Payouts\",\"UbRKMZ\":\"Pending\",\"UkM20g\":\"待審核\",\"dPYu1F\":\"每位參與者\",\"mQV/nJ\":\"per min\",\"+kvxv+\":\"每單\",\"VlXNyK\":\"每份訂單\",\"NhuGd7\":\"每件商品\",\"hauDFf\":\"每張門票\",\"mnF83a\":\"百分比費用\",\"TNLuRD\":\"Percentage fee (%)\",\"MixU2P\":\"百分比必須介於 0 到 100 之間\",\"MkuVAZ\":\"交易金額的百分比\",\"/Bh+7r\":\"表現\",\"fIp56F\":\"永久刪除此活動及其所有相關資料。\",\"nJeeX7\":\"永久刪除此主辦方及其所有活動。\",\"wfCTgK\":\"Permanently remove this date\",\"6kPk3+\":\"個人資料\",\"zmwvG2\":\"電話\",\"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\":\"計劃舉辦活動?\",\"J3lhKT\":\"平台費用\",\"RD51+P\":[\"從您的付款中扣除 \",[\"0\"],\" 的平台費用\"],\"br3Y/y\":\"平台費用\",\"3buiaw\":\"平台費用報告\",\"kv9dM4\":\"平台收入\",\"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\":\"請輸入有效的電子郵件地址\",\"jEw0Mr\":\"請輸入有效的 URL\",\"n8+Ng/\":\"請輸入5位數驗證碼\",\"r+lQXT\":\"請輸入您的增值稅號碼\",\"Dvq0wf\":\"請提供圖片。\",\"2cUopP\":\"請重新開始結賬流程。\",\"GoXxOA\":\"Please select a date and time\",\"8KmsFa\":\"請選擇日期範圍\",\"EFq6EG\":\"請選擇圖片。\",\"fuwKpE\":\"請再試一次。\",\"klWBeI\":\"請等一陣再申請新嘅驗證碼\",\"hfHhaa\":\"請稍候,我哋準備緊匯出你嘅推廣夥伴...\",\"o+tJN/\":\"請稍候,我們正在準備導出您的與會者...\",\"+5Mlle\":\"請稍候,我們正在準備導出您的訂單...\",\"trnWaw\":\"波蘭語\",\"luHAJY\":\"熱門活動(過去14天)\",\"p/78dY\":\"Position\",\"OESu7I\":\"透過在多種門票類型之間共享庫存來防止超賣。\",\"NgVUL2\":\"預覽結帳表單\",\"cs5muu\":\"預覽活動頁面\",\"Jm2AC3\":\"Price Tier\",\"a5jvSX\":\"價格等級\",\"ReihZ7\":\"列印預覽\",\"JnuPvH\":\"列印門票\",\"tYF4Zq\":\"列印為PDF\",\"LcET2C\":\"私隱政策\",\"8z6Y5D\":\"處理退款\",\"JcejNJ\":\"處理訂單中\",\"EWCLpZ\":\"產品已創建\",\"XkFYVB\":\"產品已刪除\",\"YMwcbR\":\"產品銷售、收入和税費明細\",\"ls0mTC\":\"Product settings cannot be edited for cancelled dates.\",\"2339ej\":\"Product settings saved successfully\",\"ldVIlB\":\"產品已更新\",\"CP3D8G\":\"Progress\",\"JoKGiJ\":\"優惠碼\",\"k3wH7i\":\"促銷碼使用情況及折扣明細\",\"tZqL0q\":\"promo codes\",\"oCHiz3\":\"Promo codes\",\"uEhdRh\":\"僅限促銷\",\"dLm8V5\":\"促銷電子郵件可能導致帳戶被暫停\",\"W0ETyY\":\"請至少填寫一個地址欄位(場地、街道、城市或國家)。\",\"2W/7Gz\":\"Provide the following before Stripe's next review to keep payouts flowing.\",\"EEYbdt\":\"發佈\",\"JcgJKc\":\"仍要發布\",\"evDBV8\":\"發布活動\",\"2zEfOd\":\"Publish your event\",\"L7nrC8\":\"發布後,您的活動頁面將公開並開放報名。\",\"dsFmM+\":\"已購買\",\"JunetL\":\"Purchaser\",\"phmeUH\":\"Purchaser email\",\"ywR4ZL\":\"QR code check-in\",\"oWXNE5\":\"數量\",\"biEyJ4\":\"Question answers\",\"k/bJj0\":\"問題已重新排序\",\"b24kPi\":\"隊列\",\"lTPqpM\":\"Quick Tip\",\"fqDzSu\":\"費率\",\"mnUGVC\":\"超出速率限制。請稍後再試。\",\"t41hVI\":\"重新提供名額\",\"TNclgc\":\"Reactivate this date? It will be reopened for future sales.\",\"RENQ6j\":\"準備好發布了嗎?\",\"uqoRbb\":\"Real-time analytics\",\"xzRvs4\":[\"接收 \",[\"0\"],\" 的產品更新。\"],\"pLXbi8\":\"最近帳戶註冊\",\"M1HGuR\":\"Recent activity\",\"3kJ0gv\":\"Recent Attendees\",\"qhfiwV\":\"Recent check-ins\",\"S+0XMX\":\"Recent orders\",\"Fi3b48\":\"最近訂單\",\"7hPBBn\":\"位收件人\",\"jp5bq8\":\"位收件人\",\"yPrbsy\":\"收件人\",\"E1F5Ji\":\"收件人在訊息發送後可用\",\"WEYdDv\":\"Recommended\",\"wuhHPE\":\"Recurring\",\"asLqwt\":\"重複活動\",\"s3uzsK\":\"重複活動設定\",\"D0tAMe\":\"Recurring events\",\"JjMIKU\":\"Reddit\",\"HiGkFu\":\"正在重定向到 Stripe...\",\"pnoTN5\":\"推薦帳戶\",\"ACKu03\":\"刷新預覽\",\"vuFYA6\":\"Refund all orders for these dates\",\"4cRUK3\":\"Refund all orders for this date\",\"fKn/k6\":\"退款金額\",\"qY4rpA\":\"退款失敗\",\"FaK/8G\":[\"退款訂單 \",[\"0\"]],\"MGbi9P\":\"退款待處理\",\"BDSRuX\":[\"已退款:\",[\"0\"]],\"bU4bS1\":\"退款\",\"rYXfOA\":\"地區設定\",\"5tl0Bp\":\"註冊問題\",\"ZNo5k1\":\"Remaining\",\"Bjh87R\":\"Remove label from all dates\",\"IVZaEo\":\"從活動頁面完全移除已售罄的日期和時間。停用時,它們仍然可見並標示為已售罄。\",\"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\":\"未找到報告\",\"JEPMXN\":\"請求新連結\",\"TMLAx2\":\"必填\",\"mdeIOH\":\"重新發送驗證碼\",\"sQxe68\":\"重新發送確認\",\"bxoWpz\":\"重新發送確認電郵\",\"G42SNI\":\"重新發送電郵\",\"TTpXL3\":[[\"resendCooldown\"],\"秒後重新發送\"],\"5CiNPm\":\"重新發送門票\",\"Uwsg2F\":\"已預留\",\"8wUjGl\":\"保留至\",\"a5z8mb\":\"Reset to base price\",\"kCn6wb\":\"重置中...\",\"ZlCDf+\":\"回應\",\"bsydMp\":\"回應詳情\",\"yKu/3Y\":\"還原\",\"RokrZf\":\"還原活動\",\"/JyMGh\":\"還原主辦方\",\"HFvFRb\":\"還原此活動以使其再次可見。\",\"DDIcqy\":\"還原此主辦方並使其重新活躍。\",\"mO8KLE\":\"results\",\"6gRgw8\":\"重試\",\"1BG8ga\":\"全部重試\",\"rDC+T6\":\"重試任務\",\"CbnrWb\":\"返回活動\",\"Lf7TCn\":\"當您建立帶地址的活動時,可重複使用的場地會自動出現在這裡,您也可以自行新增。\",\"mdQ0zb\":\"可在活動中重複使用的場地。透過自動完成建立的地點會自動儲存在這裡。\",\"XFOPle\":\"Reuse\",\"1Zehp4\":\"Reuse a Stripe connection from another organizer in this account.\",\"Oo/PLb\":\"收入摘要\",\"CfuueU\":\"撤銷報價\",\"RIgKv+\":\"Run until a specific date\",\"dFFW9L\":[\"銷售已於 \",[\"0\"],\" 結束\"],\"loCKGB\":[\"銷售於 \",[\"0\"],\" 結束\"],\"wlfBad\":\"銷售期間\",\"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\":\"已設定銷售期間\",\"ftzaMf\":\"銷售期間、訂單限制、可見性\",\"zpekWp\":[\"銷售於 \",[\"0\"],\" 開始\"],\"mUv9U4\":\"銷售\",\"9KnRdL\":\"銷售已暫停\",\"JC3J0k\":\"Sales, attendance, and check-in breakdown per occurrence\",\"3VnlS9\":\"所有活動的銷售、訂單和表現指標\",\"3Q1AWe\":\"銷售額:\",\"LeuERW\":\"Same as event\",\"B4nE3N\":\"示例票價\",\"8BRPoH\":\"示例場地\",\"PiK6Ld\":\"Sat\",\"+5kO8P\":\"Saturday\",\"zJiuDn\":\"Save fee override\",\"NB8Uxt\":\"Save Schedule\",\"KZrfYJ\":\"儲存社交連結\",\"9Y3hAT\":\"儲存範本\",\"C8ne4X\":\"儲存門票設計\",\"cTI8IK\":\"Save VAT settings\",\"6/TNCd\":\"儲存增值稅設定\",\"4RvD9q\":\"已儲存的地點\",\"cgw0cL\":\"已儲存的地點\",\"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\":\"已排程\",\"qcP/8K\":\"排程時間\",\"A1taO8\":\"Search\",\"ftNXma\":\"搜尋推廣夥伴...\",\"VMU+zM\":\"Search attendees\",\"VY+Bdn\":\"按賬戶名稱或電子郵件搜尋...\",\"VX+B3I\":\"按活動標題或主辦方搜索...\",\"R0wEyA\":\"按任務名稱或異常搜索...\",\"YnMfsK\":\"按名稱或地址搜尋...\",\"VT+urE\":\"按姓名或電子郵件搜尋...\",\"GHdjuo\":\"按姓名、電子郵件或帳戶搜索...\",\"4mBFO7\":\"Search by name, order #, ticket # or email\",\"20ce0U\":\"按訂單編號、客戶姓名或電子郵件搜尋...\",\"4DSz7Z\":\"按主題、活動或賬戶搜索...\",\"nQC7Z9\":\"Search dates...\",\"iRtEpV\":\"Search dates…\",\"JRM7ao\":\"Search for an address\",\"BWF1kC\":\"搜尋訊息...\",\"5WYZKZ\":\"搜尋結果\",\"IG85fV\":\"搜尋已儲存的地點或尋找地址...\",\"3aD3GF\":\"Seasonal\",\"ku//5b\":\"Second\",\"Mck5ht\":\"安全結帳\",\"s7tXqF\":\"See schedule\",\"JFap6u\":\"See what Stripe still needs\",\"p7xUrt\":\"選擇類別\",\"hTKQwS\":\"Select a Date & Time\",\"Ps6Xtf\":\"Select a date to see available times\",\"e4L7bF\":\"選擇一則訊息查看其內容\",\"zPRPMf\":\"選擇級別\",\"BFRSTT\":\"選擇帳戶\",\"wgNoIs\":\"Select all\",\"mCB6Je\":\"全選\",\"aCEysm\":[\"Select all on \",[\"0\"]],\"a6+167\":\"選擇活動\",\"CFbaPk\":\"選擇參加者群組\",\"88a49s\":\"Select camera\",\"tVW/yo\":\"選擇貨幣\",\"SJQM1I\":\"Select date\",\"n9ZhRa\":\"選擇結束日期與時間\",\"gTN6Ws\":\"選擇結束時間\",\"0U6E9W\":\"選擇活動類別\",\"j9cPeF\":\"選擇事件類型\",\"ypTjHL\":\"Select occurrence\",\"KizCK7\":\"選擇開始日期與時間\",\"dJZTv2\":\"選擇開始時間\",\"x8XMsJ\":\"為此帳戶選擇訊息級別。這控制訊息限制和連結權限。\",\"aT3jZX\":\"選擇時區\",\"TxfvH2\":\"選擇哪些參加者應該收到此訊息\",\"Ropvj0\":\"選擇哪些事件將觸發此 Webhook\",\"+6YAwo\":\"selected\",\"ylXj1N\":\"已選擇\",\"uq3CXQ\":\"Sell out your event.\",\"oBXbO4\":\"Selling a physical product? Cap its quantity on the <0>products page instead.\",\"j9b/iy\":\"熱賣中 🔥\",\"73qYgo\":\"作為測試發送\",\"HMAqFK\":\"向參與者、持票人或訂單擁有者發送電子郵件。訊息可以立即發送或安排稍後發送。\",\"22Itl6\":\"發送副本給我\",\"NpEm3p\":\"立即發送\",\"nOBvex\":\"將即時訂單和參與者資料傳送到您的外部系統。\",\"1lNPhX\":\"發送退款通知郵件\",\"eaUTwS\":\"發送重置連結\",\"5cV4PY\":\"Send to all occurrences, or choose a specific one\",\"QEQlnV\":\"發送您的第一則訊息\",\"IoAuJG\":\"發送中...\",\"h69WC6\":\"已發送\",\"BVu2Hz\":\"發送者\",\"ZFa8wv\":\"Sent to attendees when a scheduled date is cancelled\",\"SPdzrs\":\"客戶下訂時發送\",\"LxSN5F\":\"發送給每位參會者及其門票詳情\",\"hgvbYY\":\"September\",\"5sN96e\":\"Session cancelled\",\"89xaFU\":\"為此主辦方創建的新活動設置預設平台費用設置。\",\"eXssj5\":\"為此主辦單位下創建的新活動設定預設設定。\",\"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\":\"為不同的入口、場次或日期設定簽到列表。\",\"TaWVGe\":\"Set up payouts\",\"JA//e6\":\"Set up schedule\",\"gzXY7l\":\"Set Up Schedule\",\"0Ls9qe\":\"Set up the tickets you'll sell and their prices\",\"xMO+Ao\":\"設定你嘅機構\",\"5pEFnq\":\"Set up your schedule\",\"h/9JiC\":\"Set Up Your Schedule\",\"zRRuUD\":\"Set up your schedule in the next steps\",\"ETC76A\":\"Set, change, or remove the date's location or online details\",\"C3htzi\":\"設定已更新\",\"Ohn74G\":\"設定與設計\",\"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\":\"分享推廣連結\",\"hL7sDJ\":\"分享主辦單位頁面\",\"jy6QDF\":\"共享容量管理\",\"jDNHW4\":\"Shift times\",\"tPfIaW\":[\"Shifted times for \",[\"count\"],\" date(s)\"],\"WwlM8F\":\"顯示進階選項\",\"cMW+gm\":[\"顯示所有平台(另有 \",[\"0\"],\" 個有內容)\"],\"wXi9pZ\":\"Show attendee notes to non-logged-in staff\",\"4LZFir\":\"顯示整個日期範圍\",\"UVPI5D\":\"顯示較少平台\",\"Eu/N/d\":\"顯示營銷訂閱複選框\",\"SXzpzO\":\"預設顯示營銷訂閱複選框\",\"b33PL9\":\"顯示更多平台\",\"Eut7p9\":\"Show order details to non-logged-in staff\",\"+RoWKN\":\"Show question answers to non-logged-in staff\",\"jbcx6L\":\"Show remaining capacity on event dates\",\"rXxBOx\":\"Show remaining capacity to buyers\",\"t1LIQW\":[\"顯示 \",[\"0\"],\" / \",[\"totalRows\"],\" 條記錄\"],\"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\":\"註冊時間\",\"5C7J+P\":\"Single Event\",\"E//btK\":\"Skip manually edited dates\",\"paESr6\":\"斯洛伐克語\",\"9wu8nm\":\"Snapchat\",\"kIKb9e\":\"社交\",\"d0rUsW\":\"社交連結\",\"j/TOB3\":\"社交連結與網站\",\"s9KGXU\":\"已售出\",\"yp+0jj\":\"sold out\",\"1hupow\":\"售罄,可加入候補名單\",\"iACSrw\":\"Some details are hidden from public access. Log in to view everything.\",\"Dia6iz\":\"Something went wrong while deleting the image. Please try again.\",\"KTxc6k\":\"出現問題,請重試,或在問題持續時聯繫客服\",\"lkE00/\":\"出了點問題。請稍後再試。\",\"wdxz7K\":\"來源\",\"fDG2by\":\"Spirituality\",\"oPaRES\":\"Split check-in across days, areas, or ticket types. Share the link with staff — no account needed on their end.\",\"7JFNej\":\"體育\",\"/bfV1Y\":\"Staff instructions\",\"tXkhj/\":\"Start\",\"StWUH4\":\"Start check-in\",\"JcQp9p\":\"開始日期同時間\",\"0m/ekX\":\"開始日期與時間\",\"izRfYP\":\"必須填寫開始日期\",\"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/\":\"統計數據\",\"GVUxAX\":\"統計數據基於帳戶創建日期\",\"29Hx9U\":\"Stats\",\"5ia+r6\":\"Still needed\",\"wuV0bK\":\"停止模擬\",\"s/KaDb\":\"Stripe connected\",\"Bk06QI\":\"Stripe 已連接\",\"akZMv8\":[\"Stripe connection copied from \",[\"0\"],\".\"],\"v0aRY1\":\"Stripe didn't return a setup link. Please try again.\",\"aKtF0O\":\"Stripe未連接\",\"9i0++A\":\"Stripe 付款 ID\",\"R1lIMV\":\"Stripe will need a few more details soon\",\"FzcCHA\":\"Stripe will walk you through a few quick questions to finish setup.\",\"ii0qn/\":\"主題是必需的\",\"M7Uapz\":\"主題將顯示在這裏\",\"6aXq+t\":\"主題:\",\"JwTmB6\":\"產品複製成功\",\"WUOCgI\":\"已成功提供名額\",\"IvxA4G\":[\"已成功向 \",[\"count\"],\" 人提供門票\"],\"kKpkzy\":\"已成功向 1 人提供門票\",\"Zi3Sbw\":\"已成功從候補名單中移除\",\"RuaKfn\":\"地址更新成功\",\"kzx0uD\":\"成功更新活動預設值\",\"5n+Wwp\":\"主辦單位更新成功\",\"DMCX/I\":\"平台費用預設設置更新成功\",\"URUYHc\":\"平台費用設置更新成功\",\"kRWc2g\":\"已成功更新重複活動設定\",\"0Dk/l8\":\"SEO 設定已成功更新\",\"S8Tua9\":\"設定更新成功\",\"MhOoLQ\":\"社交連結更新成功\",\"CNSSfp\":\"追蹤設定更新成功\",\"kj7zYe\":\"Webhook 更新成功\",\"dXoieq\":\"摘要\",\"/RfJXt\":[\"夏日音樂節 \",[\"0\"]],\"CWOPIK\":\"2025夏季音樂節\",\"D89zck\":\"Sun\",\"DBC3t5\":\"Sunday\",\"UaISq3\":\"瑞典語\",\"JZTQI0\":\"切換主辦單位\",\"9YHrNC\":\"系統預設\",\"lruQkA\":\"Tap this screen to resume scanning\",\"TJUrME\":[\"Targeting attendees across \",[\"0\"],\" selected sessions.\"],\"yT6dQ8\":\"按稅種和活動分組的已收稅款\",\"Ye321X\":\"稅種名稱\",\"WyCBRt\":\"稅務摘要\",\"GkH0Pq\":\"已套用稅項及費用\",\"Rwiyt2\":\"已配置稅項\",\"iQZff7\":\"稅項、費用、可見性、銷售期間、產品重點和訂單限制\",\"SXvRWU\":\"Team collaboration\",\"vlf/In\":\"科技\",\"SchpMp\":\"Telegram\",\"iWa9cY\":\"讓人們知道您的活動有什麼內容\",\"NiIUyb\":\"請告訴我們您的活動\",\"DovcfC\":\"話俾我哋知你嘅機構資料。呢啲資料會顯示喺你嘅活動頁面。\",\"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\":\"範本已啟用\",\"QHhZeE\":\"範本建立成功\",\"xrWdPR\":\"範本刪除成功\",\"G04Zjt\":\"範本儲存成功\",\"xowcRf\":\"服務條款\",\"6K0GjX\":\"文字可能難以閱讀\",\"nm3Iz/\":\"感謝您的參與!\",\"pYwj0k\":\"Thanks,\",\"k3IitN\":\"That's a wrap\",\"KfmPRW\":\"頁面的背景顏色。使用封面圖片時,這會作為覆蓋層應用。\",\"MDNyJz\":\"驗證碼會喺10分鐘後過期。如果你搵唔到電郵,請檢查垃圾郵件資料夾。\",\"AIF7J2\":\"定義固定費用的貨幣。結帳時將轉換為訂單貨幣。\",\"7oksH+\":[\"折扣將從每個符合條件的商品中扣除。例如:立減 \",[\"currencySymbol\"],\"10 × 3 張票 = 共減 \",[\"currencySymbol\"],\"30。\"],\"sKL8k2\":\"折扣僅從訂單總額中扣除一次。\",\"cDHM1d\":\"電郵地址已更改。參與者將在更新後的電郵地址收到新門票。\",\"tXadb0\":\"您查找的活動目前不可用。它可能已被刪除、過期或 URL 不正確。\",\"5fPdZe\":\"The first date this schedule will generate from.\",\"sxKqBm\":\"訂單全額將退款至客戶的原始付款方式。\",\"KgDp6G\":\"您嘗試存取的連結已過期或不再有效。請檢查您的電郵以獲取管理訂單的更新連結。\",\"Np4eLs\":[\"The maximum is \",[\"MAX_PREVIEW\"],\" sessions. Please reduce the date range, frequency, or number of sessions per day.\"],\"sYLeDq\":\"找不到您正在尋找的主辦單位。頁面可能已被移動、刪除,或網址不正確。\",\"PCr4zw\":\"The override is recorded in the order audit log.\",\"C4nQe5\":\"平台費用會添加到票價中。買家支付更多,但您會收到完整的票價。\",\"HxxXZO\":\"用於按鈕和突出顯示的主要品牌顏色\",\"OVSkIF\":\"敏捷的棕色狐狸跳過懶狗。\",\"z0KrIG\":\"排程時間為必填項\",\"EWErQh\":\"排程時間必須是將來的時間\",\"UNd0OU\":[\"The session for \\\"\",[\"title\"],\"\\\" originally scheduled for \",[\"0\"],\" has been rescheduled.\"],\"DEcpfp\":\"模板正文包含無效的Liquid語法。請更正後再試。\",\"injXD7\":\"無法驗證增值稅號碼。請檢查號碼並重試。\",\"A4UmDy\":\"劇場\",\"tDwYhx\":\"主題與顏色\",\"ybBP2H\":\"There are no products available for this date. Please choose another date.\",\"O7g4eR\":\"There are no upcoming dates for this event\",\"062KsE\":\"These details are shown on the attendee's ticket and order summary for this date only.\",\"5Eu+tn\":\"這些詳情僅在訂單成功完成後顯示。\",\"jQjwR+\":\"These details will replace any existing location on the affected dates and show on attendee tickets.\",\"6eaLu/\":\"這些價格適用於日程中的所有場次,層級數量限制的是所有場次合計的總銷量。層級的銷售日期全域生效。您可以在<0>場次安排頁面為個別場次覆寫價格。\",\"QP3gP+\":\"這些設定僅適用於複製的嵌入代碼,不會被儲存。\",\"HirZe8\":\"這些範本將用作您組織中所有活動的預設範本。單個活動可以用自己的自定義版本覆蓋這些範本。\",\"lzAaG5\":\"這些範本將僅覆蓋此活動的組織者預設設置。如果這裏沒有設置自定義範本,將使用組織者範本。\",\"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\":\"呢個代碼會用嚟追蹤銷售。只可以用字母、數字、連字號同底線。\",\"AaP0M+\":\"對某些使用者來說,此顏色組合可能難以閱讀\",\"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.\",\"E9BqZw\":\"This date only\",\"RzEvf5\":\"此活動已結束\",\"kc4bIA\":\"此活動尚未有門票或商品,參加者將無法報名。\",\"eMaNd0\":\"This event is not available\",\"YClrdK\":\"呢個活動未發佈\",\"GL6z+k\":\"此活動已售罄\",\"pIwDhS\":\"This event's dates and times are set on the occurrence schedule.\",\"ny5rgr\":\"This is a recurring event\",\"tc64Zz\":\"這是將顯示在活動頁面上的類別名稱。\",\"dFJnia\":\"這是將會顯示給使用者的主辦單位名稱。\",\"vt7jiq\":\"簽名密鑰僅顯示一次。請立即複製並妥善保存。\",\"5DpZrC\":\"此設定限制的是整個日程所有場次的總銷量,而不是每場的限制。如需限制每場的人數,請在<0>場次安排頁面設定容量。\",\"L7dIM7\":\"此連結無效或已過期。\",\"MR5ygV\":\"此連結不再有效\",\"9LEqK0\":\"此名稱對最終用戶可見\",\"QdUMM9\":\"This occurrence is at capacity\",\"j5FdeA\":\"此訂單正在處理中。\",\"sjNPMw\":\"此訂單已被放棄。您可以隨時開始新的訂單。\",\"OhCesD\":\"此訂單已被取消。您可以隨時開始新訂單。\",\"lyD7rQ\":\"呢個主辦方資料未發佈\",\"9b5956\":\"此預覽顯示您的郵件使用示例資料的外觀。實際郵件將使用真實值。\",\"uM9Alj\":\"此產品在活動頁面上突出顯示\",\"RqSKdX\":\"此產品已售罄\",\"qEGn8I\":\"此重複活動尚未有日期,參加者無法預訂。\",\"W12OdJ\":\"此報告僅供參考。在將此數據用於會計或稅務目的之前,請務必諮詢稅務專業人士。請與您的Stripe儀表板進行交叉驗證,因為Hi.Events可能缺少歷史數據。\",\"1LuJNw\":\"此門票已失效\",\"0Ew0uk\":\"此門票剛剛被掃描。請等待後再次掃描。\",\"FYXq7k\":[\"This will affect \",[\"loadedAffectedCount\"],\" date(s).\"],\"kvpxIU\":\"這將用於通知和與使用者的溝通。\",\"rhsath\":\"呢個唔會俾客戶睇到,但可以幫你識別推廣夥伴。\",\"hV6FeJ\":\"Throughput\",\"+FjWgX\":\"Thu\",\"kkDQ8m\":\"Thursday\",\"0GSPnc\":\"門票設計\",\"EZC/Cu\":\"門票設計儲存成功\",\"bbslmb\":\"門票設計器\",\"1BPctx\":\"門票:\",\"HGuXjF\":\"票務持有人\",\"CMUt3Y\":\"票務持有人\",\"awHmAT\":\"門票 ID\",\"6czJik\":\"門票標誌\",\"t79rDv\":\"找不到門票\",\"6tmWch\":\"票券或產品\",\"1tfWrD\":\"門票預覽:\",\"KnjoUA\":\"票價\",\"pGZOcL\":\"門票重新發送成功\",\"o02GZM\":\"Ticket sales have ended for this event\",\"8jLPgH\":\"門票類型\",\"8qsbZ5\":\"票務與銷售\",\"zNECqg\":\"門票\",\"6GQNLE\":\"門票\",\"NRhrIB\":\"票券與產品\",\"OrWHoZ\":\"當有空餘名額時,門票將自動提供給候補名單中的客戶。\",\"EUnesn\":\"門票有售\",\"AGRilS\":\"已售票數\",\"zyUxcw\":\"TikTok\",\"LhMjLm\":\"Time\",\"fXf2r5\":[\"Times shown in \",[\"timezoneAbbr\"]],\"dMtLDE\":\"to\",\"/jQctM\":\"收件人\",\"tiI71C\":\"要提高您的限制,請聯繫我們\",\"ecUA8p\":\"Today\",\"W428WC\":\"切換欄位\",\"BRMXj0\":\"Tomorrow\",\"UBSG1X\":\"頂級主辦方(過去14天)\",\"3sZ0xx\":\"總賬戶數\",\"SMDzqJ\":\"總參與人數\",\"orBECM\":\"總收款\",\"k5CU8c\":\"總條目\",\"4B7oCp\":\"總費用\",\"sMMlTX\":\"Total fees\",\"mlvCEl\":\"Total orders\",\"2AW/k5\":\"所有場次的總數量\",\"dp8BCb\":\"Total tax\",\"vb0Q0/\":\"總用戶數\",\"oJjplO\":\"總瀏覽量\",\"rBZ9pz\":\"Tours\",\"orluER\":\"按歸因來源追蹤帳戶增長和表現\",\"YwKzpH\":\"追蹤與分析\",\"GUA0Jy\":\"Try a different search term or filter\",\"2P/OWN\":\"Try adjusting your filters to see more dates.\",\"ouM5IM\":\"嘗試其他郵箱\",\"3DZvE7\":\"免費試用Hi.Events\",\"vq2WxD\":\"Tue\",\"G3myU+\":\"Tuesday\",\"Kz91g/\":\"土耳其語\",\"GdOhw6\":\"關閉聲音\",\"KUOhTy\":\"開啟聲音\",\"dBeuY2\":\"Twitch\",\"QytzQr\":\"輸入\\\"刪除\\\"以確認\",\"nWRfmt\":\"排版\",\"IrVSu+\":\"無法複製產品。請檢查您的詳細信息\",\"Vx2J6x\":\"無法擷取參與者資料\",\"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\":\"未歸因帳戶\",\"9uI/rE\":\"Undo\",\"Ef7StM\":\"未知\",\"ZBAScj\":\"未知參會者\",\"MEIAzV\":\"未命名\",\"K6L5Mx\":\"未命名地點\",\"7yiFvZ\":\"未付款\",\"X13xGn\":\"不受信任\",\"gyXpQN\":\"Upcoming events\",\"Pp1sWX\":\"更新推廣夥伴\",\"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\":\"上傳主辦單位的封面圖片\",\"4kEGqW\":\"上傳主辦單位的標誌\",\"lnCMdg\":\"上傳圖片\",\"29w7p6\":\"正在上傳圖片...\",\"HtrFfw\":\"URL 是必填項\",\"vzWC39\":\"USB\",\"td5pxI\":\"USB scanner listening\",\"dyTklH\":\"USB scanner paused\",\"OHJXlK\":\"使用 <0>Liquid 模板 個性化您的郵件\",\"/rsy72\":\"Use event default\",\"0k4cdb\":\"為所有參加者使用訂單詳情。參加者姓名和電郵將與買家資料相符。\",\"bA31T4\":\"為所有參與者使用購買者的資料\",\"PpgtnC\":\"使用此地址\",\"rnoQsz\":\"用於邊框、高亮和二維碼樣式\",\"BV4L/Q\":\"UTM 分析\",\"l5ackE\":\"UUID\",\"imLQ9Y\":\"正在驗證您的增值稅號碼...\",\"t7caBM\":\"VAT country code\",\"WLkfqH\":\"VAT number\",\"pnVh83\":\"增值稅號碼\",\"CabI04\":\"增值稅號碼不得包含空格\",\"PMhxAR\":\"增值稅號碼必須以 2 個字母的國家代碼開頭,後跟 8-15 個字母數字字元(例如:DE123456789)\",\"gPgdNV\":\"增值稅號碼驗證成功\",\"RUMiLy\":\"增值稅號碼驗證失敗\",\"vqji3Y\":\"增值稅號碼驗證失敗。請檢查您的增值稅號碼。\",\"8dENF9\":\"費用增值稅\",\"ZutOKU\":\"增值稅率\",\"+KJZt3\":\"VAT registered\",\"Nfbg76\":\"增值稅設定已成功儲存\",\"UvYql/\":\"增值稅設定已儲存。我們正在後台驗證您的增值稅號碼。\",\"bXn1Jz\":\"VAT settings updated\",\"tJylUv\":\"平台費用的增值稅處理\",\"FlGprQ\":\"平台費用的增值稅處理:歐盟增值稅註冊企業可使用反向收費機制(0% - 增值稅指令 2006/112/EC 第 196 條)。非增值稅註冊企業將收取 23% 的愛爾蘭增值稅。\",\"516oLj\":\"增值稅驗證服務暫時無法使用\",\"p6QQLa\":[\"VAT: \",[\"0\"]],\"5q87Y9\":\"VAT: not registered\",\"AdWhjZ\":\"驗證碼\",\"kUAumu\":\"Verification email sent. Check your inbox.\",\"QDEWii\":\"已驗證\",\"wCKkSr\":\"驗證電郵\",\"/IBv6X\":\"驗證您的電郵\",\"u8nB38\":\"Verify your email so attendees can receive tickets\",\"e/cvV1\":\"驗證緊...\",\"fROFIL\":\"越南語\",\"p5nYkr\":\"View All\",\"yA/6BX\":\"View all →\",\"6CQ7/B\":\"View all capabilities\",\"YSE15b\":\"View all check-in lists\",\"RnvnDc\":\"查看平台上發送的所有訊息\",\"+WFMis\":\"查看和下載所有活動的報告。僅包含已完成的訂單。\",\"c7VN/A\":\"查看答案\",\"SZw9tS\":\"查看詳情\",\"9+84uW\":[\"View details for \",[\"0\"],\" \",[\"1\"]],\"FCVmuU\":\"查看活動\",\"c6SXHN\":\"查看活動頁面\",\"n6EaWL\":\"查看日誌\",\"OaKTzt\":\"查看地圖\",\"zNZNMs\":\"查看訊息\",\"67OJ7t\":\"查看訂單\",\"tKKZn0\":\"查看訂單詳情\",\"KeCXJu\":\"查看訂單詳情、退款和重新傳送確認。\",\"9jnAcN\":\"查看主辦單位主頁\",\"1J/AWD\":\"查看門票\",\"N9FyyW\":\"查看、編輯和匯出您的已註冊參與者。\",\"6dp/Hz\":\"Vimeo\",\"SS4mGB\":\"VK\",\"uUehLT\":\"等待中\",\"quR8Qp\":\"等待付款\",\"KrurBH\":\"Waiting for scan…\",\"u0n+wz\":\"候補名單\",\"3RXFtE\":\"候補名單已啟用\",\"TwnTPy\":\"候補名單報價已過期\",\"aUi/Dz\":\"警告:這是系統預設配置。變更將影響所有未分配特定配置的帳戶。\",\"aT/44s\":\"We couldn't copy that Stripe connection. Please try again.\",\"RRZDED\":\"我們找不到與此郵箱關聯的訂單。\",\"2RZK9x\":\"我們找不到您要查找的訂單。連結可能已過期或訂單詳情可能已更改。\",\"nefMIK\":\"我們找不到您要查找的門票。連結可能已過期或門票詳情可能已更改。\",\"miysJh\":\"我們找不到此訂單。它可能已被刪除。\",\"Fjj/5/\":\"We couldn't load the check-in lists. Please try again.\",\"ADsQ23\":\"We couldn't reach Stripe just now. Please try again in a moment.\",\"HJKdzP\":\"載入此頁面時遇到問題。請重試。\",\"jegrvW\":\"We partner with Stripe to send payouts straight to your bank account.\",\"IfN2Qo\":\"我們建議使用最小尺寸為200x200像素的方形標誌\",\"wJzo/w\":\"我們建議尺寸為 400x400 像素,檔案大小不超過 5MB\",\"L/KlAh\":[\"We sent a verification link to \",[\"0\"]],\"KRCDqH\":\"我們使用 Cookie 來幫助我們了解網站的使用情況並改善您的體驗。\",\"x8rEDQ\":\"我們在多次嘗試後無法驗證您的增值稅號碼。我們將繼續在後台嘗試。請稍後再查看。\",\"mfM/HJ\":[\"如果\",[\"productDisplayName\"],\"在\",[\"occurrenceDate\"],\"有空位,我們將通過電郵通知您。\"],\"iy+M+c\":[\"如果\",[\"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\":\"我們將把您的門票發送到此郵箱\",\"ZOmUYW\":\"我們將在後台驗證您的增值稅號碼。如果有任何問題,我們會通知您。\",\"LKjHr4\":[\"We've made changes to the schedule for \\\"\",[\"title\"],\"\\\" — \",[\"description\"],\" affecting \",[\"affectedCount\"],\" session(s).\"],\"Fq/Nx7\":\"我哋已經將5位數驗證碼發送到:\",\"GdWB+V\":\"Webhook 創建成功\",\"2X4ecw\":\"Webhook 刪除成功\",\"ndBv0v\":\"Webhook integrations\",\"CThMKa\":\"Webhook 日誌\",\"I0adYQ\":\"Webhook 簽名密鑰\",\"nuh/Wq\":\"Webhook URL\",\"8BMPMe\":\"Webhook 不會發送通知\",\"FSaY52\":\"Webhook 將發送通知\",\"v1kQyJ\":\"Webhooks\",\"On0aF2\":\"網站\",\"0f7U0k\":\"Wed\",\"VAcXNz\":\"Wednesday\",\"64X6l4\":\"week\",\"4XSc4l\":\"Weekly\",\"IAUiSh\":\"weeks\",\"vKLEXy\":\"微博\",\"9eF5oV\":\"歡迎回來\",\"QDWsl9\":[\"歡迎嚟到 \",[\"0\"],\",\",[\"1\"],\" 👋\"],\"LETnBR\":[\"歡迎嚟到 \",[\"0\"],\",呢度係你所有活動嘅列表\"],\"DDbx7K\":\"Wellness\",\"ywRaYa\":\"What time?\",\"FaSXqR\":\"咩類型嘅活動?\",\"0WyYF4\":\"What unauthenticated staff can see\",\"2+ExvJ\":\"WhatsApp\",\"cxsKvw\":\"當簽到被刪除時\",\"RPe6bE\":\"When a date is cancelled on a recurring event\",\"Gmd0hv\":\"當新與會者被創建時\",\"zyIyPe\":\"當建立新活動時\",\"Lc18qn\":\"當新訂單被創建時\",\"dfkQIO\":\"當新產品被創建時\",\"8OhzyY\":\"當產品被刪除時\",\"tRXdQ9\":\"當產品被更新時\",\"9L9/28\":\"當產品售罄時,客戶可以加入候補名單,以便在有空位時收到通知。\",\"OIkHj+\":\"當產品售罄時,客戶可以加入候補名單,以便在有空位時收到通知。客戶加入的是特定日期的候補名單,名額也按日期提供。\",\"Q7CWxp\":\"當與會者被取消時\",\"IuUoyV\":\"當與會者簽到時\",\"nBVOd7\":\"當與會者被更新時\",\"t7cuMp\":\"當活動被歸檔時\",\"gtoSzE\":\"當活動被更新時\",\"ny2r8d\":\"當訂單被取消時\",\"c9RYbv\":\"當訂單被標記為已支付時\",\"ejMDw1\":\"當訂單被退款時\",\"fVPt0F\":\"當訂單被更新時\",\"bcYlvb\":\"簽到何時關閉\",\"XIG669\":\"簽到何時開放\",\"de6HLN\":\"當顧客購買門票時,他們的訂單將會顯示在這裡。\",\"pm9tpn\":\"啟用後,購買者可以一次過將自己的姓名和電郵複製給所有參加者。關閉此選項可移除「所有參加者」選項;購買者仍可複製給第一位參加者,其餘參加者須逐一填寫。\",\"403wpZ\":\"啟用後,新活動將允許參與者通過安全連結管理自己的門票詳情。這可以按活動覆蓋。\",\"blXLKj\":\"啟用後,新活動將在結帳時顯示營銷訂閱複選框。此設置可以針對每個活動單獨覆蓋。\",\"Kj0Txn\":\"啟用後,Stripe Connect交易將不收取應用費用。用於不支持應用費用的國家。\",\"uchB0M\":\"小工具預覽\",\"uvIqcj\":\"工作坊\",\"EpknJA\":\"請在此輸入您的訊息...\",\"nhtR6Y\":\"X(Twitter)\",\"7qI8sJ\":\"year\",\"zkWmBh\":\"Yearly\",\"+BGee5\":\"years\",\"X/azM1\":\"是 - 我有有效的歐盟增值稅註冊號碼\",\"Tz5oXG\":\"是,取消我的訂單\",\"QlSZU0\":[\"您正在模擬 <0>\",[\"0\"],\" (\",[\"1\"],\")\"],\"s14PLh\":[\"您正在發出部分退款。客戶將獲得 \",[\"0\"],\" \",[\"1\"],\" 的退款。\"],\"o7LgX6\":\"您可以在帳戶設置中配置額外的服務費和稅費。\",\"rj3A7+\":\"You can override this for individual dates later.\",\"paWwQ0\":\"如有需要,您仍然可以手動提供門票。\",\"jTDzpA\":\"您無法封存帳戶中最後一個活躍的主辦方。\",\"D8baxD\":\"您有付費門票,但尚未連接 Stripe,因此無法收款。\",\"5VGIlq\":\"您已達到訊息限制。\",\"casL1O\":\"您已向免費產品添加了税費。您想要刪除它們嗎?\",\"9jJNZY\":\"儲存前必須確認您的責任\",\"pCLes8\":\"您必須同意接收訊息\",\"FVTVBy\":\"在更新主辦單位狀態之前,您必須先驗證您的電郵地址。\",\"ze4bi/\":\"You need to create at least one occurrence before you can add attendees to this recurring event.\",\"w65ZgF\":\"您需要驗證您的帳戶電子郵件才能修改電子郵件範本。\",\"FRl8Jv\":\"您需要驗證您的帳户電子郵件才能發送消息。\",\"88cUW+\":\"您收到\",\"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\":[\"您將參加 \",[\"0\"],\"!\"],\"ZlLcht\":[\"您正在加入\",[\"occurrenceDate\"],\"的候補名單。\"],\"qGZz0m\":\"您已加入候補名單!\",\"/5HL6k\":\"您已獲得一個名額!\",\"gbjFFH\":\"You've changed the session time\",\"p/Sa0j\":\"您的帳戶有訊息限制。要提高您的限制,請聯繫我們\",\"x/xjzn\":\"你嘅推廣夥伴已經成功匯出。\",\"TF37u6\":\"您的與會者已成功導出。\",\"79lXGw\":\"您的簽到名單已成功建立。與您的簽到工作人員共享以下連結。\",\"BnlG9U\":\"您當前的訂單將丟失。\",\"nBqgQb\":\"您的電子郵件\",\"GG1fRP\":\"您的活動已上線!\",\"ifRqmm\":\"你嘅訊息已經成功發送!\",\"0/+Nn9\":\"您的訊息將顯示在此處\",\"/Rj5P4\":\"您的姓名\",\"PFjJxY\":\"您的新密碼必須至少為 8 個字元。\",\"gzrCuN\":\"您的訂單詳情已更新。確認電郵已發送到新的電郵地址。\",\"naQW82\":\"您的訂單已被取消。\",\"bhlHm/\":\"您的訂單正在等待付款\",\"XeNum6\":\"您的訂單已成功導出。\",\"Xd1R1a\":\"您主辦單位的地址\",\"WWYHKD\":\"您的付款受到銀行級加密保護\",\"5b3QLi\":\"您的計劃\",\"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\":\"您的門票已確認。\",\"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 549bf87d9d..884dc0a01c 100644 --- a/frontend/src/locales/zh-hk.po +++ b/frontend/src/locales/zh-hk.po @@ -179,11 +179,11 @@ msgstr "" msgid "{totalCount} ticket types" msgstr "{totalCount} 種門票類型" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:554 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:567 msgid "{totalOccurrences} dates" msgstr "" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:547 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:560 msgid "{totalOccurrences} sessions across {0} dates ({1, plural, one {# session} other {# sessions}} per day)" msgstr "" @@ -516,7 +516,7 @@ msgstr "活躍活動" msgid "Active payment methods" msgstr "" -#: src/components/routes/event/OccurrencesTab/index.tsx:400 +#: src/components/routes/event/OccurrencesTab/index.tsx:402 msgid "Activity" msgstr "" @@ -536,11 +536,11 @@ msgstr "" msgid "Add a description for this check-in list" msgstr "為此簽到列表添加描述" -#: src/components/routes/event/OccurrencesTab/index.tsx:538 +#: src/components/routes/event/OccurrencesTab/index.tsx:541 msgid "Add a Single Date" msgstr "" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:739 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:752 msgid "Add another time" msgstr "" @@ -560,7 +560,7 @@ msgstr "添加關於訂單的備註。這些信息不會對客户可見。" msgid "Add any notes about the order..." msgstr "添加關於訂單的備註..." -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:375 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:382 msgid "Add at least one time" msgstr "" @@ -580,7 +580,7 @@ msgstr "" msgid "Add dates" msgstr "新增日期" -#: src/components/routes/event/OccurrencesTab/index.tsx:524 +#: src/components/routes/event/OccurrencesTab/index.tsx:526 msgid "Add Dates" msgstr "" @@ -611,7 +611,7 @@ msgstr "添加線下支付的説明(例如,銀行轉賬詳情、支票寄送 msgid "Add Location" msgstr "新增地點" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:743 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:756 msgid "Add multiple times if you run several sessions per day." msgstr "" @@ -796,7 +796,7 @@ msgid "all" msgstr "" #: src/components/layouts/CheckIn/tabs/SearchTab.tsx:133 -#: src/components/routes/event/OccurrencesTab/index.tsx:485 +#: src/components/routes/event/OccurrencesTab/index.tsx:487 msgid "All" msgstr "" @@ -987,7 +987,7 @@ msgstr "出現意外錯誤。" msgid "An unexpected error occurred. Please try again." msgstr "出現意外錯誤。請重試。" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:849 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:862 msgid "and {0} more..." msgstr "" @@ -1003,7 +1003,7 @@ msgstr "" msgid "Answers provided at checkout (e.g. meal choice)" msgstr "" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:564 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:577 msgid "Any dates you've manually customized will be kept." msgstr "" @@ -1071,7 +1071,7 @@ msgstr "" msgid "Approve Message" msgstr "批准訊息" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:74 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:76 msgid "April" msgstr "" @@ -1127,7 +1127,7 @@ msgstr "您確定要封存此活動嗎?它將不再對公眾可見。" msgid "Are you sure you want to archive this organizer? This will also archive all events belonging to this organizer." msgstr "您確定要封存此主辦方嗎?這也將封存屬於此主辦方的所有活動。" -#: src/components/routes/event/OccurrencesTab/index.tsx:213 +#: src/components/routes/event/OccurrencesTab/index.tsx:215 msgid "Are you sure you want to cancel {count} date(s)? Affected attendees will be notified by email." msgstr "" @@ -1159,7 +1159,7 @@ msgstr "您確定要刪除此配置嗎?這可能會影響使用它的帳戶。 #: src/components/modals/ManageOccurrenceModal/index.tsx:58 #: src/components/routes/event/OccurrenceDetail/index.tsx:84 -#: src/components/routes/event/OccurrencesTab/index.tsx:182 +#: src/components/routes/event/OccurrencesTab/index.tsx:184 msgid "Are you sure you want to delete this date? This action cannot be undone." msgstr "" @@ -1446,7 +1446,7 @@ msgstr "歸因細分" msgid "Attribution Value" msgstr "歸因值" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:78 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:80 msgid "August" msgstr "" @@ -1625,7 +1625,7 @@ msgstr "巴西葡萄牙語" msgid "Built-in fraud protection" msgstr "" -#: src/components/routes/event/OccurrencesTab/index.tsx:515 +#: src/components/routes/event/OccurrencesTab/index.tsx:517 msgid "Bulk Edit" msgstr "" @@ -1674,11 +1674,11 @@ msgstr "通過添加追蹤像素,您確認您和本平台是所收集數據的 msgid "By continuing, you agree to the <0>{0} Terms of Service" msgstr "繼續即表示您同意 <0>{0} 服務條款" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:628 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:641 msgid "By day of month" msgstr "" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:629 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:642 msgid "By day of week" msgstr "" @@ -1698,7 +1698,7 @@ msgstr "繞過應用費用" msgid "Calculation Type" msgstr "計算類型" -#: src/components/routes/event/OccurrencesTab/index.tsx:471 +#: src/components/routes/event/OccurrencesTab/index.tsx:473 msgid "Calendar" msgstr "" @@ -1735,7 +1735,7 @@ msgstr "" #: src/components/modals/ManageOrderModal/index.tsx:209 #: src/components/modals/PublishEventModal/index.tsx:208 #: src/components/routes/event/messages.tsx:80 -#: src/components/routes/event/OccurrencesTab/index.tsx:497 +#: src/components/routes/event/OccurrencesTab/index.tsx:499 #: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:272 #: src/components/routes/event/OccurrencesTab/OccurrenceEditModal/index.tsx:306 #: src/components/routes/event/OccurrencesTab/OccurrenceMenu.tsx:61 @@ -1748,8 +1748,8 @@ msgstr "" msgid "Cancel" msgstr "取消" -#: src/components/routes/event/OccurrencesTab/index.tsx:209 -#: src/components/routes/event/OccurrencesTab/index.tsx:221 +#: src/components/routes/event/OccurrencesTab/index.tsx:211 +#: src/components/routes/event/OccurrencesTab/index.tsx:223 msgid "Cancel {count} date(s)" msgstr "" @@ -1809,7 +1809,7 @@ msgstr "取消將取消與此訂單關聯的所有參與者,並將門票釋放 msgid "Cancelled" msgstr "已取消" -#: src/components/routes/event/OccurrencesTab/index.tsx:235 +#: src/components/routes/event/OccurrencesTab/index.tsx:237 msgid "Cancelling {0} date(s). This may take a moment to complete." msgstr "" @@ -1819,7 +1819,7 @@ msgstr "無法刪除系統預設配置" #: src/components/forms/CapaciyAssigmentForm/index.tsx:42 #: src/components/routes/event/OccurrencesTab/OccurrenceEditModal/index.tsx:503 -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:811 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:824 msgid "Capacity" msgstr "容量" @@ -2154,7 +2154,7 @@ msgid "City" msgstr "城市" #: src/components/common/OccurrenceSelect/index.tsx:133 -#: src/components/routes/event/OccurrencesTab/index.tsx:503 +#: src/components/routes/event/OccurrencesTab/index.tsx:505 msgid "Clear" msgstr "" @@ -2174,7 +2174,7 @@ msgstr "清除搜索文本" msgid "Clearing removes any per-date override. Affected dates will fall back to the event's default location." msgstr "" -#: src/components/routes/event/OccurrencesTab/index.tsx:331 +#: src/components/routes/event/OccurrencesTab/index.tsx:333 msgid "Click to cancel" msgstr "" @@ -2182,7 +2182,7 @@ msgstr "" msgid "Click to copy" msgstr "點擊複製" -#: src/components/routes/event/OccurrencesTab/index.tsx:333 +#: src/components/routes/event/OccurrencesTab/index.tsx:335 msgid "Click to reopen for new sales" msgstr "" @@ -2743,7 +2743,7 @@ msgstr "建立{0}範本" msgid "Create a custom widget to sell tickets on your site." msgstr "建立自訂小工具以在您的網站上銷售門票。" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:785 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:798 msgid "Create a fixed number" msgstr "" @@ -2879,7 +2879,7 @@ msgstr "創建促銷代碼" msgid "Create Question" msgstr "創建問題" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:864 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:877 msgid "Create Schedule" msgstr "" @@ -2927,6 +2927,10 @@ msgstr "建立您自己的活動" msgid "Created" msgstr "已建立" +#: src/components/routes/event/OccurrencesTab/index.tsx:549 +msgid "Creating {0} dates. This may take a moment." +msgstr "正在建立 {0} 個日期。這可能需要一些時間。" + #: src/components/routes/welcome/index.tsx:472 msgid "Creating Event..." msgstr "建立緊活動..." @@ -3066,7 +3070,7 @@ msgstr "定製您的活動頁面" msgid "Customize your organizer page appearance" msgstr "自訂主辦單位頁面外觀" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:56 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:58 #: src/components/routes/product-widget/OccurrenceSelector/index.tsx:32 msgid "Daily" msgstr "" @@ -3155,7 +3159,7 @@ msgstr "" #: src/components/modals/ManageOccurrenceModal/index.tsx:61 #: src/components/routes/event/OccurrenceDetail/index.tsx:87 -#: src/components/routes/event/OccurrencesTab/index.tsx:184 +#: src/components/routes/event/OccurrencesTab/index.tsx:186 msgid "Date deleted" msgstr "" @@ -3168,7 +3172,7 @@ msgstr "" msgid "Date reactivated" msgstr "" -#: src/components/routes/event/OccurrencesTab/index.tsx:198 +#: src/components/routes/event/OccurrencesTab/index.tsx:200 msgid "Date reopened for new sales" msgstr "" @@ -3184,15 +3188,15 @@ msgstr "" msgid "Dates with sessions" msgstr "" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:93 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:95 msgid "day" msgstr "" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:659 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:672 msgid "Day" msgstr "" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:676 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:689 msgid "Day of Month" msgstr "" @@ -3200,19 +3204,19 @@ msgstr "" msgid "Day one capacity" msgstr "第一天容量" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:101 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:103 msgid "days" msgstr "" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:635 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:648 msgid "Days of Month" msgstr "" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:605 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:618 msgid "Days of Week" msgstr "" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:82 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:84 msgid "December" msgstr "" @@ -3230,7 +3234,7 @@ msgstr "預設" msgid "Default attendee information collection" msgstr "預設參加者資料收集" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:815 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:828 msgid "Default capacity per date" msgstr "" @@ -3253,7 +3257,7 @@ msgstr "刪除" #: src/components/common/QuestionsTable/index.tsx:150 #: src/components/common/TaxAndFeeList/index.tsx:81 #: src/components/routes/admin/FailedJobs/index.tsx:209 -#: src/components/routes/event/OccurrencesTab/index.tsx:500 +#: src/components/routes/event/OccurrencesTab/index.tsx:502 #: src/components/routes/event/OccurrencesTab/OccurrenceMenu.tsx:62 msgid "Delete" msgstr "刪除" @@ -3262,7 +3266,7 @@ msgstr "刪除" msgid "Delete \"{0}\"?" msgstr "刪除\"{0}\"?" -#: src/components/routes/event/OccurrencesTab/index.tsx:247 +#: src/components/routes/event/OccurrencesTab/index.tsx:249 msgid "Delete {count} selected date(s)? Dates with orders will be skipped. This cannot be undone." msgstr "" @@ -3344,7 +3348,7 @@ msgstr "刪除此問題?此操作無法復原。" msgid "Delete webhook" msgstr "刪除 Webhook" -#: src/components/routes/event/OccurrencesTab/index.tsx:253 +#: src/components/routes/event/OccurrencesTab/index.tsx:255 msgid "Deleted {0} date(s)" msgstr "" @@ -3565,7 +3569,7 @@ msgstr "例如 180(3小時)" #: src/components/routes/event/OccurrencesTab/OccurrenceBulkEditModal/index.tsx:452 #: src/components/routes/event/OccurrencesTab/OccurrenceEditModal/index.tsx:450 -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:714 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:727 msgid "e.g. Morning Session" msgstr "" @@ -3724,7 +3728,7 @@ msgstr "編輯 Webhook" msgid "Edit Webhook" msgstr "編輯 Webhook" -#: src/components/routes/event/OccurrencesTab/index.tsx:306 +#: src/components/routes/event/OccurrencesTab/index.tsx:308 msgid "Edited" msgstr "" @@ -3913,7 +3917,7 @@ msgstr "啟用候補名單" msgid "Enabled" msgstr "已啟用" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:704 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:717 msgid "End" msgstr "" @@ -3934,7 +3938,7 @@ msgstr "結束日期與時間(可選)" msgid "End date must be after start date" msgstr "結束日期必須在開始日期之後" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:771 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:784 msgid "End on a date" msgstr "" @@ -4409,7 +4413,7 @@ msgstr "取消與會者失敗" msgid "Failed to cancel date" msgstr "" -#: src/components/routes/event/OccurrencesTab/index.tsx:239 +#: src/components/routes/event/OccurrencesTab/index.tsx:241 msgid "Failed to cancel dates" msgstr "" @@ -4429,10 +4433,14 @@ msgstr "建立推廣夥伴失敗" msgid "Failed to create configuration" msgstr "建立配置失敗" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:530 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:543 msgid "Failed to create schedule" msgstr "" +#: src/hooks/useOccurrenceGenerationPolling.ts:44 +msgid "Failed to create schedule. Please try again." +msgstr "建立日程失敗。請重試。" + #: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:192 #: src/components/common/EmailTemplateSettings/EmailTemplateSettingsBase.tsx:195 msgid "Failed to create template" @@ -4444,7 +4452,7 @@ msgstr "刪除配置失敗" #: src/components/modals/ManageOccurrenceModal/index.tsx:64 #: src/components/routes/event/OccurrenceDetail/index.tsx:90 -#: src/components/routes/event/OccurrencesTab/index.tsx:185 +#: src/components/routes/event/OccurrencesTab/index.tsx:187 msgid "Failed to delete date" msgstr "" @@ -4452,7 +4460,7 @@ msgstr "" msgid "Failed to delete date. It may have existing orders." msgstr "" -#: src/components/routes/event/OccurrencesTab/index.tsx:256 +#: src/components/routes/event/OccurrencesTab/index.tsx:258 msgid "Failed to delete dates" msgstr "" @@ -4540,7 +4548,7 @@ msgstr "從候補名單中移除失敗" msgid "Failed to remove override" msgstr "" -#: src/components/routes/event/OccurrencesTab/index.tsx:199 +#: src/components/routes/event/OccurrencesTab/index.tsx:201 msgid "Failed to reopen date" msgstr "" @@ -4677,7 +4685,7 @@ msgstr "" msgid "Fast payouts to your bank" msgstr "" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:72 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:74 msgid "February" msgstr "" @@ -4769,7 +4777,7 @@ msgstr "" msgid "Finish setup" msgstr "" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:63 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:65 msgid "First" msgstr "" @@ -4882,7 +4890,7 @@ msgstr "頁腳文字" msgid "Forgot password?" msgstr "忘記密碼?" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:66 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:68 msgid "Fourth" msgstr "" @@ -4909,11 +4917,11 @@ msgstr "免費產品,無需付款信息" msgid "French" msgstr "法語" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:586 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:599 msgid "Frequency" msgstr "" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:50 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:52 msgid "Fri" msgstr "" @@ -5004,7 +5012,7 @@ msgstr "GitHub" #: src/components/routes/event/OccurrenceDetail/index.tsx:72 #: src/components/routes/event/OccurrencesTab/cancelOccurrenceDialog.tsx:49 -#: src/components/routes/event/OccurrencesTab/index.tsx:221 +#: src/components/routes/event/OccurrencesTab/index.tsx:223 #: src/components/routes/event/OccurrencesTab/OccurrenceEditModal/index.tsx:339 #: src/components/routes/event/OccurrencesTab/OccurrenceEditModal/index.tsx:363 msgid "Go Back" @@ -5271,7 +5279,7 @@ msgstr "折扣如何應用?" msgid "How long a customer has to complete their purchase after receiving an offer. Leave empty for no timeout." msgstr "客戶收到報價後完成購買的時限。留空表示無時間限制。" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:750 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:763 msgid "How long does the schedule run?" msgstr "" @@ -5283,7 +5291,7 @@ msgstr "客户有多少分鐘來完成訂單。我們建議至少 15 分鐘" msgid "How many times can this code be used?" msgstr "這個代碼可以使用多少次?" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:581 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:594 msgid "How often?" msgstr "" @@ -5589,7 +5597,7 @@ msgstr "項目" msgid "Items" msgstr "項目" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:71 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:73 msgid "January" msgstr "" @@ -5640,11 +5648,11 @@ msgstr "加入{productDisplayName}的候補名單" msgid "Joined" msgstr "已加入" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:77 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:79 msgid "July" msgstr "" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:76 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:78 msgid "June" msgstr "" @@ -5670,7 +5678,7 @@ msgstr "" #: src/components/forms/ProductForm/index.tsx:108 #: src/components/routes/event/OccurrencesTab/OccurrenceEditModal/index.tsx:449 -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:711 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:724 #: src/components/routes/event/Reports/OccurrenceSummaryReport/index.tsx:45 msgid "Label" msgstr "標籤" @@ -5685,7 +5693,7 @@ msgstr "" msgid "Language" msgstr "語言" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:67 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:69 msgid "Last" msgstr "" @@ -5794,7 +5802,7 @@ msgid "Leave blank to use the default word \"Invoice\"" msgstr "留空以使用默認詞“發票”" #: src/components/routes/event/OccurrencesTab/OccurrenceEditModal/index.tsx:507 -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:816 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:829 msgid "Leave empty for unlimited" msgstr "" @@ -5834,7 +5842,7 @@ msgstr "LinkedIn" msgid "Links Allowed" msgstr "允許連結" -#: src/components/routes/event/OccurrencesTab/index.tsx:470 +#: src/components/routes/event/OccurrencesTab/index.tsx:472 msgid "List" msgstr "" @@ -6003,7 +6011,7 @@ msgstr "" msgid "Manage attendee" msgstr "管理與會者" -#: src/components/routes/event/OccurrencesTab/index.tsx:460 +#: src/components/routes/event/OccurrencesTab/index.tsx:462 msgid "Manage dates and times for your recurring event" msgstr "" @@ -6074,7 +6082,7 @@ msgstr "手動添加與會者" msgid "Manually Add Attendee" msgstr "手動添加與會者" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:73 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:75 msgid "March" msgstr "" @@ -6098,7 +6106,7 @@ msgstr "最大收件人數 / 訊息" msgid "Maximum Per Order" msgstr "每份訂單的最高限額" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:75 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:77 msgid "May" msgstr "" @@ -6214,7 +6222,7 @@ msgstr "雜項設置" msgid "Mode" msgstr "" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:46 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:48 msgid "Mon" msgstr "" @@ -6230,24 +6238,24 @@ msgstr "貨幣金額是所有貨幣的大致總和" msgid "Monitor and manage failed background jobs" msgstr "監控和管理失敗的後台任務" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:95 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:97 msgid "month" msgstr "" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:671 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:684 msgid "Month" msgstr "月" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:58 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:60 #: src/components/routes/product-widget/OccurrenceSelector/index.tsx:41 msgid "Monthly" msgstr "" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:624 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:637 msgid "Monthly Pattern" msgstr "" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:103 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:105 msgid "months" msgstr "" @@ -6516,7 +6524,7 @@ msgstr "" msgid "No dates match the current filters." msgstr "" -#: src/components/routes/event/OccurrencesTab/index.tsx:570 +#: src/components/routes/event/OccurrencesTab/index.tsx:580 msgid "No dates match your filters" msgstr "" @@ -6529,7 +6537,7 @@ msgstr "" msgid "No dates scheduled" msgstr "未安排日期" -#: src/components/routes/event/OccurrencesTab/index.tsx:570 +#: src/components/routes/event/OccurrencesTab/index.tsx:580 msgid "No dates scheduled yet" msgstr "" @@ -6820,11 +6828,11 @@ msgstr "" msgid "Notify organizer of new orders" msgstr "將新訂單通知組織者" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:81 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:83 msgid "November" msgstr "" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:800 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:813 msgid "Number of dates to create" msgstr "" @@ -6849,7 +6857,7 @@ msgid "Occurrence Cancelled" msgstr "" #: src/components/layouts/Event/index.tsx:113 -#: src/components/routes/event/OccurrencesTab/index.tsx:461 +#: src/components/routes/event/OccurrencesTab/index.tsx:463 msgid "Occurrence Schedule" msgstr "" @@ -6871,7 +6879,7 @@ msgstr "" msgid "Occurrences can be configured after creation" msgstr "" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:80 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:82 msgid "October" msgstr "" @@ -6965,7 +6973,7 @@ msgstr "持續進行" #: src/components/common/EventCard/index.tsx:103 #: src/components/layouts/OrganizerHomepage/EventCard/index.tsx:49 -#: src/components/routes/event/OccurrencesTab/index.tsx:316 +#: src/components/routes/event/OccurrencesTab/index.tsx:318 #: src/components/routes/event/OccurrencesTab/OccurrenceEditModal/index.tsx:473 #: src/components/routes/my-tickets/index.tsx:56 #: src/components/routes/product-widget/OccurrenceSelector/index.tsx:122 @@ -7080,7 +7088,7 @@ msgstr "選項" msgid "or" msgstr "或" -#: src/components/routes/event/OccurrencesTab/index.tsx:593 +#: src/components/routes/event/OccurrencesTab/index.tsx:603 msgid "or add a single date" msgstr "" @@ -7088,7 +7096,7 @@ msgstr "" msgid "Or enable offline payments and disable Stripe" msgstr "或啟用線下付款並停用 Stripe" -#: src/components/routes/event/OccurrencesTab/index.tsx:413 +#: src/components/routes/event/OccurrencesTab/index.tsx:415 msgid "order" msgstr "" @@ -7250,7 +7258,7 @@ msgstr "訂單更新成功" msgid "Order was cancelled" msgstr "訂單已被取消" -#: src/components/routes/event/OccurrencesTab/index.tsx:413 +#: src/components/routes/event/OccurrencesTab/index.tsx:415 #: src/components/routes/event/orders.tsx:197 msgid "orders" msgstr "" @@ -7503,7 +7511,7 @@ msgid "Passwords are not the same" msgstr "密碼不一樣" #: src/components/layouts/OrganizerHomepage/index.tsx:291 -#: src/components/routes/event/OccurrencesTab/index.tsx:484 +#: src/components/routes/event/OccurrencesTab/index.tsx:486 #: src/components/routes/organizer/Reports/EventsPerformanceReport/index.tsx:30 msgid "Past" msgstr "過去" @@ -7707,15 +7715,15 @@ msgstr "個人資料" msgid "Phone" msgstr "電話" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:372 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:379 msgid "Pick an end date" msgstr "" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:380 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:387 msgid "Pick at least one day of the month" msgstr "" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:369 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:376 msgid "Pick at least one day of the week" msgstr "" @@ -7765,7 +7773,7 @@ msgstr "平台收入" msgid "Please add at least one option" msgstr "請至少添加一個選項" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:527 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:540 #: src/hooks/useFormErrorResponseHandler.tsx:18 msgid "Please check the provided information is correct" msgstr "請檢查所提供的信息是否正確" @@ -7895,7 +7903,7 @@ msgstr "熱門活動(過去14天)" msgid "Portuguese" msgstr "葡萄牙語" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:654 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:667 msgid "Position" msgstr "" @@ -8385,7 +8393,7 @@ msgstr "推薦帳戶" msgid "Refresh Preview" msgstr "刷新預覽" -#: src/components/routes/event/OccurrencesTab/index.tsx:216 +#: src/components/routes/event/OccurrencesTab/index.tsx:218 msgid "Refund all orders for these dates" msgstr "" @@ -8494,11 +8502,11 @@ msgstr "從活動頁面完全移除已售罄的日期和時間。停用時,它 msgid "Reopen for new sales" msgstr "" -#: src/components/routes/event/OccurrencesTab/index.tsx:192 +#: src/components/routes/event/OccurrencesTab/index.tsx:194 msgid "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." msgstr "" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:591 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:604 msgid "Repeat every" msgstr "" @@ -8699,7 +8707,7 @@ msgstr "撤銷報價" msgid "Role" msgstr "角色" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:772 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:785 msgid "Run until a specific date" msgstr "" @@ -8786,7 +8794,7 @@ msgstr "示例票價" msgid "Sample Venue" msgstr "示例場地" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:51 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:53 msgid "Sat" msgstr "" @@ -8836,7 +8844,7 @@ msgstr "" msgid "Save Organizer" msgstr "保存組織器" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:864 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:877 msgid "Save Schedule" msgstr "" @@ -8900,11 +8908,12 @@ msgstr "" msgid "Schedule added" msgstr "" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:520 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:530 +#: src/hooks/useOccurrenceGenerationPolling.ts:36 msgid "Schedule created successfully" msgstr "" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:793 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:806 msgid "Schedule ends on" msgstr "" @@ -8916,7 +8925,7 @@ msgstr "稍後發送" msgid "Schedule Message" msgstr "排程訊息" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:755 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:768 msgid "Schedule starts on" msgstr "" @@ -9039,7 +9048,7 @@ msgstr "搜索..." msgid "Seasonal" msgstr "" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:64 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:66 msgid "Second" msgstr "" @@ -9215,7 +9224,7 @@ msgstr "選擇哪些事件將觸發此 Webhook" msgid "Select..." msgstr "選擇..." -#: src/components/routes/event/OccurrencesTab/index.tsx:495 +#: src/components/routes/event/OccurrencesTab/index.tsx:497 msgid "selected" msgstr "" @@ -9345,7 +9354,7 @@ msgstr "搜索引擎優化設置" msgid "SEO Title" msgstr "搜索引擎優化標題" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:79 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:81 msgid "September" msgstr "" @@ -9373,7 +9382,7 @@ msgstr "為此主辦單位下創建的新活動設定預設設定。" msgid "Set how long each date lasts" msgstr "" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:784 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:797 msgid "Set number of dates" msgstr "" @@ -9393,7 +9402,7 @@ msgstr "設置發票編號的起始編號。一旦發票生成,就無法更改 msgid "Set to unlimited (remove limit)" msgstr "" -#: src/components/routes/event/OccurrencesTab/index.tsx:575 +#: src/components/routes/event/OccurrencesTab/index.tsx:585 msgid "Set up a recurring schedule to automatically create dates, or add them one at a time." msgstr "" @@ -9410,8 +9419,8 @@ msgstr "" msgid "Set up schedule" msgstr "" -#: src/components/routes/event/OccurrencesTab/index.tsx:532 -#: src/components/routes/event/OccurrencesTab/index.tsx:586 +#: src/components/routes/event/OccurrencesTab/index.tsx:535 +#: src/components/routes/event/OccurrencesTab/index.tsx:596 msgid "Set Up Schedule" msgstr "" @@ -9427,7 +9436,7 @@ msgstr "設定你嘅機構" msgid "Set up your schedule" msgstr "" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:569 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:582 msgid "Set Up Your Schedule" msgstr "" @@ -9564,7 +9573,7 @@ msgstr "單獨顯示税費" msgid "Showing {0} of {totalRows} records" msgstr "顯示 {0} / {totalRows} 條記錄" -#: src/components/routes/event/OccurrencesTab/index.tsx:614 +#: src/components/routes/event/OccurrencesTab/index.tsx:624 msgid "Showing {0}–{1} of {2}" msgstr "" @@ -9645,7 +9654,7 @@ msgstr "社交連結與網站" #: src/components/common/ProductsTable/SortableProduct/index.tsx:387 #: src/components/modals/ManageOccurrenceModal/index.tsx:186 -#: src/components/routes/event/OccurrencesTab/index.tsx:369 +#: src/components/routes/event/OccurrencesTab/index.tsx:371 msgid "Sold" msgstr "已售出" @@ -9753,7 +9762,7 @@ msgstr "" msgid "Standard product with a fixed price" msgstr "固定價格的標準產品" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:696 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:709 msgid "Start" msgstr "" @@ -9846,7 +9855,7 @@ msgstr "" #: src/components/routes/admin/Messages/index.tsx:120 #: src/components/routes/admin/Messages/index.tsx:167 #: src/components/routes/admin/Messages/index.tsx:294 -#: src/components/routes/event/OccurrencesTab/index.tsx:326 +#: src/components/routes/event/OccurrencesTab/index.tsx:328 #: src/components/routes/event/Reports/OccurrenceSummaryReport/index.tsx:51 #: src/components/routes/event/Reports/PromoCodesReport/index.tsx:88 #: src/components/routes/organizer/Reports/EventsPerformanceReport/index.tsx:62 @@ -10104,7 +10113,7 @@ msgstr "夏日音樂節 {0}" msgid "Summer Music Festival 2025" msgstr "2025夏季音樂節" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:52 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:54 msgid "Sun" msgstr "" @@ -10231,7 +10240,7 @@ msgstr "請告訴我們您的活動" msgid "Tell us about your organization. This information will be displayed on your event pages." msgstr "話俾我哋知你嘅機構資料。呢啲資料會顯示喺你嘅活動頁面。" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:573 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:586 msgid "Tell us how often your event repeats and we'll create all the dates for you." msgstr "" @@ -10325,7 +10334,7 @@ msgstr "電郵地址已更改。參與者將在更新後的電郵地址收到新 msgid "The event you're looking for is not available at the moment. It may have been removed, expired, or the URL might be incorrect." msgstr "您查找的活動目前不可用。它可能已被刪除、過期或 URL 不正確。" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:756 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:769 msgid "The first date this schedule will generate from." msgstr "" @@ -10345,7 +10354,7 @@ msgstr "您嘗試存取的連結已過期或不再有效。請檢查您的電郵 msgid "The link you clicked is invalid." msgstr "您點擊的鏈接無效。" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:840 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:853 msgid "The maximum is {MAX_PREVIEW} sessions. Please reduce the date range, frequency, or number of sessions per day." msgstr "" @@ -10481,7 +10490,7 @@ msgstr "這些範本將用作您組織中所有活動的預設範本。單個活 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 "這些範本將僅覆蓋此活動的組織者預設設置。如果這裏沒有設置自定義範本,將使用組織者範本。" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:65 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:67 msgid "Third" msgstr "" @@ -10744,7 +10753,7 @@ msgstr "呢個唔會俾客戶睇到,但可以幫你識別推廣夥伴。" msgid "Throughput" msgstr "" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:49 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:51 msgid "Thu" msgstr "" @@ -10881,7 +10890,7 @@ msgstr "分層產品允許您為同一產品提供多種價格選項。這非常 msgid "TikTok" msgstr "TikTok" -#: src/components/routes/event/OccurrencesTab/index.tsx:290 +#: src/components/routes/event/OccurrencesTab/index.tsx:292 msgid "Time" msgstr "" @@ -10912,7 +10921,7 @@ msgstr "使用次數" msgid "Timezone" msgstr "時區" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:702 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:715 msgid "to" msgstr "" @@ -11056,7 +11065,7 @@ msgstr "追蹤與分析" msgid "Try a different search term or filter" msgstr "" -#: src/components/routes/event/OccurrencesTab/index.tsx:574 +#: src/components/routes/event/OccurrencesTab/index.tsx:584 msgid "Try adjusting your filters to see more dates." msgstr "" @@ -11069,7 +11078,7 @@ msgstr "嘗試其他郵箱" msgid "Try Hi.Events Free" msgstr "免費試用Hi.Events" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:47 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:49 msgid "Tue" msgstr "" @@ -11232,7 +11241,7 @@ msgstr "不受信任" #: src/components/common/EventsDashboardStatusButtons/index.tsx:20 #: src/components/common/EventStatusBadge/index.tsx:16 #: src/components/layouts/OrganizerHomepage/index.tsx:285 -#: src/components/routes/event/OccurrencesTab/index.tsx:483 +#: src/components/routes/event/OccurrencesTab/index.tsx:485 #: src/components/routes/organizer/Reports/EventsPerformanceReport/index.tsx:33 msgid "Upcoming" msgstr "即將推出" @@ -11880,7 +11889,7 @@ msgstr "Webhooks" msgid "Website" msgstr "網站" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:48 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:50 msgid "Wed" msgstr "" @@ -11888,16 +11897,16 @@ msgstr "" msgid "Wednesday" msgstr "" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:94 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:96 msgid "week" msgstr "" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:57 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:59 #: src/components/routes/product-widget/OccurrenceSelector/index.tsx:35 msgid "Weekly" msgstr "" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:102 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:104 msgid "weeks" msgstr "" @@ -11953,7 +11962,7 @@ msgstr "此容量應適用於哪些產品?" msgid "What time will you be arriving?" msgstr "您什麼時候抵達?" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:688 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:701 msgid "What time?" msgstr "" @@ -12140,7 +12149,7 @@ msgstr "請在此輸入您的訊息..." msgid "X (Twitter)" msgstr "X(Twitter)" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:96 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:98 msgid "year" msgstr "" @@ -12150,12 +12159,12 @@ msgstr "" msgid "Year to date" msgstr "年度至今" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:59 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:61 #: src/components/routes/product-widget/OccurrenceSelector/index.tsx:43 msgid "Yearly" msgstr "" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:104 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:106 msgid "years" msgstr "" @@ -12200,7 +12209,7 @@ msgstr "您可以在帳戶設置中配置額外的服務費和稅費。" msgid "You can create a promo code which targets this product on the" msgstr "您可以創建一個促銷代碼,針對該產品" -#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:823 +#: src/components/routes/event/OccurrencesTab/RecurrenceScheduleModal/index.tsx:836 msgid "You can override this for individual dates later." msgstr "" diff --git a/frontend/src/mutations/useGenerateOccurrences.ts b/frontend/src/mutations/useGenerateOccurrences.ts index 6101d597e3..3091d4c2d0 100644 --- a/frontend/src/mutations/useGenerateOccurrences.ts +++ b/frontend/src/mutations/useGenerateOccurrences.ts @@ -1,21 +1,12 @@ -import {useMutation, useQueryClient} from "@tanstack/react-query"; +import {useMutation} from "@tanstack/react-query"; import {GenerateOccurrencesRequest, IdParam} from "../types.ts"; -import {GET_EVENT_OCCURRENCES_QUERY_KEY} from "../queries/useGetEventOccurrences.ts"; -import {GET_EVENT_QUERY_KEY} from "../queries/useGetEvent.ts"; import {eventOccurrenceClient} from "../api/event-occurrence.client.ts"; export const useGenerateOccurrences = () => { - const queryClient = useQueryClient(); - return useMutation({ mutationFn: ({eventId, data}: { eventId: IdParam, data: GenerateOccurrencesRequest, }) => eventOccurrenceClient.generate(eventId, data), - - onSuccess: (_, {eventId}) => Promise.all([ - queryClient.invalidateQueries({queryKey: [GET_EVENT_OCCURRENCES_QUERY_KEY]}), - queryClient.invalidateQueries({queryKey: [GET_EVENT_QUERY_KEY, eventId]}), - ]), }); }; diff --git a/frontend/src/types.ts b/frontend/src/types.ts index 429b834e81..76d075b6e2 100644 --- a/frontend/src/types.ts +++ b/frontend/src/types.ts @@ -487,6 +487,12 @@ export interface GenerateOccurrencesRequest { recurrence_rule: RecurrenceRule; } +export interface OccurrenceGenerationStatus { + status: 'IN_PROGRESS' | 'FINISHED' | 'FAILED' | 'NOT_FOUND'; + job_uuid?: string; + message?: string; +} + export interface BulkUpdateOccurrencesRequest { action: 'update' | 'cancel' | 'delete'; start_time_shift?: number;