diff --git a/backend/app/DomainObjects/Generated/AttendeeDomainObjectAbstract.php b/backend/app/DomainObjects/Generated/AttendeeDomainObjectAbstract.php
index 23f6f105..59b052de 100644
--- a/backend/app/DomainObjects/Generated/AttendeeDomainObjectAbstract.php
+++ b/backend/app/DomainObjects/Generated/AttendeeDomainObjectAbstract.php
@@ -27,6 +27,7 @@ abstract class AttendeeDomainObjectAbstract extends \HiEvents\DomainObjects\Abst
final public const CREATED_AT = 'created_at';
final public const UPDATED_AT = 'updated_at';
final public const DELETED_AT = 'deleted_at';
+ final public const LOCALE = 'locale';
protected int $id;
protected int $order_id;
@@ -45,6 +46,7 @@ abstract class AttendeeDomainObjectAbstract extends \HiEvents\DomainObjects\Abst
protected string $created_at;
protected string $updated_at;
protected ?string $deleted_at = null;
+ protected string $locale = 'en';
public function toArray(): array
{
@@ -66,6 +68,7 @@ public function toArray(): array
'created_at' => $this->created_at ?? null,
'updated_at' => $this->updated_at ?? null,
'deleted_at' => $this->deleted_at ?? null,
+ 'locale' => $this->locale ?? null,
];
}
@@ -255,4 +258,15 @@ public function getDeletedAt(): ?string
{
return $this->deleted_at;
}
+
+ public function setLocale(string $locale): self
+ {
+ $this->locale = $locale;
+ return $this;
+ }
+
+ public function getLocale(): string
+ {
+ return $this->locale;
+ }
}
diff --git a/backend/app/DomainObjects/Generated/OrderDomainObjectAbstract.php b/backend/app/DomainObjects/Generated/OrderDomainObjectAbstract.php
index 00c4f280..939ca2cd 100644
--- a/backend/app/DomainObjects/Generated/OrderDomainObjectAbstract.php
+++ b/backend/app/DomainObjects/Generated/OrderDomainObjectAbstract.php
@@ -38,6 +38,7 @@ abstract class OrderDomainObjectAbstract extends \HiEvents\DomainObjects\Abstrac
final public const TAXES_AND_FEES_ROLLUP = 'taxes_and_fees_rollup';
final public const TOTAL_TAX = 'total_tax';
final public const TOTAL_FEE = 'total_fee';
+ final public const LOCALE = 'locale';
protected int $id;
protected int $event_id;
@@ -67,6 +68,7 @@ abstract class OrderDomainObjectAbstract extends \HiEvents\DomainObjects\Abstrac
protected array|string|null $taxes_and_fees_rollup = null;
protected float $total_tax = 0.0;
protected float $total_fee = 0.0;
+ protected string $locale = 'en';
public function toArray(): array
{
@@ -99,6 +101,7 @@ public function toArray(): array
'taxes_and_fees_rollup' => $this->taxes_and_fees_rollup ?? null,
'total_tax' => $this->total_tax ?? null,
'total_fee' => $this->total_fee ?? null,
+ 'locale' => $this->locale ?? null,
];
}
@@ -409,4 +412,15 @@ public function getTotalFee(): float
{
return $this->total_fee;
}
+
+ public function setLocale(string $locale): self
+ {
+ $this->locale = $locale;
+ return $this;
+ }
+
+ public function getLocale(): string
+ {
+ return $this->locale;
+ }
}
diff --git a/backend/app/DomainObjects/Generated/UserDomainObjectAbstract.php b/backend/app/DomainObjects/Generated/UserDomainObjectAbstract.php
index fdedf0a6..4751d979 100644
--- a/backend/app/DomainObjects/Generated/UserDomainObjectAbstract.php
+++ b/backend/app/DomainObjects/Generated/UserDomainObjectAbstract.php
@@ -22,6 +22,7 @@ abstract class UserDomainObjectAbstract extends \HiEvents\DomainObjects\Abstract
final public const LAST_NAME = 'last_name';
final public const PENDING_EMAIL = 'pending_email';
final public const TIMEZONE = 'timezone';
+ final public const LOCALE = 'locale';
protected int $id;
protected string $email;
@@ -35,6 +36,7 @@ abstract class UserDomainObjectAbstract extends \HiEvents\DomainObjects\Abstract
protected ?string $last_name = null;
protected ?string $pending_email = null;
protected string $timezone;
+ protected string $locale = 'en';
public function toArray(): array
{
@@ -51,6 +53,7 @@ public function toArray(): array
'last_name' => $this->last_name ?? null,
'pending_email' => $this->pending_email ?? null,
'timezone' => $this->timezone ?? null,
+ 'locale' => $this->locale ?? null,
];
}
@@ -185,4 +188,15 @@ public function getTimezone(): string
{
return $this->timezone;
}
+
+ public function setLocale(string $locale): self
+ {
+ $this->locale = $locale;
+ return $this;
+ }
+
+ public function getLocale(): string
+ {
+ return $this->locale;
+ }
}
diff --git a/backend/app/Http/Actions/Accounts/CreateAccountAction.php b/backend/app/Http/Actions/Accounts/CreateAccountAction.php
index 54a868bd..97e60e91 100644
--- a/backend/app/Http/Actions/Accounts/CreateAccountAction.php
+++ b/backend/app/Http/Actions/Accounts/CreateAccountAction.php
@@ -10,6 +10,7 @@
use HiEvents\Http\Request\Account\CreateAccountRequest;
use HiEvents\Http\ResponseCodes;
use HiEvents\Resources\Account\AccountResource;
+use HiEvents\Services\Application\Locale\LocaleService;
use HiEvents\Services\Handlers\Account\CreateAccountHandler;
use HiEvents\Services\Handlers\Account\DTO\CreateAccountDTO;
use HiEvents\Services\Handlers\Account\Exceptions\AccountRegistrationDisabledException;
@@ -24,6 +25,7 @@ class CreateAccountAction extends BaseAuthAction
public function __construct(
private readonly CreateAccountHandler $createAccountHandler,
private readonly LoginHandler $loginHandler,
+ private readonly LocaleService $localeService,
)
{
}
@@ -42,7 +44,7 @@ public function __invoke(CreateAccountRequest $request): JsonResponse
'password' => $request->validated('password'),
'timezone' => $request->validated('timezone'),
'currency_code' => $request->validated('currency_code'),
- 'locale' => $request->getPreferredLanguage(),
+ 'locale' => $this->localeService->getLocaleOrDefault($request->getPreferredLanguage()),
]));
} catch (EmailAlreadyExists $e) {
throw ValidationException::withMessages([
diff --git a/backend/app/Http/Actions/Orders/CreateOrderActionPublic.php b/backend/app/Http/Actions/Orders/CreateOrderActionPublic.php
index 61cdaaee..9c1ee8d7 100644
--- a/backend/app/Http/Actions/Orders/CreateOrderActionPublic.php
+++ b/backend/app/Http/Actions/Orders/CreateOrderActionPublic.php
@@ -8,6 +8,7 @@
use HiEvents\Http\Request\Order\CreateOrderRequest;
use HiEvents\Http\ResponseCodes;
use HiEvents\Resources\Order\OrderResourcePublic;
+use HiEvents\Services\Application\Locale\LocaleService;
use HiEvents\Services\Domain\Order\OrderCreateRequestValidationService;
use HiEvents\Services\Handlers\Order\CreateOrderHandler;
use HiEvents\Services\Handlers\Order\DTO\CreateOrderPublicDTO;
@@ -22,6 +23,7 @@ public function __construct(
private readonly CreateOrderHandler $orderHandler,
private readonly OrderCreateRequestValidationService $orderCreateRequestValidationService,
private readonly CheckoutSessionManagementService $sessionIdentifierService,
+ private readonly LocaleService $localeService,
)
{
@@ -41,6 +43,7 @@ public function __invoke(CreateOrderRequest $request, int $eventId): JsonRespons
'promo_code' => $request->input('promo_code'),
'tickets' => TicketOrderDetailsDTO::collectionFromArray($request->input('tickets')),
'session_identifier' => $this->sessionIdentifierService->getSessionId(),
+ 'order_locale' => $this->localeService->getLocaleOrDefault($request->getPreferredLanguage()),
])
);
diff --git a/backend/app/Http/Actions/Orders/ResendOrderConfirmationAction.php b/backend/app/Http/Actions/Orders/ResendOrderConfirmationAction.php
index 5bb9da97..024aff0f 100644
--- a/backend/app/Http/Actions/Orders/ResendOrderConfirmationAction.php
+++ b/backend/app/Http/Actions/Orders/ResendOrderConfirmationAction.php
@@ -49,12 +49,15 @@ public function __invoke(int $eventId, int $orderId): Response
->loadRelation(new Relationship(EventSettingDomainObject::class))
->findById($order->getEventId());
- $this->mailer->to($order->getEmail())->send(new OrderSummary(
- order: $order,
- event: $event,
- organizer: $event->getOrganizer(),
- eventSettings: $event->getEventSettings(),
- ));
+ $this->mailer
+ ->to($order->getEmail())
+ ->locale($order->getLocale())
+ ->send(new OrderSummary(
+ order: $order,
+ event: $event,
+ organizer: $event->getOrganizer(),
+ eventSettings: $event->getEventSettings(),
+ ));
}
return $this->noContentResponse();
diff --git a/backend/app/Http/Kernel.php b/backend/app/Http/Kernel.php
index 08df4113..50ae0df0 100644
--- a/backend/app/Http/Kernel.php
+++ b/backend/app/Http/Kernel.php
@@ -3,6 +3,7 @@
namespace HiEvents\Http;
use HiEvents\Http\Middleware\SetAccountContext;
+use HiEvents\Http\Middleware\SetUserLocaleMiddleware;
use Illuminate\Auth\Middleware\AuthenticateWithBasicAuth;
use Illuminate\Auth\Middleware\Authorize;
use Illuminate\Auth\Middleware\EnsureEmailIsVerified;
@@ -65,6 +66,7 @@ class Kernel extends HttpKernel
ThrottleRequests::class . ':api',
SubstituteBindings::class,
SetAccountContext::class,
+ SetUserLocaleMiddleware::class,
],
];
diff --git a/backend/app/Http/Middleware/SetUserLocaleMiddleware.php b/backend/app/Http/Middleware/SetUserLocaleMiddleware.php
new file mode 100644
index 00000000..6e8f9dcc
--- /dev/null
+++ b/backend/app/Http/Middleware/SetUserLocaleMiddleware.php
@@ -0,0 +1,27 @@
+getLocale());
+ App::setFallbackLocale(config('app.locale'));
+ } elseif ($request->hasHeader('Accept-Language')) {
+ App::setLocale($request->header('Accept-Language'));
+ App::setFallbackLocale(config('app.locale'));
+ }
+
+ return $next($request);
+ }
+}
diff --git a/backend/app/Locale.php b/backend/app/Locale.php
new file mode 100644
index 00000000..fd0196a6
--- /dev/null
+++ b/backend/app/Locale.php
@@ -0,0 +1,23 @@
+eventSettings->getSupportEmail(),
- subject: 'Your order has been cancelled',
+ subject: __('Your order has been cancelled'),
);
}
diff --git a/backend/app/Mail/Order/OrderRefunded.php b/backend/app/Mail/Order/OrderRefunded.php
index f20b2570..411fe872 100644
--- a/backend/app/Mail/Order/OrderRefunded.php
+++ b/backend/app/Mail/Order/OrderRefunded.php
@@ -29,7 +29,7 @@ public function envelope(): Envelope
{
return new Envelope(
replyTo: $this->eventSettings->getSupportEmail(),
- subject: 'You\'ve received a refund',
+ subject: __('You\'ve received a refund'),
);
}
diff --git a/backend/app/Mail/Order/OrderSummary.php b/backend/app/Mail/Order/OrderSummary.php
index 0052b5e3..c04bd78d 100644
--- a/backend/app/Mail/Order/OrderSummary.php
+++ b/backend/app/Mail/Order/OrderSummary.php
@@ -30,7 +30,7 @@ public function envelope(): Envelope
{
return new Envelope(
replyTo: $this->eventSettings->getSupportEmail(),
- subject: 'Your Order is Confirmed! 🎉',
+ subject: __('Your Order is Confirmed!') . ' 🎉',
);
}
diff --git a/backend/app/Mail/User/ConfirmEmailChangeMail.php b/backend/app/Mail/User/ConfirmEmailChangeMail.php
index c73fa23d..5c6b8a90 100644
--- a/backend/app/Mail/User/ConfirmEmailChangeMail.php
+++ b/backend/app/Mail/User/ConfirmEmailChangeMail.php
@@ -28,7 +28,7 @@ public function __construct(UserDomainObject $user, string $token)
public function envelope(): Envelope
{
return new Envelope(
- subject: 'Confirm email change',
+ subject: __('Confirm email change'),
);
}
diff --git a/backend/app/Mail/User/ForgotPassword.php b/backend/app/Mail/User/ForgotPassword.php
index 9c7a3201..db1a12b5 100644
--- a/backend/app/Mail/User/ForgotPassword.php
+++ b/backend/app/Mail/User/ForgotPassword.php
@@ -28,7 +28,7 @@ public function __construct(UserDomainObject $user, string $token)
public function envelope(): Envelope
{
return new Envelope(
- subject: 'Password reset',
+ subject: __('Password reset'),
);
}
diff --git a/backend/app/Mail/User/ResetPasswordSuccess.php b/backend/app/Mail/User/ResetPasswordSuccess.php
index 5a7633e0..342d9fe6 100644
--- a/backend/app/Mail/User/ResetPasswordSuccess.php
+++ b/backend/app/Mail/User/ResetPasswordSuccess.php
@@ -14,7 +14,7 @@ class ResetPasswordSuccess extends BaseMail
public function envelope(): Envelope
{
return new Envelope(
- subject: 'Your password has been reset',
+ subject: __('Your password has been reset'),
);
}
diff --git a/backend/app/Mail/User/UserInvited.php b/backend/app/Mail/User/UserInvited.php
index c5626928..20296f7f 100644
--- a/backend/app/Mail/User/UserInvited.php
+++ b/backend/app/Mail/User/UserInvited.php
@@ -34,7 +34,7 @@ public function __construct(
public function envelope(): Envelope
{
return new Envelope(
- subject: 'You\'ve been invited to join ' . $this->appName,
+ subject: __('You\'ve been invited to join :appName', ['appName' => $this->appName]),
);
}
diff --git a/backend/app/Services/Application/Locale/LocaleService.php b/backend/app/Services/Application/Locale/LocaleService.php
new file mode 100644
index 00000000..1746ab03
--- /dev/null
+++ b/backend/app/Services/Application/Locale/LocaleService.php
@@ -0,0 +1,35 @@
+config->get('app.locale');
+ }
+}
diff --git a/backend/app/Services/Domain/Attendee/SendAttendeeTicketService.php b/backend/app/Services/Domain/Attendee/SendAttendeeTicketService.php
index 3fc48ca4..27da9f08 100644
--- a/backend/app/Services/Domain/Attendee/SendAttendeeTicketService.php
+++ b/backend/app/Services/Domain/Attendee/SendAttendeeTicketService.php
@@ -18,17 +18,20 @@ public function __construct(
}
public function send(
- AttendeeDomainObject $attendee,
- EventDomainObject $event,
+ AttendeeDomainObject $attendee,
+ EventDomainObject $event,
EventSettingDomainObject $eventSettings,
- OrganizerDomainObject $organizer,
+ OrganizerDomainObject $organizer,
): void
{
- $this->mailer->to($attendee->getEmail())->send(new AttendeeTicketMail(
- attendee: $attendee,
- event: $event,
- eventSettings: $eventSettings,
- organizer: $organizer,
- ));
+ $this->mailer
+ ->to($attendee->getEmail())
+ ->locale($attendee->getLocale())
+ ->send(new AttendeeTicketMail(
+ attendee: $attendee,
+ event: $event,
+ eventSettings: $eventSettings,
+ organizer: $organizer,
+ ));
}
}
diff --git a/backend/app/Services/Domain/Mail/SendEventEmailMessagesService.php b/backend/app/Services/Domain/Mail/SendEventEmailMessagesService.php
index 60fc7763..f4a6b05c 100644
--- a/backend/app/Services/Domain/Mail/SendEventEmailMessagesService.php
+++ b/backend/app/Services/Domain/Mail/SendEventEmailMessagesService.php
@@ -203,7 +203,7 @@ private function sendMessage(
string $emailAddress,
string $fullName,
SendMessageDTO $messageData,
- EventDomainObject $event
+ EventDomainObject $event,
): void
{
$this->mailer->to(
diff --git a/backend/app/Services/Domain/Mail/SendOrderDetailsService.php b/backend/app/Services/Domain/Mail/SendOrderDetailsService.php
index 19a38fb7..62040573 100644
--- a/backend/app/Services/Domain/Mail/SendOrderDetailsService.php
+++ b/backend/app/Services/Domain/Mail/SendOrderDetailsService.php
@@ -46,11 +46,14 @@ public function sendOrderSummaryAndTicketEmails(OrderDomainObject $order): void
}
if ($order->isOrderFailed()) {
- $this->mailer->to($order->getEmail())->send(new OrderFailed(
- order: $order,
- event: $event,
- eventSettings: $event->getEventSettings(),
- ));
+ $this->mailer
+ ->to($order->getEmail())
+ ->locale($order->getLocale())
+ ->send(new OrderFailed(
+ order: $order,
+ event: $event,
+ eventSettings: $event->getEventSettings(),
+ ));
}
}
@@ -75,12 +78,15 @@ private function sendAttendeeTicketEmails(OrderDomainObject $order, EventDomainO
private function sendOrderSummaryEmails(OrderDomainObject $order, EventDomainObject $event): void
{
- $this->mailer->to($order->getEmail())->send(new OrderSummary(
- order: $order,
- event: $event,
- organizer: $event->getOrganizer(),
- eventSettings: $event->getEventSettings(),
- ));
+ $this->mailer
+ ->to($order->getEmail())
+ ->locale($order->getLocale())
+ ->send(new OrderSummary(
+ order: $order,
+ event: $event,
+ organizer: $event->getOrganizer(),
+ eventSettings: $event->getEventSettings(),
+ ));
if ($order->getIsManuallyCreated() || !$event->getEventSettings()->getNotifyOrganizerOfNewOrders()) {
return;
diff --git a/backend/app/Services/Domain/Order/OrderCancelService.php b/backend/app/Services/Domain/Order/OrderCancelService.php
index 55f3b84a..c9317a32 100644
--- a/backend/app/Services/Domain/Order/OrderCancelService.php
+++ b/backend/app/Services/Domain/Order/OrderCancelService.php
@@ -43,11 +43,14 @@ public function cancelOrder(OrderDomainObject $order): void
->loadRelation(EventSettingDomainObject::class)
->findById($order->getEventId());
- $this->mailer->to($order->getEmail())->send(new OrderCancelled(
- order: $order,
- event: $event,
- eventSettings: $event->getEventSettings(),
- ));
+ $this->mailer
+ ->to($order->getEmail())
+ ->locale($order->getLocale())
+ ->send(new OrderCancelled(
+ order: $order,
+ event: $event,
+ eventSettings: $event->getEventSettings(),
+ ));
});
}
diff --git a/backend/app/Services/Domain/Order/OrderManagementService.php b/backend/app/Services/Domain/Order/OrderManagementService.php
index a3ea531e..998c110e 100644
--- a/backend/app/Services/Domain/Order/OrderManagementService.php
+++ b/backend/app/Services/Domain/Order/OrderManagementService.php
@@ -37,6 +37,7 @@ public function createNewOrder(
int $eventId,
EventDomainObject $event,
int $timeOutMinutes,
+ string $locale,
?PromoCodeDomainObject $promoCode,
string $sessionId = null,
): OrderDomainObject
@@ -54,6 +55,7 @@ public function createNewOrder(
'public_id' => $publicId,
'promo_code_id' => $promoCode?->getId(),
'promo_code' => $promoCode?->getCode(),
+ 'locale' => $locale,
]);
}
diff --git a/backend/app/Services/Domain/Payment/Stripe/StripeRefundExpiredOrderService.php b/backend/app/Services/Domain/Payment/Stripe/StripeRefundExpiredOrderService.php
index e16b150c..c5473ce8 100644
--- a/backend/app/Services/Domain/Payment/Stripe/StripeRefundExpiredOrderService.php
+++ b/backend/app/Services/Domain/Payment/Stripe/StripeRefundExpiredOrderService.php
@@ -54,11 +54,15 @@ public function refundExpiredOrder(
$stripePayment,
);
- $this->mailer->to($order->getEmail())->send(new PaymentSuccessButOrderExpiredMail(
- order: $order,
- event: $event,
-
- ));
+ $this->mailer
+ ->to($order->getEmail())
+ ->locale($order->getLocale())
+ ->send(new PaymentSuccessButOrderExpiredMail(
+ order: $order,
+ event: $event,
+ eventSettings: $event->getEventSettings(),
+ organizer: $event->getOrganizer(),
+ ));
$this->logger->info('Refunded expired order', [
'order_id' => $order->getId(),
diff --git a/backend/app/Services/Domain/User/SendUserInvitationService.php b/backend/app/Services/Domain/User/SendUserInvitationService.php
index e43f761c..b213292e 100644
--- a/backend/app/Services/Domain/User/SendUserInvitationService.php
+++ b/backend/app/Services/Domain/User/SendUserInvitationService.php
@@ -38,10 +38,13 @@ public function sendInvitation(UserDomainObject $invitedUser, int $accountId): v
expiry: now()->addWeek(),
);
- $this->mailer->to($invitedUser->getEmail())->send(new UserInvited(
- invitedUser: $invitedUser,
- appName: $this->config->get('app.name'),
- inviteLink: sprintf(Url::getFrontEndUrlFromConfig(Url::ACCEPT_INVITATION), $invitedPayload),
- ));
+ $this->mailer
+ ->to($invitedUser->getEmail())
+ ->locale($invitedUser->getLocale())
+ ->send(new UserInvited(
+ invitedUser: $invitedUser,
+ appName: $this->config->get('app.name'),
+ inviteLink: sprintf(Url::getFrontEndUrlFromConfig(Url::ACCEPT_INVITATION), $invitedPayload),
+ ));
}
}
diff --git a/backend/app/Services/Handlers/Attendee/EditAttendeeHandler.php b/backend/app/Services/Handlers/Attendee/EditAttendeeHandler.php
index 3baa3c51..ea11affd 100644
--- a/backend/app/Services/Handlers/Attendee/EditAttendeeHandler.php
+++ b/backend/app/Services/Handlers/Attendee/EditAttendeeHandler.php
@@ -102,9 +102,9 @@ private function validateTicketId(EditAttendeeDTO $editAttendeeDTO): void
);
if ($availableQuantity <= 0) {
- throw new NoTicketsAvailableException(__('There are no tickets available. ' .
- 'If you would like to assign this ticket to this attendee,' .
- ' please adjust the ticket\'s available quantity.'));
+ throw new NoTicketsAvailableException(
+ __('There are no tickets available. If you would like to assign this ticket to this attendee, please adjust the ticket\'s available quantity.')
+ );
}
}
diff --git a/backend/app/Services/Handlers/Auth/ForgotPasswordHandler.php b/backend/app/Services/Handlers/Auth/ForgotPasswordHandler.php
index e7fd4ce7..6403bb91 100644
--- a/backend/app/Services/Handlers/Auth/ForgotPasswordHandler.php
+++ b/backend/app/Services/Handlers/Auth/ForgotPasswordHandler.php
@@ -2,6 +2,7 @@
namespace HiEvents\Services\Handlers\Auth;
+use HiEvents\DomainObjects\UserDomainObject;
use HiEvents\Mail\User\ForgotPassword;
use HiEvents\Repository\Interfaces\PasswordResetTokenRepositoryInterface;
use HiEvents\Repository\Interfaces\UserRepositoryInterface;
@@ -66,17 +67,20 @@ private function generateAndSaveResetToken(string $email): string
return $token;
}
- private function sendResetPasswordEmail($user, string $token): void
+ private function sendResetPasswordEmail(UserDomainObject $user, string $token): void
{
$this->logger->info('resetting password for user', [
'user' => $user->getId(),
'email' => $user->getEmail(),
]);
- $this->mailer->to($user->getEmail())->send(new ForgotPassword(
- user: $user,
- token: $token,
- ));
+ $this->mailer
+ ->to($user->getEmail())
+ ->locale($user->getLocale())
+ ->send(new ForgotPassword(
+ user: $user,
+ token: $token,
+ ));
}
private function logUnrecognisedEmail(string $email): void
diff --git a/backend/app/Services/Handlers/Auth/ResetPasswordHandler.php b/backend/app/Services/Handlers/Auth/ResetPasswordHandler.php
index 0ae88d29..6462dc46 100644
--- a/backend/app/Services/Handlers/Auth/ResetPasswordHandler.php
+++ b/backend/app/Services/Handlers/Auth/ResetPasswordHandler.php
@@ -81,8 +81,11 @@ private function logResetPasswordSuccess($user): void
);
}
- private function sendResetPasswordEmail($user): void
+ private function sendResetPasswordEmail(UserDomainObject $user): void
{
- $this->mailer->to($user->getEmail())->send(new ResetPasswordSuccess());
+ $this->mailer
+ ->to($user->getEmail())
+ ->locale($user->getLocale())
+ ->send(new ResetPasswordSuccess());
}
}
diff --git a/backend/app/Services/Handlers/Order/CompleteOrderHandler.php b/backend/app/Services/Handlers/Order/CompleteOrderHandler.php
index 116fc380..d68363b5 100644
--- a/backend/app/Services/Handlers/Order/CompleteOrderHandler.php
+++ b/backend/app/Services/Handlers/Order/CompleteOrderHandler.php
@@ -114,6 +114,7 @@ private function createAttendees(Collection $attendees, OrderDomainObject $order
AttendeeDomainObjectAbstract::ORDER_ID => $order->getId(),
AttendeeDomainObjectAbstract::PUBLIC_ID => $order->getPublicId() . '-' . $publicIdIndex++,
AttendeeDomainObjectAbstract::SHORT_ID => IdHelper::randomPrefixedId(IdHelper::ATTENDEE_PREFIX),
+ AttendeeDomainObjectAbstract::LOCALE => $order->getLocale(),
];
}
diff --git a/backend/app/Services/Handlers/Order/CreateOrderHandler.php b/backend/app/Services/Handlers/Order/CreateOrderHandler.php
index 13e9b3fc..e94c4f7a 100644
--- a/backend/app/Services/Handlers/Order/CreateOrderHandler.php
+++ b/backend/app/Services/Handlers/Order/CreateOrderHandler.php
@@ -61,8 +61,9 @@ public function handle(
eventId: $eventId,
event: $event,
timeOutMinutes: $event->getEventSettings()?->getOrderTimeoutInMinutes(),
+ locale: $createOrderPublicDTO->order_locale,
promoCode: $promoCode,
- sessionId: $sessionId
+ sessionId: $sessionId,
);
$orderItems = $this->orderItemProcessingService->process(
diff --git a/backend/app/Services/Handlers/Order/DTO/CreateOrderPublicDTO.php b/backend/app/Services/Handlers/Order/DTO/CreateOrderPublicDTO.php
index d6f61f54..f9a3abea 100644
--- a/backend/app/Services/Handlers/Order/DTO/CreateOrderPublicDTO.php
+++ b/backend/app/Services/Handlers/Order/DTO/CreateOrderPublicDTO.php
@@ -13,6 +13,7 @@ public function __construct(
*/
public readonly Collection $tickets,
public readonly bool $is_user_authenticated,
+ public readonly ?string $order_locale = null,
public readonly ?string $promo_code = null,
public readonly ?string $session_identifier = null,
)
diff --git a/backend/app/Services/Handlers/Order/Payment/Stripe/RefundOrderHandler.php b/backend/app/Services/Handlers/Order/Payment/Stripe/RefundOrderHandler.php
index 76b2d107..5f6dfd35 100644
--- a/backend/app/Services/Handlers/Order/Payment/Stripe/RefundOrderHandler.php
+++ b/backend/app/Services/Handlers/Order/Payment/Stripe/RefundOrderHandler.php
@@ -82,12 +82,15 @@ private function validateRefundability(OrderDomainObject $order): void
private function notifyBuyer(OrderDomainObject $order, EventDomainObject $event, MoneyValue $amount): void
{
- $this->mailer->to($order->getEmail())->send(new OrderRefunded(
- order: $order,
- event: $event,
- eventSettings: $event->getEventSettings(),
- refundAmount: $amount
- ));
+ $this->mailer
+ ->to($order->getEmail())
+ ->locale($order->getLocale())
+ ->send(new OrderRefunded(
+ order: $order,
+ event: $event,
+ eventSettings: $event->getEventSettings(),
+ refundAmount: $amount
+ ));
}
private function markOrderRefundPending(OrderDomainObject $order): OrderDomainObject
diff --git a/backend/app/Services/Handlers/User/UpdateMeHandler.php b/backend/app/Services/Handlers/User/UpdateMeHandler.php
index 07c1f484..11e6e63f 100644
--- a/backend/app/Services/Handlers/User/UpdateMeHandler.php
+++ b/backend/app/Services/Handlers/User/UpdateMeHandler.php
@@ -96,6 +96,7 @@ private function sendEmailChangeConfirmation(UserDomainObject $existingUser): vo
{
$this->mailer
->to($existingUser->getEmail())
+ ->locale($existingUser->getLocale())
->send(new ConfirmEmailChangeMail($existingUser, $this->encryptedPayloadService->encryptPayload([
'id' => $existingUser->getId(),
]))
diff --git a/backend/bootstrap/cache/packages.php b/backend/bootstrap/cache/packages.php
index 9eea52f1..206aa197 100755
--- a/backend/bootstrap/cache/packages.php
+++ b/backend/bootstrap/cache/packages.php
@@ -1,4 +1,11 @@
+ array (
+ 'providers' =>
+ array (
+ 0 => 'Druc\\Langscanner\\LangscannerServiceProvider',
+ ),
+ ),
'laravel/sail' =>
array (
'providers' =>
diff --git a/backend/bootstrap/cache/services.php b/backend/bootstrap/cache/services.php
index c59e4f97..80afc409 100755
--- a/backend/bootstrap/cache/services.php
+++ b/backend/bootstrap/cache/services.php
@@ -23,20 +23,21 @@
19 => 'Illuminate\\Translation\\TranslationServiceProvider',
20 => 'Illuminate\\Validation\\ValidationServiceProvider',
21 => 'Illuminate\\View\\ViewServiceProvider',
- 22 => 'Laravel\\Sail\\SailServiceProvider',
- 23 => 'Laravel\\Sanctum\\SanctumServiceProvider',
- 24 => 'Laravel\\Tinker\\TinkerServiceProvider',
- 25 => 'Maatwebsite\\Excel\\ExcelServiceProvider',
- 26 => 'Carbon\\Laravel\\ServiceProvider',
- 27 => 'NunoMaduro\\Collision\\Adapters\\Laravel\\CollisionServiceProvider',
- 28 => 'Termwind\\Laravel\\TermwindServiceProvider',
- 29 => 'PHPOpenSourceSaver\\JWTAuth\\Providers\\LaravelServiceProvider',
- 30 => 'Spatie\\LaravelIgnition\\IgnitionServiceProvider',
- 31 => 'HiEvents\\Providers\\AppServiceProvider',
- 32 => 'HiEvents\\Providers\\AuthServiceProvider',
- 33 => 'HiEvents\\Providers\\EventServiceProvider',
- 34 => 'HiEvents\\Providers\\RouteServiceProvider',
- 35 => 'HiEvents\\Providers\\RepositoryServiceProvider',
+ 22 => 'Druc\\Langscanner\\LangscannerServiceProvider',
+ 23 => 'Laravel\\Sail\\SailServiceProvider',
+ 24 => 'Laravel\\Sanctum\\SanctumServiceProvider',
+ 25 => 'Laravel\\Tinker\\TinkerServiceProvider',
+ 26 => 'Maatwebsite\\Excel\\ExcelServiceProvider',
+ 27 => 'Carbon\\Laravel\\ServiceProvider',
+ 28 => 'NunoMaduro\\Collision\\Adapters\\Laravel\\CollisionServiceProvider',
+ 29 => 'Termwind\\Laravel\\TermwindServiceProvider',
+ 30 => 'PHPOpenSourceSaver\\JWTAuth\\Providers\\LaravelServiceProvider',
+ 31 => 'Spatie\\LaravelIgnition\\IgnitionServiceProvider',
+ 32 => 'HiEvents\\Providers\\AppServiceProvider',
+ 33 => 'HiEvents\\Providers\\AuthServiceProvider',
+ 34 => 'HiEvents\\Providers\\EventServiceProvider',
+ 35 => 'HiEvents\\Providers\\RouteServiceProvider',
+ 36 => 'HiEvents\\Providers\\RepositoryServiceProvider',
),
'eager' =>
array (
@@ -50,18 +51,19 @@
7 => 'Illuminate\\Pagination\\PaginationServiceProvider',
8 => 'Illuminate\\Session\\SessionServiceProvider',
9 => 'Illuminate\\View\\ViewServiceProvider',
- 10 => 'Laravel\\Sanctum\\SanctumServiceProvider',
- 11 => 'Maatwebsite\\Excel\\ExcelServiceProvider',
- 12 => 'Carbon\\Laravel\\ServiceProvider',
- 13 => 'NunoMaduro\\Collision\\Adapters\\Laravel\\CollisionServiceProvider',
- 14 => 'Termwind\\Laravel\\TermwindServiceProvider',
- 15 => 'PHPOpenSourceSaver\\JWTAuth\\Providers\\LaravelServiceProvider',
- 16 => 'Spatie\\LaravelIgnition\\IgnitionServiceProvider',
- 17 => 'HiEvents\\Providers\\AppServiceProvider',
- 18 => 'HiEvents\\Providers\\AuthServiceProvider',
- 19 => 'HiEvents\\Providers\\EventServiceProvider',
- 20 => 'HiEvents\\Providers\\RouteServiceProvider',
- 21 => 'HiEvents\\Providers\\RepositoryServiceProvider',
+ 10 => 'Druc\\Langscanner\\LangscannerServiceProvider',
+ 11 => 'Laravel\\Sanctum\\SanctumServiceProvider',
+ 12 => 'Maatwebsite\\Excel\\ExcelServiceProvider',
+ 13 => 'Carbon\\Laravel\\ServiceProvider',
+ 14 => 'NunoMaduro\\Collision\\Adapters\\Laravel\\CollisionServiceProvider',
+ 15 => 'Termwind\\Laravel\\TermwindServiceProvider',
+ 16 => 'PHPOpenSourceSaver\\JWTAuth\\Providers\\LaravelServiceProvider',
+ 17 => 'Spatie\\LaravelIgnition\\IgnitionServiceProvider',
+ 18 => 'HiEvents\\Providers\\AppServiceProvider',
+ 19 => 'HiEvents\\Providers\\AuthServiceProvider',
+ 20 => 'HiEvents\\Providers\\EventServiceProvider',
+ 21 => 'HiEvents\\Providers\\RouteServiceProvider',
+ 22 => 'HiEvents\\Providers\\RepositoryServiceProvider',
),
'deferred' =>
array (
diff --git a/backend/composer.json b/backend/composer.json
index 4b410491..a4cd71d9 100644
--- a/backend/composer.json
+++ b/backend/composer.json
@@ -10,6 +10,7 @@
"ext-intl": "*",
"brick/money": "^0.8.0",
"doctrine/dbal": "^3.6",
+ "druc/laravel-langscanner": "^2.2",
"ezyang/htmlpurifier": "^4.17",
"guzzlehttp/guzzle": "^7.2",
"laravel/framework": "^11.0",
diff --git a/backend/composer.lock b/backend/composer.lock
index 06dfbfb9..731cf7d6 100644
--- a/backend/composer.lock
+++ b/backend/composer.lock
@@ -4,7 +4,7 @@
"Read more about it at https://getcomposer.org/doc/01-basic-usage.md#installing-dependencies",
"This file is @generated automatically"
],
- "content-hash": "5f55a1a7adc1f649d32d094a084840d1",
+ "content-hash": "43724230ba59b855b143ce8ccfb1ab91",
"packages": [
{
"name": "aws/aws-crt-php",
@@ -1066,6 +1066,74 @@
],
"time": "2023-08-10T19:36:49+00:00"
},
+ {
+ "name": "druc/laravel-langscanner",
+ "version": "v2.2.0",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/druc/laravel-langscanner.git",
+ "reference": "78b3d381d0c2a0cfc4ed4062a6f5bd8b72f7efa4"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/druc/laravel-langscanner/zipball/78b3d381d0c2a0cfc4ed4062a6f5bd8b72f7efa4",
+ "reference": "78b3d381d0c2a0cfc4ed4062a6f5bd8b72f7efa4",
+ "shasum": ""
+ },
+ "require": {
+ "ext-json": "*",
+ "illuminate/contracts": "^9.0|^10.0|^11.0",
+ "php": "^8.0",
+ "spatie/laravel-package-tools": "^1.11.3"
+ },
+ "require-dev": {
+ "friendsofphp/php-cs-fixer": "^3.3",
+ "nunomaduro/collision": "^6.2",
+ "orchestra/testbench": "^7.02|^9.0",
+ "phpunit/phpunit": "^9.5|^10.1"
+ },
+ "type": "library",
+ "extra": {
+ "laravel": {
+ "providers": [
+ "Druc\\Langscanner\\LangscannerServiceProvider"
+ ]
+ }
+ },
+ "autoload": {
+ "psr-4": {
+ "Druc\\Langscanner\\": "src"
+ }
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "MIT"
+ ],
+ "authors": [
+ {
+ "name": "Constantin Druc",
+ "email": "druc@pinsmile.com",
+ "role": "Developer"
+ }
+ ],
+ "description": "Scan missing language translations.",
+ "homepage": "https://github.com/druc/laravel-langscanner",
+ "keywords": [
+ "druc",
+ "laravel-langscanner"
+ ],
+ "support": {
+ "issues": "https://github.com/druc/laravel-langscanner/issues",
+ "source": "https://github.com/druc/laravel-langscanner/tree/v2.2.0"
+ },
+ "funding": [
+ {
+ "url": "https://github.com/druc",
+ "type": "github"
+ }
+ ],
+ "time": "2024-03-25T20:09:17+00:00"
+ },
{
"name": "egulias/email-validator",
"version": "4.0.2",
@@ -4931,6 +4999,66 @@
},
"time": "2024-05-16T15:11:32+00:00"
},
+ {
+ "name": "spatie/laravel-package-tools",
+ "version": "1.16.4",
+ "source": {
+ "type": "git",
+ "url": "https://github.com/spatie/laravel-package-tools.git",
+ "reference": "ddf678e78d7f8b17e5cdd99c0c3413a4a6592e53"
+ },
+ "dist": {
+ "type": "zip",
+ "url": "https://api.github.com/repos/spatie/laravel-package-tools/zipball/ddf678e78d7f8b17e5cdd99c0c3413a4a6592e53",
+ "reference": "ddf678e78d7f8b17e5cdd99c0c3413a4a6592e53",
+ "shasum": ""
+ },
+ "require": {
+ "illuminate/contracts": "^9.28|^10.0|^11.0",
+ "php": "^8.0"
+ },
+ "require-dev": {
+ "mockery/mockery": "^1.5",
+ "orchestra/testbench": "^7.7|^8.0",
+ "pestphp/pest": "^1.22",
+ "phpunit/phpunit": "^9.5.24",
+ "spatie/pest-plugin-test-time": "^1.1"
+ },
+ "type": "library",
+ "autoload": {
+ "psr-4": {
+ "Spatie\\LaravelPackageTools\\": "src"
+ }
+ },
+ "notification-url": "https://packagist.org/downloads/",
+ "license": [
+ "MIT"
+ ],
+ "authors": [
+ {
+ "name": "Freek Van der Herten",
+ "email": "freek@spatie.be",
+ "role": "Developer"
+ }
+ ],
+ "description": "Tools for creating Laravel packages",
+ "homepage": "https://github.com/spatie/laravel-package-tools",
+ "keywords": [
+ "laravel-package-tools",
+ "spatie"
+ ],
+ "support": {
+ "issues": "https://github.com/spatie/laravel-package-tools/issues",
+ "source": "https://github.com/spatie/laravel-package-tools/tree/1.16.4"
+ },
+ "funding": [
+ {
+ "url": "https://github.com/spatie",
+ "type": "github"
+ }
+ ],
+ "time": "2024-03-20T07:29:11+00:00"
+ },
{
"name": "stripe/stripe-php",
"version": "v10.21.0",
diff --git a/backend/database/migrations/2024_06_16_143927_add_locale_to_users.php b/backend/database/migrations/2024_06_16_143927_add_locale_to_users.php
new file mode 100644
index 00000000..2187a0d6
--- /dev/null
+++ b/backend/database/migrations/2024_06_16_143927_add_locale_to_users.php
@@ -0,0 +1,22 @@
+string('locale', 20)->default(config('app.locale'));
+ });
+ }
+
+ public function down(): void
+ {
+ Schema::table('users', static function (Blueprint $table) {
+ $table->dropColumn('locale');
+ });
+ }
+};
diff --git a/backend/database/migrations/2024_06_16_192150_add_locale_to_attendees.php b/backend/database/migrations/2024_06_16_192150_add_locale_to_attendees.php
new file mode 100644
index 00000000..571584a9
--- /dev/null
+++ b/backend/database/migrations/2024_06_16_192150_add_locale_to_attendees.php
@@ -0,0 +1,21 @@
+string('locale', 20)->default(config('app.locale'));
+ });
+ }
+
+ public function down(): void
+ {
+ Schema::table('attendees', static function (Blueprint $table) {
+ $table->dropColumn('locale');
+ });
+ }
+};
diff --git a/backend/database/migrations/2024_06_16_192151_add_locale_to_orders.php b/backend/database/migrations/2024_06_16_192151_add_locale_to_orders.php
new file mode 100644
index 00000000..e1395801
--- /dev/null
+++ b/backend/database/migrations/2024_06_16_192151_add_locale_to_orders.php
@@ -0,0 +1,21 @@
+string('locale', 20)->default(config('app.locale'));
+ });
+ }
+
+ public function down(): void
+ {
+ Schema::table('orders', static function (Blueprint $table) {
+ $table->dropColumn('locale');
+ });
+ }
+};
diff --git a/backend/lang/de.json b/backend/lang/de.json
new file mode 100644
index 00000000..63217f53
--- /dev/null
+++ b/backend/lang/de.json
@@ -0,0 +1,263 @@
+{
+ "Older First": "Älteste zuerst",
+ "Newer First": "Neueste zuerst",
+ "Recently Updated First": "Zuletzt aktualisiert zuerst",
+ "Recently Updated Last": "Zuletzt aktualisiert zuletzt",
+ "First Name A-Z": "Vorname A-Z",
+ "First Name Z-A": "Vorname Z-A",
+ "Last Name A-Z": "Nachname A-Z",
+ "Last Name Z-A": "Nachname Z-A",
+ "Status A-Z": "Status A-Z",
+ "Status Z-A": "Status Z-A",
+ "Closest start date": "Nächstes Startdatum",
+ "Furthest start date": "Weitestes Startdatum",
+ "Closest end date": "Nächstes Enddatum",
+ "Furthest end date": "Weitestes Enddatum",
+ "Newest first": "Neueste zuerst",
+ "Oldest first": "Älteste zuerst",
+ "Recently Updated": "Kürzlich aktualisiert",
+ "Least Recently Updated": "Am wenigsten kürzlich aktualisiert",
+ "Oldest First": "Älteste zuerst",
+ "Newest First": "Neueste zuerst",
+ "Buyer Name A-Z": "Käufername A-Z",
+ "Buyer Name Z-A": "Käufername Z-A",
+ "Amount Ascending": "Betrag aufsteigend",
+ "Amount Descending": "Betrag absteigend",
+ "Buyer Email A-Z": "Käufer-E-Mail A-Z",
+ "Buyer Email Z-A": "Käufer-E-Mail Z-A",
+ "Order # Ascending": "Bestellnummer aufsteigend",
+ "Order # Descending": "Bestellnummer absteigend",
+ "Code Name A-Z": "Codename A-Z",
+ "Code Name Z-A": "Codename Z-A",
+ "Usage Count Ascending": "Nutzungsanzahl aufsteigend",
+ "Usage Count Descending": "Nutzungsanzahl absteigend",
+ "Homepage order": "Homepage-Bestellung",
+ "Title A-Z": "Titel A-Z",
+ "Title Z-A": "Titel Z-A",
+ "Sale start date closest": "Nächstes Verkaufsstartdatum",
+ "Sale start date furthest": "Weitestes Verkaufsstartdatum",
+ "Sale end date closest": "Nächstes Verkaufsenddatum",
+ "Sale end date furthest": "Weitestes Verkaufsenddatum",
+ "Account registration is disabled": "Kontoregistrierung ist deaktiviert",
+ "The invitation has expired": "Die Einladung ist abgelaufen",
+ "The invitation is invalid": "Die Einladung ist ungültig",
+ "Invitation valid, but user not found": "Einladung gültig, aber Benutzer nicht gefunden",
+ "No user found for this invitation. The invitation may have been revoked.": "Kein Benutzer für diese Einladung gefunden. Die Einladung wurde möglicherweise widerrufen.",
+ "Logout Successful": "Abmeldung erfolgreich",
+ "Your password has been reset. Please login with your new password.": "Ihr Passwort wurde zurückgesetzt. Bitte melden Sie sich mit Ihrem neuen Passwort an.",
+ "No account ID found in token": "Keine Kontonummer im Token gefunden",
+ "Event with ID :eventId is not live and user is not authenticated": "Veranstaltung mit ID :eventId ist nicht live und Benutzer ist nicht authentifiziert",
+ "Sorry, we could not verify your session. Please restart your order.": "Entschuldigung, wir konnten Ihre Sitzung nicht überprüfen. Bitte starten Sie Ihre Bestellung neu.",
+ "The email confirmation link has expired. Please request a new one.": "Der E-Mail-Bestätigungslink ist abgelaufen. Bitte fordern Sie einen neuen an.",
+ "The email confirmation link is invalid.": "Der E-Mail-Bestätigungslink ist ungültig.",
+ "No invitation found for this user.": "Keine Einladung für diesen Benutzer gefunden.",
+ "User status is not Invited": "Benutzerstatus ist nicht eingeladen",
+ "Email is required": "E-Mail ist erforderlich",
+ "Email must be a valid email address": "E-Mail muss eine gültige E-Mail-Adresse sein",
+ "First name is required": "Vorname ist erforderlich",
+ "Last name is required": "Nachname ist erforderlich",
+ "Ticket is required": "Ticket ist erforderlich",
+ "Ticket price is required": "Ticketpreis ist erforderlich",
+ "Please enter a valid hex color code. In the format #000000 or #000.": "Bitte geben Sie einen gültigen Hex-Farbcode ein. Im Format #000000 oder #000.",
+ "The maximum timeout is 2 hours.": "Das maximale Timeout beträgt 2 Stunden.",
+ "The address line 1 field is required": "Das Feld Adresszeile 1 ist erforderlich",
+ "The city field is required": "Das Feld Stadt ist erforderlich",
+ "The zip or postal code field is required": "Das Feld Postleitzahl ist erforderlich",
+ "The country field is required": "Das Feld Land ist erforderlich",
+ "The country field should be a 2 character ISO 3166 code": "Das Feld Land sollte ein 2-stelliger ISO 3166-Code sein",
+ "Please select at least one ticket.": "Bitte wählen Sie mindestens ein Ticket aus.",
+ "The sale end date must be after the sale start date.": "Das Verkaufsenddatum muss nach dem Verkaufsstartdatum liegen.",
+ "The sale end date must be a valid date.": "Das Verkaufsenddatum muss ein gültiges Datum sein.",
+ "The sale start date must be after the ticket sale start date.": "Das Verkaufsstartdatum muss nach dem Ticketverkaufsstartdatum liegen.",
+ "Welcome to :app_name! Please confirm your email address": "Willkommen bei :app_name! Bitte bestätigen Sie Ihre E-Mail-Adresse",
+ "🎟️ Your Ticket for :event": "🎟️ Ihr Ticket für :event",
+ "Your order wasn't successful": "Ihre Bestellung war nicht erfolgreich",
+ "We were unable to process your order": "Wir konnten Ihre Bestellung nicht bearbeiten",
+ "New order for :amount for :event 🎉": "Neue Bestellung für :amount für :event 🎉",
+ "New order for :event 🎉": "Neue Bestellung für :event 🎉",
+ "Current account ID is not set": "Aktuelle Kontonummer ist nicht gesetzt",
+ "User not found in this account": "Benutzer in diesem Konto nicht gefunden",
+ "User not found": "Benutzer nicht gefunden",
+ "Username or Password are incorrect": "Benutzername oder Passwort sind falsch",
+ "Account not found": "Konto nicht gefunden",
+ "Attempt to log in to a non-active account": "Versuch, sich in ein nicht aktives Konto einzuloggen",
+ "User account is not active": "Benutzerkonto ist nicht aktiv",
+ "Invalid reset token": "Ungültiger Reset-Token",
+ "Reset token has expired": "Reset-Token ist abgelaufen",
+ "Event daily statistics updated for event :event_id with total refunded amount of :amount": "Tägliche Veranstaltungsstatistiken aktualisiert für Veranstaltung :event_id mit insgesamt erstatteten Betrag von :amount",
+ "Event statistics updated for event :event_id with total refunded amount of :amount": "Veranstaltungsstatistiken aktualisiert für Veranstaltung :event_id mit insgesamt erstatteten Betrag von :amount",
+ "This promo code is invalid": "Dieser Promo-Code ist ungültig",
+ "You haven't selected any tickets": "Sie haben keine Tickets ausgewählt",
+ "The maximum number of tickets available for :tickets is :max": "Die maximale Anzahl an verfügbaren Tickets für :tickets beträgt :max",
+ "You must order at least :min tickets for :ticket": "Sie müssen mindestens :min Tickets für :ticket bestellen",
+ "The minimum amount is :price": "Der Mindestbetrag ist :price",
+ "The ticket :ticket is sold out": "Das Ticket :ticket ist ausverkauft",
+ ":field must be specified": ":field muss angegeben werden",
+ "Invalid price ID": "Ungültige Preis-ID",
+ "The maximum number of tickets available for :ticket is :max": "Die maximale Anzahl an verfügbaren Tickets für :ticket beträgt :max",
+ "Ticket with id :id not found": "Ticket mit ID :id nicht gefunden",
+ "Failed to refund stripe charge": "Fehler bei der Rückerstattung der Stripe-Gebühr",
+ "Payment was successful, but order has expired. Order: :id": "Zahlung war erfolgreich, aber Bestellung ist abgelaufen. Bestellung: :id",
+ "Order is not awaiting payment. Order: :id": "Bestellung wartet nicht auf Zahlung. Bestellung: :id",
+ "There was an error communicating with the payment provider. Please try again later.": "Es gab einen Fehler bei der Kommunikation mit dem Zahlungsanbieter. Bitte versuchen Sie es später erneut.",
+ "Stripe Connect account not found for the event organizer": "Stripe Connect-Konto für den Veranstalter nicht gefunden",
+ "Cannot Refund: Stripe connect account not found and saas_mode_enabled is enabled": "Kann nicht zurückerstatten: Stripe Connect-Konto nicht gefunden und saas_mode_enabled ist aktiviert",
+ "Invalid calculation type": "Ungültiger Berechnungstyp",
+ "One or more tax IDs are invalid": "Eine oder mehrere Steuer-IDs sind ungültig",
+ "Invalid ticket ids: :ids": "Ungültige Ticket-IDs: :ids",
+ "Order has no order items": "Bestellung hat keine Bestellpositionen",
+ "There is already an account associated with this email. Please log in instead.": "Es gibt bereits ein Konto, das mit dieser E-Mail-Adresse verknüpft ist. Bitte melden Sie sich stattdessen an.",
+ "Stripe Connect Account creation is only available in Saas Mode.": "Stripe Connect-Kontoerstellung ist nur im Saas-Modus verfügbar.",
+ "There are issues with creating or fetching the Stripe Connect Account. Please try again.": "Es gibt Probleme beim Erstellen oder Abrufen des Stripe Connect-Kontos. Bitte versuchen Sie es erneut.",
+ "There are issues with creating the Stripe Connect Account Link. Please try again.": "Es gibt Probleme beim Erstellen des Stripe Connect-Konto-Links. Bitte versuchen Sie es erneut.",
+ "Cannot check in attendee as they are not active.": "Teilnehmer kann nicht eingecheckt werden, da er nicht aktiv ist.",
+ "in": "in",
+ "out": "aus",
+ "There are no tickets available. ' .\n 'If you would like to assign a ticket to this attendee,' .\n ' please adjust the ticket's available quantity.": "Es sind keine Tickets verfügbar. ' .\n 'Wenn Sie diesem Teilnehmer ein Ticket zuweisen möchten,' .\n ' passen Sie bitte die verfügbare Menge des Tickets an.",
+ "The ticket price ID is invalid.": "Die Ticketpreis-ID ist ungültig.",
+ "Ticket ID is not valid": "Ticket-ID ist nicht gültig",
+ "There are no tickets available. ' .\n 'If you would like to assign this ticket to this attendee,' .\n ' please adjust the ticket's available quantity.": "Es sind keine Tickets verfügbar. ' .\n 'Wenn Sie dieses Ticket diesem Teilnehmer zuweisen möchten,' .\n ' passen Sie bitte die verfügbare Menge des Tickets an.",
+ "Attendee ID is not valid": "Teilnehmer-ID ist nicht gültig",
+ "The invitation does not exist": "Die Einladung existiert nicht",
+ "The invitation has already been accepted": "Die Einladung wurde bereits angenommen",
+ "Organizer :id not found": "Veranstalter :id nicht gefunden",
+ "Continue": "Fortsetzen",
+ "Event :id not found": "Veranstaltung :id nicht gefunden",
+ "You cannot change the currency of an event that has completed orders": "Sie können die Währung einer Veranstaltung mit abgeschlossenen Bestellungen nicht ändern",
+ "You must verify your account before you can update an event's status.\n You can resend the confirmation by visiting your profile page.": "Sie müssen Ihr Konto überprüfen, bevor Sie den Status einer Veranstaltung aktualisieren können.\n Sie können die Bestätigung erneut senden, indem Sie Ihre Profilseite besuchen.",
+ "You cannot send messages until your account is verified.": "Sie können keine Nachrichten senden, bis Ihr Konto überprüft ist.",
+ "Order not found": "Bestellung nicht gefunden",
+ "Order already cancelled": "Bestellung bereits storniert",
+ "Failed to create attendee": "Erstellung des Teilnehmers fehlgeschlagen",
+ "This order is has already been processed": "Diese Bestellung wurde bereits bearbeitet",
+ "This order has expired": "Diese Bestellung ist abgelaufen",
+ "This order has already been processed": "Diese Bestellung wurde bereits bearbeitet",
+ "There is an unexpected ticket price ID in the order": "Es gibt eine unerwartete Ticketpreis-ID in der Bestellung",
+ "This event is not live.": "Diese Veranstaltung ist nicht live.",
+ "Sorry, we could not verify your session. Please create a new order.": "Entschuldigung, wir konnten Ihre Sitzung nicht überprüfen. Bitte erstellen Sie eine neue Bestellung.",
+ "There is no Stripe data associated with this order.": "Es sind keine Stripe-Daten mit dieser Bestellung verknüpft.",
+ "There is already a refund pending for this order. '\n . 'Please wait for the refund to be processed before requesting another one.": "Es gibt bereits eine Rückerstattung für diese Bestellung. '\n . 'Bitte warten Sie, bis die Rückerstattung bearbeitet wurde, bevor Sie eine weitere anfordern.",
+ "Promo code :code already exists": "Promo-Code :code existiert bereits",
+ "The code :code is already in use for this event": "Der Code :code wird bereits für diese Veranstaltung verwendet",
+ "You cannot delete this question as there as answers associated with it. You can hide the question instead.": "Sie können diese Frage nicht löschen, da Antworten damit verknüpft sind. Sie können die Frage stattdessen ausblenden.",
+ "One or more of the ordered question IDs do not exist for the event.": "Eine oder mehrere der bestellten Fragen-IDs existieren nicht für die Veranstaltung.",
+ "You cannot delete this ticket because it has orders associated with it. You can hide it instead.": "Sie können dieses Ticket nicht löschen, da es Bestellungen damit verknüpft sind. Sie können es stattdessen ausblenden.",
+ "Ticket type cannot be changed as tickets have been registered for this type": "Der Tickettyp kann nicht geändert werden, da Tickets für diesen Typ registriert wurden",
+ "The ordered ticket IDs must exactly match all tickets for the event without missing or extra IDs.": "Die bestellten Ticket-IDs müssen genau mit allen Tickets für die Veranstaltung übereinstimmen, ohne fehlende oder zusätzliche IDs.",
+ "No email change pending": "Keine E-Mail-Änderung ausstehend",
+ "The email :email already exists on this account": "Die E-Mail :email existiert bereits auf diesem Konto",
+ "You are not authorized to perform this action.": "Sie sind nicht berechtigt, diese Aktion durchzuführen.",
+ "Your account is not active.": "Ihr Konto ist nicht aktiv.",
+ "Payload has expired or is invalid.": "Payload ist abgelaufen oder ungültig.",
+ "Payload could not be decrypted.": "Payload konnte nicht entschlüsselt werden.",
+ "Could not upload image to :disk. Check :disk is configured correctly": "Bild konnte nicht auf :disk hochgeladen werden. Überprüfen Sie, ob :disk korrekt konfiguriert ist",
+ "Could not upload image": "Bild konnte nicht hochgeladen werden",
+ "Length must be a positive integer.": "Die Länge muss eine positive ganze Zahl sein.",
+ "Prefix length exceeds the total desired token length.": "Die Präfixlänge überschreitet die gewünschte Gesamtlänge des Tokens.",
+ "A valid email is required": "Eine gültige E-Mail ist erforderlich",
+ "The title field is required": "Das Titelfeld ist erforderlich",
+ "The attribute name is required": "Der Attributname ist erforderlich",
+ "The attribute value is required": "Der Attributwert ist erforderlich",
+ "The attribute is_public fields is required": "Das Attribut ist_public Felder ist erforderlich",
+ "Required questions have not been answered. You may need to reload the page.": "Erforderliche Fragen wurden nicht beantwortet. Möglicherweise müssen Sie die Seite neu laden.",
+ "This question is outdated. Please reload the page.": "Diese Frage ist veraltet. Bitte laden Sie die Seite neu.",
+ "Please select an option": "Bitte wählen Sie eine Option aus",
+ "This field is required.": "Dieses Feld ist erforderlich.",
+ "This field must be less than 255 characters.": "Dieses Feld muss weniger als 255 Zeichen enthalten.",
+ "This field must be at least 2 characters.": "Dieses Feld muss mindestens 2 Zeichen enthalten.",
+ "Hello": "Hallo",
+ "You have requested to reset your password for your account on :appName.": "Sie haben die Rücksetzung Ihres Passworts für Ihr Konto bei :appName angefordert.",
+ "Please click the link below to reset your password.": "Bitte klicken Sie auf den untenstehenden Link, um Ihr Passwort zurückzusetzen.",
+ "Reset Password": "Passwort zurücksetzen",
+ "If you did not request a password reset, please ignore this email or reply to let us know.": "Wenn Sie keine Passwortzurücksetzung angefordert haben, ignorieren Sie diese E-Mail bitte oder antworten Sie, um uns dies mitzuteilen.",
+ "Thank you": "Danke",
+ "Your password has been reset for your account on :appName.": "Ihr Passwort wurde für Ihr Konto bei :appName zurückgesetzt.",
+ "If you did not request a password reset, please immediately contact reset your password.": "Wenn Sie keine Passwortzurücksetzung angefordert haben, setzen Sie Ihr Passwort bitte umgehend zurück.",
+ "You are receiving this communication because you are registered as an attendee for the following event:": "Sie erhalten diese Nachricht, weil Sie als Teilnehmer für die folgende Veranstaltung registriert sind:",
+ "If you believe you have received this email in error,": "Wenn Sie glauben, diese E-Mail irrtümlich erhalten zu haben,",
+ "please contact the event organizer at": "bitte kontaktieren Sie den Veranstalter unter",
+ "If you believe this is spam, please report it to": "Wenn Sie glauben, dass dies Spam ist, melden Sie es bitte an",
+ "You're going to": "Sie gehen zu",
+ "Please find your ticket details below.": "Bitte finden Sie Ihre Ticketdetails unten.",
+ "View Ticket": "Ticket anzeigen",
+ "at": "unter",
+ "Best regards,": "Mit freundlichen Grüßen,",
+ "Your order for": "Ihre Bestellung für",
+ "has been cancelled.": "wurde storniert.",
+ "Order #:": "Bestellung #:",
+ "If you have any questions or need assistance, please respond to this email.": "Wenn Sie Fragen haben oder Unterstützung benötigen, antworten Sie bitte auf diese E-Mail.",
+ "Your recent order for": "Ihre kürzliche Bestellung für",
+ "was not successful.": "war nicht erfolgreich.",
+ "View Event Homepage": "Veranstaltungshomepage anzeigen",
+ "If you have any questions or need assistance, feel free to reach out to our support team": "Wenn Sie Fragen haben oder Unterstützung benötigen, können Sie sich gerne an unser Support-Team wenden",
+ "Best regards": "Mit freundlichen Grüßen",
+ "You have received a refund of :refundAmount for the following event: :eventTitle.": "Sie haben eine Rückerstattung von :refundAmount für die folgende Veranstaltung erhalten: :eventTitle.",
+ "You've received a new order!": "Sie haben eine neue Bestellung erhalten!",
+ "Congratulations! You've received a new order for ": "Herzlichen Glückwunsch! Sie haben eine neue Bestellung für ",
+ "Please find the details below.": "Bitte finden Sie die Details unten.",
+ "Order Amount:": "Bestellbetrag:",
+ "Order ID:": "Bestell-ID:",
+ "View Order": "Bestellung anzeigen",
+ "Ticket": "Ticket",
+ "Price": "Preis",
+ "Total": "Gesamt",
+ "Your recent order for :eventTitle was not successful. The order expired while you were completing the payment. We have issued a refund for the order.": "Ihre kürzliche Bestellung für :eventTitle war nicht erfolgreich. Die Bestellung ist abgelaufen, während Sie die Zahlung abgeschlossen haben. Wir haben eine Rückerstattung für die Bestellung ausgestellt.",
+ "We apologize for the inconvenience. If you have any questions or need assistance, feel free to reach us at": "Wir entschuldigen uns für die Unannehmlichkeiten. Wenn Sie Fragen haben oder Unterstützung benötigen, können Sie uns gerne unter erreichen",
+ "View Event Page": "Veranstaltungsseite anzeigen",
+ "Hi.Events": "Hi.Events",
+ "Your Order is Confirmed! ": "Ihre Bestellung ist bestätigt! ",
+ "Congratulations! Your order for :eventTitle on :eventDate at :eventTime was successful. Please find your order details below.": "Herzlichen Glückwunsch! Ihre Bestellung für :eventTitle am :eventDate um :eventTime war erfolgreich. Bitte finden Sie Ihre Bestelldetails unten.",
+ "Event Details": "Veranstaltungsdetails",
+ "Event Name:": "Veranstaltungsname:",
+ "Date & Time:": "Datum & Uhrzeit:",
+ "Order Summary": "Bestellübersicht",
+ "Order Number:": "Bestellnummer:",
+ "Total Amount:": "Gesamtbetrag:",
+ "View Order Summary & Tickets": "Bestellübersicht & Tickets anzeigen",
+ "If you have any questions or need assistance, feel free to reach out to our friendly support team at": "Wenn Sie Fragen haben oder Unterstützung benötigen, können Sie sich gerne an unser freundliches Support-Team wenden unter",
+ "What's Next?": "Was kommt als nächstes?",
+ "Download Tickets:": "Tickets herunterladen:",
+ "Please download your tickets from the order summary page.": "Bitte laden Sie Ihre Tickets von der Bestellübersichtsseite herunter.",
+ "Prepare for the Event:": "Bereiten Sie sich auf die Veranstaltung vor:",
+ "Make sure to note the event date, time, and location.": "Stellen Sie sicher, dass Sie das Veranstaltungsdatum, die Uhrzeit und den Ort notieren.",
+ "Stay Updated:": "Bleiben Sie auf dem Laufenden:",
+ "Keep an eye on your email for any updates from the event organizer.": "Behalten Sie Ihre E-Mail im Auge für Updates vom Veranstalter.",
+ "Hi :name": "Hallo :name",
+ "Welcome to :appName! We're excited to have you aboard!": "Willkommen bei :appName! Wir freuen uns, Sie an Bord zu haben!",
+ "To get started and activate your account, please click the link below to confirm your email address:": "Um loszulegen und Ihr Konto zu aktivieren, klicken Sie bitte auf den untenstehenden Link, um Ihre E-Mail-Adresse zu bestätigen:",
+ "Confirm Your Email": "Bestätigen Sie Ihre E-Mail",
+ "If you did not create an account with us, no further action is required. Your email address will not be used without confirmation.": "Wenn Sie kein Konto bei uns erstellt haben, sind keine weiteren Maßnahmen erforderlich. Ihre E-Mail-Adresse wird ohne Bestätigung nicht verwendet.",
+ "Best Regards,": "Mit freundlichen Grüßen,",
+ "The :appName Team": "Das :appName-Team",
+ "You have requested to change your email address to :pendingEmail. Please click the link below to confirm this change.": "Sie haben die Änderung Ihrer E-Mail-Adresse zu :pendingEmail angefordert. Bitte klicken Sie auf den untenstehenden Link, um diese Änderung zu bestätigen.",
+ "Confirm email change": "E-Mail-Änderung bestätigen",
+ "If you did not request this change, please immediately change your password.": "Wenn Sie diese Änderung nicht angefordert haben, ändern Sie bitte sofort Ihr Passwort.",
+ "Thanks,": "Danke,",
+ "You've been invited to join :appName.": "Sie wurden eingeladen, sich :appName anzuschließen.",
+ "To accept the invitation, please click the link below:": "Um die Einladung anzunehmen, klicken Sie bitte auf den untenstehenden Link:",
+ "Accept Invitation": "Einladung annehmen",
+ "All rights reserved.": "Alle Rechte vorbehalten.",
+ "Congratulations 🎉": "Herzlichen Glückwunsch 🎉",
+ "Your order has been cancelled": "Ihre Bestellung wurde storniert",
+ "You've received a refund": "Sie haben eine Rückerstattung erhalten",
+ "Your Order is Confirmed!": "Ihre Bestellung ist bestätigt!",
+ "Password reset": "Passwort zurücksetzen",
+ "Your password has been reset": "Ihr Passwort wurde zurückgesetzt",
+ "You've been invited to join :appName": "Sie wurden eingeladen, sich :appName anzuschließen",
+ "There is already a refund pending for this order.\n Please wait for the refund to be processed before requesting another one.": "Es gibt bereits eine Rückerstattung für diese Bestellung.\n Bitte warten Sie, bis die Rückerstattung bearbeitet wurde, bevor Sie eine weitere anfordern.",
+ "Your order wasn\\'t successful": "",
+ "You\\'ve received a refund": "",
+ "You\\'ve been invited to join :appName": "",
+ "You haven\\'t selected any tickets": "",
+ "Cannot delete ticket price with id :id because it has sales": "",
+ "There are no tickets available. ' .\n 'If you would like to assign a ticket to this attendee,' .\n ' please adjust the ticket\\'s available quantity.": "",
+ "There are no tickets available. ' .\n 'If you would like to assign this ticket to this attendee,' .\n ' please adjust the ticket\\'s available quantity.": "",
+ "You must verify your account before you can update an event\\'s status.\n You can resend the confirmation by visiting your profile page.": "",
+ "You\\'re going to": "",
+ "If you have any questions or need assistance, please reply to this email or contact the event organizer": "",
+ "You\\'ve received a new order!": "",
+ "Congratulations! You\\'ve received a new order for ": "",
+ "What\\'s Next?": "",
+ "Welcome to :appName! We\\'re excited to have you aboard!": "",
+ "You\\'ve been invited to join :appName.": ""
+}
\ No newline at end of file
diff --git a/backend/lang/es.json b/backend/lang/es.json
new file mode 100644
index 00000000..b0eb7d3f
--- /dev/null
+++ b/backend/lang/es.json
@@ -0,0 +1,263 @@
+{
+ "Older First": "",
+ "Newer First": "",
+ "Recently Updated First": "",
+ "Recently Updated Last": "",
+ "First Name A-Z": "",
+ "First Name Z-A": "",
+ "Last Name A-Z": "",
+ "Last Name Z-A": "",
+ "Status A-Z": "",
+ "Status Z-A": "",
+ "Closest start date": "",
+ "Furthest start date": "",
+ "Closest end date": "",
+ "Furthest end date": "",
+ "Newest first": "",
+ "Oldest first": "",
+ "Recently Updated": "",
+ "Least Recently Updated": "",
+ "Oldest First": "",
+ "Newest First": "",
+ "Buyer Name A-Z": "",
+ "Buyer Name Z-A": "",
+ "Amount Ascending": "",
+ "Amount Descending": "",
+ "Buyer Email A-Z": "",
+ "Buyer Email Z-A": "",
+ "Order # Ascending": "",
+ "Order # Descending": "",
+ "Code Name A-Z": "",
+ "Code Name Z-A": "",
+ "Usage Count Ascending": "",
+ "Usage Count Descending": "",
+ "Homepage order": "",
+ "Title A-Z": "",
+ "Title Z-A": "",
+ "Sale start date closest": "",
+ "Sale start date furthest": "",
+ "Sale end date closest": "",
+ "Sale end date furthest": "",
+ "Account registration is disabled": "",
+ "The invitation has expired": "",
+ "The invitation is invalid": "",
+ "Invitation valid, but user not found": "",
+ "No user found for this invitation. The invitation may have been revoked.": "",
+ "Logout Successful": "",
+ "Your password has been reset. Please login with your new password.": "",
+ "No account ID found in token": "",
+ "Event with ID :eventId is not live and user is not authenticated": "",
+ "Sorry, we could not verify your session. Please restart your order.": "",
+ "The email confirmation link has expired. Please request a new one.": "",
+ "The email confirmation link is invalid.": "",
+ "No invitation found for this user.": "",
+ "User status is not Invited": "",
+ "Email is required": "",
+ "Email must be a valid email address": "",
+ "First name is required": "",
+ "Last name is required": "",
+ "Ticket is required": "",
+ "Ticket price is required": "",
+ "Please enter a valid hex color code. In the format #000000 or #000.": "",
+ "The maximum timeout is 2 hours.": "",
+ "The address line 1 field is required": "",
+ "The city field is required": "",
+ "The zip or postal code field is required": "",
+ "The country field is required": "",
+ "The country field should be a 2 character ISO 3166 code": "",
+ "Please select at least one ticket.": "",
+ "The sale end date must be after the sale start date.": "",
+ "The sale end date must be a valid date.": "",
+ "The sale start date must be after the ticket sale start date.": "",
+ "Welcome to :app_name! Please confirm your email address": "",
+ "🎟️ Your Ticket for :event": "",
+ "Your order wasn't successful": "",
+ "We were unable to process your order": "",
+ "New order for :amount for :event 🎉": "",
+ "New order for :event 🎉": "",
+ "Current account ID is not set": "",
+ "User not found in this account": "",
+ "User not found": "",
+ "Username or Password are incorrect": "",
+ "Account not found": "",
+ "Attempt to log in to a non-active account": "",
+ "User account is not active": "",
+ "Invalid reset token": "",
+ "Reset token has expired": "",
+ "Event daily statistics updated for event :event_id with total refunded amount of :amount": "",
+ "Event statistics updated for event :event_id with total refunded amount of :amount": "",
+ "This promo code is invalid": "",
+ "You haven't selected any tickets": "",
+ "The maximum number of tickets available for :tickets is :max": "",
+ "You must order at least :min tickets for :ticket": "",
+ "The minimum amount is :price": "",
+ "The ticket :ticket is sold out": "",
+ ":field must be specified": "",
+ "Invalid price ID": "",
+ "The maximum number of tickets available for :ticket is :max": "",
+ "Ticket with id :id not found": "",
+ "Failed to refund stripe charge": "",
+ "Payment was successful, but order has expired. Order: :id": "",
+ "Order is not awaiting payment. Order: :id": "",
+ "There was an error communicating with the payment provider. Please try again later.": "",
+ "Stripe Connect account not found for the event organizer": "",
+ "Cannot Refund: Stripe connect account not found and saas_mode_enabled is enabled": "",
+ "Invalid calculation type": "",
+ "One or more tax IDs are invalid": "",
+ "Invalid ticket ids: :ids": "",
+ "Cannot delete ticket price with id :id because it has sales": "",
+ "Order has no order items": "",
+ "There is already an account associated with this email. Please log in instead.": "",
+ "Stripe Connect Account creation is only available in Saas Mode.": "",
+ "There are issues with creating or fetching the Stripe Connect Account. Please try again.": "",
+ "There are issues with creating the Stripe Connect Account Link. Please try again.": "",
+ "Cannot check in attendee as they are not active.": "",
+ "in": "",
+ "out": "",
+ "There are no tickets available. ' .\n 'If you would like to assign a ticket to this attendee,' .\n ' please adjust the ticket's available quantity.": "",
+ "The ticket price ID is invalid.": "",
+ "Ticket ID is not valid": "",
+ "There are no tickets available. ' .\n 'If you would like to assign this ticket to this attendee,' .\n ' please adjust the ticket's available quantity.": "",
+ "Attendee ID is not valid": "",
+ "The invitation does not exist": "",
+ "The invitation has already been accepted": "",
+ "Organizer :id not found": "",
+ "Continue": "",
+ "Event :id not found": "",
+ "You cannot change the currency of an event that has completed orders": "",
+ "You must verify your account before you can update an event's status.\n You can resend the confirmation by visiting your profile page.": "",
+ "You cannot send messages until your account is verified.": "",
+ "Order not found": "",
+ "Order already cancelled": "",
+ "Failed to create attendee": "",
+ "This order is has already been processed": "",
+ "This order has expired": "",
+ "This order has already been processed": "",
+ "There is an unexpected ticket price ID in the order": "",
+ "This event is not live.": "",
+ "Sorry, we could not verify your session. Please create a new order.": "",
+ "There is no Stripe data associated with this order.": "",
+ "There is already a refund pending for this order. '\n . 'Please wait for the refund to be processed before requesting another one.": "",
+ "Promo code :code already exists": "",
+ "The code :code is already in use for this event": "",
+ "You cannot delete this question as there as answers associated with it. You can hide the question instead.": "",
+ "One or more of the ordered question IDs do not exist for the event.": "",
+ "You cannot delete this ticket because it has orders associated with it. You can hide it instead.": "",
+ "Ticket type cannot be changed as tickets have been registered for this type": "",
+ "The ordered ticket IDs must exactly match all tickets for the event without missing or extra IDs.": "",
+ "No email change pending": "",
+ "The email :email already exists on this account": "",
+ "You are not authorized to perform this action.": "",
+ "Your account is not active.": "",
+ "Payload has expired or is invalid.": "",
+ "Payload could not be decrypted.": "",
+ "Could not upload image to :disk. Check :disk is configured correctly": "",
+ "Could not upload image": "",
+ "Length must be a positive integer.": "",
+ "Prefix length exceeds the total desired token length.": "",
+ "A valid email is required": "",
+ "The title field is required": "",
+ "The attribute name is required": "",
+ "The attribute value is required": "",
+ "The attribute is_public fields is required": "",
+ "Required questions have not been answered. You may need to reload the page.": "",
+ "This question is outdated. Please reload the page.": "",
+ "Please select an option": "",
+ "This field is required.": "",
+ "This field must be less than 255 characters.": "",
+ "This field must be at least 2 characters.": "",
+ "Hello": "",
+ "You have requested to reset your password for your account on :appName.": "",
+ "Please click the link below to reset your password.": "",
+ "Reset Password": "",
+ "If you did not request a password reset, please ignore this email or reply to let us know.": "",
+ "Thank you": "",
+ "Your password has been reset for your account on :appName.": "",
+ "If you did not request a password reset, please immediately contact reset your password.": "",
+ "You are receiving this communication because you are registered as an attendee for the following event:": "",
+ "If you believe you have received this email in error,": "",
+ "please contact the event organizer at": "",
+ "If you believe this is spam, please report it to": "",
+ "You're going to": "",
+ "Please find your ticket details below.": "",
+ "View Ticket": "",
+ "If you have any questions or need assistance, please reply to this email or contact the event organizer": "",
+ "at": "",
+ "Best regards,": "",
+ "Your order for": "",
+ "has been cancelled.": "",
+ "Order #:": "",
+ "If you have any questions or need assistance, please respond to this email.": "",
+ "Your recent order for": "",
+ "was not successful.": "",
+ "View Event Homepage": "",
+ "If you have any questions or need assistance, feel free to reach out to our support team": "",
+ "Best regards": "",
+ "You have received a refund of :refundAmount for the following event: :eventTitle.": "",
+ "You've received a new order!": "",
+ "Congratulations! You've received a new order for ": "",
+ "Please find the details below.": "",
+ "Order Amount:": "",
+ "Order ID:": "",
+ "View Order": "",
+ "Ticket": "",
+ "Price": "",
+ "Total": "",
+ "Your recent order for :eventTitle was not successful. The order expired while you were completing the payment. We have issued a refund for the order.": "",
+ "We apologize for the inconvenience. If you have any questions or need assistance, feel free to reach us at": "",
+ "View Event Page": "",
+ "Hi.Events": "",
+ "Your Order is Confirmed! ": "",
+ "Congratulations! Your order for :eventTitle on :eventDate at :eventTime was successful. Please find your order details below.": "",
+ "Event Details": "",
+ "Event Name:": "",
+ "Date & Time:": "",
+ "Order Summary": "",
+ "Order Number:": "",
+ "Total Amount:": "",
+ "View Order Summary & Tickets": "",
+ "If you have any questions or need assistance, feel free to reach out to our friendly support team at": "",
+ "What's Next?": "",
+ "Download Tickets:": "",
+ "Please download your tickets from the order summary page.": "",
+ "Prepare for the Event:": "",
+ "Make sure to note the event date, time, and location.": "",
+ "Stay Updated:": "",
+ "Keep an eye on your email for any updates from the event organizer.": "",
+ "Hi :name": "",
+ "Welcome to :appName! We're excited to have you aboard!": "",
+ "To get started and activate your account, please click the link below to confirm your email address:": "",
+ "Confirm Your Email": "",
+ "If you did not create an account with us, no further action is required. Your email address will not be used without confirmation.": "",
+ "Best Regards,": "",
+ "The :appName Team": "",
+ "You have requested to change your email address to :pendingEmail. Please click the link below to confirm this change.": "",
+ "Confirm email change": "",
+ "If you did not request this change, please immediately change your password.": "",
+ "Thanks,": "",
+ "You've been invited to join :appName.": "",
+ "To accept the invitation, please click the link below:": "",
+ "Accept Invitation": "",
+ "All rights reserved.": "",
+ "Congratulations 🎉": "",
+ "Your order has been cancelled": "",
+ "You've received a refund": "",
+ "Your Order is Confirmed!": "",
+ "Password reset": "",
+ "Your password has been reset": "",
+ "You've been invited to join :appName": "",
+ "There is already a refund pending for this order.\n Please wait for the refund to be processed before requesting another one.": "",
+ "Your order wasn\\'t successful": "",
+ "You\\'ve received a refund": "",
+ "You\\'ve been invited to join :appName": "",
+ "You haven\\'t selected any tickets": "",
+ "There are no tickets available. ' .\n 'If you would like to assign a ticket to this attendee,' .\n ' please adjust the ticket\\'s available quantity.": "",
+ "There are no tickets available. ' .\n 'If you would like to assign this ticket to this attendee,' .\n ' please adjust the ticket\\'s available quantity.": "",
+ "You must verify your account before you can update an event\\'s status.\n You can resend the confirmation by visiting your profile page.": "",
+ "You\\'re going to": "",
+ "You\\'ve received a new order!": "",
+ "Congratulations! You\\'ve received a new order for ": "",
+ "What\\'s Next?": "",
+ "Welcome to :appName! We\\'re excited to have you aboard!": "",
+ "You\\'ve been invited to join :appName.": ""
+}
\ No newline at end of file
diff --git a/backend/lang/fr.json b/backend/lang/fr.json
new file mode 100644
index 00000000..b595de9b
--- /dev/null
+++ b/backend/lang/fr.json
@@ -0,0 +1,263 @@
+{
+ "Older First": "Plus ancien en premier",
+ "Newer First": "Plus récent en premier",
+ "Recently Updated First": "Récemment mis à jour en premier",
+ "Recently Updated Last": "Récemment mis à jour en dernier",
+ "First Name A-Z": "Prénom A-Z",
+ "First Name Z-A": "Prénom Z-A",
+ "Last Name A-Z": "Nom A-Z",
+ "Last Name Z-A": "Nom Z-A",
+ "Status A-Z": "Statut A-Z",
+ "Status Z-A": "Statut Z-A",
+ "Closest start date": "Date de début la plus proche",
+ "Furthest start date": "Date de début la plus éloignée",
+ "Closest end date": "Date de fin la plus proche",
+ "Furthest end date": "Date de fin la plus éloignée",
+ "Newest first": "Plus récent en premier",
+ "Oldest first": "Plus ancien en premier",
+ "Recently Updated": "Récemment mis à jour",
+ "Least Recently Updated": "Le moins récemment mis à jour",
+ "Oldest First": "Plus ancien en premier",
+ "Newest First": "Plus récent en premier",
+ "Buyer Name A-Z": "Nom de l'acheteur A-Z",
+ "Buyer Name Z-A": "Nom de l'acheteur Z-A",
+ "Amount Ascending": "Montant croissant",
+ "Amount Descending": "Montant décroissant",
+ "Buyer Email A-Z": "Email de l'acheteur A-Z",
+ "Buyer Email Z-A": "Email de l'acheteur Z-A",
+ "Order # Ascending": "Numéro de commande croissant",
+ "Order # Descending": "Numéro de commande décroissant",
+ "Code Name A-Z": "Nom de code A-Z",
+ "Code Name Z-A": "Nom de code Z-A",
+ "Usage Count Ascending": "Nombre d'utilisations croissant",
+ "Usage Count Descending": "Nombre d'utilisations décroissant",
+ "Homepage order": "Ordre de la page d'accueil",
+ "Title A-Z": "Titre A-Z",
+ "Title Z-A": "Titre Z-A",
+ "Sale start date closest": "Date de début de vente la plus proche",
+ "Sale start date furthest": "Date de début de vente la plus éloignée",
+ "Sale end date closest": "Date de fin de vente la plus proche",
+ "Sale end date furthest": "Date de fin de vente la plus éloignée",
+ "Account registration is disabled": "L'inscription au compte est désactivée",
+ "The invitation has expired": "L'invitation a expiré",
+ "The invitation is invalid": "L'invitation est invalide",
+ "Invitation valid, but user not found": "Invitation valide, mais utilisateur non trouvé",
+ "No user found for this invitation. The invitation may have been revoked.": "Aucun utilisateur trouvé pour cette invitation. L'invitation a peut-être été révoquée.",
+ "Logout Successful": "Déconnexion réussie",
+ "Your password has been reset. Please login with your new password.": "Votre mot de passe a été réinitialisé. Veuillez vous connecter avec votre nouveau mot de passe.",
+ "No account ID found in token": "Aucun identifiant de compte trouvé dans le jeton",
+ "Event with ID :eventId is not live and user is not authenticated": "L'événement avec l'ID :eventId n'est pas en direct et l'utilisateur n'est pas authentifié",
+ "Sorry, we could not verify your session. Please restart your order.": "Désolé, nous n'avons pas pu vérifier votre session. Veuillez recommencer votre commande.",
+ "The email confirmation link has expired. Please request a new one.": "Le lien de confirmation de l'email a expiré. Veuillez en demander un nouveau.",
+ "The email confirmation link is invalid.": "Le lien de confirmation de l'email est invalide.",
+ "No invitation found for this user.": "Aucune invitation trouvée pour cet utilisateur.",
+ "User status is not Invited": "Le statut de l'utilisateur n'est pas Invité",
+ "Email is required": "L'email est requis",
+ "Email must be a valid email address": "L'email doit être une adresse email valide",
+ "First name is required": "Le prénom est requis",
+ "Last name is required": "Le nom de famille est requis",
+ "Ticket is required": "Le billet est requis",
+ "Ticket price is required": "Le prix du billet est requis",
+ "Please enter a valid hex color code. In the format #000000 or #000.": "Veuillez entrer un code couleur hexadécimal valide. Au format #000000 ou #000.",
+ "The maximum timeout is 2 hours.": "Le délai maximum est de 2 heures.",
+ "The address line 1 field is required": "Le champ de l'adresse ligne 1 est requis",
+ "The city field is required": "Le champ de la ville est requis",
+ "The zip or postal code field is required": "Le champ du code postal est requis",
+ "The country field is required": "Le champ du pays est requis",
+ "The country field should be a 2 character ISO 3166 code": "Le champ du pays doit être un code ISO 3166 à 2 caractères",
+ "Please select at least one ticket.": "Veuillez sélectionner au moins un billet.",
+ "The sale end date must be after the sale start date.": "La date de fin de vente doit être après la date de début de vente.",
+ "The sale end date must be a valid date.": "La date de fin de vente doit être une date valide.",
+ "The sale start date must be after the ticket sale start date.": "La date de début de vente doit être après la date de début de vente des billets.",
+ "Welcome to :app_name! Please confirm your email address": "Bienvenue sur :app_name! Veuillez confirmer votre adresse email",
+ "🎟️ Your Ticket for :event": "🎟️ Votre billet pour :event",
+ "Your order wasn't successful": "Votre commande n'a pas abouti",
+ "We were unable to process your order": "Nous n'avons pas pu traiter votre commande",
+ "New order for :amount for :event 🎉": "Nouvelle commande de :amount pour :event 🎉",
+ "New order for :event 🎉": "Nouvelle commande pour :event 🎉",
+ "Current account ID is not set": "L'ID du compte actuel n'est pas défini",
+ "User not found in this account": "Utilisateur non trouvé dans ce compte",
+ "User not found": "Utilisateur non trouvé",
+ "Username or Password are incorrect": "Nom d'utilisateur ou mot de passe incorrect",
+ "Account not found": "Compte non trouvé",
+ "Attempt to log in to a non-active account": "Tentative de connexion à un compte non actif",
+ "User account is not active": "Le compte utilisateur n'est pas actif",
+ "Invalid reset token": "Jeton de réinitialisation invalide",
+ "Reset token has expired": "Le jeton de réinitialisation a expiré",
+ "Event daily statistics updated for event :event_id with total refunded amount of :amount": "Les statistiques quotidiennes de l'événement ont été mises à jour pour l'événement :event_id avec un montant total remboursé de :amount",
+ "Event statistics updated for event :event_id with total refunded amount of :amount": "Les statistiques de l'événement ont été mises à jour pour l'événement :event_id avec un montant total remboursé de :amount",
+ "This promo code is invalid": "Ce code promo est invalide",
+ "You haven't selected any tickets": "Vous n'avez sélectionné aucun billet",
+ "The maximum number of tickets available for :tickets is :max": "Le nombre maximum de billets disponibles pour :tickets est de :max",
+ "You must order at least :min tickets for :ticket": "Vous devez commander au moins :min billets pour :ticket",
+ "The minimum amount is :price": "Le montant minimum est de :price",
+ "The ticket :ticket is sold out": "Le billet :ticket est épuisé",
+ ":field must be specified": ":field doit être spécifié",
+ "Invalid price ID": "ID de prix invalide",
+ "The maximum number of tickets available for :ticket is :max": "Le nombre maximum de billets disponibles pour :ticket est de :max",
+ "Ticket with id :id not found": "Billet avec ID :id non trouvé",
+ "Failed to refund stripe charge": "Échec du remboursement de la charge stripe",
+ "Payment was successful, but order has expired. Order: :id": "Le paiement a été effectué avec succès, mais la commande a expiré. Commande : :id",
+ "Order is not awaiting payment. Order: :id": "La commande n'attend pas de paiement. Commande : :id",
+ "There was an error communicating with the payment provider. Please try again later.": "Une erreur est survenue lors de la communication avec le fournisseur de paiement. Veuillez réessayer plus tard.",
+ "Stripe Connect account not found for the event organizer": "Compte Stripe Connect non trouvé pour l'organisateur de l'événement",
+ "Cannot Refund: Stripe connect account not found and saas_mode_enabled is enabled": "Impossible de rembourser : compte Stripe Connect non trouvé et saas_mode_enabled est activé",
+ "Invalid calculation type": "Type de calcul invalide",
+ "One or more tax IDs are invalid": "Un ou plusieurs IDs fiscaux sont invalides",
+ "Invalid ticket ids: :ids": "IDs de billets invalides : :ids",
+ "Cannot delete ticket price with id :id because it has sales": "Impossible de supprimer le prix du billet avec l'ID :id car il y a des ventes",
+ "Order has no order items": "La commande n'a pas d'articles",
+ "There is already an account associated with this email. Please log in instead.": "Il existe déjà un compte associé à cet email. Veuillez vous connecter à la place.",
+ "Stripe Connect Account creation is only available in Saas Mode.": "La création de compte Stripe Connect est uniquement disponible en mode Saas.",
+ "There are issues with creating or fetching the Stripe Connect Account. Please try again.": "Il y a des problèmes lors de la création ou de la récupération du compte Stripe Connect. Veuillez réessayer.",
+ "There are issues with creating the Stripe Connect Account Link. Please try again.": "Il y a des problèmes lors de la création du lien de compte Stripe Connect. Veuillez réessayer.",
+ "Cannot check in attendee as they are not active.": "Impossible d'enregistrer le participant car il n'est pas actif.",
+ "in": "entrée",
+ "out": "sortie",
+ "There are no tickets available. ' .\n 'If you would like to assign a ticket to this attendee,' .\n ' please adjust the ticket's available quantity.": "Il n'y a pas de billets disponibles. ' .\n 'Si vous souhaitez attribuer un billet à ce participant,' .\n ' veuillez ajuster la quantité de billets disponible.",
+ "The ticket price ID is invalid.": "L'ID du prix du billet est invalide.",
+ "Ticket ID is not valid": "L'ID du billet n'est pas valide",
+ "There are no tickets available. ' .\n 'If you would like to assign this ticket to this attendee,' .\n ' please adjust the ticket's available quantity.": "Il n'y a pas de billets disponibles. ' .\n 'Si vous souhaitez attribuer ce billet à ce participant,' .\n ' veuillez ajuster la quantité de billets disponible.",
+ "Attendee ID is not valid": "L'ID du participant n'est pas valide",
+ "The invitation does not exist": "L'invitation n'existe pas",
+ "The invitation has already been accepted": "L'invitation a déjà été acceptée",
+ "Organizer :id not found": "Organisateur :id non trouvé",
+ "Continue": "Continuer",
+ "Event :id not found": "Événement :id non trouvé",
+ "You cannot change the currency of an event that has completed orders": "Vous ne pouvez pas changer la devise d'un événement qui a des commandes terminées",
+ "You must verify your account before you can update an event's status.\n You can resend the confirmation by visiting your profile page.": "Vous devez vérifier votre compte avant de pouvoir mettre à jour le statut d'un événement.\n Vous pouvez renvoyer la confirmation en visitant votre page de profil.",
+ "You cannot send messages until your account is verified.": "Vous ne pouvez pas envoyer de messages tant que votre compte n'est pas vérifié.",
+ "Order not found": "Commande non trouvée",
+ "Order already cancelled": "Commande déjà annulée",
+ "Failed to create attendee": "Échec de la création du participant",
+ "This order is has already been processed": "Cette commande a déjà été traitée",
+ "This order has expired": "Cette commande a expiré",
+ "This order has already been processed": "Cette commande a déjà été traitée",
+ "There is an unexpected ticket price ID in the order": "Il y a un ID de prix de billet inattendu dans la commande",
+ "This event is not live.": "Cet événement n'est pas en direct.",
+ "Sorry, we could not verify your session. Please create a new order.": "Désolé, nous n'avons pas pu vérifier votre session. Veuillez créer une nouvelle commande.",
+ "There is no Stripe data associated with this order.": "Il n'y a pas de données Stripe associées à cette commande.",
+ "There is already a refund pending for this order.\n Please wait for the refund to be processed before requesting another one.": "Il y a déjà un remboursement en attente pour cette commande.\n Veuillez attendre que le remboursement soit traité avant d'en demander un autre.",
+ "Promo code :code already exists": "Le code promo :code existe déjà",
+ "The code :code is already in use for this event": "Le code :code est déjà utilisé pour cet événement",
+ "You cannot delete this question as there as answers associated with it. You can hide the question instead.": "Vous ne pouvez pas supprimer cette question car des réponses y sont associées. Vous pouvez masquer la question à la place.",
+ "One or more of the ordered question IDs do not exist for the event.": "Un ou plusieurs des IDs de questions commandées n'existent pas pour l'événement.",
+ "You cannot delete this ticket because it has orders associated with it. You can hide it instead.": "Vous ne pouvez pas supprimer ce billet car il y a des commandes associées. Vous pouvez le masquer à la place.",
+ "Ticket type cannot be changed as tickets have been registered for this type": "Le type de billet ne peut pas être changé car des billets ont été enregistrés pour ce type",
+ "The ordered ticket IDs must exactly match all tickets for the event without missing or extra IDs.": "Les IDs de billets commandés doivent correspondre exactement à tous les billets de l'événement sans IDs manquants ou supplémentaires.",
+ "No email change pending": "Aucun changement d'email en attente",
+ "The email :email already exists on this account": "L'email :email existe déjà sur ce compte",
+ "You are not authorized to perform this action.": "Vous n'êtes pas autorisé à effectuer cette action.",
+ "Your account is not active.": "Votre compte n'est pas actif.",
+ "Payload has expired or is invalid.": "La charge utile a expiré ou est invalide.",
+ "Payload could not be decrypted.": "La charge utile n'a pas pu être décryptée.",
+ "Could not upload image to :disk. Check :disk is configured correctly": "Impossible de télécharger l'image sur :disk. Vérifiez que :disk est correctement configuré",
+ "Could not upload image": "Impossible de télécharger l'image",
+ "Length must be a positive integer.": "La longueur doit être un entier positif.",
+ "Prefix length exceeds the total desired token length.": "La longueur du préfixe dépasse la longueur totale souhaitée du jeton.",
+ "A valid email is required": "Un email valide est requis",
+ "The title field is required": "Le champ du titre est requis",
+ "The attribute name is required": "Le nom de l'attribut est requis",
+ "The attribute value is required": "La valeur de l'attribut est requise",
+ "The attribute is_public fields is required": "Le champ is_public de l'attribut est requis",
+ "Required questions have not been answered. You may need to reload the page.": "Les questions requises n'ont pas été répondues. Vous devrez peut-être recharger la page.",
+ "This question is outdated. Please reload the page.": "Cette question est obsolète. Veuillez recharger la page.",
+ "Please select an option": "Veuillez sélectionner une option",
+ "This field is required.": "Ce champ est requis.",
+ "This field must be less than 255 characters.": "Ce champ doit contenir moins de 255 caractères.",
+ "This field must be at least 2 characters.": "Ce champ doit contenir au moins 2 caractères.",
+ "Welcome to :appName! We're excited to have you aboard!": "Bienvenue sur :appName! Nous sommes ravis de vous avoir à bord!",
+ "To get started and activate your account, please click the link below to confirm your email address:": "Pour commencer et activer votre compte, veuillez cliquer sur le lien ci-dessous pour confirmer votre adresse email :",
+ "Confirm Your Email": "Confirmez votre email",
+ "If you did not create an account with us, no further action is required. Your email address will not be used without confirmation.": "Si vous n'avez pas créé de compte chez nous, aucune action supplémentaire n'est requise. Votre adresse email ne sera pas utilisée sans confirmation.",
+ "Best Regards,": "Cordialement,",
+ "The :appName Team": "L'équipe de :appName",
+ "All rights reserved.": "Tous droits réservés.",
+ "Congratulations 🎉": "Félicitations 🎉",
+ "There is already a refund pending for this order. '\n . 'Please wait for the refund to be processed before requesting another one.": "Un remboursement est déjà en attente pour cette commande. Veuillez attendre que le remboursement soit traité avant d'en demander un autre.",
+ "Hello": "Bonjour",
+ "You have requested to reset your password for your account on :appName.": "Vous avez demandé à réinitialiser votre mot de passe pour votre compte sur :appName.",
+ "Please click the link below to reset your password.": "Veuillez cliquer sur le lien ci-dessous pour réinitialiser votre mot de passe.",
+ "Reset Password": "Réinitialiser le mot de passe",
+ "If you did not request a password reset, please ignore this email or reply to let us know.": "Si vous n'avez pas demandé de réinitialisation de mot de passe, veuillez ignorer cet e-mail ou répondre pour nous en informer.",
+ "Thank you": "Merci",
+ "Your password has been reset for your account on :appName.": "Votre mot de passe a été réinitialisé pour votre compte sur :appName.",
+ "If you did not request a password reset, please immediately contact reset your password.": "Si vous n'avez pas demandé de réinitialisation de mot de passe, veuillez immédiatement contacter la réinitialisation de votre mot de passe.",
+ "You are receiving this communication because you are registered as an attendee for the following event:": "Vous recevez cette communication parce que vous êtes inscrit en tant que participant à l'événement suivant :",
+ "If you believe you have received this email in error,": "Si vous pensez avoir reçu cet e-mail par erreur,",
+ "please contact the event organizer at": "veuillez contacter l'organisateur de l'événement à",
+ "If you believe this is spam, please report it to": "Si vous pensez qu'il s'agit d'un spam, veuillez le signaler à",
+ "You're going to": "Vous allez à",
+ "Please find your ticket details below.": "Veuillez trouver les détails de votre billet ci-dessous.",
+ "View Ticket": "Voir le billet",
+ "If you have any questions or need assistance, please reply to this email or contact the event organizer": "Si vous avez des questions ou besoin d'aide, veuillez répondre à cet e-mail ou contacter l'organisateur de l'événement",
+ "at": "à",
+ "Best regards,": "Cordialement,",
+ "Your order for": "Votre commande pour",
+ "has been cancelled.": "a été annulée.",
+ "Order #:": "Commande n° :",
+ "If you have any questions or need assistance, please respond to this email.": "Si vous avez des questions ou besoin d'aide, veuillez répondre à cet e-mail.",
+ "Your recent order for": "Votre commande récente pour",
+ "was not successful.": "n'a pas été réussie.",
+ "View Event Homepage": "Voir la page d'accueil de l'événement",
+ "If you have any questions or need assistance, feel free to reach out to our support team": "Si vous avez des questions ou besoin d'aide, n'hésitez pas à contacter notre équipe de support",
+ "Best regards": "Cordialement",
+ "You have received a refund of :refundAmount for the following event: :eventTitle.": "Vous avez reçu un remboursement de :refundAmount pour l'événement suivant : :eventTitle.",
+ "You've received a new order!": "Vous avez reçu une nouvelle commande !",
+ "Congratulations! You've received a new order for ": "Félicitations ! Vous avez reçu une nouvelle commande pour ",
+ "Please find the details below.": "Veuillez trouver les détails ci-dessous.",
+ "Order Amount:": "Montant de la commande :",
+ "Order ID:": "ID de la commande :",
+ "View Order": "Voir la commande",
+ "Ticket": "Billet",
+ "Price": "Prix",
+ "Total": "Total",
+ "Your recent order for :eventTitle was not successful. The order expired while you were completing the payment. We have issued a refund for the order.": "Votre commande récente pour :eventTitle n'a pas été réussie. La commande a expiré pendant que vous complétiez le paiement. Nous avons émis un remboursement pour la commande.",
+ "We apologize for the inconvenience. If you have any questions or need assistance, feel free to reach us at": "Nous nous excusons pour le désagrément. Si vous avez des questions ou besoin d'aide, n'hésitez pas à nous contacter à",
+ "View Event Page": "Voir la page de l'événement",
+ "Hi.Events": "Hi.Events",
+ "Your Order is Confirmed! ": "Votre commande est confirmée ! ",
+ "Congratulations! Your order for :eventTitle on :eventDate at :eventTime was successful. Please find your order details below.": "Félicitations ! Votre commande pour :eventTitle le :eventDate à :eventTime a été réussie. Veuillez trouver les détails de votre commande ci-dessous.",
+ "Event Details": "Détails de l'événement",
+ "Event Name:": "Nom de l'événement :",
+ "Date & Time:": "Date & Heure :",
+ "Order Summary": "Résumé de la commande",
+ "Order Number:": "Numéro de commande :",
+ "Total Amount:": "Montant total :",
+ "View Order Summary & Tickets": "Voir le résumé de la commande et les billets",
+ "If you have any questions or need assistance, feel free to reach out to our friendly support team at": "Si vous avez des questions ou besoin d'aide, n'hésitez pas à contacter notre équipe de support amicale à",
+ "What's Next?": "Quelle est la suite ?",
+ "Download Tickets:": "Télécharger les billets :",
+ "Please download your tickets from the order summary page.": "Veuillez télécharger vos billets depuis la page de résumé de la commande.",
+ "Prepare for the Event:": "Préparez-vous pour l'événement :",
+ "Make sure to note the event date, time, and location.": "Assurez-vous de noter la date, l'heure et le lieu de l'événement.",
+ "Stay Updated:": "Restez informé :",
+ "Keep an eye on your email for any updates from the event organizer.": "Gardez un œil sur vos e-mails pour toute mise à jour de l'organisateur de l'événement.",
+ "Hi :name": "Bonjour :name",
+ "You have requested to change your email address to :pendingEmail. Please click the link below to confirm this change.": "Vous avez demandé à changer votre adresse e-mail en :pendingEmail. Veuillez cliquer sur le lien ci-dessous pour confirmer ce changement.",
+ "Confirm email change": "Confirmer le changement d'adresse e-mail",
+ "If you did not request this change, please immediately change your password.": "Si vous n'avez pas demandé ce changement, veuillez immédiatement changer votre mot de passe.",
+ "Thanks,": "Merci,",
+ "You've been invited to join :appName.": "Vous avez été invité à rejoindre :appName.",
+ "To accept the invitation, please click the link below:": "Pour accepter l'invitation, veuillez cliquer sur le lien ci-dessous :",
+ "Accept Invitation": "Accepter l'invitation",
+ "Your order has been cancelled": "Votre commande a été annulée",
+ "You've received a refund": "Vous avez reçu un remboursement",
+ "Your Order is Confirmed!": "Votre commande est confirmée!",
+ "Password reset": "Réinitialisation du mot de passe",
+ "Your password has been reset": "Votre mot de passe a été réinitialisé",
+ "You've been invited to join :appName": "Vous avez été invité à rejoindre :appName",
+ "Your order wasn\\'t successful": "",
+ "You\\'ve received a refund": "",
+ "You\\'ve been invited to join :appName": "",
+ "You haven\\'t selected any tickets": "",
+ "There are no tickets available. ' .\n 'If you would like to assign a ticket to this attendee,' .\n ' please adjust the ticket\\'s available quantity.": "",
+ "There are no tickets available. ' .\n 'If you would like to assign this ticket to this attendee,' .\n ' please adjust the ticket\\'s available quantity.": "",
+ "You must verify your account before you can update an event\\'s status.\n You can resend the confirmation by visiting your profile page.": "",
+ "You\\'re going to": "",
+ "You\\'ve received a new order!": "",
+ "Congratulations! You\\'ve received a new order for ": "",
+ "What\\'s Next?": "",
+ "Welcome to :appName! We\\'re excited to have you aboard!": "",
+ "You\\'ve been invited to join :appName.": ""
+}
\ No newline at end of file
diff --git a/backend/lang/pt-br.json b/backend/lang/pt-br.json
new file mode 100644
index 00000000..b0eb7d3f
--- /dev/null
+++ b/backend/lang/pt-br.json
@@ -0,0 +1,263 @@
+{
+ "Older First": "",
+ "Newer First": "",
+ "Recently Updated First": "",
+ "Recently Updated Last": "",
+ "First Name A-Z": "",
+ "First Name Z-A": "",
+ "Last Name A-Z": "",
+ "Last Name Z-A": "",
+ "Status A-Z": "",
+ "Status Z-A": "",
+ "Closest start date": "",
+ "Furthest start date": "",
+ "Closest end date": "",
+ "Furthest end date": "",
+ "Newest first": "",
+ "Oldest first": "",
+ "Recently Updated": "",
+ "Least Recently Updated": "",
+ "Oldest First": "",
+ "Newest First": "",
+ "Buyer Name A-Z": "",
+ "Buyer Name Z-A": "",
+ "Amount Ascending": "",
+ "Amount Descending": "",
+ "Buyer Email A-Z": "",
+ "Buyer Email Z-A": "",
+ "Order # Ascending": "",
+ "Order # Descending": "",
+ "Code Name A-Z": "",
+ "Code Name Z-A": "",
+ "Usage Count Ascending": "",
+ "Usage Count Descending": "",
+ "Homepage order": "",
+ "Title A-Z": "",
+ "Title Z-A": "",
+ "Sale start date closest": "",
+ "Sale start date furthest": "",
+ "Sale end date closest": "",
+ "Sale end date furthest": "",
+ "Account registration is disabled": "",
+ "The invitation has expired": "",
+ "The invitation is invalid": "",
+ "Invitation valid, but user not found": "",
+ "No user found for this invitation. The invitation may have been revoked.": "",
+ "Logout Successful": "",
+ "Your password has been reset. Please login with your new password.": "",
+ "No account ID found in token": "",
+ "Event with ID :eventId is not live and user is not authenticated": "",
+ "Sorry, we could not verify your session. Please restart your order.": "",
+ "The email confirmation link has expired. Please request a new one.": "",
+ "The email confirmation link is invalid.": "",
+ "No invitation found for this user.": "",
+ "User status is not Invited": "",
+ "Email is required": "",
+ "Email must be a valid email address": "",
+ "First name is required": "",
+ "Last name is required": "",
+ "Ticket is required": "",
+ "Ticket price is required": "",
+ "Please enter a valid hex color code. In the format #000000 or #000.": "",
+ "The maximum timeout is 2 hours.": "",
+ "The address line 1 field is required": "",
+ "The city field is required": "",
+ "The zip or postal code field is required": "",
+ "The country field is required": "",
+ "The country field should be a 2 character ISO 3166 code": "",
+ "Please select at least one ticket.": "",
+ "The sale end date must be after the sale start date.": "",
+ "The sale end date must be a valid date.": "",
+ "The sale start date must be after the ticket sale start date.": "",
+ "Welcome to :app_name! Please confirm your email address": "",
+ "🎟️ Your Ticket for :event": "",
+ "Your order wasn't successful": "",
+ "We were unable to process your order": "",
+ "New order for :amount for :event 🎉": "",
+ "New order for :event 🎉": "",
+ "Current account ID is not set": "",
+ "User not found in this account": "",
+ "User not found": "",
+ "Username or Password are incorrect": "",
+ "Account not found": "",
+ "Attempt to log in to a non-active account": "",
+ "User account is not active": "",
+ "Invalid reset token": "",
+ "Reset token has expired": "",
+ "Event daily statistics updated for event :event_id with total refunded amount of :amount": "",
+ "Event statistics updated for event :event_id with total refunded amount of :amount": "",
+ "This promo code is invalid": "",
+ "You haven't selected any tickets": "",
+ "The maximum number of tickets available for :tickets is :max": "",
+ "You must order at least :min tickets for :ticket": "",
+ "The minimum amount is :price": "",
+ "The ticket :ticket is sold out": "",
+ ":field must be specified": "",
+ "Invalid price ID": "",
+ "The maximum number of tickets available for :ticket is :max": "",
+ "Ticket with id :id not found": "",
+ "Failed to refund stripe charge": "",
+ "Payment was successful, but order has expired. Order: :id": "",
+ "Order is not awaiting payment. Order: :id": "",
+ "There was an error communicating with the payment provider. Please try again later.": "",
+ "Stripe Connect account not found for the event organizer": "",
+ "Cannot Refund: Stripe connect account not found and saas_mode_enabled is enabled": "",
+ "Invalid calculation type": "",
+ "One or more tax IDs are invalid": "",
+ "Invalid ticket ids: :ids": "",
+ "Cannot delete ticket price with id :id because it has sales": "",
+ "Order has no order items": "",
+ "There is already an account associated with this email. Please log in instead.": "",
+ "Stripe Connect Account creation is only available in Saas Mode.": "",
+ "There are issues with creating or fetching the Stripe Connect Account. Please try again.": "",
+ "There are issues with creating the Stripe Connect Account Link. Please try again.": "",
+ "Cannot check in attendee as they are not active.": "",
+ "in": "",
+ "out": "",
+ "There are no tickets available. ' .\n 'If you would like to assign a ticket to this attendee,' .\n ' please adjust the ticket's available quantity.": "",
+ "The ticket price ID is invalid.": "",
+ "Ticket ID is not valid": "",
+ "There are no tickets available. ' .\n 'If you would like to assign this ticket to this attendee,' .\n ' please adjust the ticket's available quantity.": "",
+ "Attendee ID is not valid": "",
+ "The invitation does not exist": "",
+ "The invitation has already been accepted": "",
+ "Organizer :id not found": "",
+ "Continue": "",
+ "Event :id not found": "",
+ "You cannot change the currency of an event that has completed orders": "",
+ "You must verify your account before you can update an event's status.\n You can resend the confirmation by visiting your profile page.": "",
+ "You cannot send messages until your account is verified.": "",
+ "Order not found": "",
+ "Order already cancelled": "",
+ "Failed to create attendee": "",
+ "This order is has already been processed": "",
+ "This order has expired": "",
+ "This order has already been processed": "",
+ "There is an unexpected ticket price ID in the order": "",
+ "This event is not live.": "",
+ "Sorry, we could not verify your session. Please create a new order.": "",
+ "There is no Stripe data associated with this order.": "",
+ "There is already a refund pending for this order. '\n . 'Please wait for the refund to be processed before requesting another one.": "",
+ "Promo code :code already exists": "",
+ "The code :code is already in use for this event": "",
+ "You cannot delete this question as there as answers associated with it. You can hide the question instead.": "",
+ "One or more of the ordered question IDs do not exist for the event.": "",
+ "You cannot delete this ticket because it has orders associated with it. You can hide it instead.": "",
+ "Ticket type cannot be changed as tickets have been registered for this type": "",
+ "The ordered ticket IDs must exactly match all tickets for the event without missing or extra IDs.": "",
+ "No email change pending": "",
+ "The email :email already exists on this account": "",
+ "You are not authorized to perform this action.": "",
+ "Your account is not active.": "",
+ "Payload has expired or is invalid.": "",
+ "Payload could not be decrypted.": "",
+ "Could not upload image to :disk. Check :disk is configured correctly": "",
+ "Could not upload image": "",
+ "Length must be a positive integer.": "",
+ "Prefix length exceeds the total desired token length.": "",
+ "A valid email is required": "",
+ "The title field is required": "",
+ "The attribute name is required": "",
+ "The attribute value is required": "",
+ "The attribute is_public fields is required": "",
+ "Required questions have not been answered. You may need to reload the page.": "",
+ "This question is outdated. Please reload the page.": "",
+ "Please select an option": "",
+ "This field is required.": "",
+ "This field must be less than 255 characters.": "",
+ "This field must be at least 2 characters.": "",
+ "Hello": "",
+ "You have requested to reset your password for your account on :appName.": "",
+ "Please click the link below to reset your password.": "",
+ "Reset Password": "",
+ "If you did not request a password reset, please ignore this email or reply to let us know.": "",
+ "Thank you": "",
+ "Your password has been reset for your account on :appName.": "",
+ "If you did not request a password reset, please immediately contact reset your password.": "",
+ "You are receiving this communication because you are registered as an attendee for the following event:": "",
+ "If you believe you have received this email in error,": "",
+ "please contact the event organizer at": "",
+ "If you believe this is spam, please report it to": "",
+ "You're going to": "",
+ "Please find your ticket details below.": "",
+ "View Ticket": "",
+ "If you have any questions or need assistance, please reply to this email or contact the event organizer": "",
+ "at": "",
+ "Best regards,": "",
+ "Your order for": "",
+ "has been cancelled.": "",
+ "Order #:": "",
+ "If you have any questions or need assistance, please respond to this email.": "",
+ "Your recent order for": "",
+ "was not successful.": "",
+ "View Event Homepage": "",
+ "If you have any questions or need assistance, feel free to reach out to our support team": "",
+ "Best regards": "",
+ "You have received a refund of :refundAmount for the following event: :eventTitle.": "",
+ "You've received a new order!": "",
+ "Congratulations! You've received a new order for ": "",
+ "Please find the details below.": "",
+ "Order Amount:": "",
+ "Order ID:": "",
+ "View Order": "",
+ "Ticket": "",
+ "Price": "",
+ "Total": "",
+ "Your recent order for :eventTitle was not successful. The order expired while you were completing the payment. We have issued a refund for the order.": "",
+ "We apologize for the inconvenience. If you have any questions or need assistance, feel free to reach us at": "",
+ "View Event Page": "",
+ "Hi.Events": "",
+ "Your Order is Confirmed! ": "",
+ "Congratulations! Your order for :eventTitle on :eventDate at :eventTime was successful. Please find your order details below.": "",
+ "Event Details": "",
+ "Event Name:": "",
+ "Date & Time:": "",
+ "Order Summary": "",
+ "Order Number:": "",
+ "Total Amount:": "",
+ "View Order Summary & Tickets": "",
+ "If you have any questions or need assistance, feel free to reach out to our friendly support team at": "",
+ "What's Next?": "",
+ "Download Tickets:": "",
+ "Please download your tickets from the order summary page.": "",
+ "Prepare for the Event:": "",
+ "Make sure to note the event date, time, and location.": "",
+ "Stay Updated:": "",
+ "Keep an eye on your email for any updates from the event organizer.": "",
+ "Hi :name": "",
+ "Welcome to :appName! We're excited to have you aboard!": "",
+ "To get started and activate your account, please click the link below to confirm your email address:": "",
+ "Confirm Your Email": "",
+ "If you did not create an account with us, no further action is required. Your email address will not be used without confirmation.": "",
+ "Best Regards,": "",
+ "The :appName Team": "",
+ "You have requested to change your email address to :pendingEmail. Please click the link below to confirm this change.": "",
+ "Confirm email change": "",
+ "If you did not request this change, please immediately change your password.": "",
+ "Thanks,": "",
+ "You've been invited to join :appName.": "",
+ "To accept the invitation, please click the link below:": "",
+ "Accept Invitation": "",
+ "All rights reserved.": "",
+ "Congratulations 🎉": "",
+ "Your order has been cancelled": "",
+ "You've received a refund": "",
+ "Your Order is Confirmed!": "",
+ "Password reset": "",
+ "Your password has been reset": "",
+ "You've been invited to join :appName": "",
+ "There is already a refund pending for this order.\n Please wait for the refund to be processed before requesting another one.": "",
+ "Your order wasn\\'t successful": "",
+ "You\\'ve received a refund": "",
+ "You\\'ve been invited to join :appName": "",
+ "You haven\\'t selected any tickets": "",
+ "There are no tickets available. ' .\n 'If you would like to assign a ticket to this attendee,' .\n ' please adjust the ticket\\'s available quantity.": "",
+ "There are no tickets available. ' .\n 'If you would like to assign this ticket to this attendee,' .\n ' please adjust the ticket\\'s available quantity.": "",
+ "You must verify your account before you can update an event\\'s status.\n You can resend the confirmation by visiting your profile page.": "",
+ "You\\'re going to": "",
+ "You\\'ve received a new order!": "",
+ "Congratulations! You\\'ve received a new order for ": "",
+ "What\\'s Next?": "",
+ "Welcome to :appName! We\\'re excited to have you aboard!": "",
+ "You\\'ve been invited to join :appName.": ""
+}
\ No newline at end of file
diff --git a/backend/lang/pt.json b/backend/lang/pt.json
new file mode 100644
index 00000000..b0eb7d3f
--- /dev/null
+++ b/backend/lang/pt.json
@@ -0,0 +1,263 @@
+{
+ "Older First": "",
+ "Newer First": "",
+ "Recently Updated First": "",
+ "Recently Updated Last": "",
+ "First Name A-Z": "",
+ "First Name Z-A": "",
+ "Last Name A-Z": "",
+ "Last Name Z-A": "",
+ "Status A-Z": "",
+ "Status Z-A": "",
+ "Closest start date": "",
+ "Furthest start date": "",
+ "Closest end date": "",
+ "Furthest end date": "",
+ "Newest first": "",
+ "Oldest first": "",
+ "Recently Updated": "",
+ "Least Recently Updated": "",
+ "Oldest First": "",
+ "Newest First": "",
+ "Buyer Name A-Z": "",
+ "Buyer Name Z-A": "",
+ "Amount Ascending": "",
+ "Amount Descending": "",
+ "Buyer Email A-Z": "",
+ "Buyer Email Z-A": "",
+ "Order # Ascending": "",
+ "Order # Descending": "",
+ "Code Name A-Z": "",
+ "Code Name Z-A": "",
+ "Usage Count Ascending": "",
+ "Usage Count Descending": "",
+ "Homepage order": "",
+ "Title A-Z": "",
+ "Title Z-A": "",
+ "Sale start date closest": "",
+ "Sale start date furthest": "",
+ "Sale end date closest": "",
+ "Sale end date furthest": "",
+ "Account registration is disabled": "",
+ "The invitation has expired": "",
+ "The invitation is invalid": "",
+ "Invitation valid, but user not found": "",
+ "No user found for this invitation. The invitation may have been revoked.": "",
+ "Logout Successful": "",
+ "Your password has been reset. Please login with your new password.": "",
+ "No account ID found in token": "",
+ "Event with ID :eventId is not live and user is not authenticated": "",
+ "Sorry, we could not verify your session. Please restart your order.": "",
+ "The email confirmation link has expired. Please request a new one.": "",
+ "The email confirmation link is invalid.": "",
+ "No invitation found for this user.": "",
+ "User status is not Invited": "",
+ "Email is required": "",
+ "Email must be a valid email address": "",
+ "First name is required": "",
+ "Last name is required": "",
+ "Ticket is required": "",
+ "Ticket price is required": "",
+ "Please enter a valid hex color code. In the format #000000 or #000.": "",
+ "The maximum timeout is 2 hours.": "",
+ "The address line 1 field is required": "",
+ "The city field is required": "",
+ "The zip or postal code field is required": "",
+ "The country field is required": "",
+ "The country field should be a 2 character ISO 3166 code": "",
+ "Please select at least one ticket.": "",
+ "The sale end date must be after the sale start date.": "",
+ "The sale end date must be a valid date.": "",
+ "The sale start date must be after the ticket sale start date.": "",
+ "Welcome to :app_name! Please confirm your email address": "",
+ "🎟️ Your Ticket for :event": "",
+ "Your order wasn't successful": "",
+ "We were unable to process your order": "",
+ "New order for :amount for :event 🎉": "",
+ "New order for :event 🎉": "",
+ "Current account ID is not set": "",
+ "User not found in this account": "",
+ "User not found": "",
+ "Username or Password are incorrect": "",
+ "Account not found": "",
+ "Attempt to log in to a non-active account": "",
+ "User account is not active": "",
+ "Invalid reset token": "",
+ "Reset token has expired": "",
+ "Event daily statistics updated for event :event_id with total refunded amount of :amount": "",
+ "Event statistics updated for event :event_id with total refunded amount of :amount": "",
+ "This promo code is invalid": "",
+ "You haven't selected any tickets": "",
+ "The maximum number of tickets available for :tickets is :max": "",
+ "You must order at least :min tickets for :ticket": "",
+ "The minimum amount is :price": "",
+ "The ticket :ticket is sold out": "",
+ ":field must be specified": "",
+ "Invalid price ID": "",
+ "The maximum number of tickets available for :ticket is :max": "",
+ "Ticket with id :id not found": "",
+ "Failed to refund stripe charge": "",
+ "Payment was successful, but order has expired. Order: :id": "",
+ "Order is not awaiting payment. Order: :id": "",
+ "There was an error communicating with the payment provider. Please try again later.": "",
+ "Stripe Connect account not found for the event organizer": "",
+ "Cannot Refund: Stripe connect account not found and saas_mode_enabled is enabled": "",
+ "Invalid calculation type": "",
+ "One or more tax IDs are invalid": "",
+ "Invalid ticket ids: :ids": "",
+ "Cannot delete ticket price with id :id because it has sales": "",
+ "Order has no order items": "",
+ "There is already an account associated with this email. Please log in instead.": "",
+ "Stripe Connect Account creation is only available in Saas Mode.": "",
+ "There are issues with creating or fetching the Stripe Connect Account. Please try again.": "",
+ "There are issues with creating the Stripe Connect Account Link. Please try again.": "",
+ "Cannot check in attendee as they are not active.": "",
+ "in": "",
+ "out": "",
+ "There are no tickets available. ' .\n 'If you would like to assign a ticket to this attendee,' .\n ' please adjust the ticket's available quantity.": "",
+ "The ticket price ID is invalid.": "",
+ "Ticket ID is not valid": "",
+ "There are no tickets available. ' .\n 'If you would like to assign this ticket to this attendee,' .\n ' please adjust the ticket's available quantity.": "",
+ "Attendee ID is not valid": "",
+ "The invitation does not exist": "",
+ "The invitation has already been accepted": "",
+ "Organizer :id not found": "",
+ "Continue": "",
+ "Event :id not found": "",
+ "You cannot change the currency of an event that has completed orders": "",
+ "You must verify your account before you can update an event's status.\n You can resend the confirmation by visiting your profile page.": "",
+ "You cannot send messages until your account is verified.": "",
+ "Order not found": "",
+ "Order already cancelled": "",
+ "Failed to create attendee": "",
+ "This order is has already been processed": "",
+ "This order has expired": "",
+ "This order has already been processed": "",
+ "There is an unexpected ticket price ID in the order": "",
+ "This event is not live.": "",
+ "Sorry, we could not verify your session. Please create a new order.": "",
+ "There is no Stripe data associated with this order.": "",
+ "There is already a refund pending for this order. '\n . 'Please wait for the refund to be processed before requesting another one.": "",
+ "Promo code :code already exists": "",
+ "The code :code is already in use for this event": "",
+ "You cannot delete this question as there as answers associated with it. You can hide the question instead.": "",
+ "One or more of the ordered question IDs do not exist for the event.": "",
+ "You cannot delete this ticket because it has orders associated with it. You can hide it instead.": "",
+ "Ticket type cannot be changed as tickets have been registered for this type": "",
+ "The ordered ticket IDs must exactly match all tickets for the event without missing or extra IDs.": "",
+ "No email change pending": "",
+ "The email :email already exists on this account": "",
+ "You are not authorized to perform this action.": "",
+ "Your account is not active.": "",
+ "Payload has expired or is invalid.": "",
+ "Payload could not be decrypted.": "",
+ "Could not upload image to :disk. Check :disk is configured correctly": "",
+ "Could not upload image": "",
+ "Length must be a positive integer.": "",
+ "Prefix length exceeds the total desired token length.": "",
+ "A valid email is required": "",
+ "The title field is required": "",
+ "The attribute name is required": "",
+ "The attribute value is required": "",
+ "The attribute is_public fields is required": "",
+ "Required questions have not been answered. You may need to reload the page.": "",
+ "This question is outdated. Please reload the page.": "",
+ "Please select an option": "",
+ "This field is required.": "",
+ "This field must be less than 255 characters.": "",
+ "This field must be at least 2 characters.": "",
+ "Hello": "",
+ "You have requested to reset your password for your account on :appName.": "",
+ "Please click the link below to reset your password.": "",
+ "Reset Password": "",
+ "If you did not request a password reset, please ignore this email or reply to let us know.": "",
+ "Thank you": "",
+ "Your password has been reset for your account on :appName.": "",
+ "If you did not request a password reset, please immediately contact reset your password.": "",
+ "You are receiving this communication because you are registered as an attendee for the following event:": "",
+ "If you believe you have received this email in error,": "",
+ "please contact the event organizer at": "",
+ "If you believe this is spam, please report it to": "",
+ "You're going to": "",
+ "Please find your ticket details below.": "",
+ "View Ticket": "",
+ "If you have any questions or need assistance, please reply to this email or contact the event organizer": "",
+ "at": "",
+ "Best regards,": "",
+ "Your order for": "",
+ "has been cancelled.": "",
+ "Order #:": "",
+ "If you have any questions or need assistance, please respond to this email.": "",
+ "Your recent order for": "",
+ "was not successful.": "",
+ "View Event Homepage": "",
+ "If you have any questions or need assistance, feel free to reach out to our support team": "",
+ "Best regards": "",
+ "You have received a refund of :refundAmount for the following event: :eventTitle.": "",
+ "You've received a new order!": "",
+ "Congratulations! You've received a new order for ": "",
+ "Please find the details below.": "",
+ "Order Amount:": "",
+ "Order ID:": "",
+ "View Order": "",
+ "Ticket": "",
+ "Price": "",
+ "Total": "",
+ "Your recent order for :eventTitle was not successful. The order expired while you were completing the payment. We have issued a refund for the order.": "",
+ "We apologize for the inconvenience. If you have any questions or need assistance, feel free to reach us at": "",
+ "View Event Page": "",
+ "Hi.Events": "",
+ "Your Order is Confirmed! ": "",
+ "Congratulations! Your order for :eventTitle on :eventDate at :eventTime was successful. Please find your order details below.": "",
+ "Event Details": "",
+ "Event Name:": "",
+ "Date & Time:": "",
+ "Order Summary": "",
+ "Order Number:": "",
+ "Total Amount:": "",
+ "View Order Summary & Tickets": "",
+ "If you have any questions or need assistance, feel free to reach out to our friendly support team at": "",
+ "What's Next?": "",
+ "Download Tickets:": "",
+ "Please download your tickets from the order summary page.": "",
+ "Prepare for the Event:": "",
+ "Make sure to note the event date, time, and location.": "",
+ "Stay Updated:": "",
+ "Keep an eye on your email for any updates from the event organizer.": "",
+ "Hi :name": "",
+ "Welcome to :appName! We're excited to have you aboard!": "",
+ "To get started and activate your account, please click the link below to confirm your email address:": "",
+ "Confirm Your Email": "",
+ "If you did not create an account with us, no further action is required. Your email address will not be used without confirmation.": "",
+ "Best Regards,": "",
+ "The :appName Team": "",
+ "You have requested to change your email address to :pendingEmail. Please click the link below to confirm this change.": "",
+ "Confirm email change": "",
+ "If you did not request this change, please immediately change your password.": "",
+ "Thanks,": "",
+ "You've been invited to join :appName.": "",
+ "To accept the invitation, please click the link below:": "",
+ "Accept Invitation": "",
+ "All rights reserved.": "",
+ "Congratulations 🎉": "",
+ "Your order has been cancelled": "",
+ "You've received a refund": "",
+ "Your Order is Confirmed!": "",
+ "Password reset": "",
+ "Your password has been reset": "",
+ "You've been invited to join :appName": "",
+ "There is already a refund pending for this order.\n Please wait for the refund to be processed before requesting another one.": "",
+ "Your order wasn\\'t successful": "",
+ "You\\'ve received a refund": "",
+ "You\\'ve been invited to join :appName": "",
+ "You haven\\'t selected any tickets": "",
+ "There are no tickets available. ' .\n 'If you would like to assign a ticket to this attendee,' .\n ' please adjust the ticket\\'s available quantity.": "",
+ "There are no tickets available. ' .\n 'If you would like to assign this ticket to this attendee,' .\n ' please adjust the ticket\\'s available quantity.": "",
+ "You must verify your account before you can update an event\\'s status.\n You can resend the confirmation by visiting your profile page.": "",
+ "You\\'re going to": "",
+ "You\\'ve received a new order!": "",
+ "Congratulations! You\\'ve received a new order for ": "",
+ "What\\'s Next?": "",
+ "Welcome to :appName! We\\'re excited to have you aboard!": "",
+ "You\\'ve been invited to join :appName.": ""
+}
\ No newline at end of file
diff --git a/backend/lang/ru.json b/backend/lang/ru.json
new file mode 100644
index 00000000..b0eb7d3f
--- /dev/null
+++ b/backend/lang/ru.json
@@ -0,0 +1,263 @@
+{
+ "Older First": "",
+ "Newer First": "",
+ "Recently Updated First": "",
+ "Recently Updated Last": "",
+ "First Name A-Z": "",
+ "First Name Z-A": "",
+ "Last Name A-Z": "",
+ "Last Name Z-A": "",
+ "Status A-Z": "",
+ "Status Z-A": "",
+ "Closest start date": "",
+ "Furthest start date": "",
+ "Closest end date": "",
+ "Furthest end date": "",
+ "Newest first": "",
+ "Oldest first": "",
+ "Recently Updated": "",
+ "Least Recently Updated": "",
+ "Oldest First": "",
+ "Newest First": "",
+ "Buyer Name A-Z": "",
+ "Buyer Name Z-A": "",
+ "Amount Ascending": "",
+ "Amount Descending": "",
+ "Buyer Email A-Z": "",
+ "Buyer Email Z-A": "",
+ "Order # Ascending": "",
+ "Order # Descending": "",
+ "Code Name A-Z": "",
+ "Code Name Z-A": "",
+ "Usage Count Ascending": "",
+ "Usage Count Descending": "",
+ "Homepage order": "",
+ "Title A-Z": "",
+ "Title Z-A": "",
+ "Sale start date closest": "",
+ "Sale start date furthest": "",
+ "Sale end date closest": "",
+ "Sale end date furthest": "",
+ "Account registration is disabled": "",
+ "The invitation has expired": "",
+ "The invitation is invalid": "",
+ "Invitation valid, but user not found": "",
+ "No user found for this invitation. The invitation may have been revoked.": "",
+ "Logout Successful": "",
+ "Your password has been reset. Please login with your new password.": "",
+ "No account ID found in token": "",
+ "Event with ID :eventId is not live and user is not authenticated": "",
+ "Sorry, we could not verify your session. Please restart your order.": "",
+ "The email confirmation link has expired. Please request a new one.": "",
+ "The email confirmation link is invalid.": "",
+ "No invitation found for this user.": "",
+ "User status is not Invited": "",
+ "Email is required": "",
+ "Email must be a valid email address": "",
+ "First name is required": "",
+ "Last name is required": "",
+ "Ticket is required": "",
+ "Ticket price is required": "",
+ "Please enter a valid hex color code. In the format #000000 or #000.": "",
+ "The maximum timeout is 2 hours.": "",
+ "The address line 1 field is required": "",
+ "The city field is required": "",
+ "The zip or postal code field is required": "",
+ "The country field is required": "",
+ "The country field should be a 2 character ISO 3166 code": "",
+ "Please select at least one ticket.": "",
+ "The sale end date must be after the sale start date.": "",
+ "The sale end date must be a valid date.": "",
+ "The sale start date must be after the ticket sale start date.": "",
+ "Welcome to :app_name! Please confirm your email address": "",
+ "🎟️ Your Ticket for :event": "",
+ "Your order wasn't successful": "",
+ "We were unable to process your order": "",
+ "New order for :amount for :event 🎉": "",
+ "New order for :event 🎉": "",
+ "Current account ID is not set": "",
+ "User not found in this account": "",
+ "User not found": "",
+ "Username or Password are incorrect": "",
+ "Account not found": "",
+ "Attempt to log in to a non-active account": "",
+ "User account is not active": "",
+ "Invalid reset token": "",
+ "Reset token has expired": "",
+ "Event daily statistics updated for event :event_id with total refunded amount of :amount": "",
+ "Event statistics updated for event :event_id with total refunded amount of :amount": "",
+ "This promo code is invalid": "",
+ "You haven't selected any tickets": "",
+ "The maximum number of tickets available for :tickets is :max": "",
+ "You must order at least :min tickets for :ticket": "",
+ "The minimum amount is :price": "",
+ "The ticket :ticket is sold out": "",
+ ":field must be specified": "",
+ "Invalid price ID": "",
+ "The maximum number of tickets available for :ticket is :max": "",
+ "Ticket with id :id not found": "",
+ "Failed to refund stripe charge": "",
+ "Payment was successful, but order has expired. Order: :id": "",
+ "Order is not awaiting payment. Order: :id": "",
+ "There was an error communicating with the payment provider. Please try again later.": "",
+ "Stripe Connect account not found for the event organizer": "",
+ "Cannot Refund: Stripe connect account not found and saas_mode_enabled is enabled": "",
+ "Invalid calculation type": "",
+ "One or more tax IDs are invalid": "",
+ "Invalid ticket ids: :ids": "",
+ "Cannot delete ticket price with id :id because it has sales": "",
+ "Order has no order items": "",
+ "There is already an account associated with this email. Please log in instead.": "",
+ "Stripe Connect Account creation is only available in Saas Mode.": "",
+ "There are issues with creating or fetching the Stripe Connect Account. Please try again.": "",
+ "There are issues with creating the Stripe Connect Account Link. Please try again.": "",
+ "Cannot check in attendee as they are not active.": "",
+ "in": "",
+ "out": "",
+ "There are no tickets available. ' .\n 'If you would like to assign a ticket to this attendee,' .\n ' please adjust the ticket's available quantity.": "",
+ "The ticket price ID is invalid.": "",
+ "Ticket ID is not valid": "",
+ "There are no tickets available. ' .\n 'If you would like to assign this ticket to this attendee,' .\n ' please adjust the ticket's available quantity.": "",
+ "Attendee ID is not valid": "",
+ "The invitation does not exist": "",
+ "The invitation has already been accepted": "",
+ "Organizer :id not found": "",
+ "Continue": "",
+ "Event :id not found": "",
+ "You cannot change the currency of an event that has completed orders": "",
+ "You must verify your account before you can update an event's status.\n You can resend the confirmation by visiting your profile page.": "",
+ "You cannot send messages until your account is verified.": "",
+ "Order not found": "",
+ "Order already cancelled": "",
+ "Failed to create attendee": "",
+ "This order is has already been processed": "",
+ "This order has expired": "",
+ "This order has already been processed": "",
+ "There is an unexpected ticket price ID in the order": "",
+ "This event is not live.": "",
+ "Sorry, we could not verify your session. Please create a new order.": "",
+ "There is no Stripe data associated with this order.": "",
+ "There is already a refund pending for this order. '\n . 'Please wait for the refund to be processed before requesting another one.": "",
+ "Promo code :code already exists": "",
+ "The code :code is already in use for this event": "",
+ "You cannot delete this question as there as answers associated with it. You can hide the question instead.": "",
+ "One or more of the ordered question IDs do not exist for the event.": "",
+ "You cannot delete this ticket because it has orders associated with it. You can hide it instead.": "",
+ "Ticket type cannot be changed as tickets have been registered for this type": "",
+ "The ordered ticket IDs must exactly match all tickets for the event without missing or extra IDs.": "",
+ "No email change pending": "",
+ "The email :email already exists on this account": "",
+ "You are not authorized to perform this action.": "",
+ "Your account is not active.": "",
+ "Payload has expired or is invalid.": "",
+ "Payload could not be decrypted.": "",
+ "Could not upload image to :disk. Check :disk is configured correctly": "",
+ "Could not upload image": "",
+ "Length must be a positive integer.": "",
+ "Prefix length exceeds the total desired token length.": "",
+ "A valid email is required": "",
+ "The title field is required": "",
+ "The attribute name is required": "",
+ "The attribute value is required": "",
+ "The attribute is_public fields is required": "",
+ "Required questions have not been answered. You may need to reload the page.": "",
+ "This question is outdated. Please reload the page.": "",
+ "Please select an option": "",
+ "This field is required.": "",
+ "This field must be less than 255 characters.": "",
+ "This field must be at least 2 characters.": "",
+ "Hello": "",
+ "You have requested to reset your password for your account on :appName.": "",
+ "Please click the link below to reset your password.": "",
+ "Reset Password": "",
+ "If you did not request a password reset, please ignore this email or reply to let us know.": "",
+ "Thank you": "",
+ "Your password has been reset for your account on :appName.": "",
+ "If you did not request a password reset, please immediately contact reset your password.": "",
+ "You are receiving this communication because you are registered as an attendee for the following event:": "",
+ "If you believe you have received this email in error,": "",
+ "please contact the event organizer at": "",
+ "If you believe this is spam, please report it to": "",
+ "You're going to": "",
+ "Please find your ticket details below.": "",
+ "View Ticket": "",
+ "If you have any questions or need assistance, please reply to this email or contact the event organizer": "",
+ "at": "",
+ "Best regards,": "",
+ "Your order for": "",
+ "has been cancelled.": "",
+ "Order #:": "",
+ "If you have any questions or need assistance, please respond to this email.": "",
+ "Your recent order for": "",
+ "was not successful.": "",
+ "View Event Homepage": "",
+ "If you have any questions or need assistance, feel free to reach out to our support team": "",
+ "Best regards": "",
+ "You have received a refund of :refundAmount for the following event: :eventTitle.": "",
+ "You've received a new order!": "",
+ "Congratulations! You've received a new order for ": "",
+ "Please find the details below.": "",
+ "Order Amount:": "",
+ "Order ID:": "",
+ "View Order": "",
+ "Ticket": "",
+ "Price": "",
+ "Total": "",
+ "Your recent order for :eventTitle was not successful. The order expired while you were completing the payment. We have issued a refund for the order.": "",
+ "We apologize for the inconvenience. If you have any questions or need assistance, feel free to reach us at": "",
+ "View Event Page": "",
+ "Hi.Events": "",
+ "Your Order is Confirmed! ": "",
+ "Congratulations! Your order for :eventTitle on :eventDate at :eventTime was successful. Please find your order details below.": "",
+ "Event Details": "",
+ "Event Name:": "",
+ "Date & Time:": "",
+ "Order Summary": "",
+ "Order Number:": "",
+ "Total Amount:": "",
+ "View Order Summary & Tickets": "",
+ "If you have any questions or need assistance, feel free to reach out to our friendly support team at": "",
+ "What's Next?": "",
+ "Download Tickets:": "",
+ "Please download your tickets from the order summary page.": "",
+ "Prepare for the Event:": "",
+ "Make sure to note the event date, time, and location.": "",
+ "Stay Updated:": "",
+ "Keep an eye on your email for any updates from the event organizer.": "",
+ "Hi :name": "",
+ "Welcome to :appName! We're excited to have you aboard!": "",
+ "To get started and activate your account, please click the link below to confirm your email address:": "",
+ "Confirm Your Email": "",
+ "If you did not create an account with us, no further action is required. Your email address will not be used without confirmation.": "",
+ "Best Regards,": "",
+ "The :appName Team": "",
+ "You have requested to change your email address to :pendingEmail. Please click the link below to confirm this change.": "",
+ "Confirm email change": "",
+ "If you did not request this change, please immediately change your password.": "",
+ "Thanks,": "",
+ "You've been invited to join :appName.": "",
+ "To accept the invitation, please click the link below:": "",
+ "Accept Invitation": "",
+ "All rights reserved.": "",
+ "Congratulations 🎉": "",
+ "Your order has been cancelled": "",
+ "You've received a refund": "",
+ "Your Order is Confirmed!": "",
+ "Password reset": "",
+ "Your password has been reset": "",
+ "You've been invited to join :appName": "",
+ "There is already a refund pending for this order.\n Please wait for the refund to be processed before requesting another one.": "",
+ "Your order wasn\\'t successful": "",
+ "You\\'ve received a refund": "",
+ "You\\'ve been invited to join :appName": "",
+ "You haven\\'t selected any tickets": "",
+ "There are no tickets available. ' .\n 'If you would like to assign a ticket to this attendee,' .\n ' please adjust the ticket\\'s available quantity.": "",
+ "There are no tickets available. ' .\n 'If you would like to assign this ticket to this attendee,' .\n ' please adjust the ticket\\'s available quantity.": "",
+ "You must verify your account before you can update an event\\'s status.\n You can resend the confirmation by visiting your profile page.": "",
+ "You\\'re going to": "",
+ "You\\'ve received a new order!": "",
+ "Congratulations! You\\'ve received a new order for ": "",
+ "What\\'s Next?": "",
+ "Welcome to :appName! We\\'re excited to have you aboard!": "",
+ "You\\'ve been invited to join :appName.": ""
+}
\ No newline at end of file
diff --git a/backend/lang/zh-cn.json b/backend/lang/zh-cn.json
new file mode 100644
index 00000000..b0eb7d3f
--- /dev/null
+++ b/backend/lang/zh-cn.json
@@ -0,0 +1,263 @@
+{
+ "Older First": "",
+ "Newer First": "",
+ "Recently Updated First": "",
+ "Recently Updated Last": "",
+ "First Name A-Z": "",
+ "First Name Z-A": "",
+ "Last Name A-Z": "",
+ "Last Name Z-A": "",
+ "Status A-Z": "",
+ "Status Z-A": "",
+ "Closest start date": "",
+ "Furthest start date": "",
+ "Closest end date": "",
+ "Furthest end date": "",
+ "Newest first": "",
+ "Oldest first": "",
+ "Recently Updated": "",
+ "Least Recently Updated": "",
+ "Oldest First": "",
+ "Newest First": "",
+ "Buyer Name A-Z": "",
+ "Buyer Name Z-A": "",
+ "Amount Ascending": "",
+ "Amount Descending": "",
+ "Buyer Email A-Z": "",
+ "Buyer Email Z-A": "",
+ "Order # Ascending": "",
+ "Order # Descending": "",
+ "Code Name A-Z": "",
+ "Code Name Z-A": "",
+ "Usage Count Ascending": "",
+ "Usage Count Descending": "",
+ "Homepage order": "",
+ "Title A-Z": "",
+ "Title Z-A": "",
+ "Sale start date closest": "",
+ "Sale start date furthest": "",
+ "Sale end date closest": "",
+ "Sale end date furthest": "",
+ "Account registration is disabled": "",
+ "The invitation has expired": "",
+ "The invitation is invalid": "",
+ "Invitation valid, but user not found": "",
+ "No user found for this invitation. The invitation may have been revoked.": "",
+ "Logout Successful": "",
+ "Your password has been reset. Please login with your new password.": "",
+ "No account ID found in token": "",
+ "Event with ID :eventId is not live and user is not authenticated": "",
+ "Sorry, we could not verify your session. Please restart your order.": "",
+ "The email confirmation link has expired. Please request a new one.": "",
+ "The email confirmation link is invalid.": "",
+ "No invitation found for this user.": "",
+ "User status is not Invited": "",
+ "Email is required": "",
+ "Email must be a valid email address": "",
+ "First name is required": "",
+ "Last name is required": "",
+ "Ticket is required": "",
+ "Ticket price is required": "",
+ "Please enter a valid hex color code. In the format #000000 or #000.": "",
+ "The maximum timeout is 2 hours.": "",
+ "The address line 1 field is required": "",
+ "The city field is required": "",
+ "The zip or postal code field is required": "",
+ "The country field is required": "",
+ "The country field should be a 2 character ISO 3166 code": "",
+ "Please select at least one ticket.": "",
+ "The sale end date must be after the sale start date.": "",
+ "The sale end date must be a valid date.": "",
+ "The sale start date must be after the ticket sale start date.": "",
+ "Welcome to :app_name! Please confirm your email address": "",
+ "🎟️ Your Ticket for :event": "",
+ "Your order wasn't successful": "",
+ "We were unable to process your order": "",
+ "New order for :amount for :event 🎉": "",
+ "New order for :event 🎉": "",
+ "Current account ID is not set": "",
+ "User not found in this account": "",
+ "User not found": "",
+ "Username or Password are incorrect": "",
+ "Account not found": "",
+ "Attempt to log in to a non-active account": "",
+ "User account is not active": "",
+ "Invalid reset token": "",
+ "Reset token has expired": "",
+ "Event daily statistics updated for event :event_id with total refunded amount of :amount": "",
+ "Event statistics updated for event :event_id with total refunded amount of :amount": "",
+ "This promo code is invalid": "",
+ "You haven't selected any tickets": "",
+ "The maximum number of tickets available for :tickets is :max": "",
+ "You must order at least :min tickets for :ticket": "",
+ "The minimum amount is :price": "",
+ "The ticket :ticket is sold out": "",
+ ":field must be specified": "",
+ "Invalid price ID": "",
+ "The maximum number of tickets available for :ticket is :max": "",
+ "Ticket with id :id not found": "",
+ "Failed to refund stripe charge": "",
+ "Payment was successful, but order has expired. Order: :id": "",
+ "Order is not awaiting payment. Order: :id": "",
+ "There was an error communicating with the payment provider. Please try again later.": "",
+ "Stripe Connect account not found for the event organizer": "",
+ "Cannot Refund: Stripe connect account not found and saas_mode_enabled is enabled": "",
+ "Invalid calculation type": "",
+ "One or more tax IDs are invalid": "",
+ "Invalid ticket ids: :ids": "",
+ "Cannot delete ticket price with id :id because it has sales": "",
+ "Order has no order items": "",
+ "There is already an account associated with this email. Please log in instead.": "",
+ "Stripe Connect Account creation is only available in Saas Mode.": "",
+ "There are issues with creating or fetching the Stripe Connect Account. Please try again.": "",
+ "There are issues with creating the Stripe Connect Account Link. Please try again.": "",
+ "Cannot check in attendee as they are not active.": "",
+ "in": "",
+ "out": "",
+ "There are no tickets available. ' .\n 'If you would like to assign a ticket to this attendee,' .\n ' please adjust the ticket's available quantity.": "",
+ "The ticket price ID is invalid.": "",
+ "Ticket ID is not valid": "",
+ "There are no tickets available. ' .\n 'If you would like to assign this ticket to this attendee,' .\n ' please adjust the ticket's available quantity.": "",
+ "Attendee ID is not valid": "",
+ "The invitation does not exist": "",
+ "The invitation has already been accepted": "",
+ "Organizer :id not found": "",
+ "Continue": "",
+ "Event :id not found": "",
+ "You cannot change the currency of an event that has completed orders": "",
+ "You must verify your account before you can update an event's status.\n You can resend the confirmation by visiting your profile page.": "",
+ "You cannot send messages until your account is verified.": "",
+ "Order not found": "",
+ "Order already cancelled": "",
+ "Failed to create attendee": "",
+ "This order is has already been processed": "",
+ "This order has expired": "",
+ "This order has already been processed": "",
+ "There is an unexpected ticket price ID in the order": "",
+ "This event is not live.": "",
+ "Sorry, we could not verify your session. Please create a new order.": "",
+ "There is no Stripe data associated with this order.": "",
+ "There is already a refund pending for this order. '\n . 'Please wait for the refund to be processed before requesting another one.": "",
+ "Promo code :code already exists": "",
+ "The code :code is already in use for this event": "",
+ "You cannot delete this question as there as answers associated with it. You can hide the question instead.": "",
+ "One or more of the ordered question IDs do not exist for the event.": "",
+ "You cannot delete this ticket because it has orders associated with it. You can hide it instead.": "",
+ "Ticket type cannot be changed as tickets have been registered for this type": "",
+ "The ordered ticket IDs must exactly match all tickets for the event without missing or extra IDs.": "",
+ "No email change pending": "",
+ "The email :email already exists on this account": "",
+ "You are not authorized to perform this action.": "",
+ "Your account is not active.": "",
+ "Payload has expired or is invalid.": "",
+ "Payload could not be decrypted.": "",
+ "Could not upload image to :disk. Check :disk is configured correctly": "",
+ "Could not upload image": "",
+ "Length must be a positive integer.": "",
+ "Prefix length exceeds the total desired token length.": "",
+ "A valid email is required": "",
+ "The title field is required": "",
+ "The attribute name is required": "",
+ "The attribute value is required": "",
+ "The attribute is_public fields is required": "",
+ "Required questions have not been answered. You may need to reload the page.": "",
+ "This question is outdated. Please reload the page.": "",
+ "Please select an option": "",
+ "This field is required.": "",
+ "This field must be less than 255 characters.": "",
+ "This field must be at least 2 characters.": "",
+ "Hello": "",
+ "You have requested to reset your password for your account on :appName.": "",
+ "Please click the link below to reset your password.": "",
+ "Reset Password": "",
+ "If you did not request a password reset, please ignore this email or reply to let us know.": "",
+ "Thank you": "",
+ "Your password has been reset for your account on :appName.": "",
+ "If you did not request a password reset, please immediately contact reset your password.": "",
+ "You are receiving this communication because you are registered as an attendee for the following event:": "",
+ "If you believe you have received this email in error,": "",
+ "please contact the event organizer at": "",
+ "If you believe this is spam, please report it to": "",
+ "You're going to": "",
+ "Please find your ticket details below.": "",
+ "View Ticket": "",
+ "If you have any questions or need assistance, please reply to this email or contact the event organizer": "",
+ "at": "",
+ "Best regards,": "",
+ "Your order for": "",
+ "has been cancelled.": "",
+ "Order #:": "",
+ "If you have any questions or need assistance, please respond to this email.": "",
+ "Your recent order for": "",
+ "was not successful.": "",
+ "View Event Homepage": "",
+ "If you have any questions or need assistance, feel free to reach out to our support team": "",
+ "Best regards": "",
+ "You have received a refund of :refundAmount for the following event: :eventTitle.": "",
+ "You've received a new order!": "",
+ "Congratulations! You've received a new order for ": "",
+ "Please find the details below.": "",
+ "Order Amount:": "",
+ "Order ID:": "",
+ "View Order": "",
+ "Ticket": "",
+ "Price": "",
+ "Total": "",
+ "Your recent order for :eventTitle was not successful. The order expired while you were completing the payment. We have issued a refund for the order.": "",
+ "We apologize for the inconvenience. If you have any questions or need assistance, feel free to reach us at": "",
+ "View Event Page": "",
+ "Hi.Events": "",
+ "Your Order is Confirmed! ": "",
+ "Congratulations! Your order for :eventTitle on :eventDate at :eventTime was successful. Please find your order details below.": "",
+ "Event Details": "",
+ "Event Name:": "",
+ "Date & Time:": "",
+ "Order Summary": "",
+ "Order Number:": "",
+ "Total Amount:": "",
+ "View Order Summary & Tickets": "",
+ "If you have any questions or need assistance, feel free to reach out to our friendly support team at": "",
+ "What's Next?": "",
+ "Download Tickets:": "",
+ "Please download your tickets from the order summary page.": "",
+ "Prepare for the Event:": "",
+ "Make sure to note the event date, time, and location.": "",
+ "Stay Updated:": "",
+ "Keep an eye on your email for any updates from the event organizer.": "",
+ "Hi :name": "",
+ "Welcome to :appName! We're excited to have you aboard!": "",
+ "To get started and activate your account, please click the link below to confirm your email address:": "",
+ "Confirm Your Email": "",
+ "If you did not create an account with us, no further action is required. Your email address will not be used without confirmation.": "",
+ "Best Regards,": "",
+ "The :appName Team": "",
+ "You have requested to change your email address to :pendingEmail. Please click the link below to confirm this change.": "",
+ "Confirm email change": "",
+ "If you did not request this change, please immediately change your password.": "",
+ "Thanks,": "",
+ "You've been invited to join :appName.": "",
+ "To accept the invitation, please click the link below:": "",
+ "Accept Invitation": "",
+ "All rights reserved.": "",
+ "Congratulations 🎉": "",
+ "Your order has been cancelled": "",
+ "You've received a refund": "",
+ "Your Order is Confirmed!": "",
+ "Password reset": "",
+ "Your password has been reset": "",
+ "You've been invited to join :appName": "",
+ "There is already a refund pending for this order.\n Please wait for the refund to be processed before requesting another one.": "",
+ "Your order wasn\\'t successful": "",
+ "You\\'ve received a refund": "",
+ "You\\'ve been invited to join :appName": "",
+ "You haven\\'t selected any tickets": "",
+ "There are no tickets available. ' .\n 'If you would like to assign a ticket to this attendee,' .\n ' please adjust the ticket\\'s available quantity.": "",
+ "There are no tickets available. ' .\n 'If you would like to assign this ticket to this attendee,' .\n ' please adjust the ticket\\'s available quantity.": "",
+ "You must verify your account before you can update an event\\'s status.\n You can resend the confirmation by visiting your profile page.": "",
+ "You\\'re going to": "",
+ "You\\'ve received a new order!": "",
+ "Congratulations! You\\'ve received a new order for ": "",
+ "What\\'s Next?": "",
+ "Welcome to :appName! We\\'re excited to have you aboard!": "",
+ "You\\'ve been invited to join :appName.": ""
+}
\ No newline at end of file
diff --git a/backend/resources/views/emails/auth/forgot-password.blade.php b/backend/resources/views/emails/auth/forgot-password.blade.php
index b9594b88..d16f983c 100644
--- a/backend/resources/views/emails/auth/forgot-password.blade.php
+++ b/backend/resources/views/emails/auth/forgot-password.blade.php
@@ -2,16 +2,16 @@
@php /** @var string $link */ @endphp
-Hello,
+{{ __('Hello') }},
-You have requested to reset your password for your account on {{ config('app.name') }}.
+{{ __('You have requested to reset your password for your account on :appName.', ['appName' => config('app.name')]) }}
-Please click the link below to reset your password.
+{{ __('Please click the link below to reset your password.') }}
-Reset Password
+{{ __('Reset Password') }}
-If you did not request a password reset, please ignore this email or reply to let us know.
+{{ __('If you did not request a password reset, please ignore this email or reply to let us know.') }}
-Thank you
+{{ __('Thank you') }}
diff --git a/backend/resources/views/emails/auth/reset-password-success.blade.php b/backend/resources/views/emails/auth/reset-password-success.blade.php
index d89eca7c..147b84c1 100644
--- a/backend/resources/views/emails/auth/reset-password-success.blade.php
+++ b/backend/resources/views/emails/auth/reset-password-success.blade.php
@@ -1,9 +1,15 @@
-Hello,
+{{ __('Hello') }},
-Your password has been reset for your account on {{ config('app.name') }}.
+{{ __('Your password has been reset for your account on :appName.', ['appName' => config('app.name')]) }}
-If you did not request a password reset, please immediately contact reset your password.
+{{ __('If you did not request a password reset, please immediately contact reset your password.') }}
-Thank you
+{{ __('Thank you') }}
+
+
+
+
+
+
diff --git a/backend/resources/views/emails/event/message.blade.php b/backend/resources/views/emails/event/message.blade.php
index 53934ff1..867fa948 100644
--- a/backend/resources/views/emails/event/message.blade.php
+++ b/backend/resources/views/emails/event/message.blade.php
@@ -10,11 +10,10 @@
{!! $eventSettings->getGetEmailFooterHtml() !!}
- You are receiving this communication because you are registered as an attendee for the following event:
-
{{ $event->getTitle() }}. If you believe you have received this email in error,
- please contact the event organizer at
{{$eventSettings->getSupportEmail()}}.
- If you believe this is spam, please report it to
{{config('mail.from.address')}}.
+{{ __('You are receiving this communication because you are registered as an attendee for the following event:') }}
+
{{ $event->getTitle() }}. {{ __('If you believe you have received this email in error,') }}
+{{ __('please contact the event organizer at') }}
{{$eventSettings->getSupportEmail()}}.
+{{ __('If you believe this is spam, please report it to') }}
{{config('mail.from.address')}}.
-
diff --git a/backend/resources/views/emails/orders/attendee-ticket.blade.php b/backend/resources/views/emails/orders/attendee-ticket.blade.php
index 1579bf82..2f9d4f5e 100644
--- a/backend/resources/views/emails/orders/attendee-ticket.blade.php
+++ b/backend/resources/views/emails/orders/attendee-ticket.blade.php
@@ -6,20 +6,20 @@
@php /** @see \HiEvents\Mail\Attendee\AttendeeTicketMail */ @endphp
-# You're going to {{ $event->getTitle() }}! 🎉
+# {{ __('You\'re going to') }} {{ $event->getTitle() }}! 🎉
-Please find your ticket details below.
+{{ __('Please find your ticket details below.') }}
- View Ticket
+{{ __('View Ticket') }}
-If you have any questions or need assistance, please reply to this email or contact the event organizer
-at {{$eventSettings->getSupportEmail()}}.
+{{ __('If you have any questions or need assistance, please reply to this email or contact the event organizer') }}
+{{ __('at') }} {{$eventSettings->getSupportEmail()}}.
-Best regards,
+{{ __('Best regards,') }}
{{config('app.name')}}
diff --git a/backend/resources/views/emails/orders/order-cancelled.blade.php b/backend/resources/views/emails/orders/order-cancelled.blade.php
index e7e1cc92..ea51ad40 100644
--- a/backend/resources/views/emails/orders/order-cancelled.blade.php
+++ b/backend/resources/views/emails/orders/order-cancelled.blade.php
@@ -6,19 +6,18 @@
@php /** @see \HiEvents\Mail\Order\OrderCancelled */ @endphp
-Hello,
+{{ __('Hello') }},
-Your order for {{$event->getTitle()}} has been cancelled.
+{{ __('Your order for') }} {{$event->getTitle()}} {{ __('has been cancelled.') }}
-Order #: {{$order->getPublicId()}}
+{{ __('Order #:') }} {{$order->getPublicId()}}
-If you have any questions or need assistance, please respond to this email.
+{{ __('If you have any questions or need assistance, please respond to this email.') }}
-Thank you,
+{{ __('Thank you') }},
{{config('app.name')}}
{!! $eventSettings->getGetEmailFooterHtml() !!}
-
diff --git a/backend/resources/views/emails/orders/order-failed.blade.php b/backend/resources/views/emails/orders/order-failed.blade.php
index 27b8b7ab..0e54cd66 100644
--- a/backend/resources/views/emails/orders/order-failed.blade.php
+++ b/backend/resources/views/emails/orders/order-failed.blade.php
@@ -6,21 +6,20 @@
@php /** @see \HiEvents\Mail\Order\OrderFailed */ @endphp
-Hello,
+{{ __('Hello') }},
-Your recent order for {{$event->getTitle()}} was not successful.
+{{ __('Your recent order for') }} {{$event->getTitle()}} {{ __('was not successful.') }}
- View Event Homepage
+{{ __('View Event Homepage') }}
-If you have any questions or need assistance, feel free to reach out to our support team
-at {{ $supportEmail ?? 'hello@hi.events' }}.
+{{ __('If you have any questions or need assistance, feel free to reach out to our support team') }}
+{{ __('at') }} {{ $supportEmail ?? 'hello@hi.events' }}.
-Best regards,
+{{ __('Best regards') }},
{{config('app.name')}}
-
{!! $eventSettings->getGetEmailFooterHtml() !!}
diff --git a/backend/resources/views/emails/orders/order-refunded.blade.php b/backend/resources/views/emails/orders/order-refunded.blade.php
index 48062335..e10e15f5 100644
--- a/backend/resources/views/emails/orders/order-refunded.blade.php
+++ b/backend/resources/views/emails/orders/order-refunded.blade.php
@@ -6,12 +6,11 @@
@php /** @see \HiEvents\Mail\Order\OrderRefunded */ @endphp
-Hello,
+{{ __('Hello') }},
-You have received a refund of {{$refundAmount}} for the following event: {{$event->getTitle()}}.
+{{ __('You have received a refund of :refundAmount for the following event: :eventTitle.', ['refundAmount' => $refundAmount, 'eventTitle' => $event->getTitle()]) }}
-Thank you
+{{ __('Thank you') }}
{!! $eventSettings->getGetEmailFooterHtml() !!}
-
diff --git a/backend/resources/views/emails/orders/organizer/summary-for-organizer.blade.php b/backend/resources/views/emails/orders/organizer/summary-for-organizer.blade.php
index c594b223..dbfa0311 100644
--- a/backend/resources/views/emails/orders/organizer/summary-for-organizer.blade.php
+++ b/backend/resources/views/emails/orders/organizer/summary-for-organizer.blade.php
@@ -5,29 +5,28 @@
@php /** @var \HiEvents\DomainObjects\EventDomainObject $event */ @endphp
-# You've received a new order! 🎉
+# {{ __('You\'ve received a new order!') }} 🎉
-Congratulations! You've got a new order for {{ $event->getTitle() }}! Please find the details below.
+{{ __('Congratulations! You\'ve received a new order for ') }} {{ $event->getTitle() }}! {{ __('Please find the details below.') }}
-Order Amount: {{ Currency::format($order->getTotalGross(), $event->getCurrency()) }}
-Order ID: {{ $order->getPublicId() }}
+{{ __('Order Amount:') }} {{ Currency::format($order->getTotalGross(), $event->getCurrency()) }}
+{{ __('Order ID:') }} {{ $order->getPublicId() }}
- View Order
+ {{ __('View Order') }}
-
- Ticket |
- Price |
- Total |
+ {{ __('Ticket') }} |
+ {{ __('Price') }} |
+ {{ __('Total') }} |
@@ -41,7 +40,7 @@
@endforeach
- Total
+ {{ __('Total') }}
|
{{ Currency::format($order->getTotalGross(), $event->getCurrency()) }}
@@ -51,7 +50,13 @@
|
-Best regards,
+{{ __('Best regards') }},
{{config('app.name')}}
+
+
+
+
+
+
diff --git a/backend/resources/views/emails/orders/payment-success-but-order-expired.blade.php b/backend/resources/views/emails/orders/payment-success-but-order-expired.blade.php
index a981990c..a4574597 100644
--- a/backend/resources/views/emails/orders/payment-success-but-order-expired.blade.php
+++ b/backend/resources/views/emails/orders/payment-success-but-order-expired.blade.php
@@ -5,25 +5,22 @@
@php /** @see \HiEvents\Mail\Order\PaymentSuccessButOrderExpiredMail */ @endphp
-Hello,
+{{ __('Hello') }},
-Your recent order for {{$event->getTitle()}} was not successful. The order expired while you were completing
-the payment.
-We have issued a refund for the order.
+{{ __('Your recent order for :eventTitle was not successful. The order expired while you were completing the payment. We have issued a refund for the order.', ['eventTitle' => $event->getTitle()]) }}
-We apologize for the inconvenience. If you have any questions or need assistance, feel free to reach us
-at {{$organizer->getEmail()}}.
+{{ __('We apologize for the inconvenience. If you have any questions or need assistance, feel free to reach us at') }} {{$organizer->getEmail()}}.
- View Event Page
+{{ __('View Event Page') }}
-Best regards,
-Hi.Events
+{{ __('Best regards') }},
+{{ __('Hi.Events') }}
{!! $eventSettings->getGetEmailFooterHtml() !!}
diff --git a/backend/resources/views/emails/orders/summary.blade.php b/backend/resources/views/emails/orders/summary.blade.php
index caaa74f0..6074b41f 100644
--- a/backend/resources/views/emails/orders/summary.blade.php
+++ b/backend/resources/views/emails/orders/summary.blade.php
@@ -1,42 +1,37 @@
-@php use Carbon\Carbon;use HiEvents\Helper\Currency;use HiEvents\Helper\DateHelper; @endphp
+@php use Carbon\Carbon; use HiEvents\Helper\Currency; use HiEvents\Helper\DateHelper; @endphp
@php /** @var \HiEvents\DomainObjects\OrderDomainObject $order */ @endphp
@php /** @var \HiEvents\DomainObjects\EventDomainObject $event */ @endphp
@php /** @var string $orderUrl */ @endphp
@php /** @see \HiEvents\Mail\Order\OrderSummary */ @endphp
-# Your Order is Confirmed! 🎉
+# {{ __('Your Order is Confirmed! ') }} 🎉
-Congratulations! Your order for {{ $event->getTitle() }} on
-{{ (new Carbon(DateHelper::convertFromUTC($event->getStartDate(), $event->getTimezone())))->format('F j, Y') }}
-at {{ (new Carbon(DateHelper::convertFromUTC($event->getStartDate(), $event->getTimezone())))->format('g:i A') }}
-was successful. Please find your order details below.
+{{ __('Congratulations! Your order for :eventTitle on :eventDate at :eventTime was successful. Please find your order details below.', ['eventTitle' => $event->getTitle(), 'eventDate' => (new Carbon(DateHelper::convertFromUTC($event->getStartDate(), $event->getTimezone())))->format('F j, Y'), 'eventTime' => (new Carbon(DateHelper::convertFromUTC($event->getStartDate(), $event->getTimezone())))->format('g:i A')]) }}
-
-## Event Details
-- **Event Name:** {{ $event->getTitle() }}
-- **Date & Time:** {{ (new Carbon(DateHelper::convertFromUTC($event->getStartDate(), $event->getTimezone())))->format('F j, Y') }} at {{ (new Carbon(DateHelper::convertFromUTC($event->getStartDate(), $event->getTimezone())))->format('g:i A') }}
+## {{ __('Event Details') }}
+- ** {{ __('Event Name:') }} ** {{ $event->getTitle() }}
+- ** {{ __('Date & Time:') }} ** {{ (new Carbon(DateHelper::convertFromUTC($event->getStartDate(), $event->getTimezone())))->format('F j, Y') }} at {{ (new Carbon(DateHelper::convertFromUTC($event->getStartDate(), $event->getTimezone())))->format('g:i A') }}
-## Order Summary
-- **Order Number:** {{ $order->getPublicId() }}
-- **Total Amount:** {{ Currency::format($order->getTotalGross(), $event->getCurrency()) }}
+## {{ __('Order Summary') }}
+- **{{ __('Order Number:') }}** {{ $order->getPublicId() }}
+- **{{ __('Total Amount:') }}** {{ Currency::format($order->getTotalGross(), $event->getCurrency()) }}
- View Order Summary & Tickets
+ {{ __('View Order Summary & Tickets') }}
-If you have any questions or need assistance, feel free to reach out to our friendly support team
-at {{ $organizer->getEmail() }}.
+{{ __('If you have any questions or need assistance, feel free to reach out to our friendly support team at') }} {{ $organizer->getEmail() }}.
-## What's Next?
-- **Download Tickets:** Please download your tickets from the order summary page.
-- **Prepare for the Event:** Make sure to note the event date, time, and location.
-- **Stay Updated:** Keep an eye on your email for any updates from the event organizer.
+## {{ __('What\'s Next?') }}
+- **{{ __('Download Tickets:') }}** {{ __('Please download your tickets from the order summary page.') }}
+- **{{ __('Prepare for the Event:') }}** {{ __('Make sure to note the event date, time, and location.') }}
+- **{{ __('Stay Updated:') }}** {{ __('Keep an eye on your email for any updates from the event organizer.') }}
-Best regards,
+{{ __('Best regards,') }}
{{ config('app.name') }}
diff --git a/backend/resources/views/emails/user/confirm-email-address.blade.php b/backend/resources/views/emails/user/confirm-email-address.blade.php
index 689725ab..a6301031 100644
--- a/backend/resources/views/emails/user/confirm-email-address.blade.php
+++ b/backend/resources/views/emails/user/confirm-email-address.blade.php
@@ -2,7 +2,7 @@
@php /** @var string $link */ @endphp
-Hi {{ $user->getFirstName() }},
+{{ __('Hi :name', ['name' => $user->getFirstName()]) }},
{{ __('Welcome to :appName! We\'re excited to have you aboard!', ['appName' => config('app.name')]) }}
diff --git a/backend/resources/views/emails/user/confirm-email-change.blade.php b/backend/resources/views/emails/user/confirm-email-change.blade.php
index e0226a5d..d65bb7c7 100644
--- a/backend/resources/views/emails/user/confirm-email-change.blade.php
+++ b/backend/resources/views/emails/user/confirm-email-change.blade.php
@@ -2,14 +2,13 @@
@php /** @var string $link */ @endphp
-Hi {{ $user->getFirstName() }},
+{{ __('Hi :name', ['name' => $user->getFirstName()]) }},
-You have requested to change your email address to {{ $user->getPendingEmail() }}. Please click the link
-below to confirm this change.
+{!! __('You have requested to change your email address to :pendingEmail. Please click the link below to confirm this change.', ['pendingEmail' => $user->getPendingEmail()]) !!}
-Confirm email change
+{{ __('Confirm email change') }}
-If you did not request this change, please immediately change your password.
+{{ __('If you did not request this change, please immediately change your password.') }}
-Thanks,
+{{ __('Thanks,') }}
diff --git a/backend/resources/views/emails/user/user-invited.blade.php b/backend/resources/views/emails/user/user-invited.blade.php
index f27783b8..0a78eee0 100644
--- a/backend/resources/views/emails/user/user-invited.blade.php
+++ b/backend/resources/views/emails/user/user-invited.blade.php
@@ -3,14 +3,14 @@
@php /** @var string $appName */ @endphp
-Hi {{ $invitedUser->getFirstName() }},
+{{ __('Hi :name', ['name' => $user->getFirstName()]) }},
-You've been invited to join {{ $appName }}.
+{{ __('You\'ve been invited to join :appName.', ['appName' => $appName]) }}
-To accept the invitation, please click the link below:
+{{ __('To accept the invitation, please click the link below:') }}
-Accept Invitation
+{{ __('Accept Invitation') }}
-Thank you,
+{{ __('Thank you') }},
{{ $appName }}
diff --git a/frontend/src/App.tsx b/frontend/src/App.tsx
index 808d0b15..c5d915d5 100644
--- a/frontend/src/App.tsx
+++ b/frontend/src/App.tsx
@@ -4,7 +4,7 @@ import {Notifications} from "@mantine/notifications";
import {i18n} from "@lingui/core";
import {I18nProvider} from "@lingui/react";
import {ModalsProvider} from "@mantine/modals";
-import {QueryClient, QueryClientProvider,} from "@tanstack/react-query";
+import {QueryClient, QueryClientProvider} from "@tanstack/react-query";
import {Helmet, HelmetProvider} from "react-helmet-async";
import "@mantine/core/styles/global.css";
@@ -41,19 +41,19 @@ const supportedLocales: Record = {
};
export async function dynamicActivate(locale: string) {
- i18n.load(locale, supportedLocales[locale || "en"] || {});
- i18n.activate(locale);
+ try {
+ i18n.load(locale, supportedLocales[locale || "en"] || {});
+ i18n.activate(locale);
+ } catch (error) {
+ console.error(`Error loading locale ${locale}:`, error);
+ i18n.activate("en");
+ }
}
-const getSupportedLocale = () => {
- // if (typeof window !== "undefined") {
- // const supportedLocalesKeys = Object.keys(supportedLocales);
- // const userLocale = window.navigator.language.split("-")[0]; // Extracting the base language
- //
- // if (supportedLocalesKeys.includes(userLocale)) {
- // return userLocale;
- // }
- // }
+const getSupportedLocale = (userLocale: string) => {
+ if (Object.keys(supportedLocales).includes(userLocale)) {
+ return userLocale;
+ }
return "en";
};
@@ -61,20 +61,21 @@ const getSupportedLocale = () => {
export const App: FC<
PropsWithChildren<{
queryClient: QueryClient;
+ locale: string;
helmetContext?: any;
}>
> = (props) => {
const [isLoadedOnBrowser, setIsLoadedOnBrowser] = React.useState(false);
- const localeActivated = useRef(false);
-
- if (!localeActivated.current) {
- localeActivated.current = true;
- dynamicActivate(getSupportedLocale());
- }
+ const localeActivated = useRef(false); // Initialize localeActivated as a ref with the initial value false
useEffect(() => {
+ if (!localeActivated.current && typeof window !== "undefined") {
+ localeActivated.current = true;
+ dynamicActivate(getSupportedLocale(props.locale));
+ }
+
setIsLoadedOnBrowser(!isSsr());
- }, [])
+ }, []);
return (
diff --git a/frontend/src/components/common/QuestionsTable/index.tsx b/frontend/src/components/common/QuestionsTable/index.tsx
index 0e426b43..e21e4d4b 100644
--- a/frontend/src/components/common/QuestionsTable/index.tsx
+++ b/frontend/src/components/common/QuestionsTable/index.tsx
@@ -18,7 +18,7 @@ import {PageTitle} from "../PageTitle";
import {CreateQuestionModal} from "../../modals/CreateQuestionModal";
import {useDisclosure} from "@mantine/hooks";
import {Card} from "../Card";
-import {plural, t} from "@lingui/macro";
+import {plural, t, Trans} from "@lingui/macro";
import {useEffect, useState} from "react";
import {EditQuestionModal} from "../../modals/EditQuestionModal";
import {useDeleteQuestion} from "../../../mutations/useDeleteQuestion.ts";
@@ -264,10 +264,13 @@ export const QuestionsTable = ({questions}: QuestionsTableProp) => {
- {plural(questions.filter(question => question.is_hidden).length, {
- one: "# hidden question",
- other: "# hidden questions"
- })}
+
+ {questions.filter(question => question.is_hidden).length}
+ {questions.filter(question => question.is_hidden).length === 1
+ ? " hidden question"
+ : " hidden questions"
+ }
+
{
+ if (typeof window !== "undefined") {
+ const storedLocale = localStorage.getItem("locale");
+ if (storedLocale) {
+ return storedLocale;
+ }
+
+
+ return window.navigator.language.split("-")[0];
+ }
+
+ return "en";
+};
async function initClientApp() {
if (window.__REHYDRATED_STATE__) {
@@ -40,13 +52,19 @@ async function initClientApp() {
ReactDOM.hydrateRoot(
document.getElementById("app") as HTMLElement,
-
+
);
} else {
ReactDOM.createRoot(document.getElementById("app") as HTMLElement).render(
-
+
{
+ const acceptLanguage = req.headers['accept-language'];
+ return acceptLanguage ? acceptLanguage.split(',')[0].split('-')[0] : 'en';
+}
+
export async function render(params: {
req: express.Request;
res: express.Response;
@@ -26,7 +31,11 @@ export async function render(params: {
const routerWithContext = createStaticRouter(dataRoutes, context);
const appHtml = ReactDOMServer.renderToString(
-
+
https://0>your-website.com\",\"E15xs8\":\"⚡️ Set up your event\",\"FL6OwU\":\"✉️ Confirm your email address\",\"y1NShf\":\"🎉 Congratulation on creating an event!\",\"BN0OQd\":\"🎉 Congratulations on creating an event!\",\"fAv9QG\":\"🎟️ Add tickets\",\"4WT5tD\":\"🎨 Customize your event page\",\"3VPPdS\":\"💳 Connect with Stripe\",\"s4Tgn6\":\"📢 Promote your event\",\"cjdktw\":\"🚀 Set your event live\",\"rmelwV\":\"0 minutes and 0 seconds\",\"UQ7pBY\":\"0.50 for $0.50\",\"i1+xzD\":\"1.75 for 1.75%\",\"i0puaE\":\"10.00\",\"W9+fkZ\":\"10001\",\"qdfdgM\":\"123 Main Street\",\"IoRZzD\":\"20\",\"+H1RMb\":\"2024-01-01 10:00\",\"Q/T49U\":\"2024-01-01 18:00\",\"hMT8+2\":\"94103\",\"d9El7Q\":[\"A default \",[\"type\"],\" is automaticaly applied to all new tickets. You can override this on a per ticket basis.\"],\"SMUbbQ\":\"A Dropdown input allows only one selection\",\"qv4bfj\":\"A fee, like a booking fee or a service fee\",\"Pgaiuj\":\"A fixed amount per ticket. E.g, $0.50 per ticket\",\"f4vJgj\":\"A multi line text input\",\"ySO/4f\":\"A percentage of the ticket price. E.g., 3.5% of the ticket price\",\"WXeXGB\":\"A promo code with no discount can be used to reveal hidden tickets.\",\"GMhWB5\":\"A Radio option allows has multiple options but only one can be selected.\",\"CBt3s7\":\"A Radio Option allows only one selection\",\"AG/qmQ\":\"A Radio option has multiple options but only one can be selected.\",\"7g61G9\":\"A short description of Awesome Events Ltd.\",\"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\",\"zCk10D\":\"A single question per attendee. E.g, What is your preferred meal?\",\"ap3v36\":\"A single question per order. E.g, What is your company name?\",\"RlJmQg\":\"A standard tax, like VAT or GST\",\"pDwHGk\":\"About hi.events\",\"uIKNjo\":\"About the event\",\"bfXQ+N\":\"Accept Invitation\",\"iwyhk4\":\"Access to the VIP area...\",\"AeXO77\":\"Account\",\"0b79Xf\":\"Account Email\",\"lkNdiH\":\"Account Name\",\"Puv7+X\":\"Account Settings\",\"OmylXO\":\"Account updated successfully\",\"7L01XJ\":\"Actions\",\"FQBaXG\":\"Activate\",\"F6pfE9\":\"Active\",\"m16xKo\":\"Add\",\"LKNynS\":\"Add a cover image, description, and more to make your event stand out.\",\"gMK0ps\":\"Add event details and and manage event settings.\",\"Fb+SDI\":\"Add More tickets\",\"ApsD9J\":\"Add New\",\"TZxnm8\":\"Add Option\",\"Cw27zP\":\"Add question\",\"yWiPh+\":\"Add Tax or Fee\",\"BGD9Yt\":\"Add tickets\",\"goOKRY\":\"Add tier\",\"p59pEv\":\"Additional Details\",\"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.\",\"CPXP5Z\":\"Affiliates\",\"W7AfhC\":\"All attendees of this event\",\"QsYjci\":\"All Events\",\"/twVAS\":\"All Tickets\",\"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..\",\"8wYDMp\":\"Already have an account?\",\"ApOYO8\":\"Amazing, Event, Keywords...\",\"hehnjM\":\"Amount\",\"TRYjHa\":[\"amount in \",[\"0\"]],\"R2O9Rg\":[\"Amount paid (\",[\"0\"],\")\"],\"tLjOgo\":[\"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\",\"er3d/4\":\"An error occurred while sorting the tickets. Please try again or refresh the page\",\"hhvESd\":\"An event is the actual event you are hosting\",\"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.\",\"j4DliD\":\"Any queries from ticket 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\",\"DB8zMK\":\"Apply\",\"GctSSm\":\"Apply Promo Code\",\"jcnZEw\":[\"Apply this \",[\"type\"],\" to all new tickets\"],\"q7TRd7\":\"Are you sure you want to activate this attendee?\",\"/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\",\"2xEpch\":\"Ask once per attendee\",\"LBLOqH\":\"Ask once per order\",\"ss9PbX\":\"Attendee\",\"m0CFV2\":\"Attendee Details\",\"lXcSD2\":\"Attendee questions\",\"VvYqMB\":\"Attendee questions are asked once per attendee. By default, people are asked for their first name, last name, and email address.\",\"spxPEv\":\"Attendee questions are asked once per attendee. By default, we ask for the attendee's first name, last name, and email address.\",\"9SZT4E\":\"Attendees\",\"5UbY+B\":\"Attendees with a specific ticket\",\"IMJ6rh\":\"Auto Resize\",\"vZ5qKF\":\"Automatically resize the widget height based on the content. When disabled, the widget will fill the height of the container.\",\"lXkUEV\":\"Availability\",\"ioG+xt\":\"Awaiting Payment\",\"3PmQfI\":\"Awesome Event\",\"kNmmvE\":\"Awesome Events Ltd.\",\"Yrbm6T\":\"Awesome Organizer Ltd.\",\"9002sI\":\"Back to all events\",\"0TGkYM\":\"Back to event homepage\",\"A302fe\":\"Back to event page\",\"VCoEm+\":\"Back to login\",\"MLZyiY\":\"Background color\",\"k1bLf+\":\"Background Color\",\"I7xjqg\":\"Background Type\",\"EOUool\":\"Basic Details\",\"7EGQKA\":\"Because you are the account owner, you cannot change your role or status.\",\"1mwMl+\":\"Before you send!\",\"wVfiR2\":\"Before you're event can go live, there's a few thing to do.\",\"/yeZ20\":\"Before your event can go live, there are a few things you need to do.\",\"1xAcxY\":\"Begin selling tickets in minutes\",\"R+w/Va\":\"Billing\",\"Ptp9MF\":\"Button color\",\"whqocw\":\"By registering you agree to our <0>Terms of Service0> and <1>Privacy Policy1>.\",\"bcCn6r\":\"Calculation Type\",\"+8bmSu\":\"California\",\"iStTQt\":\"Camera permission was denied. <0>Request Permission0> again, or if this doesn't work, you will need to <1>grant this page1> access to your camera in your browser settings.\",\"Jzn1qy\":\"Can't load events\",\"dEgA5A\":\"Cancel\",\"Gjt/py\":\"Cancel email change\",\"tVJk4q\":\"Cancel order\",\"Os6n2a\":\"Cancel Order\",\"Mz7Ygx\":[\"Cancel Order \",[\"0\"]],\"Ud7zwq\":\"Canceling will cancel all tickets associated with this order, and release the tickets back into the available pool.\",\"vv7kpg\":\"Cancelled\",\"77/YgG\":\"Change Cover\",\"GptGxg\":\"Change password\",\"QndF4b\":\"check in\",\"xMDm+I\":\"Check In\",\"9FVFym\":\"check out\",\"gXcPxc\":\"Check-in\",\"Y3FYXy\":\"Check-In\",\"CNafaC\":\"Checkbox options allow multiple selections\",\"SpabVf\":\"Checkboxes\",\"CRu4lK\":\"Checked In\",\"/ydvvl\":\"Checkout Messaging\",\"1WnhCL\":\"Checkout Settings\",\"JjkX4+\":\"Choose a color for your background\",\"/Jizh9\":\"Choose an account\",\"jJGoVv\":\"Choose what notifications you want to receive\",\"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\",\"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\",\"DwF9eH\":\"Component Code\",\"7VpPHA\":\"Confirm\",\"ZaEJZM\":\"Confirm Email Change\",\"yjkELF\":\"Confirm New Password\",\"xnWESi\":\"Confirm password\",\"p2/GCq\":\"Confirm Password\",\"wnDgGj\":\"Confirming email address...\",\"DnLC08\":\"Congratulation on creating an event!\",\"pbAk7a\":\"Connect Stripe\",\"UMGQOh\":\"Connect with Stripe\",\"QKLP1W\":\"Connect your Stripe account to start receiving payments.\",\"5lcVkL\":\"Connection Details\",\"i3p844\":\"Contact email\",\"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\",\"RGVUUI\":\"Continue To Payment\",\"6V3Ea3\":\"Copied\",\"T5rdis\":\"copied to clipboard\",\"he3ygx\":\"Copy\",\"8+cOrS\":\"Copy details to all attendees\",\"ENCIQz\":\"Copy Link\",\"E6nRW7\":\"Copy URL\",\"JNCzPW\":\"Country\",\"IF7RiR\":\"Cover\",\"P0rbCt\":\"Cover Image\",\"hYgDIe\":\"Create\",\"b9XOHo\":[\"Create \",[\"0\"]],\"6kdXbW\":\"Create a Promo Code\",\"n5pRtF\":\"Create a Ticket\",\"X6sRve\":[\"Create an account or <0>\",[\"0\"],\"0> to get started\"],\"nx+rqg\":\"create an organizer\",\"ipP6Ue\":\"Create Attendee\",\"uN355O\":\"Create Event\",\"BOqY23\":\"Create new\",\"kpJAeS\":\"Create Organizer\",\"sYpiZP\":\"Create Promo Code\",\"a6YrKg\":\"Create promo codes\",\"n6H6AO\":\"Create promo codes to offer discounts to your attendees.\",\"B3Mkdt\":\"Create Question\",\"UKfi21\":\"Create Tax or Fee\",\"Tg323g\":\"Create Ticket\",\"agZ87r\":\"Create tickets for your event, set prices, and manage available quantity.\",\"d+F6q9\":\"Created\",\"Q2lUR2\":\"Currency\",\"DCKkhU\":\"Current Password\",\"uIElGP\":\"Custom Maps URL\",\"876pfE\":\"Customer\",\"QOg2Sf\":\"Customize the email and notification settings for this event\",\"Lu75d1\":\"Customize the email settings for this event\",\"RaxMyF\":\"Customize the event homepage and checkout experience\",\"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\",\"7p5kLi\":\"Dashboard\",\"mYGY3B\":\"Date\",\"JvUngl\":\"Date & Time\",\"RiXc4g\":\"Deactivate user\",\"cnGeoo\":\"Delete\",\"WHf154\":\"Delete code\",\"heJllm\":\"Delete Cover\",\"KWa0gi\":\"Delete Image\",\"IatsLx\":\"Delete question\",\"GnyEfA\":\"Delete ticket\",\"E33LRn\":\"Delete user\",\"Nu4oKW\":\"Description\",\"s9iD5d\":\"Description should be less than 50,000 characters\",\"URmyfc\":\"Details\",\"x8uDKb\":\"Disable code\",\"H6Ma8Z\":\"Discount\",\"ypJ62C\":\"Discount %\",\"3LtiBI\":[\"Discount in \",[\"0\"]],\"C8JLas\":\"Discount Type\",\"1QfxQT\":\"Dismiss\",\"cVq+ga\":\"Don't have an account? <0>Sign Up0>\",\"++S5i/\":\"Donation amount\",\"OO7MG7\":\"Donation Ticket\",\"0pEVi2\":\"Download Tickets PDF\",\"uABpqP\":\"Drag and drop or click\",\"3z2ium\":\"Drag to sort\",\"6skwyH\":\"Drop an image, or click here to replace the Cover Image\",\"S37RRV\":\"Drop an image, or click here to upload the Cover Image\",\"CfKofC\":\"Dropdown selection\",\"vi8Q/5\":\"Duplicate event\",\"7Cx5It\":\"Early bird\",\"ePK91l\":\"Edit\",\"N6j2JH\":[\"Edit \",[\"0\"]],\"kNGp1D\":\"Edit attendee\",\"t2bbp8\":\"Edit Attendee\",\"iFgaVN\":\"Edit Code\",\"jrBSO1\":\"Edit Organizer\",\"9BdS63\":\"Edit Promo Code\",\"O0CE67\":\"Edit question\",\"EzwCw7\":\"Edit Question\",\"d+nnyk\":\"Edit Ticket\",\"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\",\"WiKda6\":\"Email Configuration\",\"APuxIE\":\"Email confirmation resent\",\"YaCgdO\":\"Email confirmation resent successfully\",\"jyt+cx\":\"Email footer message\",\"I6F3cp\":\"Email not verified\",\"G5zNMX\":\"Email Settings\",\"NTZ/NX\":\"Embed Code\",\"4rnJq4\":\"Embed Script\",\"VFv2ZC\":\"End Date\",\"237hSL\":\"Ended\",\"MhVoma\":\"Enter an amount excluding taxes and fees.\",\"3Z223G\":\"Error confirming email address\",\"a6gga1\":\"Error confirming email change\",\"5/63nR\":\"EUR\",\"0pC/y6\":\"Event\",\"nuoP/j\":\"Event created successfully\",\"CFLUfD\":\"Event created successfully 🎉\",\"0Zptey\":\"Event Defaults\",\"Xe3XMd\":\"Event is not visible to the public\",\"4pKXJS\":\"Event is visible to the public\",\"ClwUUD\":\"Event location & venue details\",\"OopDbA\":\"Event page\",\"JyD0LH\":\"Event Settings\",\"4/If97\":\"Event status update failed. Please try again later\",\"btxLWj\":\"Event status updated\",\"tst44n\":\"Events\",\"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.\",\"9zSt4h\":\"Failed to export attendees. Please try again.\",\"2uGNuE\":\"Failed to export orders. Please try again.\",\"ZQ15eN\":\"Failed to resend ticket email\",\"PLUB/s\":\"Fee\",\"YirHq7\":\"Feedback\",\"/mfICu\":\"Fees\",\"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.\",\"QWa3Sk\":\"First Name, Last Name, and Email Address are default questions that are always included in the checkout process.\",\"TpqW74\":\"Fixed\",\"irpUxR\":\"Fixed amount\",\"TF9opW\":\"Flash is not available on this device\",\"UNMVei\":\"Forgot password?\",\"2POOFK\":\"Free\",\"/4rQr+\":\"Free Ticket\",\"01my8x\":\"Free ticket, no payment information required\",\"ejVYRQ\":\"From\",\"u6FPxT\":\"Get Tickets\",\"4GLxhy\":\"Getting Started\",\"4D3rRj\":\"Go back to profile\",\"cQPKZt\":\"Go to Dashboard\",\"9LCqFI\":\"Go to event homepage\",\"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.\",\"Ow9Hz5\":[\"Hi.Events Conference \",[\"0\"]],\"verBst\":\"Hi.Events Conference Center\",\"6eMEQO\":\"hi.events logo\",\"C4qOW8\":\"Hidden from public view\",\"k3dfFD\":\"Hidden questions are only visible to the event organizer and not to the customer.\",\"EeNE0j\":\"Hidden will not be shown to customers.\",\"vLyv1R\":\"Hide\",\"Mkkvfd\":\"Hide getting started page\",\"mFn5Xz\":\"Hide hidden questions\",\"SCimta\":\"Hide the getting started page from the sidebar\",\"Da29Y6\":\"Hide this question\",\"fsi6fC\":\"Hide this ticket from customers\",\"fvDQhr\":\"Hide this tier from users\",\"Fhzoa8\":\"Hide ticket after sale end date\",\"yhm3J/\":\"Hide ticket before sale start date\",\"k7/oGT\":\"Hide ticket unless user has applicable promo code\",\"L0ZOiu\":\"Hide ticket when sold out\",\"uno73L\":\"Hiding a ticket will prevent users from seeing it on the event page.\",\"tj6Gob\":\"Homepage & Checkout\",\"m07jN3\":\"Homepage & Checkout Settings\",\"ZOBwQn\":\"Homepage Design\",\"PRuBTd\":\"Homepage Designer\",\"YjVNGZ\":\"Homepage Preview\",\"c3E/kw\":\"Homer\",\"id+NIk\":\"How many minutes the customer has to complete their order\",\"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?\",\"fYyXCd\":\"https://example-maps-service.com/...\",\"uOXLV3\":\"I agree to the <0>terms and conditions0>\",\"sIxFk5\":\"I agree to the terms and conditions\",\"Crwwhn\":[\"If a new tab did not open, please <0>\",[\"0\"],\".0>\"],\"93DUnd\":[\"If a new tab did not open, please <0><1>\",[\"0\"],\"1>.0>\"],\"9gtsTP\":\"If blank, the address will be used to generate a Google map link\",\"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\",\"Gyl1h8\":\"Image dimensions must be at least 600px by 300px\",\"TiGacZ\":\"Image dimensions must be at least 900px by 450px\",\"UnTvkH\":\"Image dimensions must be between 3000px by 2000px. With a max height of 2000px and max width of 3000px\",\"uPEIvq\":\"Image must be less than 5MB\",\"AGZmwV\":\"Image uploaded successfully\",\"ibi52/\":\"Image width must be at least 900px and height at least 50px\",\"NoNwIX\":\"Inactive\",\"T0K0yl\":\"Inactive users cannot log in.\",\"OFAmKP\":\"Include connection details for your online event\",\"BfPBBG\":\"Include connection details for your online event. These details will be after successful registration.\",\"6+pAOx\":\"Include connection details for your online event. These details will be shown after successful registration.\",\"evpD4c\":\"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\",\"nbfdhU\":\"Integrations\",\"OyLdaz\":\"Invitation resent!\",\"HE6KcK\":\"Invitation revoked!\",\"SQKPvQ\":\"Invite User\",\"PgdQrx\":\"Issue refund\",\"KFXip/\":\"John\",\"XcgRvb\":\"Johnson\",\"1IWWYX\":[\"KittenTech Conference \",[\"0\"]],\"ZgJEMX\":\"KittenTech Conference Center\",\"87a/t/\":\"Label\",\"I3yitW\":\"Last login\",\"1ZaQUH\":\"Last name\",\"UXBCwc\":\"Last Name\",\"CKcupn\":\"Latest Orders\",\"tITjB1\":\"Learn more about Stripe\",\"c+gAXc\":\"Let's get started by creating your first event\",\"vR92Yn\":\"Let's get started by creating your first organizer\",\"QfrKvi\":\"Link color\",\"wJijgU\":\"Location\",\"sQia9P\":\"Log in\",\"zUDyah\":\"Logging in\",\"z0t9bb\":\"Login\",\"nOhz3x\":\"Logout\",\"F2jAFv\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nam placerat elementum...\",\"XkhEf9\":\"Lorem ipsum...\",\"MU3ijv\":\"Make this question mandatory\",\"wckWOP\":\"Manage\",\"8mmINh\":\"Manage billing information and view invoices\",\"jWIznR\":\"Manage default settings for new events\",\"n4SpU5\":\"Manage event\",\"wqyqaF\":\"Manage general account settings\",\"cQrNR3\":\"Manage Profile\",\"f92Qak\":\"Manage taxes and fees which can be applied to tickets\",\"PlTcVr\":\"Manage taxes and fees which can be applied to your tickets\",\"ophZVW\":\"Manage tickets\",\"Wsx7Iu\":\"Manage users and their permissions\",\"DdHfeW\":\"Manage your account details and default settings\",\"QHcjP+\":\"Manage your billing and payment details\",\"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\",\"lzcrX3\":\"Manually adding an attendee will adjust ticket quantity.\",\"g9dPPQ\":\"Maximum Per Order\",\"l5OcwO\":\"Message attendee\",\"Gv5AMu\":\"Message Attendees\",\"1jRD0v\":\"Message attendees with specific tickets\",\"Lvi+gV\":\"Message buyer\",\"tNZzFb\":\"Message Content\",\"lYDV/s\":\"Message individual attendees\",\"V7DYWd\":\"Message Sent\",\"t7TeQU\":\"Messages\",\"xFRMlO\":\"Minimum Per Order\",\"QYcUEf\":\"Minimum Price\",\"mYLhkl\":\"Miscellaneous Settings\",\"KYveV8\":\"Multi line text box\",\"SVuGaP\":\"Multiple price options, users can choose which to pay\",\"6wbTro\":\"Multiple price options. Perfect for early bird tickets etc.\",\"/bhMdO\":\"My amazing event description...\",\"vX8/tc\":\"My amazing event title...\",\"hKtWk2\":\"My Profile\",\"pRjx4L\":\"Nam placerat elementum...\",\"6YtxFj\":\"Name\",\"hVuv90\":\"Name should be less than 150 characters\",\"AIUkyF\":\"Navigate to Attendee\",\"qqeAJM\":\"Never\",\"7vhWI8\":\"New Password\",\"m920rF\":\"New York\",\"1UzENP\":\"No\",\"Wjz5KP\":\"No Attendees to show\",\"fFeCKc\":\"No Discount\",\"Z6ILSe\":\"No events for this organizer\",\"yAlJXG\":\"No events to show\",\"KPWxKD\":\"No messages to show\",\"J2LkP8\":\"No orders to show\",\"+Y976X\":\"No Promo Codes to show\",\"Ev2r9A\":\"No results\",\"RHyZUL\":\"No search results.\",\"cU1op4\":\"No Taxes or Fees have been added yet.\",\"RY2eP1\":\"No Taxes or Fees have been added.\",\"uR2eFu\":\"No tickets available\",\"b7JZFg\":\"No tickets to show\",\"EdQY6l\":\"None\",\"OJx3wK\":\"Not available\",\"x5+Lcz\":\"Not Checked In\",\"Scbrsn\":\"Not On Sale\",\"hFwWnI\":\"Notification Settings\",\"xXqEPO\":\"Notify buyer of refund\",\"YpN29s\":\"Notify organizer of new orders\",\"qeQhNj\":\"Now let's create your first event\",\"2NPDz1\":\"On sale\",\"Ldu/RI\":\"On Sale\",\"Ug4SfW\":\"Once you create an event, you'll see it here.\",\"+P/tII\":\"Once you're ready, set your event live and start selling tickets.\",\"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.\",\"OdnLE4\":\"Open sidebar\",\"ZZEYpT\":[\"Option \",[\"i\"]],\"0zpgxV\":\"Options\",\"BzEFor\":\"or\",\"UYUgdb\":\"Order\",\"mm+eaX\":\"Order #\",\"B3gPuX\":\"Order Cancelled\",\"SIbded\":\"Order Completed\",\"q/CcwE\":\"Order Date\",\"Tol4BF\":\"Order Details\",\"L4kzeZ\":[\"Order Details \",[\"0\"]],\"WbImlQ\":\"Order has been canceled and the order owner has been notified.\",\"VCOi7U\":\"Order questions\",\"wg9MPp\":\"Order questions are asked once per order. By default, people are asked for their first name, last name, and email address.\",\"+KNVxX\":\"Order questions are asked once per order. By default, we ask for the first name, last name, and email address.\",\"TPoYsF\":\"Order Reference\",\"GX6dZv\":\"Order Summary\",\"tDTq0D\":\"Order timeout\",\"1h+RBg\":\"Orders\",\"mz+c33\":\"Orders Created\",\"G5RhpL\":\"Organizer\",\"m/ebSk\":\"Organizer Details\",\"mYygCM\":\"Organizer is required\",\"Pa6G7v\":\"Organizer Name\",\"J2cXxX\":\"Organizers can only manage events and tickets. 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\",\"2w/FiJ\":\"Paid Ticket\",\"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\",\"iq5IUr\":\"Pause Ticket\",\"621rYf\":\"Payment\",\"JhtZAK\":\"Payment Failed\",\"xgav5v\":\"Payment succeeded!\",\"CcK+Ft\":\"PDF\",\"att1Hj\":\"percent\",\"/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\",\"q40YFl\":\"Please continue your order in the new tab\",\"ZJG4Di\":\"Please ensure you only send emails directly related to the order. Promotional emails\\nshould not be sent using this form.\",\"o+HaYe\":\"Please enter a valid promo code\",\"HnNept\":\"Please enter your new password\",\"5FSIzj\":\"Please Note\",\"MA04r/\":\"Please remove filters and set sorting to \\\"Homepage order\\\" to enable sorting\",\"pJLvdS\":\"Please select\",\"yygcoG\":\"Please select at least one ticket\",\"igBrCH\":\"Please verify your email address to access all features\",\"qCJyMx\":\"Post Checkout message\",\"g2UNkE\":\"Powered by\",\"Qs7yI0\":\"Powered By\",\"lqAWKB\":\"Powered by <0>Hi.Events0> 👋\",\"3n47kV\":\"Powered By Hi.Events\",\"ddi4j4\":\"Powered by Stripe\",\"Rs7IQv\":\"Pre Checkout message\",\"rdUucN\":\"Preview\",\"a7u1N9\":\"Price\",\"CmoB9j\":\"Price display mode\",\"Q8PWaJ\":\"Price tiers\",\"a5jvSX\":\"Price Tiers\",\"6RmHKN\":\"Primary Color\",\"G/ZwV1\":\"Primary Colour\",\"8cBtvm\":\"Primary Text Color\",\"BZz12Q\":\"Print\",\"MT7dxz\":\"Print All Tickets\",\"vERlcd\":\"Profile\",\"kUlL8W\":\"Profile updated successfully\",\"cl5WYc\":[\"Promo \",[\"promo_code\"],\" code applied\"],\"ZXpm3a\":[\"Promo \",[\"promoCode\"],\" code applied\"],\"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.\",\"812gwg\":\"Purchase License\",\"LkMOWF\":\"Quantity Available\",\"XKJuAX\":\"Question deleted\",\"oQvMPn\":\"Question Title\",\"enzGAL\":\"Questions\",\"K885Eq\":\"Questions sorted successfully\",\"OMJ035\":\"Radio Option\",\"C4TjpG\":\"Read less\",\"I3QpvQ\":\"Recipient\",\"N2C89m\":\"Reference\",\"gxFu7d\":[\"Refund amount (\",[\"0\"],\")\"],\"n10yGu\":\"Refund order\",\"zPH6gp\":\"Refund Order\",\"/BI0y9\":\"Refunded\",\"fgLNSM\":\"Register\",\"tasfos\":\"remove\",\"t/YqKh\":\"Remove\",\"RloWNu\":\"Reply to email\",\"EGm34e\":\"Resend confirmation email\",\"lnrkNz\":\"Resend email confirmation\",\"wIa8Qe\":\"Resend invitation\",\"VeKsnD\":\"Resend order email\",\"dFuEhO\":\"Resend ticket email\",\"o6+Y6d\":\"Resending...\",\"RfwZxd\":\"Reset password\",\"KbS2K9\":\"Reset Password\",\"vtc20Z\":\"Return to event page\",\"8YBH95\":\"Revenue\",\"PO/sOY\":\"Revoke invitation\",\"GDvlUT\":\"Role\",\"ELa4O9\":\"Sale End Date\",\"5uo5eP\":\"Sale ended\",\"Qm5XkZ\":\"Sale Start Date\",\"hVF4dJ\":\"Sale starts\",\"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\",\"lBAlVv\":\"Seach by name, order #, attendee # or email...\",\"W4kWXJ\":\"Search by attendee name, email or order #...\",\"ulAuWO\":\"Search by event name or description...\",\"+pr/FY\":\"Search by event name...\",\"NQSiYb\":\"Search by name or description...\",\"3zRbWw\":\"Search by name, email, or order #...\",\"BiYOdA\":\"Search by name...\",\"B1bB1j\":\"Search by order #, name or email...\",\"jA4hXE\":\"Search by subject or body...\",\"YEjitp\":\"Search by subject or content...\",\"HYnGee\":\"Search by ticket name...\",\"YIix5Y\":\"Search...\",\"OeW+DS\":\"Secondary color\",\"DnXcDK\":\"Secondary Color\",\"cZF6em\":\"Secondary text color\",\"ZIgYeg\":\"Secondary Text Color\",\"QuNKRX\":\"Select Camera\",\"kWI/37\":\"Select organizer\",\"hAjDQy\":\"Select status\",\"QYARw/\":\"Select Ticket\",\"XH5juP\":\"Select Ticket Tier\",\"nuWxSr\":\"Select Tickets\",\"O/7I0o\":\"Select...\",\"JlFcis\":\"Send\",\"qKWv5N\":[\"Send a copy to <0>\",[\"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.\",\"471O/e\":\"Send confirmation email\",\"D7ZemV\":\"Send order confirmation and ticket email\",\"v1rRtW\":\"Send Test\",\"j1VfcT\":\"SEO Description\",\"/SIY6o\":\"SEO Keywords\",\"GfWoKv\":\"SEO Settings\",\"rXngLf\":\"SEO Title\",\"/jZOZa\":\"Service Fee\",\"vu4F0h\":\"Set a minimum price and let users donate more\",\"nYNT+5\":\"Set up your event\",\"A8iqfq\":\"Set your event live\",\"Tz0i8g\":\"Settings\",\"Z8lGw6\":\"Share\",\"FFbYHm\":[\"Should this \",[\"type\"],\" be applied to all new tickets?\"],\"8vETh9\":\"Show\",\"smd87r\":\"Show available ticket quantity\",\"qDsmzu\":\"Show hidden questions\",\"fMPkxb\":\"Show more\",\"izwOOD\":\"Show tax and fees separately\",\"j3b+OW\":\"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.\",\"DvCwYF\":\"Sorry, this promo code is invalid'\",\"6a/UJE\":\"Sorry, this promo code is not recognized\",\"9rRZZ+\":\"Sorry, your order has expired. Please start a new order.\",\"a4SyEE\":\"Sorting is disabled while filters and sorting are applied\",\"4nG1lG\":\"Standard ticket with a fixed price\",\"D3iCkb\":\"Start Date\",\"RS0o7b\":\"State\",\"/2by1f\":\"State or Region\",\"uAQUqI\":\"Status\",\"UJmAAK\":\"Subject\",\"X2rrlw\":\"Subtotal\",\"b0HJ45\":[\"Success! \",[\"0\"],\" will receive an email shortly.\"],\"BJIEiF\":[\"Successfully \",[\"0\"],\" attendee\"],\"Ih8kN0\":[\"Successfully $\",[\"0\"],\" attendee\"],\"xHl17l\":[\"Successfully checked <0>\",[\"0\"],\" \",[\"1\"],\"0> \",[\"2\"]],\"OtgNFx\":\"Successfully confirmed email address\",\"IKwyaF\":\"Successfully confirmed email change\",\"zLmvhE\":\"Successfully created attendee\",\"9mZEgt\":\"Successfully Created Promo Code\",\"aIA9C4\":\"Successfully Created Question\",\"onFQYs\":\"Successfully Created Ticket\",\"Hgj/mB\":\"Successfully deleted ticket\",\"J3RJSZ\":\"Successfully updated attendee\",\"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\",\"70dYC8\":\"Successfully Updated Promo Code\",\"F+pJnL\":\"Successfully Updated Seo Settings\",\"g2lRrH\":\"Successfully updated ticket\",\"DXZRk5\":\"Suite 100\",\"GNcfRk\":\"Support Email\",\"JpohL9\":\"Tax\",\"geUFpZ\":\"Tax & Fees\",\"0RXCDo\":\"Tax or Fee deleted successfully\",\"ZowkxF\":\"Taxes\",\"EEZnW+\":\"Taxes & Fees\",\"qu6/03\":\"Taxes and Fees\",\"gVjSFp\":\"Taxes and Fees can be associated with tickets and will be added to the ticket price.\",\"e0ZSh4\":\"Text Colour\",\"gypigA\":\"That promo code is invalid\",\"0ozSQu\":\"The background color for the event homepage\",\"LbHWgW\":\"The background color for the ticket widget on the event homepage\",\"75Xclv\":\"The basic details of your event\",\"UNqHnV\":\"The color of the buttons on the event homepage\",\"0amhbL\":\"The color of the links on the event homepage\",\"QXlz+n\":\"The default currency for your events.\",\"mnafgQ\":\"The default timezone for your events.\",\"NlfnUd\":\"The link you clicked is invalid.\",\"FqjKfd\":\"The location of your event\",\"FeAfXO\":[\"The maximum numbers number of tickets for Generals is \",[\"0\"]],\"POEqXB\":\"The organizer details of your event\",\"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.\",\"TJZByZ\":\"The tax and fee to apply to this ticket. You can create new taxes and fees on the\",\"OJYwh9\":\"The taxes and fees to apply to this ticket. You can create new taxes and fees on the\",\"6BpBfZ\":\"The text color for the event homepage\",\"rljHp7\":\"The text color for the ticket widget on the event homepage\",\"s4di40\":\"The text to display in the 'Continue' button. Defaults to 'Continue'\",\"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\",\"wgAiDb\":\"The user must login to change their email.\",\"jvxN9/\":\"There are no tickets available for this event\",\"rMcHYt\":\"There is a refund pending. Please wait for it to complete before requesting another refund.\",\"hjLUr+\":\"There was an error loading this content. Please refresh the page and try again.\",\"68Axnm\":\"There was an error processing your request. Please try again.\",\"mVKOW6\":\"There was an error sending your message\",\"Um/adz\":\"These allow multiple selections\",\"vWeHWp\":\"These colors are not saved in our system.\",\"7qzHGS\":\"These colors are not saved in our system. They are only used to generate the widget.\",\"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.\",\"CNk/ro\":\"This is an online event\",\"GabtCa\":\"This is the email address that will be used as the reply-to address for all emails sent from this event\",\"CKkb5E\":\"This message is how below the\",\"cHO4ec\":\"This message will be included in the footer of all emails sent from this event\",\"RjwlZt\":\"This order has already been paid.\",\"axERYu\":\"This order has already been paid. <0>View order details0>\",\"wY+HO9\":\"This order has already been processed.\",\"5K8REg\":\"This order has already been refunded.\",\"OiQMhP\":\"This order has been cancelled\",\"YyEJij\":\"This order has been cancelled.\",\"D44cEI\":\"This order has been completed.\",\"HILpDX\":\"This order is awaiting payment\",\"0vRWbB\":\"This order is awaiting payment.\",\"BdYtn9\":\"This order is complete\",\"e3uMJH\":\"This order is complete.\",\"YNKXOK\":\"This order is processing.\",\"LIjb4v\":\"This order is processing. TODO - a nice image and poll the API\",\"yPZN4i\":\"This order page is no longer available.\",\"5189cf\":\"This overrides all visibility settings and will hide the ticket from all customers.\",\"4vwjho\":\"This page has expired. <0>View order details0>\",\"Qt7RBu\":\"This question is only visible to the event organizer\",\"os29v1\":\"This reset password link is invalid or expired.\",\"WJqBqd\":\"This ticket cannot be deleted because it is\\nassociated with an order. You can hide it instead.\",\"ma6qdu\":\"This ticket is hidden from public view\",\"xJ8nzj\":\"This ticket is hidden unless targeted by a Promo Code\",\"IV9xTT\":\"This user is not active, as they have not accepted their invitation.\",\"5AnPaO\":\"ticket\",\"kjAL4v\":\"Ticket\",\"KosivG\":\"Ticket deleted successfully\",\"dtGC3q\":\"Ticket email has been resent to attendee\",\"USk+Mn\":\"Ticket page message\",\"mRM6XH\":\"Ticket Sales\",\"NirIiz\":\"Ticket Tier\",\"8jLPgH\":\"Ticket Type\",\"jqWDf9\":\"Ticket widget background color\",\"UrMVAz\":\"Ticket Widget Preview\",\"ngtDy7\":\"Ticket widget text color\",\"N+YYpo\":\"Ticket(s)\",\"6GQNLE\":\"Tickets\",\"54q0zp\":\"Tickets for\",\"i+idBz\":\"Tickets sold\",\"AGRilS\":\"Tickets Sold\",\"56Qw2C\":\"Tickets sorted successfully\",\"4f8A8M\":\"Tickets to which the promo code applies (Applies to all by default)\",\"xN9AhL\":[\"Tier \",[\"0\"]],\"oYaHuq\":\"Tiered Ticket\",\"XZrhpz\":\"Tiered Ticket - Coming Soon\",\"4M150e\":\"Tiered tickets allow you to offer multiple price options for the same ticket.\\nThis is perfect for early bird tickets, or offering different price\\noptions for different groups of people.\",\"jQoYTX\":\"Tiered tickets allow you to offer multiple price options for the same ticket. This is perfect for early bird tickets or offering different price options for different groups of people.\",\"s/0RpH\":\"Times used\",\"40Gx0U\":\"Timezone\",\"oDGm7V\":\"TIP\",\"MHrjPM\":\"Title\",\"xdA/+p\":\"Tools\",\"72c5Qo\":\"Total\",\"BxsfMK\":\"Total Fees\",\"mpB/d9\":\"Total order amount\",\"m3FM1g\":\"Total refunded\",\"GBBIy+\":\"Total remaining\",\"/SgoNA\":\"Total Tax\",\"+zy2Nq\":\"Type\",\"mLGbAS\":[\"Unable to \",[\"0\"],\" attendee\"],\"/cSMqv\":\"Unable to create question. Please check the your details\",\"nNdxt9\":\"Unable to create ticket. Please check the your details\",\"MH/lj8\":\"Unable to update question. Please check the your details\",\"Mqy/Zy\":\"United States\",\"NIuIk1\":\"Unlimited\",\"oMcLhS\":\"Unlimited ticket quantity available\",\"E0q9qH\":\"Unlimited usages allowed\",\"ia8YsC\":\"Upcoming\",\"L/gNNk\":[\"Update \",[\"0\"]],\"+qqX74\":\"Update event name, description and dates\",\"vXPSuB\":\"Update profile\",\"gsehpV\":\"Upload an image to be displayed on the event page\",\"BNBfrU\":\"Upload Cover\",\"e5lF64\":\"Usage Example\",\"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 Settings0>\",\"vgwVkd\":\"UTC\",\"khBZkl\":\"VAT\",\"E/9LUk\":\"Venue Name\",\"AM+zF3\":\"View attendee\",\"e4mhwd\":\"View event homepage\",\"/5PEQz\":\"View event page\",\"fFornT\":\"View full message\",\"YIsEhQ\":\"View map\",\"Ep3VfY\":\"View on Google Maps\",\"AMkkeL\":\"View order\",\"Y8s4f6\":\"View order details\",\"tF+VVr\":\"VIP Ticket\",\"2q/Q7x\":\"Visibility\",\"vmOFL/\":\"We could not process your payment. Please try again or contact support.\",\"1E0vyy\":\"We couldn't load the data. Please try again.\",\"VGioT0\":\"We recommend dimensions of 2160px by 1080px, 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\"],\" 👋\"],\"wjqPqF\":\"What are Tiered Tickets?\",\"5iXvHA\":\"What is a Tiered Ticketing?\",\"MhhnvW\":\"What tickets does this code apply to? (Applies to all by default)\",\"dCil3h\":\"What tickets should this question be apply to?\",\"Rb0XUE\":\"What time will you be arriving?\",\"5N4wLD\":\"What type of question is this?\",\"S+OdxP\":\"Who is organizing this event?\",\"LINr2M\":\"Who is this message to?\",\"nWhye/\":\"Who should be asked this question?\",\"vVGiM4\":\"Who type of question is this?\",\"onLsWS\":\"Whoops! something went wrong. Please try again or contact support if the problem persists.\",\"AHXN2z\":\"Widget\",\"AU/8QR\":\"Widget Configuration\",\"VxFvXQ\":\"Widget Embed\",\"v1P7Gm\":\"Widget Settings\",\"b4itZn\":\"Working\",\"hqmXmc\":\"Working...\",\"l75CjT\":\"Yes\",\"QcwyCh\":\"Yes, remove them\",\"P+Sty0\":[\"You are changing your email to <0>\",[\"0\"],\"0>.\"],\"4ysd6z\":\"You can connecting using this Zoom link...\",\"9HGdDw\":\"You can create a promo code which targets this ticket on the\",\"KRhIxT\":\"You can now start receiving payments through Stripe.\",\"UqVaVO\":\"You cannot change the ticket type as there are attendees associated with this ticket.\",\"zQ8idk\":\"You cannot change the ticket type because there are already tickets sold for this ticket.\",\"3vRX5A\":\"You cannot delete this price tier because there are already tickets sold for this tier. You can hide it instead.\",\"RCC09s\":\"You cannot edit a default question\",\"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.\",\"XoeazJ\":\"You have no attendee questions. Attendee questions are asked once per attendee.\",\"CoZHDB\":\"You have no order questions.\",\"FZKDIe\":\"You have no order questions. Order questions are asked once per order.\",\"15qAvl\":\"You have no pending email change.\",\"n81Qk8\":\"You have not completed your Stripe Connect setup\",\"jxsiqJ\":\"You have not connected your Stripe account\",\"183zcL\":\"You have taxes and fees added to a Free Ticket. Would you like to remove or obscure them?\",\"2v5MI1\":\"You haven't sent any messages yet. You can send messages to all attendees, or to specific ticket 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\",\"LRguuL\":\"You must have at least one tier\",\"8/eLoa\":\"You need to verify your account before you can send messages.\",\"WHXRMI\":\"You'll need at least one ticket to get started. Free, paid or let the user decide what to pay.\",\"bdg03s\":\"Your account email in outgoing emails.\",\"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\"],\"0> is pending. Please check your email to confirm\"],\"yZfBoy\":\"Your message has been sent\",\"la26JS\":\"Your order is in progress\",\"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.\",\"cJ4Y4R\":\"Your refund is processing.\",\"IFHV2p\":\"Your ticket for\",\"3k7HDY\":\"Zip\",\"BM/KQm\":\"Zip or Postal Code\",\"VftCuk\":\"Zoom link, Google Meet link, etc.\",\"ySU+JY\":\"your@email.com\"}")};
\ No newline at end of file
+/*eslint-disable*/module.exports={messages:JSON.parse("{\"1bpx9A\":\"...\",\"f8qS7T\":\"'There\\\\'s nothing to show yet'\",\"4zldrf\":[[\"0\",\"plural\",{\"one\":[\"#\",\" hidden question\"],\"other\":[\"#\",\" hidden questions\"]}]],\"J/hVSQ\":[[\"0\"]],\"KMgp2+\":[[\"0\"],\" available\"],\"tmew5X\":[[\"0\"],\" checked in\"],\"Pmr5xp\":[[\"0\"],\" created successfully\"],\"FImCSc\":[[\"0\"],\" updated successfully\"],\"KOr9b4\":[[\"0\"],\"'s Events\"],\"qSiUsc\":[[\"0\"],[\"1\"]],\"wapGcj\":[[\"message\"]],\"fyE7Au\":[[\"minutes\"],\" minutes and \",[\"seconds\"],\" seconds\"],\"NlQ0cx\":[[\"organizerName\"],\"'s first event\"],\"OXku3b\":\"<0>https://0>your-website.com\",\"E15xs8\":\"⚡️ Set up your event\",\"FL6OwU\":\"✉️ Confirm your email address\",\"y1NShf\":\"🎉 Congratulation on creating an event!\",\"BN0OQd\":\"🎉 Congratulations on creating an event!\",\"fAv9QG\":\"🎟️ Add tickets\",\"4WT5tD\":\"🎨 Customize your event page\",\"3VPPdS\":\"💳 Connect with Stripe\",\"s4Tgn6\":\"📢 Promote your event\",\"cjdktw\":\"🚀 Set your event live\",\"rmelwV\":\"0 minutes and 0 seconds\",\"UQ7pBY\":\"0.50 for $0.50\",\"i1+xzD\":\"1.75 for 1.75%\",\"i0puaE\":\"10.00\",\"W9+fkZ\":\"10001\",\"qdfdgM\":\"123 Main Street\",\"IoRZzD\":\"20\",\"+H1RMb\":\"2024-01-01 10:00\",\"Q/T49U\":\"2024-01-01 18:00\",\"hMT8+2\":\"94103\",\"d9El7Q\":[\"A default \",[\"type\"],\" is automaticaly applied to all new tickets. You can override this on a per ticket basis.\"],\"SMUbbQ\":\"A Dropdown input allows only one selection\",\"qv4bfj\":\"A fee, like a booking fee or a service fee\",\"Pgaiuj\":\"A fixed amount per ticket. E.g, $0.50 per ticket\",\"f4vJgj\":\"A multi line text input\",\"ySO/4f\":\"A percentage of the ticket price. E.g., 3.5% of the ticket price\",\"WXeXGB\":\"A promo code with no discount can be used to reveal hidden tickets.\",\"GMhWB5\":\"A Radio option allows has multiple options but only one can be selected.\",\"CBt3s7\":\"A Radio Option allows only one selection\",\"AG/qmQ\":\"A Radio option has multiple options but only one can be selected.\",\"7g61G9\":\"A short description of Awesome Events Ltd.\",\"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\",\"zCk10D\":\"A single question per attendee. E.g, What is your preferred meal?\",\"ap3v36\":\"A single question per order. E.g, What is your company name?\",\"RlJmQg\":\"A standard tax, like VAT or GST\",\"pDwHGk\":\"About hi.events\",\"uIKNjo\":\"About the event\",\"bfXQ+N\":\"Accept Invitation\",\"iwyhk4\":\"Access to the VIP area...\",\"AeXO77\":\"Account\",\"0b79Xf\":\"Account Email\",\"lkNdiH\":\"Account Name\",\"Puv7+X\":\"Account Settings\",\"OmylXO\":\"Account updated successfully\",\"7L01XJ\":\"Actions\",\"FQBaXG\":\"Activate\",\"F6pfE9\":\"Active\",\"m16xKo\":\"Add\",\"LKNynS\":\"Add a cover image, description, and more to make your event stand out.\",\"gMK0ps\":\"Add event details and and manage event settings.\",\"Fb+SDI\":\"Add More tickets\",\"ApsD9J\":\"Add New\",\"TZxnm8\":\"Add Option\",\"Cw27zP\":\"Add question\",\"yWiPh+\":\"Add Tax or Fee\",\"BGD9Yt\":\"Add tickets\",\"goOKRY\":\"Add tier\",\"p59pEv\":\"Additional Details\",\"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.\",\"CPXP5Z\":\"Affiliates\",\"W7AfhC\":\"All attendees of this event\",\"QsYjci\":\"All Events\",\"/twVAS\":\"All Tickets\",\"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..\",\"8wYDMp\":\"Already have an account?\",\"ApOYO8\":\"Amazing, Event, Keywords...\",\"hehnjM\":\"Amount\",\"TRYjHa\":[\"amount in \",[\"0\"]],\"R2O9Rg\":[\"Amount paid (\",[\"0\"],\")\"],\"tLjOgo\":[\"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\",\"er3d/4\":\"An error occurred while sorting the tickets. Please try again or refresh the page\",\"hhvESd\":\"An event is the actual event you are hosting\",\"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.\",\"j4DliD\":\"Any queries from ticket 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\",\"DB8zMK\":\"Apply\",\"GctSSm\":\"Apply Promo Code\",\"jcnZEw\":[\"Apply this \",[\"type\"],\" to all new tickets\"],\"q7TRd7\":\"Are you sure you want to activate this attendee?\",\"/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\",\"2xEpch\":\"Ask once per attendee\",\"LBLOqH\":\"Ask once per order\",\"ss9PbX\":\"Attendee\",\"m0CFV2\":\"Attendee Details\",\"lXcSD2\":\"Attendee questions\",\"VvYqMB\":\"Attendee questions are asked once per attendee. By default, people are asked for their first name, last name, and email address.\",\"spxPEv\":\"Attendee questions are asked once per attendee. By default, we ask for the attendee's first name, last name, and email address.\",\"9SZT4E\":\"Attendees\",\"5UbY+B\":\"Attendees with a specific ticket\",\"IMJ6rh\":\"Auto Resize\",\"vZ5qKF\":\"Automatically resize the widget height based on the content. When disabled, the widget will fill the height of the container.\",\"lXkUEV\":\"Availability\",\"ioG+xt\":\"Awaiting Payment\",\"3PmQfI\":\"Awesome Event\",\"kNmmvE\":\"Awesome Events Ltd.\",\"Yrbm6T\":\"Awesome Organizer Ltd.\",\"9002sI\":\"Back to all events\",\"0TGkYM\":\"Back to event homepage\",\"A302fe\":\"Back to event page\",\"VCoEm+\":\"Back to login\",\"MLZyiY\":\"Background color\",\"k1bLf+\":\"Background Color\",\"I7xjqg\":\"Background Type\",\"EOUool\":\"Basic Details\",\"7EGQKA\":\"Because you are the account owner, you cannot change your role or status.\",\"1mwMl+\":\"Before you send!\",\"wVfiR2\":\"Before you're event can go live, there's a few thing to do.\",\"/yeZ20\":\"Before your event can go live, there are a few things you need to do.\",\"1xAcxY\":\"Begin selling tickets in minutes\",\"R+w/Va\":\"Billing\",\"Ptp9MF\":\"Button color\",\"whqocw\":\"By registering you agree to our <0>Terms of Service0> and <1>Privacy Policy1>.\",\"bcCn6r\":\"Calculation Type\",\"+8bmSu\":\"California\",\"iStTQt\":\"Camera permission was denied. <0>Request Permission0> again, or if this doesn't work, you will need to <1>grant this page1> access to your camera in your browser settings.\",\"Jzn1qy\":\"Can't load events\",\"dEgA5A\":\"Cancel\",\"Gjt/py\":\"Cancel email change\",\"tVJk4q\":\"Cancel order\",\"Os6n2a\":\"Cancel Order\",\"Mz7Ygx\":[\"Cancel Order \",[\"0\"]],\"Ud7zwq\":\"Canceling will cancel all tickets associated with this order, and release the tickets back into the available pool.\",\"vv7kpg\":\"Cancelled\",\"77/YgG\":\"Change Cover\",\"GptGxg\":\"Change password\",\"QndF4b\":\"check in\",\"xMDm+I\":\"Check In\",\"9FVFym\":\"check out\",\"gXcPxc\":\"Check-in\",\"Y3FYXy\":\"Check-In\",\"CNafaC\":\"Checkbox options allow multiple selections\",\"SpabVf\":\"Checkboxes\",\"CRu4lK\":\"Checked In\",\"/ydvvl\":\"Checkout Messaging\",\"1WnhCL\":\"Checkout Settings\",\"JjkX4+\":\"Choose a color for your background\",\"/Jizh9\":\"Choose an account\",\"jJGoVv\":\"Choose what notifications you want to receive\",\"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\",\"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\",\"DwF9eH\":\"Component Code\",\"7VpPHA\":\"Confirm\",\"ZaEJZM\":\"Confirm Email Change\",\"yjkELF\":\"Confirm New Password\",\"xnWESi\":\"Confirm password\",\"p2/GCq\":\"Confirm Password\",\"wnDgGj\":\"Confirming email address...\",\"DnLC08\":\"Congratulation on creating an event!\",\"pbAk7a\":\"Connect Stripe\",\"UMGQOh\":\"Connect with Stripe\",\"QKLP1W\":\"Connect your Stripe account to start receiving payments.\",\"5lcVkL\":\"Connection Details\",\"i3p844\":\"Contact email\",\"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\",\"RGVUUI\":\"Continue To Payment\",\"6V3Ea3\":\"Copied\",\"T5rdis\":\"copied to clipboard\",\"he3ygx\":\"Copy\",\"8+cOrS\":\"Copy details to all attendees\",\"ENCIQz\":\"Copy Link\",\"E6nRW7\":\"Copy URL\",\"JNCzPW\":\"Country\",\"IF7RiR\":\"Cover\",\"P0rbCt\":\"Cover Image\",\"hYgDIe\":\"Create\",\"b9XOHo\":[\"Create \",[\"0\"]],\"6kdXbW\":\"Create a Promo Code\",\"n5pRtF\":\"Create a Ticket\",\"X6sRve\":[\"Create an account or <0>\",[\"0\"],\"0> to get started\"],\"nx+rqg\":\"create an organizer\",\"ipP6Ue\":\"Create Attendee\",\"uN355O\":\"Create Event\",\"BOqY23\":\"Create new\",\"kpJAeS\":\"Create Organizer\",\"sYpiZP\":\"Create Promo Code\",\"a6YrKg\":\"Create promo codes\",\"n6H6AO\":\"Create promo codes to offer discounts to your attendees.\",\"B3Mkdt\":\"Create Question\",\"UKfi21\":\"Create Tax or Fee\",\"Tg323g\":\"Create Ticket\",\"agZ87r\":\"Create tickets for your event, set prices, and manage available quantity.\",\"d+F6q9\":\"Created\",\"Q2lUR2\":\"Currency\",\"DCKkhU\":\"Current Password\",\"uIElGP\":\"Custom Maps URL\",\"876pfE\":\"Customer\",\"QOg2Sf\":\"Customize the email and notification settings for this event\",\"Lu75d1\":\"Customize the email settings for this event\",\"RaxMyF\":\"Customize the event homepage and checkout experience\",\"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\",\"7p5kLi\":\"Dashboard\",\"mYGY3B\":\"Date\",\"JvUngl\":\"Date & Time\",\"RiXc4g\":\"Deactivate user\",\"cnGeoo\":\"Delete\",\"WHf154\":\"Delete code\",\"heJllm\":\"Delete Cover\",\"KWa0gi\":\"Delete Image\",\"IatsLx\":\"Delete question\",\"GnyEfA\":\"Delete ticket\",\"E33LRn\":\"Delete user\",\"Nu4oKW\":\"Description\",\"s9iD5d\":\"Description should be less than 50,000 characters\",\"URmyfc\":\"Details\",\"x8uDKb\":\"Disable code\",\"H6Ma8Z\":\"Discount\",\"ypJ62C\":\"Discount %\",\"3LtiBI\":[\"Discount in \",[\"0\"]],\"C8JLas\":\"Discount Type\",\"1QfxQT\":\"Dismiss\",\"cVq+ga\":\"Don't have an account? <0>Sign Up0>\",\"4+aC/x\":\"Donation / Pay what you'd like ticket\",\"++S5i/\":\"Donation amount\",\"OO7MG7\":\"Donation Ticket\",\"0pEVi2\":\"Download Tickets PDF\",\"uABpqP\":\"Drag and drop or click\",\"3z2ium\":\"Drag to sort\",\"6skwyH\":\"Drop an image, or click here to replace the Cover Image\",\"S37RRV\":\"Drop an image, or click here to upload the Cover Image\",\"CfKofC\":\"Dropdown selection\",\"vi8Q/5\":\"Duplicate event\",\"7Cx5It\":\"Early bird\",\"ePK91l\":\"Edit\",\"N6j2JH\":[\"Edit \",[\"0\"]],\"kNGp1D\":\"Edit attendee\",\"t2bbp8\":\"Edit Attendee\",\"iFgaVN\":\"Edit Code\",\"jrBSO1\":\"Edit Organizer\",\"9BdS63\":\"Edit Promo Code\",\"O0CE67\":\"Edit question\",\"EzwCw7\":\"Edit Question\",\"d+nnyk\":\"Edit Ticket\",\"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\",\"WiKda6\":\"Email Configuration\",\"APuxIE\":\"Email confirmation resent\",\"YaCgdO\":\"Email confirmation resent successfully\",\"jyt+cx\":\"Email footer message\",\"I6F3cp\":\"Email not verified\",\"G5zNMX\":\"Email Settings\",\"NTZ/NX\":\"Embed Code\",\"4rnJq4\":\"Embed Script\",\"VFv2ZC\":\"End Date\",\"237hSL\":\"Ended\",\"MhVoma\":\"Enter an amount excluding taxes and fees.\",\"3Z223G\":\"Error confirming email address\",\"a6gga1\":\"Error confirming email change\",\"5/63nR\":\"EUR\",\"0pC/y6\":\"Event\",\"nuoP/j\":\"Event created successfully\",\"CFLUfD\":\"Event created successfully 🎉\",\"0Zptey\":\"Event Defaults\",\"Xe3XMd\":\"Event is not visible to the public\",\"4pKXJS\":\"Event is visible to the public\",\"ClwUUD\":\"Event location & venue details\",\"OopDbA\":\"Event page\",\"JyD0LH\":\"Event Settings\",\"4/If97\":\"Event status update failed. Please try again later\",\"btxLWj\":\"Event status updated\",\"tst44n\":\"Events\",\"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.\",\"9zSt4h\":\"Failed to export attendees. Please try again.\",\"2uGNuE\":\"Failed to export orders. Please try again.\",\"ZQ15eN\":\"Failed to resend ticket email\",\"PLUB/s\":\"Fee\",\"YirHq7\":\"Feedback\",\"/mfICu\":\"Fees\",\"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.\",\"QWa3Sk\":\"First Name, Last Name, and Email Address are default questions that are always included in the checkout process.\",\"TpqW74\":\"Fixed\",\"irpUxR\":\"Fixed amount\",\"TF9opW\":\"Flash is not available on this device\",\"UNMVei\":\"Forgot password?\",\"2POOFK\":\"Free\",\"/4rQr+\":\"Free Ticket\",\"01my8x\":\"Free ticket, no payment information required\",\"ejVYRQ\":\"From\",\"u6FPxT\":\"Get Tickets\",\"4GLxhy\":\"Getting Started\",\"4D3rRj\":\"Go back to profile\",\"cQPKZt\":\"Go to Dashboard\",\"9LCqFI\":\"Go to event homepage\",\"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.\",\"Ow9Hz5\":[\"Hi.Events Conference \",[\"0\"]],\"verBst\":\"Hi.Events Conference Center\",\"6eMEQO\":\"hi.events logo\",\"C4qOW8\":\"Hidden from public view\",\"k3dfFD\":\"Hidden questions are only visible to the event organizer and not to the customer.\",\"EeNE0j\":\"Hidden will not be shown to customers.\",\"vLyv1R\":\"Hide\",\"Mkkvfd\":\"Hide getting started page\",\"mFn5Xz\":\"Hide hidden questions\",\"SCimta\":\"Hide the getting started page from the sidebar\",\"Da29Y6\":\"Hide this question\",\"fsi6fC\":\"Hide this ticket from customers\",\"fvDQhr\":\"Hide this tier from users\",\"Fhzoa8\":\"Hide ticket after sale end date\",\"yhm3J/\":\"Hide ticket before sale start date\",\"k7/oGT\":\"Hide ticket unless user has applicable promo code\",\"L0ZOiu\":\"Hide ticket when sold out\",\"uno73L\":\"Hiding a ticket will prevent users from seeing it on the event page.\",\"tj6Gob\":\"Homepage & Checkout\",\"m07jN3\":\"Homepage & Checkout Settings\",\"ZOBwQn\":\"Homepage Design\",\"PRuBTd\":\"Homepage Designer\",\"YjVNGZ\":\"Homepage Preview\",\"c3E/kw\":\"Homer\",\"id+NIk\":\"How many minutes the customer has to complete their order\",\"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?\",\"fYyXCd\":\"https://example-maps-service.com/...\",\"uOXLV3\":\"I agree to the <0>terms and conditions0>\",\"sIxFk5\":\"I agree to the terms and conditions\",\"Crwwhn\":[\"If a new tab did not open, please <0>\",[\"0\"],\".0>\"],\"93DUnd\":[\"If a new tab did not open, please <0><1>\",[\"0\"],\"1>.0>\"],\"9gtsTP\":\"If blank, the address will be used to generate a Google map link\",\"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\",\"Gyl1h8\":\"Image dimensions must be at least 600px by 300px\",\"TiGacZ\":\"Image dimensions must be at least 900px by 450px\",\"UnTvkH\":\"Image dimensions must be between 3000px by 2000px. With a max height of 2000px and max width of 3000px\",\"uPEIvq\":\"Image must be less than 5MB\",\"AGZmwV\":\"Image uploaded successfully\",\"ibi52/\":\"Image width must be at least 900px and height at least 50px\",\"NoNwIX\":\"Inactive\",\"T0K0yl\":\"Inactive users cannot log in.\",\"OFAmKP\":\"Include connection details for your online event\",\"BfPBBG\":\"Include connection details for your online event. These details will be after successful registration.\",\"6+pAOx\":\"Include connection details for your online event. These details will be shown after successful registration.\",\"evpD4c\":\"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\",\"nbfdhU\":\"Integrations\",\"OyLdaz\":\"Invitation resent!\",\"HE6KcK\":\"Invitation revoked!\",\"SQKPvQ\":\"Invite User\",\"PgdQrx\":\"Issue refund\",\"KFXip/\":\"John\",\"XcgRvb\":\"Johnson\",\"1IWWYX\":[\"KittenTech Conference \",[\"0\"]],\"ZgJEMX\":\"KittenTech Conference Center\",\"87a/t/\":\"Label\",\"I3yitW\":\"Last login\",\"1ZaQUH\":\"Last name\",\"UXBCwc\":\"Last Name\",\"CKcupn\":\"Latest Orders\",\"tITjB1\":\"Learn more about Stripe\",\"c+gAXc\":\"Let's get started by creating your first event\",\"vR92Yn\":\"Let's get started by creating your first organizer\",\"QfrKvi\":\"Link color\",\"wJijgU\":\"Location\",\"sQia9P\":\"Log in\",\"zUDyah\":\"Logging in\",\"z0t9bb\":\"Login\",\"nOhz3x\":\"Logout\",\"F2jAFv\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nam placerat elementum...\",\"XkhEf9\":\"Lorem ipsum...\",\"MU3ijv\":\"Make this question mandatory\",\"wckWOP\":\"Manage\",\"8mmINh\":\"Manage billing information and view invoices\",\"jWIznR\":\"Manage default settings for new events\",\"n4SpU5\":\"Manage event\",\"wqyqaF\":\"Manage general account settings\",\"cQrNR3\":\"Manage Profile\",\"f92Qak\":\"Manage taxes and fees which can be applied to tickets\",\"PlTcVr\":\"Manage taxes and fees which can be applied to your tickets\",\"ophZVW\":\"Manage tickets\",\"Wsx7Iu\":\"Manage users and their permissions\",\"DdHfeW\":\"Manage your account details and default settings\",\"QHcjP+\":\"Manage your billing and payment details\",\"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\",\"lzcrX3\":\"Manually adding an attendee will adjust ticket quantity.\",\"g9dPPQ\":\"Maximum Per Order\",\"l5OcwO\":\"Message attendee\",\"Gv5AMu\":\"Message Attendees\",\"1jRD0v\":\"Message attendees with specific tickets\",\"Lvi+gV\":\"Message buyer\",\"tNZzFb\":\"Message Content\",\"lYDV/s\":\"Message individual attendees\",\"V7DYWd\":\"Message Sent\",\"t7TeQU\":\"Messages\",\"xFRMlO\":\"Minimum Per Order\",\"QYcUEf\":\"Minimum Price\",\"mYLhkl\":\"Miscellaneous Settings\",\"KYveV8\":\"Multi line text box\",\"SVuGaP\":\"Multiple price options, users can choose which to pay\",\"6wbTro\":\"Multiple price options. Perfect for early bird tickets etc.\",\"/bhMdO\":\"My amazing event description...\",\"vX8/tc\":\"My amazing event title...\",\"hKtWk2\":\"My Profile\",\"pRjx4L\":\"Nam placerat elementum...\",\"6YtxFj\":\"Name\",\"hVuv90\":\"Name should be less than 150 characters\",\"AIUkyF\":\"Navigate to Attendee\",\"qqeAJM\":\"Never\",\"7vhWI8\":\"New Password\",\"m920rF\":\"New York\",\"1UzENP\":\"No\",\"Wjz5KP\":\"No Attendees to show\",\"fFeCKc\":\"No Discount\",\"Z6ILSe\":\"No events for this organizer\",\"yAlJXG\":\"No events to show\",\"KPWxKD\":\"No messages to show\",\"J2LkP8\":\"No orders to show\",\"+Y976X\":\"No Promo Codes to show\",\"Ev2r9A\":\"No results\",\"RHyZUL\":\"No search results.\",\"cU1op4\":\"No Taxes or Fees have been added yet.\",\"RY2eP1\":\"No Taxes or Fees have been added.\",\"uR2eFu\":\"No tickets available\",\"b7JZFg\":\"No tickets to show\",\"EdQY6l\":\"None\",\"OJx3wK\":\"Not available\",\"x5+Lcz\":\"Not Checked In\",\"Scbrsn\":\"Not On Sale\",\"hFwWnI\":\"Notification Settings\",\"xXqEPO\":\"Notify buyer of refund\",\"YpN29s\":\"Notify organizer of new orders\",\"qeQhNj\":\"Now let's create your first event\",\"2NPDz1\":\"On sale\",\"Ldu/RI\":\"On Sale\",\"Ug4SfW\":\"Once you create an event, you'll see it here.\",\"+P/tII\":\"Once you're ready, set your event live and start selling tickets.\",\"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.\",\"OdnLE4\":\"Open sidebar\",\"ZZEYpT\":[\"Option \",[\"i\"]],\"0zpgxV\":\"Options\",\"BzEFor\":\"or\",\"UYUgdb\":\"Order\",\"mm+eaX\":\"Order #\",\"B3gPuX\":\"Order Cancelled\",\"SIbded\":\"Order Completed\",\"q/CcwE\":\"Order Date\",\"Tol4BF\":\"Order Details\",\"L4kzeZ\":[\"Order Details \",[\"0\"]],\"WbImlQ\":\"Order has been canceled and the order owner has been notified.\",\"VCOi7U\":\"Order questions\",\"wg9MPp\":\"Order questions are asked once per order. By default, people are asked for their first name, last name, and email address.\",\"+KNVxX\":\"Order questions are asked once per order. By default, we ask for the first name, last name, and email address.\",\"TPoYsF\":\"Order Reference\",\"GX6dZv\":\"Order Summary\",\"tDTq0D\":\"Order timeout\",\"1h+RBg\":\"Orders\",\"mz+c33\":\"Orders Created\",\"G5RhpL\":\"Organizer\",\"m/ebSk\":\"Organizer Details\",\"mYygCM\":\"Organizer is required\",\"Pa6G7v\":\"Organizer Name\",\"J2cXxX\":\"Organizers can only manage events and tickets. 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\",\"2w/FiJ\":\"Paid Ticket\",\"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\",\"iq5IUr\":\"Pause Ticket\",\"621rYf\":\"Payment\",\"JhtZAK\":\"Payment Failed\",\"xgav5v\":\"Payment succeeded!\",\"CcK+Ft\":\"PDF\",\"att1Hj\":\"percent\",\"/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\",\"q40YFl\":\"Please continue your order in the new tab\",\"ZJG4Di\":\"Please ensure you only send emails directly related to the order. Promotional emails\\nshould not be sent using this form.\",\"o+HaYe\":\"Please enter a valid promo code\",\"HnNept\":\"Please enter your new password\",\"5FSIzj\":\"Please Note\",\"MA04r/\":\"Please remove filters and set sorting to \\\"Homepage order\\\" to enable sorting\",\"pJLvdS\":\"Please select\",\"yygcoG\":\"Please select at least one ticket\",\"igBrCH\":\"Please verify your email address to access all features\",\"qCJyMx\":\"Post Checkout message\",\"g2UNkE\":\"Powered by\",\"Qs7yI0\":\"Powered By\",\"lqAWKB\":\"Powered by <0>Hi.Events0> 👋\",\"3n47kV\":\"Powered By Hi.Events\",\"ddi4j4\":\"Powered by Stripe\",\"Rs7IQv\":\"Pre Checkout message\",\"rdUucN\":\"Preview\",\"a7u1N9\":\"Price\",\"CmoB9j\":\"Price display mode\",\"Q8PWaJ\":\"Price tiers\",\"a5jvSX\":\"Price Tiers\",\"6RmHKN\":\"Primary Color\",\"G/ZwV1\":\"Primary Colour\",\"8cBtvm\":\"Primary Text Color\",\"BZz12Q\":\"Print\",\"MT7dxz\":\"Print All Tickets\",\"vERlcd\":\"Profile\",\"kUlL8W\":\"Profile updated successfully\",\"cl5WYc\":[\"Promo \",[\"promo_code\"],\" code applied\"],\"ZXpm3a\":[\"Promo \",[\"promoCode\"],\" code applied\"],\"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.\",\"812gwg\":\"Purchase License\",\"LkMOWF\":\"Quantity Available\",\"XKJuAX\":\"Question deleted\",\"oQvMPn\":\"Question Title\",\"enzGAL\":\"Questions\",\"K885Eq\":\"Questions sorted successfully\",\"OMJ035\":\"Radio Option\",\"C4TjpG\":\"Read less\",\"I3QpvQ\":\"Recipient\",\"N2C89m\":\"Reference\",\"gxFu7d\":[\"Refund amount (\",[\"0\"],\")\"],\"n10yGu\":\"Refund order\",\"zPH6gp\":\"Refund Order\",\"/BI0y9\":\"Refunded\",\"fgLNSM\":\"Register\",\"tasfos\":\"remove\",\"t/YqKh\":\"Remove\",\"RloWNu\":\"Reply to email\",\"EGm34e\":\"Resend confirmation email\",\"lnrkNz\":\"Resend email confirmation\",\"wIa8Qe\":\"Resend invitation\",\"VeKsnD\":\"Resend order email\",\"dFuEhO\":\"Resend ticket email\",\"o6+Y6d\":\"Resending...\",\"RfwZxd\":\"Reset password\",\"KbS2K9\":\"Reset Password\",\"vtc20Z\":\"Return to event page\",\"8YBH95\":\"Revenue\",\"PO/sOY\":\"Revoke invitation\",\"GDvlUT\":\"Role\",\"ELa4O9\":\"Sale End Date\",\"5uo5eP\":\"Sale ended\",\"Qm5XkZ\":\"Sale Start Date\",\"hVF4dJ\":\"Sale starts\",\"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\",\"lBAlVv\":\"Seach by name, order #, attendee # or email...\",\"W4kWXJ\":\"Search by attendee name, email or order #...\",\"ulAuWO\":\"Search by event name or description...\",\"+pr/FY\":\"Search by event name...\",\"NQSiYb\":\"Search by name or description...\",\"3zRbWw\":\"Search by name, email, or order #...\",\"BiYOdA\":\"Search by name...\",\"B1bB1j\":\"Search by order #, name or email...\",\"jA4hXE\":\"Search by subject or body...\",\"YEjitp\":\"Search by subject or content...\",\"HYnGee\":\"Search by ticket name...\",\"YIix5Y\":\"Search...\",\"OeW+DS\":\"Secondary color\",\"DnXcDK\":\"Secondary Color\",\"cZF6em\":\"Secondary text color\",\"ZIgYeg\":\"Secondary Text Color\",\"QuNKRX\":\"Select Camera\",\"kWI/37\":\"Select organizer\",\"hAjDQy\":\"Select status\",\"QYARw/\":\"Select Ticket\",\"XH5juP\":\"Select Ticket Tier\",\"nuWxSr\":\"Select Tickets\",\"O/7I0o\":\"Select...\",\"JlFcis\":\"Send\",\"qKWv5N\":[\"Send a copy to <0>\",[\"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.\",\"471O/e\":\"Send confirmation email\",\"D7ZemV\":\"Send order confirmation and ticket email\",\"v1rRtW\":\"Send Test\",\"j1VfcT\":\"SEO Description\",\"/SIY6o\":\"SEO Keywords\",\"GfWoKv\":\"SEO Settings\",\"rXngLf\":\"SEO Title\",\"/jZOZa\":\"Service Fee\",\"vu4F0h\":\"Set a minimum price and let users donate more\",\"Bj/QGQ\":\"Set a minimum price and let users pay more if they choose\",\"nYNT+5\":\"Set up your event\",\"A8iqfq\":\"Set your event live\",\"Tz0i8g\":\"Settings\",\"Z8lGw6\":\"Share\",\"FFbYHm\":[\"Should this \",[\"type\"],\" be applied to all new tickets?\"],\"8vETh9\":\"Show\",\"smd87r\":\"Show available ticket quantity\",\"qDsmzu\":\"Show hidden questions\",\"fMPkxb\":\"Show more\",\"izwOOD\":\"Show tax and fees separately\",\"j3b+OW\":\"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.\",\"DvCwYF\":\"Sorry, this promo code is invalid'\",\"6a/UJE\":\"Sorry, this promo code is not recognized\",\"9rRZZ+\":\"Sorry, your order has expired. Please start a new order.\",\"a4SyEE\":\"Sorting is disabled while filters and sorting are applied\",\"4nG1lG\":\"Standard ticket with a fixed price\",\"D3iCkb\":\"Start Date\",\"RS0o7b\":\"State\",\"/2by1f\":\"State or Region\",\"uAQUqI\":\"Status\",\"UJmAAK\":\"Subject\",\"X2rrlw\":\"Subtotal\",\"b0HJ45\":[\"Success! \",[\"0\"],\" will receive an email shortly.\"],\"BJIEiF\":[\"Successfully \",[\"0\"],\" attendee\"],\"Ih8kN0\":[\"Successfully $\",[\"0\"],\" attendee\"],\"xHl17l\":[\"Successfully checked <0>\",[\"0\"],\" \",[\"1\"],\"0> \",[\"2\"]],\"OtgNFx\":\"Successfully confirmed email address\",\"IKwyaF\":\"Successfully confirmed email change\",\"zLmvhE\":\"Successfully created attendee\",\"9mZEgt\":\"Successfully Created Promo Code\",\"aIA9C4\":\"Successfully Created Question\",\"onFQYs\":\"Successfully Created Ticket\",\"Hgj/mB\":\"Successfully deleted ticket\",\"J3RJSZ\":\"Successfully updated attendee\",\"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\",\"70dYC8\":\"Successfully Updated Promo Code\",\"F+pJnL\":\"Successfully Updated Seo Settings\",\"g2lRrH\":\"Successfully updated ticket\",\"DXZRk5\":\"Suite 100\",\"GNcfRk\":\"Support Email\",\"JpohL9\":\"Tax\",\"geUFpZ\":\"Tax & Fees\",\"0RXCDo\":\"Tax or Fee deleted successfully\",\"ZowkxF\":\"Taxes\",\"EEZnW+\":\"Taxes & Fees\",\"qu6/03\":\"Taxes and Fees\",\"gVjSFp\":\"Taxes and Fees can be associated with tickets and will be added to the ticket price.\",\"e0ZSh4\":\"Text Colour\",\"gypigA\":\"That promo code is invalid\",\"0ozSQu\":\"The background color for the event homepage\",\"LbHWgW\":\"The background color for the ticket widget on the event homepage\",\"75Xclv\":\"The basic details of your event\",\"UNqHnV\":\"The color of the buttons on the event homepage\",\"0amhbL\":\"The color of the links on the event homepage\",\"QXlz+n\":\"The default currency for your events.\",\"mnafgQ\":\"The default timezone for your events.\",\"NlfnUd\":\"The link you clicked is invalid.\",\"FqjKfd\":\"The location of your event\",\"FeAfXO\":[\"The maximum numbers number of tickets for Generals is \",[\"0\"]],\"POEqXB\":\"The organizer details of your event\",\"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.\",\"TJZByZ\":\"The tax and fee to apply to this ticket. You can create new taxes and fees on the\",\"OJYwh9\":\"The taxes and fees to apply to this ticket. You can create new taxes and fees on the\",\"6BpBfZ\":\"The text color for the event homepage\",\"rljHp7\":\"The text color for the ticket widget on the event homepage\",\"s4di40\":\"The text to display in the 'Continue' button. Defaults to 'Continue'\",\"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\",\"wgAiDb\":\"The user must login to change their email.\",\"jvxN9/\":\"There are no tickets available for this event\",\"rMcHYt\":\"There is a refund pending. Please wait for it to complete before requesting another refund.\",\"hjLUr+\":\"There was an error loading this content. Please refresh the page and try again.\",\"68Axnm\":\"There was an error processing your request. Please try again.\",\"mVKOW6\":\"There was an error sending your message\",\"Um/adz\":\"These allow multiple selections\",\"vWeHWp\":\"These colors are not saved in our system.\",\"7qzHGS\":\"These colors are not saved in our system. They are only used to generate the widget.\",\"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.\",\"CNk/ro\":\"This is an online event\",\"GabtCa\":\"This is the email address that will be used as the reply-to address for all emails sent from this event\",\"CKkb5E\":\"This message is how below the\",\"cHO4ec\":\"This message will be included in the footer of all emails sent from this event\",\"RjwlZt\":\"This order has already been paid.\",\"axERYu\":\"This order has already been paid. <0>View order details0>\",\"wY+HO9\":\"This order has already been processed.\",\"5K8REg\":\"This order has already been refunded.\",\"OiQMhP\":\"This order has been cancelled\",\"YyEJij\":\"This order has been cancelled.\",\"D44cEI\":\"This order has been completed.\",\"HILpDX\":\"This order is awaiting payment\",\"0vRWbB\":\"This order is awaiting payment.\",\"BdYtn9\":\"This order is complete\",\"e3uMJH\":\"This order is complete.\",\"YNKXOK\":\"This order is processing.\",\"LIjb4v\":\"This order is processing. TODO - a nice image and poll the API\",\"yPZN4i\":\"This order page is no longer available.\",\"5189cf\":\"This overrides all visibility settings and will hide the ticket from all customers.\",\"4vwjho\":\"This page has expired. <0>View order details0>\",\"Qt7RBu\":\"This question is only visible to the event organizer\",\"os29v1\":\"This reset password link is invalid or expired.\",\"WJqBqd\":\"This ticket cannot be deleted because it is\\nassociated with an order. You can hide it instead.\",\"ma6qdu\":\"This ticket is hidden from public view\",\"xJ8nzj\":\"This ticket is hidden unless targeted by a Promo Code\",\"IV9xTT\":\"This user is not active, as they have not accepted their invitation.\",\"5AnPaO\":\"ticket\",\"kjAL4v\":\"Ticket\",\"KosivG\":\"Ticket deleted successfully\",\"dtGC3q\":\"Ticket email has been resent to attendee\",\"USk+Mn\":\"Ticket page message\",\"mRM6XH\":\"Ticket Sales\",\"NirIiz\":\"Ticket Tier\",\"8jLPgH\":\"Ticket Type\",\"jqWDf9\":\"Ticket widget background color\",\"UrMVAz\":\"Ticket Widget Preview\",\"ngtDy7\":\"Ticket widget text color\",\"N+YYpo\":\"Ticket(s)\",\"6GQNLE\":\"Tickets\",\"54q0zp\":\"Tickets for\",\"i+idBz\":\"Tickets sold\",\"AGRilS\":\"Tickets Sold\",\"56Qw2C\":\"Tickets sorted successfully\",\"4f8A8M\":\"Tickets to which the promo code applies (Applies to all by default)\",\"xN9AhL\":[\"Tier \",[\"0\"]],\"oYaHuq\":\"Tiered Ticket\",\"XZrhpz\":\"Tiered Ticket - Coming Soon\",\"4M150e\":\"Tiered tickets allow you to offer multiple price options for the same ticket.\\nThis is perfect for early bird tickets, or offering different price\\noptions for different groups of people.\",\"jQoYTX\":\"Tiered tickets allow you to offer multiple price options for the same ticket. This is perfect for early bird tickets or offering different price options for different groups of people.\",\"s/0RpH\":\"Times used\",\"40Gx0U\":\"Timezone\",\"oDGm7V\":\"TIP\",\"MHrjPM\":\"Title\",\"xdA/+p\":\"Tools\",\"72c5Qo\":\"Total\",\"BxsfMK\":\"Total Fees\",\"mpB/d9\":\"Total order amount\",\"m3FM1g\":\"Total refunded\",\"GBBIy+\":\"Total remaining\",\"/SgoNA\":\"Total Tax\",\"+zy2Nq\":\"Type\",\"mLGbAS\":[\"Unable to \",[\"0\"],\" attendee\"],\"/cSMqv\":\"Unable to create question. Please check the your details\",\"nNdxt9\":\"Unable to create ticket. Please check the your details\",\"MH/lj8\":\"Unable to update question. Please check the your details\",\"Mqy/Zy\":\"United States\",\"NIuIk1\":\"Unlimited\",\"oMcLhS\":\"Unlimited ticket quantity available\",\"E0q9qH\":\"Unlimited usages allowed\",\"ia8YsC\":\"Upcoming\",\"L/gNNk\":[\"Update \",[\"0\"]],\"+qqX74\":\"Update event name, description and dates\",\"vXPSuB\":\"Update profile\",\"gsehpV\":\"Upload an image to be displayed on the event page\",\"BNBfrU\":\"Upload Cover\",\"UtDm3q\":\"URL copied to clipboard\",\"e5lF64\":\"Usage Example\",\"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 Settings0>\",\"vgwVkd\":\"UTC\",\"khBZkl\":\"VAT\",\"E/9LUk\":\"Venue Name\",\"AM+zF3\":\"View attendee\",\"e4mhwd\":\"View event homepage\",\"/5PEQz\":\"View event page\",\"fFornT\":\"View full message\",\"YIsEhQ\":\"View map\",\"Ep3VfY\":\"View on Google Maps\",\"AMkkeL\":\"View order\",\"Y8s4f6\":\"View order details\",\"tF+VVr\":\"VIP Ticket\",\"2q/Q7x\":\"Visibility\",\"vmOFL/\":\"We could not process your payment. Please try again or contact support.\",\"1E0vyy\":\"We couldn't load the data. Please try again.\",\"VGioT0\":\"We recommend dimensions of 2160px by 1080px, 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\"],\" 👋\"],\"wjqPqF\":\"What are Tiered Tickets?\",\"5iXvHA\":\"What is a Tiered Ticketing?\",\"MhhnvW\":\"What tickets does this code apply to? (Applies to all by default)\",\"dCil3h\":\"What tickets should this question be apply to?\",\"Rb0XUE\":\"What time will you be arriving?\",\"5N4wLD\":\"What type of question is this?\",\"S+OdxP\":\"Who is organizing this event?\",\"LINr2M\":\"Who is this message to?\",\"nWhye/\":\"Who should be asked this question?\",\"vVGiM4\":\"Who type of question is this?\",\"onLsWS\":\"Whoops! something went wrong. Please try again or contact support if the problem persists.\",\"AHXN2z\":\"Widget\",\"AU/8QR\":\"Widget Configuration\",\"VxFvXQ\":\"Widget Embed\",\"v1P7Gm\":\"Widget Settings\",\"b4itZn\":\"Working\",\"hqmXmc\":\"Working...\",\"l75CjT\":\"Yes\",\"QcwyCh\":\"Yes, remove them\",\"P+Sty0\":[\"You are changing your email to <0>\",[\"0\"],\"0>.\"],\"4ysd6z\":\"You can connecting using this Zoom link...\",\"9HGdDw\":\"You can create a promo code which targets this ticket on the\",\"KRhIxT\":\"You can now start receiving payments through Stripe.\",\"UqVaVO\":\"You cannot change the ticket type as there are attendees associated with this ticket.\",\"zQ8idk\":\"You cannot change the ticket type because there are already tickets sold for this ticket.\",\"3vRX5A\":\"You cannot delete this price tier because there are already tickets sold for this tier. You can hide it instead.\",\"RCC09s\":\"You cannot edit a default question\",\"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.\",\"XoeazJ\":\"You have no attendee questions. Attendee questions are asked once per attendee.\",\"CoZHDB\":\"You have no order questions.\",\"FZKDIe\":\"You have no order questions. Order questions are asked once per order.\",\"15qAvl\":\"You have no pending email change.\",\"n81Qk8\":\"You have not completed your Stripe Connect setup\",\"jxsiqJ\":\"You have not connected your Stripe account\",\"183zcL\":\"You have taxes and fees added to a Free Ticket. Would you like to remove or obscure them?\",\"2v5MI1\":\"You haven't sent any messages yet. You can send messages to all attendees, or to specific ticket 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\",\"LRguuL\":\"You must have at least one tier\",\"8/eLoa\":\"You need to verify your account before you can send messages.\",\"WHXRMI\":\"You'll need at least one ticket to get started. Free, paid or let the user decide what to pay.\",\"bdg03s\":\"Your account email in outgoing emails.\",\"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\"],\"0> is pending. Please check your email to confirm\"],\"yZfBoy\":\"Your message has been sent\",\"la26JS\":\"Your order is in progress\",\"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.\",\"cJ4Y4R\":\"Your refund is processing.\",\"IFHV2p\":\"Your ticket for\",\"3k7HDY\":\"Zip\",\"BM/KQm\":\"Zip or Postal Code\",\"VftCuk\":\"Zoom link, Google Meet link, etc.\",\"ySU+JY\":\"your@email.com\"}")};
\ No newline at end of file
diff --git a/frontend/src/locales/de.po b/frontend/src/locales/de.po
index 695dbec6..8b2aa02d 100644
--- a/frontend/src/locales/de.po
+++ b/frontend/src/locales/de.po
@@ -22,8 +22,8 @@ msgid "'There\\'s nothing to show yet'"
msgstr ""
#: src/components/common/QuestionsTable/index.tsx:267
-msgid "{0, plural, one {# hidden question} other {# hidden questions}}"
-msgstr ""
+#~ msgid "{0, plural, one {# hidden question} other {# hidden questions}}"
+#~ msgstr ""
#: src/components/common/AttendeeTable/index.tsx:113
#~ msgid "{0}"
@@ -49,6 +49,10 @@ msgstr ""
msgid "{0}'s Events"
msgstr ""
+#: src/components/common/QuestionsTable/index.tsx:267
+msgid "{0}{1}"
+msgstr ""
+
#: src/components/modals/RefundOrderModal/index.tsx:121
msgid "{message}"
msgstr ""
@@ -347,7 +351,7 @@ msgstr ""
msgid "All Events"
msgstr ""
-#: src/components/common/PromoCodeTable/index.tsx:128
+#: src/components/common/PromoCodeTable/index.tsx:130
msgid "All Tickets"
msgstr ""
@@ -429,7 +433,7 @@ msgstr ""
msgid "Appearance"
msgstr ""
-#: src/components/routes/ticket-widget/SelectTickets/index.tsx:359
+#: src/components/routes/ticket-widget/SelectTickets/index.tsx:357
msgid "applied"
msgstr ""
@@ -437,7 +441,7 @@ msgstr ""
#~ msgid "Apply"
#~ msgstr ""
-#: src/components/routes/ticket-widget/SelectTickets/index.tsx:386
+#: src/components/routes/ticket-widget/SelectTickets/index.tsx:385
msgid "Apply Promo Code"
msgstr ""
@@ -453,7 +457,7 @@ msgstr ""
msgid "Are you sure you want to cancel this attendee? This will void their ticket"
msgstr ""
-#: src/components/common/PromoCodeTable/index.tsx:34
+#: src/components/common/PromoCodeTable/index.tsx:36
msgid "Are you sure you want to delete this promo code?"
msgstr ""
@@ -485,8 +489,8 @@ msgstr ""
msgid "Attendee Details"
msgstr ""
-#: src/components/common/QuestionsTable/index.tsx:306
-#: src/components/common/QuestionsTable/index.tsx:347
+#: src/components/common/QuestionsTable/index.tsx:309
+#: src/components/common/QuestionsTable/index.tsx:350
msgid "Attendee questions"
msgstr ""
@@ -621,7 +625,7 @@ msgstr ""
#~ msgstr ""
#: src/components/common/AttendeeTable/index.tsx:211
-#: src/components/common/PromoCodeTable/index.tsx:37
+#: src/components/common/PromoCodeTable/index.tsx:39
#: src/utilites/confirmationDialog.tsx:11
msgid "Cancel"
msgstr ""
@@ -728,7 +732,7 @@ msgstr ""
msgid "click here"
msgstr ""
-#: src/components/common/PromoCodeTable/index.tsx:95
+#: src/components/common/PromoCodeTable/index.tsx:97
msgid "Click to copy"
msgstr ""
@@ -741,7 +745,7 @@ msgstr ""
msgid "Close sidebar"
msgstr ""
-#: src/components/common/PromoCodeTable/index.tsx:66
+#: src/components/common/PromoCodeTable/index.tsx:68
#: src/components/forms/PromoCodeForm/index.tsx:33
msgid "Code"
msgstr ""
@@ -883,7 +887,7 @@ msgstr ""
msgid "Copied"
msgstr ""
-#: src/components/common/PromoCodeTable/index.tsx:103
+#: src/components/common/PromoCodeTable/index.tsx:105
msgid "copied to clipboard"
msgstr ""
@@ -899,7 +903,7 @@ msgstr ""
msgid "Copy Link"
msgstr ""
-#: src/components/common/PromoCodeTable/index.tsx:172
+#: src/components/common/PromoCodeTable/index.tsx:176
msgid "Copy URL"
msgstr ""
@@ -924,7 +928,7 @@ msgstr ""
msgid "Create {0}"
msgstr ""
-#: src/components/common/PromoCodeTable/index.tsx:54
+#: src/components/common/PromoCodeTable/index.tsx:56
msgid "Create a Promo Code"
msgstr ""
@@ -1051,7 +1055,7 @@ msgstr ""
#: src/components/common/AttendeeTable/index.tsx:205
#: src/components/common/OrdersTable/index.tsx:131
-#: src/components/common/PromoCodeTable/index.tsx:176
+#: src/components/common/PromoCodeTable/index.tsx:180
#: src/components/common/QuestionsTable/index.tsx:113
#: src/components/common/TicketsTable/SortableTicket/index.tsx:193
msgid "Danger zone"
@@ -1073,12 +1077,12 @@ msgstr ""
#~ msgid "Deactivate user"
#~ msgstr ""
-#: src/components/common/PromoCodeTable/index.tsx:37
+#: src/components/common/PromoCodeTable/index.tsx:39
#: src/components/common/TaxAndFeeList/index.tsx:73
msgid "Delete"
msgstr ""
-#: src/components/common/PromoCodeTable/index.tsx:180
+#: src/components/common/PromoCodeTable/index.tsx:184
msgid "Delete code"
msgstr ""
@@ -1121,7 +1125,7 @@ msgstr ""
#~ msgid "Disable code"
#~ msgstr ""
-#: src/components/common/PromoCodeTable/index.tsx:67
+#: src/components/common/PromoCodeTable/index.tsx:69
msgid "Discount"
msgstr ""
@@ -1145,13 +1149,17 @@ msgstr ""
msgid "Don't have an account? <0>Sign Up0>"
msgstr ""
+#: src/components/forms/TicketForm/index.tsx:139
+msgid "Donation / Pay what you'd like ticket"
+msgstr ""
+
#: src/components/routes/ticket-widget/SelectTickets/Prices/Tiered/index.tsx:59
#~ msgid "Donation amount"
#~ msgstr ""
#: src/components/forms/TicketForm/index.tsx:139
-msgid "Donation Ticket"
-msgstr ""
+#~ msgid "Donation Ticket"
+#~ msgstr ""
#: src/components/routes/ticket-widget/OrderSummaryAndTickets/index.tsx:91
#~ msgid "Download Tickets PDF"
@@ -1202,7 +1210,7 @@ msgstr ""
msgid "Edit Attendee"
msgstr ""
-#: src/components/common/PromoCodeTable/index.tsx:167
+#: src/components/common/PromoCodeTable/index.tsx:169
msgid "Edit Code"
msgstr ""
@@ -1398,7 +1406,7 @@ msgstr ""
msgid "Events"
msgstr ""
-#: src/components/common/PromoCodeTable/index.tsx:70
+#: src/components/common/PromoCodeTable/index.tsx:72
msgid "Expires"
msgstr ""
@@ -1476,7 +1484,7 @@ msgstr ""
msgid "First name must be between 1 and 50 characters"
msgstr ""
-#: src/components/common/QuestionsTable/index.tsx:327
+#: src/components/common/QuestionsTable/index.tsx:330
msgid "First Name, Last Name, and Email Address are default questions and are always included in the checkout process."
msgstr ""
@@ -1555,7 +1563,7 @@ msgstr ""
msgid "Guests"
msgstr ""
-#: src/components/routes/ticket-widget/SelectTickets/index.tsx:354
+#: src/components/routes/ticket-widget/SelectTickets/index.tsx:352
msgid "Have a promo code?"
msgstr ""
@@ -1605,7 +1613,7 @@ msgstr ""
msgid "Hide getting started page"
msgstr ""
-#: src/components/common/QuestionsTable/index.tsx:273
+#: src/components/common/QuestionsTable/index.tsx:276
msgid "Hide hidden questions"
msgstr ""
@@ -1891,7 +1899,7 @@ msgstr ""
#: src/components/common/EventCard/index.tsx:78
#: src/components/common/OrdersTable/index.tsx:94
#: src/components/common/OrdersTable/index.tsx:109
-#: src/components/common/PromoCodeTable/index.tsx:164
+#: src/components/common/PromoCodeTable/index.tsx:166
#: src/components/common/TicketsTable/SortableTicket/index.tsx:171
#: src/components/layouts/Event/index.tsx:38
msgid "Manage"
@@ -2064,7 +2072,7 @@ msgstr ""
msgid "Navigate to Attendee"
msgstr ""
-#: src/components/common/PromoCodeTable/index.tsx:155
+#: src/components/common/PromoCodeTable/index.tsx:157
#: src/components/routes/account/ManageAccount/sections/Users/index.tsx:101
msgid "Never"
msgstr ""
@@ -2108,7 +2116,7 @@ msgstr ""
msgid "No orders to show"
msgstr ""
-#: src/components/common/PromoCodeTable/index.tsx:43
+#: src/components/common/PromoCodeTable/index.tsx:45
msgid "No Promo Codes to show"
msgstr ""
@@ -2136,7 +2144,7 @@ msgstr ""
msgid "No tickets to show"
msgstr ""
-#: src/components/common/PromoCodeTable/index.tsx:79
+#: src/components/common/PromoCodeTable/index.tsx:81
msgid "None"
msgstr ""
@@ -2255,8 +2263,8 @@ msgstr ""
msgid "Order has been canceled and the order owner has been notified."
msgstr ""
-#: src/components/common/QuestionsTable/index.tsx:291
-#: src/components/common/QuestionsTable/index.tsx:333
+#: src/components/common/QuestionsTable/index.tsx:294
+#: src/components/common/QuestionsTable/index.tsx:336
msgid "Order questions"
msgstr ""
@@ -2511,7 +2519,7 @@ msgstr ""
msgid "Pre Checkout message"
msgstr ""
-#: src/components/common/QuestionsTable/index.tsx:325
+#: src/components/common/QuestionsTable/index.tsx:328
msgid "Preview"
msgstr ""
@@ -2579,7 +2587,7 @@ msgstr ""
msgid "Promo Codes"
msgstr ""
-#: src/components/common/PromoCodeTable/index.tsx:48
+#: src/components/common/PromoCodeTable/index.tsx:50
msgid "Promo codes can be used to offer discounts, presale access, or provide special access to your event."
msgstr ""
@@ -2647,11 +2655,11 @@ msgstr ""
msgid "Register"
msgstr ""
-#: src/components/routes/ticket-widget/SelectTickets/index.tsx:363
+#: src/components/routes/ticket-widget/SelectTickets/index.tsx:361
msgid "remove"
msgstr ""
-#: src/components/routes/ticket-widget/SelectTickets/index.tsx:364
+#: src/components/routes/ticket-widget/SelectTickets/index.tsx:362
msgid "Remove"
msgstr ""
@@ -2911,7 +2919,11 @@ msgid "Service Fee"
msgstr ""
#: src/components/forms/TicketForm/index.tsx:141
-msgid "Set a minimum price and let users donate more"
+#~ msgid "Set a minimum price and let users donate more"
+#~ msgstr ""
+
+#: src/components/forms/TicketForm/index.tsx:141
+msgid "Set a minimum price and let users pay more if they choose"
msgstr ""
#: src/components/routes/event/GettingStarted/index.tsx:86
@@ -2943,7 +2955,7 @@ msgstr ""
msgid "Show available ticket quantity"
msgstr ""
-#: src/components/common/QuestionsTable/index.tsx:273
+#: src/components/common/QuestionsTable/index.tsx:276
msgid "Show hidden questions"
msgstr ""
@@ -3512,11 +3524,11 @@ msgstr ""
#~ msgid "Ticket widget text color"
#~ msgstr ""
-#: src/components/common/PromoCodeTable/index.tsx:145
+#: src/components/common/PromoCodeTable/index.tsx:147
msgid "Ticket(s)"
msgstr ""
-#: src/components/common/PromoCodeTable/index.tsx:69
+#: src/components/common/PromoCodeTable/index.tsx:71
#: src/components/layouts/Event/index.tsx:41
#: src/components/layouts/EventHomepage/index.tsx:80
#: src/components/routes/event/tickets.tsx:37
@@ -3566,7 +3578,7 @@ msgstr ""
#~ msgid "Tiered tickets allow you to offer multiple price options for the same ticket. This is perfect for early bird tickets or offering different price options for different groups of people."
#~ msgstr ""
-#: src/components/common/PromoCodeTable/index.tsx:68
+#: src/components/common/PromoCodeTable/index.tsx:70
msgid "Times used"
msgstr ""
@@ -3652,7 +3664,7 @@ msgstr ""
#~ msgid "Unlimited ticket quantity available"
#~ msgstr ""
-#: src/components/common/PromoCodeTable/index.tsx:123
+#: src/components/common/PromoCodeTable/index.tsx:125
msgid "Unlimited usages allowed"
msgstr ""
@@ -3680,6 +3692,10 @@ msgstr ""
msgid "Upload Cover"
msgstr ""
+#: src/components/common/PromoCodeTable/index.tsx:174
+msgid "URL copied to clipboard"
+msgstr ""
+
#: src/components/common/WidgetEditor/index.tsx:295
msgid "Usage Example"
msgstr ""
@@ -3946,7 +3962,7 @@ msgstr ""
msgid "You have connected your Stripe account"
msgstr ""
-#: src/components/common/QuestionsTable/index.tsx:316
+#: src/components/common/QuestionsTable/index.tsx:319
msgid "You have no attendee questions."
msgstr ""
@@ -3954,7 +3970,7 @@ msgstr ""
#~ msgid "You have no attendee questions. Attendee questions are asked once per attendee."
#~ msgstr ""
-#: src/components/common/QuestionsTable/index.tsx:301
+#: src/components/common/QuestionsTable/index.tsx:304
msgid "You have no order questions."
msgstr ""
diff --git a/frontend/src/locales/en.js b/frontend/src/locales/en.js
index ade67934..952293cd 100644
--- a/frontend/src/locales/en.js
+++ b/frontend/src/locales/en.js
@@ -1 +1 @@
-/*eslint-disable*/module.exports={messages:JSON.parse("{\"1bpx9A\":\"...\",\"f8qS7T\":\"'There\\\\'s nothing to show yet'\",\"4zldrf\":[[\"0\",\"plural\",{\"one\":[\"#\",\" hidden question\"],\"other\":[\"#\",\" hidden questions\"]}]],\"J/hVSQ\":[[\"0\"]],\"KMgp2+\":[[\"0\"],\" available\"],\"tmew5X\":[[\"0\"],\" checked in\"],\"Pmr5xp\":[[\"0\"],\" created successfully\"],\"FImCSc\":[[\"0\"],\" updated successfully\"],\"KOr9b4\":[[\"0\"],\"'s Events\"],\"wapGcj\":[[\"message\"]],\"fyE7Au\":[[\"minutes\"],\" minutes and \",[\"seconds\"],\" seconds\"],\"NlQ0cx\":[[\"organizerName\"],\"'s first event\"],\"OXku3b\":\"<0>https://0>your-website.com\",\"E15xs8\":\"⚡️ Set up your event\",\"FL6OwU\":\"✉️ Confirm your email address\",\"y1NShf\":\"🎉 Congratulation on creating an event!\",\"BN0OQd\":\"🎉 Congratulations on creating an event!\",\"fAv9QG\":\"🎟️ Add tickets\",\"4WT5tD\":\"🎨 Customize your event page\",\"3VPPdS\":\"💳 Connect with Stripe\",\"s4Tgn6\":\"📢 Promote your event\",\"cjdktw\":\"🚀 Set your event live\",\"rmelwV\":\"0 minutes and 0 seconds\",\"UQ7pBY\":\"0.50 for $0.50\",\"i1+xzD\":\"1.75 for 1.75%\",\"i0puaE\":\"10.00\",\"W9+fkZ\":\"10001\",\"qdfdgM\":\"123 Main Street\",\"IoRZzD\":\"20\",\"+H1RMb\":\"2024-01-01 10:00\",\"Q/T49U\":\"2024-01-01 18:00\",\"hMT8+2\":\"94103\",\"d9El7Q\":[\"A default \",[\"type\"],\" is automaticaly applied to all new tickets. You can override this on a per ticket basis.\"],\"SMUbbQ\":\"A Dropdown input allows only one selection\",\"qv4bfj\":\"A fee, like a booking fee or a service fee\",\"Pgaiuj\":\"A fixed amount per ticket. E.g, $0.50 per ticket\",\"f4vJgj\":\"A multi line text input\",\"ySO/4f\":\"A percentage of the ticket price. E.g., 3.5% of the ticket price\",\"WXeXGB\":\"A promo code with no discount can be used to reveal hidden tickets.\",\"GMhWB5\":\"A Radio option allows has multiple options but only one can be selected.\",\"CBt3s7\":\"A Radio Option allows only one selection\",\"AG/qmQ\":\"A Radio option has multiple options but only one can be selected.\",\"7g61G9\":\"A short description of Awesome Events Ltd.\",\"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\",\"zCk10D\":\"A single question per attendee. E.g, What is your preferred meal?\",\"ap3v36\":\"A single question per order. E.g, What is your company name?\",\"RlJmQg\":\"A standard tax, like VAT or GST\",\"pDwHGk\":\"About hi.events\",\"uIKNjo\":\"About the event\",\"bfXQ+N\":\"Accept Invitation\",\"iwyhk4\":\"Access to the VIP area...\",\"AeXO77\":\"Account\",\"0b79Xf\":\"Account Email\",\"lkNdiH\":\"Account Name\",\"Puv7+X\":\"Account Settings\",\"OmylXO\":\"Account updated successfully\",\"7L01XJ\":\"Actions\",\"FQBaXG\":\"Activate\",\"F6pfE9\":\"Active\",\"m16xKo\":\"Add\",\"LKNynS\":\"Add a cover image, description, and more to make your event stand out.\",\"gMK0ps\":\"Add event details and and manage event settings.\",\"Fb+SDI\":\"Add More tickets\",\"ApsD9J\":\"Add New\",\"TZxnm8\":\"Add Option\",\"Cw27zP\":\"Add question\",\"yWiPh+\":\"Add Tax or Fee\",\"BGD9Yt\":\"Add tickets\",\"goOKRY\":\"Add tier\",\"p59pEv\":\"Additional Details\",\"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.\",\"CPXP5Z\":\"Affiliates\",\"W7AfhC\":\"All attendees of this event\",\"QsYjci\":\"All Events\",\"/twVAS\":\"All Tickets\",\"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..\",\"8wYDMp\":\"Already have an account?\",\"ApOYO8\":\"Amazing, Event, Keywords...\",\"hehnjM\":\"Amount\",\"TRYjHa\":[\"amount in \",[\"0\"]],\"R2O9Rg\":[\"Amount paid (\",[\"0\"],\")\"],\"tLjOgo\":[\"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\",\"er3d/4\":\"An error occurred while sorting the tickets. Please try again or refresh the page\",\"hhvESd\":\"An event is the actual event you are hosting\",\"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.\",\"j4DliD\":\"Any queries from ticket 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\",\"DB8zMK\":\"Apply\",\"GctSSm\":\"Apply Promo Code\",\"jcnZEw\":[\"Apply this \",[\"type\"],\" to all new tickets\"],\"q7TRd7\":\"Are you sure you want to activate this attendee?\",\"/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\",\"2xEpch\":\"Ask once per attendee\",\"LBLOqH\":\"Ask once per order\",\"ss9PbX\":\"Attendee\",\"m0CFV2\":\"Attendee Details\",\"lXcSD2\":\"Attendee questions\",\"VvYqMB\":\"Attendee questions are asked once per attendee. By default, people are asked for their first name, last name, and email address.\",\"spxPEv\":\"Attendee questions are asked once per attendee. By default, we ask for the attendee's first name, last name, and email address.\",\"9SZT4E\":\"Attendees\",\"5UbY+B\":\"Attendees with a specific ticket\",\"IMJ6rh\":\"Auto Resize\",\"vZ5qKF\":\"Automatically resize the widget height based on the content. When disabled, the widget will fill the height of the container.\",\"lXkUEV\":\"Availability\",\"ioG+xt\":\"Awaiting Payment\",\"3PmQfI\":\"Awesome Event\",\"kNmmvE\":\"Awesome Events Ltd.\",\"Yrbm6T\":\"Awesome Organizer Ltd.\",\"9002sI\":\"Back to all events\",\"0TGkYM\":\"Back to event homepage\",\"A302fe\":\"Back to event page\",\"VCoEm+\":\"Back to login\",\"MLZyiY\":\"Background color\",\"k1bLf+\":\"Background Color\",\"I7xjqg\":\"Background Type\",\"EOUool\":\"Basic Details\",\"7EGQKA\":\"Because you are the account owner, you cannot change your role or status.\",\"1mwMl+\":\"Before you send!\",\"wVfiR2\":\"Before you're event can go live, there's a few thing to do.\",\"/yeZ20\":\"Before your event can go live, there are a few things you need to do.\",\"1xAcxY\":\"Begin selling tickets in minutes\",\"R+w/Va\":\"Billing\",\"Ptp9MF\":\"Button color\",\"whqocw\":\"By registering you agree to our <0>Terms of Service0> and <1>Privacy Policy1>.\",\"bcCn6r\":\"Calculation Type\",\"+8bmSu\":\"California\",\"iStTQt\":\"Camera permission was denied. <0>Request Permission0> again, or if this doesn't work, you will need to <1>grant this page1> access to your camera in your browser settings.\",\"Jzn1qy\":\"Can't load events\",\"dEgA5A\":\"Cancel\",\"Gjt/py\":\"Cancel email change\",\"tVJk4q\":\"Cancel order\",\"Os6n2a\":\"Cancel Order\",\"Mz7Ygx\":[\"Cancel Order \",[\"0\"]],\"Ud7zwq\":\"Canceling will cancel all tickets associated with this order, and release the tickets back into the available pool.\",\"vv7kpg\":\"Cancelled\",\"77/YgG\":\"Change Cover\",\"GptGxg\":\"Change password\",\"QndF4b\":\"check in\",\"xMDm+I\":\"Check In\",\"9FVFym\":\"check out\",\"gXcPxc\":\"Check-in\",\"Y3FYXy\":\"Check-In\",\"CNafaC\":\"Checkbox options allow multiple selections\",\"SpabVf\":\"Checkboxes\",\"CRu4lK\":\"Checked In\",\"/ydvvl\":\"Checkout Messaging\",\"1WnhCL\":\"Checkout Settings\",\"JjkX4+\":\"Choose a color for your background\",\"/Jizh9\":\"Choose an account\",\"jJGoVv\":\"Choose what notifications you want to receive\",\"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\",\"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\",\"DwF9eH\":\"Component Code\",\"7VpPHA\":\"Confirm\",\"ZaEJZM\":\"Confirm Email Change\",\"yjkELF\":\"Confirm New Password\",\"xnWESi\":\"Confirm password\",\"p2/GCq\":\"Confirm Password\",\"wnDgGj\":\"Confirming email address...\",\"DnLC08\":\"Congratulation on creating an event!\",\"pbAk7a\":\"Connect Stripe\",\"UMGQOh\":\"Connect with Stripe\",\"QKLP1W\":\"Connect your Stripe account to start receiving payments.\",\"5lcVkL\":\"Connection Details\",\"i3p844\":\"Contact email\",\"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\",\"RGVUUI\":\"Continue To Payment\",\"6V3Ea3\":\"Copied\",\"T5rdis\":\"copied to clipboard\",\"he3ygx\":\"Copy\",\"8+cOrS\":\"Copy details to all attendees\",\"ENCIQz\":\"Copy Link\",\"E6nRW7\":\"Copy URL\",\"JNCzPW\":\"Country\",\"IF7RiR\":\"Cover\",\"P0rbCt\":\"Cover Image\",\"hYgDIe\":\"Create\",\"b9XOHo\":[\"Create \",[\"0\"]],\"6kdXbW\":\"Create a Promo Code\",\"n5pRtF\":\"Create a Ticket\",\"X6sRve\":[\"Create an account or <0>\",[\"0\"],\"0> to get started\"],\"nx+rqg\":\"create an organizer\",\"ipP6Ue\":\"Create Attendee\",\"uN355O\":\"Create Event\",\"BOqY23\":\"Create new\",\"kpJAeS\":\"Create Organizer\",\"sYpiZP\":\"Create Promo Code\",\"a6YrKg\":\"Create promo codes\",\"n6H6AO\":\"Create promo codes to offer discounts to your attendees.\",\"B3Mkdt\":\"Create Question\",\"UKfi21\":\"Create Tax or Fee\",\"Tg323g\":\"Create Ticket\",\"agZ87r\":\"Create tickets for your event, set prices, and manage available quantity.\",\"d+F6q9\":\"Created\",\"Q2lUR2\":\"Currency\",\"DCKkhU\":\"Current Password\",\"uIElGP\":\"Custom Maps URL\",\"876pfE\":\"Customer\",\"QOg2Sf\":\"Customize the email and notification settings for this event\",\"Lu75d1\":\"Customize the email settings for this event\",\"RaxMyF\":\"Customize the event homepage and checkout experience\",\"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\",\"7p5kLi\":\"Dashboard\",\"mYGY3B\":\"Date\",\"JvUngl\":\"Date & Time\",\"RiXc4g\":\"Deactivate user\",\"cnGeoo\":\"Delete\",\"WHf154\":\"Delete code\",\"heJllm\":\"Delete Cover\",\"KWa0gi\":\"Delete Image\",\"IatsLx\":\"Delete question\",\"GnyEfA\":\"Delete ticket\",\"E33LRn\":\"Delete user\",\"Nu4oKW\":\"Description\",\"s9iD5d\":\"Description should be less than 50,000 characters\",\"URmyfc\":\"Details\",\"x8uDKb\":\"Disable code\",\"H6Ma8Z\":\"Discount\",\"ypJ62C\":\"Discount %\",\"3LtiBI\":[\"Discount in \",[\"0\"]],\"C8JLas\":\"Discount Type\",\"1QfxQT\":\"Dismiss\",\"cVq+ga\":\"Don't have an account? <0>Sign Up0>\",\"++S5i/\":\"Donation amount\",\"OO7MG7\":\"Donation Ticket\",\"0pEVi2\":\"Download Tickets PDF\",\"uABpqP\":\"Drag and drop or click\",\"3z2ium\":\"Drag to sort\",\"6skwyH\":\"Drop an image, or click here to replace the Cover Image\",\"S37RRV\":\"Drop an image, or click here to upload the Cover Image\",\"CfKofC\":\"Dropdown selection\",\"vi8Q/5\":\"Duplicate event\",\"7Cx5It\":\"Early bird\",\"ePK91l\":\"Edit\",\"N6j2JH\":[\"Edit \",[\"0\"]],\"kNGp1D\":\"Edit attendee\",\"t2bbp8\":\"Edit Attendee\",\"iFgaVN\":\"Edit Code\",\"jrBSO1\":\"Edit Organizer\",\"9BdS63\":\"Edit Promo Code\",\"O0CE67\":\"Edit question\",\"EzwCw7\":\"Edit Question\",\"d+nnyk\":\"Edit Ticket\",\"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\",\"WiKda6\":\"Email Configuration\",\"APuxIE\":\"Email confirmation resent\",\"YaCgdO\":\"Email confirmation resent successfully\",\"jyt+cx\":\"Email footer message\",\"I6F3cp\":\"Email not verified\",\"G5zNMX\":\"Email Settings\",\"NTZ/NX\":\"Embed Code\",\"4rnJq4\":\"Embed Script\",\"VFv2ZC\":\"End Date\",\"237hSL\":\"Ended\",\"MhVoma\":\"Enter an amount excluding taxes and fees.\",\"3Z223G\":\"Error confirming email address\",\"a6gga1\":\"Error confirming email change\",\"5/63nR\":\"EUR\",\"0pC/y6\":\"Event\",\"nuoP/j\":\"Event created successfully\",\"CFLUfD\":\"Event created successfully 🎉\",\"0Zptey\":\"Event Defaults\",\"Xe3XMd\":\"Event is not visible to the public\",\"4pKXJS\":\"Event is visible to the public\",\"ClwUUD\":\"Event location & venue details\",\"OopDbA\":\"Event page\",\"JyD0LH\":\"Event Settings\",\"4/If97\":\"Event status update failed. Please try again later\",\"btxLWj\":\"Event status updated\",\"tst44n\":\"Events\",\"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.\",\"9zSt4h\":\"Failed to export attendees. Please try again.\",\"2uGNuE\":\"Failed to export orders. Please try again.\",\"ZQ15eN\":\"Failed to resend ticket email\",\"PLUB/s\":\"Fee\",\"YirHq7\":\"Feedback\",\"/mfICu\":\"Fees\",\"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.\",\"QWa3Sk\":\"First Name, Last Name, and Email Address are default questions that are always included in the checkout process.\",\"TpqW74\":\"Fixed\",\"irpUxR\":\"Fixed amount\",\"TF9opW\":\"Flash is not available on this device\",\"UNMVei\":\"Forgot password?\",\"2POOFK\":\"Free\",\"/4rQr+\":\"Free Ticket\",\"01my8x\":\"Free ticket, no payment information required\",\"ejVYRQ\":\"From\",\"u6FPxT\":\"Get Tickets\",\"4GLxhy\":\"Getting Started\",\"4D3rRj\":\"Go back to profile\",\"cQPKZt\":\"Go to Dashboard\",\"9LCqFI\":\"Go to event homepage\",\"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.\",\"Ow9Hz5\":[\"Hi.Events Conference \",[\"0\"]],\"verBst\":\"Hi.Events Conference Center\",\"6eMEQO\":\"hi.events logo\",\"C4qOW8\":\"Hidden from public view\",\"k3dfFD\":\"Hidden questions are only visible to the event organizer and not to the customer.\",\"EeNE0j\":\"Hidden will not be shown to customers.\",\"vLyv1R\":\"Hide\",\"Mkkvfd\":\"Hide getting started page\",\"mFn5Xz\":\"Hide hidden questions\",\"SCimta\":\"Hide the getting started page from the sidebar\",\"Da29Y6\":\"Hide this question\",\"fsi6fC\":\"Hide this ticket from customers\",\"fvDQhr\":\"Hide this tier from users\",\"Fhzoa8\":\"Hide ticket after sale end date\",\"yhm3J/\":\"Hide ticket before sale start date\",\"k7/oGT\":\"Hide ticket unless user has applicable promo code\",\"L0ZOiu\":\"Hide ticket when sold out\",\"uno73L\":\"Hiding a ticket will prevent users from seeing it on the event page.\",\"tj6Gob\":\"Homepage & Checkout\",\"m07jN3\":\"Homepage & Checkout Settings\",\"ZOBwQn\":\"Homepage Design\",\"PRuBTd\":\"Homepage Designer\",\"YjVNGZ\":\"Homepage Preview\",\"c3E/kw\":\"Homer\",\"id+NIk\":\"How many minutes the customer has to complete their order\",\"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?\",\"fYyXCd\":\"https://example-maps-service.com/...\",\"uOXLV3\":\"I agree to the <0>terms and conditions0>\",\"sIxFk5\":\"I agree to the terms and conditions\",\"Crwwhn\":[\"If a new tab did not open, please <0>\",[\"0\"],\".0>\"],\"93DUnd\":[\"If a new tab did not open, please <0><1>\",[\"0\"],\"1>.0>\"],\"9gtsTP\":\"If blank, the address will be used to generate a Google map link\",\"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\",\"Gyl1h8\":\"Image dimensions must be at least 600px by 300px\",\"TiGacZ\":\"Image dimensions must be at least 900px by 450px\",\"UnTvkH\":\"Image dimensions must be between 3000px by 2000px. With a max height of 2000px and max width of 3000px\",\"uPEIvq\":\"Image must be less than 5MB\",\"AGZmwV\":\"Image uploaded successfully\",\"ibi52/\":\"Image width must be at least 900px and height at least 50px\",\"NoNwIX\":\"Inactive\",\"T0K0yl\":\"Inactive users cannot log in.\",\"OFAmKP\":\"Include connection details for your online event\",\"BfPBBG\":\"Include connection details for your online event. These details will be after successful registration.\",\"6+pAOx\":\"Include connection details for your online event. These details will be shown after successful registration.\",\"evpD4c\":\"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\",\"nbfdhU\":\"Integrations\",\"OyLdaz\":\"Invitation resent!\",\"HE6KcK\":\"Invitation revoked!\",\"SQKPvQ\":\"Invite User\",\"PgdQrx\":\"Issue refund\",\"KFXip/\":\"John\",\"XcgRvb\":\"Johnson\",\"1IWWYX\":[\"KittenTech Conference \",[\"0\"]],\"ZgJEMX\":\"KittenTech Conference Center\",\"87a/t/\":\"Label\",\"I3yitW\":\"Last login\",\"1ZaQUH\":\"Last name\",\"UXBCwc\":\"Last Name\",\"CKcupn\":\"Latest Orders\",\"tITjB1\":\"Learn more about Stripe\",\"c+gAXc\":\"Let's get started by creating your first event\",\"vR92Yn\":\"Let's get started by creating your first organizer\",\"QfrKvi\":\"Link color\",\"wJijgU\":\"Location\",\"sQia9P\":\"Log in\",\"zUDyah\":\"Logging in\",\"z0t9bb\":\"Login\",\"nOhz3x\":\"Logout\",\"F2jAFv\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nam placerat elementum...\",\"XkhEf9\":\"Lorem ipsum...\",\"MU3ijv\":\"Make this question mandatory\",\"wckWOP\":\"Manage\",\"8mmINh\":\"Manage billing information and view invoices\",\"jWIznR\":\"Manage default settings for new events\",\"n4SpU5\":\"Manage event\",\"wqyqaF\":\"Manage general account settings\",\"cQrNR3\":\"Manage Profile\",\"f92Qak\":\"Manage taxes and fees which can be applied to tickets\",\"PlTcVr\":\"Manage taxes and fees which can be applied to your tickets\",\"ophZVW\":\"Manage tickets\",\"Wsx7Iu\":\"Manage users and their permissions\",\"DdHfeW\":\"Manage your account details and default settings\",\"QHcjP+\":\"Manage your billing and payment details\",\"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\",\"lzcrX3\":\"Manually adding an attendee will adjust ticket quantity.\",\"g9dPPQ\":\"Maximum Per Order\",\"l5OcwO\":\"Message attendee\",\"Gv5AMu\":\"Message Attendees\",\"1jRD0v\":\"Message attendees with specific tickets\",\"Lvi+gV\":\"Message buyer\",\"tNZzFb\":\"Message Content\",\"lYDV/s\":\"Message individual attendees\",\"V7DYWd\":\"Message Sent\",\"t7TeQU\":\"Messages\",\"xFRMlO\":\"Minimum Per Order\",\"QYcUEf\":\"Minimum Price\",\"mYLhkl\":\"Miscellaneous Settings\",\"KYveV8\":\"Multi line text box\",\"SVuGaP\":\"Multiple price options, users can choose which to pay\",\"6wbTro\":\"Multiple price options. Perfect for early bird tickets etc.\",\"/bhMdO\":\"My amazing event description...\",\"vX8/tc\":\"My amazing event title...\",\"hKtWk2\":\"My Profile\",\"pRjx4L\":\"Nam placerat elementum...\",\"6YtxFj\":\"Name\",\"hVuv90\":\"Name should be less than 150 characters\",\"AIUkyF\":\"Navigate to Attendee\",\"qqeAJM\":\"Never\",\"7vhWI8\":\"New Password\",\"m920rF\":\"New York\",\"1UzENP\":\"No\",\"Wjz5KP\":\"No Attendees to show\",\"fFeCKc\":\"No Discount\",\"Z6ILSe\":\"No events for this organizer\",\"yAlJXG\":\"No events to show\",\"KPWxKD\":\"No messages to show\",\"J2LkP8\":\"No orders to show\",\"+Y976X\":\"No Promo Codes to show\",\"Ev2r9A\":\"No results\",\"RHyZUL\":\"No search results.\",\"cU1op4\":\"No Taxes or Fees have been added yet.\",\"RY2eP1\":\"No Taxes or Fees have been added.\",\"uR2eFu\":\"No tickets available\",\"b7JZFg\":\"No tickets to show\",\"EdQY6l\":\"None\",\"OJx3wK\":\"Not available\",\"x5+Lcz\":\"Not Checked In\",\"Scbrsn\":\"Not On Sale\",\"hFwWnI\":\"Notification Settings\",\"xXqEPO\":\"Notify buyer of refund\",\"YpN29s\":\"Notify organizer of new orders\",\"qeQhNj\":\"Now let's create your first event\",\"2NPDz1\":\"On sale\",\"Ldu/RI\":\"On Sale\",\"Ug4SfW\":\"Once you create an event, you'll see it here.\",\"+P/tII\":\"Once you're ready, set your event live and start selling tickets.\",\"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.\",\"OdnLE4\":\"Open sidebar\",\"ZZEYpT\":[\"Option \",[\"i\"]],\"0zpgxV\":\"Options\",\"BzEFor\":\"or\",\"UYUgdb\":\"Order\",\"mm+eaX\":\"Order #\",\"B3gPuX\":\"Order Cancelled\",\"SIbded\":\"Order Completed\",\"q/CcwE\":\"Order Date\",\"Tol4BF\":\"Order Details\",\"L4kzeZ\":[\"Order Details \",[\"0\"]],\"WbImlQ\":\"Order has been canceled and the order owner has been notified.\",\"VCOi7U\":\"Order questions\",\"wg9MPp\":\"Order questions are asked once per order. By default, people are asked for their first name, last name, and email address.\",\"+KNVxX\":\"Order questions are asked once per order. By default, we ask for the first name, last name, and email address.\",\"TPoYsF\":\"Order Reference\",\"GX6dZv\":\"Order Summary\",\"tDTq0D\":\"Order timeout\",\"1h+RBg\":\"Orders\",\"mz+c33\":\"Orders Created\",\"G5RhpL\":\"Organizer\",\"m/ebSk\":\"Organizer Details\",\"mYygCM\":\"Organizer is required\",\"Pa6G7v\":\"Organizer Name\",\"J2cXxX\":\"Organizers can only manage events and tickets. 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\",\"2w/FiJ\":\"Paid Ticket\",\"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\",\"iq5IUr\":\"Pause Ticket\",\"621rYf\":\"Payment\",\"JhtZAK\":\"Payment Failed\",\"xgav5v\":\"Payment succeeded!\",\"CcK+Ft\":\"PDF\",\"att1Hj\":\"percent\",\"/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\",\"q40YFl\":\"Please continue your order in the new tab\",\"ZJG4Di\":\"Please ensure you only send emails directly related to the order. Promotional emails\\nshould not be sent using this form.\",\"o+HaYe\":\"Please enter a valid promo code\",\"HnNept\":\"Please enter your new password\",\"5FSIzj\":\"Please Note\",\"MA04r/\":\"Please remove filters and set sorting to \\\"Homepage order\\\" to enable sorting\",\"pJLvdS\":\"Please select\",\"yygcoG\":\"Please select at least one ticket\",\"igBrCH\":\"Please verify your email address to access all features\",\"qCJyMx\":\"Post Checkout message\",\"g2UNkE\":\"Powered by\",\"Qs7yI0\":\"Powered By\",\"lqAWKB\":\"Powered by <0>Hi.Events0> 👋\",\"3n47kV\":\"Powered By Hi.Events\",\"ddi4j4\":\"Powered by Stripe\",\"Rs7IQv\":\"Pre Checkout message\",\"rdUucN\":\"Preview\",\"a7u1N9\":\"Price\",\"CmoB9j\":\"Price display mode\",\"Q8PWaJ\":\"Price tiers\",\"a5jvSX\":\"Price Tiers\",\"6RmHKN\":\"Primary Color\",\"G/ZwV1\":\"Primary Colour\",\"8cBtvm\":\"Primary Text Color\",\"BZz12Q\":\"Print\",\"MT7dxz\":\"Print All Tickets\",\"vERlcd\":\"Profile\",\"kUlL8W\":\"Profile updated successfully\",\"cl5WYc\":[\"Promo \",[\"promo_code\"],\" code applied\"],\"ZXpm3a\":[\"Promo \",[\"promoCode\"],\" code applied\"],\"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.\",\"812gwg\":\"Purchase License\",\"LkMOWF\":\"Quantity Available\",\"XKJuAX\":\"Question deleted\",\"oQvMPn\":\"Question Title\",\"enzGAL\":\"Questions\",\"K885Eq\":\"Questions sorted successfully\",\"OMJ035\":\"Radio Option\",\"C4TjpG\":\"Read less\",\"I3QpvQ\":\"Recipient\",\"N2C89m\":\"Reference\",\"gxFu7d\":[\"Refund amount (\",[\"0\"],\")\"],\"n10yGu\":\"Refund order\",\"zPH6gp\":\"Refund Order\",\"/BI0y9\":\"Refunded\",\"fgLNSM\":\"Register\",\"tasfos\":\"remove\",\"t/YqKh\":\"Remove\",\"RloWNu\":\"Reply to email\",\"EGm34e\":\"Resend confirmation email\",\"lnrkNz\":\"Resend email confirmation\",\"wIa8Qe\":\"Resend invitation\",\"VeKsnD\":\"Resend order email\",\"dFuEhO\":\"Resend ticket email\",\"o6+Y6d\":\"Resending...\",\"RfwZxd\":\"Reset password\",\"KbS2K9\":\"Reset Password\",\"vtc20Z\":\"Return to event page\",\"8YBH95\":\"Revenue\",\"PO/sOY\":\"Revoke invitation\",\"GDvlUT\":\"Role\",\"ELa4O9\":\"Sale End Date\",\"5uo5eP\":\"Sale ended\",\"Qm5XkZ\":\"Sale Start Date\",\"hVF4dJ\":\"Sale starts\",\"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\",\"lBAlVv\":\"Seach by name, order #, attendee # or email...\",\"W4kWXJ\":\"Search by attendee name, email or order #...\",\"ulAuWO\":\"Search by event name or description...\",\"+pr/FY\":\"Search by event name...\",\"NQSiYb\":\"Search by name or description...\",\"3zRbWw\":\"Search by name, email, or order #...\",\"BiYOdA\":\"Search by name...\",\"B1bB1j\":\"Search by order #, name or email...\",\"jA4hXE\":\"Search by subject or body...\",\"YEjitp\":\"Search by subject or content...\",\"HYnGee\":\"Search by ticket name...\",\"YIix5Y\":\"Search...\",\"OeW+DS\":\"Secondary color\",\"DnXcDK\":\"Secondary Color\",\"cZF6em\":\"Secondary text color\",\"ZIgYeg\":\"Secondary Text Color\",\"QuNKRX\":\"Select Camera\",\"kWI/37\":\"Select organizer\",\"hAjDQy\":\"Select status\",\"QYARw/\":\"Select Ticket\",\"XH5juP\":\"Select Ticket Tier\",\"nuWxSr\":\"Select Tickets\",\"O/7I0o\":\"Select...\",\"JlFcis\":\"Send\",\"qKWv5N\":[\"Send a copy to <0>\",[\"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.\",\"471O/e\":\"Send confirmation email\",\"D7ZemV\":\"Send order confirmation and ticket email\",\"v1rRtW\":\"Send Test\",\"j1VfcT\":\"SEO Description\",\"/SIY6o\":\"SEO Keywords\",\"GfWoKv\":\"SEO Settings\",\"rXngLf\":\"SEO Title\",\"/jZOZa\":\"Service Fee\",\"vu4F0h\":\"Set a minimum price and let users donate more\",\"nYNT+5\":\"Set up your event\",\"A8iqfq\":\"Set your event live\",\"Tz0i8g\":\"Settings\",\"Z8lGw6\":\"Share\",\"FFbYHm\":[\"Should this \",[\"type\"],\" be applied to all new tickets?\"],\"8vETh9\":\"Show\",\"smd87r\":\"Show available ticket quantity\",\"qDsmzu\":\"Show hidden questions\",\"fMPkxb\":\"Show more\",\"izwOOD\":\"Show tax and fees separately\",\"j3b+OW\":\"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.\",\"DvCwYF\":\"Sorry, this promo code is invalid'\",\"6a/UJE\":\"Sorry, this promo code is not recognized\",\"9rRZZ+\":\"Sorry, your order has expired. Please start a new order.\",\"a4SyEE\":\"Sorting is disabled while filters and sorting are applied\",\"4nG1lG\":\"Standard ticket with a fixed price\",\"D3iCkb\":\"Start Date\",\"RS0o7b\":\"State\",\"/2by1f\":\"State or Region\",\"uAQUqI\":\"Status\",\"UJmAAK\":\"Subject\",\"X2rrlw\":\"Subtotal\",\"b0HJ45\":[\"Success! \",[\"0\"],\" will receive an email shortly.\"],\"BJIEiF\":[\"Successfully \",[\"0\"],\" attendee\"],\"Ih8kN0\":[\"Successfully $\",[\"0\"],\" attendee\"],\"xHl17l\":[\"Successfully checked <0>\",[\"0\"],\" \",[\"1\"],\"0> \",[\"2\"]],\"OtgNFx\":\"Successfully confirmed email address\",\"IKwyaF\":\"Successfully confirmed email change\",\"zLmvhE\":\"Successfully created attendee\",\"9mZEgt\":\"Successfully Created Promo Code\",\"aIA9C4\":\"Successfully Created Question\",\"onFQYs\":\"Successfully Created Ticket\",\"Hgj/mB\":\"Successfully deleted ticket\",\"J3RJSZ\":\"Successfully updated attendee\",\"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\",\"70dYC8\":\"Successfully Updated Promo Code\",\"F+pJnL\":\"Successfully Updated Seo Settings\",\"g2lRrH\":\"Successfully updated ticket\",\"DXZRk5\":\"Suite 100\",\"GNcfRk\":\"Support Email\",\"JpohL9\":\"Tax\",\"geUFpZ\":\"Tax & Fees\",\"0RXCDo\":\"Tax or Fee deleted successfully\",\"ZowkxF\":\"Taxes\",\"EEZnW+\":\"Taxes & Fees\",\"qu6/03\":\"Taxes and Fees\",\"gVjSFp\":\"Taxes and Fees can be associated with tickets and will be added to the ticket price.\",\"e0ZSh4\":\"Text Colour\",\"gypigA\":\"That promo code is invalid\",\"0ozSQu\":\"The background color for the event homepage\",\"LbHWgW\":\"The background color for the ticket widget on the event homepage\",\"75Xclv\":\"The basic details of your event\",\"UNqHnV\":\"The color of the buttons on the event homepage\",\"0amhbL\":\"The color of the links on the event homepage\",\"QXlz+n\":\"The default currency for your events.\",\"mnafgQ\":\"The default timezone for your events.\",\"NlfnUd\":\"The link you clicked is invalid.\",\"FqjKfd\":\"The location of your event\",\"FeAfXO\":[\"The maximum numbers number of tickets for Generals is \",[\"0\"]],\"POEqXB\":\"The organizer details of your event\",\"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.\",\"TJZByZ\":\"The tax and fee to apply to this ticket. You can create new taxes and fees on the\",\"OJYwh9\":\"The taxes and fees to apply to this ticket. You can create new taxes and fees on the\",\"6BpBfZ\":\"The text color for the event homepage\",\"rljHp7\":\"The text color for the ticket widget on the event homepage\",\"s4di40\":\"The text to display in the 'Continue' button. Defaults to 'Continue'\",\"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\",\"wgAiDb\":\"The user must login to change their email.\",\"jvxN9/\":\"There are no tickets available for this event\",\"rMcHYt\":\"There is a refund pending. Please wait for it to complete before requesting another refund.\",\"hjLUr+\":\"There was an error loading this content. Please refresh the page and try again.\",\"68Axnm\":\"There was an error processing your request. Please try again.\",\"mVKOW6\":\"There was an error sending your message\",\"Um/adz\":\"These allow multiple selections\",\"vWeHWp\":\"These colors are not saved in our system.\",\"7qzHGS\":\"These colors are not saved in our system. They are only used to generate the widget.\",\"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.\",\"CNk/ro\":\"This is an online event\",\"GabtCa\":\"This is the email address that will be used as the reply-to address for all emails sent from this event\",\"CKkb5E\":\"This message is how below the\",\"cHO4ec\":\"This message will be included in the footer of all emails sent from this event\",\"RjwlZt\":\"This order has already been paid.\",\"axERYu\":\"This order has already been paid. <0>View order details0>\",\"wY+HO9\":\"This order has already been processed.\",\"5K8REg\":\"This order has already been refunded.\",\"OiQMhP\":\"This order has been cancelled\",\"YyEJij\":\"This order has been cancelled.\",\"D44cEI\":\"This order has been completed.\",\"HILpDX\":\"This order is awaiting payment\",\"0vRWbB\":\"This order is awaiting payment.\",\"BdYtn9\":\"This order is complete\",\"e3uMJH\":\"This order is complete.\",\"YNKXOK\":\"This order is processing.\",\"LIjb4v\":\"This order is processing. TODO - a nice image and poll the API\",\"yPZN4i\":\"This order page is no longer available.\",\"5189cf\":\"This overrides all visibility settings and will hide the ticket from all customers.\",\"4vwjho\":\"This page has expired. <0>View order details0>\",\"Qt7RBu\":\"This question is only visible to the event organizer\",\"os29v1\":\"This reset password link is invalid or expired.\",\"WJqBqd\":\"This ticket cannot be deleted because it is\\nassociated with an order. You can hide it instead.\",\"ma6qdu\":\"This ticket is hidden from public view\",\"xJ8nzj\":\"This ticket is hidden unless targeted by a Promo Code\",\"IV9xTT\":\"This user is not active, as they have not accepted their invitation.\",\"5AnPaO\":\"ticket\",\"kjAL4v\":\"Ticket\",\"KosivG\":\"Ticket deleted successfully\",\"dtGC3q\":\"Ticket email has been resent to attendee\",\"USk+Mn\":\"Ticket page message\",\"mRM6XH\":\"Ticket Sales\",\"NirIiz\":\"Ticket Tier\",\"8jLPgH\":\"Ticket Type\",\"jqWDf9\":\"Ticket widget background color\",\"UrMVAz\":\"Ticket Widget Preview\",\"ngtDy7\":\"Ticket widget text color\",\"N+YYpo\":\"Ticket(s)\",\"6GQNLE\":\"Tickets\",\"54q0zp\":\"Tickets for\",\"i+idBz\":\"Tickets sold\",\"AGRilS\":\"Tickets Sold\",\"56Qw2C\":\"Tickets sorted successfully\",\"4f8A8M\":\"Tickets to which the promo code applies (Applies to all by default)\",\"xN9AhL\":[\"Tier \",[\"0\"]],\"oYaHuq\":\"Tiered Ticket\",\"XZrhpz\":\"Tiered Ticket - Coming Soon\",\"4M150e\":\"Tiered tickets allow you to offer multiple price options for the same ticket.\\nThis is perfect for early bird tickets, or offering different price\\noptions for different groups of people.\",\"jQoYTX\":\"Tiered tickets allow you to offer multiple price options for the same ticket. This is perfect for early bird tickets or offering different price options for different groups of people.\",\"s/0RpH\":\"Times used\",\"40Gx0U\":\"Timezone\",\"oDGm7V\":\"TIP\",\"MHrjPM\":\"Title\",\"xdA/+p\":\"Tools\",\"72c5Qo\":\"Total\",\"BxsfMK\":\"Total Fees\",\"mpB/d9\":\"Total order amount\",\"m3FM1g\":\"Total refunded\",\"GBBIy+\":\"Total remaining\",\"/SgoNA\":\"Total Tax\",\"+zy2Nq\":\"Type\",\"mLGbAS\":[\"Unable to \",[\"0\"],\" attendee\"],\"/cSMqv\":\"Unable to create question. Please check the your details\",\"nNdxt9\":\"Unable to create ticket. Please check the your details\",\"MH/lj8\":\"Unable to update question. Please check the your details\",\"Mqy/Zy\":\"United States\",\"NIuIk1\":\"Unlimited\",\"oMcLhS\":\"Unlimited ticket quantity available\",\"E0q9qH\":\"Unlimited usages allowed\",\"ia8YsC\":\"Upcoming\",\"L/gNNk\":[\"Update \",[\"0\"]],\"+qqX74\":\"Update event name, description and dates\",\"vXPSuB\":\"Update profile\",\"gsehpV\":\"Upload an image to be displayed on the event page\",\"BNBfrU\":\"Upload Cover\",\"e5lF64\":\"Usage Example\",\"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 Settings0>\",\"vgwVkd\":\"UTC\",\"khBZkl\":\"VAT\",\"E/9LUk\":\"Venue Name\",\"AM+zF3\":\"View attendee\",\"e4mhwd\":\"View event homepage\",\"/5PEQz\":\"View event page\",\"fFornT\":\"View full message\",\"YIsEhQ\":\"View map\",\"Ep3VfY\":\"View on Google Maps\",\"AMkkeL\":\"View order\",\"Y8s4f6\":\"View order details\",\"tF+VVr\":\"VIP Ticket\",\"2q/Q7x\":\"Visibility\",\"vmOFL/\":\"We could not process your payment. Please try again or contact support.\",\"1E0vyy\":\"We couldn't load the data. Please try again.\",\"VGioT0\":\"We recommend dimensions of 2160px by 1080px, 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\"],\" 👋\"],\"wjqPqF\":\"What are Tiered Tickets?\",\"5iXvHA\":\"What is a Tiered Ticketing?\",\"MhhnvW\":\"What tickets does this code apply to? (Applies to all by default)\",\"dCil3h\":\"What tickets should this question be apply to?\",\"Rb0XUE\":\"What time will you be arriving?\",\"5N4wLD\":\"What type of question is this?\",\"S+OdxP\":\"Who is organizing this event?\",\"LINr2M\":\"Who is this message to?\",\"nWhye/\":\"Who should be asked this question?\",\"vVGiM4\":\"Who type of question is this?\",\"onLsWS\":\"Whoops! something went wrong. Please try again or contact support if the problem persists.\",\"AHXN2z\":\"Widget\",\"AU/8QR\":\"Widget Configuration\",\"VxFvXQ\":\"Widget Embed\",\"v1P7Gm\":\"Widget Settings\",\"b4itZn\":\"Working\",\"hqmXmc\":\"Working...\",\"l75CjT\":\"Yes\",\"QcwyCh\":\"Yes, remove them\",\"P+Sty0\":[\"You are changing your email to <0>\",[\"0\"],\"0>.\"],\"4ysd6z\":\"You can connecting using this Zoom link...\",\"9HGdDw\":\"You can create a promo code which targets this ticket on the\",\"KRhIxT\":\"You can now start receiving payments through Stripe.\",\"UqVaVO\":\"You cannot change the ticket type as there are attendees associated with this ticket.\",\"zQ8idk\":\"You cannot change the ticket type because there are already tickets sold for this ticket.\",\"3vRX5A\":\"You cannot delete this price tier because there are already tickets sold for this tier. You can hide it instead.\",\"RCC09s\":\"You cannot edit a default question\",\"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.\",\"XoeazJ\":\"You have no attendee questions. Attendee questions are asked once per attendee.\",\"CoZHDB\":\"You have no order questions.\",\"FZKDIe\":\"You have no order questions. Order questions are asked once per order.\",\"15qAvl\":\"You have no pending email change.\",\"n81Qk8\":\"You have not completed your Stripe Connect setup\",\"jxsiqJ\":\"You have not connected your Stripe account\",\"183zcL\":\"You have taxes and fees added to a Free Ticket. Would you like to remove or obscure them?\",\"2v5MI1\":\"You haven't sent any messages yet. You can send messages to all attendees, or to specific ticket 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\",\"LRguuL\":\"You must have at least one tier\",\"8/eLoa\":\"You need to verify your account before you can send messages.\",\"WHXRMI\":\"You'll need at least one ticket to get started. Free, paid or let the user decide what to pay.\",\"bdg03s\":\"Your account email in outgoing emails.\",\"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\"],\"0> is pending. Please check your email to confirm\"],\"yZfBoy\":\"Your message has been sent\",\"la26JS\":\"Your order is in progress\",\"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.\",\"cJ4Y4R\":\"Your refund is processing.\",\"IFHV2p\":\"Your ticket for\",\"3k7HDY\":\"Zip\",\"BM/KQm\":\"Zip or Postal Code\",\"VftCuk\":\"Zoom link, Google Meet link, etc.\"}")};
\ No newline at end of file
+/*eslint-disable*/module.exports={messages:JSON.parse("{\"1bpx9A\":\"...\",\"f8qS7T\":\"'There\\\\'s nothing to show yet'\",\"4zldrf\":[[\"0\",\"plural\",{\"one\":[\"#\",\" hidden question\"],\"other\":[\"#\",\" hidden questions\"]}]],\"J/hVSQ\":[[\"0\"]],\"KMgp2+\":[[\"0\"],\" available\"],\"tmew5X\":[[\"0\"],\" checked in\"],\"Pmr5xp\":[[\"0\"],\" created successfully\"],\"FImCSc\":[[\"0\"],\" updated successfully\"],\"KOr9b4\":[[\"0\"],\"'s Events\"],\"qSiUsc\":[[\"0\"],[\"1\"]],\"wapGcj\":[[\"message\"]],\"fyE7Au\":[[\"minutes\"],\" minutes and \",[\"seconds\"],\" seconds\"],\"NlQ0cx\":[[\"organizerName\"],\"'s first event\"],\"OXku3b\":\"<0>https://0>your-website.com\",\"E15xs8\":\"⚡️ Set up your event\",\"FL6OwU\":\"✉️ Confirm your email address\",\"y1NShf\":\"🎉 Congratulation on creating an event!\",\"BN0OQd\":\"🎉 Congratulations on creating an event!\",\"fAv9QG\":\"🎟️ Add tickets\",\"4WT5tD\":\"🎨 Customize your event page\",\"3VPPdS\":\"💳 Connect with Stripe\",\"s4Tgn6\":\"📢 Promote your event\",\"cjdktw\":\"🚀 Set your event live\",\"rmelwV\":\"0 minutes and 0 seconds\",\"UQ7pBY\":\"0.50 for $0.50\",\"i1+xzD\":\"1.75 for 1.75%\",\"i0puaE\":\"10.00\",\"W9+fkZ\":\"10001\",\"qdfdgM\":\"123 Main Street\",\"IoRZzD\":\"20\",\"+H1RMb\":\"2024-01-01 10:00\",\"Q/T49U\":\"2024-01-01 18:00\",\"hMT8+2\":\"94103\",\"d9El7Q\":[\"A default \",[\"type\"],\" is automaticaly applied to all new tickets. You can override this on a per ticket basis.\"],\"SMUbbQ\":\"A Dropdown input allows only one selection\",\"qv4bfj\":\"A fee, like a booking fee or a service fee\",\"Pgaiuj\":\"A fixed amount per ticket. E.g, $0.50 per ticket\",\"f4vJgj\":\"A multi line text input\",\"ySO/4f\":\"A percentage of the ticket price. E.g., 3.5% of the ticket price\",\"WXeXGB\":\"A promo code with no discount can be used to reveal hidden tickets.\",\"GMhWB5\":\"A Radio option allows has multiple options but only one can be selected.\",\"CBt3s7\":\"A Radio Option allows only one selection\",\"AG/qmQ\":\"A Radio option has multiple options but only one can be selected.\",\"7g61G9\":\"A short description of Awesome Events Ltd.\",\"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\",\"zCk10D\":\"A single question per attendee. E.g, What is your preferred meal?\",\"ap3v36\":\"A single question per order. E.g, What is your company name?\",\"RlJmQg\":\"A standard tax, like VAT or GST\",\"pDwHGk\":\"About hi.events\",\"uIKNjo\":\"About the event\",\"bfXQ+N\":\"Accept Invitation\",\"iwyhk4\":\"Access to the VIP area...\",\"AeXO77\":\"Account\",\"0b79Xf\":\"Account Email\",\"lkNdiH\":\"Account Name\",\"Puv7+X\":\"Account Settings\",\"OmylXO\":\"Account updated successfully\",\"7L01XJ\":\"Actions\",\"FQBaXG\":\"Activate\",\"F6pfE9\":\"Active\",\"m16xKo\":\"Add\",\"LKNynS\":\"Add a cover image, description, and more to make your event stand out.\",\"gMK0ps\":\"Add event details and and manage event settings.\",\"Fb+SDI\":\"Add More tickets\",\"ApsD9J\":\"Add New\",\"TZxnm8\":\"Add Option\",\"Cw27zP\":\"Add question\",\"yWiPh+\":\"Add Tax or Fee\",\"BGD9Yt\":\"Add tickets\",\"goOKRY\":\"Add tier\",\"p59pEv\":\"Additional Details\",\"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.\",\"CPXP5Z\":\"Affiliates\",\"W7AfhC\":\"All attendees of this event\",\"QsYjci\":\"All Events\",\"/twVAS\":\"All Tickets\",\"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..\",\"8wYDMp\":\"Already have an account?\",\"ApOYO8\":\"Amazing, Event, Keywords...\",\"hehnjM\":\"Amount\",\"TRYjHa\":[\"amount in \",[\"0\"]],\"R2O9Rg\":[\"Amount paid (\",[\"0\"],\")\"],\"tLjOgo\":[\"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\",\"er3d/4\":\"An error occurred while sorting the tickets. Please try again or refresh the page\",\"hhvESd\":\"An event is the actual event you are hosting\",\"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.\",\"j4DliD\":\"Any queries from ticket 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\",\"DB8zMK\":\"Apply\",\"GctSSm\":\"Apply Promo Code\",\"jcnZEw\":[\"Apply this \",[\"type\"],\" to all new tickets\"],\"q7TRd7\":\"Are you sure you want to activate this attendee?\",\"/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\",\"2xEpch\":\"Ask once per attendee\",\"LBLOqH\":\"Ask once per order\",\"ss9PbX\":\"Attendee\",\"m0CFV2\":\"Attendee Details\",\"lXcSD2\":\"Attendee questions\",\"VvYqMB\":\"Attendee questions are asked once per attendee. By default, people are asked for their first name, last name, and email address.\",\"spxPEv\":\"Attendee questions are asked once per attendee. By default, we ask for the attendee's first name, last name, and email address.\",\"9SZT4E\":\"Attendees\",\"5UbY+B\":\"Attendees with a specific ticket\",\"IMJ6rh\":\"Auto Resize\",\"vZ5qKF\":\"Automatically resize the widget height based on the content. When disabled, the widget will fill the height of the container.\",\"lXkUEV\":\"Availability\",\"ioG+xt\":\"Awaiting Payment\",\"3PmQfI\":\"Awesome Event\",\"kNmmvE\":\"Awesome Events Ltd.\",\"Yrbm6T\":\"Awesome Organizer Ltd.\",\"9002sI\":\"Back to all events\",\"0TGkYM\":\"Back to event homepage\",\"A302fe\":\"Back to event page\",\"VCoEm+\":\"Back to login\",\"MLZyiY\":\"Background color\",\"k1bLf+\":\"Background Color\",\"I7xjqg\":\"Background Type\",\"EOUool\":\"Basic Details\",\"7EGQKA\":\"Because you are the account owner, you cannot change your role or status.\",\"1mwMl+\":\"Before you send!\",\"wVfiR2\":\"Before you're event can go live, there's a few thing to do.\",\"/yeZ20\":\"Before your event can go live, there are a few things you need to do.\",\"1xAcxY\":\"Begin selling tickets in minutes\",\"R+w/Va\":\"Billing\",\"Ptp9MF\":\"Button color\",\"whqocw\":\"By registering you agree to our <0>Terms of Service0> and <1>Privacy Policy1>.\",\"bcCn6r\":\"Calculation Type\",\"+8bmSu\":\"California\",\"iStTQt\":\"Camera permission was denied. <0>Request Permission0> again, or if this doesn't work, you will need to <1>grant this page1> access to your camera in your browser settings.\",\"Jzn1qy\":\"Can't load events\",\"dEgA5A\":\"Cancel\",\"Gjt/py\":\"Cancel email change\",\"tVJk4q\":\"Cancel order\",\"Os6n2a\":\"Cancel Order\",\"Mz7Ygx\":[\"Cancel Order \",[\"0\"]],\"Ud7zwq\":\"Canceling will cancel all tickets associated with this order, and release the tickets back into the available pool.\",\"vv7kpg\":\"Cancelled\",\"77/YgG\":\"Change Cover\",\"GptGxg\":\"Change password\",\"QndF4b\":\"check in\",\"xMDm+I\":\"Check In\",\"9FVFym\":\"check out\",\"gXcPxc\":\"Check-in\",\"Y3FYXy\":\"Check-In\",\"CNafaC\":\"Checkbox options allow multiple selections\",\"SpabVf\":\"Checkboxes\",\"CRu4lK\":\"Checked In\",\"/ydvvl\":\"Checkout Messaging\",\"1WnhCL\":\"Checkout Settings\",\"JjkX4+\":\"Choose a color for your background\",\"/Jizh9\":\"Choose an account\",\"jJGoVv\":\"Choose what notifications you want to receive\",\"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\",\"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\",\"DwF9eH\":\"Component Code\",\"7VpPHA\":\"Confirm\",\"ZaEJZM\":\"Confirm Email Change\",\"yjkELF\":\"Confirm New Password\",\"xnWESi\":\"Confirm password\",\"p2/GCq\":\"Confirm Password\",\"wnDgGj\":\"Confirming email address...\",\"DnLC08\":\"Congratulation on creating an event!\",\"pbAk7a\":\"Connect Stripe\",\"UMGQOh\":\"Connect with Stripe\",\"QKLP1W\":\"Connect your Stripe account to start receiving payments.\",\"5lcVkL\":\"Connection Details\",\"i3p844\":\"Contact email\",\"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\",\"RGVUUI\":\"Continue To Payment\",\"6V3Ea3\":\"Copied\",\"T5rdis\":\"copied to clipboard\",\"he3ygx\":\"Copy\",\"8+cOrS\":\"Copy details to all attendees\",\"ENCIQz\":\"Copy Link\",\"E6nRW7\":\"Copy URL\",\"JNCzPW\":\"Country\",\"IF7RiR\":\"Cover\",\"P0rbCt\":\"Cover Image\",\"hYgDIe\":\"Create\",\"b9XOHo\":[\"Create \",[\"0\"]],\"6kdXbW\":\"Create a Promo Code\",\"n5pRtF\":\"Create a Ticket\",\"X6sRve\":[\"Create an account or <0>\",[\"0\"],\"0> to get started\"],\"nx+rqg\":\"create an organizer\",\"ipP6Ue\":\"Create Attendee\",\"uN355O\":\"Create Event\",\"BOqY23\":\"Create new\",\"kpJAeS\":\"Create Organizer\",\"sYpiZP\":\"Create Promo Code\",\"a6YrKg\":\"Create promo codes\",\"n6H6AO\":\"Create promo codes to offer discounts to your attendees.\",\"B3Mkdt\":\"Create Question\",\"UKfi21\":\"Create Tax or Fee\",\"Tg323g\":\"Create Ticket\",\"agZ87r\":\"Create tickets for your event, set prices, and manage available quantity.\",\"d+F6q9\":\"Created\",\"Q2lUR2\":\"Currency\",\"DCKkhU\":\"Current Password\",\"uIElGP\":\"Custom Maps URL\",\"876pfE\":\"Customer\",\"QOg2Sf\":\"Customize the email and notification settings for this event\",\"Lu75d1\":\"Customize the email settings for this event\",\"RaxMyF\":\"Customize the event homepage and checkout experience\",\"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\",\"7p5kLi\":\"Dashboard\",\"mYGY3B\":\"Date\",\"JvUngl\":\"Date & Time\",\"RiXc4g\":\"Deactivate user\",\"cnGeoo\":\"Delete\",\"WHf154\":\"Delete code\",\"heJllm\":\"Delete Cover\",\"KWa0gi\":\"Delete Image\",\"IatsLx\":\"Delete question\",\"GnyEfA\":\"Delete ticket\",\"E33LRn\":\"Delete user\",\"Nu4oKW\":\"Description\",\"s9iD5d\":\"Description should be less than 50,000 characters\",\"URmyfc\":\"Details\",\"x8uDKb\":\"Disable code\",\"H6Ma8Z\":\"Discount\",\"ypJ62C\":\"Discount %\",\"3LtiBI\":[\"Discount in \",[\"0\"]],\"C8JLas\":\"Discount Type\",\"1QfxQT\":\"Dismiss\",\"cVq+ga\":\"Don't have an account? <0>Sign Up0>\",\"4+aC/x\":\"Donation / Pay what you'd like ticket\",\"++S5i/\":\"Donation amount\",\"OO7MG7\":\"Donation Ticket\",\"0pEVi2\":\"Download Tickets PDF\",\"uABpqP\":\"Drag and drop or click\",\"3z2ium\":\"Drag to sort\",\"6skwyH\":\"Drop an image, or click here to replace the Cover Image\",\"S37RRV\":\"Drop an image, or click here to upload the Cover Image\",\"CfKofC\":\"Dropdown selection\",\"vi8Q/5\":\"Duplicate event\",\"7Cx5It\":\"Early bird\",\"ePK91l\":\"Edit\",\"N6j2JH\":[\"Edit \",[\"0\"]],\"kNGp1D\":\"Edit attendee\",\"t2bbp8\":\"Edit Attendee\",\"iFgaVN\":\"Edit Code\",\"jrBSO1\":\"Edit Organizer\",\"9BdS63\":\"Edit Promo Code\",\"O0CE67\":\"Edit question\",\"EzwCw7\":\"Edit Question\",\"d+nnyk\":\"Edit Ticket\",\"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\",\"WiKda6\":\"Email Configuration\",\"APuxIE\":\"Email confirmation resent\",\"YaCgdO\":\"Email confirmation resent successfully\",\"jyt+cx\":\"Email footer message\",\"I6F3cp\":\"Email not verified\",\"G5zNMX\":\"Email Settings\",\"NTZ/NX\":\"Embed Code\",\"4rnJq4\":\"Embed Script\",\"VFv2ZC\":\"End Date\",\"237hSL\":\"Ended\",\"MhVoma\":\"Enter an amount excluding taxes and fees.\",\"3Z223G\":\"Error confirming email address\",\"a6gga1\":\"Error confirming email change\",\"5/63nR\":\"EUR\",\"0pC/y6\":\"Event\",\"nuoP/j\":\"Event created successfully\",\"CFLUfD\":\"Event created successfully 🎉\",\"0Zptey\":\"Event Defaults\",\"Xe3XMd\":\"Event is not visible to the public\",\"4pKXJS\":\"Event is visible to the public\",\"ClwUUD\":\"Event location & venue details\",\"OopDbA\":\"Event page\",\"JyD0LH\":\"Event Settings\",\"4/If97\":\"Event status update failed. Please try again later\",\"btxLWj\":\"Event status updated\",\"tst44n\":\"Events\",\"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.\",\"9zSt4h\":\"Failed to export attendees. Please try again.\",\"2uGNuE\":\"Failed to export orders. Please try again.\",\"ZQ15eN\":\"Failed to resend ticket email\",\"PLUB/s\":\"Fee\",\"YirHq7\":\"Feedback\",\"/mfICu\":\"Fees\",\"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.\",\"QWa3Sk\":\"First Name, Last Name, and Email Address are default questions that are always included in the checkout process.\",\"TpqW74\":\"Fixed\",\"irpUxR\":\"Fixed amount\",\"TF9opW\":\"Flash is not available on this device\",\"UNMVei\":\"Forgot password?\",\"2POOFK\":\"Free\",\"/4rQr+\":\"Free Ticket\",\"01my8x\":\"Free ticket, no payment information required\",\"ejVYRQ\":\"From\",\"u6FPxT\":\"Get Tickets\",\"4GLxhy\":\"Getting Started\",\"4D3rRj\":\"Go back to profile\",\"cQPKZt\":\"Go to Dashboard\",\"9LCqFI\":\"Go to event homepage\",\"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.\",\"Ow9Hz5\":[\"Hi.Events Conference \",[\"0\"]],\"verBst\":\"Hi.Events Conference Center\",\"6eMEQO\":\"hi.events logo\",\"C4qOW8\":\"Hidden from public view\",\"k3dfFD\":\"Hidden questions are only visible to the event organizer and not to the customer.\",\"EeNE0j\":\"Hidden will not be shown to customers.\",\"vLyv1R\":\"Hide\",\"Mkkvfd\":\"Hide getting started page\",\"mFn5Xz\":\"Hide hidden questions\",\"SCimta\":\"Hide the getting started page from the sidebar\",\"Da29Y6\":\"Hide this question\",\"fsi6fC\":\"Hide this ticket from customers\",\"fvDQhr\":\"Hide this tier from users\",\"Fhzoa8\":\"Hide ticket after sale end date\",\"yhm3J/\":\"Hide ticket before sale start date\",\"k7/oGT\":\"Hide ticket unless user has applicable promo code\",\"L0ZOiu\":\"Hide ticket when sold out\",\"uno73L\":\"Hiding a ticket will prevent users from seeing it on the event page.\",\"tj6Gob\":\"Homepage & Checkout\",\"m07jN3\":\"Homepage & Checkout Settings\",\"ZOBwQn\":\"Homepage Design\",\"PRuBTd\":\"Homepage Designer\",\"YjVNGZ\":\"Homepage Preview\",\"c3E/kw\":\"Homer\",\"id+NIk\":\"How many minutes the customer has to complete their order\",\"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?\",\"fYyXCd\":\"https://example-maps-service.com/...\",\"uOXLV3\":\"I agree to the <0>terms and conditions0>\",\"sIxFk5\":\"I agree to the terms and conditions\",\"Crwwhn\":[\"If a new tab did not open, please <0>\",[\"0\"],\".0>\"],\"93DUnd\":[\"If a new tab did not open, please <0><1>\",[\"0\"],\"1>.0>\"],\"9gtsTP\":\"If blank, the address will be used to generate a Google map link\",\"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\",\"Gyl1h8\":\"Image dimensions must be at least 600px by 300px\",\"TiGacZ\":\"Image dimensions must be at least 900px by 450px\",\"UnTvkH\":\"Image dimensions must be between 3000px by 2000px. With a max height of 2000px and max width of 3000px\",\"uPEIvq\":\"Image must be less than 5MB\",\"AGZmwV\":\"Image uploaded successfully\",\"ibi52/\":\"Image width must be at least 900px and height at least 50px\",\"NoNwIX\":\"Inactive\",\"T0K0yl\":\"Inactive users cannot log in.\",\"OFAmKP\":\"Include connection details for your online event\",\"BfPBBG\":\"Include connection details for your online event. These details will be after successful registration.\",\"6+pAOx\":\"Include connection details for your online event. These details will be shown after successful registration.\",\"evpD4c\":\"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\",\"nbfdhU\":\"Integrations\",\"OyLdaz\":\"Invitation resent!\",\"HE6KcK\":\"Invitation revoked!\",\"SQKPvQ\":\"Invite User\",\"PgdQrx\":\"Issue refund\",\"KFXip/\":\"John\",\"XcgRvb\":\"Johnson\",\"1IWWYX\":[\"KittenTech Conference \",[\"0\"]],\"ZgJEMX\":\"KittenTech Conference Center\",\"87a/t/\":\"Label\",\"I3yitW\":\"Last login\",\"1ZaQUH\":\"Last name\",\"UXBCwc\":\"Last Name\",\"CKcupn\":\"Latest Orders\",\"tITjB1\":\"Learn more about Stripe\",\"c+gAXc\":\"Let's get started by creating your first event\",\"vR92Yn\":\"Let's get started by creating your first organizer\",\"QfrKvi\":\"Link color\",\"wJijgU\":\"Location\",\"sQia9P\":\"Log in\",\"zUDyah\":\"Logging in\",\"z0t9bb\":\"Login\",\"nOhz3x\":\"Logout\",\"F2jAFv\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nam placerat elementum...\",\"XkhEf9\":\"Lorem ipsum...\",\"MU3ijv\":\"Make this question mandatory\",\"wckWOP\":\"Manage\",\"8mmINh\":\"Manage billing information and view invoices\",\"jWIznR\":\"Manage default settings for new events\",\"n4SpU5\":\"Manage event\",\"wqyqaF\":\"Manage general account settings\",\"cQrNR3\":\"Manage Profile\",\"f92Qak\":\"Manage taxes and fees which can be applied to tickets\",\"PlTcVr\":\"Manage taxes and fees which can be applied to your tickets\",\"ophZVW\":\"Manage tickets\",\"Wsx7Iu\":\"Manage users and their permissions\",\"DdHfeW\":\"Manage your account details and default settings\",\"QHcjP+\":\"Manage your billing and payment details\",\"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\",\"lzcrX3\":\"Manually adding an attendee will adjust ticket quantity.\",\"g9dPPQ\":\"Maximum Per Order\",\"l5OcwO\":\"Message attendee\",\"Gv5AMu\":\"Message Attendees\",\"1jRD0v\":\"Message attendees with specific tickets\",\"Lvi+gV\":\"Message buyer\",\"tNZzFb\":\"Message Content\",\"lYDV/s\":\"Message individual attendees\",\"V7DYWd\":\"Message Sent\",\"t7TeQU\":\"Messages\",\"xFRMlO\":\"Minimum Per Order\",\"QYcUEf\":\"Minimum Price\",\"mYLhkl\":\"Miscellaneous Settings\",\"KYveV8\":\"Multi line text box\",\"SVuGaP\":\"Multiple price options, users can choose which to pay\",\"6wbTro\":\"Multiple price options. Perfect for early bird tickets etc.\",\"/bhMdO\":\"My amazing event description...\",\"vX8/tc\":\"My amazing event title...\",\"hKtWk2\":\"My Profile\",\"pRjx4L\":\"Nam placerat elementum...\",\"6YtxFj\":\"Name\",\"hVuv90\":\"Name should be less than 150 characters\",\"AIUkyF\":\"Navigate to Attendee\",\"qqeAJM\":\"Never\",\"7vhWI8\":\"New Password\",\"m920rF\":\"New York\",\"1UzENP\":\"No\",\"Wjz5KP\":\"No Attendees to show\",\"fFeCKc\":\"No Discount\",\"Z6ILSe\":\"No events for this organizer\",\"yAlJXG\":\"No events to show\",\"KPWxKD\":\"No messages to show\",\"J2LkP8\":\"No orders to show\",\"+Y976X\":\"No Promo Codes to show\",\"Ev2r9A\":\"No results\",\"RHyZUL\":\"No search results.\",\"cU1op4\":\"No Taxes or Fees have been added yet.\",\"RY2eP1\":\"No Taxes or Fees have been added.\",\"uR2eFu\":\"No tickets available\",\"b7JZFg\":\"No tickets to show\",\"EdQY6l\":\"None\",\"OJx3wK\":\"Not available\",\"x5+Lcz\":\"Not Checked In\",\"Scbrsn\":\"Not On Sale\",\"hFwWnI\":\"Notification Settings\",\"xXqEPO\":\"Notify buyer of refund\",\"YpN29s\":\"Notify organizer of new orders\",\"qeQhNj\":\"Now let's create your first event\",\"2NPDz1\":\"On sale\",\"Ldu/RI\":\"On Sale\",\"Ug4SfW\":\"Once you create an event, you'll see it here.\",\"+P/tII\":\"Once you're ready, set your event live and start selling tickets.\",\"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.\",\"OdnLE4\":\"Open sidebar\",\"ZZEYpT\":[\"Option \",[\"i\"]],\"0zpgxV\":\"Options\",\"BzEFor\":\"or\",\"UYUgdb\":\"Order\",\"mm+eaX\":\"Order #\",\"B3gPuX\":\"Order Cancelled\",\"SIbded\":\"Order Completed\",\"q/CcwE\":\"Order Date\",\"Tol4BF\":\"Order Details\",\"L4kzeZ\":[\"Order Details \",[\"0\"]],\"WbImlQ\":\"Order has been canceled and the order owner has been notified.\",\"VCOi7U\":\"Order questions\",\"wg9MPp\":\"Order questions are asked once per order. By default, people are asked for their first name, last name, and email address.\",\"+KNVxX\":\"Order questions are asked once per order. By default, we ask for the first name, last name, and email address.\",\"TPoYsF\":\"Order Reference\",\"GX6dZv\":\"Order Summary\",\"tDTq0D\":\"Order timeout\",\"1h+RBg\":\"Orders\",\"mz+c33\":\"Orders Created\",\"G5RhpL\":\"Organizer\",\"m/ebSk\":\"Organizer Details\",\"mYygCM\":\"Organizer is required\",\"Pa6G7v\":\"Organizer Name\",\"J2cXxX\":\"Organizers can only manage events and tickets. 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\",\"2w/FiJ\":\"Paid Ticket\",\"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\",\"iq5IUr\":\"Pause Ticket\",\"621rYf\":\"Payment\",\"JhtZAK\":\"Payment Failed\",\"xgav5v\":\"Payment succeeded!\",\"CcK+Ft\":\"PDF\",\"att1Hj\":\"percent\",\"/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\",\"q40YFl\":\"Please continue your order in the new tab\",\"ZJG4Di\":\"Please ensure you only send emails directly related to the order. Promotional emails\\nshould not be sent using this form.\",\"o+HaYe\":\"Please enter a valid promo code\",\"HnNept\":\"Please enter your new password\",\"5FSIzj\":\"Please Note\",\"MA04r/\":\"Please remove filters and set sorting to \\\"Homepage order\\\" to enable sorting\",\"pJLvdS\":\"Please select\",\"yygcoG\":\"Please select at least one ticket\",\"igBrCH\":\"Please verify your email address to access all features\",\"qCJyMx\":\"Post Checkout message\",\"g2UNkE\":\"Powered by\",\"Qs7yI0\":\"Powered By\",\"lqAWKB\":\"Powered by <0>Hi.Events0> 👋\",\"3n47kV\":\"Powered By Hi.Events\",\"ddi4j4\":\"Powered by Stripe\",\"Rs7IQv\":\"Pre Checkout message\",\"rdUucN\":\"Preview\",\"a7u1N9\":\"Price\",\"CmoB9j\":\"Price display mode\",\"Q8PWaJ\":\"Price tiers\",\"a5jvSX\":\"Price Tiers\",\"6RmHKN\":\"Primary Color\",\"G/ZwV1\":\"Primary Colour\",\"8cBtvm\":\"Primary Text Color\",\"BZz12Q\":\"Print\",\"MT7dxz\":\"Print All Tickets\",\"vERlcd\":\"Profile\",\"kUlL8W\":\"Profile updated successfully\",\"cl5WYc\":[\"Promo \",[\"promo_code\"],\" code applied\"],\"ZXpm3a\":[\"Promo \",[\"promoCode\"],\" code applied\"],\"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.\",\"812gwg\":\"Purchase License\",\"LkMOWF\":\"Quantity Available\",\"XKJuAX\":\"Question deleted\",\"oQvMPn\":\"Question Title\",\"enzGAL\":\"Questions\",\"K885Eq\":\"Questions sorted successfully\",\"OMJ035\":\"Radio Option\",\"C4TjpG\":\"Read less\",\"I3QpvQ\":\"Recipient\",\"N2C89m\":\"Reference\",\"gxFu7d\":[\"Refund amount (\",[\"0\"],\")\"],\"n10yGu\":\"Refund order\",\"zPH6gp\":\"Refund Order\",\"/BI0y9\":\"Refunded\",\"fgLNSM\":\"Register\",\"tasfos\":\"remove\",\"t/YqKh\":\"Remove\",\"RloWNu\":\"Reply to email\",\"EGm34e\":\"Resend confirmation email\",\"lnrkNz\":\"Resend email confirmation\",\"wIa8Qe\":\"Resend invitation\",\"VeKsnD\":\"Resend order email\",\"dFuEhO\":\"Resend ticket email\",\"o6+Y6d\":\"Resending...\",\"RfwZxd\":\"Reset password\",\"KbS2K9\":\"Reset Password\",\"vtc20Z\":\"Return to event page\",\"8YBH95\":\"Revenue\",\"PO/sOY\":\"Revoke invitation\",\"GDvlUT\":\"Role\",\"ELa4O9\":\"Sale End Date\",\"5uo5eP\":\"Sale ended\",\"Qm5XkZ\":\"Sale Start Date\",\"hVF4dJ\":\"Sale starts\",\"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\",\"lBAlVv\":\"Seach by name, order #, attendee # or email...\",\"W4kWXJ\":\"Search by attendee name, email or order #...\",\"ulAuWO\":\"Search by event name or description...\",\"+pr/FY\":\"Search by event name...\",\"NQSiYb\":\"Search by name or description...\",\"3zRbWw\":\"Search by name, email, or order #...\",\"BiYOdA\":\"Search by name...\",\"B1bB1j\":\"Search by order #, name or email...\",\"jA4hXE\":\"Search by subject or body...\",\"YEjitp\":\"Search by subject or content...\",\"HYnGee\":\"Search by ticket name...\",\"YIix5Y\":\"Search...\",\"OeW+DS\":\"Secondary color\",\"DnXcDK\":\"Secondary Color\",\"cZF6em\":\"Secondary text color\",\"ZIgYeg\":\"Secondary Text Color\",\"QuNKRX\":\"Select Camera\",\"kWI/37\":\"Select organizer\",\"hAjDQy\":\"Select status\",\"QYARw/\":\"Select Ticket\",\"XH5juP\":\"Select Ticket Tier\",\"nuWxSr\":\"Select Tickets\",\"O/7I0o\":\"Select...\",\"JlFcis\":\"Send\",\"qKWv5N\":[\"Send a copy to <0>\",[\"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.\",\"471O/e\":\"Send confirmation email\",\"D7ZemV\":\"Send order confirmation and ticket email\",\"v1rRtW\":\"Send Test\",\"j1VfcT\":\"SEO Description\",\"/SIY6o\":\"SEO Keywords\",\"GfWoKv\":\"SEO Settings\",\"rXngLf\":\"SEO Title\",\"/jZOZa\":\"Service Fee\",\"vu4F0h\":\"Set a minimum price and let users donate more\",\"Bj/QGQ\":\"Set a minimum price and let users pay more if they choose\",\"nYNT+5\":\"Set up your event\",\"A8iqfq\":\"Set your event live\",\"Tz0i8g\":\"Settings\",\"Z8lGw6\":\"Share\",\"FFbYHm\":[\"Should this \",[\"type\"],\" be applied to all new tickets?\"],\"8vETh9\":\"Show\",\"smd87r\":\"Show available ticket quantity\",\"qDsmzu\":\"Show hidden questions\",\"fMPkxb\":\"Show more\",\"izwOOD\":\"Show tax and fees separately\",\"j3b+OW\":\"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.\",\"DvCwYF\":\"Sorry, this promo code is invalid'\",\"6a/UJE\":\"Sorry, this promo code is not recognized\",\"9rRZZ+\":\"Sorry, your order has expired. Please start a new order.\",\"a4SyEE\":\"Sorting is disabled while filters and sorting are applied\",\"4nG1lG\":\"Standard ticket with a fixed price\",\"D3iCkb\":\"Start Date\",\"RS0o7b\":\"State\",\"/2by1f\":\"State or Region\",\"uAQUqI\":\"Status\",\"UJmAAK\":\"Subject\",\"X2rrlw\":\"Subtotal\",\"b0HJ45\":[\"Success! \",[\"0\"],\" will receive an email shortly.\"],\"BJIEiF\":[\"Successfully \",[\"0\"],\" attendee\"],\"Ih8kN0\":[\"Successfully $\",[\"0\"],\" attendee\"],\"xHl17l\":[\"Successfully checked <0>\",[\"0\"],\" \",[\"1\"],\"0> \",[\"2\"]],\"OtgNFx\":\"Successfully confirmed email address\",\"IKwyaF\":\"Successfully confirmed email change\",\"zLmvhE\":\"Successfully created attendee\",\"9mZEgt\":\"Successfully Created Promo Code\",\"aIA9C4\":\"Successfully Created Question\",\"onFQYs\":\"Successfully Created Ticket\",\"Hgj/mB\":\"Successfully deleted ticket\",\"J3RJSZ\":\"Successfully updated attendee\",\"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\",\"70dYC8\":\"Successfully Updated Promo Code\",\"F+pJnL\":\"Successfully Updated Seo Settings\",\"g2lRrH\":\"Successfully updated ticket\",\"DXZRk5\":\"Suite 100\",\"GNcfRk\":\"Support Email\",\"JpohL9\":\"Tax\",\"geUFpZ\":\"Tax & Fees\",\"0RXCDo\":\"Tax or Fee deleted successfully\",\"ZowkxF\":\"Taxes\",\"EEZnW+\":\"Taxes & Fees\",\"qu6/03\":\"Taxes and Fees\",\"gVjSFp\":\"Taxes and Fees can be associated with tickets and will be added to the ticket price.\",\"e0ZSh4\":\"Text Colour\",\"gypigA\":\"That promo code is invalid\",\"0ozSQu\":\"The background color for the event homepage\",\"LbHWgW\":\"The background color for the ticket widget on the event homepage\",\"75Xclv\":\"The basic details of your event\",\"UNqHnV\":\"The color of the buttons on the event homepage\",\"0amhbL\":\"The color of the links on the event homepage\",\"QXlz+n\":\"The default currency for your events.\",\"mnafgQ\":\"The default timezone for your events.\",\"NlfnUd\":\"The link you clicked is invalid.\",\"FqjKfd\":\"The location of your event\",\"FeAfXO\":[\"The maximum numbers number of tickets for Generals is \",[\"0\"]],\"POEqXB\":\"The organizer details of your event\",\"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.\",\"TJZByZ\":\"The tax and fee to apply to this ticket. You can create new taxes and fees on the\",\"OJYwh9\":\"The taxes and fees to apply to this ticket. You can create new taxes and fees on the\",\"6BpBfZ\":\"The text color for the event homepage\",\"rljHp7\":\"The text color for the ticket widget on the event homepage\",\"s4di40\":\"The text to display in the 'Continue' button. Defaults to 'Continue'\",\"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\",\"wgAiDb\":\"The user must login to change their email.\",\"jvxN9/\":\"There are no tickets available for this event\",\"rMcHYt\":\"There is a refund pending. Please wait for it to complete before requesting another refund.\",\"hjLUr+\":\"There was an error loading this content. Please refresh the page and try again.\",\"68Axnm\":\"There was an error processing your request. Please try again.\",\"mVKOW6\":\"There was an error sending your message\",\"Um/adz\":\"These allow multiple selections\",\"vWeHWp\":\"These colors are not saved in our system.\",\"7qzHGS\":\"These colors are not saved in our system. They are only used to generate the widget.\",\"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.\",\"CNk/ro\":\"This is an online event\",\"GabtCa\":\"This is the email address that will be used as the reply-to address for all emails sent from this event\",\"CKkb5E\":\"This message is how below the\",\"cHO4ec\":\"This message will be included in the footer of all emails sent from this event\",\"RjwlZt\":\"This order has already been paid.\",\"axERYu\":\"This order has already been paid. <0>View order details0>\",\"wY+HO9\":\"This order has already been processed.\",\"5K8REg\":\"This order has already been refunded.\",\"OiQMhP\":\"This order has been cancelled\",\"YyEJij\":\"This order has been cancelled.\",\"D44cEI\":\"This order has been completed.\",\"HILpDX\":\"This order is awaiting payment\",\"0vRWbB\":\"This order is awaiting payment.\",\"BdYtn9\":\"This order is complete\",\"e3uMJH\":\"This order is complete.\",\"YNKXOK\":\"This order is processing.\",\"LIjb4v\":\"This order is processing. TODO - a nice image and poll the API\",\"yPZN4i\":\"This order page is no longer available.\",\"5189cf\":\"This overrides all visibility settings and will hide the ticket from all customers.\",\"4vwjho\":\"This page has expired. <0>View order details0>\",\"Qt7RBu\":\"This question is only visible to the event organizer\",\"os29v1\":\"This reset password link is invalid or expired.\",\"WJqBqd\":\"This ticket cannot be deleted because it is\\nassociated with an order. You can hide it instead.\",\"ma6qdu\":\"This ticket is hidden from public view\",\"xJ8nzj\":\"This ticket is hidden unless targeted by a Promo Code\",\"IV9xTT\":\"This user is not active, as they have not accepted their invitation.\",\"5AnPaO\":\"ticket\",\"kjAL4v\":\"Ticket\",\"KosivG\":\"Ticket deleted successfully\",\"dtGC3q\":\"Ticket email has been resent to attendee\",\"USk+Mn\":\"Ticket page message\",\"mRM6XH\":\"Ticket Sales\",\"NirIiz\":\"Ticket Tier\",\"8jLPgH\":\"Ticket Type\",\"jqWDf9\":\"Ticket widget background color\",\"UrMVAz\":\"Ticket Widget Preview\",\"ngtDy7\":\"Ticket widget text color\",\"N+YYpo\":\"Ticket(s)\",\"6GQNLE\":\"Tickets\",\"54q0zp\":\"Tickets for\",\"i+idBz\":\"Tickets sold\",\"AGRilS\":\"Tickets Sold\",\"56Qw2C\":\"Tickets sorted successfully\",\"4f8A8M\":\"Tickets to which the promo code applies (Applies to all by default)\",\"xN9AhL\":[\"Tier \",[\"0\"]],\"oYaHuq\":\"Tiered Ticket\",\"XZrhpz\":\"Tiered Ticket - Coming Soon\",\"4M150e\":\"Tiered tickets allow you to offer multiple price options for the same ticket.\\nThis is perfect for early bird tickets, or offering different price\\noptions for different groups of people.\",\"jQoYTX\":\"Tiered tickets allow you to offer multiple price options for the same ticket. This is perfect for early bird tickets or offering different price options for different groups of people.\",\"s/0RpH\":\"Times used\",\"40Gx0U\":\"Timezone\",\"oDGm7V\":\"TIP\",\"MHrjPM\":\"Title\",\"xdA/+p\":\"Tools\",\"72c5Qo\":\"Total\",\"BxsfMK\":\"Total Fees\",\"mpB/d9\":\"Total order amount\",\"m3FM1g\":\"Total refunded\",\"GBBIy+\":\"Total remaining\",\"/SgoNA\":\"Total Tax\",\"+zy2Nq\":\"Type\",\"mLGbAS\":[\"Unable to \",[\"0\"],\" attendee\"],\"/cSMqv\":\"Unable to create question. Please check the your details\",\"nNdxt9\":\"Unable to create ticket. Please check the your details\",\"MH/lj8\":\"Unable to update question. Please check the your details\",\"Mqy/Zy\":\"United States\",\"NIuIk1\":\"Unlimited\",\"oMcLhS\":\"Unlimited ticket quantity available\",\"E0q9qH\":\"Unlimited usages allowed\",\"ia8YsC\":\"Upcoming\",\"L/gNNk\":[\"Update \",[\"0\"]],\"+qqX74\":\"Update event name, description and dates\",\"vXPSuB\":\"Update profile\",\"gsehpV\":\"Upload an image to be displayed on the event page\",\"BNBfrU\":\"Upload Cover\",\"UtDm3q\":\"URL copied to clipboard\",\"e5lF64\":\"Usage Example\",\"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 Settings0>\",\"vgwVkd\":\"UTC\",\"khBZkl\":\"VAT\",\"E/9LUk\":\"Venue Name\",\"AM+zF3\":\"View attendee\",\"e4mhwd\":\"View event homepage\",\"/5PEQz\":\"View event page\",\"fFornT\":\"View full message\",\"YIsEhQ\":\"View map\",\"Ep3VfY\":\"View on Google Maps\",\"AMkkeL\":\"View order\",\"Y8s4f6\":\"View order details\",\"tF+VVr\":\"VIP Ticket\",\"2q/Q7x\":\"Visibility\",\"vmOFL/\":\"We could not process your payment. Please try again or contact support.\",\"1E0vyy\":\"We couldn't load the data. Please try again.\",\"VGioT0\":\"We recommend dimensions of 2160px by 1080px, 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\"],\" 👋\"],\"wjqPqF\":\"What are Tiered Tickets?\",\"5iXvHA\":\"What is a Tiered Ticketing?\",\"MhhnvW\":\"What tickets does this code apply to? (Applies to all by default)\",\"dCil3h\":\"What tickets should this question be apply to?\",\"Rb0XUE\":\"What time will you be arriving?\",\"5N4wLD\":\"What type of question is this?\",\"S+OdxP\":\"Who is organizing this event?\",\"LINr2M\":\"Who is this message to?\",\"nWhye/\":\"Who should be asked this question?\",\"vVGiM4\":\"Who type of question is this?\",\"onLsWS\":\"Whoops! something went wrong. Please try again or contact support if the problem persists.\",\"AHXN2z\":\"Widget\",\"AU/8QR\":\"Widget Configuration\",\"VxFvXQ\":\"Widget Embed\",\"v1P7Gm\":\"Widget Settings\",\"b4itZn\":\"Working\",\"hqmXmc\":\"Working...\",\"l75CjT\":\"Yes\",\"QcwyCh\":\"Yes, remove them\",\"P+Sty0\":[\"You are changing your email to <0>\",[\"0\"],\"0>.\"],\"4ysd6z\":\"You can connecting using this Zoom link...\",\"9HGdDw\":\"You can create a promo code which targets this ticket on the\",\"KRhIxT\":\"You can now start receiving payments through Stripe.\",\"UqVaVO\":\"You cannot change the ticket type as there are attendees associated with this ticket.\",\"zQ8idk\":\"You cannot change the ticket type because there are already tickets sold for this ticket.\",\"3vRX5A\":\"You cannot delete this price tier because there are already tickets sold for this tier. You can hide it instead.\",\"RCC09s\":\"You cannot edit a default question\",\"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.\",\"XoeazJ\":\"You have no attendee questions. Attendee questions are asked once per attendee.\",\"CoZHDB\":\"You have no order questions.\",\"FZKDIe\":\"You have no order questions. Order questions are asked once per order.\",\"15qAvl\":\"You have no pending email change.\",\"n81Qk8\":\"You have not completed your Stripe Connect setup\",\"jxsiqJ\":\"You have not connected your Stripe account\",\"183zcL\":\"You have taxes and fees added to a Free Ticket. Would you like to remove or obscure them?\",\"2v5MI1\":\"You haven't sent any messages yet. You can send messages to all attendees, or to specific ticket 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\",\"LRguuL\":\"You must have at least one tier\",\"8/eLoa\":\"You need to verify your account before you can send messages.\",\"WHXRMI\":\"You'll need at least one ticket to get started. Free, paid or let the user decide what to pay.\",\"bdg03s\":\"Your account email in outgoing emails.\",\"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\"],\"0> is pending. Please check your email to confirm\"],\"yZfBoy\":\"Your message has been sent\",\"la26JS\":\"Your order is in progress\",\"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.\",\"cJ4Y4R\":\"Your refund is processing.\",\"IFHV2p\":\"Your ticket for\",\"3k7HDY\":\"Zip\",\"BM/KQm\":\"Zip or Postal Code\",\"VftCuk\":\"Zoom link, Google Meet link, etc.\"}")};
\ No newline at end of file
diff --git a/frontend/src/locales/en.po b/frontend/src/locales/en.po
index d8019472..ed7d809f 100644
--- a/frontend/src/locales/en.po
+++ b/frontend/src/locales/en.po
@@ -22,8 +22,8 @@ msgid "'There\\'s nothing to show yet'"
msgstr "'There\\'s nothing to show yet'"
#: src/components/common/QuestionsTable/index.tsx:267
-msgid "{0, plural, one {# hidden question} other {# hidden questions}}"
-msgstr "{0, plural, one {# hidden question} other {# hidden questions}}"
+#~ msgid "{0, plural, one {# hidden question} other {# hidden questions}}"
+#~ msgstr "{0, plural, one {# hidden question} other {# hidden questions}}"
#: src/components/common/AttendeeTable/index.tsx:113
#~ msgid "{0}"
@@ -49,6 +49,10 @@ msgstr "{0} updated successfully"
msgid "{0}'s Events"
msgstr "{0}'s Events"
+#: src/components/common/QuestionsTable/index.tsx:267
+msgid "{0}{1}"
+msgstr "{0}{1}"
+
#: src/components/modals/RefundOrderModal/index.tsx:121
msgid "{message}"
msgstr "{message}"
@@ -347,7 +351,7 @@ msgstr "All attendees of this event"
msgid "All Events"
msgstr "All Events"
-#: src/components/common/PromoCodeTable/index.tsx:128
+#: src/components/common/PromoCodeTable/index.tsx:130
msgid "All Tickets"
msgstr "All Tickets"
@@ -429,7 +433,7 @@ msgstr "Any queries from ticket holders will be sent to this email address. This
msgid "Appearance"
msgstr "Appearance"
-#: src/components/routes/ticket-widget/SelectTickets/index.tsx:359
+#: src/components/routes/ticket-widget/SelectTickets/index.tsx:357
msgid "applied"
msgstr "applied"
@@ -437,7 +441,7 @@ msgstr "applied"
#~ msgid "Apply"
#~ msgstr "Apply"
-#: src/components/routes/ticket-widget/SelectTickets/index.tsx:386
+#: src/components/routes/ticket-widget/SelectTickets/index.tsx:385
msgid "Apply Promo Code"
msgstr "Apply Promo Code"
@@ -453,7 +457,7 @@ msgstr "Are you sure you want to activate this attendee?"
msgid "Are you sure you want to cancel this attendee? This will void their ticket"
msgstr "Are you sure you want to cancel this attendee? This will void their ticket"
-#: src/components/common/PromoCodeTable/index.tsx:34
+#: src/components/common/PromoCodeTable/index.tsx:36
msgid "Are you sure you want to delete this promo code?"
msgstr "Are you sure you want to delete this promo code?"
@@ -485,8 +489,8 @@ msgstr "Attendee"
msgid "Attendee Details"
msgstr "Attendee Details"
-#: src/components/common/QuestionsTable/index.tsx:306
-#: src/components/common/QuestionsTable/index.tsx:347
+#: src/components/common/QuestionsTable/index.tsx:309
+#: src/components/common/QuestionsTable/index.tsx:350
msgid "Attendee questions"
msgstr "Attendee questions"
@@ -621,7 +625,7 @@ msgstr "Camera permission was denied. <0>Request Permission0> again, or if thi
#~ msgstr "Can't load events"
#: src/components/common/AttendeeTable/index.tsx:211
-#: src/components/common/PromoCodeTable/index.tsx:37
+#: src/components/common/PromoCodeTable/index.tsx:39
#: src/utilites/confirmationDialog.tsx:11
msgid "Cancel"
msgstr "Cancel"
@@ -728,7 +732,7 @@ msgstr "Clear Search Text"
msgid "click here"
msgstr "click here"
-#: src/components/common/PromoCodeTable/index.tsx:95
+#: src/components/common/PromoCodeTable/index.tsx:97
msgid "Click to copy"
msgstr "Click to copy"
@@ -741,7 +745,7 @@ msgstr "Close"
msgid "Close sidebar"
msgstr "Close sidebar"
-#: src/components/common/PromoCodeTable/index.tsx:66
+#: src/components/common/PromoCodeTable/index.tsx:68
#: src/components/forms/PromoCodeForm/index.tsx:33
msgid "Code"
msgstr "Code"
@@ -883,7 +887,7 @@ msgstr "Continue To Payment"
msgid "Copied"
msgstr "Copied"
-#: src/components/common/PromoCodeTable/index.tsx:103
+#: src/components/common/PromoCodeTable/index.tsx:105
msgid "copied to clipboard"
msgstr "copied to clipboard"
@@ -899,7 +903,7 @@ msgstr "Copy details to all attendees"
msgid "Copy Link"
msgstr "Copy Link"
-#: src/components/common/PromoCodeTable/index.tsx:172
+#: src/components/common/PromoCodeTable/index.tsx:176
msgid "Copy URL"
msgstr "Copy URL"
@@ -924,7 +928,7 @@ msgstr "Cover"
msgid "Create {0}"
msgstr "Create {0}"
-#: src/components/common/PromoCodeTable/index.tsx:54
+#: src/components/common/PromoCodeTable/index.tsx:56
msgid "Create a Promo Code"
msgstr "Create a Promo Code"
@@ -1051,7 +1055,7 @@ msgstr "Customize your event page to match your brand and style."
#: src/components/common/AttendeeTable/index.tsx:205
#: src/components/common/OrdersTable/index.tsx:131
-#: src/components/common/PromoCodeTable/index.tsx:176
+#: src/components/common/PromoCodeTable/index.tsx:180
#: src/components/common/QuestionsTable/index.tsx:113
#: src/components/common/TicketsTable/SortableTicket/index.tsx:193
msgid "Danger zone"
@@ -1073,12 +1077,12 @@ msgstr "Date & Time"
#~ msgid "Deactivate user"
#~ msgstr "Deactivate user"
-#: src/components/common/PromoCodeTable/index.tsx:37
+#: src/components/common/PromoCodeTable/index.tsx:39
#: src/components/common/TaxAndFeeList/index.tsx:73
msgid "Delete"
msgstr "Delete"
-#: src/components/common/PromoCodeTable/index.tsx:180
+#: src/components/common/PromoCodeTable/index.tsx:184
msgid "Delete code"
msgstr "Delete code"
@@ -1121,7 +1125,7 @@ msgstr "Details"
#~ msgid "Disable code"
#~ msgstr "Disable code"
-#: src/components/common/PromoCodeTable/index.tsx:67
+#: src/components/common/PromoCodeTable/index.tsx:69
msgid "Discount"
msgstr "Discount"
@@ -1145,13 +1149,17 @@ msgstr "Dismiss"
msgid "Don't have an account? <0>Sign Up0>"
msgstr "Don't have an account? <0>Sign Up0>"
+#: src/components/forms/TicketForm/index.tsx:139
+msgid "Donation / Pay what you'd like ticket"
+msgstr "Donation / Pay what you'd like ticket"
+
#: src/components/routes/ticket-widget/SelectTickets/Prices/Tiered/index.tsx:59
#~ msgid "Donation amount"
#~ msgstr "Donation amount"
#: src/components/forms/TicketForm/index.tsx:139
-msgid "Donation Ticket"
-msgstr "Donation Ticket"
+#~ msgid "Donation Ticket"
+#~ msgstr "Donation Ticket"
#: src/components/routes/ticket-widget/OrderSummaryAndTickets/index.tsx:91
#~ msgid "Download Tickets PDF"
@@ -1202,7 +1210,7 @@ msgstr "Edit attendee"
msgid "Edit Attendee"
msgstr "Edit Attendee"
-#: src/components/common/PromoCodeTable/index.tsx:167
+#: src/components/common/PromoCodeTable/index.tsx:169
msgid "Edit Code"
msgstr "Edit Code"
@@ -1398,7 +1406,7 @@ msgstr "Event status updated"
msgid "Events"
msgstr "Events"
-#: src/components/common/PromoCodeTable/index.tsx:70
+#: src/components/common/PromoCodeTable/index.tsx:72
msgid "Expires"
msgstr "Expires"
@@ -1476,7 +1484,7 @@ msgstr "First Name"
msgid "First name must be between 1 and 50 characters"
msgstr "First name must be between 1 and 50 characters"
-#: src/components/common/QuestionsTable/index.tsx:327
+#: src/components/common/QuestionsTable/index.tsx:330
msgid "First Name, Last Name, and Email Address are default questions and are always included in the checkout process."
msgstr "First Name, Last Name, and Email Address are default questions and are always included in the checkout process."
@@ -1555,7 +1563,7 @@ msgstr "Gross Sales"
msgid "Guests"
msgstr "Guests"
-#: src/components/routes/ticket-widget/SelectTickets/index.tsx:354
+#: src/components/routes/ticket-widget/SelectTickets/index.tsx:352
msgid "Have a promo code?"
msgstr "Have a promo code?"
@@ -1605,7 +1613,7 @@ msgstr "Hide"
msgid "Hide getting started page"
msgstr "Hide getting started page"
-#: src/components/common/QuestionsTable/index.tsx:273
+#: src/components/common/QuestionsTable/index.tsx:276
msgid "Hide hidden questions"
msgstr "Hide hidden questions"
@@ -1891,7 +1899,7 @@ msgstr "Make this question mandatory"
#: src/components/common/EventCard/index.tsx:78
#: src/components/common/OrdersTable/index.tsx:94
#: src/components/common/OrdersTable/index.tsx:109
-#: src/components/common/PromoCodeTable/index.tsx:164
+#: src/components/common/PromoCodeTable/index.tsx:166
#: src/components/common/TicketsTable/SortableTicket/index.tsx:171
#: src/components/layouts/Event/index.tsx:38
msgid "Manage"
@@ -2064,7 +2072,7 @@ msgstr "Name should be less than 150 characters"
msgid "Navigate to Attendee"
msgstr "Navigate to Attendee"
-#: src/components/common/PromoCodeTable/index.tsx:155
+#: src/components/common/PromoCodeTable/index.tsx:157
#: src/components/routes/account/ManageAccount/sections/Users/index.tsx:101
msgid "Never"
msgstr "Never"
@@ -2108,7 +2116,7 @@ msgstr "No messages to show"
msgid "No orders to show"
msgstr "No orders to show"
-#: src/components/common/PromoCodeTable/index.tsx:43
+#: src/components/common/PromoCodeTable/index.tsx:45
msgid "No Promo Codes to show"
msgstr "No Promo Codes to show"
@@ -2136,7 +2144,7 @@ msgstr "No Taxes or Fees have been added."
msgid "No tickets to show"
msgstr "No tickets to show"
-#: src/components/common/PromoCodeTable/index.tsx:79
+#: src/components/common/PromoCodeTable/index.tsx:81
msgid "None"
msgstr "None"
@@ -2257,8 +2265,8 @@ msgstr "Order Details {0}"
msgid "Order has been canceled and the order owner has been notified."
msgstr "Order has been canceled and the order owner has been notified."
-#: src/components/common/QuestionsTable/index.tsx:291
-#: src/components/common/QuestionsTable/index.tsx:333
+#: src/components/common/QuestionsTable/index.tsx:294
+#: src/components/common/QuestionsTable/index.tsx:336
msgid "Order questions"
msgstr "Order questions"
@@ -2515,7 +2523,7 @@ msgstr "Powered by Stripe"
msgid "Pre Checkout message"
msgstr "Pre Checkout message"
-#: src/components/common/QuestionsTable/index.tsx:325
+#: src/components/common/QuestionsTable/index.tsx:328
msgid "Preview"
msgstr "Preview"
@@ -2583,7 +2591,7 @@ msgstr "Promo Code page"
msgid "Promo Codes"
msgstr "Promo Codes"
-#: src/components/common/PromoCodeTable/index.tsx:48
+#: src/components/common/PromoCodeTable/index.tsx:50
msgid "Promo codes can be used to offer discounts, presale access, or provide special access to your event."
msgstr "Promo codes can be used to offer discounts, presale access, or provide special access to your event."
@@ -2651,11 +2659,11 @@ msgstr "Refunded"
msgid "Register"
msgstr "Register"
-#: src/components/routes/ticket-widget/SelectTickets/index.tsx:363
+#: src/components/routes/ticket-widget/SelectTickets/index.tsx:361
msgid "remove"
msgstr "remove"
-#: src/components/routes/ticket-widget/SelectTickets/index.tsx:364
+#: src/components/routes/ticket-widget/SelectTickets/index.tsx:362
msgid "Remove"
msgstr "Remove"
@@ -2915,8 +2923,12 @@ msgid "Service Fee"
msgstr "Service Fee"
#: src/components/forms/TicketForm/index.tsx:141
-msgid "Set a minimum price and let users donate more"
-msgstr "Set a minimum price and let users donate more"
+#~ msgid "Set a minimum price and let users donate more"
+#~ msgstr "Set a minimum price and let users donate more"
+
+#: src/components/forms/TicketForm/index.tsx:141
+msgid "Set a minimum price and let users pay more if they choose"
+msgstr "Set a minimum price and let users pay more if they choose"
#: src/components/routes/event/GettingStarted/index.tsx:86
msgid "Set up your event"
@@ -2947,7 +2959,7 @@ msgstr "Show"
msgid "Show available ticket quantity"
msgstr "Show available ticket quantity"
-#: src/components/common/QuestionsTable/index.tsx:273
+#: src/components/common/QuestionsTable/index.tsx:276
msgid "Show hidden questions"
msgstr "Show hidden questions"
@@ -3518,11 +3530,11 @@ msgstr "Ticket Widget Preview"
#~ msgid "Ticket widget text color"
#~ msgstr "Ticket widget text color"
-#: src/components/common/PromoCodeTable/index.tsx:145
+#: src/components/common/PromoCodeTable/index.tsx:147
msgid "Ticket(s)"
msgstr "Ticket(s)"
-#: src/components/common/PromoCodeTable/index.tsx:69
+#: src/components/common/PromoCodeTable/index.tsx:71
#: src/components/layouts/Event/index.tsx:41
#: src/components/layouts/EventHomepage/index.tsx:80
#: src/components/routes/event/tickets.tsx:37
@@ -3575,7 +3587,7 @@ msgstr ""
#~ msgid "Tiered tickets allow you to offer multiple price options for the same ticket. This is perfect for early bird tickets or offering different price options for different groups of people."
#~ msgstr "Tiered tickets allow you to offer multiple price options for the same ticket. This is perfect for early bird tickets or offering different price options for different groups of people."
-#: src/components/common/PromoCodeTable/index.tsx:68
+#: src/components/common/PromoCodeTable/index.tsx:70
msgid "Times used"
msgstr "Times used"
@@ -3661,7 +3673,7 @@ msgstr "Unlimited"
#~ msgid "Unlimited ticket quantity available"
#~ msgstr "Unlimited ticket quantity available"
-#: src/components/common/PromoCodeTable/index.tsx:123
+#: src/components/common/PromoCodeTable/index.tsx:125
msgid "Unlimited usages allowed"
msgstr "Unlimited usages allowed"
@@ -3689,6 +3701,10 @@ msgstr "Update profile"
msgid "Upload Cover"
msgstr "Upload Cover"
+#: src/components/common/PromoCodeTable/index.tsx:174
+msgid "URL copied to clipboard"
+msgstr "URL copied to clipboard"
+
#: src/components/common/WidgetEditor/index.tsx:295
msgid "Usage Example"
msgstr "Usage Example"
@@ -3955,7 +3971,7 @@ msgstr "You have already accepted this invitation. Please login to continue."
msgid "You have connected your Stripe account"
msgstr "You have connected your Stripe account"
-#: src/components/common/QuestionsTable/index.tsx:316
+#: src/components/common/QuestionsTable/index.tsx:319
msgid "You have no attendee questions."
msgstr "You have no attendee questions."
@@ -3963,7 +3979,7 @@ msgstr "You have no attendee questions."
#~ msgid "You have no attendee questions. Attendee questions are asked once per attendee."
#~ msgstr "You have no attendee questions. Attendee questions are asked once per attendee."
-#: src/components/common/QuestionsTable/index.tsx:301
+#: src/components/common/QuestionsTable/index.tsx:304
msgid "You have no order questions."
msgstr "You have no order questions."
diff --git a/frontend/src/locales/es.js b/frontend/src/locales/es.js
index 8a935142..60a48395 100644
--- a/frontend/src/locales/es.js
+++ b/frontend/src/locales/es.js
@@ -1 +1 @@
-/*eslint-disable*/module.exports={messages:JSON.parse("{\"1bpx9A\":\"...\",\"f8qS7T\":\"'There\\\\'s nothing to show yet'\",\"4zldrf\":[[\"0\",\"plural\",{\"one\":[\"#\",\" hidden question\"],\"other\":[\"#\",\" hidden questions\"]}]],\"J/hVSQ\":[[\"0\"]],\"KMgp2+\":[[\"0\"],\" available\"],\"tmew5X\":[[\"0\"],\" checked in\"],\"Pmr5xp\":[[\"0\"],\" created successfully\"],\"FImCSc\":[[\"0\"],\" updated successfully\"],\"KOr9b4\":[[\"0\"],\"'s Events\"],\"wapGcj\":[[\"message\"]],\"fyE7Au\":[[\"minutes\"],\" minutes and \",[\"seconds\"],\" seconds\"],\"NlQ0cx\":[[\"organizerName\"],\"'s first event\"],\"OXku3b\":\"<0>https://0>your-website.com\",\"E15xs8\":\"⚡️ Set up your event\",\"FL6OwU\":\"✉️ Confirm your email address\",\"y1NShf\":\"🎉 Congratulation on creating an event!\",\"BN0OQd\":\"🎉 Congratulations on creating an event!\",\"fAv9QG\":\"🎟️ Add tickets\",\"4WT5tD\":\"🎨 Customize your event page\",\"3VPPdS\":\"💳 Connect with Stripe\",\"s4Tgn6\":\"📢 Promote your event\",\"cjdktw\":\"🚀 Set your event live\",\"rmelwV\":\"0 minutes and 0 seconds\",\"UQ7pBY\":\"0.50 for $0.50\",\"i1+xzD\":\"1.75 for 1.75%\",\"i0puaE\":\"10.00\",\"W9+fkZ\":\"10001\",\"qdfdgM\":\"123 Main Street\",\"IoRZzD\":\"20\",\"+H1RMb\":\"2024-01-01 10:00\",\"Q/T49U\":\"2024-01-01 18:00\",\"hMT8+2\":\"94103\",\"d9El7Q\":[\"A default \",[\"type\"],\" is automaticaly applied to all new tickets. You can override this on a per ticket basis.\"],\"SMUbbQ\":\"A Dropdown input allows only one selection\",\"qv4bfj\":\"A fee, like a booking fee or a service fee\",\"Pgaiuj\":\"A fixed amount per ticket. E.g, $0.50 per ticket\",\"f4vJgj\":\"A multi line text input\",\"ySO/4f\":\"A percentage of the ticket price. E.g., 3.5% of the ticket price\",\"WXeXGB\":\"A promo code with no discount can be used to reveal hidden tickets.\",\"GMhWB5\":\"A Radio option allows has multiple options but only one can be selected.\",\"CBt3s7\":\"A Radio Option allows only one selection\",\"AG/qmQ\":\"A Radio option has multiple options but only one can be selected.\",\"7g61G9\":\"A short description of Awesome Events Ltd.\",\"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\",\"zCk10D\":\"A single question per attendee. E.g, What is your preferred meal?\",\"ap3v36\":\"A single question per order. E.g, What is your company name?\",\"RlJmQg\":\"A standard tax, like VAT or GST\",\"pDwHGk\":\"About hi.events\",\"uIKNjo\":\"About the event\",\"bfXQ+N\":\"Accept Invitation\",\"iwyhk4\":\"Access to the VIP area...\",\"AeXO77\":\"Account\",\"0b79Xf\":\"Account Email\",\"lkNdiH\":\"Account Name\",\"Puv7+X\":\"Account Settings\",\"OmylXO\":\"Account updated successfully\",\"7L01XJ\":\"Actions\",\"FQBaXG\":\"Activate\",\"F6pfE9\":\"Active\",\"m16xKo\":\"Add\",\"LKNynS\":\"Add a cover image, description, and more to make your event stand out.\",\"gMK0ps\":\"Add event details and and manage event settings.\",\"Fb+SDI\":\"Add More tickets\",\"ApsD9J\":\"Add New\",\"TZxnm8\":\"Add Option\",\"Cw27zP\":\"Add question\",\"yWiPh+\":\"Add Tax or Fee\",\"BGD9Yt\":\"Add tickets\",\"goOKRY\":\"Add tier\",\"p59pEv\":\"Additional Details\",\"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.\",\"CPXP5Z\":\"Affiliates\",\"W7AfhC\":\"All attendees of this event\",\"QsYjci\":\"All Events\",\"/twVAS\":\"All Tickets\",\"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..\",\"8wYDMp\":\"Already have an account?\",\"ApOYO8\":\"Amazing, Event, Keywords...\",\"hehnjM\":\"Amount\",\"TRYjHa\":[\"amount in \",[\"0\"]],\"R2O9Rg\":[\"Amount paid (\",[\"0\"],\")\"],\"tLjOgo\":[\"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\",\"er3d/4\":\"An error occurred while sorting the tickets. Please try again or refresh the page\",\"hhvESd\":\"An event is the actual event you are hosting\",\"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.\",\"j4DliD\":\"Any queries from ticket 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\",\"DB8zMK\":\"Apply\",\"GctSSm\":\"Apply Promo Code\",\"jcnZEw\":[\"Apply this \",[\"type\"],\" to all new tickets\"],\"q7TRd7\":\"Are you sure you want to activate this attendee?\",\"/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\",\"2xEpch\":\"Ask once per attendee\",\"LBLOqH\":\"Ask once per order\",\"ss9PbX\":\"Attendee\",\"m0CFV2\":\"Attendee Details\",\"lXcSD2\":\"Attendee questions\",\"VvYqMB\":\"Attendee questions are asked once per attendee. By default, people are asked for their first name, last name, and email address.\",\"spxPEv\":\"Attendee questions are asked once per attendee. By default, we ask for the attendee's first name, last name, and email address.\",\"9SZT4E\":\"Attendees\",\"5UbY+B\":\"Attendees with a specific ticket\",\"IMJ6rh\":\"Auto Resize\",\"vZ5qKF\":\"Automatically resize the widget height based on the content. When disabled, the widget will fill the height of the container.\",\"lXkUEV\":\"Availability\",\"ioG+xt\":\"Awaiting Payment\",\"3PmQfI\":\"Awesome Event\",\"kNmmvE\":\"Awesome Events Ltd.\",\"Yrbm6T\":\"Awesome Organizer Ltd.\",\"9002sI\":\"Back to all events\",\"0TGkYM\":\"Back to event homepage\",\"A302fe\":\"Back to event page\",\"VCoEm+\":\"Back to login\",\"MLZyiY\":\"Background color\",\"k1bLf+\":\"Background Color\",\"I7xjqg\":\"Background Type\",\"EOUool\":\"Basic Details\",\"7EGQKA\":\"Because you are the account owner, you cannot change your role or status.\",\"1mwMl+\":\"Before you send!\",\"wVfiR2\":\"Before you're event can go live, there's a few thing to do.\",\"/yeZ20\":\"Before your event can go live, there are a few things you need to do.\",\"1xAcxY\":\"Begin selling tickets in minutes\",\"R+w/Va\":\"Billing\",\"Ptp9MF\":\"Button color\",\"whqocw\":\"By registering you agree to our <0>Terms of Service0> and <1>Privacy Policy1>.\",\"bcCn6r\":\"Calculation Type\",\"+8bmSu\":\"California\",\"iStTQt\":\"Camera permission was denied. <0>Request Permission0> again, or if this doesn't work, you will need to <1>grant this page1> access to your camera in your browser settings.\",\"Jzn1qy\":\"Can't load events\",\"dEgA5A\":\"Cancel\",\"Gjt/py\":\"Cancel email change\",\"tVJk4q\":\"Cancel order\",\"Os6n2a\":\"Cancel Order\",\"Mz7Ygx\":[\"Cancel Order \",[\"0\"]],\"Ud7zwq\":\"Canceling will cancel all tickets associated with this order, and release the tickets back into the available pool.\",\"vv7kpg\":\"Cancelled\",\"77/YgG\":\"Change Cover\",\"GptGxg\":\"Change password\",\"QndF4b\":\"check in\",\"xMDm+I\":\"Check In\",\"9FVFym\":\"check out\",\"gXcPxc\":\"Check-in\",\"Y3FYXy\":\"Check-In\",\"CNafaC\":\"Checkbox options allow multiple selections\",\"SpabVf\":\"Checkboxes\",\"CRu4lK\":\"Checked In\",\"/ydvvl\":\"Checkout Messaging\",\"1WnhCL\":\"Checkout Settings\",\"JjkX4+\":\"Choose a color for your background\",\"/Jizh9\":\"Choose an account\",\"jJGoVv\":\"Choose what notifications you want to receive\",\"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\",\"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\",\"DwF9eH\":\"Component Code\",\"7VpPHA\":\"Confirm\",\"ZaEJZM\":\"Confirm Email Change\",\"yjkELF\":\"Confirm New Password\",\"xnWESi\":\"Confirm password\",\"p2/GCq\":\"Confirm Password\",\"wnDgGj\":\"Confirming email address...\",\"DnLC08\":\"Congratulation on creating an event!\",\"pbAk7a\":\"Connect Stripe\",\"UMGQOh\":\"Connect with Stripe\",\"QKLP1W\":\"Connect your Stripe account to start receiving payments.\",\"5lcVkL\":\"Connection Details\",\"i3p844\":\"Contact email\",\"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\",\"RGVUUI\":\"Continue To Payment\",\"6V3Ea3\":\"Copied\",\"T5rdis\":\"copied to clipboard\",\"he3ygx\":\"Copy\",\"8+cOrS\":\"Copy details to all attendees\",\"ENCIQz\":\"Copy Link\",\"E6nRW7\":\"Copy URL\",\"JNCzPW\":\"Country\",\"IF7RiR\":\"Cover\",\"P0rbCt\":\"Cover Image\",\"hYgDIe\":\"Create\",\"b9XOHo\":[\"Create \",[\"0\"]],\"6kdXbW\":\"Create a Promo Code\",\"n5pRtF\":\"Create a Ticket\",\"X6sRve\":[\"Create an account or <0>\",[\"0\"],\"0> to get started\"],\"nx+rqg\":\"create an organizer\",\"ipP6Ue\":\"Create Attendee\",\"uN355O\":\"Create Event\",\"BOqY23\":\"Create new\",\"kpJAeS\":\"Create Organizer\",\"sYpiZP\":\"Create Promo Code\",\"a6YrKg\":\"Create promo codes\",\"n6H6AO\":\"Create promo codes to offer discounts to your attendees.\",\"B3Mkdt\":\"Create Question\",\"UKfi21\":\"Create Tax or Fee\",\"Tg323g\":\"Create Ticket\",\"agZ87r\":\"Create tickets for your event, set prices, and manage available quantity.\",\"d+F6q9\":\"Created\",\"Q2lUR2\":\"Currency\",\"DCKkhU\":\"Current Password\",\"uIElGP\":\"Custom Maps URL\",\"876pfE\":\"Customer\",\"QOg2Sf\":\"Customize the email and notification settings for this event\",\"Lu75d1\":\"Customize the email settings for this event\",\"RaxMyF\":\"Customize the event homepage and checkout experience\",\"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\",\"7p5kLi\":\"Dashboard\",\"mYGY3B\":\"Date\",\"JvUngl\":\"Date & Time\",\"RiXc4g\":\"Deactivate user\",\"cnGeoo\":\"Delete\",\"WHf154\":\"Delete code\",\"heJllm\":\"Delete Cover\",\"KWa0gi\":\"Delete Image\",\"IatsLx\":\"Delete question\",\"GnyEfA\":\"Delete ticket\",\"E33LRn\":\"Delete user\",\"Nu4oKW\":\"Description\",\"s9iD5d\":\"Description should be less than 50,000 characters\",\"URmyfc\":\"Details\",\"x8uDKb\":\"Disable code\",\"H6Ma8Z\":\"Discount\",\"ypJ62C\":\"Discount %\",\"3LtiBI\":[\"Discount in \",[\"0\"]],\"C8JLas\":\"Discount Type\",\"1QfxQT\":\"Dismiss\",\"cVq+ga\":\"Don't have an account? <0>Sign Up0>\",\"++S5i/\":\"Donation amount\",\"OO7MG7\":\"Donation Ticket\",\"0pEVi2\":\"Download Tickets PDF\",\"uABpqP\":\"Drag and drop or click\",\"3z2ium\":\"Drag to sort\",\"6skwyH\":\"Drop an image, or click here to replace the Cover Image\",\"S37RRV\":\"Drop an image, or click here to upload the Cover Image\",\"CfKofC\":\"Dropdown selection\",\"vi8Q/5\":\"Duplicate event\",\"7Cx5It\":\"Early bird\",\"ePK91l\":\"Edit\",\"N6j2JH\":[\"Edit \",[\"0\"]],\"kNGp1D\":\"Edit attendee\",\"t2bbp8\":\"Edit Attendee\",\"iFgaVN\":\"Edit Code\",\"jrBSO1\":\"Edit Organizer\",\"9BdS63\":\"Edit Promo Code\",\"O0CE67\":\"Edit question\",\"EzwCw7\":\"Edit Question\",\"d+nnyk\":\"Edit Ticket\",\"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\",\"WiKda6\":\"Email Configuration\",\"APuxIE\":\"Email confirmation resent\",\"YaCgdO\":\"Email confirmation resent successfully\",\"jyt+cx\":\"Email footer message\",\"I6F3cp\":\"Email not verified\",\"G5zNMX\":\"Email Settings\",\"NTZ/NX\":\"Embed Code\",\"4rnJq4\":\"Embed Script\",\"VFv2ZC\":\"End Date\",\"237hSL\":\"Ended\",\"MhVoma\":\"Enter an amount excluding taxes and fees.\",\"3Z223G\":\"Error confirming email address\",\"a6gga1\":\"Error confirming email change\",\"5/63nR\":\"EUR\",\"0pC/y6\":\"Event\",\"nuoP/j\":\"Event created successfully\",\"CFLUfD\":\"Event created successfully 🎉\",\"0Zptey\":\"Event Defaults\",\"Xe3XMd\":\"Event is not visible to the public\",\"4pKXJS\":\"Event is visible to the public\",\"ClwUUD\":\"Event location & venue details\",\"OopDbA\":\"Event page\",\"JyD0LH\":\"Event Settings\",\"4/If97\":\"Event status update failed. Please try again later\",\"btxLWj\":\"Event status updated\",\"tst44n\":\"Events\",\"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.\",\"9zSt4h\":\"Failed to export attendees. Please try again.\",\"2uGNuE\":\"Failed to export orders. Please try again.\",\"ZQ15eN\":\"Failed to resend ticket email\",\"PLUB/s\":\"Fee\",\"YirHq7\":\"Feedback\",\"/mfICu\":\"Fees\",\"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.\",\"QWa3Sk\":\"First Name, Last Name, and Email Address are default questions that are always included in the checkout process.\",\"TpqW74\":\"Fixed\",\"irpUxR\":\"Fixed amount\",\"TF9opW\":\"Flash is not available on this device\",\"UNMVei\":\"Forgot password?\",\"2POOFK\":\"Free\",\"/4rQr+\":\"Free Ticket\",\"01my8x\":\"Free ticket, no payment information required\",\"ejVYRQ\":\"From\",\"u6FPxT\":\"Get Tickets\",\"4GLxhy\":\"Getting Started\",\"4D3rRj\":\"Go back to profile\",\"cQPKZt\":\"Go to Dashboard\",\"9LCqFI\":\"Go to event homepage\",\"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.\",\"Ow9Hz5\":[\"Hi.Events Conference \",[\"0\"]],\"verBst\":\"Hi.Events Conference Center\",\"6eMEQO\":\"hi.events logo\",\"C4qOW8\":\"Hidden from public view\",\"k3dfFD\":\"Hidden questions are only visible to the event organizer and not to the customer.\",\"EeNE0j\":\"Hidden will not be shown to customers.\",\"vLyv1R\":\"Hide\",\"Mkkvfd\":\"Hide getting started page\",\"mFn5Xz\":\"Hide hidden questions\",\"SCimta\":\"Hide the getting started page from the sidebar\",\"Da29Y6\":\"Hide this question\",\"fsi6fC\":\"Hide this ticket from customers\",\"fvDQhr\":\"Hide this tier from users\",\"Fhzoa8\":\"Hide ticket after sale end date\",\"yhm3J/\":\"Hide ticket before sale start date\",\"k7/oGT\":\"Hide ticket unless user has applicable promo code\",\"L0ZOiu\":\"Hide ticket when sold out\",\"uno73L\":\"Hiding a ticket will prevent users from seeing it on the event page.\",\"tj6Gob\":\"Homepage & Checkout\",\"m07jN3\":\"Homepage & Checkout Settings\",\"ZOBwQn\":\"Homepage Design\",\"PRuBTd\":\"Homepage Designer\",\"YjVNGZ\":\"Homepage Preview\",\"c3E/kw\":\"Homer\",\"id+NIk\":\"How many minutes the customer has to complete their order\",\"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?\",\"fYyXCd\":\"https://example-maps-service.com/...\",\"uOXLV3\":\"I agree to the <0>terms and conditions0>\",\"sIxFk5\":\"I agree to the terms and conditions\",\"Crwwhn\":[\"If a new tab did not open, please <0>\",[\"0\"],\".0>\"],\"93DUnd\":[\"If a new tab did not open, please <0><1>\",[\"0\"],\"1>.0>\"],\"9gtsTP\":\"If blank, the address will be used to generate a Google map link\",\"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\",\"Gyl1h8\":\"Image dimensions must be at least 600px by 300px\",\"TiGacZ\":\"Image dimensions must be at least 900px by 450px\",\"UnTvkH\":\"Image dimensions must be between 3000px by 2000px. With a max height of 2000px and max width of 3000px\",\"uPEIvq\":\"Image must be less than 5MB\",\"AGZmwV\":\"Image uploaded successfully\",\"ibi52/\":\"Image width must be at least 900px and height at least 50px\",\"NoNwIX\":\"Inactive\",\"T0K0yl\":\"Inactive users cannot log in.\",\"OFAmKP\":\"Include connection details for your online event\",\"BfPBBG\":\"Include connection details for your online event. These details will be after successful registration.\",\"6+pAOx\":\"Include connection details for your online event. These details will be shown after successful registration.\",\"evpD4c\":\"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\",\"nbfdhU\":\"Integrations\",\"OyLdaz\":\"Invitation resent!\",\"HE6KcK\":\"Invitation revoked!\",\"SQKPvQ\":\"Invite User\",\"PgdQrx\":\"Issue refund\",\"KFXip/\":\"John\",\"XcgRvb\":\"Johnson\",\"1IWWYX\":[\"KittenTech Conference \",[\"0\"]],\"ZgJEMX\":\"KittenTech Conference Center\",\"87a/t/\":\"Label\",\"I3yitW\":\"Last login\",\"1ZaQUH\":\"Last name\",\"UXBCwc\":\"Last Name\",\"CKcupn\":\"Latest Orders\",\"tITjB1\":\"Learn more about Stripe\",\"c+gAXc\":\"Let's get started by creating your first event\",\"vR92Yn\":\"Let's get started by creating your first organizer\",\"QfrKvi\":\"Link color\",\"wJijgU\":\"Location\",\"sQia9P\":\"Log in\",\"zUDyah\":\"Logging in\",\"z0t9bb\":\"Login\",\"nOhz3x\":\"Logout\",\"F2jAFv\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nam placerat elementum...\",\"XkhEf9\":\"Lorem ipsum...\",\"MU3ijv\":\"Make this question mandatory\",\"wckWOP\":\"Manage\",\"8mmINh\":\"Manage billing information and view invoices\",\"jWIznR\":\"Manage default settings for new events\",\"n4SpU5\":\"Manage event\",\"wqyqaF\":\"Manage general account settings\",\"cQrNR3\":\"Manage Profile\",\"f92Qak\":\"Manage taxes and fees which can be applied to tickets\",\"PlTcVr\":\"Manage taxes and fees which can be applied to your tickets\",\"ophZVW\":\"Manage tickets\",\"Wsx7Iu\":\"Manage users and their permissions\",\"DdHfeW\":\"Manage your account details and default settings\",\"QHcjP+\":\"Manage your billing and payment details\",\"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\",\"lzcrX3\":\"Manually adding an attendee will adjust ticket quantity.\",\"g9dPPQ\":\"Maximum Per Order\",\"l5OcwO\":\"Message attendee\",\"Gv5AMu\":\"Message Attendees\",\"1jRD0v\":\"Message attendees with specific tickets\",\"Lvi+gV\":\"Message buyer\",\"tNZzFb\":\"Message Content\",\"lYDV/s\":\"Message individual attendees\",\"V7DYWd\":\"Message Sent\",\"t7TeQU\":\"Messages\",\"xFRMlO\":\"Minimum Per Order\",\"QYcUEf\":\"Minimum Price\",\"mYLhkl\":\"Miscellaneous Settings\",\"KYveV8\":\"Multi line text box\",\"SVuGaP\":\"Multiple price options, users can choose which to pay\",\"6wbTro\":\"Multiple price options. Perfect for early bird tickets etc.\",\"/bhMdO\":\"My amazing event description...\",\"vX8/tc\":\"My amazing event title...\",\"hKtWk2\":\"My Profile\",\"pRjx4L\":\"Nam placerat elementum...\",\"6YtxFj\":\"Name\",\"hVuv90\":\"Name should be less than 150 characters\",\"AIUkyF\":\"Navigate to Attendee\",\"qqeAJM\":\"Never\",\"7vhWI8\":\"New Password\",\"m920rF\":\"New York\",\"1UzENP\":\"No\",\"Wjz5KP\":\"No Attendees to show\",\"fFeCKc\":\"No Discount\",\"Z6ILSe\":\"No events for this organizer\",\"yAlJXG\":\"No events to show\",\"KPWxKD\":\"No messages to show\",\"J2LkP8\":\"No orders to show\",\"+Y976X\":\"No Promo Codes to show\",\"Ev2r9A\":\"No results\",\"RHyZUL\":\"No search results.\",\"cU1op4\":\"No Taxes or Fees have been added yet.\",\"RY2eP1\":\"No Taxes or Fees have been added.\",\"uR2eFu\":\"No tickets available\",\"b7JZFg\":\"No tickets to show\",\"EdQY6l\":\"None\",\"OJx3wK\":\"Not available\",\"x5+Lcz\":\"Not Checked In\",\"Scbrsn\":\"Not On Sale\",\"hFwWnI\":\"Notification Settings\",\"xXqEPO\":\"Notify buyer of refund\",\"YpN29s\":\"Notify organizer of new orders\",\"qeQhNj\":\"Now let's create your first event\",\"2NPDz1\":\"On sale\",\"Ldu/RI\":\"On Sale\",\"Ug4SfW\":\"Once you create an event, you'll see it here.\",\"+P/tII\":\"Once you're ready, set your event live and start selling tickets.\",\"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.\",\"OdnLE4\":\"Open sidebar\",\"ZZEYpT\":[\"Option \",[\"i\"]],\"0zpgxV\":\"Options\",\"BzEFor\":\"or\",\"UYUgdb\":\"Order\",\"mm+eaX\":\"Order #\",\"B3gPuX\":\"Order Cancelled\",\"SIbded\":\"Order Completed\",\"q/CcwE\":\"Order Date\",\"Tol4BF\":\"Order Details\",\"L4kzeZ\":[\"Order Details \",[\"0\"]],\"WbImlQ\":\"Order has been canceled and the order owner has been notified.\",\"VCOi7U\":\"Order questions\",\"wg9MPp\":\"Order questions are asked once per order. By default, people are asked for their first name, last name, and email address.\",\"+KNVxX\":\"Order questions are asked once per order. By default, we ask for the first name, last name, and email address.\",\"TPoYsF\":\"Order Reference\",\"GX6dZv\":\"Order Summary\",\"tDTq0D\":\"Order timeout\",\"1h+RBg\":\"Orders\",\"mz+c33\":\"Orders Created\",\"G5RhpL\":\"Organizer\",\"m/ebSk\":\"Organizer Details\",\"mYygCM\":\"Organizer is required\",\"Pa6G7v\":\"Organizer Name\",\"J2cXxX\":\"Organizers can only manage events and tickets. 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\",\"2w/FiJ\":\"Paid Ticket\",\"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\",\"iq5IUr\":\"Pause Ticket\",\"621rYf\":\"Payment\",\"JhtZAK\":\"Payment Failed\",\"xgav5v\":\"Payment succeeded!\",\"CcK+Ft\":\"PDF\",\"att1Hj\":\"percent\",\"/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\",\"q40YFl\":\"Please continue your order in the new tab\",\"ZJG4Di\":\"Please ensure you only send emails directly related to the order. Promotional emails\\nshould not be sent using this form.\",\"o+HaYe\":\"Please enter a valid promo code\",\"HnNept\":\"Please enter your new password\",\"5FSIzj\":\"Please Note\",\"MA04r/\":\"Please remove filters and set sorting to \\\"Homepage order\\\" to enable sorting\",\"pJLvdS\":\"Please select\",\"yygcoG\":\"Please select at least one ticket\",\"igBrCH\":\"Please verify your email address to access all features\",\"qCJyMx\":\"Post Checkout message\",\"g2UNkE\":\"Powered by\",\"Qs7yI0\":\"Powered By\",\"lqAWKB\":\"Powered by <0>Hi.Events0> 👋\",\"3n47kV\":\"Powered By Hi.Events\",\"ddi4j4\":\"Powered by Stripe\",\"Rs7IQv\":\"Pre Checkout message\",\"rdUucN\":\"Preview\",\"a7u1N9\":\"Price\",\"CmoB9j\":\"Price display mode\",\"Q8PWaJ\":\"Price tiers\",\"a5jvSX\":\"Price Tiers\",\"6RmHKN\":\"Primary Color\",\"G/ZwV1\":\"Primary Colour\",\"8cBtvm\":\"Primary Text Color\",\"BZz12Q\":\"Print\",\"MT7dxz\":\"Print All Tickets\",\"vERlcd\":\"Profile\",\"kUlL8W\":\"Profile updated successfully\",\"cl5WYc\":[\"Promo \",[\"promo_code\"],\" code applied\"],\"ZXpm3a\":[\"Promo \",[\"promoCode\"],\" code applied\"],\"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.\",\"812gwg\":\"Purchase License\",\"LkMOWF\":\"Quantity Available\",\"XKJuAX\":\"Question deleted\",\"oQvMPn\":\"Question Title\",\"enzGAL\":\"Questions\",\"K885Eq\":\"Questions sorted successfully\",\"OMJ035\":\"Radio Option\",\"C4TjpG\":\"Read less\",\"I3QpvQ\":\"Recipient\",\"N2C89m\":\"Reference\",\"gxFu7d\":[\"Refund amount (\",[\"0\"],\")\"],\"n10yGu\":\"Refund order\",\"zPH6gp\":\"Refund Order\",\"/BI0y9\":\"Refunded\",\"fgLNSM\":\"Register\",\"tasfos\":\"remove\",\"t/YqKh\":\"Remove\",\"RloWNu\":\"Reply to email\",\"EGm34e\":\"Resend confirmation email\",\"lnrkNz\":\"Resend email confirmation\",\"wIa8Qe\":\"Resend invitation\",\"VeKsnD\":\"Resend order email\",\"dFuEhO\":\"Resend ticket email\",\"o6+Y6d\":\"Resending...\",\"RfwZxd\":\"Reset password\",\"KbS2K9\":\"Reset Password\",\"vtc20Z\":\"Return to event page\",\"8YBH95\":\"Revenue\",\"PO/sOY\":\"Revoke invitation\",\"GDvlUT\":\"Role\",\"ELa4O9\":\"Sale End Date\",\"5uo5eP\":\"Sale ended\",\"Qm5XkZ\":\"Sale Start Date\",\"hVF4dJ\":\"Sale starts\",\"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\",\"lBAlVv\":\"Seach by name, order #, attendee # or email...\",\"W4kWXJ\":\"Search by attendee name, email or order #...\",\"ulAuWO\":\"Search by event name or description...\",\"+pr/FY\":\"Search by event name...\",\"NQSiYb\":\"Search by name or description...\",\"3zRbWw\":\"Search by name, email, or order #...\",\"BiYOdA\":\"Search by name...\",\"B1bB1j\":\"Search by order #, name or email...\",\"jA4hXE\":\"Search by subject or body...\",\"YEjitp\":\"Search by subject or content...\",\"HYnGee\":\"Search by ticket name...\",\"YIix5Y\":\"Search...\",\"OeW+DS\":\"Secondary color\",\"DnXcDK\":\"Secondary Color\",\"cZF6em\":\"Secondary text color\",\"ZIgYeg\":\"Secondary Text Color\",\"QuNKRX\":\"Select Camera\",\"kWI/37\":\"Select organizer\",\"hAjDQy\":\"Select status\",\"QYARw/\":\"Select Ticket\",\"XH5juP\":\"Select Ticket Tier\",\"nuWxSr\":\"Select Tickets\",\"O/7I0o\":\"Select...\",\"JlFcis\":\"Send\",\"qKWv5N\":[\"Send a copy to <0>\",[\"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.\",\"471O/e\":\"Send confirmation email\",\"D7ZemV\":\"Send order confirmation and ticket email\",\"v1rRtW\":\"Send Test\",\"j1VfcT\":\"SEO Description\",\"/SIY6o\":\"SEO Keywords\",\"GfWoKv\":\"SEO Settings\",\"rXngLf\":\"SEO Title\",\"/jZOZa\":\"Service Fee\",\"vu4F0h\":\"Set a minimum price and let users donate more\",\"nYNT+5\":\"Set up your event\",\"A8iqfq\":\"Set your event live\",\"Tz0i8g\":\"Settings\",\"Z8lGw6\":\"Share\",\"FFbYHm\":[\"Should this \",[\"type\"],\" be applied to all new tickets?\"],\"8vETh9\":\"Show\",\"smd87r\":\"Show available ticket quantity\",\"qDsmzu\":\"Show hidden questions\",\"fMPkxb\":\"Show more\",\"izwOOD\":\"Show tax and fees separately\",\"j3b+OW\":\"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.\",\"DvCwYF\":\"Sorry, this promo code is invalid'\",\"6a/UJE\":\"Sorry, this promo code is not recognized\",\"9rRZZ+\":\"Sorry, your order has expired. Please start a new order.\",\"a4SyEE\":\"Sorting is disabled while filters and sorting are applied\",\"4nG1lG\":\"Standard ticket with a fixed price\",\"D3iCkb\":\"Start Date\",\"RS0o7b\":\"State\",\"/2by1f\":\"State or Region\",\"uAQUqI\":\"Status\",\"UJmAAK\":\"Subject\",\"X2rrlw\":\"Subtotal\",\"b0HJ45\":[\"Success! \",[\"0\"],\" will receive an email shortly.\"],\"BJIEiF\":[\"Successfully \",[\"0\"],\" attendee\"],\"Ih8kN0\":[\"Successfully $\",[\"0\"],\" attendee\"],\"xHl17l\":[\"Successfully checked <0>\",[\"0\"],\" \",[\"1\"],\"0> \",[\"2\"]],\"OtgNFx\":\"Successfully confirmed email address\",\"IKwyaF\":\"Successfully confirmed email change\",\"zLmvhE\":\"Successfully created attendee\",\"9mZEgt\":\"Successfully Created Promo Code\",\"aIA9C4\":\"Successfully Created Question\",\"onFQYs\":\"Successfully Created Ticket\",\"Hgj/mB\":\"Successfully deleted ticket\",\"J3RJSZ\":\"Successfully updated attendee\",\"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\",\"70dYC8\":\"Successfully Updated Promo Code\",\"F+pJnL\":\"Successfully Updated Seo Settings\",\"g2lRrH\":\"Successfully updated ticket\",\"DXZRk5\":\"Suite 100\",\"GNcfRk\":\"Support Email\",\"JpohL9\":\"Tax\",\"geUFpZ\":\"Tax & Fees\",\"0RXCDo\":\"Tax or Fee deleted successfully\",\"ZowkxF\":\"Taxes\",\"EEZnW+\":\"Taxes & Fees\",\"qu6/03\":\"Taxes and Fees\",\"gVjSFp\":\"Taxes and Fees can be associated with tickets and will be added to the ticket price.\",\"e0ZSh4\":\"Text Colour\",\"gypigA\":\"That promo code is invalid\",\"0ozSQu\":\"The background color for the event homepage\",\"LbHWgW\":\"The background color for the ticket widget on the event homepage\",\"75Xclv\":\"The basic details of your event\",\"UNqHnV\":\"The color of the buttons on the event homepage\",\"0amhbL\":\"The color of the links on the event homepage\",\"QXlz+n\":\"The default currency for your events.\",\"mnafgQ\":\"The default timezone for your events.\",\"NlfnUd\":\"The link you clicked is invalid.\",\"FqjKfd\":\"The location of your event\",\"FeAfXO\":[\"The maximum numbers number of tickets for Generals is \",[\"0\"]],\"POEqXB\":\"The organizer details of your event\",\"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.\",\"TJZByZ\":\"The tax and fee to apply to this ticket. You can create new taxes and fees on the\",\"OJYwh9\":\"The taxes and fees to apply to this ticket. You can create new taxes and fees on the\",\"6BpBfZ\":\"The text color for the event homepage\",\"rljHp7\":\"The text color for the ticket widget on the event homepage\",\"s4di40\":\"The text to display in the 'Continue' button. Defaults to 'Continue'\",\"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\",\"wgAiDb\":\"The user must login to change their email.\",\"jvxN9/\":\"There are no tickets available for this event\",\"rMcHYt\":\"There is a refund pending. Please wait for it to complete before requesting another refund.\",\"hjLUr+\":\"There was an error loading this content. Please refresh the page and try again.\",\"68Axnm\":\"There was an error processing your request. Please try again.\",\"mVKOW6\":\"There was an error sending your message\",\"Um/adz\":\"These allow multiple selections\",\"vWeHWp\":\"These colors are not saved in our system.\",\"7qzHGS\":\"These colors are not saved in our system. They are only used to generate the widget.\",\"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.\",\"CNk/ro\":\"This is an online event\",\"GabtCa\":\"This is the email address that will be used as the reply-to address for all emails sent from this event\",\"CKkb5E\":\"This message is how below the\",\"cHO4ec\":\"This message will be included in the footer of all emails sent from this event\",\"RjwlZt\":\"This order has already been paid.\",\"axERYu\":\"This order has already been paid. <0>View order details0>\",\"wY+HO9\":\"This order has already been processed.\",\"5K8REg\":\"This order has already been refunded.\",\"OiQMhP\":\"This order has been cancelled\",\"YyEJij\":\"This order has been cancelled.\",\"D44cEI\":\"This order has been completed.\",\"HILpDX\":\"This order is awaiting payment\",\"0vRWbB\":\"This order is awaiting payment.\",\"BdYtn9\":\"This order is complete\",\"e3uMJH\":\"This order is complete.\",\"YNKXOK\":\"This order is processing.\",\"LIjb4v\":\"This order is processing. TODO - a nice image and poll the API\",\"yPZN4i\":\"This order page is no longer available.\",\"5189cf\":\"This overrides all visibility settings and will hide the ticket from all customers.\",\"4vwjho\":\"This page has expired. <0>View order details0>\",\"Qt7RBu\":\"This question is only visible to the event organizer\",\"os29v1\":\"This reset password link is invalid or expired.\",\"WJqBqd\":\"This ticket cannot be deleted because it is\\nassociated with an order. You can hide it instead.\",\"ma6qdu\":\"This ticket is hidden from public view\",\"xJ8nzj\":\"This ticket is hidden unless targeted by a Promo Code\",\"IV9xTT\":\"This user is not active, as they have not accepted their invitation.\",\"5AnPaO\":\"ticket\",\"kjAL4v\":\"Ticket\",\"KosivG\":\"Ticket deleted successfully\",\"dtGC3q\":\"Ticket email has been resent to attendee\",\"USk+Mn\":\"Ticket page message\",\"mRM6XH\":\"Ticket Sales\",\"NirIiz\":\"Ticket Tier\",\"8jLPgH\":\"Ticket Type\",\"jqWDf9\":\"Ticket widget background color\",\"UrMVAz\":\"Ticket Widget Preview\",\"ngtDy7\":\"Ticket widget text color\",\"N+YYpo\":\"Ticket(s)\",\"6GQNLE\":\"Tickets\",\"54q0zp\":\"Tickets for\",\"i+idBz\":\"Tickets sold\",\"AGRilS\":\"Tickets Sold\",\"56Qw2C\":\"Tickets sorted successfully\",\"4f8A8M\":\"Tickets to which the promo code applies (Applies to all by default)\",\"xN9AhL\":[\"Tier \",[\"0\"]],\"oYaHuq\":\"Tiered Ticket\",\"XZrhpz\":\"Tiered Ticket - Coming Soon\",\"4M150e\":\"Tiered tickets allow you to offer multiple price options for the same ticket.\\nThis is perfect for early bird tickets, or offering different price\\noptions for different groups of people.\",\"jQoYTX\":\"Tiered tickets allow you to offer multiple price options for the same ticket. This is perfect for early bird tickets or offering different price options for different groups of people.\",\"s/0RpH\":\"Times used\",\"40Gx0U\":\"Timezone\",\"oDGm7V\":\"TIP\",\"MHrjPM\":\"Title\",\"xdA/+p\":\"Tools\",\"72c5Qo\":\"Total\",\"BxsfMK\":\"Total Fees\",\"mpB/d9\":\"Total order amount\",\"m3FM1g\":\"Total refunded\",\"GBBIy+\":\"Total remaining\",\"/SgoNA\":\"Total Tax\",\"+zy2Nq\":\"Type\",\"mLGbAS\":[\"Unable to \",[\"0\"],\" attendee\"],\"/cSMqv\":\"Unable to create question. Please check the your details\",\"nNdxt9\":\"Unable to create ticket. Please check the your details\",\"MH/lj8\":\"Unable to update question. Please check the your details\",\"Mqy/Zy\":\"United States\",\"NIuIk1\":\"Unlimited\",\"oMcLhS\":\"Unlimited ticket quantity available\",\"E0q9qH\":\"Unlimited usages allowed\",\"ia8YsC\":\"Upcoming\",\"L/gNNk\":[\"Update \",[\"0\"]],\"+qqX74\":\"Update event name, description and dates\",\"vXPSuB\":\"Update profile\",\"gsehpV\":\"Upload an image to be displayed on the event page\",\"BNBfrU\":\"Upload Cover\",\"e5lF64\":\"Usage Example\",\"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 Settings0>\",\"vgwVkd\":\"UTC\",\"khBZkl\":\"VAT\",\"E/9LUk\":\"Venue Name\",\"AM+zF3\":\"View attendee\",\"e4mhwd\":\"View event homepage\",\"/5PEQz\":\"View event page\",\"fFornT\":\"View full message\",\"YIsEhQ\":\"View map\",\"Ep3VfY\":\"View on Google Maps\",\"AMkkeL\":\"View order\",\"Y8s4f6\":\"View order details\",\"tF+VVr\":\"VIP Ticket\",\"2q/Q7x\":\"Visibility\",\"vmOFL/\":\"We could not process your payment. Please try again or contact support.\",\"1E0vyy\":\"We couldn't load the data. Please try again.\",\"VGioT0\":\"We recommend dimensions of 2160px by 1080px, 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\"],\" 👋\"],\"wjqPqF\":\"What are Tiered Tickets?\",\"5iXvHA\":\"What is a Tiered Ticketing?\",\"MhhnvW\":\"What tickets does this code apply to? (Applies to all by default)\",\"dCil3h\":\"What tickets should this question be apply to?\",\"Rb0XUE\":\"What time will you be arriving?\",\"5N4wLD\":\"What type of question is this?\",\"S+OdxP\":\"Who is organizing this event?\",\"LINr2M\":\"Who is this message to?\",\"nWhye/\":\"Who should be asked this question?\",\"vVGiM4\":\"Who type of question is this?\",\"onLsWS\":\"Whoops! something went wrong. Please try again or contact support if the problem persists.\",\"AHXN2z\":\"Widget\",\"AU/8QR\":\"Widget Configuration\",\"VxFvXQ\":\"Widget Embed\",\"v1P7Gm\":\"Widget Settings\",\"b4itZn\":\"Working\",\"hqmXmc\":\"Working...\",\"l75CjT\":\"Yes\",\"QcwyCh\":\"Yes, remove them\",\"P+Sty0\":[\"You are changing your email to <0>\",[\"0\"],\"0>.\"],\"4ysd6z\":\"You can connecting using this Zoom link...\",\"9HGdDw\":\"You can create a promo code which targets this ticket on the\",\"KRhIxT\":\"You can now start receiving payments through Stripe.\",\"UqVaVO\":\"You cannot change the ticket type as there are attendees associated with this ticket.\",\"zQ8idk\":\"You cannot change the ticket type because there are already tickets sold for this ticket.\",\"3vRX5A\":\"You cannot delete this price tier because there are already tickets sold for this tier. You can hide it instead.\",\"RCC09s\":\"You cannot edit a default question\",\"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.\",\"XoeazJ\":\"You have no attendee questions. Attendee questions are asked once per attendee.\",\"CoZHDB\":\"You have no order questions.\",\"FZKDIe\":\"You have no order questions. Order questions are asked once per order.\",\"15qAvl\":\"You have no pending email change.\",\"n81Qk8\":\"You have not completed your Stripe Connect setup\",\"jxsiqJ\":\"You have not connected your Stripe account\",\"183zcL\":\"You have taxes and fees added to a Free Ticket. Would you like to remove or obscure them?\",\"2v5MI1\":\"You haven't sent any messages yet. You can send messages to all attendees, or to specific ticket 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\",\"LRguuL\":\"You must have at least one tier\",\"8/eLoa\":\"You need to verify your account before you can send messages.\",\"WHXRMI\":\"You'll need at least one ticket to get started. Free, paid or let the user decide what to pay.\",\"bdg03s\":\"Your account email in outgoing emails.\",\"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\"],\"0> is pending. Please check your email to confirm\"],\"yZfBoy\":\"Your message has been sent\",\"la26JS\":\"Your order is in progress\",\"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.\",\"cJ4Y4R\":\"Your refund is processing.\",\"IFHV2p\":\"Your ticket for\",\"3k7HDY\":\"Zip\",\"BM/KQm\":\"Zip or Postal Code\",\"VftCuk\":\"Zoom link, Google Meet link, etc.\",\"ySU+JY\":\"your@email.com\"}")};
\ No newline at end of file
+/*eslint-disable*/module.exports={messages:JSON.parse("{\"1bpx9A\":\"...\",\"f8qS7T\":\"'There\\\\'s nothing to show yet'\",\"4zldrf\":[[\"0\",\"plural\",{\"one\":[\"#\",\" hidden question\"],\"other\":[\"#\",\" hidden questions\"]}]],\"J/hVSQ\":[[\"0\"]],\"KMgp2+\":[[\"0\"],\" available\"],\"tmew5X\":[[\"0\"],\" checked in\"],\"Pmr5xp\":[[\"0\"],\" created successfully\"],\"FImCSc\":[[\"0\"],\" updated successfully\"],\"KOr9b4\":[[\"0\"],\"'s Events\"],\"qSiUsc\":[[\"0\"],[\"1\"]],\"wapGcj\":[[\"message\"]],\"fyE7Au\":[[\"minutes\"],\" minutes and \",[\"seconds\"],\" seconds\"],\"NlQ0cx\":[[\"organizerName\"],\"'s first event\"],\"OXku3b\":\"<0>https://0>your-website.com\",\"E15xs8\":\"⚡️ Set up your event\",\"FL6OwU\":\"✉️ Confirm your email address\",\"y1NShf\":\"🎉 Congratulation on creating an event!\",\"BN0OQd\":\"🎉 Congratulations on creating an event!\",\"fAv9QG\":\"🎟️ Add tickets\",\"4WT5tD\":\"🎨 Customize your event page\",\"3VPPdS\":\"💳 Connect with Stripe\",\"s4Tgn6\":\"📢 Promote your event\",\"cjdktw\":\"🚀 Set your event live\",\"rmelwV\":\"0 minutes and 0 seconds\",\"UQ7pBY\":\"0.50 for $0.50\",\"i1+xzD\":\"1.75 for 1.75%\",\"i0puaE\":\"10.00\",\"W9+fkZ\":\"10001\",\"qdfdgM\":\"123 Main Street\",\"IoRZzD\":\"20\",\"+H1RMb\":\"2024-01-01 10:00\",\"Q/T49U\":\"2024-01-01 18:00\",\"hMT8+2\":\"94103\",\"d9El7Q\":[\"A default \",[\"type\"],\" is automaticaly applied to all new tickets. You can override this on a per ticket basis.\"],\"SMUbbQ\":\"A Dropdown input allows only one selection\",\"qv4bfj\":\"A fee, like a booking fee or a service fee\",\"Pgaiuj\":\"A fixed amount per ticket. E.g, $0.50 per ticket\",\"f4vJgj\":\"A multi line text input\",\"ySO/4f\":\"A percentage of the ticket price. E.g., 3.5% of the ticket price\",\"WXeXGB\":\"A promo code with no discount can be used to reveal hidden tickets.\",\"GMhWB5\":\"A Radio option allows has multiple options but only one can be selected.\",\"CBt3s7\":\"A Radio Option allows only one selection\",\"AG/qmQ\":\"A Radio option has multiple options but only one can be selected.\",\"7g61G9\":\"A short description of Awesome Events Ltd.\",\"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\",\"zCk10D\":\"A single question per attendee. E.g, What is your preferred meal?\",\"ap3v36\":\"A single question per order. E.g, What is your company name?\",\"RlJmQg\":\"A standard tax, like VAT or GST\",\"pDwHGk\":\"About hi.events\",\"uIKNjo\":\"About the event\",\"bfXQ+N\":\"Accept Invitation\",\"iwyhk4\":\"Access to the VIP area...\",\"AeXO77\":\"Account\",\"0b79Xf\":\"Account Email\",\"lkNdiH\":\"Account Name\",\"Puv7+X\":\"Account Settings\",\"OmylXO\":\"Account updated successfully\",\"7L01XJ\":\"Actions\",\"FQBaXG\":\"Activate\",\"F6pfE9\":\"Active\",\"m16xKo\":\"Add\",\"LKNynS\":\"Add a cover image, description, and more to make your event stand out.\",\"gMK0ps\":\"Add event details and and manage event settings.\",\"Fb+SDI\":\"Add More tickets\",\"ApsD9J\":\"Add New\",\"TZxnm8\":\"Add Option\",\"Cw27zP\":\"Add question\",\"yWiPh+\":\"Add Tax or Fee\",\"BGD9Yt\":\"Add tickets\",\"goOKRY\":\"Add tier\",\"p59pEv\":\"Additional Details\",\"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.\",\"CPXP5Z\":\"Affiliates\",\"W7AfhC\":\"All attendees of this event\",\"QsYjci\":\"All Events\",\"/twVAS\":\"All Tickets\",\"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..\",\"8wYDMp\":\"Already have an account?\",\"ApOYO8\":\"Amazing, Event, Keywords...\",\"hehnjM\":\"Amount\",\"TRYjHa\":[\"amount in \",[\"0\"]],\"R2O9Rg\":[\"Amount paid (\",[\"0\"],\")\"],\"tLjOgo\":[\"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\",\"er3d/4\":\"An error occurred while sorting the tickets. Please try again or refresh the page\",\"hhvESd\":\"An event is the actual event you are hosting\",\"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.\",\"j4DliD\":\"Any queries from ticket 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\",\"DB8zMK\":\"Apply\",\"GctSSm\":\"Apply Promo Code\",\"jcnZEw\":[\"Apply this \",[\"type\"],\" to all new tickets\"],\"q7TRd7\":\"Are you sure you want to activate this attendee?\",\"/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\",\"2xEpch\":\"Ask once per attendee\",\"LBLOqH\":\"Ask once per order\",\"ss9PbX\":\"Attendee\",\"m0CFV2\":\"Attendee Details\",\"lXcSD2\":\"Attendee questions\",\"VvYqMB\":\"Attendee questions are asked once per attendee. By default, people are asked for their first name, last name, and email address.\",\"spxPEv\":\"Attendee questions are asked once per attendee. By default, we ask for the attendee's first name, last name, and email address.\",\"9SZT4E\":\"Attendees\",\"5UbY+B\":\"Attendees with a specific ticket\",\"IMJ6rh\":\"Auto Resize\",\"vZ5qKF\":\"Automatically resize the widget height based on the content. When disabled, the widget will fill the height of the container.\",\"lXkUEV\":\"Availability\",\"ioG+xt\":\"Awaiting Payment\",\"3PmQfI\":\"Awesome Event\",\"kNmmvE\":\"Awesome Events Ltd.\",\"Yrbm6T\":\"Awesome Organizer Ltd.\",\"9002sI\":\"Back to all events\",\"0TGkYM\":\"Back to event homepage\",\"A302fe\":\"Back to event page\",\"VCoEm+\":\"Back to login\",\"MLZyiY\":\"Background color\",\"k1bLf+\":\"Background Color\",\"I7xjqg\":\"Background Type\",\"EOUool\":\"Basic Details\",\"7EGQKA\":\"Because you are the account owner, you cannot change your role or status.\",\"1mwMl+\":\"Before you send!\",\"wVfiR2\":\"Before you're event can go live, there's a few thing to do.\",\"/yeZ20\":\"Before your event can go live, there are a few things you need to do.\",\"1xAcxY\":\"Begin selling tickets in minutes\",\"R+w/Va\":\"Billing\",\"Ptp9MF\":\"Button color\",\"whqocw\":\"By registering you agree to our <0>Terms of Service0> and <1>Privacy Policy1>.\",\"bcCn6r\":\"Calculation Type\",\"+8bmSu\":\"California\",\"iStTQt\":\"Camera permission was denied. <0>Request Permission0> again, or if this doesn't work, you will need to <1>grant this page1> access to your camera in your browser settings.\",\"Jzn1qy\":\"Can't load events\",\"dEgA5A\":\"Cancel\",\"Gjt/py\":\"Cancel email change\",\"tVJk4q\":\"Cancel order\",\"Os6n2a\":\"Cancel Order\",\"Mz7Ygx\":[\"Cancel Order \",[\"0\"]],\"Ud7zwq\":\"Canceling will cancel all tickets associated with this order, and release the tickets back into the available pool.\",\"vv7kpg\":\"Cancelled\",\"77/YgG\":\"Change Cover\",\"GptGxg\":\"Change password\",\"QndF4b\":\"check in\",\"xMDm+I\":\"Check In\",\"9FVFym\":\"check out\",\"gXcPxc\":\"Check-in\",\"Y3FYXy\":\"Check-In\",\"CNafaC\":\"Checkbox options allow multiple selections\",\"SpabVf\":\"Checkboxes\",\"CRu4lK\":\"Checked In\",\"/ydvvl\":\"Checkout Messaging\",\"1WnhCL\":\"Checkout Settings\",\"JjkX4+\":\"Choose a color for your background\",\"/Jizh9\":\"Choose an account\",\"jJGoVv\":\"Choose what notifications you want to receive\",\"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\",\"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\",\"DwF9eH\":\"Component Code\",\"7VpPHA\":\"Confirm\",\"ZaEJZM\":\"Confirm Email Change\",\"yjkELF\":\"Confirm New Password\",\"xnWESi\":\"Confirm password\",\"p2/GCq\":\"Confirm Password\",\"wnDgGj\":\"Confirming email address...\",\"DnLC08\":\"Congratulation on creating an event!\",\"pbAk7a\":\"Connect Stripe\",\"UMGQOh\":\"Connect with Stripe\",\"QKLP1W\":\"Connect your Stripe account to start receiving payments.\",\"5lcVkL\":\"Connection Details\",\"i3p844\":\"Contact email\",\"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\",\"RGVUUI\":\"Continue To Payment\",\"6V3Ea3\":\"Copied\",\"T5rdis\":\"copied to clipboard\",\"he3ygx\":\"Copy\",\"8+cOrS\":\"Copy details to all attendees\",\"ENCIQz\":\"Copy Link\",\"E6nRW7\":\"Copy URL\",\"JNCzPW\":\"Country\",\"IF7RiR\":\"Cover\",\"P0rbCt\":\"Cover Image\",\"hYgDIe\":\"Create\",\"b9XOHo\":[\"Create \",[\"0\"]],\"6kdXbW\":\"Create a Promo Code\",\"n5pRtF\":\"Create a Ticket\",\"X6sRve\":[\"Create an account or <0>\",[\"0\"],\"0> to get started\"],\"nx+rqg\":\"create an organizer\",\"ipP6Ue\":\"Create Attendee\",\"uN355O\":\"Create Event\",\"BOqY23\":\"Create new\",\"kpJAeS\":\"Create Organizer\",\"sYpiZP\":\"Create Promo Code\",\"a6YrKg\":\"Create promo codes\",\"n6H6AO\":\"Create promo codes to offer discounts to your attendees.\",\"B3Mkdt\":\"Create Question\",\"UKfi21\":\"Create Tax or Fee\",\"Tg323g\":\"Create Ticket\",\"agZ87r\":\"Create tickets for your event, set prices, and manage available quantity.\",\"d+F6q9\":\"Created\",\"Q2lUR2\":\"Currency\",\"DCKkhU\":\"Current Password\",\"uIElGP\":\"Custom Maps URL\",\"876pfE\":\"Customer\",\"QOg2Sf\":\"Customize the email and notification settings for this event\",\"Lu75d1\":\"Customize the email settings for this event\",\"RaxMyF\":\"Customize the event homepage and checkout experience\",\"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\",\"7p5kLi\":\"Dashboard\",\"mYGY3B\":\"Date\",\"JvUngl\":\"Date & Time\",\"RiXc4g\":\"Deactivate user\",\"cnGeoo\":\"Delete\",\"WHf154\":\"Delete code\",\"heJllm\":\"Delete Cover\",\"KWa0gi\":\"Delete Image\",\"IatsLx\":\"Delete question\",\"GnyEfA\":\"Delete ticket\",\"E33LRn\":\"Delete user\",\"Nu4oKW\":\"Description\",\"s9iD5d\":\"Description should be less than 50,000 characters\",\"URmyfc\":\"Details\",\"x8uDKb\":\"Disable code\",\"H6Ma8Z\":\"Discount\",\"ypJ62C\":\"Discount %\",\"3LtiBI\":[\"Discount in \",[\"0\"]],\"C8JLas\":\"Discount Type\",\"1QfxQT\":\"Dismiss\",\"cVq+ga\":\"Don't have an account? <0>Sign Up0>\",\"4+aC/x\":\"Donation / Pay what you'd like ticket\",\"++S5i/\":\"Donation amount\",\"OO7MG7\":\"Donation Ticket\",\"0pEVi2\":\"Download Tickets PDF\",\"uABpqP\":\"Drag and drop or click\",\"3z2ium\":\"Drag to sort\",\"6skwyH\":\"Drop an image, or click here to replace the Cover Image\",\"S37RRV\":\"Drop an image, or click here to upload the Cover Image\",\"CfKofC\":\"Dropdown selection\",\"vi8Q/5\":\"Duplicate event\",\"7Cx5It\":\"Early bird\",\"ePK91l\":\"Edit\",\"N6j2JH\":[\"Edit \",[\"0\"]],\"kNGp1D\":\"Edit attendee\",\"t2bbp8\":\"Edit Attendee\",\"iFgaVN\":\"Edit Code\",\"jrBSO1\":\"Edit Organizer\",\"9BdS63\":\"Edit Promo Code\",\"O0CE67\":\"Edit question\",\"EzwCw7\":\"Edit Question\",\"d+nnyk\":\"Edit Ticket\",\"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\",\"WiKda6\":\"Email Configuration\",\"APuxIE\":\"Email confirmation resent\",\"YaCgdO\":\"Email confirmation resent successfully\",\"jyt+cx\":\"Email footer message\",\"I6F3cp\":\"Email not verified\",\"G5zNMX\":\"Email Settings\",\"NTZ/NX\":\"Embed Code\",\"4rnJq4\":\"Embed Script\",\"VFv2ZC\":\"End Date\",\"237hSL\":\"Ended\",\"MhVoma\":\"Enter an amount excluding taxes and fees.\",\"3Z223G\":\"Error confirming email address\",\"a6gga1\":\"Error confirming email change\",\"5/63nR\":\"EUR\",\"0pC/y6\":\"Event\",\"nuoP/j\":\"Event created successfully\",\"CFLUfD\":\"Event created successfully 🎉\",\"0Zptey\":\"Event Defaults\",\"Xe3XMd\":\"Event is not visible to the public\",\"4pKXJS\":\"Event is visible to the public\",\"ClwUUD\":\"Event location & venue details\",\"OopDbA\":\"Event page\",\"JyD0LH\":\"Event Settings\",\"4/If97\":\"Event status update failed. Please try again later\",\"btxLWj\":\"Event status updated\",\"tst44n\":\"Events\",\"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.\",\"9zSt4h\":\"Failed to export attendees. Please try again.\",\"2uGNuE\":\"Failed to export orders. Please try again.\",\"ZQ15eN\":\"Failed to resend ticket email\",\"PLUB/s\":\"Fee\",\"YirHq7\":\"Feedback\",\"/mfICu\":\"Fees\",\"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.\",\"QWa3Sk\":\"First Name, Last Name, and Email Address are default questions that are always included in the checkout process.\",\"TpqW74\":\"Fixed\",\"irpUxR\":\"Fixed amount\",\"TF9opW\":\"Flash is not available on this device\",\"UNMVei\":\"Forgot password?\",\"2POOFK\":\"Free\",\"/4rQr+\":\"Free Ticket\",\"01my8x\":\"Free ticket, no payment information required\",\"ejVYRQ\":\"From\",\"u6FPxT\":\"Get Tickets\",\"4GLxhy\":\"Getting Started\",\"4D3rRj\":\"Go back to profile\",\"cQPKZt\":\"Go to Dashboard\",\"9LCqFI\":\"Go to event homepage\",\"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.\",\"Ow9Hz5\":[\"Hi.Events Conference \",[\"0\"]],\"verBst\":\"Hi.Events Conference Center\",\"6eMEQO\":\"hi.events logo\",\"C4qOW8\":\"Hidden from public view\",\"k3dfFD\":\"Hidden questions are only visible to the event organizer and not to the customer.\",\"EeNE0j\":\"Hidden will not be shown to customers.\",\"vLyv1R\":\"Hide\",\"Mkkvfd\":\"Hide getting started page\",\"mFn5Xz\":\"Hide hidden questions\",\"SCimta\":\"Hide the getting started page from the sidebar\",\"Da29Y6\":\"Hide this question\",\"fsi6fC\":\"Hide this ticket from customers\",\"fvDQhr\":\"Hide this tier from users\",\"Fhzoa8\":\"Hide ticket after sale end date\",\"yhm3J/\":\"Hide ticket before sale start date\",\"k7/oGT\":\"Hide ticket unless user has applicable promo code\",\"L0ZOiu\":\"Hide ticket when sold out\",\"uno73L\":\"Hiding a ticket will prevent users from seeing it on the event page.\",\"tj6Gob\":\"Homepage & Checkout\",\"m07jN3\":\"Homepage & Checkout Settings\",\"ZOBwQn\":\"Homepage Design\",\"PRuBTd\":\"Homepage Designer\",\"YjVNGZ\":\"Homepage Preview\",\"c3E/kw\":\"Homer\",\"id+NIk\":\"How many minutes the customer has to complete their order\",\"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?\",\"fYyXCd\":\"https://example-maps-service.com/...\",\"uOXLV3\":\"I agree to the <0>terms and conditions0>\",\"sIxFk5\":\"I agree to the terms and conditions\",\"Crwwhn\":[\"If a new tab did not open, please <0>\",[\"0\"],\".0>\"],\"93DUnd\":[\"If a new tab did not open, please <0><1>\",[\"0\"],\"1>.0>\"],\"9gtsTP\":\"If blank, the address will be used to generate a Google map link\",\"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\",\"Gyl1h8\":\"Image dimensions must be at least 600px by 300px\",\"TiGacZ\":\"Image dimensions must be at least 900px by 450px\",\"UnTvkH\":\"Image dimensions must be between 3000px by 2000px. With a max height of 2000px and max width of 3000px\",\"uPEIvq\":\"Image must be less than 5MB\",\"AGZmwV\":\"Image uploaded successfully\",\"ibi52/\":\"Image width must be at least 900px and height at least 50px\",\"NoNwIX\":\"Inactive\",\"T0K0yl\":\"Inactive users cannot log in.\",\"OFAmKP\":\"Include connection details for your online event\",\"BfPBBG\":\"Include connection details for your online event. These details will be after successful registration.\",\"6+pAOx\":\"Include connection details for your online event. These details will be shown after successful registration.\",\"evpD4c\":\"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\",\"nbfdhU\":\"Integrations\",\"OyLdaz\":\"Invitation resent!\",\"HE6KcK\":\"Invitation revoked!\",\"SQKPvQ\":\"Invite User\",\"PgdQrx\":\"Issue refund\",\"KFXip/\":\"John\",\"XcgRvb\":\"Johnson\",\"1IWWYX\":[\"KittenTech Conference \",[\"0\"]],\"ZgJEMX\":\"KittenTech Conference Center\",\"87a/t/\":\"Label\",\"I3yitW\":\"Last login\",\"1ZaQUH\":\"Last name\",\"UXBCwc\":\"Last Name\",\"CKcupn\":\"Latest Orders\",\"tITjB1\":\"Learn more about Stripe\",\"c+gAXc\":\"Let's get started by creating your first event\",\"vR92Yn\":\"Let's get started by creating your first organizer\",\"QfrKvi\":\"Link color\",\"wJijgU\":\"Location\",\"sQia9P\":\"Log in\",\"zUDyah\":\"Logging in\",\"z0t9bb\":\"Login\",\"nOhz3x\":\"Logout\",\"F2jAFv\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nam placerat elementum...\",\"XkhEf9\":\"Lorem ipsum...\",\"MU3ijv\":\"Make this question mandatory\",\"wckWOP\":\"Manage\",\"8mmINh\":\"Manage billing information and view invoices\",\"jWIznR\":\"Manage default settings for new events\",\"n4SpU5\":\"Manage event\",\"wqyqaF\":\"Manage general account settings\",\"cQrNR3\":\"Manage Profile\",\"f92Qak\":\"Manage taxes and fees which can be applied to tickets\",\"PlTcVr\":\"Manage taxes and fees which can be applied to your tickets\",\"ophZVW\":\"Manage tickets\",\"Wsx7Iu\":\"Manage users and their permissions\",\"DdHfeW\":\"Manage your account details and default settings\",\"QHcjP+\":\"Manage your billing and payment details\",\"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\",\"lzcrX3\":\"Manually adding an attendee will adjust ticket quantity.\",\"g9dPPQ\":\"Maximum Per Order\",\"l5OcwO\":\"Message attendee\",\"Gv5AMu\":\"Message Attendees\",\"1jRD0v\":\"Message attendees with specific tickets\",\"Lvi+gV\":\"Message buyer\",\"tNZzFb\":\"Message Content\",\"lYDV/s\":\"Message individual attendees\",\"V7DYWd\":\"Message Sent\",\"t7TeQU\":\"Messages\",\"xFRMlO\":\"Minimum Per Order\",\"QYcUEf\":\"Minimum Price\",\"mYLhkl\":\"Miscellaneous Settings\",\"KYveV8\":\"Multi line text box\",\"SVuGaP\":\"Multiple price options, users can choose which to pay\",\"6wbTro\":\"Multiple price options. Perfect for early bird tickets etc.\",\"/bhMdO\":\"My amazing event description...\",\"vX8/tc\":\"My amazing event title...\",\"hKtWk2\":\"My Profile\",\"pRjx4L\":\"Nam placerat elementum...\",\"6YtxFj\":\"Name\",\"hVuv90\":\"Name should be less than 150 characters\",\"AIUkyF\":\"Navigate to Attendee\",\"qqeAJM\":\"Never\",\"7vhWI8\":\"New Password\",\"m920rF\":\"New York\",\"1UzENP\":\"No\",\"Wjz5KP\":\"No Attendees to show\",\"fFeCKc\":\"No Discount\",\"Z6ILSe\":\"No events for this organizer\",\"yAlJXG\":\"No events to show\",\"KPWxKD\":\"No messages to show\",\"J2LkP8\":\"No orders to show\",\"+Y976X\":\"No Promo Codes to show\",\"Ev2r9A\":\"No results\",\"RHyZUL\":\"No search results.\",\"cU1op4\":\"No Taxes or Fees have been added yet.\",\"RY2eP1\":\"No Taxes or Fees have been added.\",\"uR2eFu\":\"No tickets available\",\"b7JZFg\":\"No tickets to show\",\"EdQY6l\":\"None\",\"OJx3wK\":\"Not available\",\"x5+Lcz\":\"Not Checked In\",\"Scbrsn\":\"Not On Sale\",\"hFwWnI\":\"Notification Settings\",\"xXqEPO\":\"Notify buyer of refund\",\"YpN29s\":\"Notify organizer of new orders\",\"qeQhNj\":\"Now let's create your first event\",\"2NPDz1\":\"On sale\",\"Ldu/RI\":\"On Sale\",\"Ug4SfW\":\"Once you create an event, you'll see it here.\",\"+P/tII\":\"Once you're ready, set your event live and start selling tickets.\",\"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.\",\"OdnLE4\":\"Open sidebar\",\"ZZEYpT\":[\"Option \",[\"i\"]],\"0zpgxV\":\"Options\",\"BzEFor\":\"or\",\"UYUgdb\":\"Order\",\"mm+eaX\":\"Order #\",\"B3gPuX\":\"Order Cancelled\",\"SIbded\":\"Order Completed\",\"q/CcwE\":\"Order Date\",\"Tol4BF\":\"Order Details\",\"L4kzeZ\":[\"Order Details \",[\"0\"]],\"WbImlQ\":\"Order has been canceled and the order owner has been notified.\",\"VCOi7U\":\"Order questions\",\"wg9MPp\":\"Order questions are asked once per order. By default, people are asked for their first name, last name, and email address.\",\"+KNVxX\":\"Order questions are asked once per order. By default, we ask for the first name, last name, and email address.\",\"TPoYsF\":\"Order Reference\",\"GX6dZv\":\"Order Summary\",\"tDTq0D\":\"Order timeout\",\"1h+RBg\":\"Orders\",\"mz+c33\":\"Orders Created\",\"G5RhpL\":\"Organizer\",\"m/ebSk\":\"Organizer Details\",\"mYygCM\":\"Organizer is required\",\"Pa6G7v\":\"Organizer Name\",\"J2cXxX\":\"Organizers can only manage events and tickets. 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\",\"2w/FiJ\":\"Paid Ticket\",\"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\",\"iq5IUr\":\"Pause Ticket\",\"621rYf\":\"Payment\",\"JhtZAK\":\"Payment Failed\",\"xgav5v\":\"Payment succeeded!\",\"CcK+Ft\":\"PDF\",\"att1Hj\":\"percent\",\"/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\",\"q40YFl\":\"Please continue your order in the new tab\",\"ZJG4Di\":\"Please ensure you only send emails directly related to the order. Promotional emails\\nshould not be sent using this form.\",\"o+HaYe\":\"Please enter a valid promo code\",\"HnNept\":\"Please enter your new password\",\"5FSIzj\":\"Please Note\",\"MA04r/\":\"Please remove filters and set sorting to \\\"Homepage order\\\" to enable sorting\",\"pJLvdS\":\"Please select\",\"yygcoG\":\"Please select at least one ticket\",\"igBrCH\":\"Please verify your email address to access all features\",\"qCJyMx\":\"Post Checkout message\",\"g2UNkE\":\"Powered by\",\"Qs7yI0\":\"Powered By\",\"lqAWKB\":\"Powered by <0>Hi.Events0> 👋\",\"3n47kV\":\"Powered By Hi.Events\",\"ddi4j4\":\"Powered by Stripe\",\"Rs7IQv\":\"Pre Checkout message\",\"rdUucN\":\"Preview\",\"a7u1N9\":\"Price\",\"CmoB9j\":\"Price display mode\",\"Q8PWaJ\":\"Price tiers\",\"a5jvSX\":\"Price Tiers\",\"6RmHKN\":\"Primary Color\",\"G/ZwV1\":\"Primary Colour\",\"8cBtvm\":\"Primary Text Color\",\"BZz12Q\":\"Print\",\"MT7dxz\":\"Print All Tickets\",\"vERlcd\":\"Profile\",\"kUlL8W\":\"Profile updated successfully\",\"cl5WYc\":[\"Promo \",[\"promo_code\"],\" code applied\"],\"ZXpm3a\":[\"Promo \",[\"promoCode\"],\" code applied\"],\"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.\",\"812gwg\":\"Purchase License\",\"LkMOWF\":\"Quantity Available\",\"XKJuAX\":\"Question deleted\",\"oQvMPn\":\"Question Title\",\"enzGAL\":\"Questions\",\"K885Eq\":\"Questions sorted successfully\",\"OMJ035\":\"Radio Option\",\"C4TjpG\":\"Read less\",\"I3QpvQ\":\"Recipient\",\"N2C89m\":\"Reference\",\"gxFu7d\":[\"Refund amount (\",[\"0\"],\")\"],\"n10yGu\":\"Refund order\",\"zPH6gp\":\"Refund Order\",\"/BI0y9\":\"Refunded\",\"fgLNSM\":\"Register\",\"tasfos\":\"remove\",\"t/YqKh\":\"Remove\",\"RloWNu\":\"Reply to email\",\"EGm34e\":\"Resend confirmation email\",\"lnrkNz\":\"Resend email confirmation\",\"wIa8Qe\":\"Resend invitation\",\"VeKsnD\":\"Resend order email\",\"dFuEhO\":\"Resend ticket email\",\"o6+Y6d\":\"Resending...\",\"RfwZxd\":\"Reset password\",\"KbS2K9\":\"Reset Password\",\"vtc20Z\":\"Return to event page\",\"8YBH95\":\"Revenue\",\"PO/sOY\":\"Revoke invitation\",\"GDvlUT\":\"Role\",\"ELa4O9\":\"Sale End Date\",\"5uo5eP\":\"Sale ended\",\"Qm5XkZ\":\"Sale Start Date\",\"hVF4dJ\":\"Sale starts\",\"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\",\"lBAlVv\":\"Seach by name, order #, attendee # or email...\",\"W4kWXJ\":\"Search by attendee name, email or order #...\",\"ulAuWO\":\"Search by event name or description...\",\"+pr/FY\":\"Search by event name...\",\"NQSiYb\":\"Search by name or description...\",\"3zRbWw\":\"Search by name, email, or order #...\",\"BiYOdA\":\"Search by name...\",\"B1bB1j\":\"Search by order #, name or email...\",\"jA4hXE\":\"Search by subject or body...\",\"YEjitp\":\"Search by subject or content...\",\"HYnGee\":\"Search by ticket name...\",\"YIix5Y\":\"Search...\",\"OeW+DS\":\"Secondary color\",\"DnXcDK\":\"Secondary Color\",\"cZF6em\":\"Secondary text color\",\"ZIgYeg\":\"Secondary Text Color\",\"QuNKRX\":\"Select Camera\",\"kWI/37\":\"Select organizer\",\"hAjDQy\":\"Select status\",\"QYARw/\":\"Select Ticket\",\"XH5juP\":\"Select Ticket Tier\",\"nuWxSr\":\"Select Tickets\",\"O/7I0o\":\"Select...\",\"JlFcis\":\"Send\",\"qKWv5N\":[\"Send a copy to <0>\",[\"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.\",\"471O/e\":\"Send confirmation email\",\"D7ZemV\":\"Send order confirmation and ticket email\",\"v1rRtW\":\"Send Test\",\"j1VfcT\":\"SEO Description\",\"/SIY6o\":\"SEO Keywords\",\"GfWoKv\":\"SEO Settings\",\"rXngLf\":\"SEO Title\",\"/jZOZa\":\"Service Fee\",\"vu4F0h\":\"Set a minimum price and let users donate more\",\"Bj/QGQ\":\"Set a minimum price and let users pay more if they choose\",\"nYNT+5\":\"Set up your event\",\"A8iqfq\":\"Set your event live\",\"Tz0i8g\":\"Settings\",\"Z8lGw6\":\"Share\",\"FFbYHm\":[\"Should this \",[\"type\"],\" be applied to all new tickets?\"],\"8vETh9\":\"Show\",\"smd87r\":\"Show available ticket quantity\",\"qDsmzu\":\"Show hidden questions\",\"fMPkxb\":\"Show more\",\"izwOOD\":\"Show tax and fees separately\",\"j3b+OW\":\"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.\",\"DvCwYF\":\"Sorry, this promo code is invalid'\",\"6a/UJE\":\"Sorry, this promo code is not recognized\",\"9rRZZ+\":\"Sorry, your order has expired. Please start a new order.\",\"a4SyEE\":\"Sorting is disabled while filters and sorting are applied\",\"4nG1lG\":\"Standard ticket with a fixed price\",\"D3iCkb\":\"Start Date\",\"RS0o7b\":\"State\",\"/2by1f\":\"State or Region\",\"uAQUqI\":\"Status\",\"UJmAAK\":\"Subject\",\"X2rrlw\":\"Subtotal\",\"b0HJ45\":[\"Success! \",[\"0\"],\" will receive an email shortly.\"],\"BJIEiF\":[\"Successfully \",[\"0\"],\" attendee\"],\"Ih8kN0\":[\"Successfully $\",[\"0\"],\" attendee\"],\"xHl17l\":[\"Successfully checked <0>\",[\"0\"],\" \",[\"1\"],\"0> \",[\"2\"]],\"OtgNFx\":\"Successfully confirmed email address\",\"IKwyaF\":\"Successfully confirmed email change\",\"zLmvhE\":\"Successfully created attendee\",\"9mZEgt\":\"Successfully Created Promo Code\",\"aIA9C4\":\"Successfully Created Question\",\"onFQYs\":\"Successfully Created Ticket\",\"Hgj/mB\":\"Successfully deleted ticket\",\"J3RJSZ\":\"Successfully updated attendee\",\"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\",\"70dYC8\":\"Successfully Updated Promo Code\",\"F+pJnL\":\"Successfully Updated Seo Settings\",\"g2lRrH\":\"Successfully updated ticket\",\"DXZRk5\":\"Suite 100\",\"GNcfRk\":\"Support Email\",\"JpohL9\":\"Tax\",\"geUFpZ\":\"Tax & Fees\",\"0RXCDo\":\"Tax or Fee deleted successfully\",\"ZowkxF\":\"Taxes\",\"EEZnW+\":\"Taxes & Fees\",\"qu6/03\":\"Taxes and Fees\",\"gVjSFp\":\"Taxes and Fees can be associated with tickets and will be added to the ticket price.\",\"e0ZSh4\":\"Text Colour\",\"gypigA\":\"That promo code is invalid\",\"0ozSQu\":\"The background color for the event homepage\",\"LbHWgW\":\"The background color for the ticket widget on the event homepage\",\"75Xclv\":\"The basic details of your event\",\"UNqHnV\":\"The color of the buttons on the event homepage\",\"0amhbL\":\"The color of the links on the event homepage\",\"QXlz+n\":\"The default currency for your events.\",\"mnafgQ\":\"The default timezone for your events.\",\"NlfnUd\":\"The link you clicked is invalid.\",\"FqjKfd\":\"The location of your event\",\"FeAfXO\":[\"The maximum numbers number of tickets for Generals is \",[\"0\"]],\"POEqXB\":\"The organizer details of your event\",\"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.\",\"TJZByZ\":\"The tax and fee to apply to this ticket. You can create new taxes and fees on the\",\"OJYwh9\":\"The taxes and fees to apply to this ticket. You can create new taxes and fees on the\",\"6BpBfZ\":\"The text color for the event homepage\",\"rljHp7\":\"The text color for the ticket widget on the event homepage\",\"s4di40\":\"The text to display in the 'Continue' button. Defaults to 'Continue'\",\"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\",\"wgAiDb\":\"The user must login to change their email.\",\"jvxN9/\":\"There are no tickets available for this event\",\"rMcHYt\":\"There is a refund pending. Please wait for it to complete before requesting another refund.\",\"hjLUr+\":\"There was an error loading this content. Please refresh the page and try again.\",\"68Axnm\":\"There was an error processing your request. Please try again.\",\"mVKOW6\":\"There was an error sending your message\",\"Um/adz\":\"These allow multiple selections\",\"vWeHWp\":\"These colors are not saved in our system.\",\"7qzHGS\":\"These colors are not saved in our system. They are only used to generate the widget.\",\"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.\",\"CNk/ro\":\"This is an online event\",\"GabtCa\":\"This is the email address that will be used as the reply-to address for all emails sent from this event\",\"CKkb5E\":\"This message is how below the\",\"cHO4ec\":\"This message will be included in the footer of all emails sent from this event\",\"RjwlZt\":\"This order has already been paid.\",\"axERYu\":\"This order has already been paid. <0>View order details0>\",\"wY+HO9\":\"This order has already been processed.\",\"5K8REg\":\"This order has already been refunded.\",\"OiQMhP\":\"This order has been cancelled\",\"YyEJij\":\"This order has been cancelled.\",\"D44cEI\":\"This order has been completed.\",\"HILpDX\":\"This order is awaiting payment\",\"0vRWbB\":\"This order is awaiting payment.\",\"BdYtn9\":\"This order is complete\",\"e3uMJH\":\"This order is complete.\",\"YNKXOK\":\"This order is processing.\",\"LIjb4v\":\"This order is processing. TODO - a nice image and poll the API\",\"yPZN4i\":\"This order page is no longer available.\",\"5189cf\":\"This overrides all visibility settings and will hide the ticket from all customers.\",\"4vwjho\":\"This page has expired. <0>View order details0>\",\"Qt7RBu\":\"This question is only visible to the event organizer\",\"os29v1\":\"This reset password link is invalid or expired.\",\"WJqBqd\":\"This ticket cannot be deleted because it is\\nassociated with an order. You can hide it instead.\",\"ma6qdu\":\"This ticket is hidden from public view\",\"xJ8nzj\":\"This ticket is hidden unless targeted by a Promo Code\",\"IV9xTT\":\"This user is not active, as they have not accepted their invitation.\",\"5AnPaO\":\"ticket\",\"kjAL4v\":\"Ticket\",\"KosivG\":\"Ticket deleted successfully\",\"dtGC3q\":\"Ticket email has been resent to attendee\",\"USk+Mn\":\"Ticket page message\",\"mRM6XH\":\"Ticket Sales\",\"NirIiz\":\"Ticket Tier\",\"8jLPgH\":\"Ticket Type\",\"jqWDf9\":\"Ticket widget background color\",\"UrMVAz\":\"Ticket Widget Preview\",\"ngtDy7\":\"Ticket widget text color\",\"N+YYpo\":\"Ticket(s)\",\"6GQNLE\":\"Tickets\",\"54q0zp\":\"Tickets for\",\"i+idBz\":\"Tickets sold\",\"AGRilS\":\"Tickets Sold\",\"56Qw2C\":\"Tickets sorted successfully\",\"4f8A8M\":\"Tickets to which the promo code applies (Applies to all by default)\",\"xN9AhL\":[\"Tier \",[\"0\"]],\"oYaHuq\":\"Tiered Ticket\",\"XZrhpz\":\"Tiered Ticket - Coming Soon\",\"4M150e\":\"Tiered tickets allow you to offer multiple price options for the same ticket.\\nThis is perfect for early bird tickets, or offering different price\\noptions for different groups of people.\",\"jQoYTX\":\"Tiered tickets allow you to offer multiple price options for the same ticket. This is perfect for early bird tickets or offering different price options for different groups of people.\",\"s/0RpH\":\"Times used\",\"40Gx0U\":\"Timezone\",\"oDGm7V\":\"TIP\",\"MHrjPM\":\"Title\",\"xdA/+p\":\"Tools\",\"72c5Qo\":\"Total\",\"BxsfMK\":\"Total Fees\",\"mpB/d9\":\"Total order amount\",\"m3FM1g\":\"Total refunded\",\"GBBIy+\":\"Total remaining\",\"/SgoNA\":\"Total Tax\",\"+zy2Nq\":\"Type\",\"mLGbAS\":[\"Unable to \",[\"0\"],\" attendee\"],\"/cSMqv\":\"Unable to create question. Please check the your details\",\"nNdxt9\":\"Unable to create ticket. Please check the your details\",\"MH/lj8\":\"Unable to update question. Please check the your details\",\"Mqy/Zy\":\"United States\",\"NIuIk1\":\"Unlimited\",\"oMcLhS\":\"Unlimited ticket quantity available\",\"E0q9qH\":\"Unlimited usages allowed\",\"ia8YsC\":\"Upcoming\",\"L/gNNk\":[\"Update \",[\"0\"]],\"+qqX74\":\"Update event name, description and dates\",\"vXPSuB\":\"Update profile\",\"gsehpV\":\"Upload an image to be displayed on the event page\",\"BNBfrU\":\"Upload Cover\",\"UtDm3q\":\"URL copied to clipboard\",\"e5lF64\":\"Usage Example\",\"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 Settings0>\",\"vgwVkd\":\"UTC\",\"khBZkl\":\"VAT\",\"E/9LUk\":\"Venue Name\",\"AM+zF3\":\"View attendee\",\"e4mhwd\":\"View event homepage\",\"/5PEQz\":\"View event page\",\"fFornT\":\"View full message\",\"YIsEhQ\":\"View map\",\"Ep3VfY\":\"View on Google Maps\",\"AMkkeL\":\"View order\",\"Y8s4f6\":\"View order details\",\"tF+VVr\":\"VIP Ticket\",\"2q/Q7x\":\"Visibility\",\"vmOFL/\":\"We could not process your payment. Please try again or contact support.\",\"1E0vyy\":\"We couldn't load the data. Please try again.\",\"VGioT0\":\"We recommend dimensions of 2160px by 1080px, 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\"],\" 👋\"],\"wjqPqF\":\"What are Tiered Tickets?\",\"5iXvHA\":\"What is a Tiered Ticketing?\",\"MhhnvW\":\"What tickets does this code apply to? (Applies to all by default)\",\"dCil3h\":\"What tickets should this question be apply to?\",\"Rb0XUE\":\"What time will you be arriving?\",\"5N4wLD\":\"What type of question is this?\",\"S+OdxP\":\"Who is organizing this event?\",\"LINr2M\":\"Who is this message to?\",\"nWhye/\":\"Who should be asked this question?\",\"vVGiM4\":\"Who type of question is this?\",\"onLsWS\":\"Whoops! something went wrong. Please try again or contact support if the problem persists.\",\"AHXN2z\":\"Widget\",\"AU/8QR\":\"Widget Configuration\",\"VxFvXQ\":\"Widget Embed\",\"v1P7Gm\":\"Widget Settings\",\"b4itZn\":\"Working\",\"hqmXmc\":\"Working...\",\"l75CjT\":\"Yes\",\"QcwyCh\":\"Yes, remove them\",\"P+Sty0\":[\"You are changing your email to <0>\",[\"0\"],\"0>.\"],\"4ysd6z\":\"You can connecting using this Zoom link...\",\"9HGdDw\":\"You can create a promo code which targets this ticket on the\",\"KRhIxT\":\"You can now start receiving payments through Stripe.\",\"UqVaVO\":\"You cannot change the ticket type as there are attendees associated with this ticket.\",\"zQ8idk\":\"You cannot change the ticket type because there are already tickets sold for this ticket.\",\"3vRX5A\":\"You cannot delete this price tier because there are already tickets sold for this tier. You can hide it instead.\",\"RCC09s\":\"You cannot edit a default question\",\"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.\",\"XoeazJ\":\"You have no attendee questions. Attendee questions are asked once per attendee.\",\"CoZHDB\":\"You have no order questions.\",\"FZKDIe\":\"You have no order questions. Order questions are asked once per order.\",\"15qAvl\":\"You have no pending email change.\",\"n81Qk8\":\"You have not completed your Stripe Connect setup\",\"jxsiqJ\":\"You have not connected your Stripe account\",\"183zcL\":\"You have taxes and fees added to a Free Ticket. Would you like to remove or obscure them?\",\"2v5MI1\":\"You haven't sent any messages yet. You can send messages to all attendees, or to specific ticket 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\",\"LRguuL\":\"You must have at least one tier\",\"8/eLoa\":\"You need to verify your account before you can send messages.\",\"WHXRMI\":\"You'll need at least one ticket to get started. Free, paid or let the user decide what to pay.\",\"bdg03s\":\"Your account email in outgoing emails.\",\"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\"],\"0> is pending. Please check your email to confirm\"],\"yZfBoy\":\"Your message has been sent\",\"la26JS\":\"Your order is in progress\",\"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.\",\"cJ4Y4R\":\"Your refund is processing.\",\"IFHV2p\":\"Your ticket for\",\"3k7HDY\":\"Zip\",\"BM/KQm\":\"Zip or Postal Code\",\"VftCuk\":\"Zoom link, Google Meet link, etc.\",\"ySU+JY\":\"your@email.com\"}")};
\ No newline at end of file
diff --git a/frontend/src/locales/es.po b/frontend/src/locales/es.po
index f451dfae..a3db2d78 100644
--- a/frontend/src/locales/es.po
+++ b/frontend/src/locales/es.po
@@ -22,8 +22,8 @@ msgid "'There\\'s nothing to show yet'"
msgstr ""
#: src/components/common/QuestionsTable/index.tsx:267
-msgid "{0, plural, one {# hidden question} other {# hidden questions}}"
-msgstr ""
+#~ msgid "{0, plural, one {# hidden question} other {# hidden questions}}"
+#~ msgstr ""
#: src/components/common/AttendeeTable/index.tsx:113
#~ msgid "{0}"
@@ -49,6 +49,10 @@ msgstr ""
msgid "{0}'s Events"
msgstr ""
+#: src/components/common/QuestionsTable/index.tsx:267
+msgid "{0}{1}"
+msgstr ""
+
#: src/components/modals/RefundOrderModal/index.tsx:121
msgid "{message}"
msgstr ""
@@ -347,7 +351,7 @@ msgstr ""
msgid "All Events"
msgstr ""
-#: src/components/common/PromoCodeTable/index.tsx:128
+#: src/components/common/PromoCodeTable/index.tsx:130
msgid "All Tickets"
msgstr ""
@@ -429,7 +433,7 @@ msgstr ""
msgid "Appearance"
msgstr ""
-#: src/components/routes/ticket-widget/SelectTickets/index.tsx:359
+#: src/components/routes/ticket-widget/SelectTickets/index.tsx:357
msgid "applied"
msgstr ""
@@ -437,7 +441,7 @@ msgstr ""
#~ msgid "Apply"
#~ msgstr ""
-#: src/components/routes/ticket-widget/SelectTickets/index.tsx:386
+#: src/components/routes/ticket-widget/SelectTickets/index.tsx:385
msgid "Apply Promo Code"
msgstr ""
@@ -453,7 +457,7 @@ msgstr ""
msgid "Are you sure you want to cancel this attendee? This will void their ticket"
msgstr ""
-#: src/components/common/PromoCodeTable/index.tsx:34
+#: src/components/common/PromoCodeTable/index.tsx:36
msgid "Are you sure you want to delete this promo code?"
msgstr ""
@@ -485,8 +489,8 @@ msgstr ""
msgid "Attendee Details"
msgstr ""
-#: src/components/common/QuestionsTable/index.tsx:306
-#: src/components/common/QuestionsTable/index.tsx:347
+#: src/components/common/QuestionsTable/index.tsx:309
+#: src/components/common/QuestionsTable/index.tsx:350
msgid "Attendee questions"
msgstr ""
@@ -621,7 +625,7 @@ msgstr ""
#~ msgstr ""
#: src/components/common/AttendeeTable/index.tsx:211
-#: src/components/common/PromoCodeTable/index.tsx:37
+#: src/components/common/PromoCodeTable/index.tsx:39
#: src/utilites/confirmationDialog.tsx:11
msgid "Cancel"
msgstr ""
@@ -728,7 +732,7 @@ msgstr ""
msgid "click here"
msgstr ""
-#: src/components/common/PromoCodeTable/index.tsx:95
+#: src/components/common/PromoCodeTable/index.tsx:97
msgid "Click to copy"
msgstr ""
@@ -741,7 +745,7 @@ msgstr ""
msgid "Close sidebar"
msgstr ""
-#: src/components/common/PromoCodeTable/index.tsx:66
+#: src/components/common/PromoCodeTable/index.tsx:68
#: src/components/forms/PromoCodeForm/index.tsx:33
msgid "Code"
msgstr ""
@@ -883,7 +887,7 @@ msgstr ""
msgid "Copied"
msgstr ""
-#: src/components/common/PromoCodeTable/index.tsx:103
+#: src/components/common/PromoCodeTable/index.tsx:105
msgid "copied to clipboard"
msgstr ""
@@ -899,7 +903,7 @@ msgstr ""
msgid "Copy Link"
msgstr ""
-#: src/components/common/PromoCodeTable/index.tsx:172
+#: src/components/common/PromoCodeTable/index.tsx:176
msgid "Copy URL"
msgstr ""
@@ -924,7 +928,7 @@ msgstr ""
msgid "Create {0}"
msgstr ""
-#: src/components/common/PromoCodeTable/index.tsx:54
+#: src/components/common/PromoCodeTable/index.tsx:56
msgid "Create a Promo Code"
msgstr ""
@@ -1051,7 +1055,7 @@ msgstr ""
#: src/components/common/AttendeeTable/index.tsx:205
#: src/components/common/OrdersTable/index.tsx:131
-#: src/components/common/PromoCodeTable/index.tsx:176
+#: src/components/common/PromoCodeTable/index.tsx:180
#: src/components/common/QuestionsTable/index.tsx:113
#: src/components/common/TicketsTable/SortableTicket/index.tsx:193
msgid "Danger zone"
@@ -1073,12 +1077,12 @@ msgstr ""
#~ msgid "Deactivate user"
#~ msgstr ""
-#: src/components/common/PromoCodeTable/index.tsx:37
+#: src/components/common/PromoCodeTable/index.tsx:39
#: src/components/common/TaxAndFeeList/index.tsx:73
msgid "Delete"
msgstr ""
-#: src/components/common/PromoCodeTable/index.tsx:180
+#: src/components/common/PromoCodeTable/index.tsx:184
msgid "Delete code"
msgstr ""
@@ -1121,7 +1125,7 @@ msgstr ""
#~ msgid "Disable code"
#~ msgstr ""
-#: src/components/common/PromoCodeTable/index.tsx:67
+#: src/components/common/PromoCodeTable/index.tsx:69
msgid "Discount"
msgstr ""
@@ -1145,13 +1149,17 @@ msgstr ""
msgid "Don't have an account? <0>Sign Up0>"
msgstr ""
+#: src/components/forms/TicketForm/index.tsx:139
+msgid "Donation / Pay what you'd like ticket"
+msgstr ""
+
#: src/components/routes/ticket-widget/SelectTickets/Prices/Tiered/index.tsx:59
#~ msgid "Donation amount"
#~ msgstr ""
#: src/components/forms/TicketForm/index.tsx:139
-msgid "Donation Ticket"
-msgstr ""
+#~ msgid "Donation Ticket"
+#~ msgstr ""
#: src/components/routes/ticket-widget/OrderSummaryAndTickets/index.tsx:91
#~ msgid "Download Tickets PDF"
@@ -1202,7 +1210,7 @@ msgstr ""
msgid "Edit Attendee"
msgstr ""
-#: src/components/common/PromoCodeTable/index.tsx:167
+#: src/components/common/PromoCodeTable/index.tsx:169
msgid "Edit Code"
msgstr ""
@@ -1398,7 +1406,7 @@ msgstr ""
msgid "Events"
msgstr ""
-#: src/components/common/PromoCodeTable/index.tsx:70
+#: src/components/common/PromoCodeTable/index.tsx:72
msgid "Expires"
msgstr ""
@@ -1476,7 +1484,7 @@ msgstr ""
msgid "First name must be between 1 and 50 characters"
msgstr ""
-#: src/components/common/QuestionsTable/index.tsx:327
+#: src/components/common/QuestionsTable/index.tsx:330
msgid "First Name, Last Name, and Email Address are default questions and are always included in the checkout process."
msgstr ""
@@ -1555,7 +1563,7 @@ msgstr ""
msgid "Guests"
msgstr ""
-#: src/components/routes/ticket-widget/SelectTickets/index.tsx:354
+#: src/components/routes/ticket-widget/SelectTickets/index.tsx:352
msgid "Have a promo code?"
msgstr ""
@@ -1605,7 +1613,7 @@ msgstr ""
msgid "Hide getting started page"
msgstr ""
-#: src/components/common/QuestionsTable/index.tsx:273
+#: src/components/common/QuestionsTable/index.tsx:276
msgid "Hide hidden questions"
msgstr ""
@@ -1891,7 +1899,7 @@ msgstr ""
#: src/components/common/EventCard/index.tsx:78
#: src/components/common/OrdersTable/index.tsx:94
#: src/components/common/OrdersTable/index.tsx:109
-#: src/components/common/PromoCodeTable/index.tsx:164
+#: src/components/common/PromoCodeTable/index.tsx:166
#: src/components/common/TicketsTable/SortableTicket/index.tsx:171
#: src/components/layouts/Event/index.tsx:38
msgid "Manage"
@@ -2064,7 +2072,7 @@ msgstr ""
msgid "Navigate to Attendee"
msgstr ""
-#: src/components/common/PromoCodeTable/index.tsx:155
+#: src/components/common/PromoCodeTable/index.tsx:157
#: src/components/routes/account/ManageAccount/sections/Users/index.tsx:101
msgid "Never"
msgstr ""
@@ -2108,7 +2116,7 @@ msgstr ""
msgid "No orders to show"
msgstr ""
-#: src/components/common/PromoCodeTable/index.tsx:43
+#: src/components/common/PromoCodeTable/index.tsx:45
msgid "No Promo Codes to show"
msgstr ""
@@ -2136,7 +2144,7 @@ msgstr ""
msgid "No tickets to show"
msgstr ""
-#: src/components/common/PromoCodeTable/index.tsx:79
+#: src/components/common/PromoCodeTable/index.tsx:81
msgid "None"
msgstr ""
@@ -2255,8 +2263,8 @@ msgstr ""
msgid "Order has been canceled and the order owner has been notified."
msgstr ""
-#: src/components/common/QuestionsTable/index.tsx:291
-#: src/components/common/QuestionsTable/index.tsx:333
+#: src/components/common/QuestionsTable/index.tsx:294
+#: src/components/common/QuestionsTable/index.tsx:336
msgid "Order questions"
msgstr ""
@@ -2511,7 +2519,7 @@ msgstr ""
msgid "Pre Checkout message"
msgstr ""
-#: src/components/common/QuestionsTable/index.tsx:325
+#: src/components/common/QuestionsTable/index.tsx:328
msgid "Preview"
msgstr ""
@@ -2579,7 +2587,7 @@ msgstr ""
msgid "Promo Codes"
msgstr ""
-#: src/components/common/PromoCodeTable/index.tsx:48
+#: src/components/common/PromoCodeTable/index.tsx:50
msgid "Promo codes can be used to offer discounts, presale access, or provide special access to your event."
msgstr ""
@@ -2647,11 +2655,11 @@ msgstr ""
msgid "Register"
msgstr ""
-#: src/components/routes/ticket-widget/SelectTickets/index.tsx:363
+#: src/components/routes/ticket-widget/SelectTickets/index.tsx:361
msgid "remove"
msgstr ""
-#: src/components/routes/ticket-widget/SelectTickets/index.tsx:364
+#: src/components/routes/ticket-widget/SelectTickets/index.tsx:362
msgid "Remove"
msgstr ""
@@ -2911,7 +2919,11 @@ msgid "Service Fee"
msgstr ""
#: src/components/forms/TicketForm/index.tsx:141
-msgid "Set a minimum price and let users donate more"
+#~ msgid "Set a minimum price and let users donate more"
+#~ msgstr ""
+
+#: src/components/forms/TicketForm/index.tsx:141
+msgid "Set a minimum price and let users pay more if they choose"
msgstr ""
#: src/components/routes/event/GettingStarted/index.tsx:86
@@ -2943,7 +2955,7 @@ msgstr ""
msgid "Show available ticket quantity"
msgstr ""
-#: src/components/common/QuestionsTable/index.tsx:273
+#: src/components/common/QuestionsTable/index.tsx:276
msgid "Show hidden questions"
msgstr ""
@@ -3512,11 +3524,11 @@ msgstr ""
#~ msgid "Ticket widget text color"
#~ msgstr ""
-#: src/components/common/PromoCodeTable/index.tsx:145
+#: src/components/common/PromoCodeTable/index.tsx:147
msgid "Ticket(s)"
msgstr ""
-#: src/components/common/PromoCodeTable/index.tsx:69
+#: src/components/common/PromoCodeTable/index.tsx:71
#: src/components/layouts/Event/index.tsx:41
#: src/components/layouts/EventHomepage/index.tsx:80
#: src/components/routes/event/tickets.tsx:37
@@ -3566,7 +3578,7 @@ msgstr ""
#~ msgid "Tiered tickets allow you to offer multiple price options for the same ticket. This is perfect for early bird tickets or offering different price options for different groups of people."
#~ msgstr ""
-#: src/components/common/PromoCodeTable/index.tsx:68
+#: src/components/common/PromoCodeTable/index.tsx:70
msgid "Times used"
msgstr ""
@@ -3652,7 +3664,7 @@ msgstr ""
#~ msgid "Unlimited ticket quantity available"
#~ msgstr ""
-#: src/components/common/PromoCodeTable/index.tsx:123
+#: src/components/common/PromoCodeTable/index.tsx:125
msgid "Unlimited usages allowed"
msgstr ""
@@ -3680,6 +3692,10 @@ msgstr ""
msgid "Upload Cover"
msgstr ""
+#: src/components/common/PromoCodeTable/index.tsx:174
+msgid "URL copied to clipboard"
+msgstr ""
+
#: src/components/common/WidgetEditor/index.tsx:295
msgid "Usage Example"
msgstr ""
@@ -3946,7 +3962,7 @@ msgstr ""
msgid "You have connected your Stripe account"
msgstr ""
-#: src/components/common/QuestionsTable/index.tsx:316
+#: src/components/common/QuestionsTable/index.tsx:319
msgid "You have no attendee questions."
msgstr ""
@@ -3954,7 +3970,7 @@ msgstr ""
#~ msgid "You have no attendee questions. Attendee questions are asked once per attendee."
#~ msgstr ""
-#: src/components/common/QuestionsTable/index.tsx:301
+#: src/components/common/QuestionsTable/index.tsx:304
msgid "You have no order questions."
msgstr ""
diff --git a/frontend/src/locales/fr.js b/frontend/src/locales/fr.js
index 742a1ff8..33329616 100644
--- a/frontend/src/locales/fr.js
+++ b/frontend/src/locales/fr.js
@@ -1 +1 @@
-/*eslint-disable*/module.exports={messages:JSON.parse("{\"1bpx9A\":\"...\",\"f8qS7T\":\"Il n'y a rien à afficher pour l'instant\",\"4zldrf\":[[\"0\",\"pluriel\",\"un {# hidden question\"],\" autre {# hidden questions}}\"],\"J/hVSQ\":[[\"0\"]],\"KMgp2+\":[[\"0\"],\" available\"],\"tmew5X\":[[\"0\"],\" s'est enregistré\"],\"Pmr5xp\":[[\"0\"],\" créé avec succès\"],\"FImCSc\":[[\"0\"],\" mis à jour avec succès\"],\"KOr9b4\":[\"Les événements de \",[\"0\"]],\"wapGcj\":[[\"message\"]],\"fyE7Au\":[[\"minutes\"],\" minutes et \",[\"seconds\"],\" secondes\"],\"NlQ0cx\":[\"Premier événement de \",[\"organizerName\"]],\"OXku3b\":\"<0>https://0>votre-siteweb.com\",\"E15xs8\":\"⚡️ Organisez votre événement\",\"FL6OwU\":\"✉️ Confirmez votre adresse email\",\"y1NShf\":\"🎉 Félicitations pour la création d'un événement!\",\"BN0OQd\":\"🎉 Félicitations pour la création d'un événement!\",\"fAv9QG\":\"🎟️ Ajouter des billets\",\"4WT5tD\":\"🎨 Personnalisez votre page d'événement\",\"3VPPdS\":\"💳 Connectez-vous avec Stripe\",\"s4Tgn6\":\"📢 Faites la promotion de votre événement\",\"cjdktw\":\"🚀 Organisez votre événement en direct\",\"rmelwV\":\"0 minute et 0 seconde\",\"UQ7pBY\":\"0.50 for $0.50\",\"i1+xzD\":\"1,75 pour 1,75%\",\"i0puaE\":\"10.00\",\"W9+fkZ\":\"10001\",\"qdfdgM\":\"123, rue Principale\",\"IoRZzD\":\"20\",\"+H1RMb\":\"01-01-2024 10:00\",\"Q/T49U\":\"01-01-204 18:00\",\"hMT8+2\":\"94103\",\"d9El7Q\":[\"Un \",[\"type\"],\" par défaut est automatiquement appliqué à tous les nouveaux tickets. Vous pouvez modifier cette valeur pour chaque ticket.\"],\"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\",\"Pgaiuj\":\"Un montant fixe par billet. Par exemple, 0,50 $ par billet\",\"f4vJgj\":\"Une saisie de texte sur plusieurs lignes\",\"ySO/4f\":\"Un pourcentage du prix du billet. Par exemple, 3,5 % du prix du billet\",\"WXeXGB\":\"Un code promo sans réduction peut être utilisé pour révéler des billets cachés.\",\"GMhWB5\":\"A Radio option allows has multiple options but only one can be selected.\",\"CBt3s7\":\"Une option radio permet d'avoir plusieurs options mais une seule peut être sélectionnée.\",\"AG/qmQ\":\"A Radio option has multiple options but only one can be selected.\",\"7g61G9\":\"Une brève description de l'Événements exceptionnels SARL.\",\"h179TP\":\"Une courte description de l'événement qui sera affichée dans les résultats des moteurs de recherche et lors du partage sur les médias sociaux. Par défaut, la description de l'événement sera utilisée\",\"WKMnh4\":\"Une saisie de texte sur une seule ligne\",\"zCk10D\":\"Une seule question par participant. Par exemple, quel est votre repas préféré ?\",\"ap3v36\":\"Une seule question par commande. Par exemple, quel est le nom de votre entreprise ?\",\"RlJmQg\":\"A standard tax, like VAT or GST\",\"pDwHGk\":\"À propos de hi.events\",\"uIKNjo\":\"À propos de l'événement\",\"bfXQ+N\":\"Accepter l'invitation\",\"iwyhk4\":\"Accès à l'espace VIP...\",\"AeXO77\":\"Compte\",\"0b79Xf\":\"E-mail du compte\",\"lkNdiH\":\"Nom du compte\",\"Puv7+X\":\"Paramètres du compte\",\"OmylXO\":\"Compte mis à jour avec succès\",\"7L01XJ\":\"Actions\",\"FQBaXG\":\"Activer\",\"F6pfE9\":\"Actif\",\"m16xKo\":\"Ajouter\",\"LKNynS\":\"Ajoutez une image de couverture, une description et bien plus encore pour faire ressortir votre événement\",\"gMK0ps\":\"Ajouter des détails sur l'événement et gérer les paramètres de l'événement\",\"Fb+SDI\":\"Ajouter plus de billets\",\"ApsD9J\":\"Ajouter nouveau\",\"TZxnm8\":\"Ajouter une option\",\"Cw27zP\":\"Ajouter question\",\"yWiPh+\":\"Ajouter une taxe ou des frais\",\"BGD9Yt\":\"Ajouter des billets\",\"goOKRY\":\"Ajouter un niveau\",\"p59pEv\":\"Détails supplémentaires\",\"Y8DIQy\":\"Options supplémentaires\",\"Du6bPw\":\"Adresse\",\"NY/x1b\":\"Adresse ligne 1\",\"POdIrN\":\"Address Ligne 1\",\"cormHa\":\"Address ligne 2\",\"gwk5gg\":\"Address Ligne 2\",\"U3pytU\":\"Administrateur\",\"HLDaLi\":\"Les utilisateurs administrateurs ont un accès complet aux événements et aux paramètres du compte.\",\"CPXP5Z\":\"Affilié(e)s\",\"W7AfhC\":\"Tous les participants à cet événement\",\"QsYjci\":\"Tous les évènements\",\"/twVAS\":\"Tous les billets\",\"ipYKgM\":\"Permettre l'indexation par les moteurs de recherche\",\"LRbt6D\":\"Permettre l'indexation par les moteurs de recherche\",\"+MHcJD\":\"Nous y sommes presque ! Nous attendons que votre paiement soit traité. Cela ne devrait prendre que quelques secondes..\",\"8wYDMp\":\"Acez-vous déjà un compte ?\",\"ApOYO8\":\"Incroyable, Événement, Mots-clés...\",\"hehnjM\":\"Montant\",\"TRYjHa\":[\"montant en \",[\"0\"]],\"R2O9Rg\":[\"Montant payé (\",[\"0\"],\")\"],\"tLjOgo\":[\"Montant payé $\",[\"0\"]],\"V7MwOy\":\"An error occurred while loading the page\",\"Q7UCEH\":\"Une erreur s'est produite lors du tri des questions. Veuillez réessayer ou actualiser la page\",\"er3d/4\":\"Une erreur s'est produite lors du tri des billets. Veuillez réessayer ou actualiser la page\",\"hhvESd\":\"Un événement est l'événement réel que vous organisez\",\"jD/OCQ\":\"Un événement est l'événement que vous organisez. Vous pouvez ajouter d'autres détails ultérieurement.\",\"oBkF+i\":\"L'organisateur est l'entreprise ou la personne qui accueille l'événement.\",\"W5A0Ly\":\"Une erreur inattendue s'est produite.\",\"byKna+\":\"Une erreur inattendue s'est produite. Veuillez réessayer.\",\"j4DliD\":\"Toutes les questions des détenteurs de billets seront envoyées à cette adresse électronique. Cette adresse sera également utilisée comme adresse de réponse pour tous les courriels envoyés dans le cadre de cet événement.\",\"aAIQg2\":\"Apparence\",\"Ym1gnK\":\"appliquée\",\"DB8zMK\":\"Appliquer\",\"GctSSm\":\"Appliquer le code promo\",\"jcnZEw\":[\"Appliquer ce \",[\"type\"],\" à tous les nouveaux tickets\"],\"q7TRd7\":\"Êtes-vous sûr de vouloir activer ce participant?\",\"/CV2x+\":\"Êtes-vous sûr de vouloir annuler ce participant ? Cela annulera son billet.\",\"YgRSEE\":\"Etes-vous sûr de vouloir supprimer ce code promo ?\",\"iU234U\":\"Êtes-vous sûr de vouloir supprimer cette question ?\",\"CMyVEK\":\"Êtes-vous sûr de vouloir créer un brouillon pour cet événement ? Cela rendra l'événement invisible au public\",\"mEHQ8I\":\"Êtes-vous sûr de vouloir rendre cet événement public ? Ceci rendra l'événement visible au public\",\"2xEpch\":\"Demander une fois par participant\",\"LBLOqH\":\"Demander une fois par commande\",\"ss9PbX\":\"Participant\",\"m0CFV2\":\"Détails sur les participants\",\"lXcSD2\":\"Questions des participants\",\"VvYqMB\":\"Les questions des participants sont posées une fois par participant. Par défaut, les participants sont invités à indiquer leur prénom, leur nom de famille et leur adresse électronique.\",\"spxPEv\":\"Les questions des participants sont posées une fois par participant. Par défaut, nous demandons le prénom, le nom et l'adresse électronique du participant.\",\"9SZT4E\":\"Participants\",\"5UbY+B\":\"Participants ayant un billet spécifique\",\"IMJ6rh\":\"Redimensionnement automatique\",\"vZ5qKF\":\"Redimensionne automatiquement la hauteur du widget en fonction du contenu. Lorsqu'il est désactivé, le widget remplit la hauteur du conteneur.\",\"lXkUEV\":\"Disponibilité\",\"ioG+xt\":\"En attente du paiement\",\"3PmQfI\":\"Un événement grandiose\",\"kNmmvE\":\"Événements génial SARL.\",\"Yrbm6T\":\"Super organisation SARL.\",\"9002sI\":\"Retour à tous les événements\",\"0TGkYM\":\"Retour à la page d'accueil de l'événement\",\"A302fe\":\"Retour à la page de l'événement\",\"VCoEm+\":\"Retour à la connexion\",\"MLZyiY\":\"Couleur de l'arrière-plan\",\"k1bLf+\":\"Couleur de l'arrière-plan\",\"I7xjqg\":\"Type d'arrière-plan\",\"EOUool\":\"Détails de base\",\"7EGQKA\":\"Comme vous êtes le propriétaire du compte, vous ne pouvez pas modifier votre rôle ou votre statut.\",\"1mwMl+\":\"Avant d'envoyer !\",\"wVfiR2\":\"Avant que votre événement ne soit mis en ligne, il y a plusieurs choses à faire.\",\"/yeZ20\":\"Avant que votre événement ne soit mis en ligne, vous devez procéder à quelques vérifications.\",\"1xAcxY\":\"Commencer à vendre des billets en quelques minutes\",\"R+w/Va\":\"Facturation\",\"Ptp9MF\":\"Couleur du bouton\",\"whqocw\":\"En vous inscrivant, vous acceptez nos <0>Conditions de service0> et <1>Politique de confidentialité1>.\",\"bcCn6r\":\"Type de calcul\",\"+8bmSu\":\"Californie\",\"iStTQt\":\"L'autorisation de la caméra a été refusée. <0>Demander l'autorisation0> à nouveau, ou si cela ne fonctionne pas, vous devrez <1>accorder à cette page1> l'accès à votre caméra dans les paramètres de votre navigateur.\",\"Jzn1qy\":\"Impossible de charger les événements\",\"dEgA5A\":\"Annuler\",\"Gjt/py\":\"Annuler le changement d'adresse électronique\",\"tVJk4q\":\"Annuler la commande\",\"Os6n2a\":\"Annuler la commande\",\"Mz7Ygx\":[\"Annuler la commande \",[\"0\"]],\"Ud7zwq\":\"Annuler annule tous les billets associés à cette commande et les remet dans le pool des billets disponibles.\",\"vv7kpg\":\"Annulé\",\"77/YgG\":\"Changer de couverture\",\"GptGxg\":\"Modifier le mot de passe\",\"QndF4b\":\"enregistrement\",\"xMDm+I\":\"Enregistrement\",\"9FVFym\":\"vérifier\",\"gXcPxc\":\"Check-in\",\"Y3FYXy\":\"Vérifier\",\"CNafaC\":\"Checkbox options allow multiple selections\",\"SpabVf\":\"Cases à cocher\",\"CRu4lK\":\"Enregistré\",\"/ydvvl\":\"Messagerie de paiement\",\"1WnhCL\":\"Paramètres de paiement\",\"JjkX4+\":\"Choisissez une couleur pour l'arrière plan.\",\"/Jizh9\":\"Choisissez un compte\",\"jJGoVv\":\"Choisissez les notifications que vous souhaitez recevoir\",\"3wV73y\":\"Ville\",\"FG98gC\":\"Effacer le texte de recherche\",\"EYeuMv\":\"cliquez ici\",\"sby+1/\":\"cliquer pour copier\",\"yz7wBu\":\"Fermer\",\"62Ciis\":\"Fermer la barre latérale\",\"EWPtMO\":\"Code\",\"ercTDX\":\"Le code doit comporter entre 3 et 50 caractères\",\"jZlrte\":\"Couleur\",\"Vd+LC3\":\"La couleur doit être un code hexadécimal valide. Exemple: #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\":\"Commande complète\",\"guBeyC\":\"Paiement complet\",\"C8HNV2\":\"Paiement complet\",\"qqWcBV\":\"Complété\",\"DwF9eH\":\"Code du composant\",\"7VpPHA\":\"Confirmer\",\"ZaEJZM\":\"Confirmer le changement d'adresse électronique\",\"yjkELF\":\"Confirmation du nouveau mot de passe\",\"xnWESi\":\"Confirmer le mot de passe\",\"p2/GCq\":\"Confirmer le mot de passe\",\"wnDgGj\":\"Confirmation de l'adresse e-mail...\",\"DnLC08\":\"Félicitations pour avoir créé un événement!\",\"pbAk7a\":\"Connexion à Stripe\",\"UMGQOh\":\"Se connecter avec Stripe\",\"QKLP1W\":\"Connectez votre compte Stripe pour commencer à recevoir des paiements\",\"5lcVkL\":\"Détails de la connexion\",\"i3p844\":\"Contact e-mail\",\"yAej59\":\"Couleur d'arrière plan du contenu\",\"xGVfLh\":\"Continue\",\"X++RMT\":\"Texte du bouton Continuer\",\"AfNRFG\":\"Texte du bouton Continuer\",\"lIbwvN\":\"Continuer la configuration de l'événement\",\"HB22j9\":\"Poursuivre l'installation\",\"bZEa4H\":\"Continuer la configuration de Stripe Connect\",\"RGVUUI\":\"Continuer vers le paiement\",\"6V3Ea3\":\"Copié\",\"T5rdis\":\"copié dans le presse-papiers\",\"he3ygx\":\"Copier\",\"8+cOrS\":\"Copier les détails à tous les participants\",\"ENCIQz\":\"Copier le lien\",\"E6nRW7\":\"Copier l'URL\",\"JNCzPW\":\"Pays\",\"IF7RiR\":\"Couverture\",\"P0rbCt\":\"Image de couverture\",\"hYgDIe\":\"Créer\",\"b9XOHo\":[\"Créer \",[\"0\"]],\"6kdXbW\":\"Créer un code promo\",\"n5pRtF\":\"Créer un billet\",\"X6sRve\":[\"Créez un compte ou <0>\",[\"0\"],\"0> pour commencer\"],\"nx+rqg\":\"créer un organisateur\",\"ipP6Ue\":\"Création d'un participant\",\"uN355O\":\"créer un événement\",\"BOqY23\":\"Créer un nouveau\",\"kpJAeS\":\"Création d'un organisateur\",\"sYpiZP\":\"Créer un code promotionnel\",\"a6YrKg\":\"Créer des codes promotionnels\",\"n6H6AO\":\"Créez des codes promotionnels pour offrir des réductions à vos participants.\",\"B3Mkdt\":\"Créer une question\",\"UKfi21\":\"Créer une taxe ou des frais\",\"Tg323g\":\"Créer un billet\",\"agZ87r\":\"Créez des billets pour votre événement, fixez des prix et gérez les quantités disponibles.\",\"d+F6q9\":\"Créé\",\"Q2lUR2\":\"Devise\",\"DCKkhU\":\"Mot de passe actuel\",\"uIElGP\":\"URL des cartes personnalisées\",\"876pfE\":\"Client(e)\",\"QOg2Sf\":\"Personnaliser les paramètres de l'e-mail et de notification pour cet événement\",\"Lu75d1\":\"Personnaliser les paramètres de l'e-mail pour cet événement\",\"RaxMyF\":\"Personnalisez la page d'accueil de l'événement et l'expérience de paiement\",\"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\":\"Personnalisez la page de votre événement pour qu'elle corresponde à votre marque et à votre style.\",\"Zz6Cxn\":\"Zone dangereuse\",\"7p5kLi\":\"Tableau de bord\",\"mYGY3B\":\"Date\",\"JvUngl\":\"Date et heure\",\"RiXc4g\":\"Désactiver l'utilisateur\",\"cnGeoo\":\"Supprimer\",\"WHf154\":\"Supprimer le code\",\"heJllm\":\"Supprimer la couverture\",\"KWa0gi\":\"Supprimerl'image\",\"IatsLx\":\"Supprimere la question\",\"GnyEfA\":\"Supprimer le billet\",\"E33LRn\":\"Supprimer l'utilisateur\",\"Nu4oKW\":\"Description\",\"s9iD5d\":\"La description doit comporter moins de 50 000 caractères\",\"URmyfc\":\"Détails\",\"x8uDKb\":\"Désactiver le code\",\"H6Ma8Z\":\"Discount\",\"ypJ62C\":\"Discount %\",\"3LtiBI\":[\"Discount in \",[\"0\"]],\"C8JLas\":\"Discount Type\",\"1QfxQT\":\"Rejeter\",\"cVq+ga\":\"Vous n'avez pas de compte? <0>S'inscrire0>\",\"++S5i/\":\"Montant du don\",\"OO7MG7\":\"Billet de donation\",\"0pEVi2\":\"Télécharger les billets en PDF\",\"uABpqP\":\"Glisser-déposer ou cliquer\",\"3z2ium\":\"Faire glisser pour trier\",\"6skwyH\":\"Déposez une image ou cliquez ici pour remplacer l'image de couverture.\",\"S37RRV\":\"Déposez une image ou cliquez ici pour télécharger l'image de couverture.\",\"CfKofC\":\"Sélection déroulante\",\"vi8Q/5\":\"Événement en double\",\"7Cx5It\":\"Early bird\",\"ePK91l\":\"Éditer\",\"N6j2JH\":[\"Modifier \",[\"0\"]],\"kNGp1D\":\"Modifier un participant\",\"t2bbp8\":\"Modifier un participant\",\"iFgaVN\":\"Modifier un code\",\"jrBSO1\":\"Modifier un organisateur\",\"9BdS63\":\"Modifier un code promo\",\"O0CE67\":\"Modifier une question\",\"EzwCw7\":\"Modifier une question\",\"d+nnyk\":\"Modifier un billet\",\"poTr35\":\"Modifier un utilisateur\",\"GTOcxw\":\"Modifier un utilisateur\",\"pqFrv2\":\"par exemple. 2,50 pour 2,50$\",\"3yiej1\":\"par exemple. 23,5 pour 23,5%\",\"O3oNi5\":\"E-mail\",\"VxYKoK\":\"Paramètres d'e-mail et de notification\",\"ATGYL1\":\"Adresse e-mail\",\"hzKQCy\":\"Adresse e-mail\",\"HqP6Qf\":\"Le changement d'e-mail a été annulé avec succès\",\"mISwW1\":\"Changement d'e-mail en attente\",\"WiKda6\":\"Configuration de l'e-mail\",\"APuxIE\":\"E-mail de confirmation renvoyé\",\"YaCgdO\":\"Confirmation par e-mail envoyée avec succès\",\"jyt+cx\":\"Message de pied de page de l'e-mail\",\"I6F3cp\":\"Email non vérifié\",\"G5zNMX\":\"Paramètres de l'e-mail\",\"NTZ/NX\":\"Code d'intégration\",\"4rnJq4\":\"Script d'intégration\",\"VFv2ZC\":\"Date de fin\",\"237hSL\":\"Terminé\",\"MhVoma\":\"Entrez un montant hors taxes et hors frais.\",\"3Z223G\":\"Erreur de confirmation de l'adresse e-mail\",\"a6gga1\":\"Erreur de confirmation du changement d'email\",\"5/63nR\":\"EURO\",\"0pC/y6\":\"Événement\",\"nuoP/j\":\"Événement créé avec succès\",\"CFLUfD\":\"Événement créé avec succès 🎉\",\"0Zptey\":\"Valeurs par défaut des événements\",\"Xe3XMd\":\"L'événement n'est pas visible par le public\",\"4pKXJS\":\"L'événement est visible par le public\",\"ClwUUD\":\"Lieu de l'événement et détails du lieu\",\"OopDbA\":\"Page de l'événement\",\"JyD0LH\":\"Paramètres de l'événemen\",\"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\",\"tst44n\":\"Evénements\",\"KnN1Tu\":\"Échéance\",\"uaSvqt\":\"Date d'échéance\",\"GS+Mus\":\"Exporter\",\"9xAp/j\":\"Échec de l'annulation du participant\",\"ZpieFv\":\"Échec de l'annulation de la commande\",\"z6tdjE\":\"Échec de la suppression du message. Veuillez réessayer.\",\"9zSt4h\":\"Échec de l'exportation des participants. Veuillez réessayer.\",\"2uGNuE\":\"Échec de l'exportation des commandes. Veuillez réessayer.\",\"ZQ15eN\":\"Échec du renvoi de l'e-mail du ticket\",\"PLUB/s\":\"Frais\",\"YirHq7\":\"Retour d'expérience\",\"/mfICu\":\"Frais\",\"V1EGGU\":\"Prénom\",\"kODvZJ\":\"Prénom\",\"S+tm06\":\"Le prénom doit comporter entre 1 et 50 caractères\",\"1g0dC4\":\"Le prénom, le nom de famille et l'e-mail sont des questions par défaut et sont toujours inclus dans le processus de paiement.\",\"QWa3Sk\":\"Le prénom, le nom de famille et l'e-mail sont des questions par défaut qui sont toujours incluses dans le processus de paiement.\",\"TpqW74\":\"Fixé\",\"irpUxR\":\"Montant fixé\",\"TF9opW\":\"Le flash n'est pas disponible sur cet appareil\",\"UNMVei\":\"Mot de passe oublié?\",\"2POOFK\":\"Gratuit\",\"/4rQr+\":\"Billet gratuit\",\"01my8x\":\"Billet gratuit, aucune information sur le paiement n'est requise\",\"ejVYRQ\":\"De\",\"u6FPxT\":\"Procurez-vous des billets\",\"4GLxhy\":\"Démarrage\",\"4D3rRj\":\"Retour au profil\",\"cQPKZt\":\"Aller sur le tableau de bord\",\"9LCqFI\":\"Aller à la page d'accueil de l'événement\",\"IgcAGN\":\"Chiffre d'affaires\",\"yRg26W\":\"Chiffre d'affaires\",\"R4r4XO\":\"Invités\",\"26pGvx\":\"Avez vous un code de réduction?\",\"V7yhws\":\"hello@awesome-events.com\",\"6K/IHl\":\"Voici un exemple de la façon dont vous pouvez utiliser le composant dans votre application.\",\"Y1SSqh\":\"Voici le composant React que vous pouvez utiliser pour intégrer le widget dans votre application.\",\"Ow9Hz5\":[\"Conférence de Hi.Events \",[\"0\"]],\"verBst\":\"Centre de conférence Hi.Events\",\"6eMEQO\":\"logo hi.events\",\"C4qOW8\":\"Maquer de la vue du public\",\"k3dfFD\":\"Les questions masquées ne sont visibles que par l'organisateur de l'événement et non par le client.\",\"EeNE0j\":\"La partie masquée ne sera pas montrée aux clients.\",\"vLyv1R\":\"Masquer\",\"Mkkvfd\":\"Masquer la page de démarrage\",\"mFn5Xz\":\"Masquer les questions cachées\",\"SCimta\":\"Masquer la page de démarrage de la barre latérale\",\"Da29Y6\":\"Masquer cette question\",\"fsi6fC\":\"Masquer ce ticket aux clients\",\"fvDQhr\":\"Masquer ce niveau aux utilisateurs\",\"Fhzoa8\":\"Masquer le billet après la date de fin de vente\",\"yhm3J/\":\"Masquer le billet avant la date de début de la vente\",\"k7/oGT\":\"Masquer le billet sauf si l'utilisateur dispose du code promotionnel applicable\",\"L0ZOiu\":\"Masquer le billet lorsqu'il est épuisé\",\"uno73L\":\"Masquer un ticket empêchera les utilisateurs de le voir sur la page de l’événement.\",\"tj6Gob\":\"Page d'accueil et paiement\",\"m07jN3\":\"Paramètres de la page d'accueil et du paiement\",\"ZOBwQn\":\"Conception de la page d'accueil\",\"PRuBTd\":\"Conception de la page d'accueil\",\"YjVNGZ\":\"Aperçu de la page d'accueil\",\"c3E/kw\":\"Homer\",\"id+NIk\":\"Combien de minutes le client a-t-il pour terminer sa commande ?\",\"8k8Njd\":\"Le nombre de minutes dont dispose le client pour terminer sa commande. Nous recommandons un minimum de 15 minutes\",\"ySxKZe\":\"Combien de fois ce code peut-il être utilisé ?\",\"fYyXCd\":\"https://example-maps-service.com/...\",\"uOXLV3\":\"J'accepte les <0>termes et conditions0>\",\"sIxFk5\":\"J'accepte les termes et conditions\",\"Crwwhn\":[\"Si aucun nouvel onglet ne s'ouvre, veuillez <0>\",[\"0\"],\".0>\"],\"93DUnd\":[\"Si un nouvel onglet ne s'est pas ouvert, veuillez <0><1>\",[\"0\"],\"1>.0>\"],\"9gtsTP\":\"Si vide, l'adresse sera utilisée pour générer un lien Google map\",\"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 modifier immédiatement votre mot de passe.\",\"n/ZDCz\":\"Image supprimée avec succès\",\"Gyl1h8\":\"Les dimensions de l'image doivent être d'au moins 600 px sur 300 px.\",\"TiGacZ\":\"Les dimensions de l'image doivent être d'au moins 900 px sur 450 px.\",\"UnTvkH\":\"Les dimensions de l'image doivent être comprises entre 3 000 et 2 000 px. Avec une hauteur maximale de 2 000 px et une largeur maximale de 3 000 px\",\"uPEIvq\":\"L'image doit faire moins de 5 Mo\",\"AGZmwV\":\"Image téléchargée avec succès\",\"ibi52/\":\"La largeur de l'image doit être d'au moins 900 px et la hauteur d'au moins 50 px.\",\"NoNwIX\":\"Inactif\",\"T0K0yl\":\"Les utilisateurs inactifs ne peuvent pas se connecter.\",\"OFAmKP\":\"Incluez les détails de connexion pour votre événement en ligne\",\"BfPBBG\":\"Incluez les détails de connexion pour votre événement en ligne. Ces détails seront obtenus après une inscription réussie.\",\"6+pAOx\":\"Incluez les détails de connexion pour votre événement en ligne. Ces détails seront affichés après une inscription réussie\",\"evpD4c\":\"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 la page des billets des participants.\",\"FlQKnG\":\"Inclure les taxes et les frais dans le prix\",\"nbfdhU\":\"Intégrations\",\"OyLdaz\":\"Invitation renvoyée !\",\"HE6KcK\":\"Invitation révoquée !\",\"SQKPvQ\":\"Inviter un utilisateur\",\"PgdQrx\":\"Issue refund\",\"KFXip/\":\"John\",\"XcgRvb\":\"Johnson\",\"1IWWYX\":[\"Conférence KittenTech \",[\"0\"]],\"ZgJEMX\":\"Centre de conférence KittenTech\",\"87a/t/\":\"Étiquette\",\"I3yitW\":\"Dernière connexion\",\"1ZaQUH\":\"Nom de famille\",\"UXBCwc\":\"Nom de famille\",\"CKcupn\":\"Dernières commandes\",\"tITjB1\":\"En savoir plus sur Stripe\",\"c+gAXc\":\"Commençons par la création de votre premier événement\",\"vR92Yn\":\"Commençons par créer votre premier organisateur\",\"QfrKvi\":\"Couleur du lien\",\"wJijgU\":\"Localisation\",\"sQia9P\":\"Se connecter\",\"zUDyah\":\"Connexion\",\"z0t9bb\":\"Connexion\",\"nOhz3x\":\"Déconnexion\",\"F2jAFv\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nam placerat elementum...\",\"XkhEf9\":\"Lorem ipsum...\",\"MU3ijv\":\"Rendre cette question obligatoire\",\"wckWOP\":\"Gérer\",\"8mmINh\":\"Gérer les informations de facturation et consulter les factures\",\"jWIznR\":\"Gérer les paramètres par défaut des nouveaux événements\",\"n4SpU5\":\"Gérer l'événement\",\"wqyqaF\":\"Gérer les paramètres généraux du compte\",\"cQrNR3\":\"Gérer le profil\",\"f92Qak\":\"Gérer les taxes et les frais qui peuvent être appliqués aux billets\",\"PlTcVr\":\"Gérer les taxes et les frais qui peuvent être appliqués à vos billets\",\"ophZVW\":\"Gérer les tickets\",\"Wsx7Iu\":\"Gérer les utilisateurs et leurs autorisations\",\"DdHfeW\":\"Gérer les détails de votre compte et les paramètres par défaut\",\"QHcjP+\":\"Gérer vos données de facturation et de paiement\",\"S+UjNL\":\"Gérer vos données de paiement Stripe\",\"BfucwY\":\"Gérer les utilisateurs et leurs autorisations\",\"1m+YT2\":\"Le client doit répondre aux questions obligatoires avant de pouvoir passer à la caisse.\",\"Dim4LO\":\"Ajouter manuellement un participant\",\"e4KdjJ\":\"Ajouter manuellement un participant\",\"lzcrX3\":\"L'ajout manuel d'un participant ajustera la quantité de billets.\",\"g9dPPQ\":\"Maximum par commande\",\"l5OcwO\":\"Message au participant\",\"Gv5AMu\":\"Message aux participants\",\"1jRD0v\":\"Envoyer un message aux participants avec des billets spécifiques\",\"Lvi+gV\":\"Message de 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\",\"mYLhkl\":\"Paramètres divers\",\"KYveV8\":\"Zone de texte multi-ligne\",\"SVuGaP\":\"Plusieurs options de prix, les utilisateurs peuvent choisir lequel payer\",\"6wbTro\":\"Plusieurs options de prix. Parfait pour les billets à tarif préférentiel, etc.\",\"/bhMdO\":\"Mon incroyable description de l'événement...\",\"vX8/tc\":\"Mon titre d'événement extraordinaire...\",\"hKtWk2\":\"Mon profil\",\"pRjx4L\":\"Nam placerat elementum...\",\"6YtxFj\":\"Nom\",\"hVuv90\":\"Le nom doit comporter moins de 150 caractères\",\"AIUkyF\":\"Naviguer vers le participant\",\"qqeAJM\":\"Jamais\",\"7vhWI8\":\"Nouveau mot de passe\",\"m920rF\":\"New York\",\"1UzENP\":\"Non\",\"Wjz5KP\":\"Pas de participants à montrer\",\"fFeCKc\":\"Pas de réduction\",\"Z6ILSe\":\"Aucun événement pour cet organisateur\",\"yAlJXG\":\"No events to show\",\"KPWxKD\":\"Aucun événement à afficher\",\"J2LkP8\":\"Aucune commande à afficher\",\"+Y976X\":\"Aucun code promo à afficher\",\"Ev2r9A\":\"Aucun résultat\",\"RHyZUL\":\"Pas de résultats de recherche.\",\"cU1op4\":\"Aucun frais ou taxe n'a encore été ajouté.\",\"RY2eP1\":\"Aucune taxe ou frais n'a été ajouté.\",\"uR2eFu\":\"Pas de billets disponibles\",\"b7JZFg\":\"Pas de billets à montrer\",\"EdQY6l\":\"Aucun\",\"OJx3wK\":\"Non disponible\",\"x5+Lcz\":\"Pas d'enregistrement\",\"Scbrsn\":\"Pas en vente\",\"hFwWnI\":\"Paramètres de notification\",\"xXqEPO\":\"Notification du remboursement à l'acheteur\",\"YpN29s\":\"Informer l'organisateur des nouvelles commandes\",\"qeQhNj\":\"Créons maintenant notre premier événement\",\"2NPDz1\":\"En vente\",\"Ldu/RI\":\"En vente\",\"Ug4SfW\":\"Une fois l'événement créé, vous le verrez ici.\",\"+P/tII\":\"Une fois que vous êtes prêt, mettez votre événement en ligne et commencez à vendre des billets.\",\"J6n7sl\":\"En cours\",\"z+nuVJ\":\"Événement en ligne\",\"WKHW0N\":\"Détails de l'événement en ligne\",\"/xkmKX\":\"Only important emails, which are directly related to this event, should be sent using this form.\\nAny misuse, including sending promotional emails, will lead to an immediate account ban.\",\"OdnLE4\":\"Ouvrir la barre latérale\",\"ZZEYpT\":[\"Option \",[\"i\"]],\"0zpgxV\":\"Options\",\"BzEFor\":\"ou\",\"UYUgdb\":\"Commande\",\"mm+eaX\":\"Commande \",\"B3gPuX\":\"Commande annulée\",\"SIbded\":\"Commande terminée\",\"q/CcwE\":\"Date de la commande\",\"Tol4BF\":\"Détails de la commande\",\"L4kzeZ\":[\"Détails de la commande \",[\"0\"]],\"WbImlQ\":\"La commande a été annulée et le propriétaire de la commande a été informé.\",\"VCOi7U\":\"Questions relatives à la commande\",\"wg9MPp\":\"Les questions relatives aux commandes sont posées une fois par commande. Par défaut, les personnes sont invitées à indiquer leur prénom, leur nom de famille et leur e-mail.\",\"+KNVxX\":\"Les questions relatives aux commandes sont posées une fois par commande. Par défaut, nous demandons le prénom, le nom et l'e-mail.\",\"TPoYsF\":\"Référence de la commande\",\"GX6dZv\":\"Résumé de la commande\",\"tDTq0D\":\"Délai d'expiration de la commande\",\"1h+RBg\":\"Commandes\",\"mz+c33\":\"Commandes créées\",\"G5RhpL\":\"Organisateur\",\"m/ebSk\":\"Détails de l'organisateur\",\"mYygCM\":\"L'organisateur est requis\",\"Pa6G7v\":\"Nom de l'organisateur\",\"J2cXxX\":\"Les organisateurs ne peuvent gérer que les événements et les billets. Ils ne peuvent pas gérer les utilisateurs, les paramètres du compte ou les informations de facturation.\",\"fdjq4c\":\"Padding\",\"ErggF8\":\"Couleur d'arrière plan de la page\",\"8F1i42\":\"Page not found\",\"QbrUIo\":\"Pages vues\",\"6D8ePg\":\"page\",\"IkGIz8\":\"payé\",\"2w/FiJ\":\"Billet payé\",\"8ZsakT\":\"Mot de passe\",\"TUJAyx\":\"Password must be a minimum of 8 characters\",\"vwGkYB\":\"Le mot de passe doit comporter au moins 8 caractères\",\"BLTZ42\":\"Réinitialisation du mot de passe réussie. Veuillez vous connecter avec votre nouveau mot de passe.\",\"f7SUun\":\"Les mots de passe sont différents\",\"aEDp5C\":\"Collez-le à l'endroit où vous souhaitez que le widget apparaisse.\",\"+23bI/\":\"Patrick\",\"iAS9f2\":\"patrick@acme.com\",\"iq5IUr\":\"Mettre le billet en pause\",\"621rYf\":\"Paiement\",\"JhtZAK\":\"Échec du paiement\",\"xgav5v\":\"Paiement réussi!\",\"CcK+Ft\":\"PDF\",\"att1Hj\":\"percent\",\"/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 e-mail est valide\",\"Ajavq0\":\"Veuillez vérifier votre courriel pour confirmer votre adresse électronique\",\"MdfrBE\":\"Veuillez compléter le formulaire ci-dessous pour accepter votre invitation\",\"b1Jvg+\":\"Veuillez poursuivre dans le nouvel onglet\",\"q40YFl\":\"Veuillez poursuivre votre commande dans un nouvel onglet\",\"ZJG4Di\":\"Please ensure you only send emails directly related to the order. Promotional emails\\nshould not be sent using this form.\",\"o+HaYe\":\"Veuillez saisir un code promo valide\",\"HnNept\":\"Please enter your new password\",\"5FSIzj\":\"Veuillez noter\",\"MA04r/\":\"Veuillez supprimer les filtres et régler le tri sur \\\"Homepage order\\\" pour activer le tri.\",\"pJLvdS\":\"Veuillez sélectionner\",\"yygcoG\":\"Veuillez sélectionner au moins un billet\",\"igBrCH\":\"Veuillez vérifier votre adresse électronique pour accéder à toutes les fonctionnalités\",\"qCJyMx\":\"Message après le paiement\",\"g2UNkE\":\"Propulsé par\",\"Qs7yI0\":\"Propulsé par\",\"lqAWKB\":\"Propulsé par <0>Hi.Events0> 👋\",\"3n47kV\":\"Propulsé par Hi.Events\",\"ddi4j4\":\"Propulsé par Stripe\",\"Rs7IQv\":\"Message de précommande\",\"rdUucN\":\"Prévisualisation\",\"a7u1N9\":\"Prix\",\"CmoB9j\":\"Mode d'affichage des prix\",\"Q8PWaJ\":\"Paliers de prix\",\"a5jvSX\":\"Paliers de prix\",\"6RmHKN\":\"Couleur principale\",\"G/ZwV1\":\"Couleur principale\",\"8cBtvm\":\"Couleur principale du texte\",\"BZz12Q\":\"Imprimer\",\"MT7dxz\":\"Imprimer tous les billets\",\"vERlcd\":\"Profil\",\"kUlL8W\":\"Profil mis à jour avec succès\",\"cl5WYc\":[\"Code promo \",[\"promo_code\"],\" appliqué\"],\"ZXpm3a\":[\"Code promo \",[\"promoCode\"],\" appliqué\"],\"yKWfjC\":\"Page des codes promotionnels\",\"RVb8Fo\":\"Codes promotionnels\",\"BZ9GWa\":\"Les codes promotionnels peuvent être utilisés pour offrir des réductions, des préventes ou un accès spécial à votre événement.\",\"812gwg\":\"Acheter une licence\",\"LkMOWF\":\"Quantité disponible\",\"XKJuAX\":\"Question supprimée\",\"oQvMPn\":\"Titre de la question\",\"enzGAL\":\"Questions\",\"K885Eq\":\"Questions triées avec succès\",\"OMJ035\":\"Radio Option\",\"C4TjpG\":\"Lire moins\",\"I3QpvQ\":\"Destinataire\",\"N2C89m\":\"Référence\",\"gxFu7d\":[\"Montant du remboursement (\",[\"0\"],\")\"],\"n10yGu\":\"Ordre de remboursement\",\"zPH6gp\":\"Ordre de remboursement\",\"/BI0y9\":\"Remboursé\",\"fgLNSM\":\"Registre\",\"tasfos\":\"supprimer\",\"t/YqKh\":\"Supprimer\",\"RloWNu\":\"Répondre à l'e-mail\",\"EGm34e\":\"Renvoyer l'e-mail de confirmation\",\"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...\",\"RfwZxd\":\"Réinitialiser le mot de passe\",\"KbS2K9\":\"Reset Password\",\"vtc20Z\":\"Retour à la page de l'événement\",\"8YBH95\":\"Revenus\",\"PO/sOY\":\"Annuler l'invitation\",\"GDvlUT\":\"Rôle\",\"ELa4O9\":\"Date de clôture de la vente\",\"5uo5eP\":\"Vente terminée\",\"Qm5XkZ\":\"Date de démarrage de la vente\",\"hVF4dJ\":\"Début des soldes\",\"hBsw5C\":\"Ventes terminées\",\"kpAzPe\":\"Démarrage des ventes\",\"P/wEOX\":\"San Francisco\",\"tfDRzk\":\"Enregistrer\",\"IUwGEM\":\"Enregistrer les modifications\",\"U65fiW\":\"Sauvegarder l'organisateur\",\"UGT5vp\":\"Save Settings\",\"ovB7m2\":\"Enregistrer les paramètres\",\"lBAlVv\":\"Recherche par nom, numéro de commande, numéro de participant ou e-mail...\",\"W4kWXJ\":\"Recherche par nom de participant, e-mail ou numéro de commande #...\",\"ulAuWO\":\"Recherche par nom d'événement ou par description...\",\"+pr/FY\":\"Recherche par nom d'événement...\",\"NQSiYb\":\"Recherche par nom ou par description...\",\"3zRbWw\":\"Recherche par nom, e-mail ou numéro de commande #...\",\"BiYOdA\":\"Recherche par nom...\",\"B1bB1j\":\"Recherche par numéro de commande #, nom ou e-mail...\",\"jA4hXE\":\"Recherche par sujet ou corps...\",\"YEjitp\":\"Recherche par sujet ou par contenu...\",\"HYnGee\":\"Recherche par nom de billet...\",\"YIix5Y\":\"Recherche...\",\"OeW+DS\":\"Couleur secondaire\",\"DnXcDK\":\"Couleur secondaire\",\"cZF6em\":\"Couleur secondaire du texte\",\"ZIgYeg\":\"Couleur secondaire du texte\",\"QuNKRX\":\"Sélectionner la caméra\",\"kWI/37\":\"Sélectionner l'organisateur\",\"hAjDQy\":\"Sélectionner le statut\",\"QYARw/\":\"Sélectionner un billet\",\"XH5juP\":\"Sélectionnez le niveau de billet\",\"nuWxSr\":\"Sélectionner les billets\",\"O/7I0o\":\"Sélectionner...\",\"JlFcis\":\"Envoyer\",\"qKWv5N\":[\"Envoyer une copie à <0>\",[\"0\"],\"0>\"],\"RktTWf\":\"Envoyer un message\",\"/mQ/tD\":\"Envoyer en tant que test. Le message sera envoyé à votre e-mail au lieu de celle des destinataires.\",\"471O/e\":\"Envoyer un e-mail de confirmation\",\"D7ZemV\":\"Send order confirmation and ticket email\",\"v1rRtW\":\"Send Test\",\"j1VfcT\":\"SEO Description\",\"/SIY6o\":\"SEO Keywords\",\"GfWoKv\":\"SEO Settings\",\"rXngLf\":\"SEO Title\",\"/jZOZa\":\"Service Fee\",\"vu4F0h\":\"Set a minimum price and let users donate more\",\"nYNT+5\":\"Set up your event\",\"A8iqfq\":\"Set your event live\",\"Tz0i8g\":\"Settings\",\"Z8lGw6\":\"Share\",\"FFbYHm\":[\"Should this \",[\"type\"],\" be applied to all new tickets?\"],\"8vETh9\":\"Show\",\"smd87r\":\"Show available ticket quantity\",\"qDsmzu\":\"Show hidden questions\",\"fMPkxb\":\"Show more\",\"izwOOD\":\"Show tax and fees separately\",\"j3b+OW\":\"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.\",\"DvCwYF\":\"Sorry, this promo code is invalid'\",\"6a/UJE\":\"Sorry, this promo code is not recognized\",\"9rRZZ+\":\"Sorry, your order has expired. Please start a new order.\",\"a4SyEE\":\"Sorting is disabled while filters and sorting are applied\",\"4nG1lG\":\"Standard ticket with a fixed price\",\"D3iCkb\":\"Start Date\",\"RS0o7b\":\"State\",\"/2by1f\":\"State or Region\",\"uAQUqI\":\"Status\",\"UJmAAK\":\"Subject\",\"X2rrlw\":\"Subtotal\",\"b0HJ45\":[\"Success! \",[\"0\"],\" will receive an email shortly.\"],\"BJIEiF\":[\"Successfully \",[\"0\"],\" attendee\"],\"Ih8kN0\":[\"Successfully $\",[\"0\"],\" attendee\"],\"xHl17l\":[\"Successfully checked <0>\",[\"0\"],\" \",[\"1\"],\"0> \",[\"2\"]],\"OtgNFx\":\"Successfully confirmed email address\",\"IKwyaF\":\"Successfully confirmed email change\",\"zLmvhE\":\"Successfully created attendee\",\"9mZEgt\":\"Successfully Created Promo Code\",\"aIA9C4\":\"Successfully Created Question\",\"onFQYs\":\"Successfully Created Ticket\",\"Hgj/mB\":\"Successfully deleted ticket\",\"J3RJSZ\":\"Successfully updated attendee\",\"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\",\"70dYC8\":\"Successfully Updated Promo Code\",\"F+pJnL\":\"Successfully Updated Seo Settings\",\"g2lRrH\":\"Successfully updated ticket\",\"DXZRk5\":\"Suite 100\",\"GNcfRk\":\"Support Email\",\"JpohL9\":\"Tax\",\"geUFpZ\":\"Tax & Fees\",\"0RXCDo\":\"Tax or Fee deleted successfully\",\"ZowkxF\":\"Taxes\",\"EEZnW+\":\"Taxes & Fees\",\"qu6/03\":\"Taxes and Fees\",\"gVjSFp\":\"Taxes and Fees can be associated with tickets and will be added to the ticket price.\",\"e0ZSh4\":\"Text Colour\",\"gypigA\":\"That promo code is invalid\",\"0ozSQu\":\"The background color for the event homepage\",\"LbHWgW\":\"The background color for the ticket widget on the event homepage\",\"75Xclv\":\"The basic details of your event\",\"UNqHnV\":\"The color of the buttons on the event homepage\",\"0amhbL\":\"The color of the links on the event homepage\",\"QXlz+n\":\"The default currency for your events.\",\"mnafgQ\":\"The default timezone for your events.\",\"NlfnUd\":\"The link you clicked is invalid.\",\"FqjKfd\":\"The location of your event\",\"FeAfXO\":[\"The maximum numbers number of tickets for Generals is \",[\"0\"]],\"POEqXB\":\"The organizer details of your event\",\"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.\",\"TJZByZ\":\"The tax and fee to apply to this ticket. You can create new taxes and fees on the\",\"OJYwh9\":\"The taxes and fees to apply to this ticket. You can create new taxes and fees on the\",\"6BpBfZ\":\"The text color for the event homepage\",\"rljHp7\":\"The text color for the ticket widget on the event homepage\",\"s4di40\":\"The text to display in the 'Continue' button. Defaults to 'Continue'\",\"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\",\"wgAiDb\":\"The user must login to change their email.\",\"jvxN9/\":\"There are no tickets available for this event\",\"rMcHYt\":\"There is a refund pending. Please wait for it to complete before requesting another refund.\",\"hjLUr+\":\"There was an error loading this content. Please refresh the page and try again.\",\"68Axnm\":\"There was an error processing your request. Please try again.\",\"mVKOW6\":\"There was an error sending your message\",\"Um/adz\":\"These allow multiple selections\",\"vWeHWp\":\"These colors are not saved in our system.\",\"7qzHGS\":\"These colors are not saved in our system. They are only used to generate the widget.\",\"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.\",\"CNk/ro\":\"This is an online event\",\"GabtCa\":\"This is the email address that will be used as the reply-to address for all emails sent from this event\",\"CKkb5E\":\"This message is how below the\",\"cHO4ec\":\"This message will be included in the footer of all emails sent from this event\",\"RjwlZt\":\"This order has already been paid.\",\"axERYu\":\"This order has already been paid. <0>View order details0>\",\"wY+HO9\":\"This order has already been processed.\",\"5K8REg\":\"This order has already been refunded.\",\"OiQMhP\":\"This order has been cancelled\",\"YyEJij\":\"This order has been cancelled.\",\"D44cEI\":\"This order has been completed.\",\"HILpDX\":\"This order is awaiting payment\",\"0vRWbB\":\"This order is awaiting payment.\",\"BdYtn9\":\"This order is complete\",\"e3uMJH\":\"This order is complete.\",\"YNKXOK\":\"This order is processing.\",\"LIjb4v\":\"This order is processing. TODO - a nice image and poll the API\",\"yPZN4i\":\"This order page is no longer available.\",\"5189cf\":\"This overrides all visibility settings and will hide the ticket from all customers.\",\"4vwjho\":\"This page has expired. <0>View order details0>\",\"Qt7RBu\":\"This question is only visible to the event organizer\",\"os29v1\":\"This reset password link is invalid or expired.\",\"WJqBqd\":\"This ticket cannot be deleted because it is\\nassociated with an order. You can hide it instead.\",\"ma6qdu\":\"This ticket is hidden from public view\",\"xJ8nzj\":\"This ticket is hidden unless targeted by a Promo Code\",\"IV9xTT\":\"This user is not active, as they have not accepted their invitation.\",\"5AnPaO\":\"ticket\",\"kjAL4v\":\"Ticket\",\"KosivG\":\"Ticket deleted successfully\",\"dtGC3q\":\"Ticket email has been resent to attendee\",\"USk+Mn\":\"Ticket page message\",\"mRM6XH\":\"Ticket Sales\",\"NirIiz\":\"Ticket Tier\",\"8jLPgH\":\"Ticket Type\",\"jqWDf9\":\"Ticket widget background color\",\"UrMVAz\":\"Ticket Widget Preview\",\"ngtDy7\":\"Ticket widget text color\",\"N+YYpo\":\"Ticket(s)\",\"6GQNLE\":\"Tickets\",\"54q0zp\":\"Tickets for\",\"i+idBz\":\"Tickets sold\",\"AGRilS\":\"Tickets Sold\",\"56Qw2C\":\"Tickets sorted successfully\",\"4f8A8M\":\"Tickets to which the promo code applies (Applies to all by default)\",\"xN9AhL\":[\"Tier \",[\"0\"]],\"oYaHuq\":\"Tiered Ticket\",\"XZrhpz\":\"Tiered Ticket - Coming Soon\",\"4M150e\":\"Tiered tickets allow you to offer multiple price options for the same ticket.\\nThis is perfect for early bird tickets, or offering different price\\noptions for different groups of people.\",\"jQoYTX\":\"Tiered tickets allow you to offer multiple price options for the same ticket. This is perfect for early bird tickets or offering different price options for different groups of people.\",\"s/0RpH\":\"Times used\",\"40Gx0U\":\"Timezone\",\"oDGm7V\":\"TIP\",\"MHrjPM\":\"Title\",\"xdA/+p\":\"Tools\",\"72c5Qo\":\"Total\",\"BxsfMK\":\"Total Fees\",\"mpB/d9\":\"Total order amount\",\"m3FM1g\":\"Total refunded\",\"GBBIy+\":\"Total remaining\",\"/SgoNA\":\"Total Tax\",\"+zy2Nq\":\"Type\",\"mLGbAS\":[\"Unable to \",[\"0\"],\" attendee\"],\"/cSMqv\":\"Unable to create question. Please check the your details\",\"nNdxt9\":\"Unable to create ticket. Please check the your details\",\"MH/lj8\":\"Unable to update question. Please check the your details\",\"Mqy/Zy\":\"United States\",\"NIuIk1\":\"Unlimited\",\"oMcLhS\":\"Unlimited ticket quantity available\",\"E0q9qH\":\"Unlimited usages allowed\",\"ia8YsC\":\"Upcoming\",\"L/gNNk\":[\"Update \",[\"0\"]],\"+qqX74\":\"Update event name, description and dates\",\"vXPSuB\":\"Update profile\",\"gsehpV\":\"Upload an image to be displayed on the event page\",\"BNBfrU\":\"Upload Cover\",\"e5lF64\":\"Usage Example\",\"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 Settings0>\",\"vgwVkd\":\"UTC\",\"khBZkl\":\"VAT\",\"E/9LUk\":\"Venue Name\",\"AM+zF3\":\"View attendee\",\"e4mhwd\":\"View event homepage\",\"/5PEQz\":\"View event page\",\"fFornT\":\"View full message\",\"YIsEhQ\":\"View map\",\"Ep3VfY\":\"View on Google Maps\",\"AMkkeL\":\"View order\",\"Y8s4f6\":\"View order details\",\"tF+VVr\":\"VIP Ticket\",\"2q/Q7x\":\"Visibility\",\"vmOFL/\":\"We could not process your payment. Please try again or contact support.\",\"1E0vyy\":\"We couldn't load the data. Please try again.\",\"VGioT0\":\"We recommend dimensions of 2160px by 1080px, 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\"],\" 👋\"],\"wjqPqF\":\"What are Tiered Tickets?\",\"5iXvHA\":\"What is a Tiered Ticketing?\",\"MhhnvW\":\"What tickets does this code apply to? (Applies to all by default)\",\"dCil3h\":\"What tickets should this question be apply to?\",\"Rb0XUE\":\"What time will you be arriving?\",\"5N4wLD\":\"What type of question is this?\",\"S+OdxP\":\"Who is organizing this event?\",\"LINr2M\":\"Who is this message to?\",\"nWhye/\":\"Who should be asked this question?\",\"vVGiM4\":\"Who type of question is this?\",\"onLsWS\":\"Whoops! something went wrong. Please try again or contact support if the problem persists.\",\"AHXN2z\":\"Widget\",\"AU/8QR\":\"Widget Configuration\",\"VxFvXQ\":\"Widget Embed\",\"v1P7Gm\":\"Widget Settings\",\"b4itZn\":\"Working\",\"hqmXmc\":\"Working...\",\"l75CjT\":\"Yes\",\"QcwyCh\":\"Yes, remove them\",\"P+Sty0\":[\"You are changing your email to <0>\",[\"0\"],\"0>.\"],\"4ysd6z\":\"You can connecting using this Zoom link...\",\"9HGdDw\":\"You can create a promo code which targets this ticket on the\",\"KRhIxT\":\"You can now start receiving payments through Stripe.\",\"UqVaVO\":\"You cannot change the ticket type as there are attendees associated with this ticket.\",\"zQ8idk\":\"You cannot change the ticket type because there are already tickets sold for this ticket.\",\"3vRX5A\":\"You cannot delete this price tier because there are already tickets sold for this tier. You can hide it instead.\",\"RCC09s\":\"You cannot edit a default question\",\"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.\",\"XoeazJ\":\"You have no attendee questions. Attendee questions are asked once per attendee.\",\"CoZHDB\":\"You have no order questions.\",\"FZKDIe\":\"You have no order questions. Order questions are asked once per order.\",\"15qAvl\":\"You have no pending email change.\",\"n81Qk8\":\"You have not completed your Stripe Connect setup\",\"jxsiqJ\":\"You have not connected your Stripe account\",\"183zcL\":\"You have taxes and fees added to a Free Ticket. Would you like to remove or obscure them?\",\"2v5MI1\":\"You haven't sent any messages yet. You can send messages to all attendees, or to specific ticket 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\",\"LRguuL\":\"You must have at least one tier\",\"8/eLoa\":\"You need to verify your account before you can send messages.\",\"WHXRMI\":\"You'll need at least one ticket to get started. Free, paid or let the user decide what to pay.\",\"bdg03s\":\"Your account email in outgoing emails.\",\"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\"],\"0> is pending. Please check your email to confirm\"],\"yZfBoy\":\"Your message has been sent\",\"la26JS\":\"Your order is in progress\",\"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.\",\"cJ4Y4R\":\"Your refund is processing.\",\"IFHV2p\":\"Your ticket for\",\"3k7HDY\":\"Zip\",\"BM/KQm\":\"Zip or Postal Code\",\"VftCuk\":\"Zoom link, Google Meet link, etc.\",\"Rzj20H\":\"Le mot de passe doit comporter un minimum de 8 caractères\",\"ySU+JY\":\"your@email.com\"}")};
\ No newline at end of file
+/*eslint-disable*/module.exports={messages:JSON.parse("{\"1bpx9A\":\"...\",\"f8qS7T\":\"Il n'y a rien à afficher pour l'instant\",\"4zldrf\":[[\"0\",\"pluriel\",\"un {# hidden question\"],\" autre {# hidden questions}}\"],\"J/hVSQ\":[[\"0\"]],\"KMgp2+\":[[\"0\"],\" available\"],\"tmew5X\":[[\"0\"],\" s'est enregistré\"],\"Pmr5xp\":[[\"0\"],\" créé avec succès\"],\"FImCSc\":[[\"0\"],\" mis à jour avec succès\"],\"KOr9b4\":[\"Les événements de \",[\"0\"]],\"qSiUsc\":[[\"0\"],[\"1\"]],\"wapGcj\":[[\"message\"]],\"fyE7Au\":[[\"minutes\"],\" minutes et \",[\"seconds\"],\" secondes\"],\"NlQ0cx\":[\"Premier événement de \",[\"organizerName\"]],\"OXku3b\":\"<0>https://0>votre-siteweb.com\",\"E15xs8\":\"⚡️ Organisez votre événement\",\"FL6OwU\":\"✉️ Confirmez votre adresse email\",\"y1NShf\":\"🎉 Félicitations pour la création d'un événement!\",\"BN0OQd\":\"🎉 Félicitations pour la création d'un événement!\",\"fAv9QG\":\"🎟️ Ajouter des billets\",\"4WT5tD\":\"🎨 Personnalisez votre page d'événement\",\"3VPPdS\":\"💳 Connectez-vous avec Stripe\",\"s4Tgn6\":\"📢 Faites la promotion de votre événement\",\"cjdktw\":\"🚀 Organisez votre événement en direct\",\"rmelwV\":\"0 minute et 0 seconde\",\"UQ7pBY\":\"0.50 for $0.50\",\"i1+xzD\":\"1,75 pour 1,75%\",\"i0puaE\":\"10.00\",\"W9+fkZ\":\"10001\",\"qdfdgM\":\"123, rue Principale\",\"IoRZzD\":\"20\",\"+H1RMb\":\"01-01-2024 10:00\",\"Q/T49U\":\"01-01-204 18:00\",\"hMT8+2\":\"94103\",\"d9El7Q\":[\"Un \",[\"type\"],\" par défaut est automatiquement appliqué à tous les nouveaux tickets. Vous pouvez modifier cette valeur pour chaque ticket.\"],\"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\",\"Pgaiuj\":\"Un montant fixe par billet. Par exemple, 0,50 $ par billet\",\"f4vJgj\":\"Une saisie de texte sur plusieurs lignes\",\"ySO/4f\":\"Un pourcentage du prix du billet. Par exemple, 3,5 % du prix du billet\",\"WXeXGB\":\"Un code promo sans réduction peut être utilisé pour révéler des billets cachés.\",\"GMhWB5\":\"A Radio option allows has multiple options but only one can be selected.\",\"CBt3s7\":\"Une option radio permet d'avoir plusieurs options mais une seule peut être sélectionnée.\",\"AG/qmQ\":\"A Radio option has multiple options but only one can be selected.\",\"7g61G9\":\"Une brève description de l'Événements exceptionnels SARL.\",\"h179TP\":\"Une courte description de l'événement qui sera affichée dans les résultats des moteurs de recherche et lors du partage sur les médias sociaux. Par défaut, la description de l'événement sera utilisée\",\"WKMnh4\":\"Une saisie de texte sur une seule ligne\",\"zCk10D\":\"Une seule question par participant. Par exemple, quel est votre repas préféré ?\",\"ap3v36\":\"Une seule question par commande. Par exemple, quel est le nom de votre entreprise ?\",\"RlJmQg\":\"A standard tax, like VAT or GST\",\"pDwHGk\":\"À propos de hi.events\",\"uIKNjo\":\"À propos de l'événement\",\"bfXQ+N\":\"Accepter l'invitation\",\"iwyhk4\":\"Accès à l'espace VIP...\",\"AeXO77\":\"Compte\",\"0b79Xf\":\"E-mail du compte\",\"lkNdiH\":\"Nom du compte\",\"Puv7+X\":\"Paramètres du compte\",\"OmylXO\":\"Compte mis à jour avec succès\",\"7L01XJ\":\"Actions\",\"FQBaXG\":\"Activer\",\"F6pfE9\":\"Actif\",\"m16xKo\":\"Ajouter\",\"LKNynS\":\"Ajoutez une image de couverture, une description et bien plus encore pour faire ressortir votre événement\",\"gMK0ps\":\"Ajouter des détails sur l'événement et gérer les paramètres de l'événement\",\"Fb+SDI\":\"Ajouter plus de billets\",\"ApsD9J\":\"Ajouter nouveau\",\"TZxnm8\":\"Ajouter une option\",\"Cw27zP\":\"Ajouter question\",\"yWiPh+\":\"Ajouter une taxe ou des frais\",\"BGD9Yt\":\"Ajouter des billets\",\"goOKRY\":\"Ajouter un niveau\",\"p59pEv\":\"Détails supplémentaires\",\"Y8DIQy\":\"Options supplémentaires\",\"Du6bPw\":\"Adresse\",\"NY/x1b\":\"Adresse ligne 1\",\"POdIrN\":\"Address Ligne 1\",\"cormHa\":\"Address ligne 2\",\"gwk5gg\":\"Address Ligne 2\",\"U3pytU\":\"Administrateur\",\"HLDaLi\":\"Les utilisateurs administrateurs ont un accès complet aux événements et aux paramètres du compte.\",\"CPXP5Z\":\"Affilié(e)s\",\"W7AfhC\":\"Tous les participants à cet événement\",\"QsYjci\":\"Tous les évènements\",\"/twVAS\":\"Tous les billets\",\"ipYKgM\":\"Permettre l'indexation par les moteurs de recherche\",\"LRbt6D\":\"Permettre l'indexation par les moteurs de recherche\",\"+MHcJD\":\"Nous y sommes presque ! Nous attendons que votre paiement soit traité. Cela ne devrait prendre que quelques secondes..\",\"8wYDMp\":\"Acez-vous déjà un compte ?\",\"ApOYO8\":\"Incroyable, Événement, Mots-clés...\",\"hehnjM\":\"Montant\",\"TRYjHa\":[\"montant en \",[\"0\"]],\"R2O9Rg\":[\"Montant payé (\",[\"0\"],\")\"],\"tLjOgo\":[\"Montant payé $\",[\"0\"]],\"V7MwOy\":\"An error occurred while loading the page\",\"Q7UCEH\":\"Une erreur s'est produite lors du tri des questions. Veuillez réessayer ou actualiser la page\",\"er3d/4\":\"Une erreur s'est produite lors du tri des billets. Veuillez réessayer ou actualiser la page\",\"hhvESd\":\"Un événement est l'événement réel que vous organisez\",\"jD/OCQ\":\"Un événement est l'événement que vous organisez. Vous pouvez ajouter d'autres détails ultérieurement.\",\"oBkF+i\":\"L'organisateur est l'entreprise ou la personne qui accueille l'événement.\",\"W5A0Ly\":\"Une erreur inattendue s'est produite.\",\"byKna+\":\"Une erreur inattendue s'est produite. Veuillez réessayer.\",\"j4DliD\":\"Toutes les questions des détenteurs de billets seront envoyées à cette adresse électronique. Cette adresse sera également utilisée comme adresse de réponse pour tous les courriels envoyés dans le cadre de cet événement.\",\"aAIQg2\":\"Apparence\",\"Ym1gnK\":\"appliquée\",\"DB8zMK\":\"Appliquer\",\"GctSSm\":\"Appliquer le code promo\",\"jcnZEw\":[\"Appliquer ce \",[\"type\"],\" à tous les nouveaux tickets\"],\"q7TRd7\":\"Êtes-vous sûr de vouloir activer ce participant?\",\"/CV2x+\":\"Êtes-vous sûr de vouloir annuler ce participant ? Cela annulera son billet.\",\"YgRSEE\":\"Etes-vous sûr de vouloir supprimer ce code promo ?\",\"iU234U\":\"Êtes-vous sûr de vouloir supprimer cette question ?\",\"CMyVEK\":\"Êtes-vous sûr de vouloir créer un brouillon pour cet événement ? Cela rendra l'événement invisible au public\",\"mEHQ8I\":\"Êtes-vous sûr de vouloir rendre cet événement public ? Ceci rendra l'événement visible au public\",\"2xEpch\":\"Demander une fois par participant\",\"LBLOqH\":\"Demander une fois par commande\",\"ss9PbX\":\"Participant\",\"m0CFV2\":\"Détails sur les participants\",\"lXcSD2\":\"Questions des participants\",\"VvYqMB\":\"Les questions des participants sont posées une fois par participant. Par défaut, les participants sont invités à indiquer leur prénom, leur nom de famille et leur adresse électronique.\",\"spxPEv\":\"Les questions des participants sont posées une fois par participant. Par défaut, nous demandons le prénom, le nom et l'adresse électronique du participant.\",\"9SZT4E\":\"Participants\",\"5UbY+B\":\"Participants ayant un billet spécifique\",\"IMJ6rh\":\"Redimensionnement automatique\",\"vZ5qKF\":\"Redimensionne automatiquement la hauteur du widget en fonction du contenu. Lorsqu'il est désactivé, le widget remplit la hauteur du conteneur.\",\"lXkUEV\":\"Disponibilité\",\"ioG+xt\":\"En attente du paiement\",\"3PmQfI\":\"Un événement grandiose\",\"kNmmvE\":\"Événements génial SARL.\",\"Yrbm6T\":\"Super organisation SARL.\",\"9002sI\":\"Retour à tous les événements\",\"0TGkYM\":\"Retour à la page d'accueil de l'événement\",\"A302fe\":\"Retour à la page de l'événement\",\"VCoEm+\":\"Retour à la connexion\",\"MLZyiY\":\"Couleur de l'arrière-plan\",\"k1bLf+\":\"Couleur de l'arrière-plan\",\"I7xjqg\":\"Type d'arrière-plan\",\"EOUool\":\"Détails de base\",\"7EGQKA\":\"Comme vous êtes le propriétaire du compte, vous ne pouvez pas modifier votre rôle ou votre statut.\",\"1mwMl+\":\"Avant d'envoyer !\",\"wVfiR2\":\"Avant que votre événement ne soit mis en ligne, il y a plusieurs choses à faire.\",\"/yeZ20\":\"Avant que votre événement ne soit mis en ligne, vous devez procéder à quelques vérifications.\",\"1xAcxY\":\"Commencer à vendre des billets en quelques minutes\",\"R+w/Va\":\"Facturation\",\"Ptp9MF\":\"Couleur du bouton\",\"whqocw\":\"En vous inscrivant, vous acceptez nos <0>Conditions de service0> et <1>Politique de confidentialité1>.\",\"bcCn6r\":\"Type de calcul\",\"+8bmSu\":\"Californie\",\"iStTQt\":\"L'autorisation de la caméra a été refusée. <0>Demander l'autorisation0> à nouveau, ou si cela ne fonctionne pas, vous devrez <1>accorder à cette page1> l'accès à votre caméra dans les paramètres de votre navigateur.\",\"Jzn1qy\":\"Impossible de charger les événements\",\"dEgA5A\":\"Annuler\",\"Gjt/py\":\"Annuler le changement d'adresse électronique\",\"tVJk4q\":\"Annuler la commande\",\"Os6n2a\":\"Annuler la commande\",\"Mz7Ygx\":[\"Annuler la commande \",[\"0\"]],\"Ud7zwq\":\"Annuler annule tous les billets associés à cette commande et les remet dans le pool des billets disponibles.\",\"vv7kpg\":\"Annulé\",\"77/YgG\":\"Changer de couverture\",\"GptGxg\":\"Modifier le mot de passe\",\"QndF4b\":\"enregistrement\",\"xMDm+I\":\"Enregistrement\",\"9FVFym\":\"vérifier\",\"gXcPxc\":\"Check-in\",\"Y3FYXy\":\"Vérifier\",\"CNafaC\":\"Checkbox options allow multiple selections\",\"SpabVf\":\"Cases à cocher\",\"CRu4lK\":\"Enregistré\",\"/ydvvl\":\"Messagerie de paiement\",\"1WnhCL\":\"Paramètres de paiement\",\"JjkX4+\":\"Choisissez une couleur pour l'arrière plan.\",\"/Jizh9\":\"Choisissez un compte\",\"jJGoVv\":\"Choisissez les notifications que vous souhaitez recevoir\",\"3wV73y\":\"Ville\",\"FG98gC\":\"Effacer le texte de recherche\",\"EYeuMv\":\"cliquez ici\",\"sby+1/\":\"cliquer pour copier\",\"yz7wBu\":\"Fermer\",\"62Ciis\":\"Fermer la barre latérale\",\"EWPtMO\":\"Code\",\"ercTDX\":\"Le code doit comporter entre 3 et 50 caractères\",\"jZlrte\":\"Couleur\",\"Vd+LC3\":\"La couleur doit être un code hexadécimal valide. Exemple: #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\":\"Commande complète\",\"guBeyC\":\"Paiement complet\",\"C8HNV2\":\"Paiement complet\",\"qqWcBV\":\"Complété\",\"DwF9eH\":\"Code du composant\",\"7VpPHA\":\"Confirmer\",\"ZaEJZM\":\"Confirmer le changement d'adresse électronique\",\"yjkELF\":\"Confirmation du nouveau mot de passe\",\"xnWESi\":\"Confirmer le mot de passe\",\"p2/GCq\":\"Confirmer le mot de passe\",\"wnDgGj\":\"Confirmation de l'adresse e-mail...\",\"DnLC08\":\"Félicitations pour avoir créé un événement!\",\"pbAk7a\":\"Connexion à Stripe\",\"UMGQOh\":\"Se connecter avec Stripe\",\"QKLP1W\":\"Connectez votre compte Stripe pour commencer à recevoir des paiements\",\"5lcVkL\":\"Détails de la connexion\",\"i3p844\":\"Contact e-mail\",\"yAej59\":\"Couleur d'arrière plan du contenu\",\"xGVfLh\":\"Continue\",\"X++RMT\":\"Texte du bouton Continuer\",\"AfNRFG\":\"Texte du bouton Continuer\",\"lIbwvN\":\"Continuer la configuration de l'événement\",\"HB22j9\":\"Poursuivre l'installation\",\"bZEa4H\":\"Continuer la configuration de Stripe Connect\",\"RGVUUI\":\"Continuer vers le paiement\",\"6V3Ea3\":\"Copié\",\"T5rdis\":\"copié dans le presse-papiers\",\"he3ygx\":\"Copier\",\"8+cOrS\":\"Copier les détails à tous les participants\",\"ENCIQz\":\"Copier le lien\",\"E6nRW7\":\"Copier l'URL\",\"JNCzPW\":\"Pays\",\"IF7RiR\":\"Couverture\",\"P0rbCt\":\"Image de couverture\",\"hYgDIe\":\"Créer\",\"b9XOHo\":[\"Créer \",[\"0\"]],\"6kdXbW\":\"Créer un code promo\",\"n5pRtF\":\"Créer un billet\",\"X6sRve\":[\"Créez un compte ou <0>\",[\"0\"],\"0> pour commencer\"],\"nx+rqg\":\"créer un organisateur\",\"ipP6Ue\":\"Création d'un participant\",\"uN355O\":\"créer un événement\",\"BOqY23\":\"Créer un nouveau\",\"kpJAeS\":\"Création d'un organisateur\",\"sYpiZP\":\"Créer un code promotionnel\",\"a6YrKg\":\"Créer des codes promotionnels\",\"n6H6AO\":\"Créez des codes promotionnels pour offrir des réductions à vos participants.\",\"B3Mkdt\":\"Créer une question\",\"UKfi21\":\"Créer une taxe ou des frais\",\"Tg323g\":\"Créer un billet\",\"agZ87r\":\"Créez des billets pour votre événement, fixez des prix et gérez les quantités disponibles.\",\"d+F6q9\":\"Créé\",\"Q2lUR2\":\"Devise\",\"DCKkhU\":\"Mot de passe actuel\",\"uIElGP\":\"URL des cartes personnalisées\",\"876pfE\":\"Client(e)\",\"QOg2Sf\":\"Personnaliser les paramètres de l'e-mail et de notification pour cet événement\",\"Lu75d1\":\"Personnaliser les paramètres de l'e-mail pour cet événement\",\"RaxMyF\":\"Personnalisez la page d'accueil de l'événement et l'expérience de paiement\",\"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\":\"Personnalisez la page de votre événement pour qu'elle corresponde à votre marque et à votre style.\",\"Zz6Cxn\":\"Zone dangereuse\",\"7p5kLi\":\"Tableau de bord\",\"mYGY3B\":\"Date\",\"JvUngl\":\"Date et heure\",\"RiXc4g\":\"Désactiver l'utilisateur\",\"cnGeoo\":\"Supprimer\",\"WHf154\":\"Supprimer le code\",\"heJllm\":\"Supprimer la couverture\",\"KWa0gi\":\"Supprimerl'image\",\"IatsLx\":\"Supprimere la question\",\"GnyEfA\":\"Supprimer le billet\",\"E33LRn\":\"Supprimer l'utilisateur\",\"Nu4oKW\":\"Description\",\"s9iD5d\":\"La description doit comporter moins de 50 000 caractères\",\"URmyfc\":\"Détails\",\"x8uDKb\":\"Désactiver le code\",\"H6Ma8Z\":\"Discount\",\"ypJ62C\":\"Discount %\",\"3LtiBI\":[\"Discount in \",[\"0\"]],\"C8JLas\":\"Discount Type\",\"1QfxQT\":\"Rejeter\",\"cVq+ga\":\"Vous n'avez pas de compte? <0>S'inscrire0>\",\"4+aC/x\":\"Donation / Pay what you'd like ticket\",\"++S5i/\":\"Montant du don\",\"OO7MG7\":\"Billet de donation\",\"0pEVi2\":\"Télécharger les billets en PDF\",\"uABpqP\":\"Glisser-déposer ou cliquer\",\"3z2ium\":\"Faire glisser pour trier\",\"6skwyH\":\"Déposez une image ou cliquez ici pour remplacer l'image de couverture.\",\"S37RRV\":\"Déposez une image ou cliquez ici pour télécharger l'image de couverture.\",\"CfKofC\":\"Sélection déroulante\",\"vi8Q/5\":\"Événement en double\",\"7Cx5It\":\"Early bird\",\"ePK91l\":\"Éditer\",\"N6j2JH\":[\"Modifier \",[\"0\"]],\"kNGp1D\":\"Modifier un participant\",\"t2bbp8\":\"Modifier un participant\",\"iFgaVN\":\"Modifier un code\",\"jrBSO1\":\"Modifier un organisateur\",\"9BdS63\":\"Modifier un code promo\",\"O0CE67\":\"Modifier une question\",\"EzwCw7\":\"Modifier une question\",\"d+nnyk\":\"Modifier un billet\",\"poTr35\":\"Modifier un utilisateur\",\"GTOcxw\":\"Modifier un utilisateur\",\"pqFrv2\":\"par exemple. 2,50 pour 2,50$\",\"3yiej1\":\"par exemple. 23,5 pour 23,5%\",\"O3oNi5\":\"E-mail\",\"VxYKoK\":\"Paramètres d'e-mail et de notification\",\"ATGYL1\":\"Adresse e-mail\",\"hzKQCy\":\"Adresse e-mail\",\"HqP6Qf\":\"Le changement d'e-mail a été annulé avec succès\",\"mISwW1\":\"Changement d'e-mail en attente\",\"WiKda6\":\"Configuration de l'e-mail\",\"APuxIE\":\"E-mail de confirmation renvoyé\",\"YaCgdO\":\"Confirmation par e-mail envoyée avec succès\",\"jyt+cx\":\"Message de pied de page de l'e-mail\",\"I6F3cp\":\"Email non vérifié\",\"G5zNMX\":\"Paramètres de l'e-mail\",\"NTZ/NX\":\"Code d'intégration\",\"4rnJq4\":\"Script d'intégration\",\"VFv2ZC\":\"Date de fin\",\"237hSL\":\"Terminé\",\"MhVoma\":\"Entrez un montant hors taxes et hors frais.\",\"3Z223G\":\"Erreur de confirmation de l'adresse e-mail\",\"a6gga1\":\"Erreur de confirmation du changement d'email\",\"5/63nR\":\"EURO\",\"0pC/y6\":\"Événement\",\"nuoP/j\":\"Événement créé avec succès\",\"CFLUfD\":\"Événement créé avec succès 🎉\",\"0Zptey\":\"Valeurs par défaut des événements\",\"Xe3XMd\":\"L'événement n'est pas visible par le public\",\"4pKXJS\":\"L'événement est visible par le public\",\"ClwUUD\":\"Lieu de l'événement et détails du lieu\",\"OopDbA\":\"Page de l'événement\",\"JyD0LH\":\"Paramètres de l'événemen\",\"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\",\"tst44n\":\"Evénements\",\"KnN1Tu\":\"Échéance\",\"uaSvqt\":\"Date d'échéance\",\"GS+Mus\":\"Exporter\",\"9xAp/j\":\"Échec de l'annulation du participant\",\"ZpieFv\":\"Échec de l'annulation de la commande\",\"z6tdjE\":\"Échec de la suppression du message. Veuillez réessayer.\",\"9zSt4h\":\"Échec de l'exportation des participants. Veuillez réessayer.\",\"2uGNuE\":\"Échec de l'exportation des commandes. Veuillez réessayer.\",\"ZQ15eN\":\"Échec du renvoi de l'e-mail du ticket\",\"PLUB/s\":\"Frais\",\"YirHq7\":\"Retour d'expérience\",\"/mfICu\":\"Frais\",\"V1EGGU\":\"Prénom\",\"kODvZJ\":\"Prénom\",\"S+tm06\":\"Le prénom doit comporter entre 1 et 50 caractères\",\"1g0dC4\":\"Le prénom, le nom de famille et l'e-mail sont des questions par défaut et sont toujours inclus dans le processus de paiement.\",\"QWa3Sk\":\"Le prénom, le nom de famille et l'e-mail sont des questions par défaut qui sont toujours incluses dans le processus de paiement.\",\"TpqW74\":\"Fixé\",\"irpUxR\":\"Montant fixé\",\"TF9opW\":\"Le flash n'est pas disponible sur cet appareil\",\"UNMVei\":\"Mot de passe oublié?\",\"2POOFK\":\"Gratuit\",\"/4rQr+\":\"Billet gratuit\",\"01my8x\":\"Billet gratuit, aucune information sur le paiement n'est requise\",\"ejVYRQ\":\"De\",\"u6FPxT\":\"Procurez-vous des billets\",\"4GLxhy\":\"Démarrage\",\"4D3rRj\":\"Retour au profil\",\"cQPKZt\":\"Aller sur le tableau de bord\",\"9LCqFI\":\"Aller à la page d'accueil de l'événement\",\"IgcAGN\":\"Chiffre d'affaires\",\"yRg26W\":\"Chiffre d'affaires\",\"R4r4XO\":\"Invités\",\"26pGvx\":\"Avez vous un code de réduction?\",\"V7yhws\":\"hello@awesome-events.com\",\"6K/IHl\":\"Voici un exemple de la façon dont vous pouvez utiliser le composant dans votre application.\",\"Y1SSqh\":\"Voici le composant React que vous pouvez utiliser pour intégrer le widget dans votre application.\",\"Ow9Hz5\":[\"Conférence de Hi.Events \",[\"0\"]],\"verBst\":\"Centre de conférence Hi.Events\",\"6eMEQO\":\"logo hi.events\",\"C4qOW8\":\"Maquer de la vue du public\",\"k3dfFD\":\"Les questions masquées ne sont visibles que par l'organisateur de l'événement et non par le client.\",\"EeNE0j\":\"La partie masquée ne sera pas montrée aux clients.\",\"vLyv1R\":\"Masquer\",\"Mkkvfd\":\"Masquer la page de démarrage\",\"mFn5Xz\":\"Masquer les questions cachées\",\"SCimta\":\"Masquer la page de démarrage de la barre latérale\",\"Da29Y6\":\"Masquer cette question\",\"fsi6fC\":\"Masquer ce ticket aux clients\",\"fvDQhr\":\"Masquer ce niveau aux utilisateurs\",\"Fhzoa8\":\"Masquer le billet après la date de fin de vente\",\"yhm3J/\":\"Masquer le billet avant la date de début de la vente\",\"k7/oGT\":\"Masquer le billet sauf si l'utilisateur dispose du code promotionnel applicable\",\"L0ZOiu\":\"Masquer le billet lorsqu'il est épuisé\",\"uno73L\":\"Masquer un ticket empêchera les utilisateurs de le voir sur la page de l’événement.\",\"tj6Gob\":\"Page d'accueil et paiement\",\"m07jN3\":\"Paramètres de la page d'accueil et du paiement\",\"ZOBwQn\":\"Conception de la page d'accueil\",\"PRuBTd\":\"Conception de la page d'accueil\",\"YjVNGZ\":\"Aperçu de la page d'accueil\",\"c3E/kw\":\"Homer\",\"id+NIk\":\"Combien de minutes le client a-t-il pour terminer sa commande ?\",\"8k8Njd\":\"Le nombre de minutes dont dispose le client pour terminer sa commande. Nous recommandons un minimum de 15 minutes\",\"ySxKZe\":\"Combien de fois ce code peut-il être utilisé ?\",\"fYyXCd\":\"https://example-maps-service.com/...\",\"uOXLV3\":\"J'accepte les <0>termes et conditions0>\",\"sIxFk5\":\"J'accepte les termes et conditions\",\"Crwwhn\":[\"Si aucun nouvel onglet ne s'ouvre, veuillez <0>\",[\"0\"],\".0>\"],\"93DUnd\":[\"Si un nouvel onglet ne s'est pas ouvert, veuillez <0><1>\",[\"0\"],\"1>.0>\"],\"9gtsTP\":\"Si vide, l'adresse sera utilisée pour générer un lien Google map\",\"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 modifier immédiatement votre mot de passe.\",\"n/ZDCz\":\"Image supprimée avec succès\",\"Gyl1h8\":\"Les dimensions de l'image doivent être d'au moins 600 px sur 300 px.\",\"TiGacZ\":\"Les dimensions de l'image doivent être d'au moins 900 px sur 450 px.\",\"UnTvkH\":\"Les dimensions de l'image doivent être comprises entre 3 000 et 2 000 px. Avec une hauteur maximale de 2 000 px et une largeur maximale de 3 000 px\",\"uPEIvq\":\"L'image doit faire moins de 5 Mo\",\"AGZmwV\":\"Image téléchargée avec succès\",\"ibi52/\":\"La largeur de l'image doit être d'au moins 900 px et la hauteur d'au moins 50 px.\",\"NoNwIX\":\"Inactif\",\"T0K0yl\":\"Les utilisateurs inactifs ne peuvent pas se connecter.\",\"OFAmKP\":\"Incluez les détails de connexion pour votre événement en ligne\",\"BfPBBG\":\"Incluez les détails de connexion pour votre événement en ligne. Ces détails seront obtenus après une inscription réussie.\",\"6+pAOx\":\"Incluez les détails de connexion pour votre événement en ligne. Ces détails seront affichés après une inscription réussie\",\"evpD4c\":\"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 la page des billets des participants.\",\"FlQKnG\":\"Inclure les taxes et les frais dans le prix\",\"nbfdhU\":\"Intégrations\",\"OyLdaz\":\"Invitation renvoyée !\",\"HE6KcK\":\"Invitation révoquée !\",\"SQKPvQ\":\"Inviter un utilisateur\",\"PgdQrx\":\"Issue refund\",\"KFXip/\":\"John\",\"XcgRvb\":\"Johnson\",\"1IWWYX\":[\"Conférence KittenTech \",[\"0\"]],\"ZgJEMX\":\"Centre de conférence KittenTech\",\"87a/t/\":\"Étiquette\",\"I3yitW\":\"Dernière connexion\",\"1ZaQUH\":\"Nom de famille\",\"UXBCwc\":\"Nom de famille\",\"CKcupn\":\"Dernières commandes\",\"tITjB1\":\"En savoir plus sur Stripe\",\"c+gAXc\":\"Commençons par la création de votre premier événement\",\"vR92Yn\":\"Commençons par créer votre premier organisateur\",\"QfrKvi\":\"Couleur du lien\",\"wJijgU\":\"Localisation\",\"sQia9P\":\"Se connecter\",\"zUDyah\":\"Connexion\",\"z0t9bb\":\"Connexion\",\"nOhz3x\":\"Déconnexion\",\"F2jAFv\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nam placerat elementum...\",\"XkhEf9\":\"Lorem ipsum...\",\"MU3ijv\":\"Rendre cette question obligatoire\",\"wckWOP\":\"Gérer\",\"8mmINh\":\"Gérer les informations de facturation et consulter les factures\",\"jWIznR\":\"Gérer les paramètres par défaut des nouveaux événements\",\"n4SpU5\":\"Gérer l'événement\",\"wqyqaF\":\"Gérer les paramètres généraux du compte\",\"cQrNR3\":\"Gérer le profil\",\"f92Qak\":\"Gérer les taxes et les frais qui peuvent être appliqués aux billets\",\"PlTcVr\":\"Gérer les taxes et les frais qui peuvent être appliqués à vos billets\",\"ophZVW\":\"Gérer les tickets\",\"Wsx7Iu\":\"Gérer les utilisateurs et leurs autorisations\",\"DdHfeW\":\"Gérer les détails de votre compte et les paramètres par défaut\",\"QHcjP+\":\"Gérer vos données de facturation et de paiement\",\"S+UjNL\":\"Gérer vos données de paiement Stripe\",\"BfucwY\":\"Gérer les utilisateurs et leurs autorisations\",\"1m+YT2\":\"Le client doit répondre aux questions obligatoires avant de pouvoir passer à la caisse.\",\"Dim4LO\":\"Ajouter manuellement un participant\",\"e4KdjJ\":\"Ajouter manuellement un participant\",\"lzcrX3\":\"L'ajout manuel d'un participant ajustera la quantité de billets.\",\"g9dPPQ\":\"Maximum par commande\",\"l5OcwO\":\"Message au participant\",\"Gv5AMu\":\"Message aux participants\",\"1jRD0v\":\"Envoyer un message aux participants avec des billets spécifiques\",\"Lvi+gV\":\"Message de 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\",\"mYLhkl\":\"Paramètres divers\",\"KYveV8\":\"Zone de texte multi-ligne\",\"SVuGaP\":\"Plusieurs options de prix, les utilisateurs peuvent choisir lequel payer\",\"6wbTro\":\"Plusieurs options de prix. Parfait pour les billets à tarif préférentiel, etc.\",\"/bhMdO\":\"Mon incroyable description de l'événement...\",\"vX8/tc\":\"Mon titre d'événement extraordinaire...\",\"hKtWk2\":\"Mon profil\",\"pRjx4L\":\"Nam placerat elementum...\",\"6YtxFj\":\"Nom\",\"hVuv90\":\"Le nom doit comporter moins de 150 caractères\",\"AIUkyF\":\"Naviguer vers le participant\",\"qqeAJM\":\"Jamais\",\"7vhWI8\":\"Nouveau mot de passe\",\"m920rF\":\"New York\",\"1UzENP\":\"Non\",\"Wjz5KP\":\"Pas de participants à montrer\",\"fFeCKc\":\"Pas de réduction\",\"Z6ILSe\":\"Aucun événement pour cet organisateur\",\"yAlJXG\":\"No events to show\",\"KPWxKD\":\"Aucun événement à afficher\",\"J2LkP8\":\"Aucune commande à afficher\",\"+Y976X\":\"Aucun code promo à afficher\",\"Ev2r9A\":\"Aucun résultat\",\"RHyZUL\":\"Pas de résultats de recherche.\",\"cU1op4\":\"Aucun frais ou taxe n'a encore été ajouté.\",\"RY2eP1\":\"Aucune taxe ou frais n'a été ajouté.\",\"uR2eFu\":\"Pas de billets disponibles\",\"b7JZFg\":\"Pas de billets à montrer\",\"EdQY6l\":\"Aucun\",\"OJx3wK\":\"Non disponible\",\"x5+Lcz\":\"Pas d'enregistrement\",\"Scbrsn\":\"Pas en vente\",\"hFwWnI\":\"Paramètres de notification\",\"xXqEPO\":\"Notification du remboursement à l'acheteur\",\"YpN29s\":\"Informer l'organisateur des nouvelles commandes\",\"qeQhNj\":\"Créons maintenant notre premier événement\",\"2NPDz1\":\"En vente\",\"Ldu/RI\":\"En vente\",\"Ug4SfW\":\"Une fois l'événement créé, vous le verrez ici.\",\"+P/tII\":\"Une fois que vous êtes prêt, mettez votre événement en ligne et commencez à vendre des billets.\",\"J6n7sl\":\"En cours\",\"z+nuVJ\":\"Événement en ligne\",\"WKHW0N\":\"Détails de l'événement en ligne\",\"/xkmKX\":\"Only important emails, which are directly related to this event, should be sent using this form.\\nAny misuse, including sending promotional emails, will lead to an immediate account ban.\",\"OdnLE4\":\"Ouvrir la barre latérale\",\"ZZEYpT\":[\"Option \",[\"i\"]],\"0zpgxV\":\"Options\",\"BzEFor\":\"ou\",\"UYUgdb\":\"Commande\",\"mm+eaX\":\"Commande \",\"B3gPuX\":\"Commande annulée\",\"SIbded\":\"Commande terminée\",\"q/CcwE\":\"Date de la commande\",\"Tol4BF\":\"Détails de la commande\",\"L4kzeZ\":[\"Détails de la commande \",[\"0\"]],\"WbImlQ\":\"La commande a été annulée et le propriétaire de la commande a été informé.\",\"VCOi7U\":\"Questions relatives à la commande\",\"wg9MPp\":\"Les questions relatives aux commandes sont posées une fois par commande. Par défaut, les personnes sont invitées à indiquer leur prénom, leur nom de famille et leur e-mail.\",\"+KNVxX\":\"Les questions relatives aux commandes sont posées une fois par commande. Par défaut, nous demandons le prénom, le nom et l'e-mail.\",\"TPoYsF\":\"Référence de la commande\",\"GX6dZv\":\"Résumé de la commande\",\"tDTq0D\":\"Délai d'expiration de la commande\",\"1h+RBg\":\"Commandes\",\"mz+c33\":\"Commandes créées\",\"G5RhpL\":\"Organisateur\",\"m/ebSk\":\"Détails de l'organisateur\",\"mYygCM\":\"L'organisateur est requis\",\"Pa6G7v\":\"Nom de l'organisateur\",\"J2cXxX\":\"Les organisateurs ne peuvent gérer que les événements et les billets. Ils ne peuvent pas gérer les utilisateurs, les paramètres du compte ou les informations de facturation.\",\"fdjq4c\":\"Padding\",\"ErggF8\":\"Couleur d'arrière plan de la page\",\"8F1i42\":\"Page not found\",\"QbrUIo\":\"Pages vues\",\"6D8ePg\":\"page\",\"IkGIz8\":\"payé\",\"2w/FiJ\":\"Billet payé\",\"8ZsakT\":\"Mot de passe\",\"TUJAyx\":\"Password must be a minimum of 8 characters\",\"vwGkYB\":\"Le mot de passe doit comporter au moins 8 caractères\",\"BLTZ42\":\"Réinitialisation du mot de passe réussie. Veuillez vous connecter avec votre nouveau mot de passe.\",\"f7SUun\":\"Les mots de passe sont différents\",\"aEDp5C\":\"Collez-le à l'endroit où vous souhaitez que le widget apparaisse.\",\"+23bI/\":\"Patrick\",\"iAS9f2\":\"patrick@acme.com\",\"iq5IUr\":\"Mettre le billet en pause\",\"621rYf\":\"Paiement\",\"JhtZAK\":\"Échec du paiement\",\"xgav5v\":\"Paiement réussi!\",\"CcK+Ft\":\"PDF\",\"att1Hj\":\"percent\",\"/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 e-mail est valide\",\"Ajavq0\":\"Veuillez vérifier votre courriel pour confirmer votre adresse électronique\",\"MdfrBE\":\"Veuillez compléter le formulaire ci-dessous pour accepter votre invitation\",\"b1Jvg+\":\"Veuillez poursuivre dans le nouvel onglet\",\"q40YFl\":\"Veuillez poursuivre votre commande dans un nouvel onglet\",\"ZJG4Di\":\"Please ensure you only send emails directly related to the order. Promotional emails\\nshould not be sent using this form.\",\"o+HaYe\":\"Veuillez saisir un code promo valide\",\"HnNept\":\"Please enter your new password\",\"5FSIzj\":\"Veuillez noter\",\"MA04r/\":\"Veuillez supprimer les filtres et régler le tri sur \\\"Homepage order\\\" pour activer le tri.\",\"pJLvdS\":\"Veuillez sélectionner\",\"yygcoG\":\"Veuillez sélectionner au moins un billet\",\"igBrCH\":\"Veuillez vérifier votre adresse électronique pour accéder à toutes les fonctionnalités\",\"qCJyMx\":\"Message après le paiement\",\"g2UNkE\":\"Propulsé par\",\"Qs7yI0\":\"Propulsé par\",\"lqAWKB\":\"Propulsé par <0>Hi.Events0> 👋\",\"3n47kV\":\"Propulsé par Hi.Events\",\"ddi4j4\":\"Propulsé par Stripe\",\"Rs7IQv\":\"Message de précommande\",\"rdUucN\":\"Prévisualisation\",\"a7u1N9\":\"Prix\",\"CmoB9j\":\"Mode d'affichage des prix\",\"Q8PWaJ\":\"Paliers de prix\",\"a5jvSX\":\"Paliers de prix\",\"6RmHKN\":\"Couleur principale\",\"G/ZwV1\":\"Couleur principale\",\"8cBtvm\":\"Couleur principale du texte\",\"BZz12Q\":\"Imprimer\",\"MT7dxz\":\"Imprimer tous les billets\",\"vERlcd\":\"Profil\",\"kUlL8W\":\"Profil mis à jour avec succès\",\"cl5WYc\":[\"Code promo \",[\"promo_code\"],\" appliqué\"],\"ZXpm3a\":[\"Code promo \",[\"promoCode\"],\" appliqué\"],\"yKWfjC\":\"Page des codes promotionnels\",\"RVb8Fo\":\"Codes promotionnels\",\"BZ9GWa\":\"Les codes promotionnels peuvent être utilisés pour offrir des réductions, des préventes ou un accès spécial à votre événement.\",\"812gwg\":\"Acheter une licence\",\"LkMOWF\":\"Quantité disponible\",\"XKJuAX\":\"Question supprimée\",\"oQvMPn\":\"Titre de la question\",\"enzGAL\":\"Questions\",\"K885Eq\":\"Questions triées avec succès\",\"OMJ035\":\"Radio Option\",\"C4TjpG\":\"Lire moins\",\"I3QpvQ\":\"Destinataire\",\"N2C89m\":\"Référence\",\"gxFu7d\":[\"Montant du remboursement (\",[\"0\"],\")\"],\"n10yGu\":\"Ordre de remboursement\",\"zPH6gp\":\"Ordre de remboursement\",\"/BI0y9\":\"Remboursé\",\"fgLNSM\":\"Registre\",\"tasfos\":\"supprimer\",\"t/YqKh\":\"Supprimer\",\"RloWNu\":\"Répondre à l'e-mail\",\"EGm34e\":\"Renvoyer l'e-mail de confirmation\",\"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...\",\"RfwZxd\":\"Réinitialiser le mot de passe\",\"KbS2K9\":\"Reset Password\",\"vtc20Z\":\"Retour à la page de l'événement\",\"8YBH95\":\"Revenus\",\"PO/sOY\":\"Annuler l'invitation\",\"GDvlUT\":\"Rôle\",\"ELa4O9\":\"Date de clôture de la vente\",\"5uo5eP\":\"Vente terminée\",\"Qm5XkZ\":\"Date de démarrage de la vente\",\"hVF4dJ\":\"Début des soldes\",\"hBsw5C\":\"Ventes terminées\",\"kpAzPe\":\"Démarrage des ventes\",\"P/wEOX\":\"San Francisco\",\"tfDRzk\":\"Enregistrer\",\"IUwGEM\":\"Enregistrer les modifications\",\"U65fiW\":\"Sauvegarder l'organisateur\",\"UGT5vp\":\"Save Settings\",\"ovB7m2\":\"Enregistrer les paramètres\",\"lBAlVv\":\"Recherche par nom, numéro de commande, numéro de participant ou e-mail...\",\"W4kWXJ\":\"Recherche par nom de participant, e-mail ou numéro de commande #...\",\"ulAuWO\":\"Recherche par nom d'événement ou par description...\",\"+pr/FY\":\"Recherche par nom d'événement...\",\"NQSiYb\":\"Recherche par nom ou par description...\",\"3zRbWw\":\"Recherche par nom, e-mail ou numéro de commande #...\",\"BiYOdA\":\"Recherche par nom...\",\"B1bB1j\":\"Recherche par numéro de commande #, nom ou e-mail...\",\"jA4hXE\":\"Recherche par sujet ou corps...\",\"YEjitp\":\"Recherche par sujet ou par contenu...\",\"HYnGee\":\"Recherche par nom de billet...\",\"YIix5Y\":\"Recherche...\",\"OeW+DS\":\"Couleur secondaire\",\"DnXcDK\":\"Couleur secondaire\",\"cZF6em\":\"Couleur secondaire du texte\",\"ZIgYeg\":\"Couleur secondaire du texte\",\"QuNKRX\":\"Sélectionner la caméra\",\"kWI/37\":\"Sélectionner l'organisateur\",\"hAjDQy\":\"Sélectionner le statut\",\"QYARw/\":\"Sélectionner un billet\",\"XH5juP\":\"Sélectionnez le niveau de billet\",\"nuWxSr\":\"Sélectionner les billets\",\"O/7I0o\":\"Sélectionner...\",\"JlFcis\":\"Envoyer\",\"qKWv5N\":[\"Envoyer une copie à <0>\",[\"0\"],\"0>\"],\"RktTWf\":\"Envoyer un message\",\"/mQ/tD\":\"Envoyer en tant que test. Le message sera envoyé à votre e-mail au lieu de celle des destinataires.\",\"471O/e\":\"Envoyer un e-mail de confirmation\",\"D7ZemV\":\"Send order confirmation and ticket email\",\"v1rRtW\":\"Send Test\",\"j1VfcT\":\"SEO Description\",\"/SIY6o\":\"SEO Keywords\",\"GfWoKv\":\"SEO Settings\",\"rXngLf\":\"SEO Title\",\"/jZOZa\":\"Service Fee\",\"vu4F0h\":\"Set a minimum price and let users donate more\",\"Bj/QGQ\":\"Set a minimum price and let users pay more if they choose\",\"nYNT+5\":\"Set up your event\",\"A8iqfq\":\"Set your event live\",\"Tz0i8g\":\"Settings\",\"Z8lGw6\":\"Share\",\"FFbYHm\":[\"Should this \",[\"type\"],\" be applied to all new tickets?\"],\"8vETh9\":\"Show\",\"smd87r\":\"Show available ticket quantity\",\"qDsmzu\":\"Show hidden questions\",\"fMPkxb\":\"Show more\",\"izwOOD\":\"Show tax and fees separately\",\"j3b+OW\":\"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.\",\"DvCwYF\":\"Sorry, this promo code is invalid'\",\"6a/UJE\":\"Sorry, this promo code is not recognized\",\"9rRZZ+\":\"Sorry, your order has expired. Please start a new order.\",\"a4SyEE\":\"Sorting is disabled while filters and sorting are applied\",\"4nG1lG\":\"Standard ticket with a fixed price\",\"D3iCkb\":\"Start Date\",\"RS0o7b\":\"State\",\"/2by1f\":\"State or Region\",\"uAQUqI\":\"Status\",\"UJmAAK\":\"Subject\",\"X2rrlw\":\"Subtotal\",\"b0HJ45\":[\"Success! \",[\"0\"],\" will receive an email shortly.\"],\"BJIEiF\":[\"Successfully \",[\"0\"],\" attendee\"],\"Ih8kN0\":[\"Successfully $\",[\"0\"],\" attendee\"],\"xHl17l\":[\"Successfully checked <0>\",[\"0\"],\" \",[\"1\"],\"0> \",[\"2\"]],\"OtgNFx\":\"Successfully confirmed email address\",\"IKwyaF\":\"Successfully confirmed email change\",\"zLmvhE\":\"Successfully created attendee\",\"9mZEgt\":\"Successfully Created Promo Code\",\"aIA9C4\":\"Successfully Created Question\",\"onFQYs\":\"Successfully Created Ticket\",\"Hgj/mB\":\"Successfully deleted ticket\",\"J3RJSZ\":\"Successfully updated attendee\",\"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\",\"70dYC8\":\"Successfully Updated Promo Code\",\"F+pJnL\":\"Successfully Updated Seo Settings\",\"g2lRrH\":\"Successfully updated ticket\",\"DXZRk5\":\"Suite 100\",\"GNcfRk\":\"Support Email\",\"JpohL9\":\"Tax\",\"geUFpZ\":\"Tax & Fees\",\"0RXCDo\":\"Tax or Fee deleted successfully\",\"ZowkxF\":\"Taxes\",\"EEZnW+\":\"Taxes & Fees\",\"qu6/03\":\"Taxes and Fees\",\"gVjSFp\":\"Taxes and Fees can be associated with tickets and will be added to the ticket price.\",\"e0ZSh4\":\"Text Colour\",\"gypigA\":\"That promo code is invalid\",\"0ozSQu\":\"The background color for the event homepage\",\"LbHWgW\":\"The background color for the ticket widget on the event homepage\",\"75Xclv\":\"The basic details of your event\",\"UNqHnV\":\"The color of the buttons on the event homepage\",\"0amhbL\":\"The color of the links on the event homepage\",\"QXlz+n\":\"The default currency for your events.\",\"mnafgQ\":\"The default timezone for your events.\",\"NlfnUd\":\"The link you clicked is invalid.\",\"FqjKfd\":\"The location of your event\",\"FeAfXO\":[\"The maximum numbers number of tickets for Generals is \",[\"0\"]],\"POEqXB\":\"The organizer details of your event\",\"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.\",\"TJZByZ\":\"The tax and fee to apply to this ticket. You can create new taxes and fees on the\",\"OJYwh9\":\"The taxes and fees to apply to this ticket. You can create new taxes and fees on the\",\"6BpBfZ\":\"The text color for the event homepage\",\"rljHp7\":\"The text color for the ticket widget on the event homepage\",\"s4di40\":\"The text to display in the 'Continue' button. Defaults to 'Continue'\",\"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\",\"wgAiDb\":\"The user must login to change their email.\",\"jvxN9/\":\"There are no tickets available for this event\",\"rMcHYt\":\"There is a refund pending. Please wait for it to complete before requesting another refund.\",\"hjLUr+\":\"There was an error loading this content. Please refresh the page and try again.\",\"68Axnm\":\"There was an error processing your request. Please try again.\",\"mVKOW6\":\"There was an error sending your message\",\"Um/adz\":\"These allow multiple selections\",\"vWeHWp\":\"These colors are not saved in our system.\",\"7qzHGS\":\"These colors are not saved in our system. They are only used to generate the widget.\",\"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.\",\"CNk/ro\":\"This is an online event\",\"GabtCa\":\"This is the email address that will be used as the reply-to address for all emails sent from this event\",\"CKkb5E\":\"This message is how below the\",\"cHO4ec\":\"This message will be included in the footer of all emails sent from this event\",\"RjwlZt\":\"This order has already been paid.\",\"axERYu\":\"This order has already been paid. <0>View order details0>\",\"wY+HO9\":\"This order has already been processed.\",\"5K8REg\":\"This order has already been refunded.\",\"OiQMhP\":\"This order has been cancelled\",\"YyEJij\":\"This order has been cancelled.\",\"D44cEI\":\"This order has been completed.\",\"HILpDX\":\"This order is awaiting payment\",\"0vRWbB\":\"This order is awaiting payment.\",\"BdYtn9\":\"This order is complete\",\"e3uMJH\":\"This order is complete.\",\"YNKXOK\":\"This order is processing.\",\"LIjb4v\":\"This order is processing. TODO - a nice image and poll the API\",\"yPZN4i\":\"This order page is no longer available.\",\"5189cf\":\"This overrides all visibility settings and will hide the ticket from all customers.\",\"4vwjho\":\"This page has expired. <0>View order details0>\",\"Qt7RBu\":\"This question is only visible to the event organizer\",\"os29v1\":\"This reset password link is invalid or expired.\",\"WJqBqd\":\"This ticket cannot be deleted because it is\\nassociated with an order. You can hide it instead.\",\"ma6qdu\":\"This ticket is hidden from public view\",\"xJ8nzj\":\"This ticket is hidden unless targeted by a Promo Code\",\"IV9xTT\":\"This user is not active, as they have not accepted their invitation.\",\"5AnPaO\":\"ticket\",\"kjAL4v\":\"Ticket\",\"KosivG\":\"Ticket deleted successfully\",\"dtGC3q\":\"Ticket email has been resent to attendee\",\"USk+Mn\":\"Ticket page message\",\"mRM6XH\":\"Ticket Sales\",\"NirIiz\":\"Ticket Tier\",\"8jLPgH\":\"Ticket Type\",\"jqWDf9\":\"Ticket widget background color\",\"UrMVAz\":\"Ticket Widget Preview\",\"ngtDy7\":\"Ticket widget text color\",\"N+YYpo\":\"Ticket(s)\",\"6GQNLE\":\"Tickets\",\"54q0zp\":\"Tickets for\",\"i+idBz\":\"Tickets sold\",\"AGRilS\":\"Tickets Sold\",\"56Qw2C\":\"Tickets sorted successfully\",\"4f8A8M\":\"Tickets to which the promo code applies (Applies to all by default)\",\"xN9AhL\":[\"Tier \",[\"0\"]],\"oYaHuq\":\"Tiered Ticket\",\"XZrhpz\":\"Tiered Ticket - Coming Soon\",\"4M150e\":\"Tiered tickets allow you to offer multiple price options for the same ticket.\\nThis is perfect for early bird tickets, or offering different price\\noptions for different groups of people.\",\"jQoYTX\":\"Tiered tickets allow you to offer multiple price options for the same ticket. This is perfect for early bird tickets or offering different price options for different groups of people.\",\"s/0RpH\":\"Times used\",\"40Gx0U\":\"Timezone\",\"oDGm7V\":\"TIP\",\"MHrjPM\":\"Title\",\"xdA/+p\":\"Tools\",\"72c5Qo\":\"Total\",\"BxsfMK\":\"Total Fees\",\"mpB/d9\":\"Total order amount\",\"m3FM1g\":\"Total refunded\",\"GBBIy+\":\"Total remaining\",\"/SgoNA\":\"Total Tax\",\"+zy2Nq\":\"Type\",\"mLGbAS\":[\"Unable to \",[\"0\"],\" attendee\"],\"/cSMqv\":\"Unable to create question. Please check the your details\",\"nNdxt9\":\"Unable to create ticket. Please check the your details\",\"MH/lj8\":\"Unable to update question. Please check the your details\",\"Mqy/Zy\":\"United States\",\"NIuIk1\":\"Unlimited\",\"oMcLhS\":\"Unlimited ticket quantity available\",\"E0q9qH\":\"Unlimited usages allowed\",\"ia8YsC\":\"Upcoming\",\"L/gNNk\":[\"Update \",[\"0\"]],\"+qqX74\":\"Update event name, description and dates\",\"vXPSuB\":\"Update profile\",\"gsehpV\":\"Upload an image to be displayed on the event page\",\"BNBfrU\":\"Upload Cover\",\"UtDm3q\":\"URL copied to clipboard\",\"e5lF64\":\"Usage Example\",\"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 Settings0>\",\"vgwVkd\":\"UTC\",\"khBZkl\":\"VAT\",\"E/9LUk\":\"Venue Name\",\"AM+zF3\":\"View attendee\",\"e4mhwd\":\"View event homepage\",\"/5PEQz\":\"View event page\",\"fFornT\":\"View full message\",\"YIsEhQ\":\"View map\",\"Ep3VfY\":\"View on Google Maps\",\"AMkkeL\":\"View order\",\"Y8s4f6\":\"View order details\",\"tF+VVr\":\"VIP Ticket\",\"2q/Q7x\":\"Visibility\",\"vmOFL/\":\"We could not process your payment. Please try again or contact support.\",\"1E0vyy\":\"We couldn't load the data. Please try again.\",\"VGioT0\":\"We recommend dimensions of 2160px by 1080px, 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\"],\" 👋\"],\"wjqPqF\":\"What are Tiered Tickets?\",\"5iXvHA\":\"What is a Tiered Ticketing?\",\"MhhnvW\":\"What tickets does this code apply to? (Applies to all by default)\",\"dCil3h\":\"What tickets should this question be apply to?\",\"Rb0XUE\":\"What time will you be arriving?\",\"5N4wLD\":\"What type of question is this?\",\"S+OdxP\":\"Who is organizing this event?\",\"LINr2M\":\"Who is this message to?\",\"nWhye/\":\"Who should be asked this question?\",\"vVGiM4\":\"Who type of question is this?\",\"onLsWS\":\"Whoops! something went wrong. Please try again or contact support if the problem persists.\",\"AHXN2z\":\"Widget\",\"AU/8QR\":\"Widget Configuration\",\"VxFvXQ\":\"Widget Embed\",\"v1P7Gm\":\"Widget Settings\",\"b4itZn\":\"Working\",\"hqmXmc\":\"Working...\",\"l75CjT\":\"Yes\",\"QcwyCh\":\"Yes, remove them\",\"P+Sty0\":[\"You are changing your email to <0>\",[\"0\"],\"0>.\"],\"4ysd6z\":\"You can connecting using this Zoom link...\",\"9HGdDw\":\"You can create a promo code which targets this ticket on the\",\"KRhIxT\":\"You can now start receiving payments through Stripe.\",\"UqVaVO\":\"You cannot change the ticket type as there are attendees associated with this ticket.\",\"zQ8idk\":\"You cannot change the ticket type because there are already tickets sold for this ticket.\",\"3vRX5A\":\"You cannot delete this price tier because there are already tickets sold for this tier. You can hide it instead.\",\"RCC09s\":\"You cannot edit a default question\",\"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.\",\"XoeazJ\":\"You have no attendee questions. Attendee questions are asked once per attendee.\",\"CoZHDB\":\"You have no order questions.\",\"FZKDIe\":\"You have no order questions. Order questions are asked once per order.\",\"15qAvl\":\"You have no pending email change.\",\"n81Qk8\":\"You have not completed your Stripe Connect setup\",\"jxsiqJ\":\"You have not connected your Stripe account\",\"183zcL\":\"You have taxes and fees added to a Free Ticket. Would you like to remove or obscure them?\",\"2v5MI1\":\"You haven't sent any messages yet. You can send messages to all attendees, or to specific ticket 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\",\"LRguuL\":\"You must have at least one tier\",\"8/eLoa\":\"You need to verify your account before you can send messages.\",\"WHXRMI\":\"You'll need at least one ticket to get started. Free, paid or let the user decide what to pay.\",\"bdg03s\":\"Your account email in outgoing emails.\",\"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\"],\"0> is pending. Please check your email to confirm\"],\"yZfBoy\":\"Your message has been sent\",\"la26JS\":\"Your order is in progress\",\"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.\",\"cJ4Y4R\":\"Your refund is processing.\",\"IFHV2p\":\"Your ticket for\",\"3k7HDY\":\"Zip\",\"BM/KQm\":\"Zip or Postal Code\",\"VftCuk\":\"Zoom link, Google Meet link, etc.\",\"Rzj20H\":\"Le mot de passe doit comporter un minimum de 8 caractères\",\"ySU+JY\":\"your@email.com\"}")};
\ No newline at end of file
diff --git a/frontend/src/locales/fr.po b/frontend/src/locales/fr.po
index 73fa3fa6..bc4c54d6 100644
--- a/frontend/src/locales/fr.po
+++ b/frontend/src/locales/fr.po
@@ -22,8 +22,8 @@ msgid "'There\\'s nothing to show yet'"
msgstr "Il n'y a rien à afficher pour l'instant"
#: src/components/common/QuestionsTable/index.tsx:267
-msgid "{0, plural, one {# hidden question} other {# hidden questions}}"
-msgstr "{0, pluriel, un {# hidden question} autre {# hidden questions}}"
+#~ msgid "{0, plural, one {# hidden question} other {# hidden questions}}"
+#~ msgstr "{0, pluriel, un {# hidden question} autre {# hidden questions}}"
#: src/components/common/AttendeeTable/index.tsx:113
#~ msgid "{0}"
@@ -49,6 +49,10 @@ msgstr "{0} mis à jour avec succès"
msgid "{0}'s Events"
msgstr "Les événements de {0}"
+#: src/components/common/QuestionsTable/index.tsx:267
+msgid "{0}{1}"
+msgstr ""
+
#: src/components/modals/RefundOrderModal/index.tsx:121
msgid "{message}"
msgstr "{message}"
@@ -347,7 +351,7 @@ msgstr "Tous les participants à cet événement"
msgid "All Events"
msgstr "Tous les évènements"
-#: src/components/common/PromoCodeTable/index.tsx:128
+#: src/components/common/PromoCodeTable/index.tsx:130
msgid "All Tickets"
msgstr "Tous les billets"
@@ -429,7 +433,7 @@ msgstr "Toutes les questions des détenteurs de billets seront envoyées à cett
msgid "Appearance"
msgstr "Apparence"
-#: src/components/routes/ticket-widget/SelectTickets/index.tsx:359
+#: src/components/routes/ticket-widget/SelectTickets/index.tsx:357
msgid "applied"
msgstr "appliquée"
@@ -437,7 +441,7 @@ msgstr "appliquée"
#~ msgid "Apply"
#~ msgstr "Appliquer"
-#: src/components/routes/ticket-widget/SelectTickets/index.tsx:386
+#: src/components/routes/ticket-widget/SelectTickets/index.tsx:385
msgid "Apply Promo Code"
msgstr "Appliquer le code promo"
@@ -453,7 +457,7 @@ msgstr "Êtes-vous sûr de vouloir activer ce participant?"
msgid "Are you sure you want to cancel this attendee? This will void their ticket"
msgstr "Êtes-vous sûr de vouloir annuler ce participant ? Cela annulera son billet."
-#: src/components/common/PromoCodeTable/index.tsx:34
+#: src/components/common/PromoCodeTable/index.tsx:36
msgid "Are you sure you want to delete this promo code?"
msgstr "Etes-vous sûr de vouloir supprimer ce code promo ?"
@@ -485,8 +489,8 @@ msgstr "Participant"
msgid "Attendee Details"
msgstr "Détails sur les participants"
-#: src/components/common/QuestionsTable/index.tsx:306
-#: src/components/common/QuestionsTable/index.tsx:347
+#: src/components/common/QuestionsTable/index.tsx:309
+#: src/components/common/QuestionsTable/index.tsx:350
msgid "Attendee questions"
msgstr "Questions des participants"
@@ -621,7 +625,7 @@ msgstr "L'autorisation de la caméra a été refusée. <0>Demander l'autorisatio
#~ msgstr "Impossible de charger les événements"
#: src/components/common/AttendeeTable/index.tsx:211
-#: src/components/common/PromoCodeTable/index.tsx:37
+#: src/components/common/PromoCodeTable/index.tsx:39
#: src/utilites/confirmationDialog.tsx:11
msgid "Cancel"
msgstr "Annuler"
@@ -728,7 +732,7 @@ msgstr "Effacer le texte de recherche"
msgid "click here"
msgstr "cliquez ici"
-#: src/components/common/PromoCodeTable/index.tsx:95
+#: src/components/common/PromoCodeTable/index.tsx:97
msgid "Click to copy"
msgstr "cliquer pour copier"
@@ -741,7 +745,7 @@ msgstr "Fermer"
msgid "Close sidebar"
msgstr "Fermer la barre latérale"
-#: src/components/common/PromoCodeTable/index.tsx:66
+#: src/components/common/PromoCodeTable/index.tsx:68
#: src/components/forms/PromoCodeForm/index.tsx:33
msgid "Code"
msgstr "Code"
@@ -883,7 +887,7 @@ msgstr "Continuer vers le paiement"
msgid "Copied"
msgstr "Copié"
-#: src/components/common/PromoCodeTable/index.tsx:103
+#: src/components/common/PromoCodeTable/index.tsx:105
msgid "copied to clipboard"
msgstr "copié dans le presse-papiers"
@@ -899,7 +903,7 @@ msgstr "Copier les détails à tous les participants"
msgid "Copy Link"
msgstr "Copier le lien"
-#: src/components/common/PromoCodeTable/index.tsx:172
+#: src/components/common/PromoCodeTable/index.tsx:176
msgid "Copy URL"
msgstr "Copier l'URL"
@@ -924,7 +928,7 @@ msgstr "Couverture"
msgid "Create {0}"
msgstr "Créer {0}"
-#: src/components/common/PromoCodeTable/index.tsx:54
+#: src/components/common/PromoCodeTable/index.tsx:56
msgid "Create a Promo Code"
msgstr "Créer un code promo"
@@ -1051,7 +1055,7 @@ msgstr "Personnalisez la page de votre événement pour qu'elle corresponde à v
#: src/components/common/AttendeeTable/index.tsx:205
#: src/components/common/OrdersTable/index.tsx:131
-#: src/components/common/PromoCodeTable/index.tsx:176
+#: src/components/common/PromoCodeTable/index.tsx:180
#: src/components/common/QuestionsTable/index.tsx:113
#: src/components/common/TicketsTable/SortableTicket/index.tsx:193
msgid "Danger zone"
@@ -1073,12 +1077,12 @@ msgstr "Date et heure"
#~ msgid "Deactivate user"
#~ msgstr "Désactiver l'utilisateur"
-#: src/components/common/PromoCodeTable/index.tsx:37
+#: src/components/common/PromoCodeTable/index.tsx:39
#: src/components/common/TaxAndFeeList/index.tsx:73
msgid "Delete"
msgstr "Supprimer"
-#: src/components/common/PromoCodeTable/index.tsx:180
+#: src/components/common/PromoCodeTable/index.tsx:184
msgid "Delete code"
msgstr "Supprimer le code"
@@ -1121,7 +1125,7 @@ msgstr "Détails"
#~ msgid "Disable code"
#~ msgstr "Désactiver le code"
-#: src/components/common/PromoCodeTable/index.tsx:67
+#: src/components/common/PromoCodeTable/index.tsx:69
msgid "Discount"
msgstr "Remise"
@@ -1145,13 +1149,17 @@ msgstr "Rejeter"
msgid "Don't have an account? <0>Sign Up0>"
msgstr "Vous n'avez pas de compte? <0>S'inscrire0>"
+#: src/components/forms/TicketForm/index.tsx:139
+msgid "Donation / Pay what you'd like ticket"
+msgstr ""
+
#: src/components/routes/ticket-widget/SelectTickets/Prices/Tiered/index.tsx:59
#~ msgid "Donation amount"
#~ msgstr "Montant du don"
#: src/components/forms/TicketForm/index.tsx:139
-msgid "Donation Ticket"
-msgstr "Billet de donation"
+#~ msgid "Donation Ticket"
+#~ msgstr "Billet de donation"
#: src/components/routes/ticket-widget/OrderSummaryAndTickets/index.tsx:91
#~ msgid "Download Tickets PDF"
@@ -1202,7 +1210,7 @@ msgstr "Modifier un participant"
msgid "Edit Attendee"
msgstr "Modifier un participant"
-#: src/components/common/PromoCodeTable/index.tsx:167
+#: src/components/common/PromoCodeTable/index.tsx:169
msgid "Edit Code"
msgstr "Modifier un code"
@@ -1398,7 +1406,7 @@ msgstr "Statut de l'événement mis à jour"
msgid "Events"
msgstr "Evénements"
-#: src/components/common/PromoCodeTable/index.tsx:70
+#: src/components/common/PromoCodeTable/index.tsx:72
msgid "Expires"
msgstr "Échéance"
@@ -1476,7 +1484,7 @@ msgstr "Prénom"
msgid "First name must be between 1 and 50 characters"
msgstr "Le prénom doit comporter entre 1 et 50 caractères"
-#: src/components/common/QuestionsTable/index.tsx:327
+#: src/components/common/QuestionsTable/index.tsx:330
msgid "First Name, Last Name, and Email Address are default questions and are always included in the checkout process."
msgstr "Le prénom, le nom de famille et l'e-mail sont des questions par défaut et sont toujours inclus dans le processus de paiement."
@@ -1555,7 +1563,7 @@ msgstr "Chiffre d'affaires"
msgid "Guests"
msgstr "Invités"
-#: src/components/routes/ticket-widget/SelectTickets/index.tsx:354
+#: src/components/routes/ticket-widget/SelectTickets/index.tsx:352
msgid "Have a promo code?"
msgstr "Avez vous un code de réduction?"
@@ -1605,7 +1613,7 @@ msgstr "Masquer"
msgid "Hide getting started page"
msgstr "Masquer la page de démarrage"
-#: src/components/common/QuestionsTable/index.tsx:273
+#: src/components/common/QuestionsTable/index.tsx:276
msgid "Hide hidden questions"
msgstr "Masquer les questions cachées"
@@ -1891,7 +1899,7 @@ msgstr "Rendre cette question obligatoire"
#: src/components/common/EventCard/index.tsx:78
#: src/components/common/OrdersTable/index.tsx:94
#: src/components/common/OrdersTable/index.tsx:109
-#: src/components/common/PromoCodeTable/index.tsx:164
+#: src/components/common/PromoCodeTable/index.tsx:166
#: src/components/common/TicketsTable/SortableTicket/index.tsx:171
#: src/components/layouts/Event/index.tsx:38
msgid "Manage"
@@ -2064,7 +2072,7 @@ msgstr "Le nom doit comporter moins de 150 caractères"
msgid "Navigate to Attendee"
msgstr "Naviguer vers le participant"
-#: src/components/common/PromoCodeTable/index.tsx:155
+#: src/components/common/PromoCodeTable/index.tsx:157
#: src/components/routes/account/ManageAccount/sections/Users/index.tsx:101
msgid "Never"
msgstr "Jamais"
@@ -2108,7 +2116,7 @@ msgstr "Aucun événement à afficher"
msgid "No orders to show"
msgstr "Aucune commande à afficher"
-#: src/components/common/PromoCodeTable/index.tsx:43
+#: src/components/common/PromoCodeTable/index.tsx:45
msgid "No Promo Codes to show"
msgstr "Aucun code promo à afficher"
@@ -2136,7 +2144,7 @@ msgstr "Aucune taxe ou frais n'a été ajouté."
msgid "No tickets to show"
msgstr "Pas de billets à montrer"
-#: src/components/common/PromoCodeTable/index.tsx:79
+#: src/components/common/PromoCodeTable/index.tsx:81
msgid "None"
msgstr "Aucun"
@@ -2256,8 +2264,8 @@ msgstr "Détails de la commande {0}"
msgid "Order has been canceled and the order owner has been notified."
msgstr "La commande a été annulée et le propriétaire de la commande a été informé."
-#: src/components/common/QuestionsTable/index.tsx:291
-#: src/components/common/QuestionsTable/index.tsx:333
+#: src/components/common/QuestionsTable/index.tsx:294
+#: src/components/common/QuestionsTable/index.tsx:336
msgid "Order questions"
msgstr "Questions relatives à la commande"
@@ -2517,7 +2525,7 @@ msgstr "Propulsé par Stripe"
msgid "Pre Checkout message"
msgstr "Message de précommande"
-#: src/components/common/QuestionsTable/index.tsx:325
+#: src/components/common/QuestionsTable/index.tsx:328
msgid "Preview"
msgstr "Prévisualisation"
@@ -2585,7 +2593,7 @@ msgstr "Page des codes promotionnels"
msgid "Promo Codes"
msgstr "Codes promotionnels"
-#: src/components/common/PromoCodeTable/index.tsx:48
+#: src/components/common/PromoCodeTable/index.tsx:50
msgid "Promo codes can be used to offer discounts, presale access, or provide special access to your event."
msgstr "Les codes promotionnels peuvent être utilisés pour offrir des réductions, des préventes ou un accès spécial à votre événement."
@@ -2653,11 +2661,11 @@ msgstr "Remboursé"
msgid "Register"
msgstr "Registre"
-#: src/components/routes/ticket-widget/SelectTickets/index.tsx:363
+#: src/components/routes/ticket-widget/SelectTickets/index.tsx:361
msgid "remove"
msgstr "supprimer"
-#: src/components/routes/ticket-widget/SelectTickets/index.tsx:364
+#: src/components/routes/ticket-widget/SelectTickets/index.tsx:362
msgid "Remove"
msgstr "Supprimer"
@@ -2949,7 +2957,7 @@ msgstr "Voir"
msgid "Show available ticket quantity"
msgstr "Afficher la quantité de billets disponibles"
-#: src/components/common/QuestionsTable/index.tsx:273
+#: src/components/common/QuestionsTable/index.tsx:276
msgid "Show hidden questions"
msgstr "Afficher les questions cachées"
@@ -3518,11 +3526,11 @@ msgstr "Aperçu du widget des billets"
#~ msgid "Ticket widget text color"
#~ msgstr "Couleur du texte du widget Billet"
-#: src/components/common/PromoCodeTable/index.tsx:145
+#: src/components/common/PromoCodeTable/index.tsx:147
msgid "Ticket(s)"
msgstr "Billet(s)"
-#: src/components/common/PromoCodeTable/index.tsx:69
+#: src/components/common/PromoCodeTable/index.tsx:71
#: src/components/layouts/Event/index.tsx:41
#: src/components/layouts/EventHomepage/index.tsx:80
#: src/components/routes/event/tickets.tsx:37
@@ -3573,7 +3581,7 @@ msgstr "Les billets à plusieurs niveaux vous permettent de proposer plusieurs o
#~ msgid "Tiered tickets allow you to offer multiple price options for the same ticket. This is perfect for early bird tickets or offering different price options for different groups of people."
#~ msgstr "Les billets à paliers vous permettent d'offrir plusieurs options de prix pour le même billet. C'est idéal pour les billets à tarif préférentiel ou pour offrir différentes options de prix à différents groupes de personnes."
-#: src/components/common/PromoCodeTable/index.tsx:68
+#: src/components/common/PromoCodeTable/index.tsx:70
msgid "Times used"
msgstr "Délais d'utilisation"
@@ -3659,7 +3667,7 @@ msgstr "Illimité"
#~ msgid "Unlimited ticket quantity available"
#~ msgstr "Nombre illimité de billets disponibles"
-#: src/components/common/PromoCodeTable/index.tsx:123
+#: src/components/common/PromoCodeTable/index.tsx:125
msgid "Unlimited usages allowed"
msgstr "Utilisations illimitées autorisées"
@@ -3687,6 +3695,10 @@ msgstr "Mise à jour du profil"
msgid "Upload Cover"
msgstr "Télécharger la couverture"
+#: src/components/common/PromoCodeTable/index.tsx:174
+msgid "URL copied to clipboard"
+msgstr ""
+
#: src/components/common/WidgetEditor/index.tsx:295
msgid "Usage Example"
msgstr "Exemple d'utilisation"
@@ -3953,7 +3965,7 @@ msgstr "Vous avez déjà accepté cette invitation. Veuillez vous connecter pour
msgid "You have connected your Stripe account"
msgstr "Vous avez connecté votre compte Stripe"
-#: src/components/common/QuestionsTable/index.tsx:316
+#: src/components/common/QuestionsTable/index.tsx:319
msgid "You have no attendee questions."
msgstr "Vous n'avez pas de questions de participants."
@@ -3961,7 +3973,7 @@ msgstr "Vous n'avez pas de questions de participants."
#~ msgid "You have no attendee questions. Attendee questions are asked once per attendee."
#~ msgstr "Vous n'avez pas de questions de participants. Les questions des participants sont posées une fois par participant."
-#: src/components/common/QuestionsTable/index.tsx:301
+#: src/components/common/QuestionsTable/index.tsx:304
msgid "You have no order questions."
msgstr "Vous n'avez pas de questions sur la commande."
diff --git a/frontend/src/locales/pt-br.js b/frontend/src/locales/pt-br.js
index 8a935142..60a48395 100644
--- a/frontend/src/locales/pt-br.js
+++ b/frontend/src/locales/pt-br.js
@@ -1 +1 @@
-/*eslint-disable*/module.exports={messages:JSON.parse("{\"1bpx9A\":\"...\",\"f8qS7T\":\"'There\\\\'s nothing to show yet'\",\"4zldrf\":[[\"0\",\"plural\",{\"one\":[\"#\",\" hidden question\"],\"other\":[\"#\",\" hidden questions\"]}]],\"J/hVSQ\":[[\"0\"]],\"KMgp2+\":[[\"0\"],\" available\"],\"tmew5X\":[[\"0\"],\" checked in\"],\"Pmr5xp\":[[\"0\"],\" created successfully\"],\"FImCSc\":[[\"0\"],\" updated successfully\"],\"KOr9b4\":[[\"0\"],\"'s Events\"],\"wapGcj\":[[\"message\"]],\"fyE7Au\":[[\"minutes\"],\" minutes and \",[\"seconds\"],\" seconds\"],\"NlQ0cx\":[[\"organizerName\"],\"'s first event\"],\"OXku3b\":\"<0>https://0>your-website.com\",\"E15xs8\":\"⚡️ Set up your event\",\"FL6OwU\":\"✉️ Confirm your email address\",\"y1NShf\":\"🎉 Congratulation on creating an event!\",\"BN0OQd\":\"🎉 Congratulations on creating an event!\",\"fAv9QG\":\"🎟️ Add tickets\",\"4WT5tD\":\"🎨 Customize your event page\",\"3VPPdS\":\"💳 Connect with Stripe\",\"s4Tgn6\":\"📢 Promote your event\",\"cjdktw\":\"🚀 Set your event live\",\"rmelwV\":\"0 minutes and 0 seconds\",\"UQ7pBY\":\"0.50 for $0.50\",\"i1+xzD\":\"1.75 for 1.75%\",\"i0puaE\":\"10.00\",\"W9+fkZ\":\"10001\",\"qdfdgM\":\"123 Main Street\",\"IoRZzD\":\"20\",\"+H1RMb\":\"2024-01-01 10:00\",\"Q/T49U\":\"2024-01-01 18:00\",\"hMT8+2\":\"94103\",\"d9El7Q\":[\"A default \",[\"type\"],\" is automaticaly applied to all new tickets. You can override this on a per ticket basis.\"],\"SMUbbQ\":\"A Dropdown input allows only one selection\",\"qv4bfj\":\"A fee, like a booking fee or a service fee\",\"Pgaiuj\":\"A fixed amount per ticket. E.g, $0.50 per ticket\",\"f4vJgj\":\"A multi line text input\",\"ySO/4f\":\"A percentage of the ticket price. E.g., 3.5% of the ticket price\",\"WXeXGB\":\"A promo code with no discount can be used to reveal hidden tickets.\",\"GMhWB5\":\"A Radio option allows has multiple options but only one can be selected.\",\"CBt3s7\":\"A Radio Option allows only one selection\",\"AG/qmQ\":\"A Radio option has multiple options but only one can be selected.\",\"7g61G9\":\"A short description of Awesome Events Ltd.\",\"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\",\"zCk10D\":\"A single question per attendee. E.g, What is your preferred meal?\",\"ap3v36\":\"A single question per order. E.g, What is your company name?\",\"RlJmQg\":\"A standard tax, like VAT or GST\",\"pDwHGk\":\"About hi.events\",\"uIKNjo\":\"About the event\",\"bfXQ+N\":\"Accept Invitation\",\"iwyhk4\":\"Access to the VIP area...\",\"AeXO77\":\"Account\",\"0b79Xf\":\"Account Email\",\"lkNdiH\":\"Account Name\",\"Puv7+X\":\"Account Settings\",\"OmylXO\":\"Account updated successfully\",\"7L01XJ\":\"Actions\",\"FQBaXG\":\"Activate\",\"F6pfE9\":\"Active\",\"m16xKo\":\"Add\",\"LKNynS\":\"Add a cover image, description, and more to make your event stand out.\",\"gMK0ps\":\"Add event details and and manage event settings.\",\"Fb+SDI\":\"Add More tickets\",\"ApsD9J\":\"Add New\",\"TZxnm8\":\"Add Option\",\"Cw27zP\":\"Add question\",\"yWiPh+\":\"Add Tax or Fee\",\"BGD9Yt\":\"Add tickets\",\"goOKRY\":\"Add tier\",\"p59pEv\":\"Additional Details\",\"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.\",\"CPXP5Z\":\"Affiliates\",\"W7AfhC\":\"All attendees of this event\",\"QsYjci\":\"All Events\",\"/twVAS\":\"All Tickets\",\"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..\",\"8wYDMp\":\"Already have an account?\",\"ApOYO8\":\"Amazing, Event, Keywords...\",\"hehnjM\":\"Amount\",\"TRYjHa\":[\"amount in \",[\"0\"]],\"R2O9Rg\":[\"Amount paid (\",[\"0\"],\")\"],\"tLjOgo\":[\"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\",\"er3d/4\":\"An error occurred while sorting the tickets. Please try again or refresh the page\",\"hhvESd\":\"An event is the actual event you are hosting\",\"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.\",\"j4DliD\":\"Any queries from ticket 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\",\"DB8zMK\":\"Apply\",\"GctSSm\":\"Apply Promo Code\",\"jcnZEw\":[\"Apply this \",[\"type\"],\" to all new tickets\"],\"q7TRd7\":\"Are you sure you want to activate this attendee?\",\"/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\",\"2xEpch\":\"Ask once per attendee\",\"LBLOqH\":\"Ask once per order\",\"ss9PbX\":\"Attendee\",\"m0CFV2\":\"Attendee Details\",\"lXcSD2\":\"Attendee questions\",\"VvYqMB\":\"Attendee questions are asked once per attendee. By default, people are asked for their first name, last name, and email address.\",\"spxPEv\":\"Attendee questions are asked once per attendee. By default, we ask for the attendee's first name, last name, and email address.\",\"9SZT4E\":\"Attendees\",\"5UbY+B\":\"Attendees with a specific ticket\",\"IMJ6rh\":\"Auto Resize\",\"vZ5qKF\":\"Automatically resize the widget height based on the content. When disabled, the widget will fill the height of the container.\",\"lXkUEV\":\"Availability\",\"ioG+xt\":\"Awaiting Payment\",\"3PmQfI\":\"Awesome Event\",\"kNmmvE\":\"Awesome Events Ltd.\",\"Yrbm6T\":\"Awesome Organizer Ltd.\",\"9002sI\":\"Back to all events\",\"0TGkYM\":\"Back to event homepage\",\"A302fe\":\"Back to event page\",\"VCoEm+\":\"Back to login\",\"MLZyiY\":\"Background color\",\"k1bLf+\":\"Background Color\",\"I7xjqg\":\"Background Type\",\"EOUool\":\"Basic Details\",\"7EGQKA\":\"Because you are the account owner, you cannot change your role or status.\",\"1mwMl+\":\"Before you send!\",\"wVfiR2\":\"Before you're event can go live, there's a few thing to do.\",\"/yeZ20\":\"Before your event can go live, there are a few things you need to do.\",\"1xAcxY\":\"Begin selling tickets in minutes\",\"R+w/Va\":\"Billing\",\"Ptp9MF\":\"Button color\",\"whqocw\":\"By registering you agree to our <0>Terms of Service0> and <1>Privacy Policy1>.\",\"bcCn6r\":\"Calculation Type\",\"+8bmSu\":\"California\",\"iStTQt\":\"Camera permission was denied. <0>Request Permission0> again, or if this doesn't work, you will need to <1>grant this page1> access to your camera in your browser settings.\",\"Jzn1qy\":\"Can't load events\",\"dEgA5A\":\"Cancel\",\"Gjt/py\":\"Cancel email change\",\"tVJk4q\":\"Cancel order\",\"Os6n2a\":\"Cancel Order\",\"Mz7Ygx\":[\"Cancel Order \",[\"0\"]],\"Ud7zwq\":\"Canceling will cancel all tickets associated with this order, and release the tickets back into the available pool.\",\"vv7kpg\":\"Cancelled\",\"77/YgG\":\"Change Cover\",\"GptGxg\":\"Change password\",\"QndF4b\":\"check in\",\"xMDm+I\":\"Check In\",\"9FVFym\":\"check out\",\"gXcPxc\":\"Check-in\",\"Y3FYXy\":\"Check-In\",\"CNafaC\":\"Checkbox options allow multiple selections\",\"SpabVf\":\"Checkboxes\",\"CRu4lK\":\"Checked In\",\"/ydvvl\":\"Checkout Messaging\",\"1WnhCL\":\"Checkout Settings\",\"JjkX4+\":\"Choose a color for your background\",\"/Jizh9\":\"Choose an account\",\"jJGoVv\":\"Choose what notifications you want to receive\",\"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\",\"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\",\"DwF9eH\":\"Component Code\",\"7VpPHA\":\"Confirm\",\"ZaEJZM\":\"Confirm Email Change\",\"yjkELF\":\"Confirm New Password\",\"xnWESi\":\"Confirm password\",\"p2/GCq\":\"Confirm Password\",\"wnDgGj\":\"Confirming email address...\",\"DnLC08\":\"Congratulation on creating an event!\",\"pbAk7a\":\"Connect Stripe\",\"UMGQOh\":\"Connect with Stripe\",\"QKLP1W\":\"Connect your Stripe account to start receiving payments.\",\"5lcVkL\":\"Connection Details\",\"i3p844\":\"Contact email\",\"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\",\"RGVUUI\":\"Continue To Payment\",\"6V3Ea3\":\"Copied\",\"T5rdis\":\"copied to clipboard\",\"he3ygx\":\"Copy\",\"8+cOrS\":\"Copy details to all attendees\",\"ENCIQz\":\"Copy Link\",\"E6nRW7\":\"Copy URL\",\"JNCzPW\":\"Country\",\"IF7RiR\":\"Cover\",\"P0rbCt\":\"Cover Image\",\"hYgDIe\":\"Create\",\"b9XOHo\":[\"Create \",[\"0\"]],\"6kdXbW\":\"Create a Promo Code\",\"n5pRtF\":\"Create a Ticket\",\"X6sRve\":[\"Create an account or <0>\",[\"0\"],\"0> to get started\"],\"nx+rqg\":\"create an organizer\",\"ipP6Ue\":\"Create Attendee\",\"uN355O\":\"Create Event\",\"BOqY23\":\"Create new\",\"kpJAeS\":\"Create Organizer\",\"sYpiZP\":\"Create Promo Code\",\"a6YrKg\":\"Create promo codes\",\"n6H6AO\":\"Create promo codes to offer discounts to your attendees.\",\"B3Mkdt\":\"Create Question\",\"UKfi21\":\"Create Tax or Fee\",\"Tg323g\":\"Create Ticket\",\"agZ87r\":\"Create tickets for your event, set prices, and manage available quantity.\",\"d+F6q9\":\"Created\",\"Q2lUR2\":\"Currency\",\"DCKkhU\":\"Current Password\",\"uIElGP\":\"Custom Maps URL\",\"876pfE\":\"Customer\",\"QOg2Sf\":\"Customize the email and notification settings for this event\",\"Lu75d1\":\"Customize the email settings for this event\",\"RaxMyF\":\"Customize the event homepage and checkout experience\",\"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\",\"7p5kLi\":\"Dashboard\",\"mYGY3B\":\"Date\",\"JvUngl\":\"Date & Time\",\"RiXc4g\":\"Deactivate user\",\"cnGeoo\":\"Delete\",\"WHf154\":\"Delete code\",\"heJllm\":\"Delete Cover\",\"KWa0gi\":\"Delete Image\",\"IatsLx\":\"Delete question\",\"GnyEfA\":\"Delete ticket\",\"E33LRn\":\"Delete user\",\"Nu4oKW\":\"Description\",\"s9iD5d\":\"Description should be less than 50,000 characters\",\"URmyfc\":\"Details\",\"x8uDKb\":\"Disable code\",\"H6Ma8Z\":\"Discount\",\"ypJ62C\":\"Discount %\",\"3LtiBI\":[\"Discount in \",[\"0\"]],\"C8JLas\":\"Discount Type\",\"1QfxQT\":\"Dismiss\",\"cVq+ga\":\"Don't have an account? <0>Sign Up0>\",\"++S5i/\":\"Donation amount\",\"OO7MG7\":\"Donation Ticket\",\"0pEVi2\":\"Download Tickets PDF\",\"uABpqP\":\"Drag and drop or click\",\"3z2ium\":\"Drag to sort\",\"6skwyH\":\"Drop an image, or click here to replace the Cover Image\",\"S37RRV\":\"Drop an image, or click here to upload the Cover Image\",\"CfKofC\":\"Dropdown selection\",\"vi8Q/5\":\"Duplicate event\",\"7Cx5It\":\"Early bird\",\"ePK91l\":\"Edit\",\"N6j2JH\":[\"Edit \",[\"0\"]],\"kNGp1D\":\"Edit attendee\",\"t2bbp8\":\"Edit Attendee\",\"iFgaVN\":\"Edit Code\",\"jrBSO1\":\"Edit Organizer\",\"9BdS63\":\"Edit Promo Code\",\"O0CE67\":\"Edit question\",\"EzwCw7\":\"Edit Question\",\"d+nnyk\":\"Edit Ticket\",\"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\",\"WiKda6\":\"Email Configuration\",\"APuxIE\":\"Email confirmation resent\",\"YaCgdO\":\"Email confirmation resent successfully\",\"jyt+cx\":\"Email footer message\",\"I6F3cp\":\"Email not verified\",\"G5zNMX\":\"Email Settings\",\"NTZ/NX\":\"Embed Code\",\"4rnJq4\":\"Embed Script\",\"VFv2ZC\":\"End Date\",\"237hSL\":\"Ended\",\"MhVoma\":\"Enter an amount excluding taxes and fees.\",\"3Z223G\":\"Error confirming email address\",\"a6gga1\":\"Error confirming email change\",\"5/63nR\":\"EUR\",\"0pC/y6\":\"Event\",\"nuoP/j\":\"Event created successfully\",\"CFLUfD\":\"Event created successfully 🎉\",\"0Zptey\":\"Event Defaults\",\"Xe3XMd\":\"Event is not visible to the public\",\"4pKXJS\":\"Event is visible to the public\",\"ClwUUD\":\"Event location & venue details\",\"OopDbA\":\"Event page\",\"JyD0LH\":\"Event Settings\",\"4/If97\":\"Event status update failed. Please try again later\",\"btxLWj\":\"Event status updated\",\"tst44n\":\"Events\",\"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.\",\"9zSt4h\":\"Failed to export attendees. Please try again.\",\"2uGNuE\":\"Failed to export orders. Please try again.\",\"ZQ15eN\":\"Failed to resend ticket email\",\"PLUB/s\":\"Fee\",\"YirHq7\":\"Feedback\",\"/mfICu\":\"Fees\",\"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.\",\"QWa3Sk\":\"First Name, Last Name, and Email Address are default questions that are always included in the checkout process.\",\"TpqW74\":\"Fixed\",\"irpUxR\":\"Fixed amount\",\"TF9opW\":\"Flash is not available on this device\",\"UNMVei\":\"Forgot password?\",\"2POOFK\":\"Free\",\"/4rQr+\":\"Free Ticket\",\"01my8x\":\"Free ticket, no payment information required\",\"ejVYRQ\":\"From\",\"u6FPxT\":\"Get Tickets\",\"4GLxhy\":\"Getting Started\",\"4D3rRj\":\"Go back to profile\",\"cQPKZt\":\"Go to Dashboard\",\"9LCqFI\":\"Go to event homepage\",\"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.\",\"Ow9Hz5\":[\"Hi.Events Conference \",[\"0\"]],\"verBst\":\"Hi.Events Conference Center\",\"6eMEQO\":\"hi.events logo\",\"C4qOW8\":\"Hidden from public view\",\"k3dfFD\":\"Hidden questions are only visible to the event organizer and not to the customer.\",\"EeNE0j\":\"Hidden will not be shown to customers.\",\"vLyv1R\":\"Hide\",\"Mkkvfd\":\"Hide getting started page\",\"mFn5Xz\":\"Hide hidden questions\",\"SCimta\":\"Hide the getting started page from the sidebar\",\"Da29Y6\":\"Hide this question\",\"fsi6fC\":\"Hide this ticket from customers\",\"fvDQhr\":\"Hide this tier from users\",\"Fhzoa8\":\"Hide ticket after sale end date\",\"yhm3J/\":\"Hide ticket before sale start date\",\"k7/oGT\":\"Hide ticket unless user has applicable promo code\",\"L0ZOiu\":\"Hide ticket when sold out\",\"uno73L\":\"Hiding a ticket will prevent users from seeing it on the event page.\",\"tj6Gob\":\"Homepage & Checkout\",\"m07jN3\":\"Homepage & Checkout Settings\",\"ZOBwQn\":\"Homepage Design\",\"PRuBTd\":\"Homepage Designer\",\"YjVNGZ\":\"Homepage Preview\",\"c3E/kw\":\"Homer\",\"id+NIk\":\"How many minutes the customer has to complete their order\",\"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?\",\"fYyXCd\":\"https://example-maps-service.com/...\",\"uOXLV3\":\"I agree to the <0>terms and conditions0>\",\"sIxFk5\":\"I agree to the terms and conditions\",\"Crwwhn\":[\"If a new tab did not open, please <0>\",[\"0\"],\".0>\"],\"93DUnd\":[\"If a new tab did not open, please <0><1>\",[\"0\"],\"1>.0>\"],\"9gtsTP\":\"If blank, the address will be used to generate a Google map link\",\"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\",\"Gyl1h8\":\"Image dimensions must be at least 600px by 300px\",\"TiGacZ\":\"Image dimensions must be at least 900px by 450px\",\"UnTvkH\":\"Image dimensions must be between 3000px by 2000px. With a max height of 2000px and max width of 3000px\",\"uPEIvq\":\"Image must be less than 5MB\",\"AGZmwV\":\"Image uploaded successfully\",\"ibi52/\":\"Image width must be at least 900px and height at least 50px\",\"NoNwIX\":\"Inactive\",\"T0K0yl\":\"Inactive users cannot log in.\",\"OFAmKP\":\"Include connection details for your online event\",\"BfPBBG\":\"Include connection details for your online event. These details will be after successful registration.\",\"6+pAOx\":\"Include connection details for your online event. These details will be shown after successful registration.\",\"evpD4c\":\"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\",\"nbfdhU\":\"Integrations\",\"OyLdaz\":\"Invitation resent!\",\"HE6KcK\":\"Invitation revoked!\",\"SQKPvQ\":\"Invite User\",\"PgdQrx\":\"Issue refund\",\"KFXip/\":\"John\",\"XcgRvb\":\"Johnson\",\"1IWWYX\":[\"KittenTech Conference \",[\"0\"]],\"ZgJEMX\":\"KittenTech Conference Center\",\"87a/t/\":\"Label\",\"I3yitW\":\"Last login\",\"1ZaQUH\":\"Last name\",\"UXBCwc\":\"Last Name\",\"CKcupn\":\"Latest Orders\",\"tITjB1\":\"Learn more about Stripe\",\"c+gAXc\":\"Let's get started by creating your first event\",\"vR92Yn\":\"Let's get started by creating your first organizer\",\"QfrKvi\":\"Link color\",\"wJijgU\":\"Location\",\"sQia9P\":\"Log in\",\"zUDyah\":\"Logging in\",\"z0t9bb\":\"Login\",\"nOhz3x\":\"Logout\",\"F2jAFv\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nam placerat elementum...\",\"XkhEf9\":\"Lorem ipsum...\",\"MU3ijv\":\"Make this question mandatory\",\"wckWOP\":\"Manage\",\"8mmINh\":\"Manage billing information and view invoices\",\"jWIznR\":\"Manage default settings for new events\",\"n4SpU5\":\"Manage event\",\"wqyqaF\":\"Manage general account settings\",\"cQrNR3\":\"Manage Profile\",\"f92Qak\":\"Manage taxes and fees which can be applied to tickets\",\"PlTcVr\":\"Manage taxes and fees which can be applied to your tickets\",\"ophZVW\":\"Manage tickets\",\"Wsx7Iu\":\"Manage users and their permissions\",\"DdHfeW\":\"Manage your account details and default settings\",\"QHcjP+\":\"Manage your billing and payment details\",\"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\",\"lzcrX3\":\"Manually adding an attendee will adjust ticket quantity.\",\"g9dPPQ\":\"Maximum Per Order\",\"l5OcwO\":\"Message attendee\",\"Gv5AMu\":\"Message Attendees\",\"1jRD0v\":\"Message attendees with specific tickets\",\"Lvi+gV\":\"Message buyer\",\"tNZzFb\":\"Message Content\",\"lYDV/s\":\"Message individual attendees\",\"V7DYWd\":\"Message Sent\",\"t7TeQU\":\"Messages\",\"xFRMlO\":\"Minimum Per Order\",\"QYcUEf\":\"Minimum Price\",\"mYLhkl\":\"Miscellaneous Settings\",\"KYveV8\":\"Multi line text box\",\"SVuGaP\":\"Multiple price options, users can choose which to pay\",\"6wbTro\":\"Multiple price options. Perfect for early bird tickets etc.\",\"/bhMdO\":\"My amazing event description...\",\"vX8/tc\":\"My amazing event title...\",\"hKtWk2\":\"My Profile\",\"pRjx4L\":\"Nam placerat elementum...\",\"6YtxFj\":\"Name\",\"hVuv90\":\"Name should be less than 150 characters\",\"AIUkyF\":\"Navigate to Attendee\",\"qqeAJM\":\"Never\",\"7vhWI8\":\"New Password\",\"m920rF\":\"New York\",\"1UzENP\":\"No\",\"Wjz5KP\":\"No Attendees to show\",\"fFeCKc\":\"No Discount\",\"Z6ILSe\":\"No events for this organizer\",\"yAlJXG\":\"No events to show\",\"KPWxKD\":\"No messages to show\",\"J2LkP8\":\"No orders to show\",\"+Y976X\":\"No Promo Codes to show\",\"Ev2r9A\":\"No results\",\"RHyZUL\":\"No search results.\",\"cU1op4\":\"No Taxes or Fees have been added yet.\",\"RY2eP1\":\"No Taxes or Fees have been added.\",\"uR2eFu\":\"No tickets available\",\"b7JZFg\":\"No tickets to show\",\"EdQY6l\":\"None\",\"OJx3wK\":\"Not available\",\"x5+Lcz\":\"Not Checked In\",\"Scbrsn\":\"Not On Sale\",\"hFwWnI\":\"Notification Settings\",\"xXqEPO\":\"Notify buyer of refund\",\"YpN29s\":\"Notify organizer of new orders\",\"qeQhNj\":\"Now let's create your first event\",\"2NPDz1\":\"On sale\",\"Ldu/RI\":\"On Sale\",\"Ug4SfW\":\"Once you create an event, you'll see it here.\",\"+P/tII\":\"Once you're ready, set your event live and start selling tickets.\",\"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.\",\"OdnLE4\":\"Open sidebar\",\"ZZEYpT\":[\"Option \",[\"i\"]],\"0zpgxV\":\"Options\",\"BzEFor\":\"or\",\"UYUgdb\":\"Order\",\"mm+eaX\":\"Order #\",\"B3gPuX\":\"Order Cancelled\",\"SIbded\":\"Order Completed\",\"q/CcwE\":\"Order Date\",\"Tol4BF\":\"Order Details\",\"L4kzeZ\":[\"Order Details \",[\"0\"]],\"WbImlQ\":\"Order has been canceled and the order owner has been notified.\",\"VCOi7U\":\"Order questions\",\"wg9MPp\":\"Order questions are asked once per order. By default, people are asked for their first name, last name, and email address.\",\"+KNVxX\":\"Order questions are asked once per order. By default, we ask for the first name, last name, and email address.\",\"TPoYsF\":\"Order Reference\",\"GX6dZv\":\"Order Summary\",\"tDTq0D\":\"Order timeout\",\"1h+RBg\":\"Orders\",\"mz+c33\":\"Orders Created\",\"G5RhpL\":\"Organizer\",\"m/ebSk\":\"Organizer Details\",\"mYygCM\":\"Organizer is required\",\"Pa6G7v\":\"Organizer Name\",\"J2cXxX\":\"Organizers can only manage events and tickets. 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\",\"2w/FiJ\":\"Paid Ticket\",\"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\",\"iq5IUr\":\"Pause Ticket\",\"621rYf\":\"Payment\",\"JhtZAK\":\"Payment Failed\",\"xgav5v\":\"Payment succeeded!\",\"CcK+Ft\":\"PDF\",\"att1Hj\":\"percent\",\"/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\",\"q40YFl\":\"Please continue your order in the new tab\",\"ZJG4Di\":\"Please ensure you only send emails directly related to the order. Promotional emails\\nshould not be sent using this form.\",\"o+HaYe\":\"Please enter a valid promo code\",\"HnNept\":\"Please enter your new password\",\"5FSIzj\":\"Please Note\",\"MA04r/\":\"Please remove filters and set sorting to \\\"Homepage order\\\" to enable sorting\",\"pJLvdS\":\"Please select\",\"yygcoG\":\"Please select at least one ticket\",\"igBrCH\":\"Please verify your email address to access all features\",\"qCJyMx\":\"Post Checkout message\",\"g2UNkE\":\"Powered by\",\"Qs7yI0\":\"Powered By\",\"lqAWKB\":\"Powered by <0>Hi.Events0> 👋\",\"3n47kV\":\"Powered By Hi.Events\",\"ddi4j4\":\"Powered by Stripe\",\"Rs7IQv\":\"Pre Checkout message\",\"rdUucN\":\"Preview\",\"a7u1N9\":\"Price\",\"CmoB9j\":\"Price display mode\",\"Q8PWaJ\":\"Price tiers\",\"a5jvSX\":\"Price Tiers\",\"6RmHKN\":\"Primary Color\",\"G/ZwV1\":\"Primary Colour\",\"8cBtvm\":\"Primary Text Color\",\"BZz12Q\":\"Print\",\"MT7dxz\":\"Print All Tickets\",\"vERlcd\":\"Profile\",\"kUlL8W\":\"Profile updated successfully\",\"cl5WYc\":[\"Promo \",[\"promo_code\"],\" code applied\"],\"ZXpm3a\":[\"Promo \",[\"promoCode\"],\" code applied\"],\"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.\",\"812gwg\":\"Purchase License\",\"LkMOWF\":\"Quantity Available\",\"XKJuAX\":\"Question deleted\",\"oQvMPn\":\"Question Title\",\"enzGAL\":\"Questions\",\"K885Eq\":\"Questions sorted successfully\",\"OMJ035\":\"Radio Option\",\"C4TjpG\":\"Read less\",\"I3QpvQ\":\"Recipient\",\"N2C89m\":\"Reference\",\"gxFu7d\":[\"Refund amount (\",[\"0\"],\")\"],\"n10yGu\":\"Refund order\",\"zPH6gp\":\"Refund Order\",\"/BI0y9\":\"Refunded\",\"fgLNSM\":\"Register\",\"tasfos\":\"remove\",\"t/YqKh\":\"Remove\",\"RloWNu\":\"Reply to email\",\"EGm34e\":\"Resend confirmation email\",\"lnrkNz\":\"Resend email confirmation\",\"wIa8Qe\":\"Resend invitation\",\"VeKsnD\":\"Resend order email\",\"dFuEhO\":\"Resend ticket email\",\"o6+Y6d\":\"Resending...\",\"RfwZxd\":\"Reset password\",\"KbS2K9\":\"Reset Password\",\"vtc20Z\":\"Return to event page\",\"8YBH95\":\"Revenue\",\"PO/sOY\":\"Revoke invitation\",\"GDvlUT\":\"Role\",\"ELa4O9\":\"Sale End Date\",\"5uo5eP\":\"Sale ended\",\"Qm5XkZ\":\"Sale Start Date\",\"hVF4dJ\":\"Sale starts\",\"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\",\"lBAlVv\":\"Seach by name, order #, attendee # or email...\",\"W4kWXJ\":\"Search by attendee name, email or order #...\",\"ulAuWO\":\"Search by event name or description...\",\"+pr/FY\":\"Search by event name...\",\"NQSiYb\":\"Search by name or description...\",\"3zRbWw\":\"Search by name, email, or order #...\",\"BiYOdA\":\"Search by name...\",\"B1bB1j\":\"Search by order #, name or email...\",\"jA4hXE\":\"Search by subject or body...\",\"YEjitp\":\"Search by subject or content...\",\"HYnGee\":\"Search by ticket name...\",\"YIix5Y\":\"Search...\",\"OeW+DS\":\"Secondary color\",\"DnXcDK\":\"Secondary Color\",\"cZF6em\":\"Secondary text color\",\"ZIgYeg\":\"Secondary Text Color\",\"QuNKRX\":\"Select Camera\",\"kWI/37\":\"Select organizer\",\"hAjDQy\":\"Select status\",\"QYARw/\":\"Select Ticket\",\"XH5juP\":\"Select Ticket Tier\",\"nuWxSr\":\"Select Tickets\",\"O/7I0o\":\"Select...\",\"JlFcis\":\"Send\",\"qKWv5N\":[\"Send a copy to <0>\",[\"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.\",\"471O/e\":\"Send confirmation email\",\"D7ZemV\":\"Send order confirmation and ticket email\",\"v1rRtW\":\"Send Test\",\"j1VfcT\":\"SEO Description\",\"/SIY6o\":\"SEO Keywords\",\"GfWoKv\":\"SEO Settings\",\"rXngLf\":\"SEO Title\",\"/jZOZa\":\"Service Fee\",\"vu4F0h\":\"Set a minimum price and let users donate more\",\"nYNT+5\":\"Set up your event\",\"A8iqfq\":\"Set your event live\",\"Tz0i8g\":\"Settings\",\"Z8lGw6\":\"Share\",\"FFbYHm\":[\"Should this \",[\"type\"],\" be applied to all new tickets?\"],\"8vETh9\":\"Show\",\"smd87r\":\"Show available ticket quantity\",\"qDsmzu\":\"Show hidden questions\",\"fMPkxb\":\"Show more\",\"izwOOD\":\"Show tax and fees separately\",\"j3b+OW\":\"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.\",\"DvCwYF\":\"Sorry, this promo code is invalid'\",\"6a/UJE\":\"Sorry, this promo code is not recognized\",\"9rRZZ+\":\"Sorry, your order has expired. Please start a new order.\",\"a4SyEE\":\"Sorting is disabled while filters and sorting are applied\",\"4nG1lG\":\"Standard ticket with a fixed price\",\"D3iCkb\":\"Start Date\",\"RS0o7b\":\"State\",\"/2by1f\":\"State or Region\",\"uAQUqI\":\"Status\",\"UJmAAK\":\"Subject\",\"X2rrlw\":\"Subtotal\",\"b0HJ45\":[\"Success! \",[\"0\"],\" will receive an email shortly.\"],\"BJIEiF\":[\"Successfully \",[\"0\"],\" attendee\"],\"Ih8kN0\":[\"Successfully $\",[\"0\"],\" attendee\"],\"xHl17l\":[\"Successfully checked <0>\",[\"0\"],\" \",[\"1\"],\"0> \",[\"2\"]],\"OtgNFx\":\"Successfully confirmed email address\",\"IKwyaF\":\"Successfully confirmed email change\",\"zLmvhE\":\"Successfully created attendee\",\"9mZEgt\":\"Successfully Created Promo Code\",\"aIA9C4\":\"Successfully Created Question\",\"onFQYs\":\"Successfully Created Ticket\",\"Hgj/mB\":\"Successfully deleted ticket\",\"J3RJSZ\":\"Successfully updated attendee\",\"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\",\"70dYC8\":\"Successfully Updated Promo Code\",\"F+pJnL\":\"Successfully Updated Seo Settings\",\"g2lRrH\":\"Successfully updated ticket\",\"DXZRk5\":\"Suite 100\",\"GNcfRk\":\"Support Email\",\"JpohL9\":\"Tax\",\"geUFpZ\":\"Tax & Fees\",\"0RXCDo\":\"Tax or Fee deleted successfully\",\"ZowkxF\":\"Taxes\",\"EEZnW+\":\"Taxes & Fees\",\"qu6/03\":\"Taxes and Fees\",\"gVjSFp\":\"Taxes and Fees can be associated with tickets and will be added to the ticket price.\",\"e0ZSh4\":\"Text Colour\",\"gypigA\":\"That promo code is invalid\",\"0ozSQu\":\"The background color for the event homepage\",\"LbHWgW\":\"The background color for the ticket widget on the event homepage\",\"75Xclv\":\"The basic details of your event\",\"UNqHnV\":\"The color of the buttons on the event homepage\",\"0amhbL\":\"The color of the links on the event homepage\",\"QXlz+n\":\"The default currency for your events.\",\"mnafgQ\":\"The default timezone for your events.\",\"NlfnUd\":\"The link you clicked is invalid.\",\"FqjKfd\":\"The location of your event\",\"FeAfXO\":[\"The maximum numbers number of tickets for Generals is \",[\"0\"]],\"POEqXB\":\"The organizer details of your event\",\"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.\",\"TJZByZ\":\"The tax and fee to apply to this ticket. You can create new taxes and fees on the\",\"OJYwh9\":\"The taxes and fees to apply to this ticket. You can create new taxes and fees on the\",\"6BpBfZ\":\"The text color for the event homepage\",\"rljHp7\":\"The text color for the ticket widget on the event homepage\",\"s4di40\":\"The text to display in the 'Continue' button. Defaults to 'Continue'\",\"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\",\"wgAiDb\":\"The user must login to change their email.\",\"jvxN9/\":\"There are no tickets available for this event\",\"rMcHYt\":\"There is a refund pending. Please wait for it to complete before requesting another refund.\",\"hjLUr+\":\"There was an error loading this content. Please refresh the page and try again.\",\"68Axnm\":\"There was an error processing your request. Please try again.\",\"mVKOW6\":\"There was an error sending your message\",\"Um/adz\":\"These allow multiple selections\",\"vWeHWp\":\"These colors are not saved in our system.\",\"7qzHGS\":\"These colors are not saved in our system. They are only used to generate the widget.\",\"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.\",\"CNk/ro\":\"This is an online event\",\"GabtCa\":\"This is the email address that will be used as the reply-to address for all emails sent from this event\",\"CKkb5E\":\"This message is how below the\",\"cHO4ec\":\"This message will be included in the footer of all emails sent from this event\",\"RjwlZt\":\"This order has already been paid.\",\"axERYu\":\"This order has already been paid. <0>View order details0>\",\"wY+HO9\":\"This order has already been processed.\",\"5K8REg\":\"This order has already been refunded.\",\"OiQMhP\":\"This order has been cancelled\",\"YyEJij\":\"This order has been cancelled.\",\"D44cEI\":\"This order has been completed.\",\"HILpDX\":\"This order is awaiting payment\",\"0vRWbB\":\"This order is awaiting payment.\",\"BdYtn9\":\"This order is complete\",\"e3uMJH\":\"This order is complete.\",\"YNKXOK\":\"This order is processing.\",\"LIjb4v\":\"This order is processing. TODO - a nice image and poll the API\",\"yPZN4i\":\"This order page is no longer available.\",\"5189cf\":\"This overrides all visibility settings and will hide the ticket from all customers.\",\"4vwjho\":\"This page has expired. <0>View order details0>\",\"Qt7RBu\":\"This question is only visible to the event organizer\",\"os29v1\":\"This reset password link is invalid or expired.\",\"WJqBqd\":\"This ticket cannot be deleted because it is\\nassociated with an order. You can hide it instead.\",\"ma6qdu\":\"This ticket is hidden from public view\",\"xJ8nzj\":\"This ticket is hidden unless targeted by a Promo Code\",\"IV9xTT\":\"This user is not active, as they have not accepted their invitation.\",\"5AnPaO\":\"ticket\",\"kjAL4v\":\"Ticket\",\"KosivG\":\"Ticket deleted successfully\",\"dtGC3q\":\"Ticket email has been resent to attendee\",\"USk+Mn\":\"Ticket page message\",\"mRM6XH\":\"Ticket Sales\",\"NirIiz\":\"Ticket Tier\",\"8jLPgH\":\"Ticket Type\",\"jqWDf9\":\"Ticket widget background color\",\"UrMVAz\":\"Ticket Widget Preview\",\"ngtDy7\":\"Ticket widget text color\",\"N+YYpo\":\"Ticket(s)\",\"6GQNLE\":\"Tickets\",\"54q0zp\":\"Tickets for\",\"i+idBz\":\"Tickets sold\",\"AGRilS\":\"Tickets Sold\",\"56Qw2C\":\"Tickets sorted successfully\",\"4f8A8M\":\"Tickets to which the promo code applies (Applies to all by default)\",\"xN9AhL\":[\"Tier \",[\"0\"]],\"oYaHuq\":\"Tiered Ticket\",\"XZrhpz\":\"Tiered Ticket - Coming Soon\",\"4M150e\":\"Tiered tickets allow you to offer multiple price options for the same ticket.\\nThis is perfect for early bird tickets, or offering different price\\noptions for different groups of people.\",\"jQoYTX\":\"Tiered tickets allow you to offer multiple price options for the same ticket. This is perfect for early bird tickets or offering different price options for different groups of people.\",\"s/0RpH\":\"Times used\",\"40Gx0U\":\"Timezone\",\"oDGm7V\":\"TIP\",\"MHrjPM\":\"Title\",\"xdA/+p\":\"Tools\",\"72c5Qo\":\"Total\",\"BxsfMK\":\"Total Fees\",\"mpB/d9\":\"Total order amount\",\"m3FM1g\":\"Total refunded\",\"GBBIy+\":\"Total remaining\",\"/SgoNA\":\"Total Tax\",\"+zy2Nq\":\"Type\",\"mLGbAS\":[\"Unable to \",[\"0\"],\" attendee\"],\"/cSMqv\":\"Unable to create question. Please check the your details\",\"nNdxt9\":\"Unable to create ticket. Please check the your details\",\"MH/lj8\":\"Unable to update question. Please check the your details\",\"Mqy/Zy\":\"United States\",\"NIuIk1\":\"Unlimited\",\"oMcLhS\":\"Unlimited ticket quantity available\",\"E0q9qH\":\"Unlimited usages allowed\",\"ia8YsC\":\"Upcoming\",\"L/gNNk\":[\"Update \",[\"0\"]],\"+qqX74\":\"Update event name, description and dates\",\"vXPSuB\":\"Update profile\",\"gsehpV\":\"Upload an image to be displayed on the event page\",\"BNBfrU\":\"Upload Cover\",\"e5lF64\":\"Usage Example\",\"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 Settings0>\",\"vgwVkd\":\"UTC\",\"khBZkl\":\"VAT\",\"E/9LUk\":\"Venue Name\",\"AM+zF3\":\"View attendee\",\"e4mhwd\":\"View event homepage\",\"/5PEQz\":\"View event page\",\"fFornT\":\"View full message\",\"YIsEhQ\":\"View map\",\"Ep3VfY\":\"View on Google Maps\",\"AMkkeL\":\"View order\",\"Y8s4f6\":\"View order details\",\"tF+VVr\":\"VIP Ticket\",\"2q/Q7x\":\"Visibility\",\"vmOFL/\":\"We could not process your payment. Please try again or contact support.\",\"1E0vyy\":\"We couldn't load the data. Please try again.\",\"VGioT0\":\"We recommend dimensions of 2160px by 1080px, 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\"],\" 👋\"],\"wjqPqF\":\"What are Tiered Tickets?\",\"5iXvHA\":\"What is a Tiered Ticketing?\",\"MhhnvW\":\"What tickets does this code apply to? (Applies to all by default)\",\"dCil3h\":\"What tickets should this question be apply to?\",\"Rb0XUE\":\"What time will you be arriving?\",\"5N4wLD\":\"What type of question is this?\",\"S+OdxP\":\"Who is organizing this event?\",\"LINr2M\":\"Who is this message to?\",\"nWhye/\":\"Who should be asked this question?\",\"vVGiM4\":\"Who type of question is this?\",\"onLsWS\":\"Whoops! something went wrong. Please try again or contact support if the problem persists.\",\"AHXN2z\":\"Widget\",\"AU/8QR\":\"Widget Configuration\",\"VxFvXQ\":\"Widget Embed\",\"v1P7Gm\":\"Widget Settings\",\"b4itZn\":\"Working\",\"hqmXmc\":\"Working...\",\"l75CjT\":\"Yes\",\"QcwyCh\":\"Yes, remove them\",\"P+Sty0\":[\"You are changing your email to <0>\",[\"0\"],\"0>.\"],\"4ysd6z\":\"You can connecting using this Zoom link...\",\"9HGdDw\":\"You can create a promo code which targets this ticket on the\",\"KRhIxT\":\"You can now start receiving payments through Stripe.\",\"UqVaVO\":\"You cannot change the ticket type as there are attendees associated with this ticket.\",\"zQ8idk\":\"You cannot change the ticket type because there are already tickets sold for this ticket.\",\"3vRX5A\":\"You cannot delete this price tier because there are already tickets sold for this tier. You can hide it instead.\",\"RCC09s\":\"You cannot edit a default question\",\"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.\",\"XoeazJ\":\"You have no attendee questions. Attendee questions are asked once per attendee.\",\"CoZHDB\":\"You have no order questions.\",\"FZKDIe\":\"You have no order questions. Order questions are asked once per order.\",\"15qAvl\":\"You have no pending email change.\",\"n81Qk8\":\"You have not completed your Stripe Connect setup\",\"jxsiqJ\":\"You have not connected your Stripe account\",\"183zcL\":\"You have taxes and fees added to a Free Ticket. Would you like to remove or obscure them?\",\"2v5MI1\":\"You haven't sent any messages yet. You can send messages to all attendees, or to specific ticket 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\",\"LRguuL\":\"You must have at least one tier\",\"8/eLoa\":\"You need to verify your account before you can send messages.\",\"WHXRMI\":\"You'll need at least one ticket to get started. Free, paid or let the user decide what to pay.\",\"bdg03s\":\"Your account email in outgoing emails.\",\"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\"],\"0> is pending. Please check your email to confirm\"],\"yZfBoy\":\"Your message has been sent\",\"la26JS\":\"Your order is in progress\",\"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.\",\"cJ4Y4R\":\"Your refund is processing.\",\"IFHV2p\":\"Your ticket for\",\"3k7HDY\":\"Zip\",\"BM/KQm\":\"Zip or Postal Code\",\"VftCuk\":\"Zoom link, Google Meet link, etc.\",\"ySU+JY\":\"your@email.com\"}")};
\ No newline at end of file
+/*eslint-disable*/module.exports={messages:JSON.parse("{\"1bpx9A\":\"...\",\"f8qS7T\":\"'There\\\\'s nothing to show yet'\",\"4zldrf\":[[\"0\",\"plural\",{\"one\":[\"#\",\" hidden question\"],\"other\":[\"#\",\" hidden questions\"]}]],\"J/hVSQ\":[[\"0\"]],\"KMgp2+\":[[\"0\"],\" available\"],\"tmew5X\":[[\"0\"],\" checked in\"],\"Pmr5xp\":[[\"0\"],\" created successfully\"],\"FImCSc\":[[\"0\"],\" updated successfully\"],\"KOr9b4\":[[\"0\"],\"'s Events\"],\"qSiUsc\":[[\"0\"],[\"1\"]],\"wapGcj\":[[\"message\"]],\"fyE7Au\":[[\"minutes\"],\" minutes and \",[\"seconds\"],\" seconds\"],\"NlQ0cx\":[[\"organizerName\"],\"'s first event\"],\"OXku3b\":\"<0>https://0>your-website.com\",\"E15xs8\":\"⚡️ Set up your event\",\"FL6OwU\":\"✉️ Confirm your email address\",\"y1NShf\":\"🎉 Congratulation on creating an event!\",\"BN0OQd\":\"🎉 Congratulations on creating an event!\",\"fAv9QG\":\"🎟️ Add tickets\",\"4WT5tD\":\"🎨 Customize your event page\",\"3VPPdS\":\"💳 Connect with Stripe\",\"s4Tgn6\":\"📢 Promote your event\",\"cjdktw\":\"🚀 Set your event live\",\"rmelwV\":\"0 minutes and 0 seconds\",\"UQ7pBY\":\"0.50 for $0.50\",\"i1+xzD\":\"1.75 for 1.75%\",\"i0puaE\":\"10.00\",\"W9+fkZ\":\"10001\",\"qdfdgM\":\"123 Main Street\",\"IoRZzD\":\"20\",\"+H1RMb\":\"2024-01-01 10:00\",\"Q/T49U\":\"2024-01-01 18:00\",\"hMT8+2\":\"94103\",\"d9El7Q\":[\"A default \",[\"type\"],\" is automaticaly applied to all new tickets. You can override this on a per ticket basis.\"],\"SMUbbQ\":\"A Dropdown input allows only one selection\",\"qv4bfj\":\"A fee, like a booking fee or a service fee\",\"Pgaiuj\":\"A fixed amount per ticket. E.g, $0.50 per ticket\",\"f4vJgj\":\"A multi line text input\",\"ySO/4f\":\"A percentage of the ticket price. E.g., 3.5% of the ticket price\",\"WXeXGB\":\"A promo code with no discount can be used to reveal hidden tickets.\",\"GMhWB5\":\"A Radio option allows has multiple options but only one can be selected.\",\"CBt3s7\":\"A Radio Option allows only one selection\",\"AG/qmQ\":\"A Radio option has multiple options but only one can be selected.\",\"7g61G9\":\"A short description of Awesome Events Ltd.\",\"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\",\"zCk10D\":\"A single question per attendee. E.g, What is your preferred meal?\",\"ap3v36\":\"A single question per order. E.g, What is your company name?\",\"RlJmQg\":\"A standard tax, like VAT or GST\",\"pDwHGk\":\"About hi.events\",\"uIKNjo\":\"About the event\",\"bfXQ+N\":\"Accept Invitation\",\"iwyhk4\":\"Access to the VIP area...\",\"AeXO77\":\"Account\",\"0b79Xf\":\"Account Email\",\"lkNdiH\":\"Account Name\",\"Puv7+X\":\"Account Settings\",\"OmylXO\":\"Account updated successfully\",\"7L01XJ\":\"Actions\",\"FQBaXG\":\"Activate\",\"F6pfE9\":\"Active\",\"m16xKo\":\"Add\",\"LKNynS\":\"Add a cover image, description, and more to make your event stand out.\",\"gMK0ps\":\"Add event details and and manage event settings.\",\"Fb+SDI\":\"Add More tickets\",\"ApsD9J\":\"Add New\",\"TZxnm8\":\"Add Option\",\"Cw27zP\":\"Add question\",\"yWiPh+\":\"Add Tax or Fee\",\"BGD9Yt\":\"Add tickets\",\"goOKRY\":\"Add tier\",\"p59pEv\":\"Additional Details\",\"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.\",\"CPXP5Z\":\"Affiliates\",\"W7AfhC\":\"All attendees of this event\",\"QsYjci\":\"All Events\",\"/twVAS\":\"All Tickets\",\"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..\",\"8wYDMp\":\"Already have an account?\",\"ApOYO8\":\"Amazing, Event, Keywords...\",\"hehnjM\":\"Amount\",\"TRYjHa\":[\"amount in \",[\"0\"]],\"R2O9Rg\":[\"Amount paid (\",[\"0\"],\")\"],\"tLjOgo\":[\"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\",\"er3d/4\":\"An error occurred while sorting the tickets. Please try again or refresh the page\",\"hhvESd\":\"An event is the actual event you are hosting\",\"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.\",\"j4DliD\":\"Any queries from ticket 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\",\"DB8zMK\":\"Apply\",\"GctSSm\":\"Apply Promo Code\",\"jcnZEw\":[\"Apply this \",[\"type\"],\" to all new tickets\"],\"q7TRd7\":\"Are you sure you want to activate this attendee?\",\"/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\",\"2xEpch\":\"Ask once per attendee\",\"LBLOqH\":\"Ask once per order\",\"ss9PbX\":\"Attendee\",\"m0CFV2\":\"Attendee Details\",\"lXcSD2\":\"Attendee questions\",\"VvYqMB\":\"Attendee questions are asked once per attendee. By default, people are asked for their first name, last name, and email address.\",\"spxPEv\":\"Attendee questions are asked once per attendee. By default, we ask for the attendee's first name, last name, and email address.\",\"9SZT4E\":\"Attendees\",\"5UbY+B\":\"Attendees with a specific ticket\",\"IMJ6rh\":\"Auto Resize\",\"vZ5qKF\":\"Automatically resize the widget height based on the content. When disabled, the widget will fill the height of the container.\",\"lXkUEV\":\"Availability\",\"ioG+xt\":\"Awaiting Payment\",\"3PmQfI\":\"Awesome Event\",\"kNmmvE\":\"Awesome Events Ltd.\",\"Yrbm6T\":\"Awesome Organizer Ltd.\",\"9002sI\":\"Back to all events\",\"0TGkYM\":\"Back to event homepage\",\"A302fe\":\"Back to event page\",\"VCoEm+\":\"Back to login\",\"MLZyiY\":\"Background color\",\"k1bLf+\":\"Background Color\",\"I7xjqg\":\"Background Type\",\"EOUool\":\"Basic Details\",\"7EGQKA\":\"Because you are the account owner, you cannot change your role or status.\",\"1mwMl+\":\"Before you send!\",\"wVfiR2\":\"Before you're event can go live, there's a few thing to do.\",\"/yeZ20\":\"Before your event can go live, there are a few things you need to do.\",\"1xAcxY\":\"Begin selling tickets in minutes\",\"R+w/Va\":\"Billing\",\"Ptp9MF\":\"Button color\",\"whqocw\":\"By registering you agree to our <0>Terms of Service0> and <1>Privacy Policy1>.\",\"bcCn6r\":\"Calculation Type\",\"+8bmSu\":\"California\",\"iStTQt\":\"Camera permission was denied. <0>Request Permission0> again, or if this doesn't work, you will need to <1>grant this page1> access to your camera in your browser settings.\",\"Jzn1qy\":\"Can't load events\",\"dEgA5A\":\"Cancel\",\"Gjt/py\":\"Cancel email change\",\"tVJk4q\":\"Cancel order\",\"Os6n2a\":\"Cancel Order\",\"Mz7Ygx\":[\"Cancel Order \",[\"0\"]],\"Ud7zwq\":\"Canceling will cancel all tickets associated with this order, and release the tickets back into the available pool.\",\"vv7kpg\":\"Cancelled\",\"77/YgG\":\"Change Cover\",\"GptGxg\":\"Change password\",\"QndF4b\":\"check in\",\"xMDm+I\":\"Check In\",\"9FVFym\":\"check out\",\"gXcPxc\":\"Check-in\",\"Y3FYXy\":\"Check-In\",\"CNafaC\":\"Checkbox options allow multiple selections\",\"SpabVf\":\"Checkboxes\",\"CRu4lK\":\"Checked In\",\"/ydvvl\":\"Checkout Messaging\",\"1WnhCL\":\"Checkout Settings\",\"JjkX4+\":\"Choose a color for your background\",\"/Jizh9\":\"Choose an account\",\"jJGoVv\":\"Choose what notifications you want to receive\",\"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\",\"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\",\"DwF9eH\":\"Component Code\",\"7VpPHA\":\"Confirm\",\"ZaEJZM\":\"Confirm Email Change\",\"yjkELF\":\"Confirm New Password\",\"xnWESi\":\"Confirm password\",\"p2/GCq\":\"Confirm Password\",\"wnDgGj\":\"Confirming email address...\",\"DnLC08\":\"Congratulation on creating an event!\",\"pbAk7a\":\"Connect Stripe\",\"UMGQOh\":\"Connect with Stripe\",\"QKLP1W\":\"Connect your Stripe account to start receiving payments.\",\"5lcVkL\":\"Connection Details\",\"i3p844\":\"Contact email\",\"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\",\"RGVUUI\":\"Continue To Payment\",\"6V3Ea3\":\"Copied\",\"T5rdis\":\"copied to clipboard\",\"he3ygx\":\"Copy\",\"8+cOrS\":\"Copy details to all attendees\",\"ENCIQz\":\"Copy Link\",\"E6nRW7\":\"Copy URL\",\"JNCzPW\":\"Country\",\"IF7RiR\":\"Cover\",\"P0rbCt\":\"Cover Image\",\"hYgDIe\":\"Create\",\"b9XOHo\":[\"Create \",[\"0\"]],\"6kdXbW\":\"Create a Promo Code\",\"n5pRtF\":\"Create a Ticket\",\"X6sRve\":[\"Create an account or <0>\",[\"0\"],\"0> to get started\"],\"nx+rqg\":\"create an organizer\",\"ipP6Ue\":\"Create Attendee\",\"uN355O\":\"Create Event\",\"BOqY23\":\"Create new\",\"kpJAeS\":\"Create Organizer\",\"sYpiZP\":\"Create Promo Code\",\"a6YrKg\":\"Create promo codes\",\"n6H6AO\":\"Create promo codes to offer discounts to your attendees.\",\"B3Mkdt\":\"Create Question\",\"UKfi21\":\"Create Tax or Fee\",\"Tg323g\":\"Create Ticket\",\"agZ87r\":\"Create tickets for your event, set prices, and manage available quantity.\",\"d+F6q9\":\"Created\",\"Q2lUR2\":\"Currency\",\"DCKkhU\":\"Current Password\",\"uIElGP\":\"Custom Maps URL\",\"876pfE\":\"Customer\",\"QOg2Sf\":\"Customize the email and notification settings for this event\",\"Lu75d1\":\"Customize the email settings for this event\",\"RaxMyF\":\"Customize the event homepage and checkout experience\",\"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\",\"7p5kLi\":\"Dashboard\",\"mYGY3B\":\"Date\",\"JvUngl\":\"Date & Time\",\"RiXc4g\":\"Deactivate user\",\"cnGeoo\":\"Delete\",\"WHf154\":\"Delete code\",\"heJllm\":\"Delete Cover\",\"KWa0gi\":\"Delete Image\",\"IatsLx\":\"Delete question\",\"GnyEfA\":\"Delete ticket\",\"E33LRn\":\"Delete user\",\"Nu4oKW\":\"Description\",\"s9iD5d\":\"Description should be less than 50,000 characters\",\"URmyfc\":\"Details\",\"x8uDKb\":\"Disable code\",\"H6Ma8Z\":\"Discount\",\"ypJ62C\":\"Discount %\",\"3LtiBI\":[\"Discount in \",[\"0\"]],\"C8JLas\":\"Discount Type\",\"1QfxQT\":\"Dismiss\",\"cVq+ga\":\"Don't have an account? <0>Sign Up0>\",\"4+aC/x\":\"Donation / Pay what you'd like ticket\",\"++S5i/\":\"Donation amount\",\"OO7MG7\":\"Donation Ticket\",\"0pEVi2\":\"Download Tickets PDF\",\"uABpqP\":\"Drag and drop or click\",\"3z2ium\":\"Drag to sort\",\"6skwyH\":\"Drop an image, or click here to replace the Cover Image\",\"S37RRV\":\"Drop an image, or click here to upload the Cover Image\",\"CfKofC\":\"Dropdown selection\",\"vi8Q/5\":\"Duplicate event\",\"7Cx5It\":\"Early bird\",\"ePK91l\":\"Edit\",\"N6j2JH\":[\"Edit \",[\"0\"]],\"kNGp1D\":\"Edit attendee\",\"t2bbp8\":\"Edit Attendee\",\"iFgaVN\":\"Edit Code\",\"jrBSO1\":\"Edit Organizer\",\"9BdS63\":\"Edit Promo Code\",\"O0CE67\":\"Edit question\",\"EzwCw7\":\"Edit Question\",\"d+nnyk\":\"Edit Ticket\",\"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\",\"WiKda6\":\"Email Configuration\",\"APuxIE\":\"Email confirmation resent\",\"YaCgdO\":\"Email confirmation resent successfully\",\"jyt+cx\":\"Email footer message\",\"I6F3cp\":\"Email not verified\",\"G5zNMX\":\"Email Settings\",\"NTZ/NX\":\"Embed Code\",\"4rnJq4\":\"Embed Script\",\"VFv2ZC\":\"End Date\",\"237hSL\":\"Ended\",\"MhVoma\":\"Enter an amount excluding taxes and fees.\",\"3Z223G\":\"Error confirming email address\",\"a6gga1\":\"Error confirming email change\",\"5/63nR\":\"EUR\",\"0pC/y6\":\"Event\",\"nuoP/j\":\"Event created successfully\",\"CFLUfD\":\"Event created successfully 🎉\",\"0Zptey\":\"Event Defaults\",\"Xe3XMd\":\"Event is not visible to the public\",\"4pKXJS\":\"Event is visible to the public\",\"ClwUUD\":\"Event location & venue details\",\"OopDbA\":\"Event page\",\"JyD0LH\":\"Event Settings\",\"4/If97\":\"Event status update failed. Please try again later\",\"btxLWj\":\"Event status updated\",\"tst44n\":\"Events\",\"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.\",\"9zSt4h\":\"Failed to export attendees. Please try again.\",\"2uGNuE\":\"Failed to export orders. Please try again.\",\"ZQ15eN\":\"Failed to resend ticket email\",\"PLUB/s\":\"Fee\",\"YirHq7\":\"Feedback\",\"/mfICu\":\"Fees\",\"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.\",\"QWa3Sk\":\"First Name, Last Name, and Email Address are default questions that are always included in the checkout process.\",\"TpqW74\":\"Fixed\",\"irpUxR\":\"Fixed amount\",\"TF9opW\":\"Flash is not available on this device\",\"UNMVei\":\"Forgot password?\",\"2POOFK\":\"Free\",\"/4rQr+\":\"Free Ticket\",\"01my8x\":\"Free ticket, no payment information required\",\"ejVYRQ\":\"From\",\"u6FPxT\":\"Get Tickets\",\"4GLxhy\":\"Getting Started\",\"4D3rRj\":\"Go back to profile\",\"cQPKZt\":\"Go to Dashboard\",\"9LCqFI\":\"Go to event homepage\",\"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.\",\"Ow9Hz5\":[\"Hi.Events Conference \",[\"0\"]],\"verBst\":\"Hi.Events Conference Center\",\"6eMEQO\":\"hi.events logo\",\"C4qOW8\":\"Hidden from public view\",\"k3dfFD\":\"Hidden questions are only visible to the event organizer and not to the customer.\",\"EeNE0j\":\"Hidden will not be shown to customers.\",\"vLyv1R\":\"Hide\",\"Mkkvfd\":\"Hide getting started page\",\"mFn5Xz\":\"Hide hidden questions\",\"SCimta\":\"Hide the getting started page from the sidebar\",\"Da29Y6\":\"Hide this question\",\"fsi6fC\":\"Hide this ticket from customers\",\"fvDQhr\":\"Hide this tier from users\",\"Fhzoa8\":\"Hide ticket after sale end date\",\"yhm3J/\":\"Hide ticket before sale start date\",\"k7/oGT\":\"Hide ticket unless user has applicable promo code\",\"L0ZOiu\":\"Hide ticket when sold out\",\"uno73L\":\"Hiding a ticket will prevent users from seeing it on the event page.\",\"tj6Gob\":\"Homepage & Checkout\",\"m07jN3\":\"Homepage & Checkout Settings\",\"ZOBwQn\":\"Homepage Design\",\"PRuBTd\":\"Homepage Designer\",\"YjVNGZ\":\"Homepage Preview\",\"c3E/kw\":\"Homer\",\"id+NIk\":\"How many minutes the customer has to complete their order\",\"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?\",\"fYyXCd\":\"https://example-maps-service.com/...\",\"uOXLV3\":\"I agree to the <0>terms and conditions0>\",\"sIxFk5\":\"I agree to the terms and conditions\",\"Crwwhn\":[\"If a new tab did not open, please <0>\",[\"0\"],\".0>\"],\"93DUnd\":[\"If a new tab did not open, please <0><1>\",[\"0\"],\"1>.0>\"],\"9gtsTP\":\"If blank, the address will be used to generate a Google map link\",\"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\",\"Gyl1h8\":\"Image dimensions must be at least 600px by 300px\",\"TiGacZ\":\"Image dimensions must be at least 900px by 450px\",\"UnTvkH\":\"Image dimensions must be between 3000px by 2000px. With a max height of 2000px and max width of 3000px\",\"uPEIvq\":\"Image must be less than 5MB\",\"AGZmwV\":\"Image uploaded successfully\",\"ibi52/\":\"Image width must be at least 900px and height at least 50px\",\"NoNwIX\":\"Inactive\",\"T0K0yl\":\"Inactive users cannot log in.\",\"OFAmKP\":\"Include connection details for your online event\",\"BfPBBG\":\"Include connection details for your online event. These details will be after successful registration.\",\"6+pAOx\":\"Include connection details for your online event. These details will be shown after successful registration.\",\"evpD4c\":\"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\",\"nbfdhU\":\"Integrations\",\"OyLdaz\":\"Invitation resent!\",\"HE6KcK\":\"Invitation revoked!\",\"SQKPvQ\":\"Invite User\",\"PgdQrx\":\"Issue refund\",\"KFXip/\":\"John\",\"XcgRvb\":\"Johnson\",\"1IWWYX\":[\"KittenTech Conference \",[\"0\"]],\"ZgJEMX\":\"KittenTech Conference Center\",\"87a/t/\":\"Label\",\"I3yitW\":\"Last login\",\"1ZaQUH\":\"Last name\",\"UXBCwc\":\"Last Name\",\"CKcupn\":\"Latest Orders\",\"tITjB1\":\"Learn more about Stripe\",\"c+gAXc\":\"Let's get started by creating your first event\",\"vR92Yn\":\"Let's get started by creating your first organizer\",\"QfrKvi\":\"Link color\",\"wJijgU\":\"Location\",\"sQia9P\":\"Log in\",\"zUDyah\":\"Logging in\",\"z0t9bb\":\"Login\",\"nOhz3x\":\"Logout\",\"F2jAFv\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nam placerat elementum...\",\"XkhEf9\":\"Lorem ipsum...\",\"MU3ijv\":\"Make this question mandatory\",\"wckWOP\":\"Manage\",\"8mmINh\":\"Manage billing information and view invoices\",\"jWIznR\":\"Manage default settings for new events\",\"n4SpU5\":\"Manage event\",\"wqyqaF\":\"Manage general account settings\",\"cQrNR3\":\"Manage Profile\",\"f92Qak\":\"Manage taxes and fees which can be applied to tickets\",\"PlTcVr\":\"Manage taxes and fees which can be applied to your tickets\",\"ophZVW\":\"Manage tickets\",\"Wsx7Iu\":\"Manage users and their permissions\",\"DdHfeW\":\"Manage your account details and default settings\",\"QHcjP+\":\"Manage your billing and payment details\",\"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\",\"lzcrX3\":\"Manually adding an attendee will adjust ticket quantity.\",\"g9dPPQ\":\"Maximum Per Order\",\"l5OcwO\":\"Message attendee\",\"Gv5AMu\":\"Message Attendees\",\"1jRD0v\":\"Message attendees with specific tickets\",\"Lvi+gV\":\"Message buyer\",\"tNZzFb\":\"Message Content\",\"lYDV/s\":\"Message individual attendees\",\"V7DYWd\":\"Message Sent\",\"t7TeQU\":\"Messages\",\"xFRMlO\":\"Minimum Per Order\",\"QYcUEf\":\"Minimum Price\",\"mYLhkl\":\"Miscellaneous Settings\",\"KYveV8\":\"Multi line text box\",\"SVuGaP\":\"Multiple price options, users can choose which to pay\",\"6wbTro\":\"Multiple price options. Perfect for early bird tickets etc.\",\"/bhMdO\":\"My amazing event description...\",\"vX8/tc\":\"My amazing event title...\",\"hKtWk2\":\"My Profile\",\"pRjx4L\":\"Nam placerat elementum...\",\"6YtxFj\":\"Name\",\"hVuv90\":\"Name should be less than 150 characters\",\"AIUkyF\":\"Navigate to Attendee\",\"qqeAJM\":\"Never\",\"7vhWI8\":\"New Password\",\"m920rF\":\"New York\",\"1UzENP\":\"No\",\"Wjz5KP\":\"No Attendees to show\",\"fFeCKc\":\"No Discount\",\"Z6ILSe\":\"No events for this organizer\",\"yAlJXG\":\"No events to show\",\"KPWxKD\":\"No messages to show\",\"J2LkP8\":\"No orders to show\",\"+Y976X\":\"No Promo Codes to show\",\"Ev2r9A\":\"No results\",\"RHyZUL\":\"No search results.\",\"cU1op4\":\"No Taxes or Fees have been added yet.\",\"RY2eP1\":\"No Taxes or Fees have been added.\",\"uR2eFu\":\"No tickets available\",\"b7JZFg\":\"No tickets to show\",\"EdQY6l\":\"None\",\"OJx3wK\":\"Not available\",\"x5+Lcz\":\"Not Checked In\",\"Scbrsn\":\"Not On Sale\",\"hFwWnI\":\"Notification Settings\",\"xXqEPO\":\"Notify buyer of refund\",\"YpN29s\":\"Notify organizer of new orders\",\"qeQhNj\":\"Now let's create your first event\",\"2NPDz1\":\"On sale\",\"Ldu/RI\":\"On Sale\",\"Ug4SfW\":\"Once you create an event, you'll see it here.\",\"+P/tII\":\"Once you're ready, set your event live and start selling tickets.\",\"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.\",\"OdnLE4\":\"Open sidebar\",\"ZZEYpT\":[\"Option \",[\"i\"]],\"0zpgxV\":\"Options\",\"BzEFor\":\"or\",\"UYUgdb\":\"Order\",\"mm+eaX\":\"Order #\",\"B3gPuX\":\"Order Cancelled\",\"SIbded\":\"Order Completed\",\"q/CcwE\":\"Order Date\",\"Tol4BF\":\"Order Details\",\"L4kzeZ\":[\"Order Details \",[\"0\"]],\"WbImlQ\":\"Order has been canceled and the order owner has been notified.\",\"VCOi7U\":\"Order questions\",\"wg9MPp\":\"Order questions are asked once per order. By default, people are asked for their first name, last name, and email address.\",\"+KNVxX\":\"Order questions are asked once per order. By default, we ask for the first name, last name, and email address.\",\"TPoYsF\":\"Order Reference\",\"GX6dZv\":\"Order Summary\",\"tDTq0D\":\"Order timeout\",\"1h+RBg\":\"Orders\",\"mz+c33\":\"Orders Created\",\"G5RhpL\":\"Organizer\",\"m/ebSk\":\"Organizer Details\",\"mYygCM\":\"Organizer is required\",\"Pa6G7v\":\"Organizer Name\",\"J2cXxX\":\"Organizers can only manage events and tickets. 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\",\"2w/FiJ\":\"Paid Ticket\",\"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\",\"iq5IUr\":\"Pause Ticket\",\"621rYf\":\"Payment\",\"JhtZAK\":\"Payment Failed\",\"xgav5v\":\"Payment succeeded!\",\"CcK+Ft\":\"PDF\",\"att1Hj\":\"percent\",\"/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\",\"q40YFl\":\"Please continue your order in the new tab\",\"ZJG4Di\":\"Please ensure you only send emails directly related to the order. Promotional emails\\nshould not be sent using this form.\",\"o+HaYe\":\"Please enter a valid promo code\",\"HnNept\":\"Please enter your new password\",\"5FSIzj\":\"Please Note\",\"MA04r/\":\"Please remove filters and set sorting to \\\"Homepage order\\\" to enable sorting\",\"pJLvdS\":\"Please select\",\"yygcoG\":\"Please select at least one ticket\",\"igBrCH\":\"Please verify your email address to access all features\",\"qCJyMx\":\"Post Checkout message\",\"g2UNkE\":\"Powered by\",\"Qs7yI0\":\"Powered By\",\"lqAWKB\":\"Powered by <0>Hi.Events0> 👋\",\"3n47kV\":\"Powered By Hi.Events\",\"ddi4j4\":\"Powered by Stripe\",\"Rs7IQv\":\"Pre Checkout message\",\"rdUucN\":\"Preview\",\"a7u1N9\":\"Price\",\"CmoB9j\":\"Price display mode\",\"Q8PWaJ\":\"Price tiers\",\"a5jvSX\":\"Price Tiers\",\"6RmHKN\":\"Primary Color\",\"G/ZwV1\":\"Primary Colour\",\"8cBtvm\":\"Primary Text Color\",\"BZz12Q\":\"Print\",\"MT7dxz\":\"Print All Tickets\",\"vERlcd\":\"Profile\",\"kUlL8W\":\"Profile updated successfully\",\"cl5WYc\":[\"Promo \",[\"promo_code\"],\" code applied\"],\"ZXpm3a\":[\"Promo \",[\"promoCode\"],\" code applied\"],\"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.\",\"812gwg\":\"Purchase License\",\"LkMOWF\":\"Quantity Available\",\"XKJuAX\":\"Question deleted\",\"oQvMPn\":\"Question Title\",\"enzGAL\":\"Questions\",\"K885Eq\":\"Questions sorted successfully\",\"OMJ035\":\"Radio Option\",\"C4TjpG\":\"Read less\",\"I3QpvQ\":\"Recipient\",\"N2C89m\":\"Reference\",\"gxFu7d\":[\"Refund amount (\",[\"0\"],\")\"],\"n10yGu\":\"Refund order\",\"zPH6gp\":\"Refund Order\",\"/BI0y9\":\"Refunded\",\"fgLNSM\":\"Register\",\"tasfos\":\"remove\",\"t/YqKh\":\"Remove\",\"RloWNu\":\"Reply to email\",\"EGm34e\":\"Resend confirmation email\",\"lnrkNz\":\"Resend email confirmation\",\"wIa8Qe\":\"Resend invitation\",\"VeKsnD\":\"Resend order email\",\"dFuEhO\":\"Resend ticket email\",\"o6+Y6d\":\"Resending...\",\"RfwZxd\":\"Reset password\",\"KbS2K9\":\"Reset Password\",\"vtc20Z\":\"Return to event page\",\"8YBH95\":\"Revenue\",\"PO/sOY\":\"Revoke invitation\",\"GDvlUT\":\"Role\",\"ELa4O9\":\"Sale End Date\",\"5uo5eP\":\"Sale ended\",\"Qm5XkZ\":\"Sale Start Date\",\"hVF4dJ\":\"Sale starts\",\"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\",\"lBAlVv\":\"Seach by name, order #, attendee # or email...\",\"W4kWXJ\":\"Search by attendee name, email or order #...\",\"ulAuWO\":\"Search by event name or description...\",\"+pr/FY\":\"Search by event name...\",\"NQSiYb\":\"Search by name or description...\",\"3zRbWw\":\"Search by name, email, or order #...\",\"BiYOdA\":\"Search by name...\",\"B1bB1j\":\"Search by order #, name or email...\",\"jA4hXE\":\"Search by subject or body...\",\"YEjitp\":\"Search by subject or content...\",\"HYnGee\":\"Search by ticket name...\",\"YIix5Y\":\"Search...\",\"OeW+DS\":\"Secondary color\",\"DnXcDK\":\"Secondary Color\",\"cZF6em\":\"Secondary text color\",\"ZIgYeg\":\"Secondary Text Color\",\"QuNKRX\":\"Select Camera\",\"kWI/37\":\"Select organizer\",\"hAjDQy\":\"Select status\",\"QYARw/\":\"Select Ticket\",\"XH5juP\":\"Select Ticket Tier\",\"nuWxSr\":\"Select Tickets\",\"O/7I0o\":\"Select...\",\"JlFcis\":\"Send\",\"qKWv5N\":[\"Send a copy to <0>\",[\"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.\",\"471O/e\":\"Send confirmation email\",\"D7ZemV\":\"Send order confirmation and ticket email\",\"v1rRtW\":\"Send Test\",\"j1VfcT\":\"SEO Description\",\"/SIY6o\":\"SEO Keywords\",\"GfWoKv\":\"SEO Settings\",\"rXngLf\":\"SEO Title\",\"/jZOZa\":\"Service Fee\",\"vu4F0h\":\"Set a minimum price and let users donate more\",\"Bj/QGQ\":\"Set a minimum price and let users pay more if they choose\",\"nYNT+5\":\"Set up your event\",\"A8iqfq\":\"Set your event live\",\"Tz0i8g\":\"Settings\",\"Z8lGw6\":\"Share\",\"FFbYHm\":[\"Should this \",[\"type\"],\" be applied to all new tickets?\"],\"8vETh9\":\"Show\",\"smd87r\":\"Show available ticket quantity\",\"qDsmzu\":\"Show hidden questions\",\"fMPkxb\":\"Show more\",\"izwOOD\":\"Show tax and fees separately\",\"j3b+OW\":\"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.\",\"DvCwYF\":\"Sorry, this promo code is invalid'\",\"6a/UJE\":\"Sorry, this promo code is not recognized\",\"9rRZZ+\":\"Sorry, your order has expired. Please start a new order.\",\"a4SyEE\":\"Sorting is disabled while filters and sorting are applied\",\"4nG1lG\":\"Standard ticket with a fixed price\",\"D3iCkb\":\"Start Date\",\"RS0o7b\":\"State\",\"/2by1f\":\"State or Region\",\"uAQUqI\":\"Status\",\"UJmAAK\":\"Subject\",\"X2rrlw\":\"Subtotal\",\"b0HJ45\":[\"Success! \",[\"0\"],\" will receive an email shortly.\"],\"BJIEiF\":[\"Successfully \",[\"0\"],\" attendee\"],\"Ih8kN0\":[\"Successfully $\",[\"0\"],\" attendee\"],\"xHl17l\":[\"Successfully checked <0>\",[\"0\"],\" \",[\"1\"],\"0> \",[\"2\"]],\"OtgNFx\":\"Successfully confirmed email address\",\"IKwyaF\":\"Successfully confirmed email change\",\"zLmvhE\":\"Successfully created attendee\",\"9mZEgt\":\"Successfully Created Promo Code\",\"aIA9C4\":\"Successfully Created Question\",\"onFQYs\":\"Successfully Created Ticket\",\"Hgj/mB\":\"Successfully deleted ticket\",\"J3RJSZ\":\"Successfully updated attendee\",\"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\",\"70dYC8\":\"Successfully Updated Promo Code\",\"F+pJnL\":\"Successfully Updated Seo Settings\",\"g2lRrH\":\"Successfully updated ticket\",\"DXZRk5\":\"Suite 100\",\"GNcfRk\":\"Support Email\",\"JpohL9\":\"Tax\",\"geUFpZ\":\"Tax & Fees\",\"0RXCDo\":\"Tax or Fee deleted successfully\",\"ZowkxF\":\"Taxes\",\"EEZnW+\":\"Taxes & Fees\",\"qu6/03\":\"Taxes and Fees\",\"gVjSFp\":\"Taxes and Fees can be associated with tickets and will be added to the ticket price.\",\"e0ZSh4\":\"Text Colour\",\"gypigA\":\"That promo code is invalid\",\"0ozSQu\":\"The background color for the event homepage\",\"LbHWgW\":\"The background color for the ticket widget on the event homepage\",\"75Xclv\":\"The basic details of your event\",\"UNqHnV\":\"The color of the buttons on the event homepage\",\"0amhbL\":\"The color of the links on the event homepage\",\"QXlz+n\":\"The default currency for your events.\",\"mnafgQ\":\"The default timezone for your events.\",\"NlfnUd\":\"The link you clicked is invalid.\",\"FqjKfd\":\"The location of your event\",\"FeAfXO\":[\"The maximum numbers number of tickets for Generals is \",[\"0\"]],\"POEqXB\":\"The organizer details of your event\",\"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.\",\"TJZByZ\":\"The tax and fee to apply to this ticket. You can create new taxes and fees on the\",\"OJYwh9\":\"The taxes and fees to apply to this ticket. You can create new taxes and fees on the\",\"6BpBfZ\":\"The text color for the event homepage\",\"rljHp7\":\"The text color for the ticket widget on the event homepage\",\"s4di40\":\"The text to display in the 'Continue' button. Defaults to 'Continue'\",\"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\",\"wgAiDb\":\"The user must login to change their email.\",\"jvxN9/\":\"There are no tickets available for this event\",\"rMcHYt\":\"There is a refund pending. Please wait for it to complete before requesting another refund.\",\"hjLUr+\":\"There was an error loading this content. Please refresh the page and try again.\",\"68Axnm\":\"There was an error processing your request. Please try again.\",\"mVKOW6\":\"There was an error sending your message\",\"Um/adz\":\"These allow multiple selections\",\"vWeHWp\":\"These colors are not saved in our system.\",\"7qzHGS\":\"These colors are not saved in our system. They are only used to generate the widget.\",\"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.\",\"CNk/ro\":\"This is an online event\",\"GabtCa\":\"This is the email address that will be used as the reply-to address for all emails sent from this event\",\"CKkb5E\":\"This message is how below the\",\"cHO4ec\":\"This message will be included in the footer of all emails sent from this event\",\"RjwlZt\":\"This order has already been paid.\",\"axERYu\":\"This order has already been paid. <0>View order details0>\",\"wY+HO9\":\"This order has already been processed.\",\"5K8REg\":\"This order has already been refunded.\",\"OiQMhP\":\"This order has been cancelled\",\"YyEJij\":\"This order has been cancelled.\",\"D44cEI\":\"This order has been completed.\",\"HILpDX\":\"This order is awaiting payment\",\"0vRWbB\":\"This order is awaiting payment.\",\"BdYtn9\":\"This order is complete\",\"e3uMJH\":\"This order is complete.\",\"YNKXOK\":\"This order is processing.\",\"LIjb4v\":\"This order is processing. TODO - a nice image and poll the API\",\"yPZN4i\":\"This order page is no longer available.\",\"5189cf\":\"This overrides all visibility settings and will hide the ticket from all customers.\",\"4vwjho\":\"This page has expired. <0>View order details0>\",\"Qt7RBu\":\"This question is only visible to the event organizer\",\"os29v1\":\"This reset password link is invalid or expired.\",\"WJqBqd\":\"This ticket cannot be deleted because it is\\nassociated with an order. You can hide it instead.\",\"ma6qdu\":\"This ticket is hidden from public view\",\"xJ8nzj\":\"This ticket is hidden unless targeted by a Promo Code\",\"IV9xTT\":\"This user is not active, as they have not accepted their invitation.\",\"5AnPaO\":\"ticket\",\"kjAL4v\":\"Ticket\",\"KosivG\":\"Ticket deleted successfully\",\"dtGC3q\":\"Ticket email has been resent to attendee\",\"USk+Mn\":\"Ticket page message\",\"mRM6XH\":\"Ticket Sales\",\"NirIiz\":\"Ticket Tier\",\"8jLPgH\":\"Ticket Type\",\"jqWDf9\":\"Ticket widget background color\",\"UrMVAz\":\"Ticket Widget Preview\",\"ngtDy7\":\"Ticket widget text color\",\"N+YYpo\":\"Ticket(s)\",\"6GQNLE\":\"Tickets\",\"54q0zp\":\"Tickets for\",\"i+idBz\":\"Tickets sold\",\"AGRilS\":\"Tickets Sold\",\"56Qw2C\":\"Tickets sorted successfully\",\"4f8A8M\":\"Tickets to which the promo code applies (Applies to all by default)\",\"xN9AhL\":[\"Tier \",[\"0\"]],\"oYaHuq\":\"Tiered Ticket\",\"XZrhpz\":\"Tiered Ticket - Coming Soon\",\"4M150e\":\"Tiered tickets allow you to offer multiple price options for the same ticket.\\nThis is perfect for early bird tickets, or offering different price\\noptions for different groups of people.\",\"jQoYTX\":\"Tiered tickets allow you to offer multiple price options for the same ticket. This is perfect for early bird tickets or offering different price options for different groups of people.\",\"s/0RpH\":\"Times used\",\"40Gx0U\":\"Timezone\",\"oDGm7V\":\"TIP\",\"MHrjPM\":\"Title\",\"xdA/+p\":\"Tools\",\"72c5Qo\":\"Total\",\"BxsfMK\":\"Total Fees\",\"mpB/d9\":\"Total order amount\",\"m3FM1g\":\"Total refunded\",\"GBBIy+\":\"Total remaining\",\"/SgoNA\":\"Total Tax\",\"+zy2Nq\":\"Type\",\"mLGbAS\":[\"Unable to \",[\"0\"],\" attendee\"],\"/cSMqv\":\"Unable to create question. Please check the your details\",\"nNdxt9\":\"Unable to create ticket. Please check the your details\",\"MH/lj8\":\"Unable to update question. Please check the your details\",\"Mqy/Zy\":\"United States\",\"NIuIk1\":\"Unlimited\",\"oMcLhS\":\"Unlimited ticket quantity available\",\"E0q9qH\":\"Unlimited usages allowed\",\"ia8YsC\":\"Upcoming\",\"L/gNNk\":[\"Update \",[\"0\"]],\"+qqX74\":\"Update event name, description and dates\",\"vXPSuB\":\"Update profile\",\"gsehpV\":\"Upload an image to be displayed on the event page\",\"BNBfrU\":\"Upload Cover\",\"UtDm3q\":\"URL copied to clipboard\",\"e5lF64\":\"Usage Example\",\"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 Settings0>\",\"vgwVkd\":\"UTC\",\"khBZkl\":\"VAT\",\"E/9LUk\":\"Venue Name\",\"AM+zF3\":\"View attendee\",\"e4mhwd\":\"View event homepage\",\"/5PEQz\":\"View event page\",\"fFornT\":\"View full message\",\"YIsEhQ\":\"View map\",\"Ep3VfY\":\"View on Google Maps\",\"AMkkeL\":\"View order\",\"Y8s4f6\":\"View order details\",\"tF+VVr\":\"VIP Ticket\",\"2q/Q7x\":\"Visibility\",\"vmOFL/\":\"We could not process your payment. Please try again or contact support.\",\"1E0vyy\":\"We couldn't load the data. Please try again.\",\"VGioT0\":\"We recommend dimensions of 2160px by 1080px, 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\"],\" 👋\"],\"wjqPqF\":\"What are Tiered Tickets?\",\"5iXvHA\":\"What is a Tiered Ticketing?\",\"MhhnvW\":\"What tickets does this code apply to? (Applies to all by default)\",\"dCil3h\":\"What tickets should this question be apply to?\",\"Rb0XUE\":\"What time will you be arriving?\",\"5N4wLD\":\"What type of question is this?\",\"S+OdxP\":\"Who is organizing this event?\",\"LINr2M\":\"Who is this message to?\",\"nWhye/\":\"Who should be asked this question?\",\"vVGiM4\":\"Who type of question is this?\",\"onLsWS\":\"Whoops! something went wrong. Please try again or contact support if the problem persists.\",\"AHXN2z\":\"Widget\",\"AU/8QR\":\"Widget Configuration\",\"VxFvXQ\":\"Widget Embed\",\"v1P7Gm\":\"Widget Settings\",\"b4itZn\":\"Working\",\"hqmXmc\":\"Working...\",\"l75CjT\":\"Yes\",\"QcwyCh\":\"Yes, remove them\",\"P+Sty0\":[\"You are changing your email to <0>\",[\"0\"],\"0>.\"],\"4ysd6z\":\"You can connecting using this Zoom link...\",\"9HGdDw\":\"You can create a promo code which targets this ticket on the\",\"KRhIxT\":\"You can now start receiving payments through Stripe.\",\"UqVaVO\":\"You cannot change the ticket type as there are attendees associated with this ticket.\",\"zQ8idk\":\"You cannot change the ticket type because there are already tickets sold for this ticket.\",\"3vRX5A\":\"You cannot delete this price tier because there are already tickets sold for this tier. You can hide it instead.\",\"RCC09s\":\"You cannot edit a default question\",\"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.\",\"XoeazJ\":\"You have no attendee questions. Attendee questions are asked once per attendee.\",\"CoZHDB\":\"You have no order questions.\",\"FZKDIe\":\"You have no order questions. Order questions are asked once per order.\",\"15qAvl\":\"You have no pending email change.\",\"n81Qk8\":\"You have not completed your Stripe Connect setup\",\"jxsiqJ\":\"You have not connected your Stripe account\",\"183zcL\":\"You have taxes and fees added to a Free Ticket. Would you like to remove or obscure them?\",\"2v5MI1\":\"You haven't sent any messages yet. You can send messages to all attendees, or to specific ticket 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\",\"LRguuL\":\"You must have at least one tier\",\"8/eLoa\":\"You need to verify your account before you can send messages.\",\"WHXRMI\":\"You'll need at least one ticket to get started. Free, paid or let the user decide what to pay.\",\"bdg03s\":\"Your account email in outgoing emails.\",\"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\"],\"0> is pending. Please check your email to confirm\"],\"yZfBoy\":\"Your message has been sent\",\"la26JS\":\"Your order is in progress\",\"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.\",\"cJ4Y4R\":\"Your refund is processing.\",\"IFHV2p\":\"Your ticket for\",\"3k7HDY\":\"Zip\",\"BM/KQm\":\"Zip or Postal Code\",\"VftCuk\":\"Zoom link, Google Meet link, etc.\",\"ySU+JY\":\"your@email.com\"}")};
\ No newline at end of file
diff --git a/frontend/src/locales/pt-br.po b/frontend/src/locales/pt-br.po
index 67bbdb40..c32f3e82 100644
--- a/frontend/src/locales/pt-br.po
+++ b/frontend/src/locales/pt-br.po
@@ -22,8 +22,8 @@ msgid "'There\\'s nothing to show yet'"
msgstr ""
#: src/components/common/QuestionsTable/index.tsx:267
-msgid "{0, plural, one {# hidden question} other {# hidden questions}}"
-msgstr ""
+#~ msgid "{0, plural, one {# hidden question} other {# hidden questions}}"
+#~ msgstr ""
#: src/components/common/AttendeeTable/index.tsx:113
#~ msgid "{0}"
@@ -49,6 +49,10 @@ msgstr ""
msgid "{0}'s Events"
msgstr ""
+#: src/components/common/QuestionsTable/index.tsx:267
+msgid "{0}{1}"
+msgstr ""
+
#: src/components/modals/RefundOrderModal/index.tsx:121
msgid "{message}"
msgstr ""
@@ -347,7 +351,7 @@ msgstr ""
msgid "All Events"
msgstr ""
-#: src/components/common/PromoCodeTable/index.tsx:128
+#: src/components/common/PromoCodeTable/index.tsx:130
msgid "All Tickets"
msgstr ""
@@ -429,7 +433,7 @@ msgstr ""
msgid "Appearance"
msgstr ""
-#: src/components/routes/ticket-widget/SelectTickets/index.tsx:359
+#: src/components/routes/ticket-widget/SelectTickets/index.tsx:357
msgid "applied"
msgstr ""
@@ -437,7 +441,7 @@ msgstr ""
#~ msgid "Apply"
#~ msgstr ""
-#: src/components/routes/ticket-widget/SelectTickets/index.tsx:386
+#: src/components/routes/ticket-widget/SelectTickets/index.tsx:385
msgid "Apply Promo Code"
msgstr ""
@@ -453,7 +457,7 @@ msgstr ""
msgid "Are you sure you want to cancel this attendee? This will void their ticket"
msgstr ""
-#: src/components/common/PromoCodeTable/index.tsx:34
+#: src/components/common/PromoCodeTable/index.tsx:36
msgid "Are you sure you want to delete this promo code?"
msgstr ""
@@ -485,8 +489,8 @@ msgstr ""
msgid "Attendee Details"
msgstr ""
-#: src/components/common/QuestionsTable/index.tsx:306
-#: src/components/common/QuestionsTable/index.tsx:347
+#: src/components/common/QuestionsTable/index.tsx:309
+#: src/components/common/QuestionsTable/index.tsx:350
msgid "Attendee questions"
msgstr ""
@@ -621,7 +625,7 @@ msgstr ""
#~ msgstr ""
#: src/components/common/AttendeeTable/index.tsx:211
-#: src/components/common/PromoCodeTable/index.tsx:37
+#: src/components/common/PromoCodeTable/index.tsx:39
#: src/utilites/confirmationDialog.tsx:11
msgid "Cancel"
msgstr ""
@@ -728,7 +732,7 @@ msgstr ""
msgid "click here"
msgstr ""
-#: src/components/common/PromoCodeTable/index.tsx:95
+#: src/components/common/PromoCodeTable/index.tsx:97
msgid "Click to copy"
msgstr ""
@@ -741,7 +745,7 @@ msgstr ""
msgid "Close sidebar"
msgstr ""
-#: src/components/common/PromoCodeTable/index.tsx:66
+#: src/components/common/PromoCodeTable/index.tsx:68
#: src/components/forms/PromoCodeForm/index.tsx:33
msgid "Code"
msgstr ""
@@ -883,7 +887,7 @@ msgstr ""
msgid "Copied"
msgstr ""
-#: src/components/common/PromoCodeTable/index.tsx:103
+#: src/components/common/PromoCodeTable/index.tsx:105
msgid "copied to clipboard"
msgstr ""
@@ -899,7 +903,7 @@ msgstr ""
msgid "Copy Link"
msgstr ""
-#: src/components/common/PromoCodeTable/index.tsx:172
+#: src/components/common/PromoCodeTable/index.tsx:176
msgid "Copy URL"
msgstr ""
@@ -924,7 +928,7 @@ msgstr ""
msgid "Create {0}"
msgstr ""
-#: src/components/common/PromoCodeTable/index.tsx:54
+#: src/components/common/PromoCodeTable/index.tsx:56
msgid "Create a Promo Code"
msgstr ""
@@ -1051,7 +1055,7 @@ msgstr ""
#: src/components/common/AttendeeTable/index.tsx:205
#: src/components/common/OrdersTable/index.tsx:131
-#: src/components/common/PromoCodeTable/index.tsx:176
+#: src/components/common/PromoCodeTable/index.tsx:180
#: src/components/common/QuestionsTable/index.tsx:113
#: src/components/common/TicketsTable/SortableTicket/index.tsx:193
msgid "Danger zone"
@@ -1073,12 +1077,12 @@ msgstr ""
#~ msgid "Deactivate user"
#~ msgstr ""
-#: src/components/common/PromoCodeTable/index.tsx:37
+#: src/components/common/PromoCodeTable/index.tsx:39
#: src/components/common/TaxAndFeeList/index.tsx:73
msgid "Delete"
msgstr ""
-#: src/components/common/PromoCodeTable/index.tsx:180
+#: src/components/common/PromoCodeTable/index.tsx:184
msgid "Delete code"
msgstr ""
@@ -1121,7 +1125,7 @@ msgstr ""
#~ msgid "Disable code"
#~ msgstr ""
-#: src/components/common/PromoCodeTable/index.tsx:67
+#: src/components/common/PromoCodeTable/index.tsx:69
msgid "Discount"
msgstr ""
@@ -1145,13 +1149,17 @@ msgstr ""
msgid "Don't have an account? <0>Sign Up0>"
msgstr ""
+#: src/components/forms/TicketForm/index.tsx:139
+msgid "Donation / Pay what you'd like ticket"
+msgstr ""
+
#: src/components/routes/ticket-widget/SelectTickets/Prices/Tiered/index.tsx:59
#~ msgid "Donation amount"
#~ msgstr ""
#: src/components/forms/TicketForm/index.tsx:139
-msgid "Donation Ticket"
-msgstr ""
+#~ msgid "Donation Ticket"
+#~ msgstr ""
#: src/components/routes/ticket-widget/OrderSummaryAndTickets/index.tsx:91
#~ msgid "Download Tickets PDF"
@@ -1202,7 +1210,7 @@ msgstr ""
msgid "Edit Attendee"
msgstr ""
-#: src/components/common/PromoCodeTable/index.tsx:167
+#: src/components/common/PromoCodeTable/index.tsx:169
msgid "Edit Code"
msgstr ""
@@ -1398,7 +1406,7 @@ msgstr ""
msgid "Events"
msgstr ""
-#: src/components/common/PromoCodeTable/index.tsx:70
+#: src/components/common/PromoCodeTable/index.tsx:72
msgid "Expires"
msgstr ""
@@ -1476,7 +1484,7 @@ msgstr ""
msgid "First name must be between 1 and 50 characters"
msgstr ""
-#: src/components/common/QuestionsTable/index.tsx:327
+#: src/components/common/QuestionsTable/index.tsx:330
msgid "First Name, Last Name, and Email Address are default questions and are always included in the checkout process."
msgstr ""
@@ -1555,7 +1563,7 @@ msgstr ""
msgid "Guests"
msgstr ""
-#: src/components/routes/ticket-widget/SelectTickets/index.tsx:354
+#: src/components/routes/ticket-widget/SelectTickets/index.tsx:352
msgid "Have a promo code?"
msgstr ""
@@ -1605,7 +1613,7 @@ msgstr ""
msgid "Hide getting started page"
msgstr ""
-#: src/components/common/QuestionsTable/index.tsx:273
+#: src/components/common/QuestionsTable/index.tsx:276
msgid "Hide hidden questions"
msgstr ""
@@ -1891,7 +1899,7 @@ msgstr ""
#: src/components/common/EventCard/index.tsx:78
#: src/components/common/OrdersTable/index.tsx:94
#: src/components/common/OrdersTable/index.tsx:109
-#: src/components/common/PromoCodeTable/index.tsx:164
+#: src/components/common/PromoCodeTable/index.tsx:166
#: src/components/common/TicketsTable/SortableTicket/index.tsx:171
#: src/components/layouts/Event/index.tsx:38
msgid "Manage"
@@ -2064,7 +2072,7 @@ msgstr ""
msgid "Navigate to Attendee"
msgstr ""
-#: src/components/common/PromoCodeTable/index.tsx:155
+#: src/components/common/PromoCodeTable/index.tsx:157
#: src/components/routes/account/ManageAccount/sections/Users/index.tsx:101
msgid "Never"
msgstr ""
@@ -2108,7 +2116,7 @@ msgstr ""
msgid "No orders to show"
msgstr ""
-#: src/components/common/PromoCodeTable/index.tsx:43
+#: src/components/common/PromoCodeTable/index.tsx:45
msgid "No Promo Codes to show"
msgstr ""
@@ -2136,7 +2144,7 @@ msgstr ""
msgid "No tickets to show"
msgstr ""
-#: src/components/common/PromoCodeTable/index.tsx:79
+#: src/components/common/PromoCodeTable/index.tsx:81
msgid "None"
msgstr ""
@@ -2255,8 +2263,8 @@ msgstr ""
msgid "Order has been canceled and the order owner has been notified."
msgstr ""
-#: src/components/common/QuestionsTable/index.tsx:291
-#: src/components/common/QuestionsTable/index.tsx:333
+#: src/components/common/QuestionsTable/index.tsx:294
+#: src/components/common/QuestionsTable/index.tsx:336
msgid "Order questions"
msgstr ""
@@ -2511,7 +2519,7 @@ msgstr ""
msgid "Pre Checkout message"
msgstr ""
-#: src/components/common/QuestionsTable/index.tsx:325
+#: src/components/common/QuestionsTable/index.tsx:328
msgid "Preview"
msgstr ""
@@ -2579,7 +2587,7 @@ msgstr ""
msgid "Promo Codes"
msgstr ""
-#: src/components/common/PromoCodeTable/index.tsx:48
+#: src/components/common/PromoCodeTable/index.tsx:50
msgid "Promo codes can be used to offer discounts, presale access, or provide special access to your event."
msgstr ""
@@ -2647,11 +2655,11 @@ msgstr ""
msgid "Register"
msgstr ""
-#: src/components/routes/ticket-widget/SelectTickets/index.tsx:363
+#: src/components/routes/ticket-widget/SelectTickets/index.tsx:361
msgid "remove"
msgstr ""
-#: src/components/routes/ticket-widget/SelectTickets/index.tsx:364
+#: src/components/routes/ticket-widget/SelectTickets/index.tsx:362
msgid "Remove"
msgstr ""
@@ -2911,7 +2919,11 @@ msgid "Service Fee"
msgstr ""
#: src/components/forms/TicketForm/index.tsx:141
-msgid "Set a minimum price and let users donate more"
+#~ msgid "Set a minimum price and let users donate more"
+#~ msgstr ""
+
+#: src/components/forms/TicketForm/index.tsx:141
+msgid "Set a minimum price and let users pay more if they choose"
msgstr ""
#: src/components/routes/event/GettingStarted/index.tsx:86
@@ -2943,7 +2955,7 @@ msgstr ""
msgid "Show available ticket quantity"
msgstr ""
-#: src/components/common/QuestionsTable/index.tsx:273
+#: src/components/common/QuestionsTable/index.tsx:276
msgid "Show hidden questions"
msgstr ""
@@ -3512,11 +3524,11 @@ msgstr ""
#~ msgid "Ticket widget text color"
#~ msgstr ""
-#: src/components/common/PromoCodeTable/index.tsx:145
+#: src/components/common/PromoCodeTable/index.tsx:147
msgid "Ticket(s)"
msgstr ""
-#: src/components/common/PromoCodeTable/index.tsx:69
+#: src/components/common/PromoCodeTable/index.tsx:71
#: src/components/layouts/Event/index.tsx:41
#: src/components/layouts/EventHomepage/index.tsx:80
#: src/components/routes/event/tickets.tsx:37
@@ -3566,7 +3578,7 @@ msgstr ""
#~ msgid "Tiered tickets allow you to offer multiple price options for the same ticket. This is perfect for early bird tickets or offering different price options for different groups of people."
#~ msgstr ""
-#: src/components/common/PromoCodeTable/index.tsx:68
+#: src/components/common/PromoCodeTable/index.tsx:70
msgid "Times used"
msgstr ""
@@ -3652,7 +3664,7 @@ msgstr ""
#~ msgid "Unlimited ticket quantity available"
#~ msgstr ""
-#: src/components/common/PromoCodeTable/index.tsx:123
+#: src/components/common/PromoCodeTable/index.tsx:125
msgid "Unlimited usages allowed"
msgstr ""
@@ -3680,6 +3692,10 @@ msgstr ""
msgid "Upload Cover"
msgstr ""
+#: src/components/common/PromoCodeTable/index.tsx:174
+msgid "URL copied to clipboard"
+msgstr ""
+
#: src/components/common/WidgetEditor/index.tsx:295
msgid "Usage Example"
msgstr ""
@@ -3946,7 +3962,7 @@ msgstr ""
msgid "You have connected your Stripe account"
msgstr ""
-#: src/components/common/QuestionsTable/index.tsx:316
+#: src/components/common/QuestionsTable/index.tsx:319
msgid "You have no attendee questions."
msgstr ""
@@ -3954,7 +3970,7 @@ msgstr ""
#~ msgid "You have no attendee questions. Attendee questions are asked once per attendee."
#~ msgstr ""
-#: src/components/common/QuestionsTable/index.tsx:301
+#: src/components/common/QuestionsTable/index.tsx:304
msgid "You have no order questions."
msgstr ""
diff --git a/frontend/src/locales/pt.js b/frontend/src/locales/pt.js
index 8a935142..60a48395 100644
--- a/frontend/src/locales/pt.js
+++ b/frontend/src/locales/pt.js
@@ -1 +1 @@
-/*eslint-disable*/module.exports={messages:JSON.parse("{\"1bpx9A\":\"...\",\"f8qS7T\":\"'There\\\\'s nothing to show yet'\",\"4zldrf\":[[\"0\",\"plural\",{\"one\":[\"#\",\" hidden question\"],\"other\":[\"#\",\" hidden questions\"]}]],\"J/hVSQ\":[[\"0\"]],\"KMgp2+\":[[\"0\"],\" available\"],\"tmew5X\":[[\"0\"],\" checked in\"],\"Pmr5xp\":[[\"0\"],\" created successfully\"],\"FImCSc\":[[\"0\"],\" updated successfully\"],\"KOr9b4\":[[\"0\"],\"'s Events\"],\"wapGcj\":[[\"message\"]],\"fyE7Au\":[[\"minutes\"],\" minutes and \",[\"seconds\"],\" seconds\"],\"NlQ0cx\":[[\"organizerName\"],\"'s first event\"],\"OXku3b\":\"<0>https://0>your-website.com\",\"E15xs8\":\"⚡️ Set up your event\",\"FL6OwU\":\"✉️ Confirm your email address\",\"y1NShf\":\"🎉 Congratulation on creating an event!\",\"BN0OQd\":\"🎉 Congratulations on creating an event!\",\"fAv9QG\":\"🎟️ Add tickets\",\"4WT5tD\":\"🎨 Customize your event page\",\"3VPPdS\":\"💳 Connect with Stripe\",\"s4Tgn6\":\"📢 Promote your event\",\"cjdktw\":\"🚀 Set your event live\",\"rmelwV\":\"0 minutes and 0 seconds\",\"UQ7pBY\":\"0.50 for $0.50\",\"i1+xzD\":\"1.75 for 1.75%\",\"i0puaE\":\"10.00\",\"W9+fkZ\":\"10001\",\"qdfdgM\":\"123 Main Street\",\"IoRZzD\":\"20\",\"+H1RMb\":\"2024-01-01 10:00\",\"Q/T49U\":\"2024-01-01 18:00\",\"hMT8+2\":\"94103\",\"d9El7Q\":[\"A default \",[\"type\"],\" is automaticaly applied to all new tickets. You can override this on a per ticket basis.\"],\"SMUbbQ\":\"A Dropdown input allows only one selection\",\"qv4bfj\":\"A fee, like a booking fee or a service fee\",\"Pgaiuj\":\"A fixed amount per ticket. E.g, $0.50 per ticket\",\"f4vJgj\":\"A multi line text input\",\"ySO/4f\":\"A percentage of the ticket price. E.g., 3.5% of the ticket price\",\"WXeXGB\":\"A promo code with no discount can be used to reveal hidden tickets.\",\"GMhWB5\":\"A Radio option allows has multiple options but only one can be selected.\",\"CBt3s7\":\"A Radio Option allows only one selection\",\"AG/qmQ\":\"A Radio option has multiple options but only one can be selected.\",\"7g61G9\":\"A short description of Awesome Events Ltd.\",\"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\",\"zCk10D\":\"A single question per attendee. E.g, What is your preferred meal?\",\"ap3v36\":\"A single question per order. E.g, What is your company name?\",\"RlJmQg\":\"A standard tax, like VAT or GST\",\"pDwHGk\":\"About hi.events\",\"uIKNjo\":\"About the event\",\"bfXQ+N\":\"Accept Invitation\",\"iwyhk4\":\"Access to the VIP area...\",\"AeXO77\":\"Account\",\"0b79Xf\":\"Account Email\",\"lkNdiH\":\"Account Name\",\"Puv7+X\":\"Account Settings\",\"OmylXO\":\"Account updated successfully\",\"7L01XJ\":\"Actions\",\"FQBaXG\":\"Activate\",\"F6pfE9\":\"Active\",\"m16xKo\":\"Add\",\"LKNynS\":\"Add a cover image, description, and more to make your event stand out.\",\"gMK0ps\":\"Add event details and and manage event settings.\",\"Fb+SDI\":\"Add More tickets\",\"ApsD9J\":\"Add New\",\"TZxnm8\":\"Add Option\",\"Cw27zP\":\"Add question\",\"yWiPh+\":\"Add Tax or Fee\",\"BGD9Yt\":\"Add tickets\",\"goOKRY\":\"Add tier\",\"p59pEv\":\"Additional Details\",\"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.\",\"CPXP5Z\":\"Affiliates\",\"W7AfhC\":\"All attendees of this event\",\"QsYjci\":\"All Events\",\"/twVAS\":\"All Tickets\",\"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..\",\"8wYDMp\":\"Already have an account?\",\"ApOYO8\":\"Amazing, Event, Keywords...\",\"hehnjM\":\"Amount\",\"TRYjHa\":[\"amount in \",[\"0\"]],\"R2O9Rg\":[\"Amount paid (\",[\"0\"],\")\"],\"tLjOgo\":[\"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\",\"er3d/4\":\"An error occurred while sorting the tickets. Please try again or refresh the page\",\"hhvESd\":\"An event is the actual event you are hosting\",\"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.\",\"j4DliD\":\"Any queries from ticket 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\",\"DB8zMK\":\"Apply\",\"GctSSm\":\"Apply Promo Code\",\"jcnZEw\":[\"Apply this \",[\"type\"],\" to all new tickets\"],\"q7TRd7\":\"Are you sure you want to activate this attendee?\",\"/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\",\"2xEpch\":\"Ask once per attendee\",\"LBLOqH\":\"Ask once per order\",\"ss9PbX\":\"Attendee\",\"m0CFV2\":\"Attendee Details\",\"lXcSD2\":\"Attendee questions\",\"VvYqMB\":\"Attendee questions are asked once per attendee. By default, people are asked for their first name, last name, and email address.\",\"spxPEv\":\"Attendee questions are asked once per attendee. By default, we ask for the attendee's first name, last name, and email address.\",\"9SZT4E\":\"Attendees\",\"5UbY+B\":\"Attendees with a specific ticket\",\"IMJ6rh\":\"Auto Resize\",\"vZ5qKF\":\"Automatically resize the widget height based on the content. When disabled, the widget will fill the height of the container.\",\"lXkUEV\":\"Availability\",\"ioG+xt\":\"Awaiting Payment\",\"3PmQfI\":\"Awesome Event\",\"kNmmvE\":\"Awesome Events Ltd.\",\"Yrbm6T\":\"Awesome Organizer Ltd.\",\"9002sI\":\"Back to all events\",\"0TGkYM\":\"Back to event homepage\",\"A302fe\":\"Back to event page\",\"VCoEm+\":\"Back to login\",\"MLZyiY\":\"Background color\",\"k1bLf+\":\"Background Color\",\"I7xjqg\":\"Background Type\",\"EOUool\":\"Basic Details\",\"7EGQKA\":\"Because you are the account owner, you cannot change your role or status.\",\"1mwMl+\":\"Before you send!\",\"wVfiR2\":\"Before you're event can go live, there's a few thing to do.\",\"/yeZ20\":\"Before your event can go live, there are a few things you need to do.\",\"1xAcxY\":\"Begin selling tickets in minutes\",\"R+w/Va\":\"Billing\",\"Ptp9MF\":\"Button color\",\"whqocw\":\"By registering you agree to our <0>Terms of Service0> and <1>Privacy Policy1>.\",\"bcCn6r\":\"Calculation Type\",\"+8bmSu\":\"California\",\"iStTQt\":\"Camera permission was denied. <0>Request Permission0> again, or if this doesn't work, you will need to <1>grant this page1> access to your camera in your browser settings.\",\"Jzn1qy\":\"Can't load events\",\"dEgA5A\":\"Cancel\",\"Gjt/py\":\"Cancel email change\",\"tVJk4q\":\"Cancel order\",\"Os6n2a\":\"Cancel Order\",\"Mz7Ygx\":[\"Cancel Order \",[\"0\"]],\"Ud7zwq\":\"Canceling will cancel all tickets associated with this order, and release the tickets back into the available pool.\",\"vv7kpg\":\"Cancelled\",\"77/YgG\":\"Change Cover\",\"GptGxg\":\"Change password\",\"QndF4b\":\"check in\",\"xMDm+I\":\"Check In\",\"9FVFym\":\"check out\",\"gXcPxc\":\"Check-in\",\"Y3FYXy\":\"Check-In\",\"CNafaC\":\"Checkbox options allow multiple selections\",\"SpabVf\":\"Checkboxes\",\"CRu4lK\":\"Checked In\",\"/ydvvl\":\"Checkout Messaging\",\"1WnhCL\":\"Checkout Settings\",\"JjkX4+\":\"Choose a color for your background\",\"/Jizh9\":\"Choose an account\",\"jJGoVv\":\"Choose what notifications you want to receive\",\"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\",\"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\",\"DwF9eH\":\"Component Code\",\"7VpPHA\":\"Confirm\",\"ZaEJZM\":\"Confirm Email Change\",\"yjkELF\":\"Confirm New Password\",\"xnWESi\":\"Confirm password\",\"p2/GCq\":\"Confirm Password\",\"wnDgGj\":\"Confirming email address...\",\"DnLC08\":\"Congratulation on creating an event!\",\"pbAk7a\":\"Connect Stripe\",\"UMGQOh\":\"Connect with Stripe\",\"QKLP1W\":\"Connect your Stripe account to start receiving payments.\",\"5lcVkL\":\"Connection Details\",\"i3p844\":\"Contact email\",\"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\",\"RGVUUI\":\"Continue To Payment\",\"6V3Ea3\":\"Copied\",\"T5rdis\":\"copied to clipboard\",\"he3ygx\":\"Copy\",\"8+cOrS\":\"Copy details to all attendees\",\"ENCIQz\":\"Copy Link\",\"E6nRW7\":\"Copy URL\",\"JNCzPW\":\"Country\",\"IF7RiR\":\"Cover\",\"P0rbCt\":\"Cover Image\",\"hYgDIe\":\"Create\",\"b9XOHo\":[\"Create \",[\"0\"]],\"6kdXbW\":\"Create a Promo Code\",\"n5pRtF\":\"Create a Ticket\",\"X6sRve\":[\"Create an account or <0>\",[\"0\"],\"0> to get started\"],\"nx+rqg\":\"create an organizer\",\"ipP6Ue\":\"Create Attendee\",\"uN355O\":\"Create Event\",\"BOqY23\":\"Create new\",\"kpJAeS\":\"Create Organizer\",\"sYpiZP\":\"Create Promo Code\",\"a6YrKg\":\"Create promo codes\",\"n6H6AO\":\"Create promo codes to offer discounts to your attendees.\",\"B3Mkdt\":\"Create Question\",\"UKfi21\":\"Create Tax or Fee\",\"Tg323g\":\"Create Ticket\",\"agZ87r\":\"Create tickets for your event, set prices, and manage available quantity.\",\"d+F6q9\":\"Created\",\"Q2lUR2\":\"Currency\",\"DCKkhU\":\"Current Password\",\"uIElGP\":\"Custom Maps URL\",\"876pfE\":\"Customer\",\"QOg2Sf\":\"Customize the email and notification settings for this event\",\"Lu75d1\":\"Customize the email settings for this event\",\"RaxMyF\":\"Customize the event homepage and checkout experience\",\"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\",\"7p5kLi\":\"Dashboard\",\"mYGY3B\":\"Date\",\"JvUngl\":\"Date & Time\",\"RiXc4g\":\"Deactivate user\",\"cnGeoo\":\"Delete\",\"WHf154\":\"Delete code\",\"heJllm\":\"Delete Cover\",\"KWa0gi\":\"Delete Image\",\"IatsLx\":\"Delete question\",\"GnyEfA\":\"Delete ticket\",\"E33LRn\":\"Delete user\",\"Nu4oKW\":\"Description\",\"s9iD5d\":\"Description should be less than 50,000 characters\",\"URmyfc\":\"Details\",\"x8uDKb\":\"Disable code\",\"H6Ma8Z\":\"Discount\",\"ypJ62C\":\"Discount %\",\"3LtiBI\":[\"Discount in \",[\"0\"]],\"C8JLas\":\"Discount Type\",\"1QfxQT\":\"Dismiss\",\"cVq+ga\":\"Don't have an account? <0>Sign Up0>\",\"++S5i/\":\"Donation amount\",\"OO7MG7\":\"Donation Ticket\",\"0pEVi2\":\"Download Tickets PDF\",\"uABpqP\":\"Drag and drop or click\",\"3z2ium\":\"Drag to sort\",\"6skwyH\":\"Drop an image, or click here to replace the Cover Image\",\"S37RRV\":\"Drop an image, or click here to upload the Cover Image\",\"CfKofC\":\"Dropdown selection\",\"vi8Q/5\":\"Duplicate event\",\"7Cx5It\":\"Early bird\",\"ePK91l\":\"Edit\",\"N6j2JH\":[\"Edit \",[\"0\"]],\"kNGp1D\":\"Edit attendee\",\"t2bbp8\":\"Edit Attendee\",\"iFgaVN\":\"Edit Code\",\"jrBSO1\":\"Edit Organizer\",\"9BdS63\":\"Edit Promo Code\",\"O0CE67\":\"Edit question\",\"EzwCw7\":\"Edit Question\",\"d+nnyk\":\"Edit Ticket\",\"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\",\"WiKda6\":\"Email Configuration\",\"APuxIE\":\"Email confirmation resent\",\"YaCgdO\":\"Email confirmation resent successfully\",\"jyt+cx\":\"Email footer message\",\"I6F3cp\":\"Email not verified\",\"G5zNMX\":\"Email Settings\",\"NTZ/NX\":\"Embed Code\",\"4rnJq4\":\"Embed Script\",\"VFv2ZC\":\"End Date\",\"237hSL\":\"Ended\",\"MhVoma\":\"Enter an amount excluding taxes and fees.\",\"3Z223G\":\"Error confirming email address\",\"a6gga1\":\"Error confirming email change\",\"5/63nR\":\"EUR\",\"0pC/y6\":\"Event\",\"nuoP/j\":\"Event created successfully\",\"CFLUfD\":\"Event created successfully 🎉\",\"0Zptey\":\"Event Defaults\",\"Xe3XMd\":\"Event is not visible to the public\",\"4pKXJS\":\"Event is visible to the public\",\"ClwUUD\":\"Event location & venue details\",\"OopDbA\":\"Event page\",\"JyD0LH\":\"Event Settings\",\"4/If97\":\"Event status update failed. Please try again later\",\"btxLWj\":\"Event status updated\",\"tst44n\":\"Events\",\"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.\",\"9zSt4h\":\"Failed to export attendees. Please try again.\",\"2uGNuE\":\"Failed to export orders. Please try again.\",\"ZQ15eN\":\"Failed to resend ticket email\",\"PLUB/s\":\"Fee\",\"YirHq7\":\"Feedback\",\"/mfICu\":\"Fees\",\"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.\",\"QWa3Sk\":\"First Name, Last Name, and Email Address are default questions that are always included in the checkout process.\",\"TpqW74\":\"Fixed\",\"irpUxR\":\"Fixed amount\",\"TF9opW\":\"Flash is not available on this device\",\"UNMVei\":\"Forgot password?\",\"2POOFK\":\"Free\",\"/4rQr+\":\"Free Ticket\",\"01my8x\":\"Free ticket, no payment information required\",\"ejVYRQ\":\"From\",\"u6FPxT\":\"Get Tickets\",\"4GLxhy\":\"Getting Started\",\"4D3rRj\":\"Go back to profile\",\"cQPKZt\":\"Go to Dashboard\",\"9LCqFI\":\"Go to event homepage\",\"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.\",\"Ow9Hz5\":[\"Hi.Events Conference \",[\"0\"]],\"verBst\":\"Hi.Events Conference Center\",\"6eMEQO\":\"hi.events logo\",\"C4qOW8\":\"Hidden from public view\",\"k3dfFD\":\"Hidden questions are only visible to the event organizer and not to the customer.\",\"EeNE0j\":\"Hidden will not be shown to customers.\",\"vLyv1R\":\"Hide\",\"Mkkvfd\":\"Hide getting started page\",\"mFn5Xz\":\"Hide hidden questions\",\"SCimta\":\"Hide the getting started page from the sidebar\",\"Da29Y6\":\"Hide this question\",\"fsi6fC\":\"Hide this ticket from customers\",\"fvDQhr\":\"Hide this tier from users\",\"Fhzoa8\":\"Hide ticket after sale end date\",\"yhm3J/\":\"Hide ticket before sale start date\",\"k7/oGT\":\"Hide ticket unless user has applicable promo code\",\"L0ZOiu\":\"Hide ticket when sold out\",\"uno73L\":\"Hiding a ticket will prevent users from seeing it on the event page.\",\"tj6Gob\":\"Homepage & Checkout\",\"m07jN3\":\"Homepage & Checkout Settings\",\"ZOBwQn\":\"Homepage Design\",\"PRuBTd\":\"Homepage Designer\",\"YjVNGZ\":\"Homepage Preview\",\"c3E/kw\":\"Homer\",\"id+NIk\":\"How many minutes the customer has to complete their order\",\"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?\",\"fYyXCd\":\"https://example-maps-service.com/...\",\"uOXLV3\":\"I agree to the <0>terms and conditions0>\",\"sIxFk5\":\"I agree to the terms and conditions\",\"Crwwhn\":[\"If a new tab did not open, please <0>\",[\"0\"],\".0>\"],\"93DUnd\":[\"If a new tab did not open, please <0><1>\",[\"0\"],\"1>.0>\"],\"9gtsTP\":\"If blank, the address will be used to generate a Google map link\",\"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\",\"Gyl1h8\":\"Image dimensions must be at least 600px by 300px\",\"TiGacZ\":\"Image dimensions must be at least 900px by 450px\",\"UnTvkH\":\"Image dimensions must be between 3000px by 2000px. With a max height of 2000px and max width of 3000px\",\"uPEIvq\":\"Image must be less than 5MB\",\"AGZmwV\":\"Image uploaded successfully\",\"ibi52/\":\"Image width must be at least 900px and height at least 50px\",\"NoNwIX\":\"Inactive\",\"T0K0yl\":\"Inactive users cannot log in.\",\"OFAmKP\":\"Include connection details for your online event\",\"BfPBBG\":\"Include connection details for your online event. These details will be after successful registration.\",\"6+pAOx\":\"Include connection details for your online event. These details will be shown after successful registration.\",\"evpD4c\":\"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\",\"nbfdhU\":\"Integrations\",\"OyLdaz\":\"Invitation resent!\",\"HE6KcK\":\"Invitation revoked!\",\"SQKPvQ\":\"Invite User\",\"PgdQrx\":\"Issue refund\",\"KFXip/\":\"John\",\"XcgRvb\":\"Johnson\",\"1IWWYX\":[\"KittenTech Conference \",[\"0\"]],\"ZgJEMX\":\"KittenTech Conference Center\",\"87a/t/\":\"Label\",\"I3yitW\":\"Last login\",\"1ZaQUH\":\"Last name\",\"UXBCwc\":\"Last Name\",\"CKcupn\":\"Latest Orders\",\"tITjB1\":\"Learn more about Stripe\",\"c+gAXc\":\"Let's get started by creating your first event\",\"vR92Yn\":\"Let's get started by creating your first organizer\",\"QfrKvi\":\"Link color\",\"wJijgU\":\"Location\",\"sQia9P\":\"Log in\",\"zUDyah\":\"Logging in\",\"z0t9bb\":\"Login\",\"nOhz3x\":\"Logout\",\"F2jAFv\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nam placerat elementum...\",\"XkhEf9\":\"Lorem ipsum...\",\"MU3ijv\":\"Make this question mandatory\",\"wckWOP\":\"Manage\",\"8mmINh\":\"Manage billing information and view invoices\",\"jWIznR\":\"Manage default settings for new events\",\"n4SpU5\":\"Manage event\",\"wqyqaF\":\"Manage general account settings\",\"cQrNR3\":\"Manage Profile\",\"f92Qak\":\"Manage taxes and fees which can be applied to tickets\",\"PlTcVr\":\"Manage taxes and fees which can be applied to your tickets\",\"ophZVW\":\"Manage tickets\",\"Wsx7Iu\":\"Manage users and their permissions\",\"DdHfeW\":\"Manage your account details and default settings\",\"QHcjP+\":\"Manage your billing and payment details\",\"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\",\"lzcrX3\":\"Manually adding an attendee will adjust ticket quantity.\",\"g9dPPQ\":\"Maximum Per Order\",\"l5OcwO\":\"Message attendee\",\"Gv5AMu\":\"Message Attendees\",\"1jRD0v\":\"Message attendees with specific tickets\",\"Lvi+gV\":\"Message buyer\",\"tNZzFb\":\"Message Content\",\"lYDV/s\":\"Message individual attendees\",\"V7DYWd\":\"Message Sent\",\"t7TeQU\":\"Messages\",\"xFRMlO\":\"Minimum Per Order\",\"QYcUEf\":\"Minimum Price\",\"mYLhkl\":\"Miscellaneous Settings\",\"KYveV8\":\"Multi line text box\",\"SVuGaP\":\"Multiple price options, users can choose which to pay\",\"6wbTro\":\"Multiple price options. Perfect for early bird tickets etc.\",\"/bhMdO\":\"My amazing event description...\",\"vX8/tc\":\"My amazing event title...\",\"hKtWk2\":\"My Profile\",\"pRjx4L\":\"Nam placerat elementum...\",\"6YtxFj\":\"Name\",\"hVuv90\":\"Name should be less than 150 characters\",\"AIUkyF\":\"Navigate to Attendee\",\"qqeAJM\":\"Never\",\"7vhWI8\":\"New Password\",\"m920rF\":\"New York\",\"1UzENP\":\"No\",\"Wjz5KP\":\"No Attendees to show\",\"fFeCKc\":\"No Discount\",\"Z6ILSe\":\"No events for this organizer\",\"yAlJXG\":\"No events to show\",\"KPWxKD\":\"No messages to show\",\"J2LkP8\":\"No orders to show\",\"+Y976X\":\"No Promo Codes to show\",\"Ev2r9A\":\"No results\",\"RHyZUL\":\"No search results.\",\"cU1op4\":\"No Taxes or Fees have been added yet.\",\"RY2eP1\":\"No Taxes or Fees have been added.\",\"uR2eFu\":\"No tickets available\",\"b7JZFg\":\"No tickets to show\",\"EdQY6l\":\"None\",\"OJx3wK\":\"Not available\",\"x5+Lcz\":\"Not Checked In\",\"Scbrsn\":\"Not On Sale\",\"hFwWnI\":\"Notification Settings\",\"xXqEPO\":\"Notify buyer of refund\",\"YpN29s\":\"Notify organizer of new orders\",\"qeQhNj\":\"Now let's create your first event\",\"2NPDz1\":\"On sale\",\"Ldu/RI\":\"On Sale\",\"Ug4SfW\":\"Once you create an event, you'll see it here.\",\"+P/tII\":\"Once you're ready, set your event live and start selling tickets.\",\"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.\",\"OdnLE4\":\"Open sidebar\",\"ZZEYpT\":[\"Option \",[\"i\"]],\"0zpgxV\":\"Options\",\"BzEFor\":\"or\",\"UYUgdb\":\"Order\",\"mm+eaX\":\"Order #\",\"B3gPuX\":\"Order Cancelled\",\"SIbded\":\"Order Completed\",\"q/CcwE\":\"Order Date\",\"Tol4BF\":\"Order Details\",\"L4kzeZ\":[\"Order Details \",[\"0\"]],\"WbImlQ\":\"Order has been canceled and the order owner has been notified.\",\"VCOi7U\":\"Order questions\",\"wg9MPp\":\"Order questions are asked once per order. By default, people are asked for their first name, last name, and email address.\",\"+KNVxX\":\"Order questions are asked once per order. By default, we ask for the first name, last name, and email address.\",\"TPoYsF\":\"Order Reference\",\"GX6dZv\":\"Order Summary\",\"tDTq0D\":\"Order timeout\",\"1h+RBg\":\"Orders\",\"mz+c33\":\"Orders Created\",\"G5RhpL\":\"Organizer\",\"m/ebSk\":\"Organizer Details\",\"mYygCM\":\"Organizer is required\",\"Pa6G7v\":\"Organizer Name\",\"J2cXxX\":\"Organizers can only manage events and tickets. 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\",\"2w/FiJ\":\"Paid Ticket\",\"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\",\"iq5IUr\":\"Pause Ticket\",\"621rYf\":\"Payment\",\"JhtZAK\":\"Payment Failed\",\"xgav5v\":\"Payment succeeded!\",\"CcK+Ft\":\"PDF\",\"att1Hj\":\"percent\",\"/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\",\"q40YFl\":\"Please continue your order in the new tab\",\"ZJG4Di\":\"Please ensure you only send emails directly related to the order. Promotional emails\\nshould not be sent using this form.\",\"o+HaYe\":\"Please enter a valid promo code\",\"HnNept\":\"Please enter your new password\",\"5FSIzj\":\"Please Note\",\"MA04r/\":\"Please remove filters and set sorting to \\\"Homepage order\\\" to enable sorting\",\"pJLvdS\":\"Please select\",\"yygcoG\":\"Please select at least one ticket\",\"igBrCH\":\"Please verify your email address to access all features\",\"qCJyMx\":\"Post Checkout message\",\"g2UNkE\":\"Powered by\",\"Qs7yI0\":\"Powered By\",\"lqAWKB\":\"Powered by <0>Hi.Events0> 👋\",\"3n47kV\":\"Powered By Hi.Events\",\"ddi4j4\":\"Powered by Stripe\",\"Rs7IQv\":\"Pre Checkout message\",\"rdUucN\":\"Preview\",\"a7u1N9\":\"Price\",\"CmoB9j\":\"Price display mode\",\"Q8PWaJ\":\"Price tiers\",\"a5jvSX\":\"Price Tiers\",\"6RmHKN\":\"Primary Color\",\"G/ZwV1\":\"Primary Colour\",\"8cBtvm\":\"Primary Text Color\",\"BZz12Q\":\"Print\",\"MT7dxz\":\"Print All Tickets\",\"vERlcd\":\"Profile\",\"kUlL8W\":\"Profile updated successfully\",\"cl5WYc\":[\"Promo \",[\"promo_code\"],\" code applied\"],\"ZXpm3a\":[\"Promo \",[\"promoCode\"],\" code applied\"],\"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.\",\"812gwg\":\"Purchase License\",\"LkMOWF\":\"Quantity Available\",\"XKJuAX\":\"Question deleted\",\"oQvMPn\":\"Question Title\",\"enzGAL\":\"Questions\",\"K885Eq\":\"Questions sorted successfully\",\"OMJ035\":\"Radio Option\",\"C4TjpG\":\"Read less\",\"I3QpvQ\":\"Recipient\",\"N2C89m\":\"Reference\",\"gxFu7d\":[\"Refund amount (\",[\"0\"],\")\"],\"n10yGu\":\"Refund order\",\"zPH6gp\":\"Refund Order\",\"/BI0y9\":\"Refunded\",\"fgLNSM\":\"Register\",\"tasfos\":\"remove\",\"t/YqKh\":\"Remove\",\"RloWNu\":\"Reply to email\",\"EGm34e\":\"Resend confirmation email\",\"lnrkNz\":\"Resend email confirmation\",\"wIa8Qe\":\"Resend invitation\",\"VeKsnD\":\"Resend order email\",\"dFuEhO\":\"Resend ticket email\",\"o6+Y6d\":\"Resending...\",\"RfwZxd\":\"Reset password\",\"KbS2K9\":\"Reset Password\",\"vtc20Z\":\"Return to event page\",\"8YBH95\":\"Revenue\",\"PO/sOY\":\"Revoke invitation\",\"GDvlUT\":\"Role\",\"ELa4O9\":\"Sale End Date\",\"5uo5eP\":\"Sale ended\",\"Qm5XkZ\":\"Sale Start Date\",\"hVF4dJ\":\"Sale starts\",\"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\",\"lBAlVv\":\"Seach by name, order #, attendee # or email...\",\"W4kWXJ\":\"Search by attendee name, email or order #...\",\"ulAuWO\":\"Search by event name or description...\",\"+pr/FY\":\"Search by event name...\",\"NQSiYb\":\"Search by name or description...\",\"3zRbWw\":\"Search by name, email, or order #...\",\"BiYOdA\":\"Search by name...\",\"B1bB1j\":\"Search by order #, name or email...\",\"jA4hXE\":\"Search by subject or body...\",\"YEjitp\":\"Search by subject or content...\",\"HYnGee\":\"Search by ticket name...\",\"YIix5Y\":\"Search...\",\"OeW+DS\":\"Secondary color\",\"DnXcDK\":\"Secondary Color\",\"cZF6em\":\"Secondary text color\",\"ZIgYeg\":\"Secondary Text Color\",\"QuNKRX\":\"Select Camera\",\"kWI/37\":\"Select organizer\",\"hAjDQy\":\"Select status\",\"QYARw/\":\"Select Ticket\",\"XH5juP\":\"Select Ticket Tier\",\"nuWxSr\":\"Select Tickets\",\"O/7I0o\":\"Select...\",\"JlFcis\":\"Send\",\"qKWv5N\":[\"Send a copy to <0>\",[\"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.\",\"471O/e\":\"Send confirmation email\",\"D7ZemV\":\"Send order confirmation and ticket email\",\"v1rRtW\":\"Send Test\",\"j1VfcT\":\"SEO Description\",\"/SIY6o\":\"SEO Keywords\",\"GfWoKv\":\"SEO Settings\",\"rXngLf\":\"SEO Title\",\"/jZOZa\":\"Service Fee\",\"vu4F0h\":\"Set a minimum price and let users donate more\",\"nYNT+5\":\"Set up your event\",\"A8iqfq\":\"Set your event live\",\"Tz0i8g\":\"Settings\",\"Z8lGw6\":\"Share\",\"FFbYHm\":[\"Should this \",[\"type\"],\" be applied to all new tickets?\"],\"8vETh9\":\"Show\",\"smd87r\":\"Show available ticket quantity\",\"qDsmzu\":\"Show hidden questions\",\"fMPkxb\":\"Show more\",\"izwOOD\":\"Show tax and fees separately\",\"j3b+OW\":\"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.\",\"DvCwYF\":\"Sorry, this promo code is invalid'\",\"6a/UJE\":\"Sorry, this promo code is not recognized\",\"9rRZZ+\":\"Sorry, your order has expired. Please start a new order.\",\"a4SyEE\":\"Sorting is disabled while filters and sorting are applied\",\"4nG1lG\":\"Standard ticket with a fixed price\",\"D3iCkb\":\"Start Date\",\"RS0o7b\":\"State\",\"/2by1f\":\"State or Region\",\"uAQUqI\":\"Status\",\"UJmAAK\":\"Subject\",\"X2rrlw\":\"Subtotal\",\"b0HJ45\":[\"Success! \",[\"0\"],\" will receive an email shortly.\"],\"BJIEiF\":[\"Successfully \",[\"0\"],\" attendee\"],\"Ih8kN0\":[\"Successfully $\",[\"0\"],\" attendee\"],\"xHl17l\":[\"Successfully checked <0>\",[\"0\"],\" \",[\"1\"],\"0> \",[\"2\"]],\"OtgNFx\":\"Successfully confirmed email address\",\"IKwyaF\":\"Successfully confirmed email change\",\"zLmvhE\":\"Successfully created attendee\",\"9mZEgt\":\"Successfully Created Promo Code\",\"aIA9C4\":\"Successfully Created Question\",\"onFQYs\":\"Successfully Created Ticket\",\"Hgj/mB\":\"Successfully deleted ticket\",\"J3RJSZ\":\"Successfully updated attendee\",\"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\",\"70dYC8\":\"Successfully Updated Promo Code\",\"F+pJnL\":\"Successfully Updated Seo Settings\",\"g2lRrH\":\"Successfully updated ticket\",\"DXZRk5\":\"Suite 100\",\"GNcfRk\":\"Support Email\",\"JpohL9\":\"Tax\",\"geUFpZ\":\"Tax & Fees\",\"0RXCDo\":\"Tax or Fee deleted successfully\",\"ZowkxF\":\"Taxes\",\"EEZnW+\":\"Taxes & Fees\",\"qu6/03\":\"Taxes and Fees\",\"gVjSFp\":\"Taxes and Fees can be associated with tickets and will be added to the ticket price.\",\"e0ZSh4\":\"Text Colour\",\"gypigA\":\"That promo code is invalid\",\"0ozSQu\":\"The background color for the event homepage\",\"LbHWgW\":\"The background color for the ticket widget on the event homepage\",\"75Xclv\":\"The basic details of your event\",\"UNqHnV\":\"The color of the buttons on the event homepage\",\"0amhbL\":\"The color of the links on the event homepage\",\"QXlz+n\":\"The default currency for your events.\",\"mnafgQ\":\"The default timezone for your events.\",\"NlfnUd\":\"The link you clicked is invalid.\",\"FqjKfd\":\"The location of your event\",\"FeAfXO\":[\"The maximum numbers number of tickets for Generals is \",[\"0\"]],\"POEqXB\":\"The organizer details of your event\",\"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.\",\"TJZByZ\":\"The tax and fee to apply to this ticket. You can create new taxes and fees on the\",\"OJYwh9\":\"The taxes and fees to apply to this ticket. You can create new taxes and fees on the\",\"6BpBfZ\":\"The text color for the event homepage\",\"rljHp7\":\"The text color for the ticket widget on the event homepage\",\"s4di40\":\"The text to display in the 'Continue' button. Defaults to 'Continue'\",\"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\",\"wgAiDb\":\"The user must login to change their email.\",\"jvxN9/\":\"There are no tickets available for this event\",\"rMcHYt\":\"There is a refund pending. Please wait for it to complete before requesting another refund.\",\"hjLUr+\":\"There was an error loading this content. Please refresh the page and try again.\",\"68Axnm\":\"There was an error processing your request. Please try again.\",\"mVKOW6\":\"There was an error sending your message\",\"Um/adz\":\"These allow multiple selections\",\"vWeHWp\":\"These colors are not saved in our system.\",\"7qzHGS\":\"These colors are not saved in our system. They are only used to generate the widget.\",\"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.\",\"CNk/ro\":\"This is an online event\",\"GabtCa\":\"This is the email address that will be used as the reply-to address for all emails sent from this event\",\"CKkb5E\":\"This message is how below the\",\"cHO4ec\":\"This message will be included in the footer of all emails sent from this event\",\"RjwlZt\":\"This order has already been paid.\",\"axERYu\":\"This order has already been paid. <0>View order details0>\",\"wY+HO9\":\"This order has already been processed.\",\"5K8REg\":\"This order has already been refunded.\",\"OiQMhP\":\"This order has been cancelled\",\"YyEJij\":\"This order has been cancelled.\",\"D44cEI\":\"This order has been completed.\",\"HILpDX\":\"This order is awaiting payment\",\"0vRWbB\":\"This order is awaiting payment.\",\"BdYtn9\":\"This order is complete\",\"e3uMJH\":\"This order is complete.\",\"YNKXOK\":\"This order is processing.\",\"LIjb4v\":\"This order is processing. TODO - a nice image and poll the API\",\"yPZN4i\":\"This order page is no longer available.\",\"5189cf\":\"This overrides all visibility settings and will hide the ticket from all customers.\",\"4vwjho\":\"This page has expired. <0>View order details0>\",\"Qt7RBu\":\"This question is only visible to the event organizer\",\"os29v1\":\"This reset password link is invalid or expired.\",\"WJqBqd\":\"This ticket cannot be deleted because it is\\nassociated with an order. You can hide it instead.\",\"ma6qdu\":\"This ticket is hidden from public view\",\"xJ8nzj\":\"This ticket is hidden unless targeted by a Promo Code\",\"IV9xTT\":\"This user is not active, as they have not accepted their invitation.\",\"5AnPaO\":\"ticket\",\"kjAL4v\":\"Ticket\",\"KosivG\":\"Ticket deleted successfully\",\"dtGC3q\":\"Ticket email has been resent to attendee\",\"USk+Mn\":\"Ticket page message\",\"mRM6XH\":\"Ticket Sales\",\"NirIiz\":\"Ticket Tier\",\"8jLPgH\":\"Ticket Type\",\"jqWDf9\":\"Ticket widget background color\",\"UrMVAz\":\"Ticket Widget Preview\",\"ngtDy7\":\"Ticket widget text color\",\"N+YYpo\":\"Ticket(s)\",\"6GQNLE\":\"Tickets\",\"54q0zp\":\"Tickets for\",\"i+idBz\":\"Tickets sold\",\"AGRilS\":\"Tickets Sold\",\"56Qw2C\":\"Tickets sorted successfully\",\"4f8A8M\":\"Tickets to which the promo code applies (Applies to all by default)\",\"xN9AhL\":[\"Tier \",[\"0\"]],\"oYaHuq\":\"Tiered Ticket\",\"XZrhpz\":\"Tiered Ticket - Coming Soon\",\"4M150e\":\"Tiered tickets allow you to offer multiple price options for the same ticket.\\nThis is perfect for early bird tickets, or offering different price\\noptions for different groups of people.\",\"jQoYTX\":\"Tiered tickets allow you to offer multiple price options for the same ticket. This is perfect for early bird tickets or offering different price options for different groups of people.\",\"s/0RpH\":\"Times used\",\"40Gx0U\":\"Timezone\",\"oDGm7V\":\"TIP\",\"MHrjPM\":\"Title\",\"xdA/+p\":\"Tools\",\"72c5Qo\":\"Total\",\"BxsfMK\":\"Total Fees\",\"mpB/d9\":\"Total order amount\",\"m3FM1g\":\"Total refunded\",\"GBBIy+\":\"Total remaining\",\"/SgoNA\":\"Total Tax\",\"+zy2Nq\":\"Type\",\"mLGbAS\":[\"Unable to \",[\"0\"],\" attendee\"],\"/cSMqv\":\"Unable to create question. Please check the your details\",\"nNdxt9\":\"Unable to create ticket. Please check the your details\",\"MH/lj8\":\"Unable to update question. Please check the your details\",\"Mqy/Zy\":\"United States\",\"NIuIk1\":\"Unlimited\",\"oMcLhS\":\"Unlimited ticket quantity available\",\"E0q9qH\":\"Unlimited usages allowed\",\"ia8YsC\":\"Upcoming\",\"L/gNNk\":[\"Update \",[\"0\"]],\"+qqX74\":\"Update event name, description and dates\",\"vXPSuB\":\"Update profile\",\"gsehpV\":\"Upload an image to be displayed on the event page\",\"BNBfrU\":\"Upload Cover\",\"e5lF64\":\"Usage Example\",\"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 Settings0>\",\"vgwVkd\":\"UTC\",\"khBZkl\":\"VAT\",\"E/9LUk\":\"Venue Name\",\"AM+zF3\":\"View attendee\",\"e4mhwd\":\"View event homepage\",\"/5PEQz\":\"View event page\",\"fFornT\":\"View full message\",\"YIsEhQ\":\"View map\",\"Ep3VfY\":\"View on Google Maps\",\"AMkkeL\":\"View order\",\"Y8s4f6\":\"View order details\",\"tF+VVr\":\"VIP Ticket\",\"2q/Q7x\":\"Visibility\",\"vmOFL/\":\"We could not process your payment. Please try again or contact support.\",\"1E0vyy\":\"We couldn't load the data. Please try again.\",\"VGioT0\":\"We recommend dimensions of 2160px by 1080px, 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\"],\" 👋\"],\"wjqPqF\":\"What are Tiered Tickets?\",\"5iXvHA\":\"What is a Tiered Ticketing?\",\"MhhnvW\":\"What tickets does this code apply to? (Applies to all by default)\",\"dCil3h\":\"What tickets should this question be apply to?\",\"Rb0XUE\":\"What time will you be arriving?\",\"5N4wLD\":\"What type of question is this?\",\"S+OdxP\":\"Who is organizing this event?\",\"LINr2M\":\"Who is this message to?\",\"nWhye/\":\"Who should be asked this question?\",\"vVGiM4\":\"Who type of question is this?\",\"onLsWS\":\"Whoops! something went wrong. Please try again or contact support if the problem persists.\",\"AHXN2z\":\"Widget\",\"AU/8QR\":\"Widget Configuration\",\"VxFvXQ\":\"Widget Embed\",\"v1P7Gm\":\"Widget Settings\",\"b4itZn\":\"Working\",\"hqmXmc\":\"Working...\",\"l75CjT\":\"Yes\",\"QcwyCh\":\"Yes, remove them\",\"P+Sty0\":[\"You are changing your email to <0>\",[\"0\"],\"0>.\"],\"4ysd6z\":\"You can connecting using this Zoom link...\",\"9HGdDw\":\"You can create a promo code which targets this ticket on the\",\"KRhIxT\":\"You can now start receiving payments through Stripe.\",\"UqVaVO\":\"You cannot change the ticket type as there are attendees associated with this ticket.\",\"zQ8idk\":\"You cannot change the ticket type because there are already tickets sold for this ticket.\",\"3vRX5A\":\"You cannot delete this price tier because there are already tickets sold for this tier. You can hide it instead.\",\"RCC09s\":\"You cannot edit a default question\",\"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.\",\"XoeazJ\":\"You have no attendee questions. Attendee questions are asked once per attendee.\",\"CoZHDB\":\"You have no order questions.\",\"FZKDIe\":\"You have no order questions. Order questions are asked once per order.\",\"15qAvl\":\"You have no pending email change.\",\"n81Qk8\":\"You have not completed your Stripe Connect setup\",\"jxsiqJ\":\"You have not connected your Stripe account\",\"183zcL\":\"You have taxes and fees added to a Free Ticket. Would you like to remove or obscure them?\",\"2v5MI1\":\"You haven't sent any messages yet. You can send messages to all attendees, or to specific ticket 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\",\"LRguuL\":\"You must have at least one tier\",\"8/eLoa\":\"You need to verify your account before you can send messages.\",\"WHXRMI\":\"You'll need at least one ticket to get started. Free, paid or let the user decide what to pay.\",\"bdg03s\":\"Your account email in outgoing emails.\",\"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\"],\"0> is pending. Please check your email to confirm\"],\"yZfBoy\":\"Your message has been sent\",\"la26JS\":\"Your order is in progress\",\"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.\",\"cJ4Y4R\":\"Your refund is processing.\",\"IFHV2p\":\"Your ticket for\",\"3k7HDY\":\"Zip\",\"BM/KQm\":\"Zip or Postal Code\",\"VftCuk\":\"Zoom link, Google Meet link, etc.\",\"ySU+JY\":\"your@email.com\"}")};
\ No newline at end of file
+/*eslint-disable*/module.exports={messages:JSON.parse("{\"1bpx9A\":\"...\",\"f8qS7T\":\"'There\\\\'s nothing to show yet'\",\"4zldrf\":[[\"0\",\"plural\",{\"one\":[\"#\",\" hidden question\"],\"other\":[\"#\",\" hidden questions\"]}]],\"J/hVSQ\":[[\"0\"]],\"KMgp2+\":[[\"0\"],\" available\"],\"tmew5X\":[[\"0\"],\" checked in\"],\"Pmr5xp\":[[\"0\"],\" created successfully\"],\"FImCSc\":[[\"0\"],\" updated successfully\"],\"KOr9b4\":[[\"0\"],\"'s Events\"],\"qSiUsc\":[[\"0\"],[\"1\"]],\"wapGcj\":[[\"message\"]],\"fyE7Au\":[[\"minutes\"],\" minutes and \",[\"seconds\"],\" seconds\"],\"NlQ0cx\":[[\"organizerName\"],\"'s first event\"],\"OXku3b\":\"<0>https://0>your-website.com\",\"E15xs8\":\"⚡️ Set up your event\",\"FL6OwU\":\"✉️ Confirm your email address\",\"y1NShf\":\"🎉 Congratulation on creating an event!\",\"BN0OQd\":\"🎉 Congratulations on creating an event!\",\"fAv9QG\":\"🎟️ Add tickets\",\"4WT5tD\":\"🎨 Customize your event page\",\"3VPPdS\":\"💳 Connect with Stripe\",\"s4Tgn6\":\"📢 Promote your event\",\"cjdktw\":\"🚀 Set your event live\",\"rmelwV\":\"0 minutes and 0 seconds\",\"UQ7pBY\":\"0.50 for $0.50\",\"i1+xzD\":\"1.75 for 1.75%\",\"i0puaE\":\"10.00\",\"W9+fkZ\":\"10001\",\"qdfdgM\":\"123 Main Street\",\"IoRZzD\":\"20\",\"+H1RMb\":\"2024-01-01 10:00\",\"Q/T49U\":\"2024-01-01 18:00\",\"hMT8+2\":\"94103\",\"d9El7Q\":[\"A default \",[\"type\"],\" is automaticaly applied to all new tickets. You can override this on a per ticket basis.\"],\"SMUbbQ\":\"A Dropdown input allows only one selection\",\"qv4bfj\":\"A fee, like a booking fee or a service fee\",\"Pgaiuj\":\"A fixed amount per ticket. E.g, $0.50 per ticket\",\"f4vJgj\":\"A multi line text input\",\"ySO/4f\":\"A percentage of the ticket price. E.g., 3.5% of the ticket price\",\"WXeXGB\":\"A promo code with no discount can be used to reveal hidden tickets.\",\"GMhWB5\":\"A Radio option allows has multiple options but only one can be selected.\",\"CBt3s7\":\"A Radio Option allows only one selection\",\"AG/qmQ\":\"A Radio option has multiple options but only one can be selected.\",\"7g61G9\":\"A short description of Awesome Events Ltd.\",\"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\",\"zCk10D\":\"A single question per attendee. E.g, What is your preferred meal?\",\"ap3v36\":\"A single question per order. E.g, What is your company name?\",\"RlJmQg\":\"A standard tax, like VAT or GST\",\"pDwHGk\":\"About hi.events\",\"uIKNjo\":\"About the event\",\"bfXQ+N\":\"Accept Invitation\",\"iwyhk4\":\"Access to the VIP area...\",\"AeXO77\":\"Account\",\"0b79Xf\":\"Account Email\",\"lkNdiH\":\"Account Name\",\"Puv7+X\":\"Account Settings\",\"OmylXO\":\"Account updated successfully\",\"7L01XJ\":\"Actions\",\"FQBaXG\":\"Activate\",\"F6pfE9\":\"Active\",\"m16xKo\":\"Add\",\"LKNynS\":\"Add a cover image, description, and more to make your event stand out.\",\"gMK0ps\":\"Add event details and and manage event settings.\",\"Fb+SDI\":\"Add More tickets\",\"ApsD9J\":\"Add New\",\"TZxnm8\":\"Add Option\",\"Cw27zP\":\"Add question\",\"yWiPh+\":\"Add Tax or Fee\",\"BGD9Yt\":\"Add tickets\",\"goOKRY\":\"Add tier\",\"p59pEv\":\"Additional Details\",\"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.\",\"CPXP5Z\":\"Affiliates\",\"W7AfhC\":\"All attendees of this event\",\"QsYjci\":\"All Events\",\"/twVAS\":\"All Tickets\",\"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..\",\"8wYDMp\":\"Already have an account?\",\"ApOYO8\":\"Amazing, Event, Keywords...\",\"hehnjM\":\"Amount\",\"TRYjHa\":[\"amount in \",[\"0\"]],\"R2O9Rg\":[\"Amount paid (\",[\"0\"],\")\"],\"tLjOgo\":[\"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\",\"er3d/4\":\"An error occurred while sorting the tickets. Please try again or refresh the page\",\"hhvESd\":\"An event is the actual event you are hosting\",\"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.\",\"j4DliD\":\"Any queries from ticket 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\",\"DB8zMK\":\"Apply\",\"GctSSm\":\"Apply Promo Code\",\"jcnZEw\":[\"Apply this \",[\"type\"],\" to all new tickets\"],\"q7TRd7\":\"Are you sure you want to activate this attendee?\",\"/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\",\"2xEpch\":\"Ask once per attendee\",\"LBLOqH\":\"Ask once per order\",\"ss9PbX\":\"Attendee\",\"m0CFV2\":\"Attendee Details\",\"lXcSD2\":\"Attendee questions\",\"VvYqMB\":\"Attendee questions are asked once per attendee. By default, people are asked for their first name, last name, and email address.\",\"spxPEv\":\"Attendee questions are asked once per attendee. By default, we ask for the attendee's first name, last name, and email address.\",\"9SZT4E\":\"Attendees\",\"5UbY+B\":\"Attendees with a specific ticket\",\"IMJ6rh\":\"Auto Resize\",\"vZ5qKF\":\"Automatically resize the widget height based on the content. When disabled, the widget will fill the height of the container.\",\"lXkUEV\":\"Availability\",\"ioG+xt\":\"Awaiting Payment\",\"3PmQfI\":\"Awesome Event\",\"kNmmvE\":\"Awesome Events Ltd.\",\"Yrbm6T\":\"Awesome Organizer Ltd.\",\"9002sI\":\"Back to all events\",\"0TGkYM\":\"Back to event homepage\",\"A302fe\":\"Back to event page\",\"VCoEm+\":\"Back to login\",\"MLZyiY\":\"Background color\",\"k1bLf+\":\"Background Color\",\"I7xjqg\":\"Background Type\",\"EOUool\":\"Basic Details\",\"7EGQKA\":\"Because you are the account owner, you cannot change your role or status.\",\"1mwMl+\":\"Before you send!\",\"wVfiR2\":\"Before you're event can go live, there's a few thing to do.\",\"/yeZ20\":\"Before your event can go live, there are a few things you need to do.\",\"1xAcxY\":\"Begin selling tickets in minutes\",\"R+w/Va\":\"Billing\",\"Ptp9MF\":\"Button color\",\"whqocw\":\"By registering you agree to our <0>Terms of Service0> and <1>Privacy Policy1>.\",\"bcCn6r\":\"Calculation Type\",\"+8bmSu\":\"California\",\"iStTQt\":\"Camera permission was denied. <0>Request Permission0> again, or if this doesn't work, you will need to <1>grant this page1> access to your camera in your browser settings.\",\"Jzn1qy\":\"Can't load events\",\"dEgA5A\":\"Cancel\",\"Gjt/py\":\"Cancel email change\",\"tVJk4q\":\"Cancel order\",\"Os6n2a\":\"Cancel Order\",\"Mz7Ygx\":[\"Cancel Order \",[\"0\"]],\"Ud7zwq\":\"Canceling will cancel all tickets associated with this order, and release the tickets back into the available pool.\",\"vv7kpg\":\"Cancelled\",\"77/YgG\":\"Change Cover\",\"GptGxg\":\"Change password\",\"QndF4b\":\"check in\",\"xMDm+I\":\"Check In\",\"9FVFym\":\"check out\",\"gXcPxc\":\"Check-in\",\"Y3FYXy\":\"Check-In\",\"CNafaC\":\"Checkbox options allow multiple selections\",\"SpabVf\":\"Checkboxes\",\"CRu4lK\":\"Checked In\",\"/ydvvl\":\"Checkout Messaging\",\"1WnhCL\":\"Checkout Settings\",\"JjkX4+\":\"Choose a color for your background\",\"/Jizh9\":\"Choose an account\",\"jJGoVv\":\"Choose what notifications you want to receive\",\"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\",\"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\",\"DwF9eH\":\"Component Code\",\"7VpPHA\":\"Confirm\",\"ZaEJZM\":\"Confirm Email Change\",\"yjkELF\":\"Confirm New Password\",\"xnWESi\":\"Confirm password\",\"p2/GCq\":\"Confirm Password\",\"wnDgGj\":\"Confirming email address...\",\"DnLC08\":\"Congratulation on creating an event!\",\"pbAk7a\":\"Connect Stripe\",\"UMGQOh\":\"Connect with Stripe\",\"QKLP1W\":\"Connect your Stripe account to start receiving payments.\",\"5lcVkL\":\"Connection Details\",\"i3p844\":\"Contact email\",\"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\",\"RGVUUI\":\"Continue To Payment\",\"6V3Ea3\":\"Copied\",\"T5rdis\":\"copied to clipboard\",\"he3ygx\":\"Copy\",\"8+cOrS\":\"Copy details to all attendees\",\"ENCIQz\":\"Copy Link\",\"E6nRW7\":\"Copy URL\",\"JNCzPW\":\"Country\",\"IF7RiR\":\"Cover\",\"P0rbCt\":\"Cover Image\",\"hYgDIe\":\"Create\",\"b9XOHo\":[\"Create \",[\"0\"]],\"6kdXbW\":\"Create a Promo Code\",\"n5pRtF\":\"Create a Ticket\",\"X6sRve\":[\"Create an account or <0>\",[\"0\"],\"0> to get started\"],\"nx+rqg\":\"create an organizer\",\"ipP6Ue\":\"Create Attendee\",\"uN355O\":\"Create Event\",\"BOqY23\":\"Create new\",\"kpJAeS\":\"Create Organizer\",\"sYpiZP\":\"Create Promo Code\",\"a6YrKg\":\"Create promo codes\",\"n6H6AO\":\"Create promo codes to offer discounts to your attendees.\",\"B3Mkdt\":\"Create Question\",\"UKfi21\":\"Create Tax or Fee\",\"Tg323g\":\"Create Ticket\",\"agZ87r\":\"Create tickets for your event, set prices, and manage available quantity.\",\"d+F6q9\":\"Created\",\"Q2lUR2\":\"Currency\",\"DCKkhU\":\"Current Password\",\"uIElGP\":\"Custom Maps URL\",\"876pfE\":\"Customer\",\"QOg2Sf\":\"Customize the email and notification settings for this event\",\"Lu75d1\":\"Customize the email settings for this event\",\"RaxMyF\":\"Customize the event homepage and checkout experience\",\"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\",\"7p5kLi\":\"Dashboard\",\"mYGY3B\":\"Date\",\"JvUngl\":\"Date & Time\",\"RiXc4g\":\"Deactivate user\",\"cnGeoo\":\"Delete\",\"WHf154\":\"Delete code\",\"heJllm\":\"Delete Cover\",\"KWa0gi\":\"Delete Image\",\"IatsLx\":\"Delete question\",\"GnyEfA\":\"Delete ticket\",\"E33LRn\":\"Delete user\",\"Nu4oKW\":\"Description\",\"s9iD5d\":\"Description should be less than 50,000 characters\",\"URmyfc\":\"Details\",\"x8uDKb\":\"Disable code\",\"H6Ma8Z\":\"Discount\",\"ypJ62C\":\"Discount %\",\"3LtiBI\":[\"Discount in \",[\"0\"]],\"C8JLas\":\"Discount Type\",\"1QfxQT\":\"Dismiss\",\"cVq+ga\":\"Don't have an account? <0>Sign Up0>\",\"4+aC/x\":\"Donation / Pay what you'd like ticket\",\"++S5i/\":\"Donation amount\",\"OO7MG7\":\"Donation Ticket\",\"0pEVi2\":\"Download Tickets PDF\",\"uABpqP\":\"Drag and drop or click\",\"3z2ium\":\"Drag to sort\",\"6skwyH\":\"Drop an image, or click here to replace the Cover Image\",\"S37RRV\":\"Drop an image, or click here to upload the Cover Image\",\"CfKofC\":\"Dropdown selection\",\"vi8Q/5\":\"Duplicate event\",\"7Cx5It\":\"Early bird\",\"ePK91l\":\"Edit\",\"N6j2JH\":[\"Edit \",[\"0\"]],\"kNGp1D\":\"Edit attendee\",\"t2bbp8\":\"Edit Attendee\",\"iFgaVN\":\"Edit Code\",\"jrBSO1\":\"Edit Organizer\",\"9BdS63\":\"Edit Promo Code\",\"O0CE67\":\"Edit question\",\"EzwCw7\":\"Edit Question\",\"d+nnyk\":\"Edit Ticket\",\"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\",\"WiKda6\":\"Email Configuration\",\"APuxIE\":\"Email confirmation resent\",\"YaCgdO\":\"Email confirmation resent successfully\",\"jyt+cx\":\"Email footer message\",\"I6F3cp\":\"Email not verified\",\"G5zNMX\":\"Email Settings\",\"NTZ/NX\":\"Embed Code\",\"4rnJq4\":\"Embed Script\",\"VFv2ZC\":\"End Date\",\"237hSL\":\"Ended\",\"MhVoma\":\"Enter an amount excluding taxes and fees.\",\"3Z223G\":\"Error confirming email address\",\"a6gga1\":\"Error confirming email change\",\"5/63nR\":\"EUR\",\"0pC/y6\":\"Event\",\"nuoP/j\":\"Event created successfully\",\"CFLUfD\":\"Event created successfully 🎉\",\"0Zptey\":\"Event Defaults\",\"Xe3XMd\":\"Event is not visible to the public\",\"4pKXJS\":\"Event is visible to the public\",\"ClwUUD\":\"Event location & venue details\",\"OopDbA\":\"Event page\",\"JyD0LH\":\"Event Settings\",\"4/If97\":\"Event status update failed. Please try again later\",\"btxLWj\":\"Event status updated\",\"tst44n\":\"Events\",\"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.\",\"9zSt4h\":\"Failed to export attendees. Please try again.\",\"2uGNuE\":\"Failed to export orders. Please try again.\",\"ZQ15eN\":\"Failed to resend ticket email\",\"PLUB/s\":\"Fee\",\"YirHq7\":\"Feedback\",\"/mfICu\":\"Fees\",\"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.\",\"QWa3Sk\":\"First Name, Last Name, and Email Address are default questions that are always included in the checkout process.\",\"TpqW74\":\"Fixed\",\"irpUxR\":\"Fixed amount\",\"TF9opW\":\"Flash is not available on this device\",\"UNMVei\":\"Forgot password?\",\"2POOFK\":\"Free\",\"/4rQr+\":\"Free Ticket\",\"01my8x\":\"Free ticket, no payment information required\",\"ejVYRQ\":\"From\",\"u6FPxT\":\"Get Tickets\",\"4GLxhy\":\"Getting Started\",\"4D3rRj\":\"Go back to profile\",\"cQPKZt\":\"Go to Dashboard\",\"9LCqFI\":\"Go to event homepage\",\"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.\",\"Ow9Hz5\":[\"Hi.Events Conference \",[\"0\"]],\"verBst\":\"Hi.Events Conference Center\",\"6eMEQO\":\"hi.events logo\",\"C4qOW8\":\"Hidden from public view\",\"k3dfFD\":\"Hidden questions are only visible to the event organizer and not to the customer.\",\"EeNE0j\":\"Hidden will not be shown to customers.\",\"vLyv1R\":\"Hide\",\"Mkkvfd\":\"Hide getting started page\",\"mFn5Xz\":\"Hide hidden questions\",\"SCimta\":\"Hide the getting started page from the sidebar\",\"Da29Y6\":\"Hide this question\",\"fsi6fC\":\"Hide this ticket from customers\",\"fvDQhr\":\"Hide this tier from users\",\"Fhzoa8\":\"Hide ticket after sale end date\",\"yhm3J/\":\"Hide ticket before sale start date\",\"k7/oGT\":\"Hide ticket unless user has applicable promo code\",\"L0ZOiu\":\"Hide ticket when sold out\",\"uno73L\":\"Hiding a ticket will prevent users from seeing it on the event page.\",\"tj6Gob\":\"Homepage & Checkout\",\"m07jN3\":\"Homepage & Checkout Settings\",\"ZOBwQn\":\"Homepage Design\",\"PRuBTd\":\"Homepage Designer\",\"YjVNGZ\":\"Homepage Preview\",\"c3E/kw\":\"Homer\",\"id+NIk\":\"How many minutes the customer has to complete their order\",\"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?\",\"fYyXCd\":\"https://example-maps-service.com/...\",\"uOXLV3\":\"I agree to the <0>terms and conditions0>\",\"sIxFk5\":\"I agree to the terms and conditions\",\"Crwwhn\":[\"If a new tab did not open, please <0>\",[\"0\"],\".0>\"],\"93DUnd\":[\"If a new tab did not open, please <0><1>\",[\"0\"],\"1>.0>\"],\"9gtsTP\":\"If blank, the address will be used to generate a Google map link\",\"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\",\"Gyl1h8\":\"Image dimensions must be at least 600px by 300px\",\"TiGacZ\":\"Image dimensions must be at least 900px by 450px\",\"UnTvkH\":\"Image dimensions must be between 3000px by 2000px. With a max height of 2000px and max width of 3000px\",\"uPEIvq\":\"Image must be less than 5MB\",\"AGZmwV\":\"Image uploaded successfully\",\"ibi52/\":\"Image width must be at least 900px and height at least 50px\",\"NoNwIX\":\"Inactive\",\"T0K0yl\":\"Inactive users cannot log in.\",\"OFAmKP\":\"Include connection details for your online event\",\"BfPBBG\":\"Include connection details for your online event. These details will be after successful registration.\",\"6+pAOx\":\"Include connection details for your online event. These details will be shown after successful registration.\",\"evpD4c\":\"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\",\"nbfdhU\":\"Integrations\",\"OyLdaz\":\"Invitation resent!\",\"HE6KcK\":\"Invitation revoked!\",\"SQKPvQ\":\"Invite User\",\"PgdQrx\":\"Issue refund\",\"KFXip/\":\"John\",\"XcgRvb\":\"Johnson\",\"1IWWYX\":[\"KittenTech Conference \",[\"0\"]],\"ZgJEMX\":\"KittenTech Conference Center\",\"87a/t/\":\"Label\",\"I3yitW\":\"Last login\",\"1ZaQUH\":\"Last name\",\"UXBCwc\":\"Last Name\",\"CKcupn\":\"Latest Orders\",\"tITjB1\":\"Learn more about Stripe\",\"c+gAXc\":\"Let's get started by creating your first event\",\"vR92Yn\":\"Let's get started by creating your first organizer\",\"QfrKvi\":\"Link color\",\"wJijgU\":\"Location\",\"sQia9P\":\"Log in\",\"zUDyah\":\"Logging in\",\"z0t9bb\":\"Login\",\"nOhz3x\":\"Logout\",\"F2jAFv\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nam placerat elementum...\",\"XkhEf9\":\"Lorem ipsum...\",\"MU3ijv\":\"Make this question mandatory\",\"wckWOP\":\"Manage\",\"8mmINh\":\"Manage billing information and view invoices\",\"jWIznR\":\"Manage default settings for new events\",\"n4SpU5\":\"Manage event\",\"wqyqaF\":\"Manage general account settings\",\"cQrNR3\":\"Manage Profile\",\"f92Qak\":\"Manage taxes and fees which can be applied to tickets\",\"PlTcVr\":\"Manage taxes and fees which can be applied to your tickets\",\"ophZVW\":\"Manage tickets\",\"Wsx7Iu\":\"Manage users and their permissions\",\"DdHfeW\":\"Manage your account details and default settings\",\"QHcjP+\":\"Manage your billing and payment details\",\"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\",\"lzcrX3\":\"Manually adding an attendee will adjust ticket quantity.\",\"g9dPPQ\":\"Maximum Per Order\",\"l5OcwO\":\"Message attendee\",\"Gv5AMu\":\"Message Attendees\",\"1jRD0v\":\"Message attendees with specific tickets\",\"Lvi+gV\":\"Message buyer\",\"tNZzFb\":\"Message Content\",\"lYDV/s\":\"Message individual attendees\",\"V7DYWd\":\"Message Sent\",\"t7TeQU\":\"Messages\",\"xFRMlO\":\"Minimum Per Order\",\"QYcUEf\":\"Minimum Price\",\"mYLhkl\":\"Miscellaneous Settings\",\"KYveV8\":\"Multi line text box\",\"SVuGaP\":\"Multiple price options, users can choose which to pay\",\"6wbTro\":\"Multiple price options. Perfect for early bird tickets etc.\",\"/bhMdO\":\"My amazing event description...\",\"vX8/tc\":\"My amazing event title...\",\"hKtWk2\":\"My Profile\",\"pRjx4L\":\"Nam placerat elementum...\",\"6YtxFj\":\"Name\",\"hVuv90\":\"Name should be less than 150 characters\",\"AIUkyF\":\"Navigate to Attendee\",\"qqeAJM\":\"Never\",\"7vhWI8\":\"New Password\",\"m920rF\":\"New York\",\"1UzENP\":\"No\",\"Wjz5KP\":\"No Attendees to show\",\"fFeCKc\":\"No Discount\",\"Z6ILSe\":\"No events for this organizer\",\"yAlJXG\":\"No events to show\",\"KPWxKD\":\"No messages to show\",\"J2LkP8\":\"No orders to show\",\"+Y976X\":\"No Promo Codes to show\",\"Ev2r9A\":\"No results\",\"RHyZUL\":\"No search results.\",\"cU1op4\":\"No Taxes or Fees have been added yet.\",\"RY2eP1\":\"No Taxes or Fees have been added.\",\"uR2eFu\":\"No tickets available\",\"b7JZFg\":\"No tickets to show\",\"EdQY6l\":\"None\",\"OJx3wK\":\"Not available\",\"x5+Lcz\":\"Not Checked In\",\"Scbrsn\":\"Not On Sale\",\"hFwWnI\":\"Notification Settings\",\"xXqEPO\":\"Notify buyer of refund\",\"YpN29s\":\"Notify organizer of new orders\",\"qeQhNj\":\"Now let's create your first event\",\"2NPDz1\":\"On sale\",\"Ldu/RI\":\"On Sale\",\"Ug4SfW\":\"Once you create an event, you'll see it here.\",\"+P/tII\":\"Once you're ready, set your event live and start selling tickets.\",\"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.\",\"OdnLE4\":\"Open sidebar\",\"ZZEYpT\":[\"Option \",[\"i\"]],\"0zpgxV\":\"Options\",\"BzEFor\":\"or\",\"UYUgdb\":\"Order\",\"mm+eaX\":\"Order #\",\"B3gPuX\":\"Order Cancelled\",\"SIbded\":\"Order Completed\",\"q/CcwE\":\"Order Date\",\"Tol4BF\":\"Order Details\",\"L4kzeZ\":[\"Order Details \",[\"0\"]],\"WbImlQ\":\"Order has been canceled and the order owner has been notified.\",\"VCOi7U\":\"Order questions\",\"wg9MPp\":\"Order questions are asked once per order. By default, people are asked for their first name, last name, and email address.\",\"+KNVxX\":\"Order questions are asked once per order. By default, we ask for the first name, last name, and email address.\",\"TPoYsF\":\"Order Reference\",\"GX6dZv\":\"Order Summary\",\"tDTq0D\":\"Order timeout\",\"1h+RBg\":\"Orders\",\"mz+c33\":\"Orders Created\",\"G5RhpL\":\"Organizer\",\"m/ebSk\":\"Organizer Details\",\"mYygCM\":\"Organizer is required\",\"Pa6G7v\":\"Organizer Name\",\"J2cXxX\":\"Organizers can only manage events and tickets. 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\",\"2w/FiJ\":\"Paid Ticket\",\"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\",\"iq5IUr\":\"Pause Ticket\",\"621rYf\":\"Payment\",\"JhtZAK\":\"Payment Failed\",\"xgav5v\":\"Payment succeeded!\",\"CcK+Ft\":\"PDF\",\"att1Hj\":\"percent\",\"/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\",\"q40YFl\":\"Please continue your order in the new tab\",\"ZJG4Di\":\"Please ensure you only send emails directly related to the order. Promotional emails\\nshould not be sent using this form.\",\"o+HaYe\":\"Please enter a valid promo code\",\"HnNept\":\"Please enter your new password\",\"5FSIzj\":\"Please Note\",\"MA04r/\":\"Please remove filters and set sorting to \\\"Homepage order\\\" to enable sorting\",\"pJLvdS\":\"Please select\",\"yygcoG\":\"Please select at least one ticket\",\"igBrCH\":\"Please verify your email address to access all features\",\"qCJyMx\":\"Post Checkout message\",\"g2UNkE\":\"Powered by\",\"Qs7yI0\":\"Powered By\",\"lqAWKB\":\"Powered by <0>Hi.Events0> 👋\",\"3n47kV\":\"Powered By Hi.Events\",\"ddi4j4\":\"Powered by Stripe\",\"Rs7IQv\":\"Pre Checkout message\",\"rdUucN\":\"Preview\",\"a7u1N9\":\"Price\",\"CmoB9j\":\"Price display mode\",\"Q8PWaJ\":\"Price tiers\",\"a5jvSX\":\"Price Tiers\",\"6RmHKN\":\"Primary Color\",\"G/ZwV1\":\"Primary Colour\",\"8cBtvm\":\"Primary Text Color\",\"BZz12Q\":\"Print\",\"MT7dxz\":\"Print All Tickets\",\"vERlcd\":\"Profile\",\"kUlL8W\":\"Profile updated successfully\",\"cl5WYc\":[\"Promo \",[\"promo_code\"],\" code applied\"],\"ZXpm3a\":[\"Promo \",[\"promoCode\"],\" code applied\"],\"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.\",\"812gwg\":\"Purchase License\",\"LkMOWF\":\"Quantity Available\",\"XKJuAX\":\"Question deleted\",\"oQvMPn\":\"Question Title\",\"enzGAL\":\"Questions\",\"K885Eq\":\"Questions sorted successfully\",\"OMJ035\":\"Radio Option\",\"C4TjpG\":\"Read less\",\"I3QpvQ\":\"Recipient\",\"N2C89m\":\"Reference\",\"gxFu7d\":[\"Refund amount (\",[\"0\"],\")\"],\"n10yGu\":\"Refund order\",\"zPH6gp\":\"Refund Order\",\"/BI0y9\":\"Refunded\",\"fgLNSM\":\"Register\",\"tasfos\":\"remove\",\"t/YqKh\":\"Remove\",\"RloWNu\":\"Reply to email\",\"EGm34e\":\"Resend confirmation email\",\"lnrkNz\":\"Resend email confirmation\",\"wIa8Qe\":\"Resend invitation\",\"VeKsnD\":\"Resend order email\",\"dFuEhO\":\"Resend ticket email\",\"o6+Y6d\":\"Resending...\",\"RfwZxd\":\"Reset password\",\"KbS2K9\":\"Reset Password\",\"vtc20Z\":\"Return to event page\",\"8YBH95\":\"Revenue\",\"PO/sOY\":\"Revoke invitation\",\"GDvlUT\":\"Role\",\"ELa4O9\":\"Sale End Date\",\"5uo5eP\":\"Sale ended\",\"Qm5XkZ\":\"Sale Start Date\",\"hVF4dJ\":\"Sale starts\",\"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\",\"lBAlVv\":\"Seach by name, order #, attendee # or email...\",\"W4kWXJ\":\"Search by attendee name, email or order #...\",\"ulAuWO\":\"Search by event name or description...\",\"+pr/FY\":\"Search by event name...\",\"NQSiYb\":\"Search by name or description...\",\"3zRbWw\":\"Search by name, email, or order #...\",\"BiYOdA\":\"Search by name...\",\"B1bB1j\":\"Search by order #, name or email...\",\"jA4hXE\":\"Search by subject or body...\",\"YEjitp\":\"Search by subject or content...\",\"HYnGee\":\"Search by ticket name...\",\"YIix5Y\":\"Search...\",\"OeW+DS\":\"Secondary color\",\"DnXcDK\":\"Secondary Color\",\"cZF6em\":\"Secondary text color\",\"ZIgYeg\":\"Secondary Text Color\",\"QuNKRX\":\"Select Camera\",\"kWI/37\":\"Select organizer\",\"hAjDQy\":\"Select status\",\"QYARw/\":\"Select Ticket\",\"XH5juP\":\"Select Ticket Tier\",\"nuWxSr\":\"Select Tickets\",\"O/7I0o\":\"Select...\",\"JlFcis\":\"Send\",\"qKWv5N\":[\"Send a copy to <0>\",[\"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.\",\"471O/e\":\"Send confirmation email\",\"D7ZemV\":\"Send order confirmation and ticket email\",\"v1rRtW\":\"Send Test\",\"j1VfcT\":\"SEO Description\",\"/SIY6o\":\"SEO Keywords\",\"GfWoKv\":\"SEO Settings\",\"rXngLf\":\"SEO Title\",\"/jZOZa\":\"Service Fee\",\"vu4F0h\":\"Set a minimum price and let users donate more\",\"Bj/QGQ\":\"Set a minimum price and let users pay more if they choose\",\"nYNT+5\":\"Set up your event\",\"A8iqfq\":\"Set your event live\",\"Tz0i8g\":\"Settings\",\"Z8lGw6\":\"Share\",\"FFbYHm\":[\"Should this \",[\"type\"],\" be applied to all new tickets?\"],\"8vETh9\":\"Show\",\"smd87r\":\"Show available ticket quantity\",\"qDsmzu\":\"Show hidden questions\",\"fMPkxb\":\"Show more\",\"izwOOD\":\"Show tax and fees separately\",\"j3b+OW\":\"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.\",\"DvCwYF\":\"Sorry, this promo code is invalid'\",\"6a/UJE\":\"Sorry, this promo code is not recognized\",\"9rRZZ+\":\"Sorry, your order has expired. Please start a new order.\",\"a4SyEE\":\"Sorting is disabled while filters and sorting are applied\",\"4nG1lG\":\"Standard ticket with a fixed price\",\"D3iCkb\":\"Start Date\",\"RS0o7b\":\"State\",\"/2by1f\":\"State or Region\",\"uAQUqI\":\"Status\",\"UJmAAK\":\"Subject\",\"X2rrlw\":\"Subtotal\",\"b0HJ45\":[\"Success! \",[\"0\"],\" will receive an email shortly.\"],\"BJIEiF\":[\"Successfully \",[\"0\"],\" attendee\"],\"Ih8kN0\":[\"Successfully $\",[\"0\"],\" attendee\"],\"xHl17l\":[\"Successfully checked <0>\",[\"0\"],\" \",[\"1\"],\"0> \",[\"2\"]],\"OtgNFx\":\"Successfully confirmed email address\",\"IKwyaF\":\"Successfully confirmed email change\",\"zLmvhE\":\"Successfully created attendee\",\"9mZEgt\":\"Successfully Created Promo Code\",\"aIA9C4\":\"Successfully Created Question\",\"onFQYs\":\"Successfully Created Ticket\",\"Hgj/mB\":\"Successfully deleted ticket\",\"J3RJSZ\":\"Successfully updated attendee\",\"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\",\"70dYC8\":\"Successfully Updated Promo Code\",\"F+pJnL\":\"Successfully Updated Seo Settings\",\"g2lRrH\":\"Successfully updated ticket\",\"DXZRk5\":\"Suite 100\",\"GNcfRk\":\"Support Email\",\"JpohL9\":\"Tax\",\"geUFpZ\":\"Tax & Fees\",\"0RXCDo\":\"Tax or Fee deleted successfully\",\"ZowkxF\":\"Taxes\",\"EEZnW+\":\"Taxes & Fees\",\"qu6/03\":\"Taxes and Fees\",\"gVjSFp\":\"Taxes and Fees can be associated with tickets and will be added to the ticket price.\",\"e0ZSh4\":\"Text Colour\",\"gypigA\":\"That promo code is invalid\",\"0ozSQu\":\"The background color for the event homepage\",\"LbHWgW\":\"The background color for the ticket widget on the event homepage\",\"75Xclv\":\"The basic details of your event\",\"UNqHnV\":\"The color of the buttons on the event homepage\",\"0amhbL\":\"The color of the links on the event homepage\",\"QXlz+n\":\"The default currency for your events.\",\"mnafgQ\":\"The default timezone for your events.\",\"NlfnUd\":\"The link you clicked is invalid.\",\"FqjKfd\":\"The location of your event\",\"FeAfXO\":[\"The maximum numbers number of tickets for Generals is \",[\"0\"]],\"POEqXB\":\"The organizer details of your event\",\"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.\",\"TJZByZ\":\"The tax and fee to apply to this ticket. You can create new taxes and fees on the\",\"OJYwh9\":\"The taxes and fees to apply to this ticket. You can create new taxes and fees on the\",\"6BpBfZ\":\"The text color for the event homepage\",\"rljHp7\":\"The text color for the ticket widget on the event homepage\",\"s4di40\":\"The text to display in the 'Continue' button. Defaults to 'Continue'\",\"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\",\"wgAiDb\":\"The user must login to change their email.\",\"jvxN9/\":\"There are no tickets available for this event\",\"rMcHYt\":\"There is a refund pending. Please wait for it to complete before requesting another refund.\",\"hjLUr+\":\"There was an error loading this content. Please refresh the page and try again.\",\"68Axnm\":\"There was an error processing your request. Please try again.\",\"mVKOW6\":\"There was an error sending your message\",\"Um/adz\":\"These allow multiple selections\",\"vWeHWp\":\"These colors are not saved in our system.\",\"7qzHGS\":\"These colors are not saved in our system. They are only used to generate the widget.\",\"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.\",\"CNk/ro\":\"This is an online event\",\"GabtCa\":\"This is the email address that will be used as the reply-to address for all emails sent from this event\",\"CKkb5E\":\"This message is how below the\",\"cHO4ec\":\"This message will be included in the footer of all emails sent from this event\",\"RjwlZt\":\"This order has already been paid.\",\"axERYu\":\"This order has already been paid. <0>View order details0>\",\"wY+HO9\":\"This order has already been processed.\",\"5K8REg\":\"This order has already been refunded.\",\"OiQMhP\":\"This order has been cancelled\",\"YyEJij\":\"This order has been cancelled.\",\"D44cEI\":\"This order has been completed.\",\"HILpDX\":\"This order is awaiting payment\",\"0vRWbB\":\"This order is awaiting payment.\",\"BdYtn9\":\"This order is complete\",\"e3uMJH\":\"This order is complete.\",\"YNKXOK\":\"This order is processing.\",\"LIjb4v\":\"This order is processing. TODO - a nice image and poll the API\",\"yPZN4i\":\"This order page is no longer available.\",\"5189cf\":\"This overrides all visibility settings and will hide the ticket from all customers.\",\"4vwjho\":\"This page has expired. <0>View order details0>\",\"Qt7RBu\":\"This question is only visible to the event organizer\",\"os29v1\":\"This reset password link is invalid or expired.\",\"WJqBqd\":\"This ticket cannot be deleted because it is\\nassociated with an order. You can hide it instead.\",\"ma6qdu\":\"This ticket is hidden from public view\",\"xJ8nzj\":\"This ticket is hidden unless targeted by a Promo Code\",\"IV9xTT\":\"This user is not active, as they have not accepted their invitation.\",\"5AnPaO\":\"ticket\",\"kjAL4v\":\"Ticket\",\"KosivG\":\"Ticket deleted successfully\",\"dtGC3q\":\"Ticket email has been resent to attendee\",\"USk+Mn\":\"Ticket page message\",\"mRM6XH\":\"Ticket Sales\",\"NirIiz\":\"Ticket Tier\",\"8jLPgH\":\"Ticket Type\",\"jqWDf9\":\"Ticket widget background color\",\"UrMVAz\":\"Ticket Widget Preview\",\"ngtDy7\":\"Ticket widget text color\",\"N+YYpo\":\"Ticket(s)\",\"6GQNLE\":\"Tickets\",\"54q0zp\":\"Tickets for\",\"i+idBz\":\"Tickets sold\",\"AGRilS\":\"Tickets Sold\",\"56Qw2C\":\"Tickets sorted successfully\",\"4f8A8M\":\"Tickets to which the promo code applies (Applies to all by default)\",\"xN9AhL\":[\"Tier \",[\"0\"]],\"oYaHuq\":\"Tiered Ticket\",\"XZrhpz\":\"Tiered Ticket - Coming Soon\",\"4M150e\":\"Tiered tickets allow you to offer multiple price options for the same ticket.\\nThis is perfect for early bird tickets, or offering different price\\noptions for different groups of people.\",\"jQoYTX\":\"Tiered tickets allow you to offer multiple price options for the same ticket. This is perfect for early bird tickets or offering different price options for different groups of people.\",\"s/0RpH\":\"Times used\",\"40Gx0U\":\"Timezone\",\"oDGm7V\":\"TIP\",\"MHrjPM\":\"Title\",\"xdA/+p\":\"Tools\",\"72c5Qo\":\"Total\",\"BxsfMK\":\"Total Fees\",\"mpB/d9\":\"Total order amount\",\"m3FM1g\":\"Total refunded\",\"GBBIy+\":\"Total remaining\",\"/SgoNA\":\"Total Tax\",\"+zy2Nq\":\"Type\",\"mLGbAS\":[\"Unable to \",[\"0\"],\" attendee\"],\"/cSMqv\":\"Unable to create question. Please check the your details\",\"nNdxt9\":\"Unable to create ticket. Please check the your details\",\"MH/lj8\":\"Unable to update question. Please check the your details\",\"Mqy/Zy\":\"United States\",\"NIuIk1\":\"Unlimited\",\"oMcLhS\":\"Unlimited ticket quantity available\",\"E0q9qH\":\"Unlimited usages allowed\",\"ia8YsC\":\"Upcoming\",\"L/gNNk\":[\"Update \",[\"0\"]],\"+qqX74\":\"Update event name, description and dates\",\"vXPSuB\":\"Update profile\",\"gsehpV\":\"Upload an image to be displayed on the event page\",\"BNBfrU\":\"Upload Cover\",\"UtDm3q\":\"URL copied to clipboard\",\"e5lF64\":\"Usage Example\",\"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 Settings0>\",\"vgwVkd\":\"UTC\",\"khBZkl\":\"VAT\",\"E/9LUk\":\"Venue Name\",\"AM+zF3\":\"View attendee\",\"e4mhwd\":\"View event homepage\",\"/5PEQz\":\"View event page\",\"fFornT\":\"View full message\",\"YIsEhQ\":\"View map\",\"Ep3VfY\":\"View on Google Maps\",\"AMkkeL\":\"View order\",\"Y8s4f6\":\"View order details\",\"tF+VVr\":\"VIP Ticket\",\"2q/Q7x\":\"Visibility\",\"vmOFL/\":\"We could not process your payment. Please try again or contact support.\",\"1E0vyy\":\"We couldn't load the data. Please try again.\",\"VGioT0\":\"We recommend dimensions of 2160px by 1080px, 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\"],\" 👋\"],\"wjqPqF\":\"What are Tiered Tickets?\",\"5iXvHA\":\"What is a Tiered Ticketing?\",\"MhhnvW\":\"What tickets does this code apply to? (Applies to all by default)\",\"dCil3h\":\"What tickets should this question be apply to?\",\"Rb0XUE\":\"What time will you be arriving?\",\"5N4wLD\":\"What type of question is this?\",\"S+OdxP\":\"Who is organizing this event?\",\"LINr2M\":\"Who is this message to?\",\"nWhye/\":\"Who should be asked this question?\",\"vVGiM4\":\"Who type of question is this?\",\"onLsWS\":\"Whoops! something went wrong. Please try again or contact support if the problem persists.\",\"AHXN2z\":\"Widget\",\"AU/8QR\":\"Widget Configuration\",\"VxFvXQ\":\"Widget Embed\",\"v1P7Gm\":\"Widget Settings\",\"b4itZn\":\"Working\",\"hqmXmc\":\"Working...\",\"l75CjT\":\"Yes\",\"QcwyCh\":\"Yes, remove them\",\"P+Sty0\":[\"You are changing your email to <0>\",[\"0\"],\"0>.\"],\"4ysd6z\":\"You can connecting using this Zoom link...\",\"9HGdDw\":\"You can create a promo code which targets this ticket on the\",\"KRhIxT\":\"You can now start receiving payments through Stripe.\",\"UqVaVO\":\"You cannot change the ticket type as there are attendees associated with this ticket.\",\"zQ8idk\":\"You cannot change the ticket type because there are already tickets sold for this ticket.\",\"3vRX5A\":\"You cannot delete this price tier because there are already tickets sold for this tier. You can hide it instead.\",\"RCC09s\":\"You cannot edit a default question\",\"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.\",\"XoeazJ\":\"You have no attendee questions. Attendee questions are asked once per attendee.\",\"CoZHDB\":\"You have no order questions.\",\"FZKDIe\":\"You have no order questions. Order questions are asked once per order.\",\"15qAvl\":\"You have no pending email change.\",\"n81Qk8\":\"You have not completed your Stripe Connect setup\",\"jxsiqJ\":\"You have not connected your Stripe account\",\"183zcL\":\"You have taxes and fees added to a Free Ticket. Would you like to remove or obscure them?\",\"2v5MI1\":\"You haven't sent any messages yet. You can send messages to all attendees, or to specific ticket 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\",\"LRguuL\":\"You must have at least one tier\",\"8/eLoa\":\"You need to verify your account before you can send messages.\",\"WHXRMI\":\"You'll need at least one ticket to get started. Free, paid or let the user decide what to pay.\",\"bdg03s\":\"Your account email in outgoing emails.\",\"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\"],\"0> is pending. Please check your email to confirm\"],\"yZfBoy\":\"Your message has been sent\",\"la26JS\":\"Your order is in progress\",\"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.\",\"cJ4Y4R\":\"Your refund is processing.\",\"IFHV2p\":\"Your ticket for\",\"3k7HDY\":\"Zip\",\"BM/KQm\":\"Zip or Postal Code\",\"VftCuk\":\"Zoom link, Google Meet link, etc.\",\"ySU+JY\":\"your@email.com\"}")};
\ No newline at end of file
diff --git a/frontend/src/locales/pt.po b/frontend/src/locales/pt.po
index da9cb084..98b9a13f 100644
--- a/frontend/src/locales/pt.po
+++ b/frontend/src/locales/pt.po
@@ -22,8 +22,8 @@ msgid "'There\\'s nothing to show yet'"
msgstr ""
#: src/components/common/QuestionsTable/index.tsx:267
-msgid "{0, plural, one {# hidden question} other {# hidden questions}}"
-msgstr ""
+#~ msgid "{0, plural, one {# hidden question} other {# hidden questions}}"
+#~ msgstr ""
#: src/components/common/AttendeeTable/index.tsx:113
#~ msgid "{0}"
@@ -49,6 +49,10 @@ msgstr ""
msgid "{0}'s Events"
msgstr ""
+#: src/components/common/QuestionsTable/index.tsx:267
+msgid "{0}{1}"
+msgstr ""
+
#: src/components/modals/RefundOrderModal/index.tsx:121
msgid "{message}"
msgstr ""
@@ -347,7 +351,7 @@ msgstr ""
msgid "All Events"
msgstr ""
-#: src/components/common/PromoCodeTable/index.tsx:128
+#: src/components/common/PromoCodeTable/index.tsx:130
msgid "All Tickets"
msgstr ""
@@ -429,7 +433,7 @@ msgstr ""
msgid "Appearance"
msgstr ""
-#: src/components/routes/ticket-widget/SelectTickets/index.tsx:359
+#: src/components/routes/ticket-widget/SelectTickets/index.tsx:357
msgid "applied"
msgstr ""
@@ -437,7 +441,7 @@ msgstr ""
#~ msgid "Apply"
#~ msgstr ""
-#: src/components/routes/ticket-widget/SelectTickets/index.tsx:386
+#: src/components/routes/ticket-widget/SelectTickets/index.tsx:385
msgid "Apply Promo Code"
msgstr ""
@@ -453,7 +457,7 @@ msgstr ""
msgid "Are you sure you want to cancel this attendee? This will void their ticket"
msgstr ""
-#: src/components/common/PromoCodeTable/index.tsx:34
+#: src/components/common/PromoCodeTable/index.tsx:36
msgid "Are you sure you want to delete this promo code?"
msgstr ""
@@ -485,8 +489,8 @@ msgstr ""
msgid "Attendee Details"
msgstr ""
-#: src/components/common/QuestionsTable/index.tsx:306
-#: src/components/common/QuestionsTable/index.tsx:347
+#: src/components/common/QuestionsTable/index.tsx:309
+#: src/components/common/QuestionsTable/index.tsx:350
msgid "Attendee questions"
msgstr ""
@@ -621,7 +625,7 @@ msgstr ""
#~ msgstr ""
#: src/components/common/AttendeeTable/index.tsx:211
-#: src/components/common/PromoCodeTable/index.tsx:37
+#: src/components/common/PromoCodeTable/index.tsx:39
#: src/utilites/confirmationDialog.tsx:11
msgid "Cancel"
msgstr ""
@@ -728,7 +732,7 @@ msgstr ""
msgid "click here"
msgstr ""
-#: src/components/common/PromoCodeTable/index.tsx:95
+#: src/components/common/PromoCodeTable/index.tsx:97
msgid "Click to copy"
msgstr ""
@@ -741,7 +745,7 @@ msgstr ""
msgid "Close sidebar"
msgstr ""
-#: src/components/common/PromoCodeTable/index.tsx:66
+#: src/components/common/PromoCodeTable/index.tsx:68
#: src/components/forms/PromoCodeForm/index.tsx:33
msgid "Code"
msgstr ""
@@ -883,7 +887,7 @@ msgstr ""
msgid "Copied"
msgstr ""
-#: src/components/common/PromoCodeTable/index.tsx:103
+#: src/components/common/PromoCodeTable/index.tsx:105
msgid "copied to clipboard"
msgstr ""
@@ -899,7 +903,7 @@ msgstr ""
msgid "Copy Link"
msgstr ""
-#: src/components/common/PromoCodeTable/index.tsx:172
+#: src/components/common/PromoCodeTable/index.tsx:176
msgid "Copy URL"
msgstr ""
@@ -924,7 +928,7 @@ msgstr ""
msgid "Create {0}"
msgstr ""
-#: src/components/common/PromoCodeTable/index.tsx:54
+#: src/components/common/PromoCodeTable/index.tsx:56
msgid "Create a Promo Code"
msgstr ""
@@ -1051,7 +1055,7 @@ msgstr ""
#: src/components/common/AttendeeTable/index.tsx:205
#: src/components/common/OrdersTable/index.tsx:131
-#: src/components/common/PromoCodeTable/index.tsx:176
+#: src/components/common/PromoCodeTable/index.tsx:180
#: src/components/common/QuestionsTable/index.tsx:113
#: src/components/common/TicketsTable/SortableTicket/index.tsx:193
msgid "Danger zone"
@@ -1073,12 +1077,12 @@ msgstr ""
#~ msgid "Deactivate user"
#~ msgstr ""
-#: src/components/common/PromoCodeTable/index.tsx:37
+#: src/components/common/PromoCodeTable/index.tsx:39
#: src/components/common/TaxAndFeeList/index.tsx:73
msgid "Delete"
msgstr ""
-#: src/components/common/PromoCodeTable/index.tsx:180
+#: src/components/common/PromoCodeTable/index.tsx:184
msgid "Delete code"
msgstr ""
@@ -1121,7 +1125,7 @@ msgstr ""
#~ msgid "Disable code"
#~ msgstr ""
-#: src/components/common/PromoCodeTable/index.tsx:67
+#: src/components/common/PromoCodeTable/index.tsx:69
msgid "Discount"
msgstr ""
@@ -1145,13 +1149,17 @@ msgstr ""
msgid "Don't have an account? <0>Sign Up0>"
msgstr ""
+#: src/components/forms/TicketForm/index.tsx:139
+msgid "Donation / Pay what you'd like ticket"
+msgstr ""
+
#: src/components/routes/ticket-widget/SelectTickets/Prices/Tiered/index.tsx:59
#~ msgid "Donation amount"
#~ msgstr ""
#: src/components/forms/TicketForm/index.tsx:139
-msgid "Donation Ticket"
-msgstr ""
+#~ msgid "Donation Ticket"
+#~ msgstr ""
#: src/components/routes/ticket-widget/OrderSummaryAndTickets/index.tsx:91
#~ msgid "Download Tickets PDF"
@@ -1202,7 +1210,7 @@ msgstr ""
msgid "Edit Attendee"
msgstr ""
-#: src/components/common/PromoCodeTable/index.tsx:167
+#: src/components/common/PromoCodeTable/index.tsx:169
msgid "Edit Code"
msgstr ""
@@ -1398,7 +1406,7 @@ msgstr ""
msgid "Events"
msgstr ""
-#: src/components/common/PromoCodeTable/index.tsx:70
+#: src/components/common/PromoCodeTable/index.tsx:72
msgid "Expires"
msgstr ""
@@ -1476,7 +1484,7 @@ msgstr ""
msgid "First name must be between 1 and 50 characters"
msgstr ""
-#: src/components/common/QuestionsTable/index.tsx:327
+#: src/components/common/QuestionsTable/index.tsx:330
msgid "First Name, Last Name, and Email Address are default questions and are always included in the checkout process."
msgstr ""
@@ -1555,7 +1563,7 @@ msgstr ""
msgid "Guests"
msgstr ""
-#: src/components/routes/ticket-widget/SelectTickets/index.tsx:354
+#: src/components/routes/ticket-widget/SelectTickets/index.tsx:352
msgid "Have a promo code?"
msgstr ""
@@ -1605,7 +1613,7 @@ msgstr ""
msgid "Hide getting started page"
msgstr ""
-#: src/components/common/QuestionsTable/index.tsx:273
+#: src/components/common/QuestionsTable/index.tsx:276
msgid "Hide hidden questions"
msgstr ""
@@ -1891,7 +1899,7 @@ msgstr ""
#: src/components/common/EventCard/index.tsx:78
#: src/components/common/OrdersTable/index.tsx:94
#: src/components/common/OrdersTable/index.tsx:109
-#: src/components/common/PromoCodeTable/index.tsx:164
+#: src/components/common/PromoCodeTable/index.tsx:166
#: src/components/common/TicketsTable/SortableTicket/index.tsx:171
#: src/components/layouts/Event/index.tsx:38
msgid "Manage"
@@ -2064,7 +2072,7 @@ msgstr ""
msgid "Navigate to Attendee"
msgstr ""
-#: src/components/common/PromoCodeTable/index.tsx:155
+#: src/components/common/PromoCodeTable/index.tsx:157
#: src/components/routes/account/ManageAccount/sections/Users/index.tsx:101
msgid "Never"
msgstr ""
@@ -2108,7 +2116,7 @@ msgstr ""
msgid "No orders to show"
msgstr ""
-#: src/components/common/PromoCodeTable/index.tsx:43
+#: src/components/common/PromoCodeTable/index.tsx:45
msgid "No Promo Codes to show"
msgstr ""
@@ -2136,7 +2144,7 @@ msgstr ""
msgid "No tickets to show"
msgstr ""
-#: src/components/common/PromoCodeTable/index.tsx:79
+#: src/components/common/PromoCodeTable/index.tsx:81
msgid "None"
msgstr ""
@@ -2255,8 +2263,8 @@ msgstr ""
msgid "Order has been canceled and the order owner has been notified."
msgstr ""
-#: src/components/common/QuestionsTable/index.tsx:291
-#: src/components/common/QuestionsTable/index.tsx:333
+#: src/components/common/QuestionsTable/index.tsx:294
+#: src/components/common/QuestionsTable/index.tsx:336
msgid "Order questions"
msgstr ""
@@ -2511,7 +2519,7 @@ msgstr ""
msgid "Pre Checkout message"
msgstr ""
-#: src/components/common/QuestionsTable/index.tsx:325
+#: src/components/common/QuestionsTable/index.tsx:328
msgid "Preview"
msgstr ""
@@ -2579,7 +2587,7 @@ msgstr ""
msgid "Promo Codes"
msgstr ""
-#: src/components/common/PromoCodeTable/index.tsx:48
+#: src/components/common/PromoCodeTable/index.tsx:50
msgid "Promo codes can be used to offer discounts, presale access, or provide special access to your event."
msgstr ""
@@ -2647,11 +2655,11 @@ msgstr ""
msgid "Register"
msgstr ""
-#: src/components/routes/ticket-widget/SelectTickets/index.tsx:363
+#: src/components/routes/ticket-widget/SelectTickets/index.tsx:361
msgid "remove"
msgstr ""
-#: src/components/routes/ticket-widget/SelectTickets/index.tsx:364
+#: src/components/routes/ticket-widget/SelectTickets/index.tsx:362
msgid "Remove"
msgstr ""
@@ -2911,7 +2919,11 @@ msgid "Service Fee"
msgstr ""
#: src/components/forms/TicketForm/index.tsx:141
-msgid "Set a minimum price and let users donate more"
+#~ msgid "Set a minimum price and let users donate more"
+#~ msgstr ""
+
+#: src/components/forms/TicketForm/index.tsx:141
+msgid "Set a minimum price and let users pay more if they choose"
msgstr ""
#: src/components/routes/event/GettingStarted/index.tsx:86
@@ -2943,7 +2955,7 @@ msgstr ""
msgid "Show available ticket quantity"
msgstr ""
-#: src/components/common/QuestionsTable/index.tsx:273
+#: src/components/common/QuestionsTable/index.tsx:276
msgid "Show hidden questions"
msgstr ""
@@ -3512,11 +3524,11 @@ msgstr ""
#~ msgid "Ticket widget text color"
#~ msgstr ""
-#: src/components/common/PromoCodeTable/index.tsx:145
+#: src/components/common/PromoCodeTable/index.tsx:147
msgid "Ticket(s)"
msgstr ""
-#: src/components/common/PromoCodeTable/index.tsx:69
+#: src/components/common/PromoCodeTable/index.tsx:71
#: src/components/layouts/Event/index.tsx:41
#: src/components/layouts/EventHomepage/index.tsx:80
#: src/components/routes/event/tickets.tsx:37
@@ -3566,7 +3578,7 @@ msgstr ""
#~ msgid "Tiered tickets allow you to offer multiple price options for the same ticket. This is perfect for early bird tickets or offering different price options for different groups of people."
#~ msgstr ""
-#: src/components/common/PromoCodeTable/index.tsx:68
+#: src/components/common/PromoCodeTable/index.tsx:70
msgid "Times used"
msgstr ""
@@ -3652,7 +3664,7 @@ msgstr ""
#~ msgid "Unlimited ticket quantity available"
#~ msgstr ""
-#: src/components/common/PromoCodeTable/index.tsx:123
+#: src/components/common/PromoCodeTable/index.tsx:125
msgid "Unlimited usages allowed"
msgstr ""
@@ -3680,6 +3692,10 @@ msgstr ""
msgid "Upload Cover"
msgstr ""
+#: src/components/common/PromoCodeTable/index.tsx:174
+msgid "URL copied to clipboard"
+msgstr ""
+
#: src/components/common/WidgetEditor/index.tsx:295
msgid "Usage Example"
msgstr ""
@@ -3946,7 +3962,7 @@ msgstr ""
msgid "You have connected your Stripe account"
msgstr ""
-#: src/components/common/QuestionsTable/index.tsx:316
+#: src/components/common/QuestionsTable/index.tsx:319
msgid "You have no attendee questions."
msgstr ""
@@ -3954,7 +3970,7 @@ msgstr ""
#~ msgid "You have no attendee questions. Attendee questions are asked once per attendee."
#~ msgstr ""
-#: src/components/common/QuestionsTable/index.tsx:301
+#: src/components/common/QuestionsTable/index.tsx:304
msgid "You have no order questions."
msgstr ""
diff --git a/frontend/src/locales/ru.js b/frontend/src/locales/ru.js
index 8a935142..60a48395 100644
--- a/frontend/src/locales/ru.js
+++ b/frontend/src/locales/ru.js
@@ -1 +1 @@
-/*eslint-disable*/module.exports={messages:JSON.parse("{\"1bpx9A\":\"...\",\"f8qS7T\":\"'There\\\\'s nothing to show yet'\",\"4zldrf\":[[\"0\",\"plural\",{\"one\":[\"#\",\" hidden question\"],\"other\":[\"#\",\" hidden questions\"]}]],\"J/hVSQ\":[[\"0\"]],\"KMgp2+\":[[\"0\"],\" available\"],\"tmew5X\":[[\"0\"],\" checked in\"],\"Pmr5xp\":[[\"0\"],\" created successfully\"],\"FImCSc\":[[\"0\"],\" updated successfully\"],\"KOr9b4\":[[\"0\"],\"'s Events\"],\"wapGcj\":[[\"message\"]],\"fyE7Au\":[[\"minutes\"],\" minutes and \",[\"seconds\"],\" seconds\"],\"NlQ0cx\":[[\"organizerName\"],\"'s first event\"],\"OXku3b\":\"<0>https://0>your-website.com\",\"E15xs8\":\"⚡️ Set up your event\",\"FL6OwU\":\"✉️ Confirm your email address\",\"y1NShf\":\"🎉 Congratulation on creating an event!\",\"BN0OQd\":\"🎉 Congratulations on creating an event!\",\"fAv9QG\":\"🎟️ Add tickets\",\"4WT5tD\":\"🎨 Customize your event page\",\"3VPPdS\":\"💳 Connect with Stripe\",\"s4Tgn6\":\"📢 Promote your event\",\"cjdktw\":\"🚀 Set your event live\",\"rmelwV\":\"0 minutes and 0 seconds\",\"UQ7pBY\":\"0.50 for $0.50\",\"i1+xzD\":\"1.75 for 1.75%\",\"i0puaE\":\"10.00\",\"W9+fkZ\":\"10001\",\"qdfdgM\":\"123 Main Street\",\"IoRZzD\":\"20\",\"+H1RMb\":\"2024-01-01 10:00\",\"Q/T49U\":\"2024-01-01 18:00\",\"hMT8+2\":\"94103\",\"d9El7Q\":[\"A default \",[\"type\"],\" is automaticaly applied to all new tickets. You can override this on a per ticket basis.\"],\"SMUbbQ\":\"A Dropdown input allows only one selection\",\"qv4bfj\":\"A fee, like a booking fee or a service fee\",\"Pgaiuj\":\"A fixed amount per ticket. E.g, $0.50 per ticket\",\"f4vJgj\":\"A multi line text input\",\"ySO/4f\":\"A percentage of the ticket price. E.g., 3.5% of the ticket price\",\"WXeXGB\":\"A promo code with no discount can be used to reveal hidden tickets.\",\"GMhWB5\":\"A Radio option allows has multiple options but only one can be selected.\",\"CBt3s7\":\"A Radio Option allows only one selection\",\"AG/qmQ\":\"A Radio option has multiple options but only one can be selected.\",\"7g61G9\":\"A short description of Awesome Events Ltd.\",\"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\",\"zCk10D\":\"A single question per attendee. E.g, What is your preferred meal?\",\"ap3v36\":\"A single question per order. E.g, What is your company name?\",\"RlJmQg\":\"A standard tax, like VAT or GST\",\"pDwHGk\":\"About hi.events\",\"uIKNjo\":\"About the event\",\"bfXQ+N\":\"Accept Invitation\",\"iwyhk4\":\"Access to the VIP area...\",\"AeXO77\":\"Account\",\"0b79Xf\":\"Account Email\",\"lkNdiH\":\"Account Name\",\"Puv7+X\":\"Account Settings\",\"OmylXO\":\"Account updated successfully\",\"7L01XJ\":\"Actions\",\"FQBaXG\":\"Activate\",\"F6pfE9\":\"Active\",\"m16xKo\":\"Add\",\"LKNynS\":\"Add a cover image, description, and more to make your event stand out.\",\"gMK0ps\":\"Add event details and and manage event settings.\",\"Fb+SDI\":\"Add More tickets\",\"ApsD9J\":\"Add New\",\"TZxnm8\":\"Add Option\",\"Cw27zP\":\"Add question\",\"yWiPh+\":\"Add Tax or Fee\",\"BGD9Yt\":\"Add tickets\",\"goOKRY\":\"Add tier\",\"p59pEv\":\"Additional Details\",\"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.\",\"CPXP5Z\":\"Affiliates\",\"W7AfhC\":\"All attendees of this event\",\"QsYjci\":\"All Events\",\"/twVAS\":\"All Tickets\",\"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..\",\"8wYDMp\":\"Already have an account?\",\"ApOYO8\":\"Amazing, Event, Keywords...\",\"hehnjM\":\"Amount\",\"TRYjHa\":[\"amount in \",[\"0\"]],\"R2O9Rg\":[\"Amount paid (\",[\"0\"],\")\"],\"tLjOgo\":[\"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\",\"er3d/4\":\"An error occurred while sorting the tickets. Please try again or refresh the page\",\"hhvESd\":\"An event is the actual event you are hosting\",\"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.\",\"j4DliD\":\"Any queries from ticket 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\",\"DB8zMK\":\"Apply\",\"GctSSm\":\"Apply Promo Code\",\"jcnZEw\":[\"Apply this \",[\"type\"],\" to all new tickets\"],\"q7TRd7\":\"Are you sure you want to activate this attendee?\",\"/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\",\"2xEpch\":\"Ask once per attendee\",\"LBLOqH\":\"Ask once per order\",\"ss9PbX\":\"Attendee\",\"m0CFV2\":\"Attendee Details\",\"lXcSD2\":\"Attendee questions\",\"VvYqMB\":\"Attendee questions are asked once per attendee. By default, people are asked for their first name, last name, and email address.\",\"spxPEv\":\"Attendee questions are asked once per attendee. By default, we ask for the attendee's first name, last name, and email address.\",\"9SZT4E\":\"Attendees\",\"5UbY+B\":\"Attendees with a specific ticket\",\"IMJ6rh\":\"Auto Resize\",\"vZ5qKF\":\"Automatically resize the widget height based on the content. When disabled, the widget will fill the height of the container.\",\"lXkUEV\":\"Availability\",\"ioG+xt\":\"Awaiting Payment\",\"3PmQfI\":\"Awesome Event\",\"kNmmvE\":\"Awesome Events Ltd.\",\"Yrbm6T\":\"Awesome Organizer Ltd.\",\"9002sI\":\"Back to all events\",\"0TGkYM\":\"Back to event homepage\",\"A302fe\":\"Back to event page\",\"VCoEm+\":\"Back to login\",\"MLZyiY\":\"Background color\",\"k1bLf+\":\"Background Color\",\"I7xjqg\":\"Background Type\",\"EOUool\":\"Basic Details\",\"7EGQKA\":\"Because you are the account owner, you cannot change your role or status.\",\"1mwMl+\":\"Before you send!\",\"wVfiR2\":\"Before you're event can go live, there's a few thing to do.\",\"/yeZ20\":\"Before your event can go live, there are a few things you need to do.\",\"1xAcxY\":\"Begin selling tickets in minutes\",\"R+w/Va\":\"Billing\",\"Ptp9MF\":\"Button color\",\"whqocw\":\"By registering you agree to our <0>Terms of Service0> and <1>Privacy Policy1>.\",\"bcCn6r\":\"Calculation Type\",\"+8bmSu\":\"California\",\"iStTQt\":\"Camera permission was denied. <0>Request Permission0> again, or if this doesn't work, you will need to <1>grant this page1> access to your camera in your browser settings.\",\"Jzn1qy\":\"Can't load events\",\"dEgA5A\":\"Cancel\",\"Gjt/py\":\"Cancel email change\",\"tVJk4q\":\"Cancel order\",\"Os6n2a\":\"Cancel Order\",\"Mz7Ygx\":[\"Cancel Order \",[\"0\"]],\"Ud7zwq\":\"Canceling will cancel all tickets associated with this order, and release the tickets back into the available pool.\",\"vv7kpg\":\"Cancelled\",\"77/YgG\":\"Change Cover\",\"GptGxg\":\"Change password\",\"QndF4b\":\"check in\",\"xMDm+I\":\"Check In\",\"9FVFym\":\"check out\",\"gXcPxc\":\"Check-in\",\"Y3FYXy\":\"Check-In\",\"CNafaC\":\"Checkbox options allow multiple selections\",\"SpabVf\":\"Checkboxes\",\"CRu4lK\":\"Checked In\",\"/ydvvl\":\"Checkout Messaging\",\"1WnhCL\":\"Checkout Settings\",\"JjkX4+\":\"Choose a color for your background\",\"/Jizh9\":\"Choose an account\",\"jJGoVv\":\"Choose what notifications you want to receive\",\"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\",\"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\",\"DwF9eH\":\"Component Code\",\"7VpPHA\":\"Confirm\",\"ZaEJZM\":\"Confirm Email Change\",\"yjkELF\":\"Confirm New Password\",\"xnWESi\":\"Confirm password\",\"p2/GCq\":\"Confirm Password\",\"wnDgGj\":\"Confirming email address...\",\"DnLC08\":\"Congratulation on creating an event!\",\"pbAk7a\":\"Connect Stripe\",\"UMGQOh\":\"Connect with Stripe\",\"QKLP1W\":\"Connect your Stripe account to start receiving payments.\",\"5lcVkL\":\"Connection Details\",\"i3p844\":\"Contact email\",\"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\",\"RGVUUI\":\"Continue To Payment\",\"6V3Ea3\":\"Copied\",\"T5rdis\":\"copied to clipboard\",\"he3ygx\":\"Copy\",\"8+cOrS\":\"Copy details to all attendees\",\"ENCIQz\":\"Copy Link\",\"E6nRW7\":\"Copy URL\",\"JNCzPW\":\"Country\",\"IF7RiR\":\"Cover\",\"P0rbCt\":\"Cover Image\",\"hYgDIe\":\"Create\",\"b9XOHo\":[\"Create \",[\"0\"]],\"6kdXbW\":\"Create a Promo Code\",\"n5pRtF\":\"Create a Ticket\",\"X6sRve\":[\"Create an account or <0>\",[\"0\"],\"0> to get started\"],\"nx+rqg\":\"create an organizer\",\"ipP6Ue\":\"Create Attendee\",\"uN355O\":\"Create Event\",\"BOqY23\":\"Create new\",\"kpJAeS\":\"Create Organizer\",\"sYpiZP\":\"Create Promo Code\",\"a6YrKg\":\"Create promo codes\",\"n6H6AO\":\"Create promo codes to offer discounts to your attendees.\",\"B3Mkdt\":\"Create Question\",\"UKfi21\":\"Create Tax or Fee\",\"Tg323g\":\"Create Ticket\",\"agZ87r\":\"Create tickets for your event, set prices, and manage available quantity.\",\"d+F6q9\":\"Created\",\"Q2lUR2\":\"Currency\",\"DCKkhU\":\"Current Password\",\"uIElGP\":\"Custom Maps URL\",\"876pfE\":\"Customer\",\"QOg2Sf\":\"Customize the email and notification settings for this event\",\"Lu75d1\":\"Customize the email settings for this event\",\"RaxMyF\":\"Customize the event homepage and checkout experience\",\"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\",\"7p5kLi\":\"Dashboard\",\"mYGY3B\":\"Date\",\"JvUngl\":\"Date & Time\",\"RiXc4g\":\"Deactivate user\",\"cnGeoo\":\"Delete\",\"WHf154\":\"Delete code\",\"heJllm\":\"Delete Cover\",\"KWa0gi\":\"Delete Image\",\"IatsLx\":\"Delete question\",\"GnyEfA\":\"Delete ticket\",\"E33LRn\":\"Delete user\",\"Nu4oKW\":\"Description\",\"s9iD5d\":\"Description should be less than 50,000 characters\",\"URmyfc\":\"Details\",\"x8uDKb\":\"Disable code\",\"H6Ma8Z\":\"Discount\",\"ypJ62C\":\"Discount %\",\"3LtiBI\":[\"Discount in \",[\"0\"]],\"C8JLas\":\"Discount Type\",\"1QfxQT\":\"Dismiss\",\"cVq+ga\":\"Don't have an account? <0>Sign Up0>\",\"++S5i/\":\"Donation amount\",\"OO7MG7\":\"Donation Ticket\",\"0pEVi2\":\"Download Tickets PDF\",\"uABpqP\":\"Drag and drop or click\",\"3z2ium\":\"Drag to sort\",\"6skwyH\":\"Drop an image, or click here to replace the Cover Image\",\"S37RRV\":\"Drop an image, or click here to upload the Cover Image\",\"CfKofC\":\"Dropdown selection\",\"vi8Q/5\":\"Duplicate event\",\"7Cx5It\":\"Early bird\",\"ePK91l\":\"Edit\",\"N6j2JH\":[\"Edit \",[\"0\"]],\"kNGp1D\":\"Edit attendee\",\"t2bbp8\":\"Edit Attendee\",\"iFgaVN\":\"Edit Code\",\"jrBSO1\":\"Edit Organizer\",\"9BdS63\":\"Edit Promo Code\",\"O0CE67\":\"Edit question\",\"EzwCw7\":\"Edit Question\",\"d+nnyk\":\"Edit Ticket\",\"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\",\"WiKda6\":\"Email Configuration\",\"APuxIE\":\"Email confirmation resent\",\"YaCgdO\":\"Email confirmation resent successfully\",\"jyt+cx\":\"Email footer message\",\"I6F3cp\":\"Email not verified\",\"G5zNMX\":\"Email Settings\",\"NTZ/NX\":\"Embed Code\",\"4rnJq4\":\"Embed Script\",\"VFv2ZC\":\"End Date\",\"237hSL\":\"Ended\",\"MhVoma\":\"Enter an amount excluding taxes and fees.\",\"3Z223G\":\"Error confirming email address\",\"a6gga1\":\"Error confirming email change\",\"5/63nR\":\"EUR\",\"0pC/y6\":\"Event\",\"nuoP/j\":\"Event created successfully\",\"CFLUfD\":\"Event created successfully 🎉\",\"0Zptey\":\"Event Defaults\",\"Xe3XMd\":\"Event is not visible to the public\",\"4pKXJS\":\"Event is visible to the public\",\"ClwUUD\":\"Event location & venue details\",\"OopDbA\":\"Event page\",\"JyD0LH\":\"Event Settings\",\"4/If97\":\"Event status update failed. Please try again later\",\"btxLWj\":\"Event status updated\",\"tst44n\":\"Events\",\"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.\",\"9zSt4h\":\"Failed to export attendees. Please try again.\",\"2uGNuE\":\"Failed to export orders. Please try again.\",\"ZQ15eN\":\"Failed to resend ticket email\",\"PLUB/s\":\"Fee\",\"YirHq7\":\"Feedback\",\"/mfICu\":\"Fees\",\"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.\",\"QWa3Sk\":\"First Name, Last Name, and Email Address are default questions that are always included in the checkout process.\",\"TpqW74\":\"Fixed\",\"irpUxR\":\"Fixed amount\",\"TF9opW\":\"Flash is not available on this device\",\"UNMVei\":\"Forgot password?\",\"2POOFK\":\"Free\",\"/4rQr+\":\"Free Ticket\",\"01my8x\":\"Free ticket, no payment information required\",\"ejVYRQ\":\"From\",\"u6FPxT\":\"Get Tickets\",\"4GLxhy\":\"Getting Started\",\"4D3rRj\":\"Go back to profile\",\"cQPKZt\":\"Go to Dashboard\",\"9LCqFI\":\"Go to event homepage\",\"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.\",\"Ow9Hz5\":[\"Hi.Events Conference \",[\"0\"]],\"verBst\":\"Hi.Events Conference Center\",\"6eMEQO\":\"hi.events logo\",\"C4qOW8\":\"Hidden from public view\",\"k3dfFD\":\"Hidden questions are only visible to the event organizer and not to the customer.\",\"EeNE0j\":\"Hidden will not be shown to customers.\",\"vLyv1R\":\"Hide\",\"Mkkvfd\":\"Hide getting started page\",\"mFn5Xz\":\"Hide hidden questions\",\"SCimta\":\"Hide the getting started page from the sidebar\",\"Da29Y6\":\"Hide this question\",\"fsi6fC\":\"Hide this ticket from customers\",\"fvDQhr\":\"Hide this tier from users\",\"Fhzoa8\":\"Hide ticket after sale end date\",\"yhm3J/\":\"Hide ticket before sale start date\",\"k7/oGT\":\"Hide ticket unless user has applicable promo code\",\"L0ZOiu\":\"Hide ticket when sold out\",\"uno73L\":\"Hiding a ticket will prevent users from seeing it on the event page.\",\"tj6Gob\":\"Homepage & Checkout\",\"m07jN3\":\"Homepage & Checkout Settings\",\"ZOBwQn\":\"Homepage Design\",\"PRuBTd\":\"Homepage Designer\",\"YjVNGZ\":\"Homepage Preview\",\"c3E/kw\":\"Homer\",\"id+NIk\":\"How many minutes the customer has to complete their order\",\"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?\",\"fYyXCd\":\"https://example-maps-service.com/...\",\"uOXLV3\":\"I agree to the <0>terms and conditions0>\",\"sIxFk5\":\"I agree to the terms and conditions\",\"Crwwhn\":[\"If a new tab did not open, please <0>\",[\"0\"],\".0>\"],\"93DUnd\":[\"If a new tab did not open, please <0><1>\",[\"0\"],\"1>.0>\"],\"9gtsTP\":\"If blank, the address will be used to generate a Google map link\",\"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\",\"Gyl1h8\":\"Image dimensions must be at least 600px by 300px\",\"TiGacZ\":\"Image dimensions must be at least 900px by 450px\",\"UnTvkH\":\"Image dimensions must be between 3000px by 2000px. With a max height of 2000px and max width of 3000px\",\"uPEIvq\":\"Image must be less than 5MB\",\"AGZmwV\":\"Image uploaded successfully\",\"ibi52/\":\"Image width must be at least 900px and height at least 50px\",\"NoNwIX\":\"Inactive\",\"T0K0yl\":\"Inactive users cannot log in.\",\"OFAmKP\":\"Include connection details for your online event\",\"BfPBBG\":\"Include connection details for your online event. These details will be after successful registration.\",\"6+pAOx\":\"Include connection details for your online event. These details will be shown after successful registration.\",\"evpD4c\":\"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\",\"nbfdhU\":\"Integrations\",\"OyLdaz\":\"Invitation resent!\",\"HE6KcK\":\"Invitation revoked!\",\"SQKPvQ\":\"Invite User\",\"PgdQrx\":\"Issue refund\",\"KFXip/\":\"John\",\"XcgRvb\":\"Johnson\",\"1IWWYX\":[\"KittenTech Conference \",[\"0\"]],\"ZgJEMX\":\"KittenTech Conference Center\",\"87a/t/\":\"Label\",\"I3yitW\":\"Last login\",\"1ZaQUH\":\"Last name\",\"UXBCwc\":\"Last Name\",\"CKcupn\":\"Latest Orders\",\"tITjB1\":\"Learn more about Stripe\",\"c+gAXc\":\"Let's get started by creating your first event\",\"vR92Yn\":\"Let's get started by creating your first organizer\",\"QfrKvi\":\"Link color\",\"wJijgU\":\"Location\",\"sQia9P\":\"Log in\",\"zUDyah\":\"Logging in\",\"z0t9bb\":\"Login\",\"nOhz3x\":\"Logout\",\"F2jAFv\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nam placerat elementum...\",\"XkhEf9\":\"Lorem ipsum...\",\"MU3ijv\":\"Make this question mandatory\",\"wckWOP\":\"Manage\",\"8mmINh\":\"Manage billing information and view invoices\",\"jWIznR\":\"Manage default settings for new events\",\"n4SpU5\":\"Manage event\",\"wqyqaF\":\"Manage general account settings\",\"cQrNR3\":\"Manage Profile\",\"f92Qak\":\"Manage taxes and fees which can be applied to tickets\",\"PlTcVr\":\"Manage taxes and fees which can be applied to your tickets\",\"ophZVW\":\"Manage tickets\",\"Wsx7Iu\":\"Manage users and their permissions\",\"DdHfeW\":\"Manage your account details and default settings\",\"QHcjP+\":\"Manage your billing and payment details\",\"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\",\"lzcrX3\":\"Manually adding an attendee will adjust ticket quantity.\",\"g9dPPQ\":\"Maximum Per Order\",\"l5OcwO\":\"Message attendee\",\"Gv5AMu\":\"Message Attendees\",\"1jRD0v\":\"Message attendees with specific tickets\",\"Lvi+gV\":\"Message buyer\",\"tNZzFb\":\"Message Content\",\"lYDV/s\":\"Message individual attendees\",\"V7DYWd\":\"Message Sent\",\"t7TeQU\":\"Messages\",\"xFRMlO\":\"Minimum Per Order\",\"QYcUEf\":\"Minimum Price\",\"mYLhkl\":\"Miscellaneous Settings\",\"KYveV8\":\"Multi line text box\",\"SVuGaP\":\"Multiple price options, users can choose which to pay\",\"6wbTro\":\"Multiple price options. Perfect for early bird tickets etc.\",\"/bhMdO\":\"My amazing event description...\",\"vX8/tc\":\"My amazing event title...\",\"hKtWk2\":\"My Profile\",\"pRjx4L\":\"Nam placerat elementum...\",\"6YtxFj\":\"Name\",\"hVuv90\":\"Name should be less than 150 characters\",\"AIUkyF\":\"Navigate to Attendee\",\"qqeAJM\":\"Never\",\"7vhWI8\":\"New Password\",\"m920rF\":\"New York\",\"1UzENP\":\"No\",\"Wjz5KP\":\"No Attendees to show\",\"fFeCKc\":\"No Discount\",\"Z6ILSe\":\"No events for this organizer\",\"yAlJXG\":\"No events to show\",\"KPWxKD\":\"No messages to show\",\"J2LkP8\":\"No orders to show\",\"+Y976X\":\"No Promo Codes to show\",\"Ev2r9A\":\"No results\",\"RHyZUL\":\"No search results.\",\"cU1op4\":\"No Taxes or Fees have been added yet.\",\"RY2eP1\":\"No Taxes or Fees have been added.\",\"uR2eFu\":\"No tickets available\",\"b7JZFg\":\"No tickets to show\",\"EdQY6l\":\"None\",\"OJx3wK\":\"Not available\",\"x5+Lcz\":\"Not Checked In\",\"Scbrsn\":\"Not On Sale\",\"hFwWnI\":\"Notification Settings\",\"xXqEPO\":\"Notify buyer of refund\",\"YpN29s\":\"Notify organizer of new orders\",\"qeQhNj\":\"Now let's create your first event\",\"2NPDz1\":\"On sale\",\"Ldu/RI\":\"On Sale\",\"Ug4SfW\":\"Once you create an event, you'll see it here.\",\"+P/tII\":\"Once you're ready, set your event live and start selling tickets.\",\"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.\",\"OdnLE4\":\"Open sidebar\",\"ZZEYpT\":[\"Option \",[\"i\"]],\"0zpgxV\":\"Options\",\"BzEFor\":\"or\",\"UYUgdb\":\"Order\",\"mm+eaX\":\"Order #\",\"B3gPuX\":\"Order Cancelled\",\"SIbded\":\"Order Completed\",\"q/CcwE\":\"Order Date\",\"Tol4BF\":\"Order Details\",\"L4kzeZ\":[\"Order Details \",[\"0\"]],\"WbImlQ\":\"Order has been canceled and the order owner has been notified.\",\"VCOi7U\":\"Order questions\",\"wg9MPp\":\"Order questions are asked once per order. By default, people are asked for their first name, last name, and email address.\",\"+KNVxX\":\"Order questions are asked once per order. By default, we ask for the first name, last name, and email address.\",\"TPoYsF\":\"Order Reference\",\"GX6dZv\":\"Order Summary\",\"tDTq0D\":\"Order timeout\",\"1h+RBg\":\"Orders\",\"mz+c33\":\"Orders Created\",\"G5RhpL\":\"Organizer\",\"m/ebSk\":\"Organizer Details\",\"mYygCM\":\"Organizer is required\",\"Pa6G7v\":\"Organizer Name\",\"J2cXxX\":\"Organizers can only manage events and tickets. 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\",\"2w/FiJ\":\"Paid Ticket\",\"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\",\"iq5IUr\":\"Pause Ticket\",\"621rYf\":\"Payment\",\"JhtZAK\":\"Payment Failed\",\"xgav5v\":\"Payment succeeded!\",\"CcK+Ft\":\"PDF\",\"att1Hj\":\"percent\",\"/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\",\"q40YFl\":\"Please continue your order in the new tab\",\"ZJG4Di\":\"Please ensure you only send emails directly related to the order. Promotional emails\\nshould not be sent using this form.\",\"o+HaYe\":\"Please enter a valid promo code\",\"HnNept\":\"Please enter your new password\",\"5FSIzj\":\"Please Note\",\"MA04r/\":\"Please remove filters and set sorting to \\\"Homepage order\\\" to enable sorting\",\"pJLvdS\":\"Please select\",\"yygcoG\":\"Please select at least one ticket\",\"igBrCH\":\"Please verify your email address to access all features\",\"qCJyMx\":\"Post Checkout message\",\"g2UNkE\":\"Powered by\",\"Qs7yI0\":\"Powered By\",\"lqAWKB\":\"Powered by <0>Hi.Events0> 👋\",\"3n47kV\":\"Powered By Hi.Events\",\"ddi4j4\":\"Powered by Stripe\",\"Rs7IQv\":\"Pre Checkout message\",\"rdUucN\":\"Preview\",\"a7u1N9\":\"Price\",\"CmoB9j\":\"Price display mode\",\"Q8PWaJ\":\"Price tiers\",\"a5jvSX\":\"Price Tiers\",\"6RmHKN\":\"Primary Color\",\"G/ZwV1\":\"Primary Colour\",\"8cBtvm\":\"Primary Text Color\",\"BZz12Q\":\"Print\",\"MT7dxz\":\"Print All Tickets\",\"vERlcd\":\"Profile\",\"kUlL8W\":\"Profile updated successfully\",\"cl5WYc\":[\"Promo \",[\"promo_code\"],\" code applied\"],\"ZXpm3a\":[\"Promo \",[\"promoCode\"],\" code applied\"],\"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.\",\"812gwg\":\"Purchase License\",\"LkMOWF\":\"Quantity Available\",\"XKJuAX\":\"Question deleted\",\"oQvMPn\":\"Question Title\",\"enzGAL\":\"Questions\",\"K885Eq\":\"Questions sorted successfully\",\"OMJ035\":\"Radio Option\",\"C4TjpG\":\"Read less\",\"I3QpvQ\":\"Recipient\",\"N2C89m\":\"Reference\",\"gxFu7d\":[\"Refund amount (\",[\"0\"],\")\"],\"n10yGu\":\"Refund order\",\"zPH6gp\":\"Refund Order\",\"/BI0y9\":\"Refunded\",\"fgLNSM\":\"Register\",\"tasfos\":\"remove\",\"t/YqKh\":\"Remove\",\"RloWNu\":\"Reply to email\",\"EGm34e\":\"Resend confirmation email\",\"lnrkNz\":\"Resend email confirmation\",\"wIa8Qe\":\"Resend invitation\",\"VeKsnD\":\"Resend order email\",\"dFuEhO\":\"Resend ticket email\",\"o6+Y6d\":\"Resending...\",\"RfwZxd\":\"Reset password\",\"KbS2K9\":\"Reset Password\",\"vtc20Z\":\"Return to event page\",\"8YBH95\":\"Revenue\",\"PO/sOY\":\"Revoke invitation\",\"GDvlUT\":\"Role\",\"ELa4O9\":\"Sale End Date\",\"5uo5eP\":\"Sale ended\",\"Qm5XkZ\":\"Sale Start Date\",\"hVF4dJ\":\"Sale starts\",\"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\",\"lBAlVv\":\"Seach by name, order #, attendee # or email...\",\"W4kWXJ\":\"Search by attendee name, email or order #...\",\"ulAuWO\":\"Search by event name or description...\",\"+pr/FY\":\"Search by event name...\",\"NQSiYb\":\"Search by name or description...\",\"3zRbWw\":\"Search by name, email, or order #...\",\"BiYOdA\":\"Search by name...\",\"B1bB1j\":\"Search by order #, name or email...\",\"jA4hXE\":\"Search by subject or body...\",\"YEjitp\":\"Search by subject or content...\",\"HYnGee\":\"Search by ticket name...\",\"YIix5Y\":\"Search...\",\"OeW+DS\":\"Secondary color\",\"DnXcDK\":\"Secondary Color\",\"cZF6em\":\"Secondary text color\",\"ZIgYeg\":\"Secondary Text Color\",\"QuNKRX\":\"Select Camera\",\"kWI/37\":\"Select organizer\",\"hAjDQy\":\"Select status\",\"QYARw/\":\"Select Ticket\",\"XH5juP\":\"Select Ticket Tier\",\"nuWxSr\":\"Select Tickets\",\"O/7I0o\":\"Select...\",\"JlFcis\":\"Send\",\"qKWv5N\":[\"Send a copy to <0>\",[\"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.\",\"471O/e\":\"Send confirmation email\",\"D7ZemV\":\"Send order confirmation and ticket email\",\"v1rRtW\":\"Send Test\",\"j1VfcT\":\"SEO Description\",\"/SIY6o\":\"SEO Keywords\",\"GfWoKv\":\"SEO Settings\",\"rXngLf\":\"SEO Title\",\"/jZOZa\":\"Service Fee\",\"vu4F0h\":\"Set a minimum price and let users donate more\",\"nYNT+5\":\"Set up your event\",\"A8iqfq\":\"Set your event live\",\"Tz0i8g\":\"Settings\",\"Z8lGw6\":\"Share\",\"FFbYHm\":[\"Should this \",[\"type\"],\" be applied to all new tickets?\"],\"8vETh9\":\"Show\",\"smd87r\":\"Show available ticket quantity\",\"qDsmzu\":\"Show hidden questions\",\"fMPkxb\":\"Show more\",\"izwOOD\":\"Show tax and fees separately\",\"j3b+OW\":\"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.\",\"DvCwYF\":\"Sorry, this promo code is invalid'\",\"6a/UJE\":\"Sorry, this promo code is not recognized\",\"9rRZZ+\":\"Sorry, your order has expired. Please start a new order.\",\"a4SyEE\":\"Sorting is disabled while filters and sorting are applied\",\"4nG1lG\":\"Standard ticket with a fixed price\",\"D3iCkb\":\"Start Date\",\"RS0o7b\":\"State\",\"/2by1f\":\"State or Region\",\"uAQUqI\":\"Status\",\"UJmAAK\":\"Subject\",\"X2rrlw\":\"Subtotal\",\"b0HJ45\":[\"Success! \",[\"0\"],\" will receive an email shortly.\"],\"BJIEiF\":[\"Successfully \",[\"0\"],\" attendee\"],\"Ih8kN0\":[\"Successfully $\",[\"0\"],\" attendee\"],\"xHl17l\":[\"Successfully checked <0>\",[\"0\"],\" \",[\"1\"],\"0> \",[\"2\"]],\"OtgNFx\":\"Successfully confirmed email address\",\"IKwyaF\":\"Successfully confirmed email change\",\"zLmvhE\":\"Successfully created attendee\",\"9mZEgt\":\"Successfully Created Promo Code\",\"aIA9C4\":\"Successfully Created Question\",\"onFQYs\":\"Successfully Created Ticket\",\"Hgj/mB\":\"Successfully deleted ticket\",\"J3RJSZ\":\"Successfully updated attendee\",\"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\",\"70dYC8\":\"Successfully Updated Promo Code\",\"F+pJnL\":\"Successfully Updated Seo Settings\",\"g2lRrH\":\"Successfully updated ticket\",\"DXZRk5\":\"Suite 100\",\"GNcfRk\":\"Support Email\",\"JpohL9\":\"Tax\",\"geUFpZ\":\"Tax & Fees\",\"0RXCDo\":\"Tax or Fee deleted successfully\",\"ZowkxF\":\"Taxes\",\"EEZnW+\":\"Taxes & Fees\",\"qu6/03\":\"Taxes and Fees\",\"gVjSFp\":\"Taxes and Fees can be associated with tickets and will be added to the ticket price.\",\"e0ZSh4\":\"Text Colour\",\"gypigA\":\"That promo code is invalid\",\"0ozSQu\":\"The background color for the event homepage\",\"LbHWgW\":\"The background color for the ticket widget on the event homepage\",\"75Xclv\":\"The basic details of your event\",\"UNqHnV\":\"The color of the buttons on the event homepage\",\"0amhbL\":\"The color of the links on the event homepage\",\"QXlz+n\":\"The default currency for your events.\",\"mnafgQ\":\"The default timezone for your events.\",\"NlfnUd\":\"The link you clicked is invalid.\",\"FqjKfd\":\"The location of your event\",\"FeAfXO\":[\"The maximum numbers number of tickets for Generals is \",[\"0\"]],\"POEqXB\":\"The organizer details of your event\",\"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.\",\"TJZByZ\":\"The tax and fee to apply to this ticket. You can create new taxes and fees on the\",\"OJYwh9\":\"The taxes and fees to apply to this ticket. You can create new taxes and fees on the\",\"6BpBfZ\":\"The text color for the event homepage\",\"rljHp7\":\"The text color for the ticket widget on the event homepage\",\"s4di40\":\"The text to display in the 'Continue' button. Defaults to 'Continue'\",\"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\",\"wgAiDb\":\"The user must login to change their email.\",\"jvxN9/\":\"There are no tickets available for this event\",\"rMcHYt\":\"There is a refund pending. Please wait for it to complete before requesting another refund.\",\"hjLUr+\":\"There was an error loading this content. Please refresh the page and try again.\",\"68Axnm\":\"There was an error processing your request. Please try again.\",\"mVKOW6\":\"There was an error sending your message\",\"Um/adz\":\"These allow multiple selections\",\"vWeHWp\":\"These colors are not saved in our system.\",\"7qzHGS\":\"These colors are not saved in our system. They are only used to generate the widget.\",\"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.\",\"CNk/ro\":\"This is an online event\",\"GabtCa\":\"This is the email address that will be used as the reply-to address for all emails sent from this event\",\"CKkb5E\":\"This message is how below the\",\"cHO4ec\":\"This message will be included in the footer of all emails sent from this event\",\"RjwlZt\":\"This order has already been paid.\",\"axERYu\":\"This order has already been paid. <0>View order details0>\",\"wY+HO9\":\"This order has already been processed.\",\"5K8REg\":\"This order has already been refunded.\",\"OiQMhP\":\"This order has been cancelled\",\"YyEJij\":\"This order has been cancelled.\",\"D44cEI\":\"This order has been completed.\",\"HILpDX\":\"This order is awaiting payment\",\"0vRWbB\":\"This order is awaiting payment.\",\"BdYtn9\":\"This order is complete\",\"e3uMJH\":\"This order is complete.\",\"YNKXOK\":\"This order is processing.\",\"LIjb4v\":\"This order is processing. TODO - a nice image and poll the API\",\"yPZN4i\":\"This order page is no longer available.\",\"5189cf\":\"This overrides all visibility settings and will hide the ticket from all customers.\",\"4vwjho\":\"This page has expired. <0>View order details0>\",\"Qt7RBu\":\"This question is only visible to the event organizer\",\"os29v1\":\"This reset password link is invalid or expired.\",\"WJqBqd\":\"This ticket cannot be deleted because it is\\nassociated with an order. You can hide it instead.\",\"ma6qdu\":\"This ticket is hidden from public view\",\"xJ8nzj\":\"This ticket is hidden unless targeted by a Promo Code\",\"IV9xTT\":\"This user is not active, as they have not accepted their invitation.\",\"5AnPaO\":\"ticket\",\"kjAL4v\":\"Ticket\",\"KosivG\":\"Ticket deleted successfully\",\"dtGC3q\":\"Ticket email has been resent to attendee\",\"USk+Mn\":\"Ticket page message\",\"mRM6XH\":\"Ticket Sales\",\"NirIiz\":\"Ticket Tier\",\"8jLPgH\":\"Ticket Type\",\"jqWDf9\":\"Ticket widget background color\",\"UrMVAz\":\"Ticket Widget Preview\",\"ngtDy7\":\"Ticket widget text color\",\"N+YYpo\":\"Ticket(s)\",\"6GQNLE\":\"Tickets\",\"54q0zp\":\"Tickets for\",\"i+idBz\":\"Tickets sold\",\"AGRilS\":\"Tickets Sold\",\"56Qw2C\":\"Tickets sorted successfully\",\"4f8A8M\":\"Tickets to which the promo code applies (Applies to all by default)\",\"xN9AhL\":[\"Tier \",[\"0\"]],\"oYaHuq\":\"Tiered Ticket\",\"XZrhpz\":\"Tiered Ticket - Coming Soon\",\"4M150e\":\"Tiered tickets allow you to offer multiple price options for the same ticket.\\nThis is perfect for early bird tickets, or offering different price\\noptions for different groups of people.\",\"jQoYTX\":\"Tiered tickets allow you to offer multiple price options for the same ticket. This is perfect for early bird tickets or offering different price options for different groups of people.\",\"s/0RpH\":\"Times used\",\"40Gx0U\":\"Timezone\",\"oDGm7V\":\"TIP\",\"MHrjPM\":\"Title\",\"xdA/+p\":\"Tools\",\"72c5Qo\":\"Total\",\"BxsfMK\":\"Total Fees\",\"mpB/d9\":\"Total order amount\",\"m3FM1g\":\"Total refunded\",\"GBBIy+\":\"Total remaining\",\"/SgoNA\":\"Total Tax\",\"+zy2Nq\":\"Type\",\"mLGbAS\":[\"Unable to \",[\"0\"],\" attendee\"],\"/cSMqv\":\"Unable to create question. Please check the your details\",\"nNdxt9\":\"Unable to create ticket. Please check the your details\",\"MH/lj8\":\"Unable to update question. Please check the your details\",\"Mqy/Zy\":\"United States\",\"NIuIk1\":\"Unlimited\",\"oMcLhS\":\"Unlimited ticket quantity available\",\"E0q9qH\":\"Unlimited usages allowed\",\"ia8YsC\":\"Upcoming\",\"L/gNNk\":[\"Update \",[\"0\"]],\"+qqX74\":\"Update event name, description and dates\",\"vXPSuB\":\"Update profile\",\"gsehpV\":\"Upload an image to be displayed on the event page\",\"BNBfrU\":\"Upload Cover\",\"e5lF64\":\"Usage Example\",\"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 Settings0>\",\"vgwVkd\":\"UTC\",\"khBZkl\":\"VAT\",\"E/9LUk\":\"Venue Name\",\"AM+zF3\":\"View attendee\",\"e4mhwd\":\"View event homepage\",\"/5PEQz\":\"View event page\",\"fFornT\":\"View full message\",\"YIsEhQ\":\"View map\",\"Ep3VfY\":\"View on Google Maps\",\"AMkkeL\":\"View order\",\"Y8s4f6\":\"View order details\",\"tF+VVr\":\"VIP Ticket\",\"2q/Q7x\":\"Visibility\",\"vmOFL/\":\"We could not process your payment. Please try again or contact support.\",\"1E0vyy\":\"We couldn't load the data. Please try again.\",\"VGioT0\":\"We recommend dimensions of 2160px by 1080px, 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\"],\" 👋\"],\"wjqPqF\":\"What are Tiered Tickets?\",\"5iXvHA\":\"What is a Tiered Ticketing?\",\"MhhnvW\":\"What tickets does this code apply to? (Applies to all by default)\",\"dCil3h\":\"What tickets should this question be apply to?\",\"Rb0XUE\":\"What time will you be arriving?\",\"5N4wLD\":\"What type of question is this?\",\"S+OdxP\":\"Who is organizing this event?\",\"LINr2M\":\"Who is this message to?\",\"nWhye/\":\"Who should be asked this question?\",\"vVGiM4\":\"Who type of question is this?\",\"onLsWS\":\"Whoops! something went wrong. Please try again or contact support if the problem persists.\",\"AHXN2z\":\"Widget\",\"AU/8QR\":\"Widget Configuration\",\"VxFvXQ\":\"Widget Embed\",\"v1P7Gm\":\"Widget Settings\",\"b4itZn\":\"Working\",\"hqmXmc\":\"Working...\",\"l75CjT\":\"Yes\",\"QcwyCh\":\"Yes, remove them\",\"P+Sty0\":[\"You are changing your email to <0>\",[\"0\"],\"0>.\"],\"4ysd6z\":\"You can connecting using this Zoom link...\",\"9HGdDw\":\"You can create a promo code which targets this ticket on the\",\"KRhIxT\":\"You can now start receiving payments through Stripe.\",\"UqVaVO\":\"You cannot change the ticket type as there are attendees associated with this ticket.\",\"zQ8idk\":\"You cannot change the ticket type because there are already tickets sold for this ticket.\",\"3vRX5A\":\"You cannot delete this price tier because there are already tickets sold for this tier. You can hide it instead.\",\"RCC09s\":\"You cannot edit a default question\",\"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.\",\"XoeazJ\":\"You have no attendee questions. Attendee questions are asked once per attendee.\",\"CoZHDB\":\"You have no order questions.\",\"FZKDIe\":\"You have no order questions. Order questions are asked once per order.\",\"15qAvl\":\"You have no pending email change.\",\"n81Qk8\":\"You have not completed your Stripe Connect setup\",\"jxsiqJ\":\"You have not connected your Stripe account\",\"183zcL\":\"You have taxes and fees added to a Free Ticket. Would you like to remove or obscure them?\",\"2v5MI1\":\"You haven't sent any messages yet. You can send messages to all attendees, or to specific ticket 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\",\"LRguuL\":\"You must have at least one tier\",\"8/eLoa\":\"You need to verify your account before you can send messages.\",\"WHXRMI\":\"You'll need at least one ticket to get started. Free, paid or let the user decide what to pay.\",\"bdg03s\":\"Your account email in outgoing emails.\",\"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\"],\"0> is pending. Please check your email to confirm\"],\"yZfBoy\":\"Your message has been sent\",\"la26JS\":\"Your order is in progress\",\"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.\",\"cJ4Y4R\":\"Your refund is processing.\",\"IFHV2p\":\"Your ticket for\",\"3k7HDY\":\"Zip\",\"BM/KQm\":\"Zip or Postal Code\",\"VftCuk\":\"Zoom link, Google Meet link, etc.\",\"ySU+JY\":\"your@email.com\"}")};
\ No newline at end of file
+/*eslint-disable*/module.exports={messages:JSON.parse("{\"1bpx9A\":\"...\",\"f8qS7T\":\"'There\\\\'s nothing to show yet'\",\"4zldrf\":[[\"0\",\"plural\",{\"one\":[\"#\",\" hidden question\"],\"other\":[\"#\",\" hidden questions\"]}]],\"J/hVSQ\":[[\"0\"]],\"KMgp2+\":[[\"0\"],\" available\"],\"tmew5X\":[[\"0\"],\" checked in\"],\"Pmr5xp\":[[\"0\"],\" created successfully\"],\"FImCSc\":[[\"0\"],\" updated successfully\"],\"KOr9b4\":[[\"0\"],\"'s Events\"],\"qSiUsc\":[[\"0\"],[\"1\"]],\"wapGcj\":[[\"message\"]],\"fyE7Au\":[[\"minutes\"],\" minutes and \",[\"seconds\"],\" seconds\"],\"NlQ0cx\":[[\"organizerName\"],\"'s first event\"],\"OXku3b\":\"<0>https://0>your-website.com\",\"E15xs8\":\"⚡️ Set up your event\",\"FL6OwU\":\"✉️ Confirm your email address\",\"y1NShf\":\"🎉 Congratulation on creating an event!\",\"BN0OQd\":\"🎉 Congratulations on creating an event!\",\"fAv9QG\":\"🎟️ Add tickets\",\"4WT5tD\":\"🎨 Customize your event page\",\"3VPPdS\":\"💳 Connect with Stripe\",\"s4Tgn6\":\"📢 Promote your event\",\"cjdktw\":\"🚀 Set your event live\",\"rmelwV\":\"0 minutes and 0 seconds\",\"UQ7pBY\":\"0.50 for $0.50\",\"i1+xzD\":\"1.75 for 1.75%\",\"i0puaE\":\"10.00\",\"W9+fkZ\":\"10001\",\"qdfdgM\":\"123 Main Street\",\"IoRZzD\":\"20\",\"+H1RMb\":\"2024-01-01 10:00\",\"Q/T49U\":\"2024-01-01 18:00\",\"hMT8+2\":\"94103\",\"d9El7Q\":[\"A default \",[\"type\"],\" is automaticaly applied to all new tickets. You can override this on a per ticket basis.\"],\"SMUbbQ\":\"A Dropdown input allows only one selection\",\"qv4bfj\":\"A fee, like a booking fee or a service fee\",\"Pgaiuj\":\"A fixed amount per ticket. E.g, $0.50 per ticket\",\"f4vJgj\":\"A multi line text input\",\"ySO/4f\":\"A percentage of the ticket price. E.g., 3.5% of the ticket price\",\"WXeXGB\":\"A promo code with no discount can be used to reveal hidden tickets.\",\"GMhWB5\":\"A Radio option allows has multiple options but only one can be selected.\",\"CBt3s7\":\"A Radio Option allows only one selection\",\"AG/qmQ\":\"A Radio option has multiple options but only one can be selected.\",\"7g61G9\":\"A short description of Awesome Events Ltd.\",\"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\",\"zCk10D\":\"A single question per attendee. E.g, What is your preferred meal?\",\"ap3v36\":\"A single question per order. E.g, What is your company name?\",\"RlJmQg\":\"A standard tax, like VAT or GST\",\"pDwHGk\":\"About hi.events\",\"uIKNjo\":\"About the event\",\"bfXQ+N\":\"Accept Invitation\",\"iwyhk4\":\"Access to the VIP area...\",\"AeXO77\":\"Account\",\"0b79Xf\":\"Account Email\",\"lkNdiH\":\"Account Name\",\"Puv7+X\":\"Account Settings\",\"OmylXO\":\"Account updated successfully\",\"7L01XJ\":\"Actions\",\"FQBaXG\":\"Activate\",\"F6pfE9\":\"Active\",\"m16xKo\":\"Add\",\"LKNynS\":\"Add a cover image, description, and more to make your event stand out.\",\"gMK0ps\":\"Add event details and and manage event settings.\",\"Fb+SDI\":\"Add More tickets\",\"ApsD9J\":\"Add New\",\"TZxnm8\":\"Add Option\",\"Cw27zP\":\"Add question\",\"yWiPh+\":\"Add Tax or Fee\",\"BGD9Yt\":\"Add tickets\",\"goOKRY\":\"Add tier\",\"p59pEv\":\"Additional Details\",\"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.\",\"CPXP5Z\":\"Affiliates\",\"W7AfhC\":\"All attendees of this event\",\"QsYjci\":\"All Events\",\"/twVAS\":\"All Tickets\",\"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..\",\"8wYDMp\":\"Already have an account?\",\"ApOYO8\":\"Amazing, Event, Keywords...\",\"hehnjM\":\"Amount\",\"TRYjHa\":[\"amount in \",[\"0\"]],\"R2O9Rg\":[\"Amount paid (\",[\"0\"],\")\"],\"tLjOgo\":[\"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\",\"er3d/4\":\"An error occurred while sorting the tickets. Please try again or refresh the page\",\"hhvESd\":\"An event is the actual event you are hosting\",\"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.\",\"j4DliD\":\"Any queries from ticket 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\",\"DB8zMK\":\"Apply\",\"GctSSm\":\"Apply Promo Code\",\"jcnZEw\":[\"Apply this \",[\"type\"],\" to all new tickets\"],\"q7TRd7\":\"Are you sure you want to activate this attendee?\",\"/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\",\"2xEpch\":\"Ask once per attendee\",\"LBLOqH\":\"Ask once per order\",\"ss9PbX\":\"Attendee\",\"m0CFV2\":\"Attendee Details\",\"lXcSD2\":\"Attendee questions\",\"VvYqMB\":\"Attendee questions are asked once per attendee. By default, people are asked for their first name, last name, and email address.\",\"spxPEv\":\"Attendee questions are asked once per attendee. By default, we ask for the attendee's first name, last name, and email address.\",\"9SZT4E\":\"Attendees\",\"5UbY+B\":\"Attendees with a specific ticket\",\"IMJ6rh\":\"Auto Resize\",\"vZ5qKF\":\"Automatically resize the widget height based on the content. When disabled, the widget will fill the height of the container.\",\"lXkUEV\":\"Availability\",\"ioG+xt\":\"Awaiting Payment\",\"3PmQfI\":\"Awesome Event\",\"kNmmvE\":\"Awesome Events Ltd.\",\"Yrbm6T\":\"Awesome Organizer Ltd.\",\"9002sI\":\"Back to all events\",\"0TGkYM\":\"Back to event homepage\",\"A302fe\":\"Back to event page\",\"VCoEm+\":\"Back to login\",\"MLZyiY\":\"Background color\",\"k1bLf+\":\"Background Color\",\"I7xjqg\":\"Background Type\",\"EOUool\":\"Basic Details\",\"7EGQKA\":\"Because you are the account owner, you cannot change your role or status.\",\"1mwMl+\":\"Before you send!\",\"wVfiR2\":\"Before you're event can go live, there's a few thing to do.\",\"/yeZ20\":\"Before your event can go live, there are a few things you need to do.\",\"1xAcxY\":\"Begin selling tickets in minutes\",\"R+w/Va\":\"Billing\",\"Ptp9MF\":\"Button color\",\"whqocw\":\"By registering you agree to our <0>Terms of Service0> and <1>Privacy Policy1>.\",\"bcCn6r\":\"Calculation Type\",\"+8bmSu\":\"California\",\"iStTQt\":\"Camera permission was denied. <0>Request Permission0> again, or if this doesn't work, you will need to <1>grant this page1> access to your camera in your browser settings.\",\"Jzn1qy\":\"Can't load events\",\"dEgA5A\":\"Cancel\",\"Gjt/py\":\"Cancel email change\",\"tVJk4q\":\"Cancel order\",\"Os6n2a\":\"Cancel Order\",\"Mz7Ygx\":[\"Cancel Order \",[\"0\"]],\"Ud7zwq\":\"Canceling will cancel all tickets associated with this order, and release the tickets back into the available pool.\",\"vv7kpg\":\"Cancelled\",\"77/YgG\":\"Change Cover\",\"GptGxg\":\"Change password\",\"QndF4b\":\"check in\",\"xMDm+I\":\"Check In\",\"9FVFym\":\"check out\",\"gXcPxc\":\"Check-in\",\"Y3FYXy\":\"Check-In\",\"CNafaC\":\"Checkbox options allow multiple selections\",\"SpabVf\":\"Checkboxes\",\"CRu4lK\":\"Checked In\",\"/ydvvl\":\"Checkout Messaging\",\"1WnhCL\":\"Checkout Settings\",\"JjkX4+\":\"Choose a color for your background\",\"/Jizh9\":\"Choose an account\",\"jJGoVv\":\"Choose what notifications you want to receive\",\"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\",\"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\",\"DwF9eH\":\"Component Code\",\"7VpPHA\":\"Confirm\",\"ZaEJZM\":\"Confirm Email Change\",\"yjkELF\":\"Confirm New Password\",\"xnWESi\":\"Confirm password\",\"p2/GCq\":\"Confirm Password\",\"wnDgGj\":\"Confirming email address...\",\"DnLC08\":\"Congratulation on creating an event!\",\"pbAk7a\":\"Connect Stripe\",\"UMGQOh\":\"Connect with Stripe\",\"QKLP1W\":\"Connect your Stripe account to start receiving payments.\",\"5lcVkL\":\"Connection Details\",\"i3p844\":\"Contact email\",\"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\",\"RGVUUI\":\"Continue To Payment\",\"6V3Ea3\":\"Copied\",\"T5rdis\":\"copied to clipboard\",\"he3ygx\":\"Copy\",\"8+cOrS\":\"Copy details to all attendees\",\"ENCIQz\":\"Copy Link\",\"E6nRW7\":\"Copy URL\",\"JNCzPW\":\"Country\",\"IF7RiR\":\"Cover\",\"P0rbCt\":\"Cover Image\",\"hYgDIe\":\"Create\",\"b9XOHo\":[\"Create \",[\"0\"]],\"6kdXbW\":\"Create a Promo Code\",\"n5pRtF\":\"Create a Ticket\",\"X6sRve\":[\"Create an account or <0>\",[\"0\"],\"0> to get started\"],\"nx+rqg\":\"create an organizer\",\"ipP6Ue\":\"Create Attendee\",\"uN355O\":\"Create Event\",\"BOqY23\":\"Create new\",\"kpJAeS\":\"Create Organizer\",\"sYpiZP\":\"Create Promo Code\",\"a6YrKg\":\"Create promo codes\",\"n6H6AO\":\"Create promo codes to offer discounts to your attendees.\",\"B3Mkdt\":\"Create Question\",\"UKfi21\":\"Create Tax or Fee\",\"Tg323g\":\"Create Ticket\",\"agZ87r\":\"Create tickets for your event, set prices, and manage available quantity.\",\"d+F6q9\":\"Created\",\"Q2lUR2\":\"Currency\",\"DCKkhU\":\"Current Password\",\"uIElGP\":\"Custom Maps URL\",\"876pfE\":\"Customer\",\"QOg2Sf\":\"Customize the email and notification settings for this event\",\"Lu75d1\":\"Customize the email settings for this event\",\"RaxMyF\":\"Customize the event homepage and checkout experience\",\"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\",\"7p5kLi\":\"Dashboard\",\"mYGY3B\":\"Date\",\"JvUngl\":\"Date & Time\",\"RiXc4g\":\"Deactivate user\",\"cnGeoo\":\"Delete\",\"WHf154\":\"Delete code\",\"heJllm\":\"Delete Cover\",\"KWa0gi\":\"Delete Image\",\"IatsLx\":\"Delete question\",\"GnyEfA\":\"Delete ticket\",\"E33LRn\":\"Delete user\",\"Nu4oKW\":\"Description\",\"s9iD5d\":\"Description should be less than 50,000 characters\",\"URmyfc\":\"Details\",\"x8uDKb\":\"Disable code\",\"H6Ma8Z\":\"Discount\",\"ypJ62C\":\"Discount %\",\"3LtiBI\":[\"Discount in \",[\"0\"]],\"C8JLas\":\"Discount Type\",\"1QfxQT\":\"Dismiss\",\"cVq+ga\":\"Don't have an account? <0>Sign Up0>\",\"4+aC/x\":\"Donation / Pay what you'd like ticket\",\"++S5i/\":\"Donation amount\",\"OO7MG7\":\"Donation Ticket\",\"0pEVi2\":\"Download Tickets PDF\",\"uABpqP\":\"Drag and drop or click\",\"3z2ium\":\"Drag to sort\",\"6skwyH\":\"Drop an image, or click here to replace the Cover Image\",\"S37RRV\":\"Drop an image, or click here to upload the Cover Image\",\"CfKofC\":\"Dropdown selection\",\"vi8Q/5\":\"Duplicate event\",\"7Cx5It\":\"Early bird\",\"ePK91l\":\"Edit\",\"N6j2JH\":[\"Edit \",[\"0\"]],\"kNGp1D\":\"Edit attendee\",\"t2bbp8\":\"Edit Attendee\",\"iFgaVN\":\"Edit Code\",\"jrBSO1\":\"Edit Organizer\",\"9BdS63\":\"Edit Promo Code\",\"O0CE67\":\"Edit question\",\"EzwCw7\":\"Edit Question\",\"d+nnyk\":\"Edit Ticket\",\"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\",\"WiKda6\":\"Email Configuration\",\"APuxIE\":\"Email confirmation resent\",\"YaCgdO\":\"Email confirmation resent successfully\",\"jyt+cx\":\"Email footer message\",\"I6F3cp\":\"Email not verified\",\"G5zNMX\":\"Email Settings\",\"NTZ/NX\":\"Embed Code\",\"4rnJq4\":\"Embed Script\",\"VFv2ZC\":\"End Date\",\"237hSL\":\"Ended\",\"MhVoma\":\"Enter an amount excluding taxes and fees.\",\"3Z223G\":\"Error confirming email address\",\"a6gga1\":\"Error confirming email change\",\"5/63nR\":\"EUR\",\"0pC/y6\":\"Event\",\"nuoP/j\":\"Event created successfully\",\"CFLUfD\":\"Event created successfully 🎉\",\"0Zptey\":\"Event Defaults\",\"Xe3XMd\":\"Event is not visible to the public\",\"4pKXJS\":\"Event is visible to the public\",\"ClwUUD\":\"Event location & venue details\",\"OopDbA\":\"Event page\",\"JyD0LH\":\"Event Settings\",\"4/If97\":\"Event status update failed. Please try again later\",\"btxLWj\":\"Event status updated\",\"tst44n\":\"Events\",\"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.\",\"9zSt4h\":\"Failed to export attendees. Please try again.\",\"2uGNuE\":\"Failed to export orders. Please try again.\",\"ZQ15eN\":\"Failed to resend ticket email\",\"PLUB/s\":\"Fee\",\"YirHq7\":\"Feedback\",\"/mfICu\":\"Fees\",\"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.\",\"QWa3Sk\":\"First Name, Last Name, and Email Address are default questions that are always included in the checkout process.\",\"TpqW74\":\"Fixed\",\"irpUxR\":\"Fixed amount\",\"TF9opW\":\"Flash is not available on this device\",\"UNMVei\":\"Forgot password?\",\"2POOFK\":\"Free\",\"/4rQr+\":\"Free Ticket\",\"01my8x\":\"Free ticket, no payment information required\",\"ejVYRQ\":\"From\",\"u6FPxT\":\"Get Tickets\",\"4GLxhy\":\"Getting Started\",\"4D3rRj\":\"Go back to profile\",\"cQPKZt\":\"Go to Dashboard\",\"9LCqFI\":\"Go to event homepage\",\"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.\",\"Ow9Hz5\":[\"Hi.Events Conference \",[\"0\"]],\"verBst\":\"Hi.Events Conference Center\",\"6eMEQO\":\"hi.events logo\",\"C4qOW8\":\"Hidden from public view\",\"k3dfFD\":\"Hidden questions are only visible to the event organizer and not to the customer.\",\"EeNE0j\":\"Hidden will not be shown to customers.\",\"vLyv1R\":\"Hide\",\"Mkkvfd\":\"Hide getting started page\",\"mFn5Xz\":\"Hide hidden questions\",\"SCimta\":\"Hide the getting started page from the sidebar\",\"Da29Y6\":\"Hide this question\",\"fsi6fC\":\"Hide this ticket from customers\",\"fvDQhr\":\"Hide this tier from users\",\"Fhzoa8\":\"Hide ticket after sale end date\",\"yhm3J/\":\"Hide ticket before sale start date\",\"k7/oGT\":\"Hide ticket unless user has applicable promo code\",\"L0ZOiu\":\"Hide ticket when sold out\",\"uno73L\":\"Hiding a ticket will prevent users from seeing it on the event page.\",\"tj6Gob\":\"Homepage & Checkout\",\"m07jN3\":\"Homepage & Checkout Settings\",\"ZOBwQn\":\"Homepage Design\",\"PRuBTd\":\"Homepage Designer\",\"YjVNGZ\":\"Homepage Preview\",\"c3E/kw\":\"Homer\",\"id+NIk\":\"How many minutes the customer has to complete their order\",\"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?\",\"fYyXCd\":\"https://example-maps-service.com/...\",\"uOXLV3\":\"I agree to the <0>terms and conditions0>\",\"sIxFk5\":\"I agree to the terms and conditions\",\"Crwwhn\":[\"If a new tab did not open, please <0>\",[\"0\"],\".0>\"],\"93DUnd\":[\"If a new tab did not open, please <0><1>\",[\"0\"],\"1>.0>\"],\"9gtsTP\":\"If blank, the address will be used to generate a Google map link\",\"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\",\"Gyl1h8\":\"Image dimensions must be at least 600px by 300px\",\"TiGacZ\":\"Image dimensions must be at least 900px by 450px\",\"UnTvkH\":\"Image dimensions must be between 3000px by 2000px. With a max height of 2000px and max width of 3000px\",\"uPEIvq\":\"Image must be less than 5MB\",\"AGZmwV\":\"Image uploaded successfully\",\"ibi52/\":\"Image width must be at least 900px and height at least 50px\",\"NoNwIX\":\"Inactive\",\"T0K0yl\":\"Inactive users cannot log in.\",\"OFAmKP\":\"Include connection details for your online event\",\"BfPBBG\":\"Include connection details for your online event. These details will be after successful registration.\",\"6+pAOx\":\"Include connection details for your online event. These details will be shown after successful registration.\",\"evpD4c\":\"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\",\"nbfdhU\":\"Integrations\",\"OyLdaz\":\"Invitation resent!\",\"HE6KcK\":\"Invitation revoked!\",\"SQKPvQ\":\"Invite User\",\"PgdQrx\":\"Issue refund\",\"KFXip/\":\"John\",\"XcgRvb\":\"Johnson\",\"1IWWYX\":[\"KittenTech Conference \",[\"0\"]],\"ZgJEMX\":\"KittenTech Conference Center\",\"87a/t/\":\"Label\",\"I3yitW\":\"Last login\",\"1ZaQUH\":\"Last name\",\"UXBCwc\":\"Last Name\",\"CKcupn\":\"Latest Orders\",\"tITjB1\":\"Learn more about Stripe\",\"c+gAXc\":\"Let's get started by creating your first event\",\"vR92Yn\":\"Let's get started by creating your first organizer\",\"QfrKvi\":\"Link color\",\"wJijgU\":\"Location\",\"sQia9P\":\"Log in\",\"zUDyah\":\"Logging in\",\"z0t9bb\":\"Login\",\"nOhz3x\":\"Logout\",\"F2jAFv\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nam placerat elementum...\",\"XkhEf9\":\"Lorem ipsum...\",\"MU3ijv\":\"Make this question mandatory\",\"wckWOP\":\"Manage\",\"8mmINh\":\"Manage billing information and view invoices\",\"jWIznR\":\"Manage default settings for new events\",\"n4SpU5\":\"Manage event\",\"wqyqaF\":\"Manage general account settings\",\"cQrNR3\":\"Manage Profile\",\"f92Qak\":\"Manage taxes and fees which can be applied to tickets\",\"PlTcVr\":\"Manage taxes and fees which can be applied to your tickets\",\"ophZVW\":\"Manage tickets\",\"Wsx7Iu\":\"Manage users and their permissions\",\"DdHfeW\":\"Manage your account details and default settings\",\"QHcjP+\":\"Manage your billing and payment details\",\"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\",\"lzcrX3\":\"Manually adding an attendee will adjust ticket quantity.\",\"g9dPPQ\":\"Maximum Per Order\",\"l5OcwO\":\"Message attendee\",\"Gv5AMu\":\"Message Attendees\",\"1jRD0v\":\"Message attendees with specific tickets\",\"Lvi+gV\":\"Message buyer\",\"tNZzFb\":\"Message Content\",\"lYDV/s\":\"Message individual attendees\",\"V7DYWd\":\"Message Sent\",\"t7TeQU\":\"Messages\",\"xFRMlO\":\"Minimum Per Order\",\"QYcUEf\":\"Minimum Price\",\"mYLhkl\":\"Miscellaneous Settings\",\"KYveV8\":\"Multi line text box\",\"SVuGaP\":\"Multiple price options, users can choose which to pay\",\"6wbTro\":\"Multiple price options. Perfect for early bird tickets etc.\",\"/bhMdO\":\"My amazing event description...\",\"vX8/tc\":\"My amazing event title...\",\"hKtWk2\":\"My Profile\",\"pRjx4L\":\"Nam placerat elementum...\",\"6YtxFj\":\"Name\",\"hVuv90\":\"Name should be less than 150 characters\",\"AIUkyF\":\"Navigate to Attendee\",\"qqeAJM\":\"Never\",\"7vhWI8\":\"New Password\",\"m920rF\":\"New York\",\"1UzENP\":\"No\",\"Wjz5KP\":\"No Attendees to show\",\"fFeCKc\":\"No Discount\",\"Z6ILSe\":\"No events for this organizer\",\"yAlJXG\":\"No events to show\",\"KPWxKD\":\"No messages to show\",\"J2LkP8\":\"No orders to show\",\"+Y976X\":\"No Promo Codes to show\",\"Ev2r9A\":\"No results\",\"RHyZUL\":\"No search results.\",\"cU1op4\":\"No Taxes or Fees have been added yet.\",\"RY2eP1\":\"No Taxes or Fees have been added.\",\"uR2eFu\":\"No tickets available\",\"b7JZFg\":\"No tickets to show\",\"EdQY6l\":\"None\",\"OJx3wK\":\"Not available\",\"x5+Lcz\":\"Not Checked In\",\"Scbrsn\":\"Not On Sale\",\"hFwWnI\":\"Notification Settings\",\"xXqEPO\":\"Notify buyer of refund\",\"YpN29s\":\"Notify organizer of new orders\",\"qeQhNj\":\"Now let's create your first event\",\"2NPDz1\":\"On sale\",\"Ldu/RI\":\"On Sale\",\"Ug4SfW\":\"Once you create an event, you'll see it here.\",\"+P/tII\":\"Once you're ready, set your event live and start selling tickets.\",\"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.\",\"OdnLE4\":\"Open sidebar\",\"ZZEYpT\":[\"Option \",[\"i\"]],\"0zpgxV\":\"Options\",\"BzEFor\":\"or\",\"UYUgdb\":\"Order\",\"mm+eaX\":\"Order #\",\"B3gPuX\":\"Order Cancelled\",\"SIbded\":\"Order Completed\",\"q/CcwE\":\"Order Date\",\"Tol4BF\":\"Order Details\",\"L4kzeZ\":[\"Order Details \",[\"0\"]],\"WbImlQ\":\"Order has been canceled and the order owner has been notified.\",\"VCOi7U\":\"Order questions\",\"wg9MPp\":\"Order questions are asked once per order. By default, people are asked for their first name, last name, and email address.\",\"+KNVxX\":\"Order questions are asked once per order. By default, we ask for the first name, last name, and email address.\",\"TPoYsF\":\"Order Reference\",\"GX6dZv\":\"Order Summary\",\"tDTq0D\":\"Order timeout\",\"1h+RBg\":\"Orders\",\"mz+c33\":\"Orders Created\",\"G5RhpL\":\"Organizer\",\"m/ebSk\":\"Organizer Details\",\"mYygCM\":\"Organizer is required\",\"Pa6G7v\":\"Organizer Name\",\"J2cXxX\":\"Organizers can only manage events and tickets. 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\",\"2w/FiJ\":\"Paid Ticket\",\"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\",\"iq5IUr\":\"Pause Ticket\",\"621rYf\":\"Payment\",\"JhtZAK\":\"Payment Failed\",\"xgav5v\":\"Payment succeeded!\",\"CcK+Ft\":\"PDF\",\"att1Hj\":\"percent\",\"/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\",\"q40YFl\":\"Please continue your order in the new tab\",\"ZJG4Di\":\"Please ensure you only send emails directly related to the order. Promotional emails\\nshould not be sent using this form.\",\"o+HaYe\":\"Please enter a valid promo code\",\"HnNept\":\"Please enter your new password\",\"5FSIzj\":\"Please Note\",\"MA04r/\":\"Please remove filters and set sorting to \\\"Homepage order\\\" to enable sorting\",\"pJLvdS\":\"Please select\",\"yygcoG\":\"Please select at least one ticket\",\"igBrCH\":\"Please verify your email address to access all features\",\"qCJyMx\":\"Post Checkout message\",\"g2UNkE\":\"Powered by\",\"Qs7yI0\":\"Powered By\",\"lqAWKB\":\"Powered by <0>Hi.Events0> 👋\",\"3n47kV\":\"Powered By Hi.Events\",\"ddi4j4\":\"Powered by Stripe\",\"Rs7IQv\":\"Pre Checkout message\",\"rdUucN\":\"Preview\",\"a7u1N9\":\"Price\",\"CmoB9j\":\"Price display mode\",\"Q8PWaJ\":\"Price tiers\",\"a5jvSX\":\"Price Tiers\",\"6RmHKN\":\"Primary Color\",\"G/ZwV1\":\"Primary Colour\",\"8cBtvm\":\"Primary Text Color\",\"BZz12Q\":\"Print\",\"MT7dxz\":\"Print All Tickets\",\"vERlcd\":\"Profile\",\"kUlL8W\":\"Profile updated successfully\",\"cl5WYc\":[\"Promo \",[\"promo_code\"],\" code applied\"],\"ZXpm3a\":[\"Promo \",[\"promoCode\"],\" code applied\"],\"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.\",\"812gwg\":\"Purchase License\",\"LkMOWF\":\"Quantity Available\",\"XKJuAX\":\"Question deleted\",\"oQvMPn\":\"Question Title\",\"enzGAL\":\"Questions\",\"K885Eq\":\"Questions sorted successfully\",\"OMJ035\":\"Radio Option\",\"C4TjpG\":\"Read less\",\"I3QpvQ\":\"Recipient\",\"N2C89m\":\"Reference\",\"gxFu7d\":[\"Refund amount (\",[\"0\"],\")\"],\"n10yGu\":\"Refund order\",\"zPH6gp\":\"Refund Order\",\"/BI0y9\":\"Refunded\",\"fgLNSM\":\"Register\",\"tasfos\":\"remove\",\"t/YqKh\":\"Remove\",\"RloWNu\":\"Reply to email\",\"EGm34e\":\"Resend confirmation email\",\"lnrkNz\":\"Resend email confirmation\",\"wIa8Qe\":\"Resend invitation\",\"VeKsnD\":\"Resend order email\",\"dFuEhO\":\"Resend ticket email\",\"o6+Y6d\":\"Resending...\",\"RfwZxd\":\"Reset password\",\"KbS2K9\":\"Reset Password\",\"vtc20Z\":\"Return to event page\",\"8YBH95\":\"Revenue\",\"PO/sOY\":\"Revoke invitation\",\"GDvlUT\":\"Role\",\"ELa4O9\":\"Sale End Date\",\"5uo5eP\":\"Sale ended\",\"Qm5XkZ\":\"Sale Start Date\",\"hVF4dJ\":\"Sale starts\",\"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\",\"lBAlVv\":\"Seach by name, order #, attendee # or email...\",\"W4kWXJ\":\"Search by attendee name, email or order #...\",\"ulAuWO\":\"Search by event name or description...\",\"+pr/FY\":\"Search by event name...\",\"NQSiYb\":\"Search by name or description...\",\"3zRbWw\":\"Search by name, email, or order #...\",\"BiYOdA\":\"Search by name...\",\"B1bB1j\":\"Search by order #, name or email...\",\"jA4hXE\":\"Search by subject or body...\",\"YEjitp\":\"Search by subject or content...\",\"HYnGee\":\"Search by ticket name...\",\"YIix5Y\":\"Search...\",\"OeW+DS\":\"Secondary color\",\"DnXcDK\":\"Secondary Color\",\"cZF6em\":\"Secondary text color\",\"ZIgYeg\":\"Secondary Text Color\",\"QuNKRX\":\"Select Camera\",\"kWI/37\":\"Select organizer\",\"hAjDQy\":\"Select status\",\"QYARw/\":\"Select Ticket\",\"XH5juP\":\"Select Ticket Tier\",\"nuWxSr\":\"Select Tickets\",\"O/7I0o\":\"Select...\",\"JlFcis\":\"Send\",\"qKWv5N\":[\"Send a copy to <0>\",[\"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.\",\"471O/e\":\"Send confirmation email\",\"D7ZemV\":\"Send order confirmation and ticket email\",\"v1rRtW\":\"Send Test\",\"j1VfcT\":\"SEO Description\",\"/SIY6o\":\"SEO Keywords\",\"GfWoKv\":\"SEO Settings\",\"rXngLf\":\"SEO Title\",\"/jZOZa\":\"Service Fee\",\"vu4F0h\":\"Set a minimum price and let users donate more\",\"Bj/QGQ\":\"Set a minimum price and let users pay more if they choose\",\"nYNT+5\":\"Set up your event\",\"A8iqfq\":\"Set your event live\",\"Tz0i8g\":\"Settings\",\"Z8lGw6\":\"Share\",\"FFbYHm\":[\"Should this \",[\"type\"],\" be applied to all new tickets?\"],\"8vETh9\":\"Show\",\"smd87r\":\"Show available ticket quantity\",\"qDsmzu\":\"Show hidden questions\",\"fMPkxb\":\"Show more\",\"izwOOD\":\"Show tax and fees separately\",\"j3b+OW\":\"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.\",\"DvCwYF\":\"Sorry, this promo code is invalid'\",\"6a/UJE\":\"Sorry, this promo code is not recognized\",\"9rRZZ+\":\"Sorry, your order has expired. Please start a new order.\",\"a4SyEE\":\"Sorting is disabled while filters and sorting are applied\",\"4nG1lG\":\"Standard ticket with a fixed price\",\"D3iCkb\":\"Start Date\",\"RS0o7b\":\"State\",\"/2by1f\":\"State or Region\",\"uAQUqI\":\"Status\",\"UJmAAK\":\"Subject\",\"X2rrlw\":\"Subtotal\",\"b0HJ45\":[\"Success! \",[\"0\"],\" will receive an email shortly.\"],\"BJIEiF\":[\"Successfully \",[\"0\"],\" attendee\"],\"Ih8kN0\":[\"Successfully $\",[\"0\"],\" attendee\"],\"xHl17l\":[\"Successfully checked <0>\",[\"0\"],\" \",[\"1\"],\"0> \",[\"2\"]],\"OtgNFx\":\"Successfully confirmed email address\",\"IKwyaF\":\"Successfully confirmed email change\",\"zLmvhE\":\"Successfully created attendee\",\"9mZEgt\":\"Successfully Created Promo Code\",\"aIA9C4\":\"Successfully Created Question\",\"onFQYs\":\"Successfully Created Ticket\",\"Hgj/mB\":\"Successfully deleted ticket\",\"J3RJSZ\":\"Successfully updated attendee\",\"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\",\"70dYC8\":\"Successfully Updated Promo Code\",\"F+pJnL\":\"Successfully Updated Seo Settings\",\"g2lRrH\":\"Successfully updated ticket\",\"DXZRk5\":\"Suite 100\",\"GNcfRk\":\"Support Email\",\"JpohL9\":\"Tax\",\"geUFpZ\":\"Tax & Fees\",\"0RXCDo\":\"Tax or Fee deleted successfully\",\"ZowkxF\":\"Taxes\",\"EEZnW+\":\"Taxes & Fees\",\"qu6/03\":\"Taxes and Fees\",\"gVjSFp\":\"Taxes and Fees can be associated with tickets and will be added to the ticket price.\",\"e0ZSh4\":\"Text Colour\",\"gypigA\":\"That promo code is invalid\",\"0ozSQu\":\"The background color for the event homepage\",\"LbHWgW\":\"The background color for the ticket widget on the event homepage\",\"75Xclv\":\"The basic details of your event\",\"UNqHnV\":\"The color of the buttons on the event homepage\",\"0amhbL\":\"The color of the links on the event homepage\",\"QXlz+n\":\"The default currency for your events.\",\"mnafgQ\":\"The default timezone for your events.\",\"NlfnUd\":\"The link you clicked is invalid.\",\"FqjKfd\":\"The location of your event\",\"FeAfXO\":[\"The maximum numbers number of tickets for Generals is \",[\"0\"]],\"POEqXB\":\"The organizer details of your event\",\"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.\",\"TJZByZ\":\"The tax and fee to apply to this ticket. You can create new taxes and fees on the\",\"OJYwh9\":\"The taxes and fees to apply to this ticket. You can create new taxes and fees on the\",\"6BpBfZ\":\"The text color for the event homepage\",\"rljHp7\":\"The text color for the ticket widget on the event homepage\",\"s4di40\":\"The text to display in the 'Continue' button. Defaults to 'Continue'\",\"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\",\"wgAiDb\":\"The user must login to change their email.\",\"jvxN9/\":\"There are no tickets available for this event\",\"rMcHYt\":\"There is a refund pending. Please wait for it to complete before requesting another refund.\",\"hjLUr+\":\"There was an error loading this content. Please refresh the page and try again.\",\"68Axnm\":\"There was an error processing your request. Please try again.\",\"mVKOW6\":\"There was an error sending your message\",\"Um/adz\":\"These allow multiple selections\",\"vWeHWp\":\"These colors are not saved in our system.\",\"7qzHGS\":\"These colors are not saved in our system. They are only used to generate the widget.\",\"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.\",\"CNk/ro\":\"This is an online event\",\"GabtCa\":\"This is the email address that will be used as the reply-to address for all emails sent from this event\",\"CKkb5E\":\"This message is how below the\",\"cHO4ec\":\"This message will be included in the footer of all emails sent from this event\",\"RjwlZt\":\"This order has already been paid.\",\"axERYu\":\"This order has already been paid. <0>View order details0>\",\"wY+HO9\":\"This order has already been processed.\",\"5K8REg\":\"This order has already been refunded.\",\"OiQMhP\":\"This order has been cancelled\",\"YyEJij\":\"This order has been cancelled.\",\"D44cEI\":\"This order has been completed.\",\"HILpDX\":\"This order is awaiting payment\",\"0vRWbB\":\"This order is awaiting payment.\",\"BdYtn9\":\"This order is complete\",\"e3uMJH\":\"This order is complete.\",\"YNKXOK\":\"This order is processing.\",\"LIjb4v\":\"This order is processing. TODO - a nice image and poll the API\",\"yPZN4i\":\"This order page is no longer available.\",\"5189cf\":\"This overrides all visibility settings and will hide the ticket from all customers.\",\"4vwjho\":\"This page has expired. <0>View order details0>\",\"Qt7RBu\":\"This question is only visible to the event organizer\",\"os29v1\":\"This reset password link is invalid or expired.\",\"WJqBqd\":\"This ticket cannot be deleted because it is\\nassociated with an order. You can hide it instead.\",\"ma6qdu\":\"This ticket is hidden from public view\",\"xJ8nzj\":\"This ticket is hidden unless targeted by a Promo Code\",\"IV9xTT\":\"This user is not active, as they have not accepted their invitation.\",\"5AnPaO\":\"ticket\",\"kjAL4v\":\"Ticket\",\"KosivG\":\"Ticket deleted successfully\",\"dtGC3q\":\"Ticket email has been resent to attendee\",\"USk+Mn\":\"Ticket page message\",\"mRM6XH\":\"Ticket Sales\",\"NirIiz\":\"Ticket Tier\",\"8jLPgH\":\"Ticket Type\",\"jqWDf9\":\"Ticket widget background color\",\"UrMVAz\":\"Ticket Widget Preview\",\"ngtDy7\":\"Ticket widget text color\",\"N+YYpo\":\"Ticket(s)\",\"6GQNLE\":\"Tickets\",\"54q0zp\":\"Tickets for\",\"i+idBz\":\"Tickets sold\",\"AGRilS\":\"Tickets Sold\",\"56Qw2C\":\"Tickets sorted successfully\",\"4f8A8M\":\"Tickets to which the promo code applies (Applies to all by default)\",\"xN9AhL\":[\"Tier \",[\"0\"]],\"oYaHuq\":\"Tiered Ticket\",\"XZrhpz\":\"Tiered Ticket - Coming Soon\",\"4M150e\":\"Tiered tickets allow you to offer multiple price options for the same ticket.\\nThis is perfect for early bird tickets, or offering different price\\noptions for different groups of people.\",\"jQoYTX\":\"Tiered tickets allow you to offer multiple price options for the same ticket. This is perfect for early bird tickets or offering different price options for different groups of people.\",\"s/0RpH\":\"Times used\",\"40Gx0U\":\"Timezone\",\"oDGm7V\":\"TIP\",\"MHrjPM\":\"Title\",\"xdA/+p\":\"Tools\",\"72c5Qo\":\"Total\",\"BxsfMK\":\"Total Fees\",\"mpB/d9\":\"Total order amount\",\"m3FM1g\":\"Total refunded\",\"GBBIy+\":\"Total remaining\",\"/SgoNA\":\"Total Tax\",\"+zy2Nq\":\"Type\",\"mLGbAS\":[\"Unable to \",[\"0\"],\" attendee\"],\"/cSMqv\":\"Unable to create question. Please check the your details\",\"nNdxt9\":\"Unable to create ticket. Please check the your details\",\"MH/lj8\":\"Unable to update question. Please check the your details\",\"Mqy/Zy\":\"United States\",\"NIuIk1\":\"Unlimited\",\"oMcLhS\":\"Unlimited ticket quantity available\",\"E0q9qH\":\"Unlimited usages allowed\",\"ia8YsC\":\"Upcoming\",\"L/gNNk\":[\"Update \",[\"0\"]],\"+qqX74\":\"Update event name, description and dates\",\"vXPSuB\":\"Update profile\",\"gsehpV\":\"Upload an image to be displayed on the event page\",\"BNBfrU\":\"Upload Cover\",\"UtDm3q\":\"URL copied to clipboard\",\"e5lF64\":\"Usage Example\",\"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 Settings0>\",\"vgwVkd\":\"UTC\",\"khBZkl\":\"VAT\",\"E/9LUk\":\"Venue Name\",\"AM+zF3\":\"View attendee\",\"e4mhwd\":\"View event homepage\",\"/5PEQz\":\"View event page\",\"fFornT\":\"View full message\",\"YIsEhQ\":\"View map\",\"Ep3VfY\":\"View on Google Maps\",\"AMkkeL\":\"View order\",\"Y8s4f6\":\"View order details\",\"tF+VVr\":\"VIP Ticket\",\"2q/Q7x\":\"Visibility\",\"vmOFL/\":\"We could not process your payment. Please try again or contact support.\",\"1E0vyy\":\"We couldn't load the data. Please try again.\",\"VGioT0\":\"We recommend dimensions of 2160px by 1080px, 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\"],\" 👋\"],\"wjqPqF\":\"What are Tiered Tickets?\",\"5iXvHA\":\"What is a Tiered Ticketing?\",\"MhhnvW\":\"What tickets does this code apply to? (Applies to all by default)\",\"dCil3h\":\"What tickets should this question be apply to?\",\"Rb0XUE\":\"What time will you be arriving?\",\"5N4wLD\":\"What type of question is this?\",\"S+OdxP\":\"Who is organizing this event?\",\"LINr2M\":\"Who is this message to?\",\"nWhye/\":\"Who should be asked this question?\",\"vVGiM4\":\"Who type of question is this?\",\"onLsWS\":\"Whoops! something went wrong. Please try again or contact support if the problem persists.\",\"AHXN2z\":\"Widget\",\"AU/8QR\":\"Widget Configuration\",\"VxFvXQ\":\"Widget Embed\",\"v1P7Gm\":\"Widget Settings\",\"b4itZn\":\"Working\",\"hqmXmc\":\"Working...\",\"l75CjT\":\"Yes\",\"QcwyCh\":\"Yes, remove them\",\"P+Sty0\":[\"You are changing your email to <0>\",[\"0\"],\"0>.\"],\"4ysd6z\":\"You can connecting using this Zoom link...\",\"9HGdDw\":\"You can create a promo code which targets this ticket on the\",\"KRhIxT\":\"You can now start receiving payments through Stripe.\",\"UqVaVO\":\"You cannot change the ticket type as there are attendees associated with this ticket.\",\"zQ8idk\":\"You cannot change the ticket type because there are already tickets sold for this ticket.\",\"3vRX5A\":\"You cannot delete this price tier because there are already tickets sold for this tier. You can hide it instead.\",\"RCC09s\":\"You cannot edit a default question\",\"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.\",\"XoeazJ\":\"You have no attendee questions. Attendee questions are asked once per attendee.\",\"CoZHDB\":\"You have no order questions.\",\"FZKDIe\":\"You have no order questions. Order questions are asked once per order.\",\"15qAvl\":\"You have no pending email change.\",\"n81Qk8\":\"You have not completed your Stripe Connect setup\",\"jxsiqJ\":\"You have not connected your Stripe account\",\"183zcL\":\"You have taxes and fees added to a Free Ticket. Would you like to remove or obscure them?\",\"2v5MI1\":\"You haven't sent any messages yet. You can send messages to all attendees, or to specific ticket 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\",\"LRguuL\":\"You must have at least one tier\",\"8/eLoa\":\"You need to verify your account before you can send messages.\",\"WHXRMI\":\"You'll need at least one ticket to get started. Free, paid or let the user decide what to pay.\",\"bdg03s\":\"Your account email in outgoing emails.\",\"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\"],\"0> is pending. Please check your email to confirm\"],\"yZfBoy\":\"Your message has been sent\",\"la26JS\":\"Your order is in progress\",\"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.\",\"cJ4Y4R\":\"Your refund is processing.\",\"IFHV2p\":\"Your ticket for\",\"3k7HDY\":\"Zip\",\"BM/KQm\":\"Zip or Postal Code\",\"VftCuk\":\"Zoom link, Google Meet link, etc.\",\"ySU+JY\":\"your@email.com\"}")};
\ No newline at end of file
diff --git a/frontend/src/locales/ru.po b/frontend/src/locales/ru.po
index af09ed7a..6fa6d8d7 100644
--- a/frontend/src/locales/ru.po
+++ b/frontend/src/locales/ru.po
@@ -22,8 +22,8 @@ msgid "'There\\'s nothing to show yet'"
msgstr ""
#: src/components/common/QuestionsTable/index.tsx:267
-msgid "{0, plural, one {# hidden question} other {# hidden questions}}"
-msgstr ""
+#~ msgid "{0, plural, one {# hidden question} other {# hidden questions}}"
+#~ msgstr ""
#: src/components/common/AttendeeTable/index.tsx:113
#~ msgid "{0}"
@@ -49,6 +49,10 @@ msgstr ""
msgid "{0}'s Events"
msgstr ""
+#: src/components/common/QuestionsTable/index.tsx:267
+msgid "{0}{1}"
+msgstr ""
+
#: src/components/modals/RefundOrderModal/index.tsx:121
msgid "{message}"
msgstr ""
@@ -347,7 +351,7 @@ msgstr ""
msgid "All Events"
msgstr ""
-#: src/components/common/PromoCodeTable/index.tsx:128
+#: src/components/common/PromoCodeTable/index.tsx:130
msgid "All Tickets"
msgstr ""
@@ -429,7 +433,7 @@ msgstr ""
msgid "Appearance"
msgstr ""
-#: src/components/routes/ticket-widget/SelectTickets/index.tsx:359
+#: src/components/routes/ticket-widget/SelectTickets/index.tsx:357
msgid "applied"
msgstr ""
@@ -437,7 +441,7 @@ msgstr ""
#~ msgid "Apply"
#~ msgstr ""
-#: src/components/routes/ticket-widget/SelectTickets/index.tsx:386
+#: src/components/routes/ticket-widget/SelectTickets/index.tsx:385
msgid "Apply Promo Code"
msgstr ""
@@ -453,7 +457,7 @@ msgstr ""
msgid "Are you sure you want to cancel this attendee? This will void their ticket"
msgstr ""
-#: src/components/common/PromoCodeTable/index.tsx:34
+#: src/components/common/PromoCodeTable/index.tsx:36
msgid "Are you sure you want to delete this promo code?"
msgstr ""
@@ -485,8 +489,8 @@ msgstr ""
msgid "Attendee Details"
msgstr ""
-#: src/components/common/QuestionsTable/index.tsx:306
-#: src/components/common/QuestionsTable/index.tsx:347
+#: src/components/common/QuestionsTable/index.tsx:309
+#: src/components/common/QuestionsTable/index.tsx:350
msgid "Attendee questions"
msgstr ""
@@ -621,7 +625,7 @@ msgstr ""
#~ msgstr ""
#: src/components/common/AttendeeTable/index.tsx:211
-#: src/components/common/PromoCodeTable/index.tsx:37
+#: src/components/common/PromoCodeTable/index.tsx:39
#: src/utilites/confirmationDialog.tsx:11
msgid "Cancel"
msgstr ""
@@ -728,7 +732,7 @@ msgstr ""
msgid "click here"
msgstr ""
-#: src/components/common/PromoCodeTable/index.tsx:95
+#: src/components/common/PromoCodeTable/index.tsx:97
msgid "Click to copy"
msgstr ""
@@ -741,7 +745,7 @@ msgstr ""
msgid "Close sidebar"
msgstr ""
-#: src/components/common/PromoCodeTable/index.tsx:66
+#: src/components/common/PromoCodeTable/index.tsx:68
#: src/components/forms/PromoCodeForm/index.tsx:33
msgid "Code"
msgstr ""
@@ -883,7 +887,7 @@ msgstr ""
msgid "Copied"
msgstr ""
-#: src/components/common/PromoCodeTable/index.tsx:103
+#: src/components/common/PromoCodeTable/index.tsx:105
msgid "copied to clipboard"
msgstr ""
@@ -899,7 +903,7 @@ msgstr ""
msgid "Copy Link"
msgstr ""
-#: src/components/common/PromoCodeTable/index.tsx:172
+#: src/components/common/PromoCodeTable/index.tsx:176
msgid "Copy URL"
msgstr ""
@@ -924,7 +928,7 @@ msgstr ""
msgid "Create {0}"
msgstr ""
-#: src/components/common/PromoCodeTable/index.tsx:54
+#: src/components/common/PromoCodeTable/index.tsx:56
msgid "Create a Promo Code"
msgstr ""
@@ -1051,7 +1055,7 @@ msgstr ""
#: src/components/common/AttendeeTable/index.tsx:205
#: src/components/common/OrdersTable/index.tsx:131
-#: src/components/common/PromoCodeTable/index.tsx:176
+#: src/components/common/PromoCodeTable/index.tsx:180
#: src/components/common/QuestionsTable/index.tsx:113
#: src/components/common/TicketsTable/SortableTicket/index.tsx:193
msgid "Danger zone"
@@ -1073,12 +1077,12 @@ msgstr ""
#~ msgid "Deactivate user"
#~ msgstr ""
-#: src/components/common/PromoCodeTable/index.tsx:37
+#: src/components/common/PromoCodeTable/index.tsx:39
#: src/components/common/TaxAndFeeList/index.tsx:73
msgid "Delete"
msgstr ""
-#: src/components/common/PromoCodeTable/index.tsx:180
+#: src/components/common/PromoCodeTable/index.tsx:184
msgid "Delete code"
msgstr ""
@@ -1121,7 +1125,7 @@ msgstr ""
#~ msgid "Disable code"
#~ msgstr ""
-#: src/components/common/PromoCodeTable/index.tsx:67
+#: src/components/common/PromoCodeTable/index.tsx:69
msgid "Discount"
msgstr ""
@@ -1145,13 +1149,17 @@ msgstr ""
msgid "Don't have an account? <0>Sign Up0>"
msgstr ""
+#: src/components/forms/TicketForm/index.tsx:139
+msgid "Donation / Pay what you'd like ticket"
+msgstr ""
+
#: src/components/routes/ticket-widget/SelectTickets/Prices/Tiered/index.tsx:59
#~ msgid "Donation amount"
#~ msgstr ""
#: src/components/forms/TicketForm/index.tsx:139
-msgid "Donation Ticket"
-msgstr ""
+#~ msgid "Donation Ticket"
+#~ msgstr ""
#: src/components/routes/ticket-widget/OrderSummaryAndTickets/index.tsx:91
#~ msgid "Download Tickets PDF"
@@ -1202,7 +1210,7 @@ msgstr ""
msgid "Edit Attendee"
msgstr ""
-#: src/components/common/PromoCodeTable/index.tsx:167
+#: src/components/common/PromoCodeTable/index.tsx:169
msgid "Edit Code"
msgstr ""
@@ -1398,7 +1406,7 @@ msgstr ""
msgid "Events"
msgstr ""
-#: src/components/common/PromoCodeTable/index.tsx:70
+#: src/components/common/PromoCodeTable/index.tsx:72
msgid "Expires"
msgstr ""
@@ -1476,7 +1484,7 @@ msgstr ""
msgid "First name must be between 1 and 50 characters"
msgstr ""
-#: src/components/common/QuestionsTable/index.tsx:327
+#: src/components/common/QuestionsTable/index.tsx:330
msgid "First Name, Last Name, and Email Address are default questions and are always included in the checkout process."
msgstr ""
@@ -1555,7 +1563,7 @@ msgstr ""
msgid "Guests"
msgstr ""
-#: src/components/routes/ticket-widget/SelectTickets/index.tsx:354
+#: src/components/routes/ticket-widget/SelectTickets/index.tsx:352
msgid "Have a promo code?"
msgstr ""
@@ -1605,7 +1613,7 @@ msgstr ""
msgid "Hide getting started page"
msgstr ""
-#: src/components/common/QuestionsTable/index.tsx:273
+#: src/components/common/QuestionsTable/index.tsx:276
msgid "Hide hidden questions"
msgstr ""
@@ -1891,7 +1899,7 @@ msgstr ""
#: src/components/common/EventCard/index.tsx:78
#: src/components/common/OrdersTable/index.tsx:94
#: src/components/common/OrdersTable/index.tsx:109
-#: src/components/common/PromoCodeTable/index.tsx:164
+#: src/components/common/PromoCodeTable/index.tsx:166
#: src/components/common/TicketsTable/SortableTicket/index.tsx:171
#: src/components/layouts/Event/index.tsx:38
msgid "Manage"
@@ -2064,7 +2072,7 @@ msgstr ""
msgid "Navigate to Attendee"
msgstr ""
-#: src/components/common/PromoCodeTable/index.tsx:155
+#: src/components/common/PromoCodeTable/index.tsx:157
#: src/components/routes/account/ManageAccount/sections/Users/index.tsx:101
msgid "Never"
msgstr ""
@@ -2108,7 +2116,7 @@ msgstr ""
msgid "No orders to show"
msgstr ""
-#: src/components/common/PromoCodeTable/index.tsx:43
+#: src/components/common/PromoCodeTable/index.tsx:45
msgid "No Promo Codes to show"
msgstr ""
@@ -2136,7 +2144,7 @@ msgstr ""
msgid "No tickets to show"
msgstr ""
-#: src/components/common/PromoCodeTable/index.tsx:79
+#: src/components/common/PromoCodeTable/index.tsx:81
msgid "None"
msgstr ""
@@ -2255,8 +2263,8 @@ msgstr ""
msgid "Order has been canceled and the order owner has been notified."
msgstr ""
-#: src/components/common/QuestionsTable/index.tsx:291
-#: src/components/common/QuestionsTable/index.tsx:333
+#: src/components/common/QuestionsTable/index.tsx:294
+#: src/components/common/QuestionsTable/index.tsx:336
msgid "Order questions"
msgstr ""
@@ -2511,7 +2519,7 @@ msgstr ""
msgid "Pre Checkout message"
msgstr ""
-#: src/components/common/QuestionsTable/index.tsx:325
+#: src/components/common/QuestionsTable/index.tsx:328
msgid "Preview"
msgstr ""
@@ -2579,7 +2587,7 @@ msgstr ""
msgid "Promo Codes"
msgstr ""
-#: src/components/common/PromoCodeTable/index.tsx:48
+#: src/components/common/PromoCodeTable/index.tsx:50
msgid "Promo codes can be used to offer discounts, presale access, or provide special access to your event."
msgstr ""
@@ -2647,11 +2655,11 @@ msgstr ""
msgid "Register"
msgstr ""
-#: src/components/routes/ticket-widget/SelectTickets/index.tsx:363
+#: src/components/routes/ticket-widget/SelectTickets/index.tsx:361
msgid "remove"
msgstr ""
-#: src/components/routes/ticket-widget/SelectTickets/index.tsx:364
+#: src/components/routes/ticket-widget/SelectTickets/index.tsx:362
msgid "Remove"
msgstr ""
@@ -2911,7 +2919,11 @@ msgid "Service Fee"
msgstr ""
#: src/components/forms/TicketForm/index.tsx:141
-msgid "Set a minimum price and let users donate more"
+#~ msgid "Set a minimum price and let users donate more"
+#~ msgstr ""
+
+#: src/components/forms/TicketForm/index.tsx:141
+msgid "Set a minimum price and let users pay more if they choose"
msgstr ""
#: src/components/routes/event/GettingStarted/index.tsx:86
@@ -2943,7 +2955,7 @@ msgstr ""
msgid "Show available ticket quantity"
msgstr ""
-#: src/components/common/QuestionsTable/index.tsx:273
+#: src/components/common/QuestionsTable/index.tsx:276
msgid "Show hidden questions"
msgstr ""
@@ -3512,11 +3524,11 @@ msgstr ""
#~ msgid "Ticket widget text color"
#~ msgstr ""
-#: src/components/common/PromoCodeTable/index.tsx:145
+#: src/components/common/PromoCodeTable/index.tsx:147
msgid "Ticket(s)"
msgstr ""
-#: src/components/common/PromoCodeTable/index.tsx:69
+#: src/components/common/PromoCodeTable/index.tsx:71
#: src/components/layouts/Event/index.tsx:41
#: src/components/layouts/EventHomepage/index.tsx:80
#: src/components/routes/event/tickets.tsx:37
@@ -3566,7 +3578,7 @@ msgstr ""
#~ msgid "Tiered tickets allow you to offer multiple price options for the same ticket. This is perfect for early bird tickets or offering different price options for different groups of people."
#~ msgstr ""
-#: src/components/common/PromoCodeTable/index.tsx:68
+#: src/components/common/PromoCodeTable/index.tsx:70
msgid "Times used"
msgstr ""
@@ -3652,7 +3664,7 @@ msgstr ""
#~ msgid "Unlimited ticket quantity available"
#~ msgstr ""
-#: src/components/common/PromoCodeTable/index.tsx:123
+#: src/components/common/PromoCodeTable/index.tsx:125
msgid "Unlimited usages allowed"
msgstr ""
@@ -3680,6 +3692,10 @@ msgstr ""
msgid "Upload Cover"
msgstr ""
+#: src/components/common/PromoCodeTable/index.tsx:174
+msgid "URL copied to clipboard"
+msgstr ""
+
#: src/components/common/WidgetEditor/index.tsx:295
msgid "Usage Example"
msgstr ""
@@ -3946,7 +3962,7 @@ msgstr ""
msgid "You have connected your Stripe account"
msgstr ""
-#: src/components/common/QuestionsTable/index.tsx:316
+#: src/components/common/QuestionsTable/index.tsx:319
msgid "You have no attendee questions."
msgstr ""
@@ -3954,7 +3970,7 @@ msgstr ""
#~ msgid "You have no attendee questions. Attendee questions are asked once per attendee."
#~ msgstr ""
-#: src/components/common/QuestionsTable/index.tsx:301
+#: src/components/common/QuestionsTable/index.tsx:304
msgid "You have no order questions."
msgstr ""
diff --git a/frontend/src/locales/zh-cn.js b/frontend/src/locales/zh-cn.js
index 8a935142..60a48395 100644
--- a/frontend/src/locales/zh-cn.js
+++ b/frontend/src/locales/zh-cn.js
@@ -1 +1 @@
-/*eslint-disable*/module.exports={messages:JSON.parse("{\"1bpx9A\":\"...\",\"f8qS7T\":\"'There\\\\'s nothing to show yet'\",\"4zldrf\":[[\"0\",\"plural\",{\"one\":[\"#\",\" hidden question\"],\"other\":[\"#\",\" hidden questions\"]}]],\"J/hVSQ\":[[\"0\"]],\"KMgp2+\":[[\"0\"],\" available\"],\"tmew5X\":[[\"0\"],\" checked in\"],\"Pmr5xp\":[[\"0\"],\" created successfully\"],\"FImCSc\":[[\"0\"],\" updated successfully\"],\"KOr9b4\":[[\"0\"],\"'s Events\"],\"wapGcj\":[[\"message\"]],\"fyE7Au\":[[\"minutes\"],\" minutes and \",[\"seconds\"],\" seconds\"],\"NlQ0cx\":[[\"organizerName\"],\"'s first event\"],\"OXku3b\":\"<0>https://0>your-website.com\",\"E15xs8\":\"⚡️ Set up your event\",\"FL6OwU\":\"✉️ Confirm your email address\",\"y1NShf\":\"🎉 Congratulation on creating an event!\",\"BN0OQd\":\"🎉 Congratulations on creating an event!\",\"fAv9QG\":\"🎟️ Add tickets\",\"4WT5tD\":\"🎨 Customize your event page\",\"3VPPdS\":\"💳 Connect with Stripe\",\"s4Tgn6\":\"📢 Promote your event\",\"cjdktw\":\"🚀 Set your event live\",\"rmelwV\":\"0 minutes and 0 seconds\",\"UQ7pBY\":\"0.50 for $0.50\",\"i1+xzD\":\"1.75 for 1.75%\",\"i0puaE\":\"10.00\",\"W9+fkZ\":\"10001\",\"qdfdgM\":\"123 Main Street\",\"IoRZzD\":\"20\",\"+H1RMb\":\"2024-01-01 10:00\",\"Q/T49U\":\"2024-01-01 18:00\",\"hMT8+2\":\"94103\",\"d9El7Q\":[\"A default \",[\"type\"],\" is automaticaly applied to all new tickets. You can override this on a per ticket basis.\"],\"SMUbbQ\":\"A Dropdown input allows only one selection\",\"qv4bfj\":\"A fee, like a booking fee or a service fee\",\"Pgaiuj\":\"A fixed amount per ticket. E.g, $0.50 per ticket\",\"f4vJgj\":\"A multi line text input\",\"ySO/4f\":\"A percentage of the ticket price. E.g., 3.5% of the ticket price\",\"WXeXGB\":\"A promo code with no discount can be used to reveal hidden tickets.\",\"GMhWB5\":\"A Radio option allows has multiple options but only one can be selected.\",\"CBt3s7\":\"A Radio Option allows only one selection\",\"AG/qmQ\":\"A Radio option has multiple options but only one can be selected.\",\"7g61G9\":\"A short description of Awesome Events Ltd.\",\"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\",\"zCk10D\":\"A single question per attendee. E.g, What is your preferred meal?\",\"ap3v36\":\"A single question per order. E.g, What is your company name?\",\"RlJmQg\":\"A standard tax, like VAT or GST\",\"pDwHGk\":\"About hi.events\",\"uIKNjo\":\"About the event\",\"bfXQ+N\":\"Accept Invitation\",\"iwyhk4\":\"Access to the VIP area...\",\"AeXO77\":\"Account\",\"0b79Xf\":\"Account Email\",\"lkNdiH\":\"Account Name\",\"Puv7+X\":\"Account Settings\",\"OmylXO\":\"Account updated successfully\",\"7L01XJ\":\"Actions\",\"FQBaXG\":\"Activate\",\"F6pfE9\":\"Active\",\"m16xKo\":\"Add\",\"LKNynS\":\"Add a cover image, description, and more to make your event stand out.\",\"gMK0ps\":\"Add event details and and manage event settings.\",\"Fb+SDI\":\"Add More tickets\",\"ApsD9J\":\"Add New\",\"TZxnm8\":\"Add Option\",\"Cw27zP\":\"Add question\",\"yWiPh+\":\"Add Tax or Fee\",\"BGD9Yt\":\"Add tickets\",\"goOKRY\":\"Add tier\",\"p59pEv\":\"Additional Details\",\"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.\",\"CPXP5Z\":\"Affiliates\",\"W7AfhC\":\"All attendees of this event\",\"QsYjci\":\"All Events\",\"/twVAS\":\"All Tickets\",\"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..\",\"8wYDMp\":\"Already have an account?\",\"ApOYO8\":\"Amazing, Event, Keywords...\",\"hehnjM\":\"Amount\",\"TRYjHa\":[\"amount in \",[\"0\"]],\"R2O9Rg\":[\"Amount paid (\",[\"0\"],\")\"],\"tLjOgo\":[\"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\",\"er3d/4\":\"An error occurred while sorting the tickets. Please try again or refresh the page\",\"hhvESd\":\"An event is the actual event you are hosting\",\"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.\",\"j4DliD\":\"Any queries from ticket 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\",\"DB8zMK\":\"Apply\",\"GctSSm\":\"Apply Promo Code\",\"jcnZEw\":[\"Apply this \",[\"type\"],\" to all new tickets\"],\"q7TRd7\":\"Are you sure you want to activate this attendee?\",\"/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\",\"2xEpch\":\"Ask once per attendee\",\"LBLOqH\":\"Ask once per order\",\"ss9PbX\":\"Attendee\",\"m0CFV2\":\"Attendee Details\",\"lXcSD2\":\"Attendee questions\",\"VvYqMB\":\"Attendee questions are asked once per attendee. By default, people are asked for their first name, last name, and email address.\",\"spxPEv\":\"Attendee questions are asked once per attendee. By default, we ask for the attendee's first name, last name, and email address.\",\"9SZT4E\":\"Attendees\",\"5UbY+B\":\"Attendees with a specific ticket\",\"IMJ6rh\":\"Auto Resize\",\"vZ5qKF\":\"Automatically resize the widget height based on the content. When disabled, the widget will fill the height of the container.\",\"lXkUEV\":\"Availability\",\"ioG+xt\":\"Awaiting Payment\",\"3PmQfI\":\"Awesome Event\",\"kNmmvE\":\"Awesome Events Ltd.\",\"Yrbm6T\":\"Awesome Organizer Ltd.\",\"9002sI\":\"Back to all events\",\"0TGkYM\":\"Back to event homepage\",\"A302fe\":\"Back to event page\",\"VCoEm+\":\"Back to login\",\"MLZyiY\":\"Background color\",\"k1bLf+\":\"Background Color\",\"I7xjqg\":\"Background Type\",\"EOUool\":\"Basic Details\",\"7EGQKA\":\"Because you are the account owner, you cannot change your role or status.\",\"1mwMl+\":\"Before you send!\",\"wVfiR2\":\"Before you're event can go live, there's a few thing to do.\",\"/yeZ20\":\"Before your event can go live, there are a few things you need to do.\",\"1xAcxY\":\"Begin selling tickets in minutes\",\"R+w/Va\":\"Billing\",\"Ptp9MF\":\"Button color\",\"whqocw\":\"By registering you agree to our <0>Terms of Service0> and <1>Privacy Policy1>.\",\"bcCn6r\":\"Calculation Type\",\"+8bmSu\":\"California\",\"iStTQt\":\"Camera permission was denied. <0>Request Permission0> again, or if this doesn't work, you will need to <1>grant this page1> access to your camera in your browser settings.\",\"Jzn1qy\":\"Can't load events\",\"dEgA5A\":\"Cancel\",\"Gjt/py\":\"Cancel email change\",\"tVJk4q\":\"Cancel order\",\"Os6n2a\":\"Cancel Order\",\"Mz7Ygx\":[\"Cancel Order \",[\"0\"]],\"Ud7zwq\":\"Canceling will cancel all tickets associated with this order, and release the tickets back into the available pool.\",\"vv7kpg\":\"Cancelled\",\"77/YgG\":\"Change Cover\",\"GptGxg\":\"Change password\",\"QndF4b\":\"check in\",\"xMDm+I\":\"Check In\",\"9FVFym\":\"check out\",\"gXcPxc\":\"Check-in\",\"Y3FYXy\":\"Check-In\",\"CNafaC\":\"Checkbox options allow multiple selections\",\"SpabVf\":\"Checkboxes\",\"CRu4lK\":\"Checked In\",\"/ydvvl\":\"Checkout Messaging\",\"1WnhCL\":\"Checkout Settings\",\"JjkX4+\":\"Choose a color for your background\",\"/Jizh9\":\"Choose an account\",\"jJGoVv\":\"Choose what notifications you want to receive\",\"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\",\"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\",\"DwF9eH\":\"Component Code\",\"7VpPHA\":\"Confirm\",\"ZaEJZM\":\"Confirm Email Change\",\"yjkELF\":\"Confirm New Password\",\"xnWESi\":\"Confirm password\",\"p2/GCq\":\"Confirm Password\",\"wnDgGj\":\"Confirming email address...\",\"DnLC08\":\"Congratulation on creating an event!\",\"pbAk7a\":\"Connect Stripe\",\"UMGQOh\":\"Connect with Stripe\",\"QKLP1W\":\"Connect your Stripe account to start receiving payments.\",\"5lcVkL\":\"Connection Details\",\"i3p844\":\"Contact email\",\"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\",\"RGVUUI\":\"Continue To Payment\",\"6V3Ea3\":\"Copied\",\"T5rdis\":\"copied to clipboard\",\"he3ygx\":\"Copy\",\"8+cOrS\":\"Copy details to all attendees\",\"ENCIQz\":\"Copy Link\",\"E6nRW7\":\"Copy URL\",\"JNCzPW\":\"Country\",\"IF7RiR\":\"Cover\",\"P0rbCt\":\"Cover Image\",\"hYgDIe\":\"Create\",\"b9XOHo\":[\"Create \",[\"0\"]],\"6kdXbW\":\"Create a Promo Code\",\"n5pRtF\":\"Create a Ticket\",\"X6sRve\":[\"Create an account or <0>\",[\"0\"],\"0> to get started\"],\"nx+rqg\":\"create an organizer\",\"ipP6Ue\":\"Create Attendee\",\"uN355O\":\"Create Event\",\"BOqY23\":\"Create new\",\"kpJAeS\":\"Create Organizer\",\"sYpiZP\":\"Create Promo Code\",\"a6YrKg\":\"Create promo codes\",\"n6H6AO\":\"Create promo codes to offer discounts to your attendees.\",\"B3Mkdt\":\"Create Question\",\"UKfi21\":\"Create Tax or Fee\",\"Tg323g\":\"Create Ticket\",\"agZ87r\":\"Create tickets for your event, set prices, and manage available quantity.\",\"d+F6q9\":\"Created\",\"Q2lUR2\":\"Currency\",\"DCKkhU\":\"Current Password\",\"uIElGP\":\"Custom Maps URL\",\"876pfE\":\"Customer\",\"QOg2Sf\":\"Customize the email and notification settings for this event\",\"Lu75d1\":\"Customize the email settings for this event\",\"RaxMyF\":\"Customize the event homepage and checkout experience\",\"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\",\"7p5kLi\":\"Dashboard\",\"mYGY3B\":\"Date\",\"JvUngl\":\"Date & Time\",\"RiXc4g\":\"Deactivate user\",\"cnGeoo\":\"Delete\",\"WHf154\":\"Delete code\",\"heJllm\":\"Delete Cover\",\"KWa0gi\":\"Delete Image\",\"IatsLx\":\"Delete question\",\"GnyEfA\":\"Delete ticket\",\"E33LRn\":\"Delete user\",\"Nu4oKW\":\"Description\",\"s9iD5d\":\"Description should be less than 50,000 characters\",\"URmyfc\":\"Details\",\"x8uDKb\":\"Disable code\",\"H6Ma8Z\":\"Discount\",\"ypJ62C\":\"Discount %\",\"3LtiBI\":[\"Discount in \",[\"0\"]],\"C8JLas\":\"Discount Type\",\"1QfxQT\":\"Dismiss\",\"cVq+ga\":\"Don't have an account? <0>Sign Up0>\",\"++S5i/\":\"Donation amount\",\"OO7MG7\":\"Donation Ticket\",\"0pEVi2\":\"Download Tickets PDF\",\"uABpqP\":\"Drag and drop or click\",\"3z2ium\":\"Drag to sort\",\"6skwyH\":\"Drop an image, or click here to replace the Cover Image\",\"S37RRV\":\"Drop an image, or click here to upload the Cover Image\",\"CfKofC\":\"Dropdown selection\",\"vi8Q/5\":\"Duplicate event\",\"7Cx5It\":\"Early bird\",\"ePK91l\":\"Edit\",\"N6j2JH\":[\"Edit \",[\"0\"]],\"kNGp1D\":\"Edit attendee\",\"t2bbp8\":\"Edit Attendee\",\"iFgaVN\":\"Edit Code\",\"jrBSO1\":\"Edit Organizer\",\"9BdS63\":\"Edit Promo Code\",\"O0CE67\":\"Edit question\",\"EzwCw7\":\"Edit Question\",\"d+nnyk\":\"Edit Ticket\",\"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\",\"WiKda6\":\"Email Configuration\",\"APuxIE\":\"Email confirmation resent\",\"YaCgdO\":\"Email confirmation resent successfully\",\"jyt+cx\":\"Email footer message\",\"I6F3cp\":\"Email not verified\",\"G5zNMX\":\"Email Settings\",\"NTZ/NX\":\"Embed Code\",\"4rnJq4\":\"Embed Script\",\"VFv2ZC\":\"End Date\",\"237hSL\":\"Ended\",\"MhVoma\":\"Enter an amount excluding taxes and fees.\",\"3Z223G\":\"Error confirming email address\",\"a6gga1\":\"Error confirming email change\",\"5/63nR\":\"EUR\",\"0pC/y6\":\"Event\",\"nuoP/j\":\"Event created successfully\",\"CFLUfD\":\"Event created successfully 🎉\",\"0Zptey\":\"Event Defaults\",\"Xe3XMd\":\"Event is not visible to the public\",\"4pKXJS\":\"Event is visible to the public\",\"ClwUUD\":\"Event location & venue details\",\"OopDbA\":\"Event page\",\"JyD0LH\":\"Event Settings\",\"4/If97\":\"Event status update failed. Please try again later\",\"btxLWj\":\"Event status updated\",\"tst44n\":\"Events\",\"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.\",\"9zSt4h\":\"Failed to export attendees. Please try again.\",\"2uGNuE\":\"Failed to export orders. Please try again.\",\"ZQ15eN\":\"Failed to resend ticket email\",\"PLUB/s\":\"Fee\",\"YirHq7\":\"Feedback\",\"/mfICu\":\"Fees\",\"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.\",\"QWa3Sk\":\"First Name, Last Name, and Email Address are default questions that are always included in the checkout process.\",\"TpqW74\":\"Fixed\",\"irpUxR\":\"Fixed amount\",\"TF9opW\":\"Flash is not available on this device\",\"UNMVei\":\"Forgot password?\",\"2POOFK\":\"Free\",\"/4rQr+\":\"Free Ticket\",\"01my8x\":\"Free ticket, no payment information required\",\"ejVYRQ\":\"From\",\"u6FPxT\":\"Get Tickets\",\"4GLxhy\":\"Getting Started\",\"4D3rRj\":\"Go back to profile\",\"cQPKZt\":\"Go to Dashboard\",\"9LCqFI\":\"Go to event homepage\",\"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.\",\"Ow9Hz5\":[\"Hi.Events Conference \",[\"0\"]],\"verBst\":\"Hi.Events Conference Center\",\"6eMEQO\":\"hi.events logo\",\"C4qOW8\":\"Hidden from public view\",\"k3dfFD\":\"Hidden questions are only visible to the event organizer and not to the customer.\",\"EeNE0j\":\"Hidden will not be shown to customers.\",\"vLyv1R\":\"Hide\",\"Mkkvfd\":\"Hide getting started page\",\"mFn5Xz\":\"Hide hidden questions\",\"SCimta\":\"Hide the getting started page from the sidebar\",\"Da29Y6\":\"Hide this question\",\"fsi6fC\":\"Hide this ticket from customers\",\"fvDQhr\":\"Hide this tier from users\",\"Fhzoa8\":\"Hide ticket after sale end date\",\"yhm3J/\":\"Hide ticket before sale start date\",\"k7/oGT\":\"Hide ticket unless user has applicable promo code\",\"L0ZOiu\":\"Hide ticket when sold out\",\"uno73L\":\"Hiding a ticket will prevent users from seeing it on the event page.\",\"tj6Gob\":\"Homepage & Checkout\",\"m07jN3\":\"Homepage & Checkout Settings\",\"ZOBwQn\":\"Homepage Design\",\"PRuBTd\":\"Homepage Designer\",\"YjVNGZ\":\"Homepage Preview\",\"c3E/kw\":\"Homer\",\"id+NIk\":\"How many minutes the customer has to complete their order\",\"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?\",\"fYyXCd\":\"https://example-maps-service.com/...\",\"uOXLV3\":\"I agree to the <0>terms and conditions0>\",\"sIxFk5\":\"I agree to the terms and conditions\",\"Crwwhn\":[\"If a new tab did not open, please <0>\",[\"0\"],\".0>\"],\"93DUnd\":[\"If a new tab did not open, please <0><1>\",[\"0\"],\"1>.0>\"],\"9gtsTP\":\"If blank, the address will be used to generate a Google map link\",\"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\",\"Gyl1h8\":\"Image dimensions must be at least 600px by 300px\",\"TiGacZ\":\"Image dimensions must be at least 900px by 450px\",\"UnTvkH\":\"Image dimensions must be between 3000px by 2000px. With a max height of 2000px and max width of 3000px\",\"uPEIvq\":\"Image must be less than 5MB\",\"AGZmwV\":\"Image uploaded successfully\",\"ibi52/\":\"Image width must be at least 900px and height at least 50px\",\"NoNwIX\":\"Inactive\",\"T0K0yl\":\"Inactive users cannot log in.\",\"OFAmKP\":\"Include connection details for your online event\",\"BfPBBG\":\"Include connection details for your online event. These details will be after successful registration.\",\"6+pAOx\":\"Include connection details for your online event. These details will be shown after successful registration.\",\"evpD4c\":\"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\",\"nbfdhU\":\"Integrations\",\"OyLdaz\":\"Invitation resent!\",\"HE6KcK\":\"Invitation revoked!\",\"SQKPvQ\":\"Invite User\",\"PgdQrx\":\"Issue refund\",\"KFXip/\":\"John\",\"XcgRvb\":\"Johnson\",\"1IWWYX\":[\"KittenTech Conference \",[\"0\"]],\"ZgJEMX\":\"KittenTech Conference Center\",\"87a/t/\":\"Label\",\"I3yitW\":\"Last login\",\"1ZaQUH\":\"Last name\",\"UXBCwc\":\"Last Name\",\"CKcupn\":\"Latest Orders\",\"tITjB1\":\"Learn more about Stripe\",\"c+gAXc\":\"Let's get started by creating your first event\",\"vR92Yn\":\"Let's get started by creating your first organizer\",\"QfrKvi\":\"Link color\",\"wJijgU\":\"Location\",\"sQia9P\":\"Log in\",\"zUDyah\":\"Logging in\",\"z0t9bb\":\"Login\",\"nOhz3x\":\"Logout\",\"F2jAFv\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nam placerat elementum...\",\"XkhEf9\":\"Lorem ipsum...\",\"MU3ijv\":\"Make this question mandatory\",\"wckWOP\":\"Manage\",\"8mmINh\":\"Manage billing information and view invoices\",\"jWIznR\":\"Manage default settings for new events\",\"n4SpU5\":\"Manage event\",\"wqyqaF\":\"Manage general account settings\",\"cQrNR3\":\"Manage Profile\",\"f92Qak\":\"Manage taxes and fees which can be applied to tickets\",\"PlTcVr\":\"Manage taxes and fees which can be applied to your tickets\",\"ophZVW\":\"Manage tickets\",\"Wsx7Iu\":\"Manage users and their permissions\",\"DdHfeW\":\"Manage your account details and default settings\",\"QHcjP+\":\"Manage your billing and payment details\",\"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\",\"lzcrX3\":\"Manually adding an attendee will adjust ticket quantity.\",\"g9dPPQ\":\"Maximum Per Order\",\"l5OcwO\":\"Message attendee\",\"Gv5AMu\":\"Message Attendees\",\"1jRD0v\":\"Message attendees with specific tickets\",\"Lvi+gV\":\"Message buyer\",\"tNZzFb\":\"Message Content\",\"lYDV/s\":\"Message individual attendees\",\"V7DYWd\":\"Message Sent\",\"t7TeQU\":\"Messages\",\"xFRMlO\":\"Minimum Per Order\",\"QYcUEf\":\"Minimum Price\",\"mYLhkl\":\"Miscellaneous Settings\",\"KYveV8\":\"Multi line text box\",\"SVuGaP\":\"Multiple price options, users can choose which to pay\",\"6wbTro\":\"Multiple price options. Perfect for early bird tickets etc.\",\"/bhMdO\":\"My amazing event description...\",\"vX8/tc\":\"My amazing event title...\",\"hKtWk2\":\"My Profile\",\"pRjx4L\":\"Nam placerat elementum...\",\"6YtxFj\":\"Name\",\"hVuv90\":\"Name should be less than 150 characters\",\"AIUkyF\":\"Navigate to Attendee\",\"qqeAJM\":\"Never\",\"7vhWI8\":\"New Password\",\"m920rF\":\"New York\",\"1UzENP\":\"No\",\"Wjz5KP\":\"No Attendees to show\",\"fFeCKc\":\"No Discount\",\"Z6ILSe\":\"No events for this organizer\",\"yAlJXG\":\"No events to show\",\"KPWxKD\":\"No messages to show\",\"J2LkP8\":\"No orders to show\",\"+Y976X\":\"No Promo Codes to show\",\"Ev2r9A\":\"No results\",\"RHyZUL\":\"No search results.\",\"cU1op4\":\"No Taxes or Fees have been added yet.\",\"RY2eP1\":\"No Taxes or Fees have been added.\",\"uR2eFu\":\"No tickets available\",\"b7JZFg\":\"No tickets to show\",\"EdQY6l\":\"None\",\"OJx3wK\":\"Not available\",\"x5+Lcz\":\"Not Checked In\",\"Scbrsn\":\"Not On Sale\",\"hFwWnI\":\"Notification Settings\",\"xXqEPO\":\"Notify buyer of refund\",\"YpN29s\":\"Notify organizer of new orders\",\"qeQhNj\":\"Now let's create your first event\",\"2NPDz1\":\"On sale\",\"Ldu/RI\":\"On Sale\",\"Ug4SfW\":\"Once you create an event, you'll see it here.\",\"+P/tII\":\"Once you're ready, set your event live and start selling tickets.\",\"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.\",\"OdnLE4\":\"Open sidebar\",\"ZZEYpT\":[\"Option \",[\"i\"]],\"0zpgxV\":\"Options\",\"BzEFor\":\"or\",\"UYUgdb\":\"Order\",\"mm+eaX\":\"Order #\",\"B3gPuX\":\"Order Cancelled\",\"SIbded\":\"Order Completed\",\"q/CcwE\":\"Order Date\",\"Tol4BF\":\"Order Details\",\"L4kzeZ\":[\"Order Details \",[\"0\"]],\"WbImlQ\":\"Order has been canceled and the order owner has been notified.\",\"VCOi7U\":\"Order questions\",\"wg9MPp\":\"Order questions are asked once per order. By default, people are asked for their first name, last name, and email address.\",\"+KNVxX\":\"Order questions are asked once per order. By default, we ask for the first name, last name, and email address.\",\"TPoYsF\":\"Order Reference\",\"GX6dZv\":\"Order Summary\",\"tDTq0D\":\"Order timeout\",\"1h+RBg\":\"Orders\",\"mz+c33\":\"Orders Created\",\"G5RhpL\":\"Organizer\",\"m/ebSk\":\"Organizer Details\",\"mYygCM\":\"Organizer is required\",\"Pa6G7v\":\"Organizer Name\",\"J2cXxX\":\"Organizers can only manage events and tickets. 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\",\"2w/FiJ\":\"Paid Ticket\",\"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\",\"iq5IUr\":\"Pause Ticket\",\"621rYf\":\"Payment\",\"JhtZAK\":\"Payment Failed\",\"xgav5v\":\"Payment succeeded!\",\"CcK+Ft\":\"PDF\",\"att1Hj\":\"percent\",\"/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\",\"q40YFl\":\"Please continue your order in the new tab\",\"ZJG4Di\":\"Please ensure you only send emails directly related to the order. Promotional emails\\nshould not be sent using this form.\",\"o+HaYe\":\"Please enter a valid promo code\",\"HnNept\":\"Please enter your new password\",\"5FSIzj\":\"Please Note\",\"MA04r/\":\"Please remove filters and set sorting to \\\"Homepage order\\\" to enable sorting\",\"pJLvdS\":\"Please select\",\"yygcoG\":\"Please select at least one ticket\",\"igBrCH\":\"Please verify your email address to access all features\",\"qCJyMx\":\"Post Checkout message\",\"g2UNkE\":\"Powered by\",\"Qs7yI0\":\"Powered By\",\"lqAWKB\":\"Powered by <0>Hi.Events0> 👋\",\"3n47kV\":\"Powered By Hi.Events\",\"ddi4j4\":\"Powered by Stripe\",\"Rs7IQv\":\"Pre Checkout message\",\"rdUucN\":\"Preview\",\"a7u1N9\":\"Price\",\"CmoB9j\":\"Price display mode\",\"Q8PWaJ\":\"Price tiers\",\"a5jvSX\":\"Price Tiers\",\"6RmHKN\":\"Primary Color\",\"G/ZwV1\":\"Primary Colour\",\"8cBtvm\":\"Primary Text Color\",\"BZz12Q\":\"Print\",\"MT7dxz\":\"Print All Tickets\",\"vERlcd\":\"Profile\",\"kUlL8W\":\"Profile updated successfully\",\"cl5WYc\":[\"Promo \",[\"promo_code\"],\" code applied\"],\"ZXpm3a\":[\"Promo \",[\"promoCode\"],\" code applied\"],\"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.\",\"812gwg\":\"Purchase License\",\"LkMOWF\":\"Quantity Available\",\"XKJuAX\":\"Question deleted\",\"oQvMPn\":\"Question Title\",\"enzGAL\":\"Questions\",\"K885Eq\":\"Questions sorted successfully\",\"OMJ035\":\"Radio Option\",\"C4TjpG\":\"Read less\",\"I3QpvQ\":\"Recipient\",\"N2C89m\":\"Reference\",\"gxFu7d\":[\"Refund amount (\",[\"0\"],\")\"],\"n10yGu\":\"Refund order\",\"zPH6gp\":\"Refund Order\",\"/BI0y9\":\"Refunded\",\"fgLNSM\":\"Register\",\"tasfos\":\"remove\",\"t/YqKh\":\"Remove\",\"RloWNu\":\"Reply to email\",\"EGm34e\":\"Resend confirmation email\",\"lnrkNz\":\"Resend email confirmation\",\"wIa8Qe\":\"Resend invitation\",\"VeKsnD\":\"Resend order email\",\"dFuEhO\":\"Resend ticket email\",\"o6+Y6d\":\"Resending...\",\"RfwZxd\":\"Reset password\",\"KbS2K9\":\"Reset Password\",\"vtc20Z\":\"Return to event page\",\"8YBH95\":\"Revenue\",\"PO/sOY\":\"Revoke invitation\",\"GDvlUT\":\"Role\",\"ELa4O9\":\"Sale End Date\",\"5uo5eP\":\"Sale ended\",\"Qm5XkZ\":\"Sale Start Date\",\"hVF4dJ\":\"Sale starts\",\"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\",\"lBAlVv\":\"Seach by name, order #, attendee # or email...\",\"W4kWXJ\":\"Search by attendee name, email or order #...\",\"ulAuWO\":\"Search by event name or description...\",\"+pr/FY\":\"Search by event name...\",\"NQSiYb\":\"Search by name or description...\",\"3zRbWw\":\"Search by name, email, or order #...\",\"BiYOdA\":\"Search by name...\",\"B1bB1j\":\"Search by order #, name or email...\",\"jA4hXE\":\"Search by subject or body...\",\"YEjitp\":\"Search by subject or content...\",\"HYnGee\":\"Search by ticket name...\",\"YIix5Y\":\"Search...\",\"OeW+DS\":\"Secondary color\",\"DnXcDK\":\"Secondary Color\",\"cZF6em\":\"Secondary text color\",\"ZIgYeg\":\"Secondary Text Color\",\"QuNKRX\":\"Select Camera\",\"kWI/37\":\"Select organizer\",\"hAjDQy\":\"Select status\",\"QYARw/\":\"Select Ticket\",\"XH5juP\":\"Select Ticket Tier\",\"nuWxSr\":\"Select Tickets\",\"O/7I0o\":\"Select...\",\"JlFcis\":\"Send\",\"qKWv5N\":[\"Send a copy to <0>\",[\"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.\",\"471O/e\":\"Send confirmation email\",\"D7ZemV\":\"Send order confirmation and ticket email\",\"v1rRtW\":\"Send Test\",\"j1VfcT\":\"SEO Description\",\"/SIY6o\":\"SEO Keywords\",\"GfWoKv\":\"SEO Settings\",\"rXngLf\":\"SEO Title\",\"/jZOZa\":\"Service Fee\",\"vu4F0h\":\"Set a minimum price and let users donate more\",\"nYNT+5\":\"Set up your event\",\"A8iqfq\":\"Set your event live\",\"Tz0i8g\":\"Settings\",\"Z8lGw6\":\"Share\",\"FFbYHm\":[\"Should this \",[\"type\"],\" be applied to all new tickets?\"],\"8vETh9\":\"Show\",\"smd87r\":\"Show available ticket quantity\",\"qDsmzu\":\"Show hidden questions\",\"fMPkxb\":\"Show more\",\"izwOOD\":\"Show tax and fees separately\",\"j3b+OW\":\"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.\",\"DvCwYF\":\"Sorry, this promo code is invalid'\",\"6a/UJE\":\"Sorry, this promo code is not recognized\",\"9rRZZ+\":\"Sorry, your order has expired. Please start a new order.\",\"a4SyEE\":\"Sorting is disabled while filters and sorting are applied\",\"4nG1lG\":\"Standard ticket with a fixed price\",\"D3iCkb\":\"Start Date\",\"RS0o7b\":\"State\",\"/2by1f\":\"State or Region\",\"uAQUqI\":\"Status\",\"UJmAAK\":\"Subject\",\"X2rrlw\":\"Subtotal\",\"b0HJ45\":[\"Success! \",[\"0\"],\" will receive an email shortly.\"],\"BJIEiF\":[\"Successfully \",[\"0\"],\" attendee\"],\"Ih8kN0\":[\"Successfully $\",[\"0\"],\" attendee\"],\"xHl17l\":[\"Successfully checked <0>\",[\"0\"],\" \",[\"1\"],\"0> \",[\"2\"]],\"OtgNFx\":\"Successfully confirmed email address\",\"IKwyaF\":\"Successfully confirmed email change\",\"zLmvhE\":\"Successfully created attendee\",\"9mZEgt\":\"Successfully Created Promo Code\",\"aIA9C4\":\"Successfully Created Question\",\"onFQYs\":\"Successfully Created Ticket\",\"Hgj/mB\":\"Successfully deleted ticket\",\"J3RJSZ\":\"Successfully updated attendee\",\"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\",\"70dYC8\":\"Successfully Updated Promo Code\",\"F+pJnL\":\"Successfully Updated Seo Settings\",\"g2lRrH\":\"Successfully updated ticket\",\"DXZRk5\":\"Suite 100\",\"GNcfRk\":\"Support Email\",\"JpohL9\":\"Tax\",\"geUFpZ\":\"Tax & Fees\",\"0RXCDo\":\"Tax or Fee deleted successfully\",\"ZowkxF\":\"Taxes\",\"EEZnW+\":\"Taxes & Fees\",\"qu6/03\":\"Taxes and Fees\",\"gVjSFp\":\"Taxes and Fees can be associated with tickets and will be added to the ticket price.\",\"e0ZSh4\":\"Text Colour\",\"gypigA\":\"That promo code is invalid\",\"0ozSQu\":\"The background color for the event homepage\",\"LbHWgW\":\"The background color for the ticket widget on the event homepage\",\"75Xclv\":\"The basic details of your event\",\"UNqHnV\":\"The color of the buttons on the event homepage\",\"0amhbL\":\"The color of the links on the event homepage\",\"QXlz+n\":\"The default currency for your events.\",\"mnafgQ\":\"The default timezone for your events.\",\"NlfnUd\":\"The link you clicked is invalid.\",\"FqjKfd\":\"The location of your event\",\"FeAfXO\":[\"The maximum numbers number of tickets for Generals is \",[\"0\"]],\"POEqXB\":\"The organizer details of your event\",\"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.\",\"TJZByZ\":\"The tax and fee to apply to this ticket. You can create new taxes and fees on the\",\"OJYwh9\":\"The taxes and fees to apply to this ticket. You can create new taxes and fees on the\",\"6BpBfZ\":\"The text color for the event homepage\",\"rljHp7\":\"The text color for the ticket widget on the event homepage\",\"s4di40\":\"The text to display in the 'Continue' button. Defaults to 'Continue'\",\"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\",\"wgAiDb\":\"The user must login to change their email.\",\"jvxN9/\":\"There are no tickets available for this event\",\"rMcHYt\":\"There is a refund pending. Please wait for it to complete before requesting another refund.\",\"hjLUr+\":\"There was an error loading this content. Please refresh the page and try again.\",\"68Axnm\":\"There was an error processing your request. Please try again.\",\"mVKOW6\":\"There was an error sending your message\",\"Um/adz\":\"These allow multiple selections\",\"vWeHWp\":\"These colors are not saved in our system.\",\"7qzHGS\":\"These colors are not saved in our system. They are only used to generate the widget.\",\"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.\",\"CNk/ro\":\"This is an online event\",\"GabtCa\":\"This is the email address that will be used as the reply-to address for all emails sent from this event\",\"CKkb5E\":\"This message is how below the\",\"cHO4ec\":\"This message will be included in the footer of all emails sent from this event\",\"RjwlZt\":\"This order has already been paid.\",\"axERYu\":\"This order has already been paid. <0>View order details0>\",\"wY+HO9\":\"This order has already been processed.\",\"5K8REg\":\"This order has already been refunded.\",\"OiQMhP\":\"This order has been cancelled\",\"YyEJij\":\"This order has been cancelled.\",\"D44cEI\":\"This order has been completed.\",\"HILpDX\":\"This order is awaiting payment\",\"0vRWbB\":\"This order is awaiting payment.\",\"BdYtn9\":\"This order is complete\",\"e3uMJH\":\"This order is complete.\",\"YNKXOK\":\"This order is processing.\",\"LIjb4v\":\"This order is processing. TODO - a nice image and poll the API\",\"yPZN4i\":\"This order page is no longer available.\",\"5189cf\":\"This overrides all visibility settings and will hide the ticket from all customers.\",\"4vwjho\":\"This page has expired. <0>View order details0>\",\"Qt7RBu\":\"This question is only visible to the event organizer\",\"os29v1\":\"This reset password link is invalid or expired.\",\"WJqBqd\":\"This ticket cannot be deleted because it is\\nassociated with an order. You can hide it instead.\",\"ma6qdu\":\"This ticket is hidden from public view\",\"xJ8nzj\":\"This ticket is hidden unless targeted by a Promo Code\",\"IV9xTT\":\"This user is not active, as they have not accepted their invitation.\",\"5AnPaO\":\"ticket\",\"kjAL4v\":\"Ticket\",\"KosivG\":\"Ticket deleted successfully\",\"dtGC3q\":\"Ticket email has been resent to attendee\",\"USk+Mn\":\"Ticket page message\",\"mRM6XH\":\"Ticket Sales\",\"NirIiz\":\"Ticket Tier\",\"8jLPgH\":\"Ticket Type\",\"jqWDf9\":\"Ticket widget background color\",\"UrMVAz\":\"Ticket Widget Preview\",\"ngtDy7\":\"Ticket widget text color\",\"N+YYpo\":\"Ticket(s)\",\"6GQNLE\":\"Tickets\",\"54q0zp\":\"Tickets for\",\"i+idBz\":\"Tickets sold\",\"AGRilS\":\"Tickets Sold\",\"56Qw2C\":\"Tickets sorted successfully\",\"4f8A8M\":\"Tickets to which the promo code applies (Applies to all by default)\",\"xN9AhL\":[\"Tier \",[\"0\"]],\"oYaHuq\":\"Tiered Ticket\",\"XZrhpz\":\"Tiered Ticket - Coming Soon\",\"4M150e\":\"Tiered tickets allow you to offer multiple price options for the same ticket.\\nThis is perfect for early bird tickets, or offering different price\\noptions for different groups of people.\",\"jQoYTX\":\"Tiered tickets allow you to offer multiple price options for the same ticket. This is perfect for early bird tickets or offering different price options for different groups of people.\",\"s/0RpH\":\"Times used\",\"40Gx0U\":\"Timezone\",\"oDGm7V\":\"TIP\",\"MHrjPM\":\"Title\",\"xdA/+p\":\"Tools\",\"72c5Qo\":\"Total\",\"BxsfMK\":\"Total Fees\",\"mpB/d9\":\"Total order amount\",\"m3FM1g\":\"Total refunded\",\"GBBIy+\":\"Total remaining\",\"/SgoNA\":\"Total Tax\",\"+zy2Nq\":\"Type\",\"mLGbAS\":[\"Unable to \",[\"0\"],\" attendee\"],\"/cSMqv\":\"Unable to create question. Please check the your details\",\"nNdxt9\":\"Unable to create ticket. Please check the your details\",\"MH/lj8\":\"Unable to update question. Please check the your details\",\"Mqy/Zy\":\"United States\",\"NIuIk1\":\"Unlimited\",\"oMcLhS\":\"Unlimited ticket quantity available\",\"E0q9qH\":\"Unlimited usages allowed\",\"ia8YsC\":\"Upcoming\",\"L/gNNk\":[\"Update \",[\"0\"]],\"+qqX74\":\"Update event name, description and dates\",\"vXPSuB\":\"Update profile\",\"gsehpV\":\"Upload an image to be displayed on the event page\",\"BNBfrU\":\"Upload Cover\",\"e5lF64\":\"Usage Example\",\"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 Settings0>\",\"vgwVkd\":\"UTC\",\"khBZkl\":\"VAT\",\"E/9LUk\":\"Venue Name\",\"AM+zF3\":\"View attendee\",\"e4mhwd\":\"View event homepage\",\"/5PEQz\":\"View event page\",\"fFornT\":\"View full message\",\"YIsEhQ\":\"View map\",\"Ep3VfY\":\"View on Google Maps\",\"AMkkeL\":\"View order\",\"Y8s4f6\":\"View order details\",\"tF+VVr\":\"VIP Ticket\",\"2q/Q7x\":\"Visibility\",\"vmOFL/\":\"We could not process your payment. Please try again or contact support.\",\"1E0vyy\":\"We couldn't load the data. Please try again.\",\"VGioT0\":\"We recommend dimensions of 2160px by 1080px, 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\"],\" 👋\"],\"wjqPqF\":\"What are Tiered Tickets?\",\"5iXvHA\":\"What is a Tiered Ticketing?\",\"MhhnvW\":\"What tickets does this code apply to? (Applies to all by default)\",\"dCil3h\":\"What tickets should this question be apply to?\",\"Rb0XUE\":\"What time will you be arriving?\",\"5N4wLD\":\"What type of question is this?\",\"S+OdxP\":\"Who is organizing this event?\",\"LINr2M\":\"Who is this message to?\",\"nWhye/\":\"Who should be asked this question?\",\"vVGiM4\":\"Who type of question is this?\",\"onLsWS\":\"Whoops! something went wrong. Please try again or contact support if the problem persists.\",\"AHXN2z\":\"Widget\",\"AU/8QR\":\"Widget Configuration\",\"VxFvXQ\":\"Widget Embed\",\"v1P7Gm\":\"Widget Settings\",\"b4itZn\":\"Working\",\"hqmXmc\":\"Working...\",\"l75CjT\":\"Yes\",\"QcwyCh\":\"Yes, remove them\",\"P+Sty0\":[\"You are changing your email to <0>\",[\"0\"],\"0>.\"],\"4ysd6z\":\"You can connecting using this Zoom link...\",\"9HGdDw\":\"You can create a promo code which targets this ticket on the\",\"KRhIxT\":\"You can now start receiving payments through Stripe.\",\"UqVaVO\":\"You cannot change the ticket type as there are attendees associated with this ticket.\",\"zQ8idk\":\"You cannot change the ticket type because there are already tickets sold for this ticket.\",\"3vRX5A\":\"You cannot delete this price tier because there are already tickets sold for this tier. You can hide it instead.\",\"RCC09s\":\"You cannot edit a default question\",\"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.\",\"XoeazJ\":\"You have no attendee questions. Attendee questions are asked once per attendee.\",\"CoZHDB\":\"You have no order questions.\",\"FZKDIe\":\"You have no order questions. Order questions are asked once per order.\",\"15qAvl\":\"You have no pending email change.\",\"n81Qk8\":\"You have not completed your Stripe Connect setup\",\"jxsiqJ\":\"You have not connected your Stripe account\",\"183zcL\":\"You have taxes and fees added to a Free Ticket. Would you like to remove or obscure them?\",\"2v5MI1\":\"You haven't sent any messages yet. You can send messages to all attendees, or to specific ticket 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\",\"LRguuL\":\"You must have at least one tier\",\"8/eLoa\":\"You need to verify your account before you can send messages.\",\"WHXRMI\":\"You'll need at least one ticket to get started. Free, paid or let the user decide what to pay.\",\"bdg03s\":\"Your account email in outgoing emails.\",\"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\"],\"0> is pending. Please check your email to confirm\"],\"yZfBoy\":\"Your message has been sent\",\"la26JS\":\"Your order is in progress\",\"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.\",\"cJ4Y4R\":\"Your refund is processing.\",\"IFHV2p\":\"Your ticket for\",\"3k7HDY\":\"Zip\",\"BM/KQm\":\"Zip or Postal Code\",\"VftCuk\":\"Zoom link, Google Meet link, etc.\",\"ySU+JY\":\"your@email.com\"}")};
\ No newline at end of file
+/*eslint-disable*/module.exports={messages:JSON.parse("{\"1bpx9A\":\"...\",\"f8qS7T\":\"'There\\\\'s nothing to show yet'\",\"4zldrf\":[[\"0\",\"plural\",{\"one\":[\"#\",\" hidden question\"],\"other\":[\"#\",\" hidden questions\"]}]],\"J/hVSQ\":[[\"0\"]],\"KMgp2+\":[[\"0\"],\" available\"],\"tmew5X\":[[\"0\"],\" checked in\"],\"Pmr5xp\":[[\"0\"],\" created successfully\"],\"FImCSc\":[[\"0\"],\" updated successfully\"],\"KOr9b4\":[[\"0\"],\"'s Events\"],\"qSiUsc\":[[\"0\"],[\"1\"]],\"wapGcj\":[[\"message\"]],\"fyE7Au\":[[\"minutes\"],\" minutes and \",[\"seconds\"],\" seconds\"],\"NlQ0cx\":[[\"organizerName\"],\"'s first event\"],\"OXku3b\":\"<0>https://0>your-website.com\",\"E15xs8\":\"⚡️ Set up your event\",\"FL6OwU\":\"✉️ Confirm your email address\",\"y1NShf\":\"🎉 Congratulation on creating an event!\",\"BN0OQd\":\"🎉 Congratulations on creating an event!\",\"fAv9QG\":\"🎟️ Add tickets\",\"4WT5tD\":\"🎨 Customize your event page\",\"3VPPdS\":\"💳 Connect with Stripe\",\"s4Tgn6\":\"📢 Promote your event\",\"cjdktw\":\"🚀 Set your event live\",\"rmelwV\":\"0 minutes and 0 seconds\",\"UQ7pBY\":\"0.50 for $0.50\",\"i1+xzD\":\"1.75 for 1.75%\",\"i0puaE\":\"10.00\",\"W9+fkZ\":\"10001\",\"qdfdgM\":\"123 Main Street\",\"IoRZzD\":\"20\",\"+H1RMb\":\"2024-01-01 10:00\",\"Q/T49U\":\"2024-01-01 18:00\",\"hMT8+2\":\"94103\",\"d9El7Q\":[\"A default \",[\"type\"],\" is automaticaly applied to all new tickets. You can override this on a per ticket basis.\"],\"SMUbbQ\":\"A Dropdown input allows only one selection\",\"qv4bfj\":\"A fee, like a booking fee or a service fee\",\"Pgaiuj\":\"A fixed amount per ticket. E.g, $0.50 per ticket\",\"f4vJgj\":\"A multi line text input\",\"ySO/4f\":\"A percentage of the ticket price. E.g., 3.5% of the ticket price\",\"WXeXGB\":\"A promo code with no discount can be used to reveal hidden tickets.\",\"GMhWB5\":\"A Radio option allows has multiple options but only one can be selected.\",\"CBt3s7\":\"A Radio Option allows only one selection\",\"AG/qmQ\":\"A Radio option has multiple options but only one can be selected.\",\"7g61G9\":\"A short description of Awesome Events Ltd.\",\"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\",\"zCk10D\":\"A single question per attendee. E.g, What is your preferred meal?\",\"ap3v36\":\"A single question per order. E.g, What is your company name?\",\"RlJmQg\":\"A standard tax, like VAT or GST\",\"pDwHGk\":\"About hi.events\",\"uIKNjo\":\"About the event\",\"bfXQ+N\":\"Accept Invitation\",\"iwyhk4\":\"Access to the VIP area...\",\"AeXO77\":\"Account\",\"0b79Xf\":\"Account Email\",\"lkNdiH\":\"Account Name\",\"Puv7+X\":\"Account Settings\",\"OmylXO\":\"Account updated successfully\",\"7L01XJ\":\"Actions\",\"FQBaXG\":\"Activate\",\"F6pfE9\":\"Active\",\"m16xKo\":\"Add\",\"LKNynS\":\"Add a cover image, description, and more to make your event stand out.\",\"gMK0ps\":\"Add event details and and manage event settings.\",\"Fb+SDI\":\"Add More tickets\",\"ApsD9J\":\"Add New\",\"TZxnm8\":\"Add Option\",\"Cw27zP\":\"Add question\",\"yWiPh+\":\"Add Tax or Fee\",\"BGD9Yt\":\"Add tickets\",\"goOKRY\":\"Add tier\",\"p59pEv\":\"Additional Details\",\"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.\",\"CPXP5Z\":\"Affiliates\",\"W7AfhC\":\"All attendees of this event\",\"QsYjci\":\"All Events\",\"/twVAS\":\"All Tickets\",\"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..\",\"8wYDMp\":\"Already have an account?\",\"ApOYO8\":\"Amazing, Event, Keywords...\",\"hehnjM\":\"Amount\",\"TRYjHa\":[\"amount in \",[\"0\"]],\"R2O9Rg\":[\"Amount paid (\",[\"0\"],\")\"],\"tLjOgo\":[\"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\",\"er3d/4\":\"An error occurred while sorting the tickets. Please try again or refresh the page\",\"hhvESd\":\"An event is the actual event you are hosting\",\"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.\",\"j4DliD\":\"Any queries from ticket 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\",\"DB8zMK\":\"Apply\",\"GctSSm\":\"Apply Promo Code\",\"jcnZEw\":[\"Apply this \",[\"type\"],\" to all new tickets\"],\"q7TRd7\":\"Are you sure you want to activate this attendee?\",\"/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\",\"2xEpch\":\"Ask once per attendee\",\"LBLOqH\":\"Ask once per order\",\"ss9PbX\":\"Attendee\",\"m0CFV2\":\"Attendee Details\",\"lXcSD2\":\"Attendee questions\",\"VvYqMB\":\"Attendee questions are asked once per attendee. By default, people are asked for their first name, last name, and email address.\",\"spxPEv\":\"Attendee questions are asked once per attendee. By default, we ask for the attendee's first name, last name, and email address.\",\"9SZT4E\":\"Attendees\",\"5UbY+B\":\"Attendees with a specific ticket\",\"IMJ6rh\":\"Auto Resize\",\"vZ5qKF\":\"Automatically resize the widget height based on the content. When disabled, the widget will fill the height of the container.\",\"lXkUEV\":\"Availability\",\"ioG+xt\":\"Awaiting Payment\",\"3PmQfI\":\"Awesome Event\",\"kNmmvE\":\"Awesome Events Ltd.\",\"Yrbm6T\":\"Awesome Organizer Ltd.\",\"9002sI\":\"Back to all events\",\"0TGkYM\":\"Back to event homepage\",\"A302fe\":\"Back to event page\",\"VCoEm+\":\"Back to login\",\"MLZyiY\":\"Background color\",\"k1bLf+\":\"Background Color\",\"I7xjqg\":\"Background Type\",\"EOUool\":\"Basic Details\",\"7EGQKA\":\"Because you are the account owner, you cannot change your role or status.\",\"1mwMl+\":\"Before you send!\",\"wVfiR2\":\"Before you're event can go live, there's a few thing to do.\",\"/yeZ20\":\"Before your event can go live, there are a few things you need to do.\",\"1xAcxY\":\"Begin selling tickets in minutes\",\"R+w/Va\":\"Billing\",\"Ptp9MF\":\"Button color\",\"whqocw\":\"By registering you agree to our <0>Terms of Service0> and <1>Privacy Policy1>.\",\"bcCn6r\":\"Calculation Type\",\"+8bmSu\":\"California\",\"iStTQt\":\"Camera permission was denied. <0>Request Permission0> again, or if this doesn't work, you will need to <1>grant this page1> access to your camera in your browser settings.\",\"Jzn1qy\":\"Can't load events\",\"dEgA5A\":\"Cancel\",\"Gjt/py\":\"Cancel email change\",\"tVJk4q\":\"Cancel order\",\"Os6n2a\":\"Cancel Order\",\"Mz7Ygx\":[\"Cancel Order \",[\"0\"]],\"Ud7zwq\":\"Canceling will cancel all tickets associated with this order, and release the tickets back into the available pool.\",\"vv7kpg\":\"Cancelled\",\"77/YgG\":\"Change Cover\",\"GptGxg\":\"Change password\",\"QndF4b\":\"check in\",\"xMDm+I\":\"Check In\",\"9FVFym\":\"check out\",\"gXcPxc\":\"Check-in\",\"Y3FYXy\":\"Check-In\",\"CNafaC\":\"Checkbox options allow multiple selections\",\"SpabVf\":\"Checkboxes\",\"CRu4lK\":\"Checked In\",\"/ydvvl\":\"Checkout Messaging\",\"1WnhCL\":\"Checkout Settings\",\"JjkX4+\":\"Choose a color for your background\",\"/Jizh9\":\"Choose an account\",\"jJGoVv\":\"Choose what notifications you want to receive\",\"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\",\"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\",\"DwF9eH\":\"Component Code\",\"7VpPHA\":\"Confirm\",\"ZaEJZM\":\"Confirm Email Change\",\"yjkELF\":\"Confirm New Password\",\"xnWESi\":\"Confirm password\",\"p2/GCq\":\"Confirm Password\",\"wnDgGj\":\"Confirming email address...\",\"DnLC08\":\"Congratulation on creating an event!\",\"pbAk7a\":\"Connect Stripe\",\"UMGQOh\":\"Connect with Stripe\",\"QKLP1W\":\"Connect your Stripe account to start receiving payments.\",\"5lcVkL\":\"Connection Details\",\"i3p844\":\"Contact email\",\"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\",\"RGVUUI\":\"Continue To Payment\",\"6V3Ea3\":\"Copied\",\"T5rdis\":\"copied to clipboard\",\"he3ygx\":\"Copy\",\"8+cOrS\":\"Copy details to all attendees\",\"ENCIQz\":\"Copy Link\",\"E6nRW7\":\"Copy URL\",\"JNCzPW\":\"Country\",\"IF7RiR\":\"Cover\",\"P0rbCt\":\"Cover Image\",\"hYgDIe\":\"Create\",\"b9XOHo\":[\"Create \",[\"0\"]],\"6kdXbW\":\"Create a Promo Code\",\"n5pRtF\":\"Create a Ticket\",\"X6sRve\":[\"Create an account or <0>\",[\"0\"],\"0> to get started\"],\"nx+rqg\":\"create an organizer\",\"ipP6Ue\":\"Create Attendee\",\"uN355O\":\"Create Event\",\"BOqY23\":\"Create new\",\"kpJAeS\":\"Create Organizer\",\"sYpiZP\":\"Create Promo Code\",\"a6YrKg\":\"Create promo codes\",\"n6H6AO\":\"Create promo codes to offer discounts to your attendees.\",\"B3Mkdt\":\"Create Question\",\"UKfi21\":\"Create Tax or Fee\",\"Tg323g\":\"Create Ticket\",\"agZ87r\":\"Create tickets for your event, set prices, and manage available quantity.\",\"d+F6q9\":\"Created\",\"Q2lUR2\":\"Currency\",\"DCKkhU\":\"Current Password\",\"uIElGP\":\"Custom Maps URL\",\"876pfE\":\"Customer\",\"QOg2Sf\":\"Customize the email and notification settings for this event\",\"Lu75d1\":\"Customize the email settings for this event\",\"RaxMyF\":\"Customize the event homepage and checkout experience\",\"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\",\"7p5kLi\":\"Dashboard\",\"mYGY3B\":\"Date\",\"JvUngl\":\"Date & Time\",\"RiXc4g\":\"Deactivate user\",\"cnGeoo\":\"Delete\",\"WHf154\":\"Delete code\",\"heJllm\":\"Delete Cover\",\"KWa0gi\":\"Delete Image\",\"IatsLx\":\"Delete question\",\"GnyEfA\":\"Delete ticket\",\"E33LRn\":\"Delete user\",\"Nu4oKW\":\"Description\",\"s9iD5d\":\"Description should be less than 50,000 characters\",\"URmyfc\":\"Details\",\"x8uDKb\":\"Disable code\",\"H6Ma8Z\":\"Discount\",\"ypJ62C\":\"Discount %\",\"3LtiBI\":[\"Discount in \",[\"0\"]],\"C8JLas\":\"Discount Type\",\"1QfxQT\":\"Dismiss\",\"cVq+ga\":\"Don't have an account? <0>Sign Up0>\",\"4+aC/x\":\"Donation / Pay what you'd like ticket\",\"++S5i/\":\"Donation amount\",\"OO7MG7\":\"Donation Ticket\",\"0pEVi2\":\"Download Tickets PDF\",\"uABpqP\":\"Drag and drop or click\",\"3z2ium\":\"Drag to sort\",\"6skwyH\":\"Drop an image, or click here to replace the Cover Image\",\"S37RRV\":\"Drop an image, or click here to upload the Cover Image\",\"CfKofC\":\"Dropdown selection\",\"vi8Q/5\":\"Duplicate event\",\"7Cx5It\":\"Early bird\",\"ePK91l\":\"Edit\",\"N6j2JH\":[\"Edit \",[\"0\"]],\"kNGp1D\":\"Edit attendee\",\"t2bbp8\":\"Edit Attendee\",\"iFgaVN\":\"Edit Code\",\"jrBSO1\":\"Edit Organizer\",\"9BdS63\":\"Edit Promo Code\",\"O0CE67\":\"Edit question\",\"EzwCw7\":\"Edit Question\",\"d+nnyk\":\"Edit Ticket\",\"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\",\"WiKda6\":\"Email Configuration\",\"APuxIE\":\"Email confirmation resent\",\"YaCgdO\":\"Email confirmation resent successfully\",\"jyt+cx\":\"Email footer message\",\"I6F3cp\":\"Email not verified\",\"G5zNMX\":\"Email Settings\",\"NTZ/NX\":\"Embed Code\",\"4rnJq4\":\"Embed Script\",\"VFv2ZC\":\"End Date\",\"237hSL\":\"Ended\",\"MhVoma\":\"Enter an amount excluding taxes and fees.\",\"3Z223G\":\"Error confirming email address\",\"a6gga1\":\"Error confirming email change\",\"5/63nR\":\"EUR\",\"0pC/y6\":\"Event\",\"nuoP/j\":\"Event created successfully\",\"CFLUfD\":\"Event created successfully 🎉\",\"0Zptey\":\"Event Defaults\",\"Xe3XMd\":\"Event is not visible to the public\",\"4pKXJS\":\"Event is visible to the public\",\"ClwUUD\":\"Event location & venue details\",\"OopDbA\":\"Event page\",\"JyD0LH\":\"Event Settings\",\"4/If97\":\"Event status update failed. Please try again later\",\"btxLWj\":\"Event status updated\",\"tst44n\":\"Events\",\"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.\",\"9zSt4h\":\"Failed to export attendees. Please try again.\",\"2uGNuE\":\"Failed to export orders. Please try again.\",\"ZQ15eN\":\"Failed to resend ticket email\",\"PLUB/s\":\"Fee\",\"YirHq7\":\"Feedback\",\"/mfICu\":\"Fees\",\"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.\",\"QWa3Sk\":\"First Name, Last Name, and Email Address are default questions that are always included in the checkout process.\",\"TpqW74\":\"Fixed\",\"irpUxR\":\"Fixed amount\",\"TF9opW\":\"Flash is not available on this device\",\"UNMVei\":\"Forgot password?\",\"2POOFK\":\"Free\",\"/4rQr+\":\"Free Ticket\",\"01my8x\":\"Free ticket, no payment information required\",\"ejVYRQ\":\"From\",\"u6FPxT\":\"Get Tickets\",\"4GLxhy\":\"Getting Started\",\"4D3rRj\":\"Go back to profile\",\"cQPKZt\":\"Go to Dashboard\",\"9LCqFI\":\"Go to event homepage\",\"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.\",\"Ow9Hz5\":[\"Hi.Events Conference \",[\"0\"]],\"verBst\":\"Hi.Events Conference Center\",\"6eMEQO\":\"hi.events logo\",\"C4qOW8\":\"Hidden from public view\",\"k3dfFD\":\"Hidden questions are only visible to the event organizer and not to the customer.\",\"EeNE0j\":\"Hidden will not be shown to customers.\",\"vLyv1R\":\"Hide\",\"Mkkvfd\":\"Hide getting started page\",\"mFn5Xz\":\"Hide hidden questions\",\"SCimta\":\"Hide the getting started page from the sidebar\",\"Da29Y6\":\"Hide this question\",\"fsi6fC\":\"Hide this ticket from customers\",\"fvDQhr\":\"Hide this tier from users\",\"Fhzoa8\":\"Hide ticket after sale end date\",\"yhm3J/\":\"Hide ticket before sale start date\",\"k7/oGT\":\"Hide ticket unless user has applicable promo code\",\"L0ZOiu\":\"Hide ticket when sold out\",\"uno73L\":\"Hiding a ticket will prevent users from seeing it on the event page.\",\"tj6Gob\":\"Homepage & Checkout\",\"m07jN3\":\"Homepage & Checkout Settings\",\"ZOBwQn\":\"Homepage Design\",\"PRuBTd\":\"Homepage Designer\",\"YjVNGZ\":\"Homepage Preview\",\"c3E/kw\":\"Homer\",\"id+NIk\":\"How many minutes the customer has to complete their order\",\"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?\",\"fYyXCd\":\"https://example-maps-service.com/...\",\"uOXLV3\":\"I agree to the <0>terms and conditions0>\",\"sIxFk5\":\"I agree to the terms and conditions\",\"Crwwhn\":[\"If a new tab did not open, please <0>\",[\"0\"],\".0>\"],\"93DUnd\":[\"If a new tab did not open, please <0><1>\",[\"0\"],\"1>.0>\"],\"9gtsTP\":\"If blank, the address will be used to generate a Google map link\",\"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\",\"Gyl1h8\":\"Image dimensions must be at least 600px by 300px\",\"TiGacZ\":\"Image dimensions must be at least 900px by 450px\",\"UnTvkH\":\"Image dimensions must be between 3000px by 2000px. With a max height of 2000px and max width of 3000px\",\"uPEIvq\":\"Image must be less than 5MB\",\"AGZmwV\":\"Image uploaded successfully\",\"ibi52/\":\"Image width must be at least 900px and height at least 50px\",\"NoNwIX\":\"Inactive\",\"T0K0yl\":\"Inactive users cannot log in.\",\"OFAmKP\":\"Include connection details for your online event\",\"BfPBBG\":\"Include connection details for your online event. These details will be after successful registration.\",\"6+pAOx\":\"Include connection details for your online event. These details will be shown after successful registration.\",\"evpD4c\":\"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\",\"nbfdhU\":\"Integrations\",\"OyLdaz\":\"Invitation resent!\",\"HE6KcK\":\"Invitation revoked!\",\"SQKPvQ\":\"Invite User\",\"PgdQrx\":\"Issue refund\",\"KFXip/\":\"John\",\"XcgRvb\":\"Johnson\",\"1IWWYX\":[\"KittenTech Conference \",[\"0\"]],\"ZgJEMX\":\"KittenTech Conference Center\",\"87a/t/\":\"Label\",\"I3yitW\":\"Last login\",\"1ZaQUH\":\"Last name\",\"UXBCwc\":\"Last Name\",\"CKcupn\":\"Latest Orders\",\"tITjB1\":\"Learn more about Stripe\",\"c+gAXc\":\"Let's get started by creating your first event\",\"vR92Yn\":\"Let's get started by creating your first organizer\",\"QfrKvi\":\"Link color\",\"wJijgU\":\"Location\",\"sQia9P\":\"Log in\",\"zUDyah\":\"Logging in\",\"z0t9bb\":\"Login\",\"nOhz3x\":\"Logout\",\"F2jAFv\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nam placerat elementum...\",\"XkhEf9\":\"Lorem ipsum...\",\"MU3ijv\":\"Make this question mandatory\",\"wckWOP\":\"Manage\",\"8mmINh\":\"Manage billing information and view invoices\",\"jWIznR\":\"Manage default settings for new events\",\"n4SpU5\":\"Manage event\",\"wqyqaF\":\"Manage general account settings\",\"cQrNR3\":\"Manage Profile\",\"f92Qak\":\"Manage taxes and fees which can be applied to tickets\",\"PlTcVr\":\"Manage taxes and fees which can be applied to your tickets\",\"ophZVW\":\"Manage tickets\",\"Wsx7Iu\":\"Manage users and their permissions\",\"DdHfeW\":\"Manage your account details and default settings\",\"QHcjP+\":\"Manage your billing and payment details\",\"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\",\"lzcrX3\":\"Manually adding an attendee will adjust ticket quantity.\",\"g9dPPQ\":\"Maximum Per Order\",\"l5OcwO\":\"Message attendee\",\"Gv5AMu\":\"Message Attendees\",\"1jRD0v\":\"Message attendees with specific tickets\",\"Lvi+gV\":\"Message buyer\",\"tNZzFb\":\"Message Content\",\"lYDV/s\":\"Message individual attendees\",\"V7DYWd\":\"Message Sent\",\"t7TeQU\":\"Messages\",\"xFRMlO\":\"Minimum Per Order\",\"QYcUEf\":\"Minimum Price\",\"mYLhkl\":\"Miscellaneous Settings\",\"KYveV8\":\"Multi line text box\",\"SVuGaP\":\"Multiple price options, users can choose which to pay\",\"6wbTro\":\"Multiple price options. Perfect for early bird tickets etc.\",\"/bhMdO\":\"My amazing event description...\",\"vX8/tc\":\"My amazing event title...\",\"hKtWk2\":\"My Profile\",\"pRjx4L\":\"Nam placerat elementum...\",\"6YtxFj\":\"Name\",\"hVuv90\":\"Name should be less than 150 characters\",\"AIUkyF\":\"Navigate to Attendee\",\"qqeAJM\":\"Never\",\"7vhWI8\":\"New Password\",\"m920rF\":\"New York\",\"1UzENP\":\"No\",\"Wjz5KP\":\"No Attendees to show\",\"fFeCKc\":\"No Discount\",\"Z6ILSe\":\"No events for this organizer\",\"yAlJXG\":\"No events to show\",\"KPWxKD\":\"No messages to show\",\"J2LkP8\":\"No orders to show\",\"+Y976X\":\"No Promo Codes to show\",\"Ev2r9A\":\"No results\",\"RHyZUL\":\"No search results.\",\"cU1op4\":\"No Taxes or Fees have been added yet.\",\"RY2eP1\":\"No Taxes or Fees have been added.\",\"uR2eFu\":\"No tickets available\",\"b7JZFg\":\"No tickets to show\",\"EdQY6l\":\"None\",\"OJx3wK\":\"Not available\",\"x5+Lcz\":\"Not Checked In\",\"Scbrsn\":\"Not On Sale\",\"hFwWnI\":\"Notification Settings\",\"xXqEPO\":\"Notify buyer of refund\",\"YpN29s\":\"Notify organizer of new orders\",\"qeQhNj\":\"Now let's create your first event\",\"2NPDz1\":\"On sale\",\"Ldu/RI\":\"On Sale\",\"Ug4SfW\":\"Once you create an event, you'll see it here.\",\"+P/tII\":\"Once you're ready, set your event live and start selling tickets.\",\"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.\",\"OdnLE4\":\"Open sidebar\",\"ZZEYpT\":[\"Option \",[\"i\"]],\"0zpgxV\":\"Options\",\"BzEFor\":\"or\",\"UYUgdb\":\"Order\",\"mm+eaX\":\"Order #\",\"B3gPuX\":\"Order Cancelled\",\"SIbded\":\"Order Completed\",\"q/CcwE\":\"Order Date\",\"Tol4BF\":\"Order Details\",\"L4kzeZ\":[\"Order Details \",[\"0\"]],\"WbImlQ\":\"Order has been canceled and the order owner has been notified.\",\"VCOi7U\":\"Order questions\",\"wg9MPp\":\"Order questions are asked once per order. By default, people are asked for their first name, last name, and email address.\",\"+KNVxX\":\"Order questions are asked once per order. By default, we ask for the first name, last name, and email address.\",\"TPoYsF\":\"Order Reference\",\"GX6dZv\":\"Order Summary\",\"tDTq0D\":\"Order timeout\",\"1h+RBg\":\"Orders\",\"mz+c33\":\"Orders Created\",\"G5RhpL\":\"Organizer\",\"m/ebSk\":\"Organizer Details\",\"mYygCM\":\"Organizer is required\",\"Pa6G7v\":\"Organizer Name\",\"J2cXxX\":\"Organizers can only manage events and tickets. 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\",\"2w/FiJ\":\"Paid Ticket\",\"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\",\"iq5IUr\":\"Pause Ticket\",\"621rYf\":\"Payment\",\"JhtZAK\":\"Payment Failed\",\"xgav5v\":\"Payment succeeded!\",\"CcK+Ft\":\"PDF\",\"att1Hj\":\"percent\",\"/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\",\"q40YFl\":\"Please continue your order in the new tab\",\"ZJG4Di\":\"Please ensure you only send emails directly related to the order. Promotional emails\\nshould not be sent using this form.\",\"o+HaYe\":\"Please enter a valid promo code\",\"HnNept\":\"Please enter your new password\",\"5FSIzj\":\"Please Note\",\"MA04r/\":\"Please remove filters and set sorting to \\\"Homepage order\\\" to enable sorting\",\"pJLvdS\":\"Please select\",\"yygcoG\":\"Please select at least one ticket\",\"igBrCH\":\"Please verify your email address to access all features\",\"qCJyMx\":\"Post Checkout message\",\"g2UNkE\":\"Powered by\",\"Qs7yI0\":\"Powered By\",\"lqAWKB\":\"Powered by <0>Hi.Events0> 👋\",\"3n47kV\":\"Powered By Hi.Events\",\"ddi4j4\":\"Powered by Stripe\",\"Rs7IQv\":\"Pre Checkout message\",\"rdUucN\":\"Preview\",\"a7u1N9\":\"Price\",\"CmoB9j\":\"Price display mode\",\"Q8PWaJ\":\"Price tiers\",\"a5jvSX\":\"Price Tiers\",\"6RmHKN\":\"Primary Color\",\"G/ZwV1\":\"Primary Colour\",\"8cBtvm\":\"Primary Text Color\",\"BZz12Q\":\"Print\",\"MT7dxz\":\"Print All Tickets\",\"vERlcd\":\"Profile\",\"kUlL8W\":\"Profile updated successfully\",\"cl5WYc\":[\"Promo \",[\"promo_code\"],\" code applied\"],\"ZXpm3a\":[\"Promo \",[\"promoCode\"],\" code applied\"],\"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.\",\"812gwg\":\"Purchase License\",\"LkMOWF\":\"Quantity Available\",\"XKJuAX\":\"Question deleted\",\"oQvMPn\":\"Question Title\",\"enzGAL\":\"Questions\",\"K885Eq\":\"Questions sorted successfully\",\"OMJ035\":\"Radio Option\",\"C4TjpG\":\"Read less\",\"I3QpvQ\":\"Recipient\",\"N2C89m\":\"Reference\",\"gxFu7d\":[\"Refund amount (\",[\"0\"],\")\"],\"n10yGu\":\"Refund order\",\"zPH6gp\":\"Refund Order\",\"/BI0y9\":\"Refunded\",\"fgLNSM\":\"Register\",\"tasfos\":\"remove\",\"t/YqKh\":\"Remove\",\"RloWNu\":\"Reply to email\",\"EGm34e\":\"Resend confirmation email\",\"lnrkNz\":\"Resend email confirmation\",\"wIa8Qe\":\"Resend invitation\",\"VeKsnD\":\"Resend order email\",\"dFuEhO\":\"Resend ticket email\",\"o6+Y6d\":\"Resending...\",\"RfwZxd\":\"Reset password\",\"KbS2K9\":\"Reset Password\",\"vtc20Z\":\"Return to event page\",\"8YBH95\":\"Revenue\",\"PO/sOY\":\"Revoke invitation\",\"GDvlUT\":\"Role\",\"ELa4O9\":\"Sale End Date\",\"5uo5eP\":\"Sale ended\",\"Qm5XkZ\":\"Sale Start Date\",\"hVF4dJ\":\"Sale starts\",\"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\",\"lBAlVv\":\"Seach by name, order #, attendee # or email...\",\"W4kWXJ\":\"Search by attendee name, email or order #...\",\"ulAuWO\":\"Search by event name or description...\",\"+pr/FY\":\"Search by event name...\",\"NQSiYb\":\"Search by name or description...\",\"3zRbWw\":\"Search by name, email, or order #...\",\"BiYOdA\":\"Search by name...\",\"B1bB1j\":\"Search by order #, name or email...\",\"jA4hXE\":\"Search by subject or body...\",\"YEjitp\":\"Search by subject or content...\",\"HYnGee\":\"Search by ticket name...\",\"YIix5Y\":\"Search...\",\"OeW+DS\":\"Secondary color\",\"DnXcDK\":\"Secondary Color\",\"cZF6em\":\"Secondary text color\",\"ZIgYeg\":\"Secondary Text Color\",\"QuNKRX\":\"Select Camera\",\"kWI/37\":\"Select organizer\",\"hAjDQy\":\"Select status\",\"QYARw/\":\"Select Ticket\",\"XH5juP\":\"Select Ticket Tier\",\"nuWxSr\":\"Select Tickets\",\"O/7I0o\":\"Select...\",\"JlFcis\":\"Send\",\"qKWv5N\":[\"Send a copy to <0>\",[\"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.\",\"471O/e\":\"Send confirmation email\",\"D7ZemV\":\"Send order confirmation and ticket email\",\"v1rRtW\":\"Send Test\",\"j1VfcT\":\"SEO Description\",\"/SIY6o\":\"SEO Keywords\",\"GfWoKv\":\"SEO Settings\",\"rXngLf\":\"SEO Title\",\"/jZOZa\":\"Service Fee\",\"vu4F0h\":\"Set a minimum price and let users donate more\",\"Bj/QGQ\":\"Set a minimum price and let users pay more if they choose\",\"nYNT+5\":\"Set up your event\",\"A8iqfq\":\"Set your event live\",\"Tz0i8g\":\"Settings\",\"Z8lGw6\":\"Share\",\"FFbYHm\":[\"Should this \",[\"type\"],\" be applied to all new tickets?\"],\"8vETh9\":\"Show\",\"smd87r\":\"Show available ticket quantity\",\"qDsmzu\":\"Show hidden questions\",\"fMPkxb\":\"Show more\",\"izwOOD\":\"Show tax and fees separately\",\"j3b+OW\":\"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.\",\"DvCwYF\":\"Sorry, this promo code is invalid'\",\"6a/UJE\":\"Sorry, this promo code is not recognized\",\"9rRZZ+\":\"Sorry, your order has expired. Please start a new order.\",\"a4SyEE\":\"Sorting is disabled while filters and sorting are applied\",\"4nG1lG\":\"Standard ticket with a fixed price\",\"D3iCkb\":\"Start Date\",\"RS0o7b\":\"State\",\"/2by1f\":\"State or Region\",\"uAQUqI\":\"Status\",\"UJmAAK\":\"Subject\",\"X2rrlw\":\"Subtotal\",\"b0HJ45\":[\"Success! \",[\"0\"],\" will receive an email shortly.\"],\"BJIEiF\":[\"Successfully \",[\"0\"],\" attendee\"],\"Ih8kN0\":[\"Successfully $\",[\"0\"],\" attendee\"],\"xHl17l\":[\"Successfully checked <0>\",[\"0\"],\" \",[\"1\"],\"0> \",[\"2\"]],\"OtgNFx\":\"Successfully confirmed email address\",\"IKwyaF\":\"Successfully confirmed email change\",\"zLmvhE\":\"Successfully created attendee\",\"9mZEgt\":\"Successfully Created Promo Code\",\"aIA9C4\":\"Successfully Created Question\",\"onFQYs\":\"Successfully Created Ticket\",\"Hgj/mB\":\"Successfully deleted ticket\",\"J3RJSZ\":\"Successfully updated attendee\",\"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\",\"70dYC8\":\"Successfully Updated Promo Code\",\"F+pJnL\":\"Successfully Updated Seo Settings\",\"g2lRrH\":\"Successfully updated ticket\",\"DXZRk5\":\"Suite 100\",\"GNcfRk\":\"Support Email\",\"JpohL9\":\"Tax\",\"geUFpZ\":\"Tax & Fees\",\"0RXCDo\":\"Tax or Fee deleted successfully\",\"ZowkxF\":\"Taxes\",\"EEZnW+\":\"Taxes & Fees\",\"qu6/03\":\"Taxes and Fees\",\"gVjSFp\":\"Taxes and Fees can be associated with tickets and will be added to the ticket price.\",\"e0ZSh4\":\"Text Colour\",\"gypigA\":\"That promo code is invalid\",\"0ozSQu\":\"The background color for the event homepage\",\"LbHWgW\":\"The background color for the ticket widget on the event homepage\",\"75Xclv\":\"The basic details of your event\",\"UNqHnV\":\"The color of the buttons on the event homepage\",\"0amhbL\":\"The color of the links on the event homepage\",\"QXlz+n\":\"The default currency for your events.\",\"mnafgQ\":\"The default timezone for your events.\",\"NlfnUd\":\"The link you clicked is invalid.\",\"FqjKfd\":\"The location of your event\",\"FeAfXO\":[\"The maximum numbers number of tickets for Generals is \",[\"0\"]],\"POEqXB\":\"The organizer details of your event\",\"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.\",\"TJZByZ\":\"The tax and fee to apply to this ticket. You can create new taxes and fees on the\",\"OJYwh9\":\"The taxes and fees to apply to this ticket. You can create new taxes and fees on the\",\"6BpBfZ\":\"The text color for the event homepage\",\"rljHp7\":\"The text color for the ticket widget on the event homepage\",\"s4di40\":\"The text to display in the 'Continue' button. Defaults to 'Continue'\",\"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\",\"wgAiDb\":\"The user must login to change their email.\",\"jvxN9/\":\"There are no tickets available for this event\",\"rMcHYt\":\"There is a refund pending. Please wait for it to complete before requesting another refund.\",\"hjLUr+\":\"There was an error loading this content. Please refresh the page and try again.\",\"68Axnm\":\"There was an error processing your request. Please try again.\",\"mVKOW6\":\"There was an error sending your message\",\"Um/adz\":\"These allow multiple selections\",\"vWeHWp\":\"These colors are not saved in our system.\",\"7qzHGS\":\"These colors are not saved in our system. They are only used to generate the widget.\",\"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.\",\"CNk/ro\":\"This is an online event\",\"GabtCa\":\"This is the email address that will be used as the reply-to address for all emails sent from this event\",\"CKkb5E\":\"This message is how below the\",\"cHO4ec\":\"This message will be included in the footer of all emails sent from this event\",\"RjwlZt\":\"This order has already been paid.\",\"axERYu\":\"This order has already been paid. <0>View order details0>\",\"wY+HO9\":\"This order has already been processed.\",\"5K8REg\":\"This order has already been refunded.\",\"OiQMhP\":\"This order has been cancelled\",\"YyEJij\":\"This order has been cancelled.\",\"D44cEI\":\"This order has been completed.\",\"HILpDX\":\"This order is awaiting payment\",\"0vRWbB\":\"This order is awaiting payment.\",\"BdYtn9\":\"This order is complete\",\"e3uMJH\":\"This order is complete.\",\"YNKXOK\":\"This order is processing.\",\"LIjb4v\":\"This order is processing. TODO - a nice image and poll the API\",\"yPZN4i\":\"This order page is no longer available.\",\"5189cf\":\"This overrides all visibility settings and will hide the ticket from all customers.\",\"4vwjho\":\"This page has expired. <0>View order details0>\",\"Qt7RBu\":\"This question is only visible to the event organizer\",\"os29v1\":\"This reset password link is invalid or expired.\",\"WJqBqd\":\"This ticket cannot be deleted because it is\\nassociated with an order. You can hide it instead.\",\"ma6qdu\":\"This ticket is hidden from public view\",\"xJ8nzj\":\"This ticket is hidden unless targeted by a Promo Code\",\"IV9xTT\":\"This user is not active, as they have not accepted their invitation.\",\"5AnPaO\":\"ticket\",\"kjAL4v\":\"Ticket\",\"KosivG\":\"Ticket deleted successfully\",\"dtGC3q\":\"Ticket email has been resent to attendee\",\"USk+Mn\":\"Ticket page message\",\"mRM6XH\":\"Ticket Sales\",\"NirIiz\":\"Ticket Tier\",\"8jLPgH\":\"Ticket Type\",\"jqWDf9\":\"Ticket widget background color\",\"UrMVAz\":\"Ticket Widget Preview\",\"ngtDy7\":\"Ticket widget text color\",\"N+YYpo\":\"Ticket(s)\",\"6GQNLE\":\"Tickets\",\"54q0zp\":\"Tickets for\",\"i+idBz\":\"Tickets sold\",\"AGRilS\":\"Tickets Sold\",\"56Qw2C\":\"Tickets sorted successfully\",\"4f8A8M\":\"Tickets to which the promo code applies (Applies to all by default)\",\"xN9AhL\":[\"Tier \",[\"0\"]],\"oYaHuq\":\"Tiered Ticket\",\"XZrhpz\":\"Tiered Ticket - Coming Soon\",\"4M150e\":\"Tiered tickets allow you to offer multiple price options for the same ticket.\\nThis is perfect for early bird tickets, or offering different price\\noptions for different groups of people.\",\"jQoYTX\":\"Tiered tickets allow you to offer multiple price options for the same ticket. This is perfect for early bird tickets or offering different price options for different groups of people.\",\"s/0RpH\":\"Times used\",\"40Gx0U\":\"Timezone\",\"oDGm7V\":\"TIP\",\"MHrjPM\":\"Title\",\"xdA/+p\":\"Tools\",\"72c5Qo\":\"Total\",\"BxsfMK\":\"Total Fees\",\"mpB/d9\":\"Total order amount\",\"m3FM1g\":\"Total refunded\",\"GBBIy+\":\"Total remaining\",\"/SgoNA\":\"Total Tax\",\"+zy2Nq\":\"Type\",\"mLGbAS\":[\"Unable to \",[\"0\"],\" attendee\"],\"/cSMqv\":\"Unable to create question. Please check the your details\",\"nNdxt9\":\"Unable to create ticket. Please check the your details\",\"MH/lj8\":\"Unable to update question. Please check the your details\",\"Mqy/Zy\":\"United States\",\"NIuIk1\":\"Unlimited\",\"oMcLhS\":\"Unlimited ticket quantity available\",\"E0q9qH\":\"Unlimited usages allowed\",\"ia8YsC\":\"Upcoming\",\"L/gNNk\":[\"Update \",[\"0\"]],\"+qqX74\":\"Update event name, description and dates\",\"vXPSuB\":\"Update profile\",\"gsehpV\":\"Upload an image to be displayed on the event page\",\"BNBfrU\":\"Upload Cover\",\"UtDm3q\":\"URL copied to clipboard\",\"e5lF64\":\"Usage Example\",\"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 Settings0>\",\"vgwVkd\":\"UTC\",\"khBZkl\":\"VAT\",\"E/9LUk\":\"Venue Name\",\"AM+zF3\":\"View attendee\",\"e4mhwd\":\"View event homepage\",\"/5PEQz\":\"View event page\",\"fFornT\":\"View full message\",\"YIsEhQ\":\"View map\",\"Ep3VfY\":\"View on Google Maps\",\"AMkkeL\":\"View order\",\"Y8s4f6\":\"View order details\",\"tF+VVr\":\"VIP Ticket\",\"2q/Q7x\":\"Visibility\",\"vmOFL/\":\"We could not process your payment. Please try again or contact support.\",\"1E0vyy\":\"We couldn't load the data. Please try again.\",\"VGioT0\":\"We recommend dimensions of 2160px by 1080px, 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\"],\" 👋\"],\"wjqPqF\":\"What are Tiered Tickets?\",\"5iXvHA\":\"What is a Tiered Ticketing?\",\"MhhnvW\":\"What tickets does this code apply to? (Applies to all by default)\",\"dCil3h\":\"What tickets should this question be apply to?\",\"Rb0XUE\":\"What time will you be arriving?\",\"5N4wLD\":\"What type of question is this?\",\"S+OdxP\":\"Who is organizing this event?\",\"LINr2M\":\"Who is this message to?\",\"nWhye/\":\"Who should be asked this question?\",\"vVGiM4\":\"Who type of question is this?\",\"onLsWS\":\"Whoops! something went wrong. Please try again or contact support if the problem persists.\",\"AHXN2z\":\"Widget\",\"AU/8QR\":\"Widget Configuration\",\"VxFvXQ\":\"Widget Embed\",\"v1P7Gm\":\"Widget Settings\",\"b4itZn\":\"Working\",\"hqmXmc\":\"Working...\",\"l75CjT\":\"Yes\",\"QcwyCh\":\"Yes, remove them\",\"P+Sty0\":[\"You are changing your email to <0>\",[\"0\"],\"0>.\"],\"4ysd6z\":\"You can connecting using this Zoom link...\",\"9HGdDw\":\"You can create a promo code which targets this ticket on the\",\"KRhIxT\":\"You can now start receiving payments through Stripe.\",\"UqVaVO\":\"You cannot change the ticket type as there are attendees associated with this ticket.\",\"zQ8idk\":\"You cannot change the ticket type because there are already tickets sold for this ticket.\",\"3vRX5A\":\"You cannot delete this price tier because there are already tickets sold for this tier. You can hide it instead.\",\"RCC09s\":\"You cannot edit a default question\",\"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.\",\"XoeazJ\":\"You have no attendee questions. Attendee questions are asked once per attendee.\",\"CoZHDB\":\"You have no order questions.\",\"FZKDIe\":\"You have no order questions. Order questions are asked once per order.\",\"15qAvl\":\"You have no pending email change.\",\"n81Qk8\":\"You have not completed your Stripe Connect setup\",\"jxsiqJ\":\"You have not connected your Stripe account\",\"183zcL\":\"You have taxes and fees added to a Free Ticket. Would you like to remove or obscure them?\",\"2v5MI1\":\"You haven't sent any messages yet. You can send messages to all attendees, or to specific ticket 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\",\"LRguuL\":\"You must have at least one tier\",\"8/eLoa\":\"You need to verify your account before you can send messages.\",\"WHXRMI\":\"You'll need at least one ticket to get started. Free, paid or let the user decide what to pay.\",\"bdg03s\":\"Your account email in outgoing emails.\",\"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\"],\"0> is pending. Please check your email to confirm\"],\"yZfBoy\":\"Your message has been sent\",\"la26JS\":\"Your order is in progress\",\"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.\",\"cJ4Y4R\":\"Your refund is processing.\",\"IFHV2p\":\"Your ticket for\",\"3k7HDY\":\"Zip\",\"BM/KQm\":\"Zip or Postal Code\",\"VftCuk\":\"Zoom link, Google Meet link, etc.\",\"ySU+JY\":\"your@email.com\"}")};
\ No newline at end of file
diff --git a/frontend/src/locales/zh-cn.po b/frontend/src/locales/zh-cn.po
index 8ac90ef9..24b26df6 100644
--- a/frontend/src/locales/zh-cn.po
+++ b/frontend/src/locales/zh-cn.po
@@ -22,8 +22,8 @@ msgid "'There\\'s nothing to show yet'"
msgstr ""
#: src/components/common/QuestionsTable/index.tsx:267
-msgid "{0, plural, one {# hidden question} other {# hidden questions}}"
-msgstr ""
+#~ msgid "{0, plural, one {# hidden question} other {# hidden questions}}"
+#~ msgstr ""
#: src/components/common/AttendeeTable/index.tsx:113
#~ msgid "{0}"
@@ -49,6 +49,10 @@ msgstr ""
msgid "{0}'s Events"
msgstr ""
+#: src/components/common/QuestionsTable/index.tsx:267
+msgid "{0}{1}"
+msgstr ""
+
#: src/components/modals/RefundOrderModal/index.tsx:121
msgid "{message}"
msgstr ""
@@ -347,7 +351,7 @@ msgstr ""
msgid "All Events"
msgstr ""
-#: src/components/common/PromoCodeTable/index.tsx:128
+#: src/components/common/PromoCodeTable/index.tsx:130
msgid "All Tickets"
msgstr ""
@@ -429,7 +433,7 @@ msgstr ""
msgid "Appearance"
msgstr ""
-#: src/components/routes/ticket-widget/SelectTickets/index.tsx:359
+#: src/components/routes/ticket-widget/SelectTickets/index.tsx:357
msgid "applied"
msgstr ""
@@ -437,7 +441,7 @@ msgstr ""
#~ msgid "Apply"
#~ msgstr ""
-#: src/components/routes/ticket-widget/SelectTickets/index.tsx:386
+#: src/components/routes/ticket-widget/SelectTickets/index.tsx:385
msgid "Apply Promo Code"
msgstr ""
@@ -453,7 +457,7 @@ msgstr ""
msgid "Are you sure you want to cancel this attendee? This will void their ticket"
msgstr ""
-#: src/components/common/PromoCodeTable/index.tsx:34
+#: src/components/common/PromoCodeTable/index.tsx:36
msgid "Are you sure you want to delete this promo code?"
msgstr ""
@@ -485,8 +489,8 @@ msgstr ""
msgid "Attendee Details"
msgstr ""
-#: src/components/common/QuestionsTable/index.tsx:306
-#: src/components/common/QuestionsTable/index.tsx:347
+#: src/components/common/QuestionsTable/index.tsx:309
+#: src/components/common/QuestionsTable/index.tsx:350
msgid "Attendee questions"
msgstr ""
@@ -621,7 +625,7 @@ msgstr ""
#~ msgstr ""
#: src/components/common/AttendeeTable/index.tsx:211
-#: src/components/common/PromoCodeTable/index.tsx:37
+#: src/components/common/PromoCodeTable/index.tsx:39
#: src/utilites/confirmationDialog.tsx:11
msgid "Cancel"
msgstr ""
@@ -728,7 +732,7 @@ msgstr ""
msgid "click here"
msgstr ""
-#: src/components/common/PromoCodeTable/index.tsx:95
+#: src/components/common/PromoCodeTable/index.tsx:97
msgid "Click to copy"
msgstr ""
@@ -741,7 +745,7 @@ msgstr ""
msgid "Close sidebar"
msgstr ""
-#: src/components/common/PromoCodeTable/index.tsx:66
+#: src/components/common/PromoCodeTable/index.tsx:68
#: src/components/forms/PromoCodeForm/index.tsx:33
msgid "Code"
msgstr ""
@@ -883,7 +887,7 @@ msgstr ""
msgid "Copied"
msgstr ""
-#: src/components/common/PromoCodeTable/index.tsx:103
+#: src/components/common/PromoCodeTable/index.tsx:105
msgid "copied to clipboard"
msgstr ""
@@ -899,7 +903,7 @@ msgstr ""
msgid "Copy Link"
msgstr ""
-#: src/components/common/PromoCodeTable/index.tsx:172
+#: src/components/common/PromoCodeTable/index.tsx:176
msgid "Copy URL"
msgstr ""
@@ -924,7 +928,7 @@ msgstr ""
msgid "Create {0}"
msgstr ""
-#: src/components/common/PromoCodeTable/index.tsx:54
+#: src/components/common/PromoCodeTable/index.tsx:56
msgid "Create a Promo Code"
msgstr ""
@@ -1051,7 +1055,7 @@ msgstr ""
#: src/components/common/AttendeeTable/index.tsx:205
#: src/components/common/OrdersTable/index.tsx:131
-#: src/components/common/PromoCodeTable/index.tsx:176
+#: src/components/common/PromoCodeTable/index.tsx:180
#: src/components/common/QuestionsTable/index.tsx:113
#: src/components/common/TicketsTable/SortableTicket/index.tsx:193
msgid "Danger zone"
@@ -1073,12 +1077,12 @@ msgstr ""
#~ msgid "Deactivate user"
#~ msgstr ""
-#: src/components/common/PromoCodeTable/index.tsx:37
+#: src/components/common/PromoCodeTable/index.tsx:39
#: src/components/common/TaxAndFeeList/index.tsx:73
msgid "Delete"
msgstr ""
-#: src/components/common/PromoCodeTable/index.tsx:180
+#: src/components/common/PromoCodeTable/index.tsx:184
msgid "Delete code"
msgstr ""
@@ -1121,7 +1125,7 @@ msgstr ""
#~ msgid "Disable code"
#~ msgstr ""
-#: src/components/common/PromoCodeTable/index.tsx:67
+#: src/components/common/PromoCodeTable/index.tsx:69
msgid "Discount"
msgstr ""
@@ -1145,13 +1149,17 @@ msgstr ""
msgid "Don't have an account? <0>Sign Up0>"
msgstr ""
+#: src/components/forms/TicketForm/index.tsx:139
+msgid "Donation / Pay what you'd like ticket"
+msgstr ""
+
#: src/components/routes/ticket-widget/SelectTickets/Prices/Tiered/index.tsx:59
#~ msgid "Donation amount"
#~ msgstr ""
#: src/components/forms/TicketForm/index.tsx:139
-msgid "Donation Ticket"
-msgstr ""
+#~ msgid "Donation Ticket"
+#~ msgstr ""
#: src/components/routes/ticket-widget/OrderSummaryAndTickets/index.tsx:91
#~ msgid "Download Tickets PDF"
@@ -1202,7 +1210,7 @@ msgstr ""
msgid "Edit Attendee"
msgstr ""
-#: src/components/common/PromoCodeTable/index.tsx:167
+#: src/components/common/PromoCodeTable/index.tsx:169
msgid "Edit Code"
msgstr ""
@@ -1398,7 +1406,7 @@ msgstr ""
msgid "Events"
msgstr ""
-#: src/components/common/PromoCodeTable/index.tsx:70
+#: src/components/common/PromoCodeTable/index.tsx:72
msgid "Expires"
msgstr ""
@@ -1476,7 +1484,7 @@ msgstr ""
msgid "First name must be between 1 and 50 characters"
msgstr ""
-#: src/components/common/QuestionsTable/index.tsx:327
+#: src/components/common/QuestionsTable/index.tsx:330
msgid "First Name, Last Name, and Email Address are default questions and are always included in the checkout process."
msgstr ""
@@ -1555,7 +1563,7 @@ msgstr ""
msgid "Guests"
msgstr ""
-#: src/components/routes/ticket-widget/SelectTickets/index.tsx:354
+#: src/components/routes/ticket-widget/SelectTickets/index.tsx:352
msgid "Have a promo code?"
msgstr ""
@@ -1605,7 +1613,7 @@ msgstr ""
msgid "Hide getting started page"
msgstr ""
-#: src/components/common/QuestionsTable/index.tsx:273
+#: src/components/common/QuestionsTable/index.tsx:276
msgid "Hide hidden questions"
msgstr ""
@@ -1891,7 +1899,7 @@ msgstr ""
#: src/components/common/EventCard/index.tsx:78
#: src/components/common/OrdersTable/index.tsx:94
#: src/components/common/OrdersTable/index.tsx:109
-#: src/components/common/PromoCodeTable/index.tsx:164
+#: src/components/common/PromoCodeTable/index.tsx:166
#: src/components/common/TicketsTable/SortableTicket/index.tsx:171
#: src/components/layouts/Event/index.tsx:38
msgid "Manage"
@@ -2064,7 +2072,7 @@ msgstr ""
msgid "Navigate to Attendee"
msgstr ""
-#: src/components/common/PromoCodeTable/index.tsx:155
+#: src/components/common/PromoCodeTable/index.tsx:157
#: src/components/routes/account/ManageAccount/sections/Users/index.tsx:101
msgid "Never"
msgstr ""
@@ -2108,7 +2116,7 @@ msgstr ""
msgid "No orders to show"
msgstr ""
-#: src/components/common/PromoCodeTable/index.tsx:43
+#: src/components/common/PromoCodeTable/index.tsx:45
msgid "No Promo Codes to show"
msgstr ""
@@ -2136,7 +2144,7 @@ msgstr ""
msgid "No tickets to show"
msgstr ""
-#: src/components/common/PromoCodeTable/index.tsx:79
+#: src/components/common/PromoCodeTable/index.tsx:81
msgid "None"
msgstr ""
@@ -2255,8 +2263,8 @@ msgstr ""
msgid "Order has been canceled and the order owner has been notified."
msgstr ""
-#: src/components/common/QuestionsTable/index.tsx:291
-#: src/components/common/QuestionsTable/index.tsx:333
+#: src/components/common/QuestionsTable/index.tsx:294
+#: src/components/common/QuestionsTable/index.tsx:336
msgid "Order questions"
msgstr ""
@@ -2511,7 +2519,7 @@ msgstr ""
msgid "Pre Checkout message"
msgstr ""
-#: src/components/common/QuestionsTable/index.tsx:325
+#: src/components/common/QuestionsTable/index.tsx:328
msgid "Preview"
msgstr ""
@@ -2579,7 +2587,7 @@ msgstr ""
msgid "Promo Codes"
msgstr ""
-#: src/components/common/PromoCodeTable/index.tsx:48
+#: src/components/common/PromoCodeTable/index.tsx:50
msgid "Promo codes can be used to offer discounts, presale access, or provide special access to your event."
msgstr ""
@@ -2647,11 +2655,11 @@ msgstr ""
msgid "Register"
msgstr ""
-#: src/components/routes/ticket-widget/SelectTickets/index.tsx:363
+#: src/components/routes/ticket-widget/SelectTickets/index.tsx:361
msgid "remove"
msgstr ""
-#: src/components/routes/ticket-widget/SelectTickets/index.tsx:364
+#: src/components/routes/ticket-widget/SelectTickets/index.tsx:362
msgid "Remove"
msgstr ""
@@ -2911,7 +2919,11 @@ msgid "Service Fee"
msgstr ""
#: src/components/forms/TicketForm/index.tsx:141
-msgid "Set a minimum price and let users donate more"
+#~ msgid "Set a minimum price and let users donate more"
+#~ msgstr ""
+
+#: src/components/forms/TicketForm/index.tsx:141
+msgid "Set a minimum price and let users pay more if they choose"
msgstr ""
#: src/components/routes/event/GettingStarted/index.tsx:86
@@ -2943,7 +2955,7 @@ msgstr ""
msgid "Show available ticket quantity"
msgstr ""
-#: src/components/common/QuestionsTable/index.tsx:273
+#: src/components/common/QuestionsTable/index.tsx:276
msgid "Show hidden questions"
msgstr ""
@@ -3512,11 +3524,11 @@ msgstr ""
#~ msgid "Ticket widget text color"
#~ msgstr ""
-#: src/components/common/PromoCodeTable/index.tsx:145
+#: src/components/common/PromoCodeTable/index.tsx:147
msgid "Ticket(s)"
msgstr ""
-#: src/components/common/PromoCodeTable/index.tsx:69
+#: src/components/common/PromoCodeTable/index.tsx:71
#: src/components/layouts/Event/index.tsx:41
#: src/components/layouts/EventHomepage/index.tsx:80
#: src/components/routes/event/tickets.tsx:37
@@ -3566,7 +3578,7 @@ msgstr ""
#~ msgid "Tiered tickets allow you to offer multiple price options for the same ticket. This is perfect for early bird tickets or offering different price options for different groups of people."
#~ msgstr ""
-#: src/components/common/PromoCodeTable/index.tsx:68
+#: src/components/common/PromoCodeTable/index.tsx:70
msgid "Times used"
msgstr ""
@@ -3652,7 +3664,7 @@ msgstr ""
#~ msgid "Unlimited ticket quantity available"
#~ msgstr ""
-#: src/components/common/PromoCodeTable/index.tsx:123
+#: src/components/common/PromoCodeTable/index.tsx:125
msgid "Unlimited usages allowed"
msgstr ""
@@ -3680,6 +3692,10 @@ msgstr ""
msgid "Upload Cover"
msgstr ""
+#: src/components/common/PromoCodeTable/index.tsx:174
+msgid "URL copied to clipboard"
+msgstr ""
+
#: src/components/common/WidgetEditor/index.tsx:295
msgid "Usage Example"
msgstr ""
@@ -3946,7 +3962,7 @@ msgstr ""
msgid "You have connected your Stripe account"
msgstr ""
-#: src/components/common/QuestionsTable/index.tsx:316
+#: src/components/common/QuestionsTable/index.tsx:319
msgid "You have no attendee questions."
msgstr ""
@@ -3954,7 +3970,7 @@ msgstr ""
#~ msgid "You have no attendee questions. Attendee questions are asked once per attendee."
#~ msgstr ""
-#: src/components/common/QuestionsTable/index.tsx:301
+#: src/components/common/QuestionsTable/index.tsx:304
msgid "You have no order questions."
msgstr ""