diff --git a/backend/app/Helper/Url.php b/backend/app/Helper/Url.php index eb9c8bd0a6..3d439e9ea7 100644 --- a/backend/app/Helper/Url.php +++ b/backend/app/Helper/Url.php @@ -29,9 +29,26 @@ public static function getApiUrl(string $path, array $queryParams = []): string return self::addQueryParamsToUrl($queryParams, $url); } + /** + * Generates a CDN URL for the given path if a CDN URL is configured. + * Falls back to generating a URL using the specified or default filesystem disk. + * + * @param string $path The relative path to the asset. + * @return string The fully qualified URL to the asset, either via CDN or storage disk. + */ public static function getCdnUrl(string $path): string { - return config('app.cnd_url') . '/' . $path; + // Fetch the CDN URL from environment variables + // Checking against the env variable instead of config() as config falls back to the default value + // and we want to ensure that if the env variable is not set, we do not use a default value. + $envCDNUrl = env('APP_CDN_URL'); + + if ($envCDNUrl) { + return $envCDNUrl . '/' . $path; + } + + $disk = config('filesystems.public', 'public'); + return app('filesystem')->disk($disk)->url($path); } private static function addQueryParamsToUrl(array $queryParams, mixed $url): mixed diff --git a/backend/app/Services/Application/Handlers/EventSettings/PartialUpdateEventSettingsHandler.php b/backend/app/Services/Application/Handlers/EventSettings/PartialUpdateEventSettingsHandler.php index 2e132142fd..6f6ef90545 100644 --- a/backend/app/Services/Application/Handlers/EventSettings/PartialUpdateEventSettingsHandler.php +++ b/backend/app/Services/Application/Handlers/EventSettings/PartialUpdateEventSettingsHandler.php @@ -65,7 +65,9 @@ public function handle(PartialUpdateEventSettingsDTO $eventSettingsDTO): EventSe 'order_timeout_in_minutes' => $eventSettingsDTO->settings['order_timeout_in_minutes'] ?? $existingSettings->getOrderTimeoutInMinutes(), 'website_url' => $eventSettingsDTO->settings['website_url'] ?? $existingSettings->getWebsiteUrl(), - 'maps_url' => $eventSettingsDTO->settings['maps_url'] ?? $existingSettings->getMapsUrl(), + 'maps_url' => array_key_exists('maps_url', $eventSettingsDTO->settings) + ? $eventSettingsDTO->settings['maps_url'] + : $existingSettings->getMapsUrl(), 'location_details' => $locationDetails, 'is_online_event' => $eventSettingsDTO->settings['is_online_event'] ?? $existingSettings->getIsOnlineEvent(), 'online_event_connection_details' => array_key_exists('online_event_connection_details', $eventSettingsDTO->settings) diff --git a/backend/composer.json b/backend/composer.json index b92a43ba80..890f90236f 100644 --- a/backend/composer.json +++ b/backend/composer.json @@ -9,7 +9,7 @@ "php": "^8.2", "ext-intl": "*", "barryvdh/laravel-dompdf": "^3.0", - "brick/money": "^0.8.0", + "brick/money": "^0.10.1", "doctrine/dbal": "^3.6", "ezyang/htmlpurifier": "^4.17", "guzzlehttp/guzzle": "^7.2", diff --git a/backend/composer.lock b/backend/composer.lock index 4b0f419ef8..bdf7730520 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": "798dcafb0a057411e0a072216846ebf5", + "content-hash": "63dc2636543f8d1b84dc0ff834744a7e", "packages": [ { "name": "amphp/amp", @@ -1044,25 +1044,25 @@ }, { "name": "brick/math", - "version": "0.11.0", + "version": "0.12.3", "source": { "type": "git", "url": "https://github.com/brick/math.git", - "reference": "0ad82ce168c82ba30d1c01ec86116ab52f589478" + "reference": "866551da34e9a618e64a819ee1e01c20d8a588ba" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/brick/math/zipball/0ad82ce168c82ba30d1c01ec86116ab52f589478", - "reference": "0ad82ce168c82ba30d1c01ec86116ab52f589478", + "url": "https://api.github.com/repos/brick/math/zipball/866551da34e9a618e64a819ee1e01c20d8a588ba", + "reference": "866551da34e9a618e64a819ee1e01c20d8a588ba", "shasum": "" }, "require": { - "php": "^8.0" + "php": "^8.1" }, "require-dev": { "php-coveralls/php-coveralls": "^2.2", - "phpunit/phpunit": "^9.0", - "vimeo/psalm": "5.0.0" + "phpunit/phpunit": "^10.1", + "vimeo/psalm": "6.8.8" }, "type": "library", "autoload": { @@ -1082,12 +1082,17 @@ "arithmetic", "bigdecimal", "bignum", + "bignumber", "brick", - "math" + "decimal", + "integer", + "math", + "mathematics", + "rational" ], "support": { "issues": "https://github.com/brick/math/issues", - "source": "https://github.com/brick/math/tree/0.11.0" + "source": "https://github.com/brick/math/tree/0.12.3" }, "funding": [ { @@ -1095,34 +1100,33 @@ "type": "github" } ], - "time": "2023-01-15T23:15:59+00:00" + "time": "2025-02-28T13:11:00+00:00" }, { "name": "brick/money", - "version": "0.8.1", + "version": "0.10.1", "source": { "type": "git", "url": "https://github.com/brick/money.git", - "reference": "25f484a347756b7f3fbe7ad63ed9ad2d87b20004" + "reference": "779c1d3b708e4dd37fe8a32a189b9f241b52f194" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/brick/money/zipball/25f484a347756b7f3fbe7ad63ed9ad2d87b20004", - "reference": "25f484a347756b7f3fbe7ad63ed9ad2d87b20004", + "url": "https://api.github.com/repos/brick/money/zipball/779c1d3b708e4dd37fe8a32a189b9f241b52f194", + "reference": "779c1d3b708e4dd37fe8a32a189b9f241b52f194", "shasum": "" }, "require": { - "brick/math": "~0.10.1 || ~0.11.0", - "ext-json": "*", - "php": "^8.0" + "brick/math": "~0.12.0|~0.13.0", + "php": "^8.1" }, "require-dev": { - "brick/varexporter": "~0.3.0", + "brick/varexporter": "~0.5.0", "ext-dom": "*", "ext-pdo": "*", "php-coveralls/php-coveralls": "^2.2", - "phpunit/phpunit": "^9.4.3", - "vimeo/psalm": "5.14.1" + "phpunit/phpunit": "^10.1", + "vimeo/psalm": "6.3.0" }, "suggest": { "ext-intl": "Required to format Money objects" @@ -1145,7 +1149,7 @@ ], "support": { "issues": "https://github.com/brick/money/issues", - "source": "https://github.com/brick/money/tree/0.8.1" + "source": "https://github.com/brick/money/tree/0.10.1" }, "funding": [ { @@ -1153,7 +1157,7 @@ "type": "github" } ], - "time": "2023-09-23T21:17:11+00:00" + "time": "2025-03-05T13:00:01+00:00" }, { "name": "carbonphp/carbon-doctrine-types", @@ -3076,16 +3080,16 @@ }, { "name": "laravel/framework", - "version": "v12.14.1", + "version": "v12.16.0", "source": { "type": "git", "url": "https://github.com/laravel/framework.git", - "reference": "84b142958d1638a7e89de94ce75c2821c601d3d7" + "reference": "293bb1c70224faebfd3d4328e201c37115da055f" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/laravel/framework/zipball/84b142958d1638a7e89de94ce75c2821c601d3d7", - "reference": "84b142958d1638a7e89de94ce75c2821c601d3d7", + "url": "https://api.github.com/repos/laravel/framework/zipball/293bb1c70224faebfd3d4328e201c37115da055f", + "reference": "293bb1c70224faebfd3d4328e201c37115da055f", "shasum": "" }, "require": { @@ -3287,7 +3291,7 @@ "issues": "https://github.com/laravel/framework/issues", "source": "https://github.com/laravel/framework" }, - "time": "2025-05-13T17:50:51+00:00" + "time": "2025-05-27T15:49:44+00:00" }, { "name": "laravel/prompts", @@ -6641,20 +6645,20 @@ }, { "name": "ramsey/uuid", - "version": "4.7.6", + "version": "4.8.1", "source": { "type": "git", "url": "https://github.com/ramsey/uuid.git", - "reference": "91039bc1faa45ba123c4328958e620d382ec7088" + "reference": "fdf4dd4e2ff1813111bd0ad58d7a1ddbb5b56c28" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/ramsey/uuid/zipball/91039bc1faa45ba123c4328958e620d382ec7088", - "reference": "91039bc1faa45ba123c4328958e620d382ec7088", + "url": "https://api.github.com/repos/ramsey/uuid/zipball/fdf4dd4e2ff1813111bd0ad58d7a1ddbb5b56c28", + "reference": "fdf4dd4e2ff1813111bd0ad58d7a1ddbb5b56c28", "shasum": "" }, "require": { - "brick/math": "^0.8.8 || ^0.9 || ^0.10 || ^0.11 || ^0.12", + "brick/math": "^0.8.8 || ^0.9 || ^0.10 || ^0.11 || ^0.12 || ^0.13", "ext-json": "*", "php": "^8.0", "ramsey/collection": "^1.2 || ^2.0" @@ -6663,26 +6667,23 @@ "rhumsaa/uuid": "self.version" }, "require-dev": { - "captainhook/captainhook": "^5.10", + "captainhook/captainhook": "^5.25", "captainhook/plugin-composer": "^5.3", - "dealerdirect/phpcodesniffer-composer-installer": "^0.7.0", - "doctrine/annotations": "^1.8", - "ergebnis/composer-normalize": "^2.15", - "mockery/mockery": "^1.3", + "dealerdirect/phpcodesniffer-composer-installer": "^1.0", + "ergebnis/composer-normalize": "^2.47", + "mockery/mockery": "^1.6", "paragonie/random-lib": "^2", - "php-mock/php-mock": "^2.2", - "php-mock/php-mock-mockery": "^1.3", - "php-parallel-lint/php-parallel-lint": "^1.1", - "phpbench/phpbench": "^1.0", - "phpstan/extension-installer": "^1.1", - "phpstan/phpstan": "^1.8", - "phpstan/phpstan-mockery": "^1.1", - "phpstan/phpstan-phpunit": "^1.1", - "phpunit/phpunit": "^8.5 || ^9", - "ramsey/composer-repl": "^1.4", - "slevomat/coding-standard": "^8.4", - "squizlabs/php_codesniffer": "^3.5", - "vimeo/psalm": "^4.9" + "php-mock/php-mock": "^2.6", + "php-mock/php-mock-mockery": "^1.5", + "php-parallel-lint/php-parallel-lint": "^1.4.0", + "phpbench/phpbench": "^1.2.14", + "phpstan/extension-installer": "^1.4", + "phpstan/phpstan": "^2.1", + "phpstan/phpstan-mockery": "^2.0", + "phpstan/phpstan-phpunit": "^2.0", + "phpunit/phpunit": "^9.6", + "slevomat/coding-standard": "^8.18", + "squizlabs/php_codesniffer": "^3.13" }, "suggest": { "ext-bcmath": "Enables faster math with arbitrary-precision integers using BCMath.", @@ -6717,19 +6718,9 @@ ], "support": { "issues": "https://github.com/ramsey/uuid/issues", - "source": "https://github.com/ramsey/uuid/tree/4.7.6" + "source": "https://github.com/ramsey/uuid/tree/4.8.1" }, - "funding": [ - { - "url": "https://github.com/ramsey", - "type": "github" - }, - { - "url": "https://tidelift.com/funding/github/packagist/ramsey/uuid", - "type": "tidelift" - } - ], - "time": "2024-04-27T21:32:50+00:00" + "time": "2025-06-01T06:28:46+00:00" }, { "name": "revolt/event-loop", @@ -7519,7 +7510,7 @@ }, { "name": "symfony/clock", - "version": "v7.2.0", + "version": "v7.3.0", "source": { "type": "git", "url": "https://github.com/symfony/clock.git", @@ -7573,7 +7564,7 @@ "time" ], "support": { - "source": "https://github.com/symfony/clock/tree/v7.2.0" + "source": "https://github.com/symfony/clock/tree/v7.3.0" }, "funding": [ { @@ -7593,23 +7584,24 @@ }, { "name": "symfony/console", - "version": "v7.2.6", + "version": "v7.3.0", "source": { "type": "git", "url": "https://github.com/symfony/console.git", - "reference": "0e2e3f38c192e93e622e41ec37f4ca70cfedf218" + "reference": "66c1440edf6f339fd82ed6c7caa76cb006211b44" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/console/zipball/0e2e3f38c192e93e622e41ec37f4ca70cfedf218", - "reference": "0e2e3f38c192e93e622e41ec37f4ca70cfedf218", + "url": "https://api.github.com/repos/symfony/console/zipball/66c1440edf6f339fd82ed6c7caa76cb006211b44", + "reference": "66c1440edf6f339fd82ed6c7caa76cb006211b44", "shasum": "" }, "require": { "php": ">=8.2", + "symfony/deprecation-contracts": "^2.5|^3", "symfony/polyfill-mbstring": "~1.0", "symfony/service-contracts": "^2.5|^3", - "symfony/string": "^6.4|^7.0" + "symfony/string": "^7.2" }, "conflict": { "symfony/dependency-injection": "<6.4", @@ -7666,7 +7658,7 @@ "terminal" ], "support": { - "source": "https://github.com/symfony/console/tree/v7.2.6" + "source": "https://github.com/symfony/console/tree/v7.3.0" }, "funding": [ { @@ -7682,11 +7674,11 @@ "type": "tidelift" } ], - "time": "2025-04-07T19:09:28+00:00" + "time": "2025-05-24T10:34:04+00:00" }, { "name": "symfony/css-selector", - "version": "v7.2.0", + "version": "v7.3.0", "source": { "type": "git", "url": "https://github.com/symfony/css-selector.git", @@ -7731,7 +7723,7 @@ "description": "Converts CSS selectors to XPath expressions", "homepage": "https://symfony.com", "support": { - "source": "https://github.com/symfony/css-selector/tree/v7.2.0" + "source": "https://github.com/symfony/css-selector/tree/v7.3.0" }, "funding": [ { @@ -7751,16 +7743,16 @@ }, { "name": "symfony/deprecation-contracts", - "version": "v3.5.1", + "version": "v3.6.0", "source": { "type": "git", "url": "https://github.com/symfony/deprecation-contracts.git", - "reference": "74c71c939a79f7d5bf3c1ce9f5ea37ba0114c6f6" + "reference": "63afe740e99a13ba87ec199bb07bbdee937a5b62" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/deprecation-contracts/zipball/74c71c939a79f7d5bf3c1ce9f5ea37ba0114c6f6", - "reference": "74c71c939a79f7d5bf3c1ce9f5ea37ba0114c6f6", + "url": "https://api.github.com/repos/symfony/deprecation-contracts/zipball/63afe740e99a13ba87ec199bb07bbdee937a5b62", + "reference": "63afe740e99a13ba87ec199bb07bbdee937a5b62", "shasum": "" }, "require": { @@ -7773,7 +7765,7 @@ "name": "symfony/contracts" }, "branch-alias": { - "dev-main": "3.5-dev" + "dev-main": "3.6-dev" } }, "autoload": { @@ -7798,7 +7790,7 @@ "description": "A generic function and convention to trigger deprecation notices", "homepage": "https://symfony.com", "support": { - "source": "https://github.com/symfony/deprecation-contracts/tree/v3.5.1" + "source": "https://github.com/symfony/deprecation-contracts/tree/v3.6.0" }, "funding": [ { @@ -7814,20 +7806,20 @@ "type": "tidelift" } ], - "time": "2024-09-25T14:20:29+00:00" + "time": "2024-09-25T14:21:43+00:00" }, { "name": "symfony/error-handler", - "version": "v7.2.5", + "version": "v7.3.0", "source": { "type": "git", "url": "https://github.com/symfony/error-handler.git", - "reference": "102be5e6a8e4f4f3eb3149bcbfa33a80d1ee374b" + "reference": "cf68d225bc43629de4ff54778029aee6dc191b83" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/error-handler/zipball/102be5e6a8e4f4f3eb3149bcbfa33a80d1ee374b", - "reference": "102be5e6a8e4f4f3eb3149bcbfa33a80d1ee374b", + "url": "https://api.github.com/repos/symfony/error-handler/zipball/cf68d225bc43629de4ff54778029aee6dc191b83", + "reference": "cf68d225bc43629de4ff54778029aee6dc191b83", "shasum": "" }, "require": { @@ -7840,9 +7832,11 @@ "symfony/http-kernel": "<6.4" }, "require-dev": { + "symfony/console": "^6.4|^7.0", "symfony/deprecation-contracts": "^2.5|^3", "symfony/http-kernel": "^6.4|^7.0", - "symfony/serializer": "^6.4|^7.0" + "symfony/serializer": "^6.4|^7.0", + "symfony/webpack-encore-bundle": "^1.0|^2.0" }, "bin": [ "Resources/bin/patch-type-declarations" @@ -7873,7 +7867,7 @@ "description": "Provides tools to manage errors and ease debugging PHP code", "homepage": "https://symfony.com", "support": { - "source": "https://github.com/symfony/error-handler/tree/v7.2.5" + "source": "https://github.com/symfony/error-handler/tree/v7.3.0" }, "funding": [ { @@ -7889,20 +7883,20 @@ "type": "tidelift" } ], - "time": "2025-03-03T07:12:39+00:00" + "time": "2025-05-29T07:19:49+00:00" }, { "name": "symfony/event-dispatcher", - "version": "v7.2.0", + "version": "v7.3.0", "source": { "type": "git", "url": "https://github.com/symfony/event-dispatcher.git", - "reference": "910c5db85a5356d0fea57680defec4e99eb9c8c1" + "reference": "497f73ac996a598c92409b44ac43b6690c4f666d" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/910c5db85a5356d0fea57680defec4e99eb9c8c1", - "reference": "910c5db85a5356d0fea57680defec4e99eb9c8c1", + "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/497f73ac996a598c92409b44ac43b6690c4f666d", + "reference": "497f73ac996a598c92409b44ac43b6690c4f666d", "shasum": "" }, "require": { @@ -7953,7 +7947,7 @@ "description": "Provides tools that allow your application components to communicate with each other by dispatching events and listening to them", "homepage": "https://symfony.com", "support": { - "source": "https://github.com/symfony/event-dispatcher/tree/v7.2.0" + "source": "https://github.com/symfony/event-dispatcher/tree/v7.3.0" }, "funding": [ { @@ -7969,20 +7963,20 @@ "type": "tidelift" } ], - "time": "2024-09-25T14:21:43+00:00" + "time": "2025-04-22T09:11:45+00:00" }, { "name": "symfony/event-dispatcher-contracts", - "version": "v3.5.1", + "version": "v3.6.0", "source": { "type": "git", "url": "https://github.com/symfony/event-dispatcher-contracts.git", - "reference": "7642f5e970b672283b7823222ae8ef8bbc160b9f" + "reference": "59eb412e93815df44f05f342958efa9f46b1e586" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/event-dispatcher-contracts/zipball/7642f5e970b672283b7823222ae8ef8bbc160b9f", - "reference": "7642f5e970b672283b7823222ae8ef8bbc160b9f", + "url": "https://api.github.com/repos/symfony/event-dispatcher-contracts/zipball/59eb412e93815df44f05f342958efa9f46b1e586", + "reference": "59eb412e93815df44f05f342958efa9f46b1e586", "shasum": "" }, "require": { @@ -7996,7 +7990,7 @@ "name": "symfony/contracts" }, "branch-alias": { - "dev-main": "3.5-dev" + "dev-main": "3.6-dev" } }, "autoload": { @@ -8029,7 +8023,7 @@ "standards" ], "support": { - "source": "https://github.com/symfony/event-dispatcher-contracts/tree/v3.5.1" + "source": "https://github.com/symfony/event-dispatcher-contracts/tree/v3.6.0" }, "funding": [ { @@ -8045,20 +8039,20 @@ "type": "tidelift" } ], - "time": "2024-09-25T14:20:29+00:00" + "time": "2024-09-25T14:21:43+00:00" }, { "name": "symfony/finder", - "version": "v7.2.2", + "version": "v7.3.0", "source": { "type": "git", "url": "https://github.com/symfony/finder.git", - "reference": "87a71856f2f56e4100373e92529eed3171695cfb" + "reference": "ec2344cf77a48253bbca6939aa3d2477773ea63d" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/finder/zipball/87a71856f2f56e4100373e92529eed3171695cfb", - "reference": "87a71856f2f56e4100373e92529eed3171695cfb", + "url": "https://api.github.com/repos/symfony/finder/zipball/ec2344cf77a48253bbca6939aa3d2477773ea63d", + "reference": "ec2344cf77a48253bbca6939aa3d2477773ea63d", "shasum": "" }, "require": { @@ -8093,7 +8087,7 @@ "description": "Finds files and directories via an intuitive fluent interface", "homepage": "https://symfony.com", "support": { - "source": "https://github.com/symfony/finder/tree/v7.2.2" + "source": "https://github.com/symfony/finder/tree/v7.3.0" }, "funding": [ { @@ -8109,20 +8103,20 @@ "type": "tidelift" } ], - "time": "2024-12-30T19:00:17+00:00" + "time": "2024-12-30T19:00:26+00:00" }, { "name": "symfony/http-foundation", - "version": "v7.2.6", + "version": "v7.3.0", "source": { "type": "git", "url": "https://github.com/symfony/http-foundation.git", - "reference": "6023ec7607254c87c5e69fb3558255aca440d72b" + "reference": "4236baf01609667d53b20371486228231eb135fd" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/http-foundation/zipball/6023ec7607254c87c5e69fb3558255aca440d72b", - "reference": "6023ec7607254c87c5e69fb3558255aca440d72b", + "url": "https://api.github.com/repos/symfony/http-foundation/zipball/4236baf01609667d53b20371486228231eb135fd", + "reference": "4236baf01609667d53b20371486228231eb135fd", "shasum": "" }, "require": { @@ -8139,6 +8133,7 @@ "doctrine/dbal": "^3.6|^4", "predis/predis": "^1.1|^2.0", "symfony/cache": "^6.4.12|^7.1.5", + "symfony/clock": "^6.4|^7.0", "symfony/dependency-injection": "^6.4|^7.0", "symfony/expression-language": "^6.4|^7.0", "symfony/http-kernel": "^6.4|^7.0", @@ -8171,7 +8166,7 @@ "description": "Defines an object-oriented layer for the HTTP specification", "homepage": "https://symfony.com", "support": { - "source": "https://github.com/symfony/http-foundation/tree/v7.2.6" + "source": "https://github.com/symfony/http-foundation/tree/v7.3.0" }, "funding": [ { @@ -8187,20 +8182,20 @@ "type": "tidelift" } ], - "time": "2025-04-09T08:14:01+00:00" + "time": "2025-05-12T14:48:23+00:00" }, { "name": "symfony/http-kernel", - "version": "v7.2.6", + "version": "v7.3.0", "source": { "type": "git", "url": "https://github.com/symfony/http-kernel.git", - "reference": "f9dec01e6094a063e738f8945ef69c0cfcf792ec" + "reference": "ac7b8e163e8c83dce3abcc055a502d4486051a9f" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/http-kernel/zipball/f9dec01e6094a063e738f8945ef69c0cfcf792ec", - "reference": "f9dec01e6094a063e738f8945ef69c0cfcf792ec", + "url": "https://api.github.com/repos/symfony/http-kernel/zipball/ac7b8e163e8c83dce3abcc055a502d4486051a9f", + "reference": "ac7b8e163e8c83dce3abcc055a502d4486051a9f", "shasum": "" }, "require": { @@ -8208,8 +8203,8 @@ "psr/log": "^1|^2|^3", "symfony/deprecation-contracts": "^2.5|^3", "symfony/error-handler": "^6.4|^7.0", - "symfony/event-dispatcher": "^6.4|^7.0", - "symfony/http-foundation": "^6.4|^7.0", + "symfony/event-dispatcher": "^7.3", + "symfony/http-foundation": "^7.3", "symfony/polyfill-ctype": "^1.8" }, "conflict": { @@ -8285,7 +8280,7 @@ "description": "Provides a structured process for converting a Request into a Response", "homepage": "https://symfony.com", "support": { - "source": "https://github.com/symfony/http-kernel/tree/v7.2.6" + "source": "https://github.com/symfony/http-kernel/tree/v7.3.0" }, "funding": [ { @@ -8301,20 +8296,20 @@ "type": "tidelift" } ], - "time": "2025-05-02T09:04:03+00:00" + "time": "2025-05-29T07:47:32+00:00" }, { "name": "symfony/mailer", - "version": "v7.2.6", + "version": "v7.3.0", "source": { "type": "git", "url": "https://github.com/symfony/mailer.git", - "reference": "998692469d6e698c6eadc7ef37a6530a9eabb356" + "reference": "0f375bbbde96ae8c78e4aa3e63aabd486e33364c" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/mailer/zipball/998692469d6e698c6eadc7ef37a6530a9eabb356", - "reference": "998692469d6e698c6eadc7ef37a6530a9eabb356", + "url": "https://api.github.com/repos/symfony/mailer/zipball/0f375bbbde96ae8c78e4aa3e63aabd486e33364c", + "reference": "0f375bbbde96ae8c78e4aa3e63aabd486e33364c", "shasum": "" }, "require": { @@ -8365,7 +8360,7 @@ "description": "Helps sending emails", "homepage": "https://symfony.com", "support": { - "source": "https://github.com/symfony/mailer/tree/v7.2.6" + "source": "https://github.com/symfony/mailer/tree/v7.3.0" }, "funding": [ { @@ -8381,20 +8376,20 @@ "type": "tidelift" } ], - "time": "2025-04-04T09:50:51+00:00" + "time": "2025-04-04T09:51:09+00:00" }, { "name": "symfony/mime", - "version": "v7.2.6", + "version": "v7.3.0", "source": { "type": "git", "url": "https://github.com/symfony/mime.git", - "reference": "706e65c72d402539a072d0d6ad105fff6c161ef1" + "reference": "0e7b19b2f399c31df0cdbe5d8cbf53f02f6cfcd9" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/mime/zipball/706e65c72d402539a072d0d6ad105fff6c161ef1", - "reference": "706e65c72d402539a072d0d6ad105fff6c161ef1", + "url": "https://api.github.com/repos/symfony/mime/zipball/0e7b19b2f399c31df0cdbe5d8cbf53f02f6cfcd9", + "reference": "0e7b19b2f399c31df0cdbe5d8cbf53f02f6cfcd9", "shasum": "" }, "require": { @@ -8449,7 +8444,7 @@ "mime-type" ], "support": { - "source": "https://github.com/symfony/mime/tree/v7.2.6" + "source": "https://github.com/symfony/mime/tree/v7.3.0" }, "funding": [ { @@ -8465,7 +8460,7 @@ "type": "tidelift" } ], - "time": "2025-04-27T13:34:41+00:00" + "time": "2025-02-19T08:51:26+00:00" }, { "name": "symfony/options-resolver", @@ -9241,16 +9236,16 @@ }, { "name": "symfony/process", - "version": "v7.2.5", + "version": "v7.3.0", "source": { "type": "git", "url": "https://github.com/symfony/process.git", - "reference": "87b7c93e57df9d8e39a093d32587702380ff045d" + "reference": "40c295f2deb408d5e9d2d32b8ba1dd61e36f05af" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/process/zipball/87b7c93e57df9d8e39a093d32587702380ff045d", - "reference": "87b7c93e57df9d8e39a093d32587702380ff045d", + "url": "https://api.github.com/repos/symfony/process/zipball/40c295f2deb408d5e9d2d32b8ba1dd61e36f05af", + "reference": "40c295f2deb408d5e9d2d32b8ba1dd61e36f05af", "shasum": "" }, "require": { @@ -9282,7 +9277,7 @@ "description": "Executes commands in sub-processes", "homepage": "https://symfony.com", "support": { - "source": "https://github.com/symfony/process/tree/v7.2.5" + "source": "https://github.com/symfony/process/tree/v7.3.0" }, "funding": [ { @@ -9298,7 +9293,7 @@ "type": "tidelift" } ], - "time": "2025-03-13T12:21:46+00:00" + "time": "2025-04-17T09:11:12+00:00" }, { "name": "symfony/psr-http-message-bridge", @@ -9385,16 +9380,16 @@ }, { "name": "symfony/routing", - "version": "v7.2.3", + "version": "v7.3.0", "source": { "type": "git", "url": "https://github.com/symfony/routing.git", - "reference": "ee9a67edc6baa33e5fae662f94f91fd262930996" + "reference": "8e213820c5fea844ecea29203d2a308019007c15" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/routing/zipball/ee9a67edc6baa33e5fae662f94f91fd262930996", - "reference": "ee9a67edc6baa33e5fae662f94f91fd262930996", + "url": "https://api.github.com/repos/symfony/routing/zipball/8e213820c5fea844ecea29203d2a308019007c15", + "reference": "8e213820c5fea844ecea29203d2a308019007c15", "shasum": "" }, "require": { @@ -9446,7 +9441,7 @@ "url" ], "support": { - "source": "https://github.com/symfony/routing/tree/v7.2.3" + "source": "https://github.com/symfony/routing/tree/v7.3.0" }, "funding": [ { @@ -9462,20 +9457,20 @@ "type": "tidelift" } ], - "time": "2025-01-17T10:56:55+00:00" + "time": "2025-05-24T20:43:28+00:00" }, { "name": "symfony/service-contracts", - "version": "v3.5.1", + "version": "v3.6.0", "source": { "type": "git", "url": "https://github.com/symfony/service-contracts.git", - "reference": "e53260aabf78fb3d63f8d79d69ece59f80d5eda0" + "reference": "f021b05a130d35510bd6b25fe9053c2a8a15d5d4" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/service-contracts/zipball/e53260aabf78fb3d63f8d79d69ece59f80d5eda0", - "reference": "e53260aabf78fb3d63f8d79d69ece59f80d5eda0", + "url": "https://api.github.com/repos/symfony/service-contracts/zipball/f021b05a130d35510bd6b25fe9053c2a8a15d5d4", + "reference": "f021b05a130d35510bd6b25fe9053c2a8a15d5d4", "shasum": "" }, "require": { @@ -9493,7 +9488,7 @@ "name": "symfony/contracts" }, "branch-alias": { - "dev-main": "3.5-dev" + "dev-main": "3.6-dev" } }, "autoload": { @@ -9529,7 +9524,7 @@ "standards" ], "support": { - "source": "https://github.com/symfony/service-contracts/tree/v3.5.1" + "source": "https://github.com/symfony/service-contracts/tree/v3.6.0" }, "funding": [ { @@ -9545,20 +9540,20 @@ "type": "tidelift" } ], - "time": "2024-09-25T14:20:29+00:00" + "time": "2025-04-25T09:37:31+00:00" }, { "name": "symfony/string", - "version": "v7.2.6", + "version": "v7.3.0", "source": { "type": "git", "url": "https://github.com/symfony/string.git", - "reference": "a214fe7d62bd4df2a76447c67c6b26e1d5e74931" + "reference": "f3570b8c61ca887a9e2938e85cb6458515d2b125" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/string/zipball/a214fe7d62bd4df2a76447c67c6b26e1d5e74931", - "reference": "a214fe7d62bd4df2a76447c67c6b26e1d5e74931", + "url": "https://api.github.com/repos/symfony/string/zipball/f3570b8c61ca887a9e2938e85cb6458515d2b125", + "reference": "f3570b8c61ca887a9e2938e85cb6458515d2b125", "shasum": "" }, "require": { @@ -9616,7 +9611,7 @@ "utf8" ], "support": { - "source": "https://github.com/symfony/string/tree/v7.2.6" + "source": "https://github.com/symfony/string/tree/v7.3.0" }, "funding": [ { @@ -9632,20 +9627,20 @@ "type": "tidelift" } ], - "time": "2025-04-20T20:18:16+00:00" + "time": "2025-04-20T20:19:01+00:00" }, { "name": "symfony/translation", - "version": "v7.2.6", + "version": "v7.3.0", "source": { "type": "git", "url": "https://github.com/symfony/translation.git", - "reference": "e7fd8e2a4239b79a0fd9fb1fef3e0e7f969c6dc6" + "reference": "4aba29076a29a3aa667e09b791e5f868973a8667" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/translation/zipball/e7fd8e2a4239b79a0fd9fb1fef3e0e7f969c6dc6", - "reference": "e7fd8e2a4239b79a0fd9fb1fef3e0e7f969c6dc6", + "url": "https://api.github.com/repos/symfony/translation/zipball/4aba29076a29a3aa667e09b791e5f868973a8667", + "reference": "4aba29076a29a3aa667e09b791e5f868973a8667", "shasum": "" }, "require": { @@ -9655,6 +9650,7 @@ "symfony/translation-contracts": "^2.5|^3.0" }, "conflict": { + "nikic/php-parser": "<5.0", "symfony/config": "<6.4", "symfony/console": "<6.4", "symfony/dependency-injection": "<6.4", @@ -9668,7 +9664,7 @@ "symfony/translation-implementation": "2.3|3.0" }, "require-dev": { - "nikic/php-parser": "^4.18|^5.0", + "nikic/php-parser": "^5.0", "psr/log": "^1|^2|^3", "symfony/config": "^6.4|^7.0", "symfony/console": "^6.4|^7.0", @@ -9711,7 +9707,7 @@ "description": "Provides tools to internationalize your application", "homepage": "https://symfony.com", "support": { - "source": "https://github.com/symfony/translation/tree/v7.2.6" + "source": "https://github.com/symfony/translation/tree/v7.3.0" }, "funding": [ { @@ -9727,20 +9723,20 @@ "type": "tidelift" } ], - "time": "2025-04-07T19:09:28+00:00" + "time": "2025-05-29T07:19:49+00:00" }, { "name": "symfony/translation-contracts", - "version": "v3.5.1", + "version": "v3.6.0", "source": { "type": "git", "url": "https://github.com/symfony/translation-contracts.git", - "reference": "4667ff3bd513750603a09c8dedbea942487fb07c" + "reference": "df210c7a2573f1913b2d17cc95f90f53a73d8f7d" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/translation-contracts/zipball/4667ff3bd513750603a09c8dedbea942487fb07c", - "reference": "4667ff3bd513750603a09c8dedbea942487fb07c", + "url": "https://api.github.com/repos/symfony/translation-contracts/zipball/df210c7a2573f1913b2d17cc95f90f53a73d8f7d", + "reference": "df210c7a2573f1913b2d17cc95f90f53a73d8f7d", "shasum": "" }, "require": { @@ -9753,7 +9749,7 @@ "name": "symfony/contracts" }, "branch-alias": { - "dev-main": "3.5-dev" + "dev-main": "3.6-dev" } }, "autoload": { @@ -9789,7 +9785,7 @@ "standards" ], "support": { - "source": "https://github.com/symfony/translation-contracts/tree/v3.5.1" + "source": "https://github.com/symfony/translation-contracts/tree/v3.6.0" }, "funding": [ { @@ -9805,20 +9801,20 @@ "type": "tidelift" } ], - "time": "2024-09-25T14:20:29+00:00" + "time": "2024-09-27T08:32:26+00:00" }, { "name": "symfony/uid", - "version": "v7.2.0", + "version": "v7.3.0", "source": { "type": "git", "url": "https://github.com/symfony/uid.git", - "reference": "2d294d0c48df244c71c105a169d0190bfb080426" + "reference": "7beeb2b885cd584cd01e126c5777206ae4c3c6a3" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/uid/zipball/2d294d0c48df244c71c105a169d0190bfb080426", - "reference": "2d294d0c48df244c71c105a169d0190bfb080426", + "url": "https://api.github.com/repos/symfony/uid/zipball/7beeb2b885cd584cd01e126c5777206ae4c3c6a3", + "reference": "7beeb2b885cd584cd01e126c5777206ae4c3c6a3", "shasum": "" }, "require": { @@ -9863,7 +9859,7 @@ "uuid" ], "support": { - "source": "https://github.com/symfony/uid/tree/v7.2.0" + "source": "https://github.com/symfony/uid/tree/v7.3.0" }, "funding": [ { @@ -9879,24 +9875,25 @@ "type": "tidelift" } ], - "time": "2024-09-25T14:21:43+00:00" + "time": "2025-05-24T14:28:13+00:00" }, { "name": "symfony/var-dumper", - "version": "v7.2.6", + "version": "v7.3.0", "source": { "type": "git", "url": "https://github.com/symfony/var-dumper.git", - "reference": "9c46038cd4ed68952166cf7001b54eb539184ccb" + "reference": "548f6760c54197b1084e1e5c71f6d9d523f2f78e" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/var-dumper/zipball/9c46038cd4ed68952166cf7001b54eb539184ccb", - "reference": "9c46038cd4ed68952166cf7001b54eb539184ccb", + "url": "https://api.github.com/repos/symfony/var-dumper/zipball/548f6760c54197b1084e1e5c71f6d9d523f2f78e", + "reference": "548f6760c54197b1084e1e5c71f6d9d523f2f78e", "shasum": "" }, "require": { "php": ">=8.2", + "symfony/deprecation-contracts": "^2.5|^3", "symfony/polyfill-mbstring": "~1.0" }, "conflict": { @@ -9946,7 +9943,7 @@ "dump" ], "support": { - "source": "https://github.com/symfony/var-dumper/tree/v7.2.6" + "source": "https://github.com/symfony/var-dumper/tree/v7.3.0" }, "funding": [ { @@ -9962,7 +9959,7 @@ "type": "tidelift" } ], - "time": "2025-04-09T08:14:01+00:00" + "time": "2025-04-27T18:39:23+00:00" }, { "name": "tijsverkoyen/css-to-inline-styles", diff --git a/docker/all-in-one/.env b/docker/all-in-one/.env index 5bcc21e7af..973cdd59f7 100644 --- a/docker/all-in-one/.env +++ b/docker/all-in-one/.env @@ -13,7 +13,7 @@ VITE_STRIPE_PUBLISHABLE_KEY=pk_test_123456789 # Please refer to the documentation for more information on how to configure these values # https://hi.events/docs/getting-started/deploying LOG_CHANNEL=stderr -QUEUE_CONNECTION=sync +QUEUE_CONNECTION=redis # Application settings APP_CDN_URL=http://localhost:8123/storage @@ -45,3 +45,8 @@ DATABASE_URL=postgresql://postgres:secret@postgres:5432/hi-events STRIPE_PUBLIC_KEY=pk_test_123456789 STRIPE_SECRET_KEY=sk_test_123456789 STRIPE_WEBHOOK_SECRET=whsec_test_123456789 + +# Redis settings +REDIS_HOST=redis +REDIS_PASSWORD= +REDIS_PORT=6379 diff --git a/docker/all-in-one/README.md b/docker/all-in-one/README.md index 39b50a8679..4b7fdc7318 100644 --- a/docker/all-in-one/README.md +++ b/docker/all-in-one/README.md @@ -50,7 +50,7 @@ JWT_SECRET=your_generated_jwt_secret ### Step 4: Start the Docker Containers ```bash -docker-compose up -d +docker compose up -d ``` ### Step 5: Create an Account diff --git a/docker/all-in-one/docker-compose.yml b/docker/all-in-one/docker-compose.yml index 4aad7a177e..6391c5b1ce 100644 --- a/docker/all-in-one/docker-compose.yml +++ b/docker/all-in-one/docker-compose.yml @@ -6,6 +6,8 @@ services: container_name: all-in-one ports: - "8123:80" + networks: + - hi-events-network environment: - VITE_FRONTEND_URL=${VITE_FRONTEND_URL} - VITE_API_URL_CLIENT=${VITE_API_URL_CLIENT} @@ -35,17 +37,40 @@ services: - FILESYSTEM_PUBLIC_DISK=${FILESYSTEM_PUBLIC_DISK} - FILESYSTEM_PRIVATE_DISK=${FILESYSTEM_PRIVATE_DISK} - DATABASE_URL=postgresql://postgres:secret@postgres:5432/hi-events + - REDIS_HOST=redis + - REDIS_PASSWORD= + - REDIS_PORT=6379 - STRIPE_PUBLIC_KEY=${STRIPE_PUBLIC_KEY} - STRIPE_SECRET_KEY=${STRIPE_SECRET_KEY} - STRIPE_WEBHOOK_SECRET=${STRIPE_WEBHOOK_SECRET} + - WEBHOOK_QUEUE_NAME=webhook-queue depends_on: postgres: condition: service_healthy + redis: + condition: service_healthy + + redis: + image: redis:latest + container_name: redis + networks: + - hi-events-network + healthcheck: + test: [ "CMD", "redis-cli", "ping" ] + interval: 10s + timeout: 5s + retries: 5 + ports: + - "6379:6379" + volumes: + - redisdata:/data postgres: image: postgres:latest container_name: postgres + networks: + - hi-events-network healthcheck: test: [ "CMD-SHELL", "pg_isready -U postgres" ] interval: 10s @@ -58,5 +83,12 @@ services: volumes: - pgdata:/var/lib/postgresql/data +networks: + hi-events-network: + driver: bridge + volumes: pgdata: + driver: local + redisdata: + driver: local diff --git a/docker/all-in-one/supervisor/supervisord.conf b/docker/all-in-one/supervisor/supervisord.conf index 3fd37b42f6..1165b1d5d2 100644 --- a/docker/all-in-one/supervisor/supervisord.conf +++ b/docker/all-in-one/supervisor/supervisord.conf @@ -35,3 +35,14 @@ redirect_stderr=true stdout_logfile_maxbytes = 0 stderr_logfile_maxbytes = 0 environment=NODE_ENV="production",VITE_API_URL_CLIENT="%(ENV_VITE_API_URL_CLIENT)s",VITE_API_URL_SERVER="http://localhost:80/api",VITE_FRONTEND_URL="%(ENV_VITE_FRONTEND_URL)s",VITE_STRIPE_PUBLISHABLE_KEY="%(ENV_VITE_STRIPE_PUBLISHABLE_KEY)s" + +[program:laravel-queue-worker] +command=php /app/backend/artisan queue:work --queue=default,webhook-queue --sleep=3 --tries=3 --timeout=60 +autostart=true +autorestart=true +user=www-data +stdout_logfile=/dev/stdout +stderr_logfile=/dev/stderr +redirect_stderr=true +stdout_logfile_maxbytes=0 +stderr_logfile_maxbytes=0 diff --git a/frontend/package.json b/frontend/package.json index 196b04cc85..9ad3602103 100644 --- a/frontend/package.json +++ b/frontend/package.json @@ -36,7 +36,7 @@ "@mantine/tiptap": "^8.0.1", "@react-pdf/renderer": "^3.3.4", "@react-router/node": "^7.1.5", - "@remix-run/node": "^2.8.1", + "@remix-run/node": "^2.16.8", "@stripe/react-stripe-js": "^2.1.1", "@stripe/stripe-js": "^1.54.1", "@tabler/icons-react": "^2.44.0", @@ -45,9 +45,9 @@ "@tiptap/extension-image": "^2.11.5", "@tiptap/extension-link": "^2.1.13", "@tiptap/extension-text-align": "^2.1.13", - "@tiptap/extension-text-style": "^2.11.7", + "@tiptap/extension-text-style": "^2.12.0", "@tiptap/extension-underline": "^2.1.13", - "@tiptap/pm": "^2.1.13", + "@tiptap/pm": "^2.12.0", "@tiptap/react": "^2.1.13", "@tiptap/starter-kit": "^2.1.13", "axios": "^1.4.0", @@ -91,7 +91,7 @@ "postcss-preset-mantine": "^1.6.0", "postcss-simple-vars": "^7.0.1", "sass": "^1.89.0", - "typescript": "^5.0.2", + "typescript": "^5.8.3", "vite": "^5.4.19", "vite-bundle-visualizer": "^1.2.1", "vite-plugin-copy": "^0.1.6" diff --git a/frontend/src/locales/de.js b/frontend/src/locales/de.js index ee6d37028c..21dd88e58f 100644 --- a/frontend/src/locales/de.js +++ b/frontend/src/locales/de.js @@ -1 +1 @@ -/*eslint-disable*/module.exports={messages:JSON.parse("{\"f8qS7T\":\"„Hier gibt es noch nichts zu sehen“\",\"J/hVSQ\":[[\"0\"]],\"Jv22kr\":[[\"0\"],\" <0>erfolgreich eingecheckt\"],\"yxhYRZ\":[[\"0\"],\" <0>erfolgreich ausgecheckt\"],\"KMgp2+\":[[\"0\"],\" verfügbar\"],\"Pmr5xp\":[[\"0\"],\" erfolgreich erstellt\"],\"FImCSc\":[[\"0\"],\" erfolgreich aktualisiert\"],\"KOr9b4\":[[\"0\"],\"s Veranstaltungen\"],\"cU8MWb\":[[\"0\"],\"/\",[\"1\"],\" eingecheckt\"],\"Vjij1k\":[[\"days\"],\" Tage, \",[\"hours\"],\" Stunden, \",[\"minutes\"],\" Minuten und \",[\"seconds\"],\" Sekunden\"],\"f3RdEk\":[[\"hours\"],\" Stunden, \",[\"minutes\"],\" Minuten und \",[\"seconds\"],\" Sekunden\"],\"fyE7Au\":[[\"Minuten\"],\" Minuten und \",[\"Sekunden\"],\" Sekunden\"],\"NlQ0cx\":[\"Erste Veranstaltung von \",[\"organizerName\"]],\"Ul6IgC\":\"<0>Kapazitätszuweisungen ermöglichen es Ihnen, die Kapazität über Tickets oder ein ganzes Ereignis zu verwalten. Ideal für mehrtägige Veranstaltungen, Workshops und mehr, bei denen die Kontrolle der Teilnehmerzahl entscheidend ist.<1>Beispielsweise können Sie eine Kapazitätszuweisung mit einem <2>Tag Eins und einem <3>Alle Tage-Ticket verknüpfen. Sobald die Kapazität erreicht ist, werden beide Tickets automatisch nicht mehr zum Verkauf angeboten.\",\"Exjbj7\":\"<0>Einchecklisten helfen, den Eintritt der Teilnehmer zu verwalten. Sie können mehrere Tickets mit einer Eincheckliste verknüpfen und sicherstellen, dass nur Personen mit gültigen Tickets eintreten können.\",\"OXku3b\":\"<0>https://Ihre-website.com\",\"qnSLLW\":\"<0>Bitte geben Sie den Preis ohne Steuern und Gebühren ein.<1>Steuern und Gebühren können unten hinzugefügt werden.\",\"ZjMs6e\":\"<0>Die Anzahl der für dieses Produkt verfügbaren Produkte<1>Dieser Wert kann überschrieben werden, wenn mit diesem Produkt <2>Kapazitätsgrenzen verbunden sind.\",\"E15xs8\":\"⚡️ Richten Sie Ihre Veranstaltung ein\",\"FL6OwU\":\"✉️ Bestätigen Sie Ihre E-Mail-Adresse\",\"BN0OQd\":\"🎉 Herzlichen Glückwunsch zur Erstellung einer Veranstaltung!\",\"4kSf7w\":\"🎟️ Produkte hinzufügen\",\"4WT5tD\":\"🎨 Veranstaltungsseite anpassen\",\"3VPPdS\":\"💳 Mit Stripe verbinden\",\"cjdktw\":\"🚀 Veröffentliche dein Event\",\"rmelwV\":\"0 Minuten und 0 Sekunden\",\"i0puaE\":\"10.00\",\"qdfdgM\":\"Hauptstraße 123\",\"IoRZzD\":\"20\",\"+H1RMb\":\"01.01.2024 10:00\",\"Q/T49U\":\"01.01.2024 18:00\",\"hMT8+2\":\"94103\",\"efAM7X\":\"Ein Datumseingabefeld. Perfekt, um nach einem Geburtsdatum o.ä. zu fragen.\",\"6euFZ/\":[\"Ein standardmäßiger \",[\"type\"],\" wird automatisch auf alle neuen Produkte angewendet. Sie können dies für jedes Produkt einzeln überschreiben.\"],\"SMUbbQ\":\"Eine Dropdown-Eingabe erlaubt nur eine Auswahl\",\"qv4bfj\":\"Eine Gebühr, beispielsweise eine Buchungsgebühr oder eine Servicegebühr\",\"POT0K/\":\"Ein fester Betrag pro Produkt. Z.B., 0,50 $ pro Produkt\",\"f4vJgj\":\"Eine mehrzeilige Texteingabe\",\"OIPtI5\":\"Ein Prozentsatz des Produktpreises. Z.B., 3,5 % des Produktpreises\",\"ZthcdI\":\"Ein Promo-Code ohne Rabatt kann verwendet werden, um versteckte Produkte anzuzeigen.\",\"AG/qmQ\":\"Eine Radiooption hat mehrere Optionen, aber nur eine kann ausgewählt werden.\",\"h179TP\":\"Eine kurze Beschreibung der Veranstaltung, die in Suchmaschinenergebnissen und beim Teilen in sozialen Medien angezeigt wird. Standardmäßig wird die Veranstaltungsbeschreibung verwendet\",\"WKMnh4\":\"Eine einzeilige Texteingabe\",\"BHZbFy\":\"Eine einzelne Frage pro Bestellung. Z.B., Wie lautet Ihre Lieferadresse?\",\"Fuh+dI\":\"Eine einzelne Frage pro Produkt. Z.B., Welche T-Shirt-Größe haben Sie?\",\"RlJmQg\":\"Eine Standardsteuer wie Mehrwertsteuer oder GST\",\"uIKNjo\":\"Über die Veranstaltung\",\"3pykXZ\":\"Akzeptieren Sie Banküberweisungen, Schecks oder andere Offline-Zahlungsmethoden\",\"hrvLf4\":\"Akzeptieren Sie Kreditkartenzahlungen über Stripe\",\"bfXQ+N\":\"Einladung annehmen\",\"AeXO77\":\"Konto\",\"lkNdiH\":\"Kontoname\",\"Puv7+X\":\"Account Einstellungen\",\"OmylXO\":\"Konto erfolgreich aktualisiert\",\"7L01XJ\":\"Aktionen\",\"FQBaXG\":\"Aktivieren\",\"5T2HxQ\":\"Aktivierungsdatum\",\"F6pfE9\":\"Aktiv\",\"/PN1DA\":\"Fügen Sie eine Beschreibung für diese Eincheckliste hinzu\",\"0/vPdA\":\"Fügen Sie Anmerkungen über den Teilnehmer hinzu. Diese sind für den Teilnehmer nicht sichtbar.\",\"Or1CPR\":\"Fügen Sie Anmerkungen über den Teilnehmer hinzu...\",\"l3sZO1\":\"Fügen Sie Notizen zur Bestellung hinzu. Diese sind für den Kunden nicht sichtbar.\",\"xMekgu\":\"Fügen Sie Notizen zur Bestellung hinzu...\",\"PGPGsL\":\"Beschreibung hinzufügen\",\"gMK0ps\":\"Fügen Sie Ereignisdetails hinzu und verwalten Sie die Ereigniseinstellungen.\",\"OveehC\":\"Fügen Sie Anweisungen für Offline-Zahlungen hinzu (z. B. Überweisungsdetails, wo Schecks hingeschickt werden sollen, Zahlungsfristen)\",\"LTVoRa\":\"Weitere Produkte hinzufügen\",\"ApsD9J\":\"Neue hinzufügen\",\"TZxnm8\":\"Option hinzufügen\",\"24l4x6\":\"Produkt hinzufügen\",\"8q0EdE\":\"Produkt zur Kategorie hinzufügen\",\"YvCknQ\":\"Produkte hinzufügen\",\"Cw27zP\":\"Frage hinzufügen\",\"yWiPh+\":\"Steuern oder Gebühren hinzufügen\",\"goOKRY\":\"Ebene hinzufügen\",\"oZW/gT\":\"Zum Kalender hinzufügen\",\"pn5qSs\":\"Zusätzliche Informationen\",\"Y8DIQy\":\"Zusatzoptionen\",\"Du6bPw\":\"Adresse\",\"NY/x1b\":\"Anschrift Zeile 1\",\"POdIrN\":\"Anschrift Zeile 1\",\"cormHa\":\"Adresszeile 2\",\"gwk5gg\":\"Adresszeile 2\",\"U3pytU\":\"Administrator\",\"HLDaLi\":\"Administratorbenutzer haben vollständigen Zugriff auf Ereignisse und Kontoeinstellungen.\",\"W7AfhC\":\"Alle Teilnehmer dieser Veranstaltung\",\"cde2hc\":\"Alle Produkte\",\"5CQ+r0\":\"Erlauben Sie Teilnehmern, die mit unbezahlten Bestellungen verbunden sind, einzuchecken\",\"ipYKgM\":\"Suchmaschinenindizierung zulassen\",\"LRbt6D\":\"Suchmaschinen erlauben, dieses Ereignis zu indizieren\",\"+MHcJD\":\"Fast geschafft! Wir warten nur darauf, dass Ihre Zahlung bearbeitet wird. Dies sollte nur ein paar Sekunden dauern.\",\"ApOYO8\":\"Erstaunlich, Ereignis, Schlüsselwörter...\",\"hehnjM\":\"Menge\",\"R2O9Rg\":[\"Bezahlter Betrag (\",[\"0\"],\")\"],\"V7MwOy\":\"Beim Laden der Seite ist ein Fehler aufgetreten\",\"Q7UCEH\":\"Beim Sortieren der Fragen ist ein Fehler aufgetreten. Bitte versuchen Sie es erneut oder aktualisieren Sie die Seite\",\"jD/OCQ\":\"Ein Event ist die eigentliche Veranstaltung, die Sie veranstalten. Sie können später weitere Details hinzufügen.\",\"oBkF+i\":\"Ein Veranstalter ist das Unternehmen oder die Person, die die Veranstaltung ausrichtet.\",\"W5A0Ly\":\"Ein unerwarteter Fehler ist aufgetreten.\",\"byKna+\":\"Ein unerwarteter Fehler ist aufgetreten. Bitte versuchen Sie es erneut.\",\"ubdMGz\":\"Alle Anfragen von Produktinhabern werden an diese E-Mail-Adresse gesendet. Diese wird auch als „Antwort-an“-Adresse für alle von dieser Veranstaltung gesendeten E-Mails verwendet.\",\"aAIQg2\":\"Aussehen\",\"Ym1gnK\":\"angewandt\",\"sy6fss\":[\"Gilt für \",[\"0\"],\" Produkte\"],\"kadJKg\":\"Gilt für 1 Produkt\",\"DB8zMK\":\"Anwenden\",\"GctSSm\":\"Promo-Code anwenden\",\"ARBThj\":[\"Diesen \",[\"type\"],\" auf alle neuen Produkte anwenden\"],\"S0ctOE\":\"Veranstaltung archivieren\",\"TdfEV7\":\"Archiviert\",\"A6AtLP\":\"Archivierte Veranstaltungen\",\"q7TRd7\":\"Möchten Sie diesen Teilnehmer wirklich aktivieren?\",\"TvkW9+\":\"Sind Sie sicher, dass Sie diese Veranstaltung archivieren möchten?\",\"/CV2x+\":\"Möchten Sie diesen Teilnehmer wirklich stornieren? Dadurch wird sein Ticket ungültig.\",\"YgRSEE\":\"Möchten Sie diesen Aktionscode wirklich löschen?\",\"iU234U\":\"Möchten Sie diese Frage wirklich löschen?\",\"CMyVEK\":\"Möchten Sie diese Veranstaltung wirklich als Entwurf speichern? Dadurch wird die Veranstaltung für die Öffentlichkeit unsichtbar.\",\"mEHQ8I\":\"Möchten Sie diese Veranstaltung wirklich öffentlich machen? Dadurch wird die Veranstaltung für die Öffentlichkeit sichtbar\",\"s4JozW\":\"Sind Sie sicher, dass Sie diese Veranstaltung wiederherstellen möchten? Es wird als Entwurf wiederhergestellt.\",\"vJuISq\":\"Sind Sie sicher, dass Sie diese Kapazitätszuweisung löschen möchten?\",\"baHeCz\":\"Möchten Sie diese Eincheckliste wirklich löschen?\",\"LBLOqH\":\"Einmal pro Bestellung anfragen\",\"wu98dY\":\"Einmal pro Produkt fragen\",\"ss9PbX\":\"Teilnehmer\",\"m0CFV2\":\"Teilnehmerdetails\",\"QKim6l\":\"Teilnehmer nicht gefunden\",\"R5IT/I\":\"Teilnehmernotizen\",\"lXcSD2\":\"Fragen der Teilnehmer\",\"HT/08n\":\"Teilnehmer-Ticket\",\"9SZT4E\":\"Teilnehmer\",\"iPBfZP\":\"Registrierte Teilnehmer\",\"7KxcHR\":\"Teilnehmer mit einem bestimmten Produkt\",\"IMJ6rh\":\"Automatische Größenanpassung\",\"vZ5qKF\":\"Passen Sie die Widgethöhe automatisch an den Inhalt an. Wenn diese Option deaktiviert ist, füllt das Widget die Höhe des Containers aus.\",\"4lVaWA\":\"Warten auf Offline-Zahlung\",\"2rHwhl\":\"Warten auf Offline-Zahlung\",\"3wF4Q/\":\"Zahlung ausstehend\",\"ioG+xt\":\"Zahlung steht aus\",\"3PmQfI\":\"Tolles Event\",\"Yrbm6T\":\"Awesome Organizer Ltd.\",\"9002sI\":\"Zurück zu allen Events\",\"A302fe\":\"Zurück zur Veranstaltungsseite\",\"VCoEm+\":\"Zurück zur Anmeldung\",\"k1bLf+\":\"Hintergrundfarbe\",\"I7xjqg\":\"Hintergrundtyp\",\"1mwMl+\":\"Bevor Sie versenden!\",\"/yeZ20\":\"Bevor Ihre Veranstaltung live gehen kann, müssen Sie einige Dinge erledigen.\",\"ze6ETw\":\"Beginnen Sie in wenigen Minuten mit dem Verkauf von Produkten\",\"8rE61T\":\"Rechnungsadresse\",\"/xC/im\":\"Rechnungseinstellungen\",\"rp/zaT\":\"Brasilianisches Portugiesisch\",\"whqocw\":\"Mit der Registrierung stimmen Sie unseren <0>Servicebedingungen und <1>Datenschutzrichtlinie zu.\",\"bcCn6r\":\"Berechnungstyp\",\"+8bmSu\":\"Kalifornien\",\"iStTQt\":\"Die Kameraberechtigung wurde verweigert. <0>Fordern Sie die Berechtigung erneut an. Wenn dies nicht funktioniert, müssen Sie dieser Seite in Ihren Browsereinstellungen <1>Zugriff auf Ihre Kamera gewähren.\",\"dEgA5A\":\"Stornieren\",\"Gjt/py\":\"E-Mail-Änderung abbrechen\",\"tVJk4q\":\"Bestellung stornieren\",\"Os6n2a\":\"Bestellung stornieren\",\"Mz7Ygx\":[\"Bestellung stornieren \",[\"0\"]],\"3tTjpi\":\"Das Stornieren wird alle mit dieser Bestellung verbundenen Produkte stornieren und die Produkte wieder in den verfügbaren Bestand zurückgeben.\",\"vv7kpg\":\"Abgesagt\",\"U7nGvl\":\"Check-in nicht möglich\",\"QyjCeq\":\"Kapazität\",\"V6Q5RZ\":\"Kapazitätszuweisung erfolgreich erstellt\",\"k5p8dz\":\"Kapazitätszuweisung erfolgreich gelöscht\",\"nDBs04\":\"Kapazitätsmanagement\",\"ddha3c\":\"Kategorien ermöglichen es Ihnen, Produkte zusammenzufassen. Zum Beispiel könnten Sie eine Kategorie für \\\"Tickets\\\" und eine andere für \\\"Merchandise\\\" haben.\",\"iS0wAT\":\"Kategorien helfen Ihnen, Ihre Produkte zu organisieren. Dieser Titel wird auf der öffentlichen Veranstaltungsseite angezeigt.\",\"eorM7z\":\"Kategorien erfolgreich neu geordnet.\",\"3EXqwa\":\"Kategorie erfolgreich erstellt\",\"77/YgG\":\"Cover ändern\",\"GptGxg\":\"Kennwort ändern\",\"xMDm+I\":\"Einchecken\",\"p2WLr3\":[\"Check-in \",[\"0\"],\" \",[\"1\"]],\"D6+U20\":\"Einchecken und Bestellung als bezahlt markieren\",\"QYLpB4\":\"Nur einchecken\",\"/Ta1d4\":\"Auschecken\",\"5LDT6f\":\"Schau dir dieses Event an!\",\"gXcPxc\":\"Einchecken\",\"fVUbUy\":\"Eincheckliste erfolgreich erstellt\",\"+CeSxK\":\"Eincheckliste erfolgreich gelöscht\",\"+hBhWk\":\"Die Eincheckliste ist abgelaufen\",\"mBsBHq\":\"Die Eincheckliste ist nicht aktiv\",\"vPqpQG\":\"Eincheckliste nicht gefunden\",\"tejfAy\":\"Einchecklisten\",\"hD1ocH\":\"Eincheck-URL in die Zwischenablage kopiert\",\"CNafaC\":\"Kontrollkästchenoptionen ermöglichen Mehrfachauswahl\",\"SpabVf\":\"Kontrollkästchen\",\"CRu4lK\":\"Eingecheckt\",\"znIg+z\":\"Zur Kasse\",\"1WnhCL\":\"Checkout-Einstellungen\",\"6imsQS\":\"Vereinfachtes Chinesisch\",\"JjkX4+\":\"Wählen Sie eine Farbe für Ihren Hintergrund\",\"/Jizh9\":\"Wähle einen Account\",\"3wV73y\":\"Stadt\",\"FG98gC\":\"Suchtext löschen\",\"EYeuMv\":\"klicken Sie hier\",\"sby+1/\":\"Zum Kopieren klicken\",\"yz7wBu\":\"Schließen\",\"62Ciis\":\"Sidebar schließen\",\"EWPtMO\":\"Code\",\"ercTDX\":\"Der Code muss zwischen 3 und 50 Zeichen lang sein\",\"oqr9HB\":\"Dieses Produkt einklappen, wenn die Veranstaltungsseite initial geladen wird\",\"jZlrte\":\"Farbe\",\"Vd+LC3\":\"Die Farbe muss ein gültiger Hex-Farbcode sein. Beispiel: #ffffff\",\"1HfW/F\":\"Farben\",\"VZeG/A\":\"Demnächst\",\"yPI7n9\":\"Durch Kommas getrennte Schlüsselwörter, die das Ereignis beschreiben. Diese werden von Suchmaschinen verwendet, um das Ereignis zu kategorisieren und zu indizieren.\",\"NPZqBL\":\"Bestellung abschließen\",\"guBeyC\":\"Jetzt bezahlen\",\"C8HNV2\":\"Jetzt bezahlen\",\"qqWcBV\":\"Vollendet\",\"6HK5Ct\":\"Abgeschlossene Bestellungen\",\"NWVRtl\":\"Abgeschlossene Bestellungen\",\"DwF9eH\":\"Komponentencode\",\"Tf55h7\":\"Konfigurierter Rabatt\",\"7VpPHA\":\"Bestätigen\",\"ZaEJZM\":\"E-Mail-Änderung bestätigen\",\"yjkELF\":\"Bestätige neues Passwort\",\"xnWESi\":\"Bestätige das Passwort\",\"p2/GCq\":\"Bestätige das Passwort\",\"wnDgGj\":\"E-Mail-Adresse wird bestätigt …\",\"pbAk7a\":\"Stripe verbinden\",\"UMGQOh\":\"Mit Stripe verbinden\",\"QKLP1W\":\"Verbinden Sie Ihr Stripe-Konto, um Zahlungen zu empfangen.\",\"5lcVkL\":\"Verbindungsdetails\",\"yAej59\":\"Hintergrundfarbe des Inhalts\",\"xGVfLh\":\"Weitermachen\",\"X++RMT\":\"Text der Schaltfläche „Weiter“\",\"AfNRFG\":\"Text der Schaltfläche „Weiter“\",\"lIbwvN\":\"Mit der Ereigniseinrichtung fortfahren\",\"HB22j9\":\"Weiter einrichten\",\"bZEa4H\":\"Mit der Einrichtung von Stripe Connect fortfahren\",\"6V3Ea3\":\"Kopiert\",\"T5rdis\":\"in die Zwischenablage kopiert\",\"he3ygx\":\"Kopieren\",\"r2B2P8\":\"Eincheck-URL kopieren\",\"8+cOrS\":\"Details auf alle Teilnehmer anwenden\",\"ENCIQz\":\"Link kopieren\",\"E6nRW7\":\"URL kopieren\",\"JNCzPW\":\"Land\",\"IF7RiR\":\"Abdeckung\",\"hYgDIe\":\"Erstellen\",\"b9XOHo\":[\"Erstellen Sie \",[\"0\"]],\"k9RiLi\":\"Ein Produkt erstellen\",\"6kdXbW\":\"Einen Promo-Code erstellen\",\"n5pRtF\":\"Ticket erstellen\",\"X6sRve\":[\"Erstellen Sie ein Konto oder <0>\",[\"0\"],\", um loszulegen\"],\"nx+rqg\":\"einen Organizer erstellen\",\"ipP6Ue\":\"Teilnehmer erstellen\",\"VwdqVy\":\"Kapazitätszuweisung erstellen\",\"EwoMtl\":\"Kategorie erstellen\",\"XletzW\":\"Kategorie erstellen\",\"WVbTwK\":\"Eincheckliste erstellen\",\"uN355O\":\"Ereignis erstellen\",\"BOqY23\":\"Neu erstellen\",\"kpJAeS\":\"Organizer erstellen\",\"a0EjD+\":\"Produkt erstellen\",\"+scrJC\":\"Erstellen Sie Produkte für Ihre Veranstaltung, legen Sie Preise fest und verwalten Sie die verfügbare Menge.\",\"sYpiZP\":\"Promo-Code erstellen\",\"B3Mkdt\":\"Frage erstellen\",\"UKfi21\":\"Steuer oder Gebühr erstellen\",\"d+F6q9\":\"Erstellt\",\"Q2lUR2\":\"Währung\",\"DCKkhU\":\"Aktuelles Passwort\",\"uIElGP\":\"Benutzerdefinierte Karten-URL\",\"UEqXyt\":\"Benutzerdefinierter Bereich\",\"876pfE\":\"Kunde\",\"QOg2Sf\":\"Passen Sie die E-Mail- und Benachrichtigungseinstellungen für dieses Ereignis an\",\"Y9Z/vP\":\"Passen Sie die Startseite der Veranstaltung und die Nachrichten an der Kasse an\",\"2E2O5H\":\"Passen Sie die sonstigen Einstellungen für dieses Ereignis an\",\"iJhSxe\":\"Passen Sie die SEO-Einstellungen für dieses Event an\",\"KIhhpi\":\"Passen Sie Ihre Veranstaltungsseite an\",\"nrGWUv\":\"Passen Sie Ihre Veranstaltungsseite an Ihre Marke und Ihren Stil an.\",\"Zz6Cxn\":\"Gefahrenzone\",\"ZQKLI1\":\"Gefahrenzone\",\"7p5kLi\":\"Dashboard\",\"mYGY3B\":\"Datum\",\"JvUngl\":\"Datum & Uhrzeit\",\"JJhRbH\":\"Kapazität am ersten Tag\",\"cnGeoo\":\"Löschen\",\"jRJZxD\":\"Kapazität löschen\",\"VskHIx\":\"Kategorie löschen\",\"Qrc8RZ\":\"Eincheckliste löschen\",\"WHf154\":\"Code löschen\",\"heJllm\":\"Cover löschen\",\"KWa0gi\":\"Lösche Bild\",\"1l14WA\":\"Produkt löschen\",\"IatsLx\":\"Frage löschen\",\"Nu4oKW\":\"Beschreibung\",\"YC3oXa\":\"Beschreibung für das Eincheckpersonal\",\"URmyfc\":\"Einzelheiten\",\"1lRT3t\":\"Das Deaktivieren dieser Kapazität wird Verkäufe verfolgen, aber nicht stoppen, wenn das Limit erreicht ist\",\"H6Ma8Z\":\"Rabatt\",\"ypJ62C\":\"Rabatt %\",\"3LtiBI\":[\"Rabatt in \",[\"0\"]],\"C8JLas\":\"Rabattart\",\"1QfxQT\":\"Zurückweisen\",\"DZlSLn\":\"Dokumentenbeschriftung\",\"cVq+ga\":\"Sie haben noch kein Konto? <0>Registrieren\",\"3F1nBX\":\"Spende / Produkt mit freier Preiswahl\",\"OvNbls\":\".ics herunterladen\",\"kodV18\":\"CSV herunterladen\",\"CELKku\":\"Rechnung herunterladen\",\"LQrXcu\":\"Rechnung herunterladen\",\"QIodqd\":\"QR-Code herunterladen\",\"yhjU+j\":\"Rechnung wird heruntergeladen\",\"uABpqP\":\"Ziehen und ablegen oder klicken\",\"CfKofC\":\"Dropdown-Auswahl\",\"JzLDvy\":\"Duplizieren Sie Kapazitätszuweisungen\",\"ulMxl+\":\"Duplizieren Sie Check-in-Listen\",\"vi8Q/5\":\"Ereignis duplizieren\",\"3ogkAk\":\"Ereignis duplizieren\",\"Yu6m6X\":\"Duplizieren Sie das Titelbild des Ereignisses\",\"+fA4C7\":\"Optionen duplizieren\",\"SoiDyI\":\"Produkte duplizieren\",\"57ALrd\":\"Promo-Codes duplizieren\",\"83Hu4O\":\"Fragen duplizieren\",\"20144c\":\"Einstellungen duplizieren\",\"7Cx5It\":\"Früher Vogel\",\"ePK91l\":\"Bearbeiten\",\"N6j2JH\":[\"Bearbeiten \",[\"0\"]],\"kBkYSa\":\"Kapazität bearbeiten\",\"oHE9JT\":\"Kapazitätszuweisung bearbeiten\",\"j1Jl7s\":\"Kategorie bearbeiten\",\"FU1gvP\":\"Eincheckliste bearbeiten\",\"iFgaVN\":\"Code bearbeiten\",\"jrBSO1\":\"Organisator bearbeiten\",\"tdD/QN\":\"Produkt bearbeiten\",\"n143Tq\":\"Produktkategorie bearbeiten\",\"9BdS63\":\"Aktionscode bearbeiten\",\"O0CE67\":\"Frage bearbeiten\",\"EzwCw7\":\"Frage bearbeiten\",\"poTr35\":\"Benutzer bearbeiten\",\"GTOcxw\":\"Benutzer bearbeiten\",\"pqFrv2\":\"z.B. 2,50 für 2,50 $\",\"3yiej1\":\"z.B. 23,5 für 23,5 %\",\"O3oNi5\":\"Email\",\"VxYKoK\":\"E-Mail- und Benachrichtigungseinstellungen\",\"ATGYL1\":\"E-Mail-Adresse\",\"hzKQCy\":\"E-Mail-Adresse\",\"HqP6Qf\":\"E-Mail-Änderung erfolgreich abgebrochen\",\"mISwW1\":\"E-Mail-Änderung ausstehend\",\"APuxIE\":\"E-Mail-Bestätigung erneut gesendet\",\"YaCgdO\":\"E-Mail-Bestätigung erfolgreich erneut gesendet\",\"jyt+cx\":\"E-Mail-Fußzeilennachricht\",\"I6F3cp\":\"E-Mail nicht verifiziert\",\"NTZ/NX\":\"Code einbetten\",\"4rnJq4\":\"Skript einbetten\",\"8oPbg1\":\"Rechnungsstellung aktivieren\",\"j6w7d/\":\"Aktivieren Sie diese Kapazität, um den Produktverkauf zu stoppen, wenn das Limit erreicht ist\",\"VFv2ZC\":\"Endtermin\",\"237hSL\":\"Beendet\",\"nt4UkP\":\"Beendete Veranstaltungen\",\"lYGfRP\":\"Englisch\",\"MhVoma\":\"Geben Sie einen Betrag ohne Steuern und Gebühren ein.\",\"SlfejT\":\"Fehler\",\"3Z223G\":\"Fehler beim Bestätigen der E-Mail-Adresse\",\"a6gga1\":\"Fehler beim Bestätigen der E-Mail-Änderung\",\"5/63nR\":\"EUR\",\"0pC/y6\":\"Ereignis\",\"CFLUfD\":\"Veranstaltung erfolgreich erstellt 🎉\",\"/dgc8E\":\"Veranstaltungsdatum\",\"0Zptey\":\"Ereignisstandards\",\"QcCPs8\":\"Veranstaltungsdetails\",\"6fuA9p\":\"Ereignis erfolgreich dupliziert\",\"AEuj2m\":\"Veranstaltungsstartseite\",\"Xe3XMd\":\"Das Ereignis ist nicht öffentlich sichtbar\",\"4pKXJS\":\"Veranstaltung ist öffentlich sichtbar\",\"ClwUUD\":\"Veranstaltungsort & Details zum Veranstaltungsort\",\"OopDbA\":\"Veranstaltungsseite\",\"4/If97\":\"Die Aktualisierung des Ereignisstatus ist fehlgeschlagen. Bitte versuchen Sie es später erneut\",\"btxLWj\":\"Veranstaltungsstatus aktualisiert\",\"nMU2d3\":\"Veranstaltungs-URL\",\"tst44n\":\"Veranstaltungen\",\"sZg7s1\":\"Ablaufdatum\",\"KnN1Tu\":\"Läuft ab\",\"uaSvqt\":\"Verfallsdatum\",\"GS+Mus\":\"Export\",\"9xAp/j\":\"Teilnehmer konnte nicht abgesagt werden\",\"ZpieFv\":\"Stornierung der Bestellung fehlgeschlagen\",\"z6tdjE\":\"Nachricht konnte nicht gelöscht werden. Bitte versuchen Sie es erneut.\",\"xDzTh7\":\"Rechnung konnte nicht heruntergeladen werden. Bitte versuchen Sie es erneut.\",\"9zSt4h\":\"Das Exportieren der Teilnehmer ist fehlgeschlagen. Bitte versuchen Sie es erneut.\",\"2uGNuE\":\"Der Export der Bestellungen ist fehlgeschlagen. Bitte versuchen Sie es erneut.\",\"d+KKMz\":\"Laden der Eincheckliste fehlgeschlagen\",\"ZQ15eN\":\"Ticket-E-Mail konnte nicht erneut gesendet werden\",\"ejXy+D\":\"Produkte konnten nicht sortiert werden\",\"PLUB/s\":\"Gebühr\",\"/mfICu\":\"Gebühren\",\"LyFC7X\":\"Bestellungen filtern\",\"cSev+j\":\"Filter\",\"CVw2MU\":[\"Filter (\",[\"activeFilterCount\"],\")\"],\"wPmXlA\":\"Erste Rechnungsnummer\",\"V1EGGU\":\"Vorname\",\"kODvZJ\":\"Vorname\",\"S+tm06\":\"Der Vorname muss zwischen 1 und 50 Zeichen lang sein\",\"1g0dC4\":\"Vorname, Nachname und E-Mail-Adresse sind Standardfragen und werden immer in den Bestellvorgang einbezogen.\",\"Rs/IcB\":\"Erstmals verwendet\",\"TpqW74\":\"Fest\",\"irpUxR\":\"Fester Betrag\",\"TF9opW\":\"Flash ist auf diesem Gerät nicht verfügbar\",\"UNMVei\":\"Passwort vergessen?\",\"2POOFK\":\"Frei\",\"P/OAYJ\":\"Kostenloses Produkt\",\"vAbVy9\":\"Kostenloses Produkt, keine Zahlungsinformationen erforderlich\",\"nLC6tu\":\"Französisch\",\"Weq9zb\":\"Allgemein\",\"DDcvSo\":\"Deutsch\",\"4GLxhy\":\"Erste Schritte\",\"4D3rRj\":\"Zurück zum Profil\",\"9LCqFI\":\"Zur Event-Homepage\",\"ebIDwV\":\"Google Kalender\",\"RUz8o/\":\"Bruttoverkäufe\",\"IgcAGN\":\"Bruttoumsatz\",\"yRg26W\":\"Bruttoumsatz\",\"R4r4XO\":\"Gäste\",\"26pGvx\":\"Haben Sie einen Promo-Code?\",\"V7yhws\":\"hello@awesome-events.com\",\"6K/IHl\":\"Hier ist ein Beispiel, wie Sie die Komponente in Ihrer Anwendung verwenden können.\",\"Y1SSqh\":\"Hier ist die React-Komponente, die Sie verwenden können, um das Widget in Ihre Anwendung einzubetten.\",\"QuhVpV\":[\"Hallo \",[\"0\"],\" 👋\"],\"Ow9Hz5\":[\"Hi.Events-Konferenz \",[\"0\"]],\"verBst\":\"Hi.Events Konferenzzentrum\",\"6eMEQO\":\"hi.events-Logo\",\"C4qOW8\":\"Vor der Öffentlichkeit verborgen\",\"gt3Xw9\":\"versteckte Frage\",\"g3rqFe\":\"versteckte Fragen\",\"k3dfFD\":\"Versteckte Fragen sind nur für den Veranstalter und nicht für den Kunden sichtbar.\",\"vLyv1R\":\"Verstecken\",\"Mkkvfd\":\"Seite „Erste Schritte“ ausblenden\",\"mFn5Xz\":\"Versteckte Fragen ausblenden\",\"YHsF9c\":\"Produkt nach Verkaufsenddatum ausblenden\",\"06s3w3\":\"Produkt vor Verkaufsstartdatum ausblenden\",\"axVMjA\":\"Produkt ausblenden, es sei denn, der Benutzer hat einen gültigen Promo-Code\",\"ySQGHV\":\"Produkt bei Ausverkauf ausblenden\",\"SCimta\":\"Blenden Sie die Seite „Erste Schritte“ in der Seitenleiste aus.\",\"5xR17G\":\"Dieses Produkt vor Kunden verbergen\",\"Da29Y6\":\"Diese Frage verbergen\",\"fvDQhr\":\"Diese Ebene vor Benutzern verbergen\",\"lNipG+\":\"Das Ausblenden eines Produkts verhindert, dass Benutzer es auf der Veranstaltungsseite sehen.\",\"ZOBwQn\":\"Homepage-Design\",\"PRuBTd\":\"Homepage Designer\",\"YjVNGZ\":\"Homepage-Vorschau\",\"c3E/kw\":\"Homer\",\"8k8Njd\":\"Wie viele Minuten hat der Kunde Zeit, um seine Bestellung abzuschließen. Wir empfehlen mindestens 15 Minuten\",\"ySxKZe\":\"Wie oft kann dieser Code verwendet werden?\",\"dZsDbK\":[\"HTML-Zeichenlimit überschritten: \",[\"htmlLength\"],\"/\",[\"maxLength\"]],\"fYyXCd\":\"https://example-maps-service.com/...\",\"uOXLV3\":\"Ich stimme den <0>Allgemeinen Geschäftsbedingungen zu\",\"sd6lr7\":\"Ich möchte mit einer Offline-Methode bezahlen\",\"SdFlIP\":\"Ich möchte mit einer Online-Methode (z. B. Kreditkarte) bezahlen\",\"93DUnd\":[\"Wenn keine neue Registerkarte geöffnet wurde, <0><1>\",[\"0\"],\".\"],\"yKdof1\":\"Wenn leer, wird die Adresse verwendet, um einen Google Maps-Link zu erstellen\",\"UYT+c8\":\"Wenn aktiviert, kann das Check-in-Personal Teilnehmer entweder als eingecheckt markieren oder die Bestellung als bezahlt markieren und die Teilnehmer einchecken. Wenn deaktiviert, können Teilnehmer mit unbezahlten Bestellungen nicht eingecheckt werden.\",\"muXhGi\":\"Wenn aktiviert, erhält der Veranstalter eine E-Mail-Benachrichtigung, wenn eine neue Bestellung aufgegeben wird\",\"6fLyj/\":\"Sollten Sie diese Änderung nicht veranlasst haben, ändern Sie bitte umgehend Ihr Passwort.\",\"n/ZDCz\":\"Bild erfolgreich gelöscht\",\"Mfbc2v\":\"Bildabmessungen müssen zwischen 4000px und 4000px liegen. Mit einer maximalen Höhe von 4000px und einer maximalen Breite von 4000px\",\"uPEIvq\":\"Das Bild muss kleiner als 5 MB sein.\",\"AGZmwV\":\"Bild erfolgreich hochgeladen\",\"VyUuZb\":\"Bild-URL\",\"ibi52/\":\"Die Bildbreite muss mindestens 900 Pixel und die Höhe mindestens 50 Pixel betragen.\",\"NoNwIX\":\"Inaktiv\",\"T0K0yl\":\"Inaktive Benutzer können sich nicht anmelden.\",\"kO44sp\":\"Fügen Sie Verbindungsdetails für Ihr Online-Event hinzu. Diese Details werden auf der Bestellübersichtsseite und der Teilnehmer-Ticketseite angezeigt.\",\"FlQKnG\":\"Steuern und Gebühren im Preis einbeziehen\",\"Vi+BiW\":[\"Beinhaltet \",[\"0\"],\" Produkte\"],\"lpm0+y\":\"Beinhaltet 1 Produkt\",\"UiAk5P\":\"Bild einfügen\",\"OyLdaz\":\"Einladung erneut verschickt!\",\"HE6KcK\":\"Einladung widerrufen!\",\"SQKPvQ\":\"Benutzer einladen\",\"bKOYkd\":\"Rechnung erfolgreich heruntergeladen\",\"alD1+n\":\"Rechnungsnotizen\",\"kOtCs2\":\"Rechnungsnummerierung\",\"UZ2GSZ\":\"Rechnungseinstellungen\",\"PgdQrx\":\"Rückerstattung ausstellen\",\"HX5SVx\":\"Artikel\",\"KFXip/\":\"John\",\"XcgRvb\":\"Johnson\",\"87a/t/\":\"Etikett\",\"vXIe7J\":\"Sprache\",\"2LMsOq\":\"Letzte 12 Monate\",\"vfe90m\":\"Letzte 14 Tage\",\"aK4uBd\":\"Letzte 24 Stunden\",\"uq2BmQ\":\"Letzte 30 Tage\",\"bB6Ram\":\"Letzte 48 Stunden\",\"VlnB7s\":\"Letzte 6 Monate\",\"ct2SYD\":\"Letzte 7 Tage\",\"XgOuA7\":\"Letzte 90 Tage\",\"I3yitW\":\"Letzte Anmeldung\",\"1ZaQUH\":\"Nachname\",\"UXBCwc\":\"Familienname, Nachname\",\"tKCBU0\":\"Zuletzt verwendet\",\"tITjB1\":\"Erfahren Sie mehr über Stripe\",\"enV0g0\":\"Leer lassen, um das Standardwort \\\"Rechnung\\\" zu verwenden\",\"vR92Yn\":\"Beginnen wir mit der Erstellung Ihres ersten Organizers\",\"Z3FXyt\":\"Wird geladen...\",\"wJijgU\":\"Standort\",\"sQia9P\":\"Anmelden\",\"zUDyah\":\"Einloggen\",\"z0t9bb\":\"Anmelden\",\"nOhz3x\":\"Ausloggen\",\"F2jAFv\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ich habe das Element platziert …\",\"NJahlc\":\"Rechnungsadresse beim Checkout erforderlich machen\",\"MU3ijv\":\"Machen Sie diese Frage obligatorisch\",\"wckWOP\":\"Verwalten\",\"onpJrA\":\"Teilnehmer verwalten\",\"n4SpU5\":\"Veranstaltung verwalten\",\"WVgSTy\":\"Bestellung verwalten\",\"1MAvUY\":\"Zahlungs- und Rechnungseinstellungen für diese Veranstaltung verwalten.\",\"cQrNR3\":\"Profil verwalten\",\"AtXtSw\":\"Verwalten Sie Steuern und Gebühren, die auf Ihre Produkte angewendet werden können\",\"ophZVW\":\"Tickets verwalten\",\"DdHfeW\":\"Verwalten Sie Ihre Kontodetails und Standardeinstellungen\",\"S+UjNL\":\"Verwalten Sie Ihre Stripe-Zahlungsdetails\",\"BfucwY\":\"Verwalten Sie Ihre Benutzer und deren Berechtigungen\",\"1m+YT2\":\"Bevor der Kunde zur Kasse gehen kann, müssen obligatorische Fragen beantwortet werden.\",\"Dim4LO\":\"Einen Teilnehmer manuell hinzufügen\",\"e4KdjJ\":\"Teilnehmer manuell hinzufügen\",\"vFjEnF\":\"Als bezahlt markieren\",\"g9dPPQ\":\"Maximal pro Bestellung\",\"l5OcwO\":\"Nachricht an Teilnehmer\",\"Gv5AMu\":\"Nachrichten an Teilnehmer senden\",\"oUCR3c\":\"Nachricht an Teilnehmer mit bestimmten Produkten senden\",\"Lvi+gV\":\"Nachricht an den Käufer\",\"tNZzFb\":\"Nachrichteninhalt\",\"lYDV/s\":\"Nachrichten an einzelne Teilnehmer senden\",\"V7DYWd\":\"Nachricht gesendet\",\"t7TeQU\":\"Mitteilungen\",\"xFRMlO\":\"Mindestbestellwert\",\"QYcUEf\":\"Minimaler Preis\",\"RDie0n\":\"Sonstiges\",\"mYLhkl\":\"Verschiedene Einstellungen\",\"KYveV8\":\"Mehrzeiliges Textfeld\",\"VD0iA7\":\"Mehrere Preisoptionen. Perfekt für Frühbucherprodukte usw.\",\"/bhMdO\":\"Meine tolle Eventbeschreibung...\",\"vX8/tc\":\"Mein toller Veranstaltungstitel …\",\"hKtWk2\":\"Mein Profil\",\"fj5byd\":\"N/V\",\"pRjx4L\":\"Ich habe das Element platziert …\",\"6YtxFj\":\"Name\",\"hVuv90\":\"Der Name sollte weniger als 150 Zeichen lang sein\",\"AIUkyF\":\"Navigieren Sie zu Teilnehmer\",\"qqeAJM\":\"Niemals\",\"7vhWI8\":\"Neues Kennwort\",\"1UzENP\":\"NEIN\",\"eRblWH\":[\"Kein \",[\"0\"],\" verfügbar.\"],\"LNWHXb\":\"Keine archivierten Veranstaltungen anzuzeigen.\",\"q2LEDV\":\"Für diese Bestellung wurden keine Teilnehmer gefunden.\",\"zlHa5R\":\"Zu dieser Bestellung wurden keine Teilnehmer hinzugefügt.\",\"Wjz5KP\":\"Keine Teilnehmer zum Anzeigen\",\"Razen5\":\"Vor diesem Datum kann sich niemand mit dieser Liste einchecken\",\"XUfgCI\":\"Keine Kapazitätszuweisungen\",\"a/gMx2\":\"Keine Einchecklisten\",\"tMFDem\":\"Keine Daten verfügbar\",\"6Z/F61\":\"Keine Daten verfügbar. Bitte wählen Sie einen Datumsbereich aus.\",\"fFeCKc\":\"Kein Rabatt\",\"HFucK5\":\"Keine beendeten Veranstaltungen anzuzeigen.\",\"yAlJXG\":\"Keine Ereignisse zum Anzeigen\",\"GqvPcv\":\"Keine Filter verfügbar\",\"KPWxKD\":\"Keine Nachrichten zum Anzeigen\",\"J2LkP8\":\"Keine Bestellungen anzuzeigen\",\"RBXXtB\":\"Derzeit sind keine Zahlungsmethoden verfügbar. Bitte wenden Sie sich an den Veranstalter, um Unterstützung zu erhalten.\",\"ZWEfBE\":\"Keine Zahlung erforderlich\",\"ZPoHOn\":\"Kein Produkt mit diesem Teilnehmer verknüpft.\",\"Ya1JhR\":\"Keine Produkte in dieser Kategorie verfügbar.\",\"FTfObB\":\"Noch keine Produkte\",\"+Y976X\":\"Keine Promo-Codes anzuzeigen\",\"MAavyl\":\"Dieser Teilnehmer hat keine Fragen beantwortet.\",\"SnlQeq\":\"Für diese Bestellung wurden keine Fragen gestellt.\",\"Ev2r9A\":\"Keine Ergebnisse\",\"gk5uwN\":\"Keine Suchergebnisse\",\"RHyZUL\":\"Keine Suchergebnisse.\",\"RY2eP1\":\"Es wurden keine Steuern oder Gebühren hinzugefügt.\",\"EdQY6l\":\"Keiner\",\"OJx3wK\":\"Nicht verfügbar\",\"Scbrsn\":\"Nicht im Angebot\",\"1DBGsz\":\"Notizen\",\"jtrY3S\":\"Noch nichts zu zeigen\",\"hFwWnI\":\"Benachrichtigungseinstellungen\",\"xXqEPO\":\"Käufer über Rückerstattung benachrichtigen\",\"YpN29s\":\"Veranstalter über neue Bestellungen benachrichtigen\",\"qeQhNj\":\"Jetzt erstellen wir Ihr erstes Event\",\"omyBS0\":\"Anzahl der für die Zahlung zulässigen Tage (leer lassen, um Zahlungsbedingungen auf Rechnungen wegzulassen)\",\"n86jmj\":\"Nummernpräfix\",\"mwe+2z\":\"Offline-Bestellungen werden in der Veranstaltungsstatistik erst berücksichtigt, wenn die Bestellung als bezahlt markiert wurde.\",\"dWBrJX\":\"Offline-Zahlung fehlgeschlagen. Bitte versuchen Sie es erneut oder kontaktieren Sie den Veranstalter.\",\"fcnqjw\":\"Anweisungen für Offline-Zahlungen\",\"+eZ7dp\":\"Offline-Zahlungen\",\"ojDQlR\":\"Informationen zu Offline-Zahlungen\",\"u5oO/W\":\"Einstellungen für Offline-Zahlungen\",\"2NPDz1\":\"Im Angebot\",\"Ldu/RI\":\"Im Angebot\",\"Ug4SfW\":\"Sobald Sie ein Ereignis erstellt haben, wird es hier angezeigt.\",\"ZxnK5C\":\"Sobald Sie Daten sammeln, werden sie hier angezeigt.\",\"PnSzEc\":\"Sobald Sie bereit sind, setzen Sie Ihre Veranstaltung live und beginnen Sie mit dem Verkauf von Produkten.\",\"J6n7sl\":\"Laufend\",\"z+nuVJ\":\"Online-Veranstaltung\",\"WKHW0N\":\"Details zur Online-Veranstaltung\",\"/xkmKX\":\"Über dieses Formular sollten ausschließlich wichtige E-Mails gesendet werden, die in direktem Zusammenhang mit dieser Veranstaltung stehen.\\nJeder Missbrauch, einschließlich des Versendens von Werbe-E-Mails, führt zu einer sofortigen Sperrung des Kontos.\",\"Qqqrwa\":\"Eincheckseite öffnen\",\"OdnLE4\":\"Seitenleiste öffnen\",\"ZZEYpT\":[\"Option \",[\"i\"]],\"oPknTP\":\"Optionale zusätzliche Informationen, die auf allen Rechnungen erscheinen (z. B. Zahlungsbedingungen, Gebühren für verspätete Zahlungen, Rückgaberichtlinien)\",\"OrXJBY\":\"Optionales Präfix für Rechnungsnummern (z. B. INV-)\",\"0zpgxV\":\"Optionen\",\"BzEFor\":\"oder\",\"UYUgdb\":\"Befehl\",\"mm+eaX\":\"Befehl #\",\"B3gPuX\":\"Bestellung storniert\",\"SIbded\":\"Bestellung abgeschlossen\",\"q/CcwE\":\"Auftragsdatum\",\"Tol4BF\":\"Bestelldetails\",\"WbImlQ\":\"Die Bestellung wurde storniert und der Bestellinhaber wurde benachrichtigt.\",\"nAn4Oe\":\"Bestellung als bezahlt markiert\",\"uzEfRz\":\"Bestellnotizen\",\"VCOi7U\":\"Fragen zur Bestellung\",\"TPoYsF\":\"Bestellnummer\",\"acIJ41\":\"Bestellstatus\",\"GX6dZv\":\"Bestellübersicht\",\"tDTq0D\":\"Bestell-Timeout\",\"1h+RBg\":\"Aufträge\",\"3y+V4p\":\"Organisationsadresse\",\"GVcaW6\":\"Organisationsdetails\",\"nfnm9D\":\"Organisationsname\",\"G5RhpL\":\"Veranstalter\",\"mYygCM\":\"Veranstalter ist erforderlich\",\"Pa6G7v\":\"Name des Organisators\",\"l894xP\":\"Organisatoren können nur Veranstaltungen und Produkte verwalten. Sie können keine Benutzer, Kontoeinstellungen oder Abrechnungsinformationen verwalten.\",\"fdjq4c\":\"Polsterung\",\"ErggF8\":\"Hintergrundfarbe der Seite\",\"8F1i42\":\"Seite nicht gefunden\",\"QbrUIo\":\"Seitenaufrufe\",\"6D8ePg\":\"Seite.\",\"IkGIz8\":\"bezahlt\",\"HVW65c\":\"Bezahltes Produkt\",\"ZfxaB4\":\"Teilweise erstattet\",\"8ZsakT\":\"Passwort\",\"TUJAyx\":\"Das Passwort muss mindestens 8 Zeichen lang sein\",\"vwGkYB\":\"Das Passwort muss mindestens 8 Zeichen lang sein\",\"BLTZ42\":\"Passwort erfolgreich zurückgesetzt. Bitte melden Sie sich mit Ihrem neuen Passwort an.\",\"f7SUun\":\"Passwörter sind nicht gleich\",\"aEDp5C\":\"Fügen Sie dies dort ein, wo das Widget erscheinen soll.\",\"+23bI/\":\"Patrick\",\"iAS9f2\":\"patrick@acme.com\",\"621rYf\":\"Zahlung\",\"Lg+ewC\":\"Zahlung & Rechnungsstellung\",\"DZjk8u\":\"Einstellungen für Zahlung & Rechnungsstellung\",\"lflimf\":\"Zahlungsfrist\",\"JhtZAK\":\"Bezahlung fehlgeschlagen\",\"JEdsvQ\":\"Zahlungsanweisungen\",\"bLB3MJ\":\"Zahlungsmethoden\",\"QzmQBG\":\"Zahlungsanbieter\",\"lsxOPC\":\"Zahlung erhalten\",\"wJTzyi\":\"Zahlungsstatus\",\"xgav5v\":\"Zahlung erfolgreich abgeschlossen!\",\"R29lO5\":\"Zahlungsbedingungen\",\"/roQKz\":\"Prozentsatz\",\"vPJ1FI\":\"Prozentualer Betrag\",\"xdA9ud\":\"Platzieren Sie dies im Ihrer Website.\",\"blK94r\":\"Bitte fügen Sie mindestens eine Option hinzu\",\"FJ9Yat\":\"Bitte überprüfen Sie, ob die angegebenen Informationen korrekt sind\",\"TkQVup\":\"Bitte überprüfen Sie Ihre E-Mail und Ihr Passwort und versuchen Sie es erneut\",\"sMiGXD\":\"Bitte überprüfen Sie, ob Ihre E-Mail gültig ist\",\"Ajavq0\":\"Bitte überprüfen Sie Ihre E-Mail, um Ihre E-Mail-Adresse zu bestätigen\",\"MdfrBE\":\"Bitte füllen Sie das folgende Formular aus, um Ihre Einladung anzunehmen\",\"b1Jvg+\":\"Bitte fahren Sie im neuen Tab fort\",\"hcX103\":\"Bitte erstellen Sie ein Produkt\",\"cdR8d6\":\"Bitte erstellen Sie ein Ticket\",\"x2mjl4\":\"Bitte geben Sie eine gültige Bild-URL ein, die auf ein Bild verweist.\",\"HnNept\":\"Bitte geben Sie Ihr neues Passwort ein\",\"5FSIzj\":\"Bitte beachten Sie\",\"C63rRe\":\"Bitte kehre zur Veranstaltungsseite zurück, um neu zu beginnen.\",\"pJLvdS\":\"Bitte auswählen\",\"Ewir4O\":\"Bitte wählen Sie mindestens ein Produkt aus\",\"igBrCH\":\"Bitte bestätigen Sie Ihre E-Mail-Adresse, um auf alle Funktionen zugreifen zu können\",\"/IzmnP\":\"Bitte warten Sie, während wir Ihre Rechnung vorbereiten...\",\"MOERNx\":\"Portugiesisch\",\"qCJyMx\":\"Checkout-Nachricht veröffentlichen\",\"g2UNkE\":\"Angetrieben von\",\"Rs7IQv\":\"Nachricht vor dem Checkout\",\"rdUucN\":\"Vorschau\",\"a7u1N9\":\"Preis\",\"CmoB9j\":\"Preisanzeigemodus\",\"BI7D9d\":\"Preis nicht festgelegt\",\"Q8PWaJ\":\"Preisstufen\",\"q6XHL1\":\"Preistyp\",\"6RmHKN\":\"Primärfarbe\",\"G/ZwV1\":\"Grundfarbe\",\"8cBtvm\":\"Primäre Textfarbe\",\"BZz12Q\":\"Drucken\",\"MT7dxz\":\"Alle Tickets ausdrucken\",\"DKwDdj\":\"Tickets drucken\",\"K47k8R\":\"Produkt\",\"1JwlHk\":\"Produktkategorie\",\"U61sAj\":\"Produktkategorie erfolgreich aktualisiert.\",\"1USFWA\":\"Produkt erfolgreich gelöscht\",\"4Y2FZT\":\"Produktpreistyp\",\"mFwX0d\":\"Produktfragen\",\"Lu+kBU\":\"Produktverkäufe\",\"U/R4Ng\":\"Produktebene\",\"sJsr1h\":\"Produkttyp\",\"o1zPwM\":\"Produkt-Widget-Vorschau\",\"ktyvbu\":\"Produkt(e)\",\"N0qXpE\":\"Produkte\",\"ggqAiw\":\"verkaufte Produkte\",\"Vla0Bo\":\"Verkaufte Produkte\",\"/u4DIx\":\"Verkaufte Produkte\",\"DJQEZc\":\"Produkte erfolgreich sortiert\",\"vERlcd\":\"Profil\",\"kUlL8W\":\"Profil erfolgreich aktualisiert\",\"cl5WYc\":[\"Aktionscode \",[\"promo_code\"],\" angewendet\"],\"P5sgAk\":\"Aktionscode\",\"yKWfjC\":\"Aktionscode-Seite\",\"RVb8Fo\":\"Promo-Codes\",\"BZ9GWa\":\"Mit Promo-Codes können Sie Rabatte oder Vorverkaufszugang anbieten oder Sonderzugang zu Ihrer Veranstaltung gewähren.\",\"OP094m\":\"Bericht zu Aktionscodes\",\"4kyDD5\":\"Geben Sie zusätzlichen Kontext oder Anweisungen für diese Frage an. Verwenden Sie dieses Feld, um Bedingungen, Richtlinien oder wichtige Informationen hinzuzufügen, die die Teilnehmer vor dem Beantworten wissen müssen.\",\"toutGW\":\"QR-Code\",\"LkMOWF\":\"Verfügbare Menge\",\"oCLG0M\":\"Verkaufte Menge\",\"XKJuAX\":\"Frage gelöscht\",\"avf0gk\":\"Fragebeschreibung\",\"oQvMPn\":\"Fragentitel\",\"enzGAL\":\"Fragen\",\"ROv2ZT\":\"Fragen & Antworten\",\"K885Eq\":\"Fragen erfolgreich sortiert\",\"OMJ035\":\"Radio-Option\",\"C4TjpG\":\"Lese weniger\",\"I3QpvQ\":\"Empfänger\",\"N2C89m\":\"Referenz\",\"gxFu7d\":[\"Rückerstattungsbetrag (\",[\"0\"],\")\"],\"WZbCR3\":\"Rückerstattung fehlgeschlagen\",\"n10yGu\":\"Rückerstattungsauftrag\",\"zPH6gp\":\"Rückerstattungsauftrag\",\"RpwiYC\":\"Rückerstattung ausstehend\",\"xHpVRl\":\"Rückerstattungsstatus\",\"/BI0y9\":\"Rückerstattung\",\"fgLNSM\":\"Registrieren\",\"9+8Vez\":\"Verbleibende Verwendungen\",\"tasfos\":\"entfernen\",\"t/YqKh\":\"Entfernen\",\"t9yxlZ\":\"Berichte\",\"prZGMe\":\"Rechnungsadresse erforderlich\",\"EGm34e\":\"Bestätigungsmail erneut senden\",\"lnrkNz\":\"E-Mail-Bestätigung erneut senden\",\"wIa8Qe\":\"Einladung erneut versenden\",\"VeKsnD\":\"Bestell-E-Mail erneut senden\",\"dFuEhO\":\"Ticket-E-Mail erneut senden\",\"o6+Y6d\":\"Erneut senden...\",\"OfhWJH\":\"Zurücksetzen\",\"RfwZxd\":\"Passwort zurücksetzen\",\"KbS2K9\":\"Passwort zurücksetzen\",\"e99fHm\":\"Veranstaltung wiederherstellen\",\"vtc20Z\":\"Zurück zur Veranstaltungsseite\",\"s8v9hq\":\"Zur Veranstaltungsseite zurückkehren\",\"8YBH95\":\"Einnahmen\",\"PO/sOY\":\"Einladung widerrufen\",\"GDvlUT\":\"Rolle\",\"ELa4O9\":\"Verkaufsende\",\"5uo5eP\":\"Der Verkauf ist beendet\",\"Qm5XkZ\":\"Verkaufsstartdatum\",\"hBsw5C\":\"Verkauf beendet\",\"kpAzPe\":\"Verkaufsstart\",\"P/wEOX\":\"San Francisco\",\"tfDRzk\":\"Speichern\",\"IUwGEM\":\"Änderungen speichern\",\"U65fiW\":\"Organizer speichern\",\"UGT5vp\":\"Einstellungen speichern\",\"ovB7m2\":\"QR-Code scannen\",\"EEU0+z\":\"Scannen Sie diesen QR-Code, um auf die Veranstaltungsseite zuzugreifen oder teilen Sie ihn mit anderen\",\"W4kWXJ\":\"Suche nach Teilnehmername, E-Mail oder Bestellnummer ...\",\"+pr/FY\":\"Suche nach Veranstaltungsnamen...\",\"3zRbWw\":\"Suchen Sie nach Namen, E-Mail oder Bestellnummer ...\",\"L22Tdf\":\"Suchen nach Name, Bestellnummer, Teilnehmernummer oder E-Mail...\",\"BiYOdA\":\"Suche mit Name...\",\"YEjitp\":\"Suche nach Thema oder Inhalt...\",\"Pjsch9\":\"Kapazitätszuweisungen suchen...\",\"r9M1hc\":\"Einchecklisten durchsuchen...\",\"+0Yy2U\":\"Produkte suchen\",\"YIix5Y\":\"Suchen...\",\"OeW+DS\":\"Sekundäre Farbe\",\"DnXcDK\":\"Sekundäre Farbe\",\"cZF6em\":\"Sekundäre Textfarbe\",\"ZIgYeg\":\"Sekundäre Textfarbe\",\"02ePaq\":[[\"0\"],\" auswählen\"],\"QuNKRX\":\"Kamera auswählen\",\"9FQEn8\":\"Kategorie auswählen...\",\"kWI/37\":\"Veranstalter auswählen\",\"ixIx1f\":\"Produkt auswählen\",\"3oSV95\":\"Produktebene auswählen\",\"C4Y1hA\":\"Produkte auswählen\",\"hAjDQy\":\"Status auswählen\",\"QYARw/\":\"Ticket auswählen\",\"OMX4tH\":\"Tickets auswählen\",\"DrwwNd\":\"Zeitraum auswählen\",\"O/7I0o\":\"Wählen...\",\"JlFcis\":\"Schicken\",\"qKWv5N\":[\"Senden Sie eine Kopie an <0>\",[\"0\"],\"\"],\"RktTWf\":\"Eine Nachricht schicken\",\"/mQ/tD\":\"Als Test senden. Dadurch wird die Nachricht an Ihre E-Mail-Adresse und nicht an die Empfänger gesendet.\",\"M/WIer\":\"Nachricht Senden\",\"D7ZemV\":\"Bestellbestätigung und Ticket-E-Mail senden\",\"v1rRtW\":\"Test senden\",\"4Ml90q\":\"SEO\",\"j1VfcT\":\"SEO-Beschreibung\",\"/SIY6o\":\"SEO-Schlüsselwörter\",\"GfWoKv\":\"SEO-Einstellungen\",\"rXngLf\":\"SEO-Titel\",\"/jZOZa\":\"Servicegebühr\",\"Bj/QGQ\":\"Legen Sie einen Mindestpreis fest und lassen Sie die Nutzer mehr zahlen, wenn sie wollen.\",\"L0pJmz\":\"Legen Sie die Startnummer für die Rechnungsnummerierung fest. Dies kann nicht geändert werden, sobald Rechnungen generiert wurden.\",\"nYNT+5\":\"Richten Sie Ihre Veranstaltung ein\",\"A8iqfq\":\"Schalten Sie Ihr Event live\",\"Tz0i8g\":\"Einstellungen\",\"Z8lGw6\":\"Teilen\",\"B2V3cA\":\"Veranstaltung teilen\",\"17Fd7X\":\"Auf Facebook teilen\",\"x7i6H+\":\"Auf LinkedIn teilen\",\"zziQd8\":\"Auf Pinterest teilen\",\"/TgBEk\":\"Auf Reddit teilen\",\"0Wlk5F\":\"Auf sozialen Medien teilen\",\"on+mNS\":\"Auf Telegram teilen\",\"PcmR+m\":\"Auf WhatsApp teilen\",\"/5b1iZ\":\"Auf X teilen\",\"n/T2KI\":\"Per E-Mail teilen\",\"8vETh9\":\"Zeigen\",\"V0SbFp\":\"Verfügbare Produktmenge anzeigen\",\"qDsmzu\":\"Versteckte Fragen anzeigen\",\"fMPkxb\":\"Zeig mehr\",\"izwOOD\":\"Steuern und Gebühren separat ausweisen\",\"1SbbH8\":\"Wird dem Kunden nach dem Checkout auf der Bestellübersichtsseite angezeigt.\",\"YfHZv0\":\"Wird dem Kunden vor dem Bezahlvorgang angezeigt\",\"CBBcly\":\"Zeigt allgemeine Adressfelder an, einschließlich Land\",\"yTnnYg\":\"Simpson\",\"TNaCfq\":\"Einzeiliges Textfeld\",\"+P0Cn2\":\"Überspringe diesen Schritt\",\"YSEnLE\":\"Schmied\",\"lgFfeO\":\"Ausverkauft\",\"Mi1rVn\":\"Ausverkauft\",\"nwtY4N\":\"Etwas ist schief gelaufen\",\"GRChTw\":\"Beim Löschen der Steuer oder Gebühr ist ein Fehler aufgetreten\",\"YHFrbe\":\"Etwas ist schief gelaufen. Bitte versuche es erneut\",\"kf83Ld\":\"Etwas ist schief gelaufen.\",\"fWsBTs\":\"Etwas ist schief gelaufen. Bitte versuche es erneut.\",\"F6YahU\":\"Es ist leider ein Fehler aufgetreten. Bitte starten Sie den Bezahlvorgang erneut.\",\"KWgppI\":\"Entschuldigen Sie, beim Laden dieser Seite ist ein Fehler aufgetreten.\",\"/TCOIK\":\"Entschuldigung, diese Bestellung existiert nicht mehr.\",\"6a/UJE\":\"Dieser Aktionscode wird leider nicht erkannt\",\"65A04M\":\"Spanisch\",\"mFuBqb\":\"Standardprodukt mit festem Preis\",\"D3iCkb\":\"Startdatum\",\"/2by1f\":\"Staat oder Region\",\"uAQUqI\":\"Status\",\"4HXezG\":\"Stripe\",\"WbopAG\":\"Stripe-Zahlungen sind für diese Veranstaltung nicht aktiviert.\",\"UJmAAK\":\"Thema\",\"X2rrlw\":\"Zwischensumme\",\"zzDlyQ\":\"Erfolg\",\"b0HJ45\":[\"Erfolgreich! \",[\"0\"],\" erhält in Kürze eine E-Mail.\"],\"BJIEiF\":[\"Erfolgreich \",[\"0\"],\" Teilnehmer\"],\"OtgNFx\":\"E-Mail-Adresse erfolgreich bestätigt\",\"IKwyaF\":\"E-Mail-Änderung erfolgreich bestätigt\",\"zLmvhE\":\"Teilnehmer erfolgreich erstellt\",\"gP22tw\":\"Produkt erfolgreich erstellt\",\"9mZEgt\":\"Promo-Code erfolgreich erstellt\",\"aIA9C4\":\"Frage erfolgreich erstellt\",\"J3RJSZ\":\"Teilnehmer erfolgreich aktualisiert\",\"3suLF0\":\"Kapazitätszuweisung erfolgreich aktualisiert\",\"Z+rnth\":\"Eincheckliste erfolgreich aktualisiert\",\"vzJenu\":\"E-Mail-Einstellungen erfolgreich aktualisiert\",\"7kOMfV\":\"Ereignis erfolgreich aktualisiert\",\"G0KW+e\":\"Erfolgreich aktualisiertes Homepage-Design\",\"k9m6/E\":\"Homepage-Einstellungen erfolgreich aktualisiert\",\"y/NR6s\":\"Standort erfolgreich aktualisiert\",\"73nxDO\":\"Verschiedene Einstellungen erfolgreich aktualisiert\",\"4H80qv\":\"Bestellung erfolgreich aktualisiert\",\"6xCBVN\":\"Einstellungen für Zahlung & Rechnungsstellung erfolgreich aktualisiert\",\"1Ycaad\":\"Produkt erfolgreich aktualisiert\",\"70dYC8\":\"Promo-Code erfolgreich aktualisiert\",\"F+pJnL\":\"SEO-Einstellungen erfolgreich aktualisiert\",\"DXZRk5\":\"Suite 100\",\"GNcfRk\":\"Support-E-Mail\",\"uRfugr\":\"T-Shirt\",\"JpohL9\":\"Steuer\",\"geUFpZ\":\"Steuern & Gebühren\",\"dFHcIn\":\"Steuerdetails\",\"wQzCPX\":\"Steuerinformationen, die unten auf allen Rechnungen erscheinen sollen (z. B. USt-Nummer, Steuerregistrierung)\",\"0RXCDo\":\"Steuer oder Gebühr erfolgreich gelöscht\",\"ZowkxF\":\"Steuern\",\"qu6/03\":\"Steuern und Gebühren\",\"gypigA\":\"Dieser Aktionscode ist ungültig\",\"5ShqeM\":\"Die gesuchte Eincheckliste existiert nicht.\",\"QXlz+n\":\"Die Standardwährung für Ihre Ereignisse.\",\"mnafgQ\":\"Die Standardzeitzone für Ihre Ereignisse.\",\"o7s5FA\":\"Die Sprache, in der der Teilnehmer die E-Mails erhalten soll.\",\"NlfnUd\":\"Der Link, auf den Sie geklickt haben, ist ungültig.\",\"HsFnrk\":[\"Die maximale Anzahl an Produkten für \",[\"0\"],\" ist \",[\"1\"]],\"TSAiPM\":\"Die gesuchte Seite existiert nicht\",\"MSmKHn\":\"Der dem Kunden angezeigte Preis versteht sich inklusive Steuern und Gebühren.\",\"6zQOg1\":\"Der dem Kunden angezeigte Preis enthält keine Steuern und Gebühren. Diese werden separat ausgewiesen\",\"ne/9Ur\":\"Die von Ihnen gewählten Stileinstellungen gelten nur für kopiertes HTML und werden nicht gespeichert.\",\"vQkyB3\":\"Die Steuern und Gebühren, die auf dieses Produkt angewendet werden. Sie können neue Steuern und Gebühren erstellen auf der\",\"esY5SG\":\"Der Titel der Veranstaltung, der in Suchmaschinenergebnissen und beim Teilen in sozialen Medien angezeigt wird. Standardmäßig wird der Veranstaltungstitel verwendet\",\"wDx3FF\":\"Für diese Veranstaltung sind keine Produkte verfügbar\",\"pNgdBv\":\"In dieser Kategorie sind keine Produkte verfügbar\",\"rMcHYt\":\"Eine Rückerstattung steht aus. Bitte warten Sie, bis der Vorgang abgeschlossen ist, bevor Sie eine weitere Rückerstattung anfordern.\",\"F89D36\":\"Beim Markieren der Bestellung als bezahlt ist ein Fehler aufgetreten\",\"68Axnm\":\"Bei der Bearbeitung Ihrer Anfrage ist ein Fehler aufgetreten. Bitte versuchen Sie es erneut.\",\"mVKOW6\":\"Beim Senden Ihrer Nachricht ist ein Fehler aufgetreten\",\"AhBPHd\":\"Diese Details werden nur angezeigt, wenn die Bestellung erfolgreich abgeschlossen wurde. Bestellungen, die auf Zahlung warten, zeigen diese Nachricht nicht an.\",\"Pc/Wtj\":\"Dieser Teilnehmer hat eine unbezahlte Bestellung.\",\"mf3FrP\":\"Diese Kategorie hat noch keine Produkte.\",\"8QH2Il\":\"Diese Kategorie ist vor der öffentlichen Ansicht verborgen\",\"xxv3BZ\":\"Diese Eincheckliste ist abgelaufen\",\"Sa7w7S\":\"Diese Eincheckliste ist abgelaufen und steht nicht mehr für Eincheckungen zur Verfügung.\",\"Uicx2U\":\"Diese Eincheckliste ist aktiv\",\"1k0Mp4\":\"Diese Eincheckliste ist noch nicht aktiv\",\"K6fmBI\":\"Diese Eincheckliste ist noch nicht aktiv und steht nicht für Eincheckungen zur Verfügung.\",\"t/ePFj\":\"Diese Beschreibung wird dem Eincheckpersonal angezeigt\",\"MLTkH7\":\"Diese E-Mail hat keinen Werbezweck und steht in direktem Zusammenhang mit der Veranstaltung.\",\"2eIpBM\":\"Dieses Event ist momentan nicht verfügbar. Bitte versuchen Sie es später noch einmal.\",\"Z6LdQU\":\"Dieses Event ist nicht verfügbar.\",\"MMd2TJ\":\"Diese Informationen werden auf der Zahlungsseite, der Bestellübersichtsseite und in der Bestellbestätigungs-E-Mail angezeigt.\",\"XAHqAg\":\"Dies ist ein allgemeines Produkt, wie ein T-Shirt oder eine Tasse. Es wird kein Ticket ausgestellt\",\"CNk/ro\":\"Dies ist eine Online-Veranstaltung\",\"FwXnJd\":\"Diese Liste wird nach diesem Datum nicht mehr für Eincheckungen verfügbar sein\",\"cHO4ec\":\"Diese Nachricht wird in die Fußzeile aller E-Mails aufgenommen, die von dieser Veranstaltung gesendet werden.\",\"55i7Fa\":\"Diese Nachricht wird nur angezeigt, wenn die Bestellung erfolgreich abgeschlossen wurde. Bestellungen, die auf Zahlung warten, zeigen diese Nachricht nicht an.\",\"RjwlZt\":\"Diese Bestellung wurde bereits bezahlt.\",\"5K8REg\":\"Diese Bestellung wurde bereits zurückerstattet.\",\"OiQMhP\":\"Diese Bestellung wurde storniert\",\"YyEJij\":\"Diese Bestellung wurde storniert.\",\"Q0zd4P\":\"Diese Bestellung ist abgelaufen. Bitte erneut beginnen.\",\"HILpDX\":\"Diese Bestellung wartet auf Zahlung\",\"BdYtn9\":\"Diese Bestellung ist abgeschlossen\",\"e3uMJH\":\"Diese Bestellung ist abgeschlossen.\",\"YNKXOK\":\"Diese Bestellung wird bearbeitet.\",\"yPZN4i\":\"Diese Bestellseite ist nicht mehr verfügbar.\",\"i0TtkR\":\"Dies überschreibt alle Sichtbarkeitseinstellungen und verbirgt das Produkt vor allen Kunden.\",\"cRRc+F\":\"Dieses Produkt kann nicht gelöscht werden, da es mit einer Bestellung verknüpft ist. Sie können es stattdessen ausblenden.\",\"3Kzsk7\":\"Dieses Produkt ist ein Ticket. Käufer erhalten nach dem Kauf ein Ticket\",\"0fT4x3\":\"Dieses Produkt ist vor der öffentlichen Ansicht verborgen\",\"Y/x1MZ\":\"Dieses Produkt ist verborgen, es sei denn, es wird von einem Promo-Code anvisiert\",\"Qt7RBu\":\"Diese Frage ist nur für den Veranstalter sichtbar\",\"os29v1\":\"Dieser Link zum Zurücksetzen des Passworts ist ungültig oder abgelaufen.\",\"IV9xTT\":\"Dieser Benutzer ist nicht aktiv, da er die Einladung nicht angenommen hat.\",\"5AnPaO\":\"Fahrkarte\",\"kjAL4v\":\"Fahrkarte\",\"dtGC3q\":\"Die Ticket-E-Mail wurde erneut an den Teilnehmer gesendet.\",\"54q0zp\":\"Tickets für\",\"xN9AhL\":[\"Stufe \",[\"0\"]],\"jZj9y9\":\"Gestuftes Produkt\",\"8wITQA\":\"Gestufte Produkte ermöglichen es Ihnen, mehrere Preisoptionen für dasselbe Produkt anzubieten. Dies ist ideal für Frühbucherprodukte oder um unterschiedliche Preisoptionen für verschiedene Personengruppen anzubieten.\\\" # de\",\"nn3mSR\":\"Verbleibende Zeit:\",\"s/0RpH\":\"Nutzungshäufigkeit\",\"y55eMd\":\"Anzahl der Verwendungen\",\"40Gx0U\":\"Zeitzone\",\"oDGm7V\":\"TIPP\",\"MHrjPM\":\"Titel\",\"xdA/+p\":\"Werkzeuge\",\"72c5Qo\":\"Gesamt\",\"YXx+fG\":\"Gesamt vor Rabatten\",\"NRWNfv\":\"Gesamtrabattbetrag\",\"BxsfMK\":\"Gesamtkosten\",\"2bR+8v\":\"Gesamtumsatz brutto\",\"mpB/d9\":\"Gesamtbestellwert\",\"m3FM1g\":\"Gesamtbetrag zurückerstattet\",\"jEbkcB\":\"Insgesamt erstattet\",\"GBBIy+\":\"Verbleibender Gesamtbetrag\",\"/SgoNA\":\"Gesamtsteuer\",\"+zy2Nq\":\"Typ\",\"FMdMfZ\":\"Teilnehmer konnte nicht eingecheckt werden\",\"bPWBLL\":\"Teilnehmer konnte nicht ausgecheckt werden\",\"9+P7zk\":\"Produkt konnte nicht erstellt werden. Bitte überprüfen Sie Ihre Angaben\",\"WLxtFC\":\"Produkt konnte nicht erstellt werden. Bitte überprüfen Sie Ihre Angaben\",\"/cSMqv\":\"Frage konnte nicht erstellt werden. Bitte überprüfen Sie Ihre Angaben\",\"MH/lj8\":\"Frage kann nicht aktualisiert werden. Bitte überprüfen Sie Ihre Angaben\",\"nnfSdK\":\"Einzigartige Kunden\",\"Mqy/Zy\":\"Vereinigte Staaten\",\"NIuIk1\":\"Unbegrenzt\",\"/p9Fhq\":\"Unbegrenzt verfügbar\",\"E0q9qH\":\"Unbegrenzte Nutzung erlaubt\",\"h10Wm5\":\"Unbezahlte Bestellung\",\"ia8YsC\":\"Bevorstehende\",\"TlEeFv\":\"Bevorstehende Veranstaltungen\",\"L/gNNk\":[\"Aktualisierung \",[\"0\"]],\"+qqX74\":\"Aktualisieren Sie den Namen, die Beschreibung und die Daten der Veranstaltung\",\"vXPSuB\":\"Profil aktualisieren\",\"BNBfrU\":\"Cover hochladen\",\"IagCbF\":\"URL\",\"UtDm3q\":\"URL in die Zwischenablage kopiert\",\"e5lF64\":\"Anwendungsbeispiel\",\"fiV0xj\":\"Verwendungslimit\",\"sGEOe4\":\"Verwenden Sie eine unscharfe Version des Titelbilds als Hintergrund\",\"OadMRm\":\"Titelbild verwenden\",\"7PzzBU\":\"Benutzer\",\"yDOdwQ\":\"Benutzerverwaltung\",\"Sxm8rQ\":\"Benutzer\",\"VEsDvU\":\"Benutzer können ihre E-Mail in den <0>Profileinstellungen ändern.\",\"vgwVkd\":\"koordinierte Weltzeit\",\"khBZkl\":\"Umsatzsteuer\",\"E/9LUk\":\"Veranstaltungsort Namen\",\"jpctdh\":\"Ansehen\",\"Pte1Hv\":\"Teilnehmerdetails anzeigen\",\"/5PEQz\":\"Zur Veranstaltungsseite\",\"fFornT\":\"Vollständige Nachricht anzeigen\",\"YIsEhQ\":\"Ansichts Karte\",\"Ep3VfY\":\"Auf Google Maps anzeigen\",\"Y8s4f6\":\"Bestell Details ansehen\",\"QIWCnW\":\"VIP-Eincheckliste\",\"tF+VVr\":\"VIP-Ticket\",\"2q/Q7x\":\"Sichtweite\",\"vmOFL/\":\"Wir konnten Ihre Zahlung nicht verarbeiten. Bitte versuchen Sie es erneut oder wenden Sie sich an den Support.\",\"45Srzt\":\"Die Kategorie konnte nicht gelöscht werden. Bitte versuchen Sie es erneut.\",\"/DNy62\":[\"Wir konnten keine Tickets finden, die mit \",[\"0\"],\" übereinstimmen\"],\"1E0vyy\":\"Wir konnten die Daten nicht laden. Bitte versuchen Sie es erneut.\",\"NmpGKr\":\"Wir konnten die Kategorien nicht neu ordnen. Bitte versuchen Sie es erneut.\",\"VGioT0\":\"Wir empfehlen Abmessungen von 2160 x 1080 Pixel und eine maximale Dateigröße von 5 MB.\",\"b9UB/w\":\"Wir verwenden Stripe zur Zahlungsabwicklung. Verbinden Sie Ihr Stripe-Konto, um Zahlungen zu empfangen.\",\"01WH0a\":\"Wir konnten Ihre Zahlung nicht bestätigen. Bitte versuchen Sie es erneut oder wenden Sie sich an den Support.\",\"Gspam9\":\"Wir bearbeiten Ihre Bestellung. Bitte warten...\",\"LuY52w\":\"Willkommen an Bord! Bitte melden Sie sich an, um fortzufahren.\",\"dVxpp5\":[\"Willkommen zurück\",[\"0\"],\" 👋\"],\"NxOVCl\":[\"Willkommen bei Hi.Events, \",[\"0\"],\" 👋\"],\"xgL50q\":\"Was sind gestufte Produkte?\",\"f1jUC0\":\"An welchem Datum soll diese Eincheckliste aktiv werden?\",\"4ueloy\":\"Was ist eine Kategorie?\",\"gxeWAU\":\"Für welche Produkte gilt dieser Code?\",\"hFHnxR\":\"Für welche Produkte gilt dieser Code? (Standardmäßig gilt er für alle)\",\"AeejQi\":\"Für welche Produkte soll diese Kapazität gelten?\",\"Rb0XUE\":\"Um wie viel Uhr werden Sie ankommen?\",\"5N4wLD\":\"Um welche Art von Frage handelt es sich?\",\"gyLUYU\":\"Wenn aktiviert, werden Rechnungen für Ticketbestellungen erstellt. Rechnungen werden zusammen mit der Bestellbestätigungs-E-Mail gesendet. Teilnehmer können ihre Rechnungen auch von der Bestellbestätigungsseite herunterladen.\",\"D3opg4\":\"Wenn Offline-Zahlungen aktiviert sind, können Benutzer ihre Bestellungen abschließen und ihre Tickets erhalten. Ihre Tickets werden klar anzeigen, dass die Bestellung nicht bezahlt ist, und das Check-in-Tool wird das Check-in-Personal benachrichtigen, wenn eine Bestellung eine Zahlung erfordert.\",\"D7C6XV\":\"Wann soll diese Eincheckliste ablaufen?\",\"FVetkT\":\"Welche Tickets sollen mit dieser Eincheckliste verknüpft werden?\",\"S+OdxP\":\"Wer organisiert diese Veranstaltung?\",\"LINr2M\":\"An wen ist diese Nachricht gerichtet?\",\"nWhye/\":\"Wem sollte diese Frage gestellt werden?\",\"VxFvXQ\":\"Widget einbetten\",\"v1P7Gm\":\"Widget-Einstellungen\",\"b4itZn\":\"Arbeiten\",\"hqmXmc\":\"Arbeiten...\",\"+G/XiQ\":\"Seit Jahresbeginn\",\"l75CjT\":\"Ja\",\"QcwyCh\":\"Ja, entfernen\",\"ySeBKv\":\"Sie haben dieses Ticket bereits gescannt\",\"P+Sty0\":[\"Sie ändern Ihre E-Mail zu <0>\",[\"0\"],\".\"],\"gGhBmF\":\"Sie sind offline\",\"sdB7+6\":\"Sie können einen Promo-Code erstellen, der sich auf dieses Produkt richtet auf der\",\"KRhIxT\":\"Sie können jetzt Zahlungen über Stripe empfangen.\",\"Gnjf3o\":\"Sie können den Produkttyp nicht ändern, da Teilnehmer mit diesem Produkt verknüpft sind.\",\"S+on7c\":\"Sie können Teilnehmer mit unbezahlten Bestellungen nicht einchecken.\",\"yNi4PV\":\"Sie können Teilnehmer mit unbezahlten Bestellungen nicht einchecken. Diese Einstellung kann in den Veranstaltungsdetails geändert werden.\",\"c9Evkd\":\"Sie können die letzte Kategorie nicht löschen.\",\"6uwAvx\":\"Sie können diese Preiskategorie nicht löschen, da für diese Kategorie bereits Produkte verkauft wurden. Sie können sie stattdessen ausblenden.\",\"tFbRKJ\":\"Sie können die Rolle oder den Status des Kontoinhabers nicht bearbeiten.\",\"fHfiEo\":\"Sie können eine manuell erstellte Bestellung nicht zurückerstatten.\",\"hK9c7R\":\"Sie haben eine versteckte Frage erstellt, aber die Option zum Anzeigen versteckter Fragen deaktiviert. Sie wurde aktiviert.\",\"NOaWRX\":\"Sie haben keine Berechtigung, auf diese Seite zuzugreifen\",\"BRArmD\":\"Sie haben Zugriff auf mehrere Konten. Bitte wählen Sie eines aus, um fortzufahren.\",\"Z6q0Vl\":\"Sie haben diese Einladung bereits angenommen. Bitte melden Sie sich an, um fortzufahren.\",\"rdk1xK\":\"Sie haben Ihr Stripe-Konto verbunden\",\"ofEncr\":\"Sie haben keine Teilnehmerfragen.\",\"CoZHDB\":\"Sie haben keine Bestellfragen.\",\"15qAvl\":\"Sie haben keine ausstehende E-Mail-Änderung.\",\"n81Qk8\":\"Sie haben die Einrichtung von Stripe Connect noch nicht abgeschlossen\",\"jxsiqJ\":\"Sie haben Ihr Stripe-Konto nicht verbunden\",\"+FWjhR\":\"Die Zeit für die Bestellung ist abgelaufen.\",\"MycdJN\":\"Sie haben Steuern und Gebühren zu einem kostenlosen Produkt hinzugefügt. Möchten Sie sie entfernen oder verbergen?\",\"YzEk2o\":\"Sie haben noch keine Nachrichten gesendet. Sie können Nachrichten an alle Teilnehmer oder an bestimmte Produkthalter senden.\",\"R6i9o9\":\"Sie müssen bestätigen, dass diese E-Mail keinen Werbezweck hat\",\"3ZI8IL\":\"Sie müssen den Allgemeinen Geschäftsbedingungen zustimmen\",\"dMd3Uf\":\"Sie müssen Ihre E-Mail-Adresse bestätigen, bevor Ihre Veranstaltung live gehen kann.\",\"H35u3n\":\"Sie müssen ein Ticket erstellen, bevor Sie einen Teilnehmer manuell hinzufügen können.\",\"jE4Z8R\":\"Sie müssen mindestens eine Preisstufe haben\",\"8/eLoa\":\"Sie müssen Ihr Konto verifizieren, bevor Sie Nachrichten senden können.\",\"Egnj9d\":\"Sie müssen eine Bestellung manuell als bezahlt markieren. Dies kann auf der Bestellverwaltungsseite erfolgen.\",\"L/+xOk\":\"Sie benötigen ein Ticket, bevor Sie eine Eincheckliste erstellen können.\",\"Djl45M\":\"Sie benötigen ein Produkt, bevor Sie eine Kapazitätszuweisung erstellen können.\",\"y3qNri\":\"Sie benötigen mindestens ein Produkt, um loszulegen. Kostenlos, bezahlt oder lassen Sie den Benutzer entscheiden, was er zahlen möchte.\",\"9HcibB\":[\"Du gehst zu \",[\"0\"],\"! 🎉\"],\"ROR8QD\":\"Ihr Kontoname wird auf Veranstaltungsseiten und in E-Mails verwendet.\",\"veessc\":\"Ihre Teilnehmer werden hier angezeigt, sobald sie sich für Ihre Veranstaltung registriert haben. Sie können Teilnehmer auch manuell hinzufügen.\",\"Eh5Wrd\":\"Eure tolle Website 🎉\",\"lkMK2r\":\"Deine Details\",\"3ENYTQ\":[\"Ihre E-Mail-Anfrage zur Änderung auf <0>\",[\"0\"],\" steht noch aus. Bitte überprüfen Sie Ihre E-Mail, um sie zu bestätigen\"],\"yZfBoy\":\"Ihre Nachricht wurde gesendet\",\"KSQ8An\":\"Deine Bestellung\",\"Jwiilf\":\"Deine Bestellung wurde storniert\",\"6UxSgB\":\"Ihre Bestellung wartet auf Zahlung 🏦\",\"7YJdgG\":\"Sobald Ihre Bestellungen eintreffen, werden sie hier angezeigt.\",\"9TO8nT\":\"Ihr Passwort\",\"P8hBau\":\"Ihre Zahlung wird verarbeitet.\",\"UdY1lL\":\"Ihre Zahlung war nicht erfolgreich, bitte versuchen Sie es erneut.\",\"fzuM26\":\"Ihre Zahlung war nicht erfolgreich. Bitte versuchen Sie es erneut.\",\"cEli2o\":\"Ihr Produkt für\",\"cJ4Y4R\":\"Ihre Rückerstattung wird bearbeitet.\",\"IFHV2p\":\"Ihr Ticket für\",\"x1PPdr\":\"Postleitzahl\",\"BM/KQm\":\"Postleitzahl\",\"+LtVBt\":\"Postleitzahl\",\"25QDJ1\":\"- Zum Veröffentlichen klicken\",\"WOyJmc\":\"- Zum Rückgängigmachen der Veröffentlichung klicken\",\"1bpx9A\":\"...\",\"4zldrf\":[[\"0\",\"plural\",{\"one\":[\"#\",\" hidden question\"],\"other\":[\"#\",\" hidden questions\"]}]],\"xYxQCZ\":[[\"0\"],\" \",[\"1\"]],\"S4PqS9\":[[\"0\"],\" aktive Webhooks\"],\"tmew5X\":[[\"0\"],\" eingecheckt\"],\"qSiUsc\":[[\"0\"],[\"1\"]],\"OJnhhX\":[[\"eventCount\"],\" Ereignisse\"],\"wapGcj\":[[\"message\"]],\"pDgeaz\":[[\"title\"]],\"0940VN\":\"<0>Die Anzahl der verfügbaren Tickets für dieses Ticket<1>Dieser Wert kann überschrieben werden, wenn diesem Ticket <2>Kapazitätsgrenzen zugewiesen sind.\",\"ZnVt5v\":\"<0>Webhooks benachrichtigen externe Dienste sofort, wenn Ereignisse eintreten, z. B. wenn ein neuer Teilnehmer zu deinem CRM oder deiner Mailingliste hinzugefügt wird, um eine nahtlose Automatisierung zu gewährleisten.<1>Nutze Drittanbieterdienste wie <2>Zapier, <3>IFTTT oder <4>Make, um benutzerdefinierte Workflows zu erstellen und Aufgaben zu automatisieren.\",\"y1NShf\":\"🎉 Congratulation on creating an event!\",\"fAv9QG\":\"🎟️ Tickets hinzufügen\",\"s4Tgn6\":\"📢 Promote your event\",\"UQ7pBY\":\"0.50 for $0.50\",\"M2DyLc\":\"1 aktiver Webhook\",\"i1+xzD\":\"1.75 for 1.75%\",\"W9+fkZ\":\"10001\",\"d9El7Q\":[\"Auf alle neuen Tickets wird automatisch ein Standard-\",[\"type\"],\" angewendet. Sie können dies für jedes Ticket einzeln überschreiben.\"],\"Pgaiuj\":\"Ein fester Betrag pro Ticket. Z. B. 0,50 € pro Ticket\",\"ySO/4f\":\"Ein Prozentsatz des Ticketpreises. Beispiel: 3,5 % des Ticketpreises\",\"WXeXGB\":\"Mit einem Promo-Code ohne Rabatt können versteckte Tickets freigeschaltet werden.\",\"GMhWB5\":\"A Radio option allows has multiple options but only one can be selected.\",\"CBt3s7\":\"A Radio Option allows only one selection\",\"7g61G9\":\"A short description of Awesome Events Ltd.\",\"zCk10D\":\"Eine einzelne Frage pro Teilnehmer. Z. B.: „Was ist Ihr Lieblingsessen?“\",\"ap3v36\":\"Eine einzige Frage pro Bestellung. Z. B.: Wie lautet der Name Ihres Unternehmens?\",\"uyJsf6\":\"Über\",\"pDwHGk\":\"About hi.events\",\"WTk/ke\":\"Über Stripe Connect\",\"VTfZPy\":\"Zugriff verweigert\",\"iwyhk4\":\"Access to the VIP area...\",\"0b79Xf\":\"Account Email\",\"m16xKo\":\"Hinzufügen\",\"LKNynS\":\"Add a cover image, description, and more to make your event stand out.\",\"a5KFZU\":\"Füge Veranstaltungsdetails hinzu und verwalte die Einstellungen.\",\"Fb+SDI\":\"Weitere Tickets hinzufügen\",\"BGD9Yt\":\"Tickets hinzufügen\",\"QN2F+7\":\"Webhook hinzufügen\",\"p59pEv\":\"Additional Details\",\"CPXP5Z\":\"Mitgliedsorganisationen\",\"gKq1fa\":\"Alle Teilnehmer\",\"QsYjci\":\"Alle Veranstaltungen\",\"/twVAS\":\"Alle Tickets\",\"8wYDMp\":\"Already have an account?\",\"TRYjHa\":[\"amount in \",[\"0\"]],\"tLjOgo\":[\"Amount paid $\",[\"0\"]],\"vRznIT\":\"Ein Fehler ist aufgetreten beim Überprüfen des Exportstatus.\",\"er3d/4\":\"Beim Sortieren der Tickets ist ein Fehler aufgetreten. Bitte versuchen Sie es erneut oder aktualisieren Sie die Seite\",\"hhvESd\":\"An event is the actual event you are hosting\",\"3ZpITr\":\"Eine Veranstaltung ist das Treffen oder Ereignis, das Sie organisieren. Sie können später weitere Details hinzufügen.\",\"QNrkms\":\"Antwort erfolgreich aktualisiert.\",\"j4DliD\":\"Alle Anfragen von Ticketinhabern werden an diese E-Mail-Adresse gesendet. Diese wird auch als „Antwortadresse“ für alle E-Mails verwendet, die von dieser Veranstaltung gesendet werden.\",\"epTbAK\":[\"Gilt für \",[\"0\"],\" Tickets\"],\"6MkQ2P\":\"Gilt für 1 Ticket\",\"jcnZEw\":[\"Wenden Sie diesen \",[\"type\"],\" auf alle neuen Tickets an\"],\"Dy+k4r\":\"Sind Sie sicher, dass Sie diesen Teilnehmer stornieren möchten? Dies macht sein Produkt ungültig\",\"5H3Z78\":\"Bist du sicher, dass du diesen Webhook löschen möchtest?\",\"2xEpch\":\"Einmal pro Teilnehmer fragen\",\"F2rX0R\":\"Mindestens ein Ereignistyp muss ausgewählt werden\",\"AJ4rvK\":\"Teilnehmer storniert\",\"qvylEK\":\"Teilnehmer erstellt\",\"Xc2I+v\":\"Teilnehmerverwaltung\",\"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.\",\"D2qlBU\":\"Teilnehmer aktualisiert\",\"k3Tngl\":\"Teilnehmer exportiert\",\"5UbY+B\":\"Teilnehmer mit einem bestimmten Ticket\",\"kShOaz\":\"Automatisierter Arbeitsablauf\",\"VPoeAx\":\"Automatisierte Einlassverwaltung mit mehreren Check-in-Listen und Echtzeitvalidierung\",\"lXkUEV\":\"Availability\",\"Vm0RKe\":\"Durchschn. Rabatt/Bestellung\",\"sGUsYa\":\"Durchschn. Bestellwert\",\"kNmmvE\":\"Awesome Events Ltd.\",\"0TGkYM\":\"Back to event homepage\",\"MLZyiY\":\"Background color\",\"EOUool\":\"Grundlegende Details\",\"7EGQKA\":\"Because you are the account owner, you cannot change your role or status.\",\"wVfiR2\":\"Before you're event can go live, there's a few thing to do.\",\"iMdwTb\":\"Bevor dein Event live gehen kann, musst du einige Schritte erledigen. Schließe alle folgenden Schritte ab, um zu beginnen.\",\"1xAcxY\":\"Beginnen Sie in wenigen Minuten mit dem Ticketverkauf\",\"R+w/Va\":\"Billing\",\"Ayxd+S\":\"Markenkontrolle\",\"Ptp9MF\":\"Button color\",\"Jzn1qy\":\"Can't load events\",\"GGWsTU\":\"Abgesagt\",\"Ud7zwq\":\"Durch die Stornierung werden alle mit dieser Bestellung verbundenen Tickets storniert und die Tickets werden wieder in den verfügbaren Pool freigegeben.\",\"K7tIrx\":\"Kategorie\",\"QndF4b\":\"einchecken\",\"9FVFym\":\"Kasse\",\"Y3FYXy\":\"Einchecken\",\"udRwQs\":\"Check-in erstellt\",\"F4SRy3\":\"Check-in gelöscht\",\"rfeicl\":\"Erfolgreich eingecheckt\",\"/ydvvl\":\"Checkout Messaging\",\"h1IXFK\":\"Chinesisch\",\"DM4gBB\":\"Chinesisch (Traditionell)\",\"jJGoVv\":\"Choose what notifications you want to receive\",\"RG3szS\":\"schließen\",\"msqIjo\":\"Dieses Ticket beim ersten Laden der Veranstaltungsseite minimieren\",\"/sZIOR\":\"Vollständiger Shop\",\"7D9MJz\":\"Stripe-Einrichtung abschließen\",\"nqx+6h\":\"Schließen Sie diese Schritte ab, um mit dem Ticketverkauf für Ihre Veranstaltung zu beginnen.\",\"DnLC08\":\"Congratulation on creating an event!\",\"o5A0Go\":\"Herzlichen Glückwunsch zur Erstellung eines Events!\",\"Xe2tSS\":\"Verbindungsdokumentation\",\"1Xxb9f\":\"Zahlungsabwicklung verbinden\",\"EWnXR+\":\"Mit Stripe verbinden\",\"MOUF31\":\"Verbinden Sie sich mit dem CRM und automatisieren Sie Aufgaben mit Webhooks und Integrationen\",\"/3017M\":\"Mit Stripe verbunden\",\"i3p844\":\"Contact email\",\"02S6xJ\":\"Support kontaktieren\",\"nBGbqc\":\"Kontaktieren Sie uns, um Nachrichten zu aktivieren\",\"0GwUT4\":\"Weiter zur Kasse\",\"RGVUUI\":\"Weiter zur Zahlung\",\"P0rbCt\":\"Cover Image\",\"dyrgS4\":\"Erstellen und personalisieren Sie Ihre Veranstaltungsseite sofort\",\"a6YrKg\":\"Create promo codes\",\"n6H6AO\":\"Create promo codes to offer discounts to your attendees.\",\"Tg323g\":\"Ticket erstellen\",\"agZ87r\":\"Erstellen Sie Tickets für Ihre Veranstaltung, legen Sie Preise fest und verwalten Sie die verfügbare Menge.\",\"dkAPxi\":\"Webhook erstellen\",\"Lu75d1\":\"Customize the email settings for this event\",\"RaxMyF\":\"Customize the event homepage and checkout experience\",\"q9Jg0H\":\"Passen Sie Ihre Veranstaltungsseite und das Widget-Design perfekt an Ihre Marke an\",\"zgCHnE\":\"Täglicher Verkaufsbericht\",\"nHm0AI\":\"Aufschlüsselung der täglichen Verkäufe, Steuern und Gebühren\",\"PqrqgF\":\"Tag eins Eincheckliste\",\"RiXc4g\":\"Deactivate user\",\"GnyEfA\":\"Ticket löschen\",\"E33LRn\":\"Delete user\",\"snMaH4\":\"Webhook löschen\",\"s9iD5d\":\"Description should be less than 50,000 characters\",\"x8uDKb\":\"Disable code\",\"b5SKxQ\":\"Deaktivieren Sie diese Kapazität, um Kapazitäten zu verfolgen, ohne den Produktverkauf zu stoppen\",\"Tgg8XQ\":\"Deaktivieren Sie diese Kapazitätsverfolgung ohne den Ticketverkauf zu stoppen\",\"QotGhf\":\"Diese Nachricht schließen\",\"TvY/XA\":\"Dokumentation\",\"dYskfr\":\"Existiert nicht\",\"V6Jjbr\":\"Sie haben kein Konto? <0>Registrieren\",\"4+aC/x\":\"Spende / Bezahlen Sie, was Sie möchten Ticket\",\"++S5i/\":\"Donation amount\",\"OO7MG7\":\"Donation Ticket\",\"0pEVi2\":\"Download Tickets PDF\",\"eneWvv\":\"Entwurf\",\"3z2ium\":\"Zum Sortieren ziehen\",\"6skwyH\":\"Drop an image, or click here to replace the Cover Image\",\"S37RRV\":\"Drop an image, or click here to upload the Cover Image\",\"X7F5EC\":\"Aufgrund des hohen Spamrisikos ist eine manuelle Verifizierung erforderlich, bevor du Nachrichten senden kannst.\\nBitte kontaktiere uns, um Zugang zu beantragen.\",\"KRmTkx\":\"Produkt duplizieren\",\"Wt9eV8\":\"Tickets duplizieren\",\"4xK5y2\":\"Webhooks duplizieren\",\"KIjvtr\":\"Niederländisch\",\"2iZEz7\":\"Antwort bearbeiten\",\"kNGp1D\":\"Teilnehmer bearbeiten\",\"t2bbp8\":\"Teilnehmer bearbeiten\",\"d+nnyk\":\"Ticket bearbeiten\",\"fW5sSv\":\"Webhook bearbeiten\",\"nP7CdQ\":\"Webhook bearbeiten\",\"WiKda6\":\"Email Configuration\",\"G5zNMX\":\"Email Settings\",\"nA31FG\":\"Aktivieren Sie diese Kapazität, um den Ticketverkauf zu stoppen, wenn das Limit erreicht ist\",\"RxzN1M\":\"Aktiviert\",\"LslKhj\":\"Fehler beim Laden der Protokolle\",\"nuoP/j\":\"Event created successfully\",\"4JzCvP\":\"Veranstaltung nicht verfügbar\",\"mImacG\":\"Veranstaltungsseite\",\"JyD0LH\":\"Event Settings\",\"uPX+1O\":\"Event-Ticketing von\",\"YDVUVl\":\"Ereignistypen\",\"3Fj/xp\":\"Event wdwdeNot Available\",\"VlvpJ0\":\"Antworten exportieren\",\"JKfSAv\":\"Export fehlgeschlagen. Bitte versuchen Sie es erneut.\",\"SVOEsu\":\"Export gestartet. Datei wird vorbereitet...\",\"jtrqH9\":\"Teilnehmer werden exportiert\",\"R4Oqr8\":\"Export abgeschlossen. Datei wird heruntergeladen...\",\"UlAK8E\":\"Bestellungen werden exportiert\",\"Jjw03p\":\"Fehler beim Export der Teilnehmer\",\"ZPwFnN\":\"Fehler beim Export der Bestellungen\",\"X4o0MX\":\"Webhook konnte nicht geladen werden\",\"10XEC9\":\"Produkt-E-Mail konnte nicht erneut gesendet werden\",\"lKh069\":\"Exportauftrag konnte nicht gestartet werden\",\"NNc33d\":\"Fehler beim Aktualisieren der Antwort.\",\"7/9RFs\":\"Bild-Upload fehlgeschlagen.\",\"YirHq7\":\"Rückmeldung\",\"T4BMxU\":\"Gebühren können sich ändern. Du wirst über Änderungen deiner Gebührenstruktur benachrichtigt.\",\"QWa3Sk\":\"First Name, Last Name, and Email Address are default questions that are always included in the checkout process.\",\"YXhom6\":\"Feste Gebühr:\",\"KgxI80\":\"Flexibles Ticketing\",\"/4rQr+\":\"Freikarten\",\"01my8x\":\"Kostenloses Ticket, keine Zahlungsinformationen erforderlich\",\"ejVYRQ\":\"From\",\"vAVBBv\":\"Fully Integrated\",\"kfVY6V\":\"Starten Sie kostenlos, keine Abonnementgebühren\",\"u6FPxT\":\"Get Tickets\",\"8KDgYV\":\"Bereiten Sie Ihre Veranstaltung vor\",\"cQPKZt\":\"Go to Dashboard\",\"yPvkqO\":\"Gehe zu Hi.Events\",\"gHSuV/\":\"Zur Startseite gehen\",\"Lek3cJ\":\"Zum Stripe-Dashboard\",\"GNJ1kd\":\"Hilfe & Support\",\"spMR9y\":\"Hi.Events erhebt Plattformgebühren zur Wartung und Verbesserung unserer Dienste. Diese Gebühren werden automatisch von jeder Transaktion abgezogen.\",\"EeNE0j\":\"Hidden will not be shown to customers.\",\"P+5Pbo\":\"Antworten ausblenden\",\"fsi6fC\":\"Dieses Ticket vor Kunden verbergen\",\"Fhzoa8\":\"Ticket nach Verkaufsende verbergen\",\"yhm3J/\":\"Ticket vor Verkaufsbeginn verbergen\",\"k7/oGT\":\"Ticket verbergen, sofern der Benutzer nicht über einen gültigen Aktionscode verfügt\",\"L0ZOiu\":\"Ticket bei Ausverkauf verbergen\",\"uno73L\":\"Wenn Sie ein Ticket ausblenden, können Benutzer es nicht auf der Veranstaltungsseite sehen.\",\"tj6Gob\":\"Homepage & Checkout\",\"m07jN3\":\"Homepage & Checkout Settings\",\"id+NIk\":\"How many minutes the customer has to complete their order\",\"htoh8N\":\"https://webhook-domain.com/webhook\",\"sIxFk5\":\"I agree to the terms and conditions\",\"4/kP5a\":\"Wenn sich kein neues Tab automatisch geöffnet hat, klicke bitte unten auf die Schaltfläche, um mit dem Checkout fortzufahren.\",\"Crwwhn\":[\"If a new tab did not open, please <0>\",[\"0\"],\".\"],\"9gtsTP\":\"Wenn leer, wird die Adresse verwendet, um einen Google-Kartenlink zu generieren.\",\"wOU3Tr\":\"Wenn du ein Konto bei uns hast, erhältst du eine E-Mail mit Anweisungen zum Zurücksetzen deines Passworts.\",\"Gyl1h8\":\"Image dimensions must be at least 600px by 300px\",\"TiGacZ\":\"Image dimensions must be at least 900px by 450px\",\"UnTvkH\":\"Die Bildabmessungen müssen zwischen 3000px und 2000px liegen. Mit einer maximalen Höhe von 2000px und einer maximalen Breite von 3000px\",\"UJLg8x\":\"In-depth Analytics\",\"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.\",\"SYmeUu\":\"Fügen Sie Verbindungsdetails für Ihre Online-Veranstaltung hinzu. Diese Details werden auf der Bestellzusammenfassungsseite und der Teilnehmerproduktseite angezeigt.\",\"evpD4c\":\"Fügen Sie Verbindungsdetails für Ihre Online-Veranstaltung hinzu. Diese Details werden auf der Bestellübersichtsseite und der Teilnehmerticketseite angezeigt.\",\"AXTNr8\":[\"Enthält \",[\"0\"],\" Tickets\"],\"7/Rzoe\":\"Enthält 1 Ticket\",\"F1Xp97\":\"Einzelne Teilnehmer\",\"nbfdhU\":\"Integrationen\",\"Lj7sBL\":\"Italienisch\",\"1IWWYX\":[\"KittenTech Conference \",[\"0\"]],\"ZgJEMX\":\"KittenTech Conference Center\",\"h0Q9Iw\":\"Letzte Antwort\",\"gw3Ur5\":\"Zuletzt ausgelöst\",\"CKcupn\":\"Latest Orders\",\"c+gAXc\":\"Let's get started by creating your first event\",\"QfrKvi\":\"Link color\",\"shkJ3U\":\"Verknüpfen Sie Ihr Stripe-Konto, um Gelder aus dem Ticketverkauf zu erhalten.\",\"dF6vP6\":\"Live\",\"NFxlHW\":\"Webhooks werden geladen\",\"XkhEf9\":\"Lorem ipsum...\",\"xGUf/F\":\"Veranstaltung veröffentlichen\",\"4wUIjX\":\"Machen Sie Ihre Veranstaltung live\",\"8mmINh\":\"Manage billing information and view invoices\",\"jWIznR\":\"Manage default settings for new events\",\"wqyqaF\":\"Manage general account settings\",\"5Llat8\":\"Produkte verwalten\",\"f92Qak\":\"Manage taxes and fees which can be applied to tickets\",\"PlTcVr\":\"Verwalten Sie Steuern und Gebühren, die auf Ihre Tickets erhoben werden können\",\"Wsx7Iu\":\"Manage users and their permissions\",\"QHcjP+\":\"Manage your billing and payment details\",\"2FzaR1\":\"Verwalten Sie Ihre Zahlungsabwicklung und sehen Sie die Plattformgebühren ein\",\"lzcrX3\":\"Durch manuelles Hinzufügen eines Teilnehmers wird die Ticketanzahl angepasst.\",\"/x0FyM\":\"Match Your Brand\",\"1jRD0v\":\"Teilnehmer mit bestimmten Tickets benachrichtigen\",\"97QrnA\":\"Kommunizieren Sie mit Teilnehmern, verwalten Sie Bestellungen und bearbeiten Sie Rückerstattungen an einem Ort\",\"0/yJtP\":\"Nachricht an Bestelleigentümer mit bestimmten Produkten senden\",\"tccUcA\":\"Mobiler Check-in\",\"SVuGaP\":\"Multiple price options, users can choose which to pay\",\"6wbTro\":\"Mehrere Preisoptionen. Perfekt für Frühbuchertickets usw.\",\"m920rF\":\"New York\",\"074+X8\":\"Keine aktiven Webhooks\",\"6r9SGl\":\"Keine Kreditkarte erforderlich\",\"Z6ILSe\":\"Keine Veranstaltungen für diesen Veranstalter\",\"XZkeaI\":\"Keine Protokolle gefunden\",\"zK/+ef\":\"Keine Produkte zur Auswahl verfügbar\",\"q91DKx\":\"Dieser Teilnehmer hat keine Fragen beantwortet.\",\"QoAi8D\":\"Keine Antwort\",\"EK/G11\":\"Noch keine Antworten\",\"cU1op4\":\"No Taxes or Fees have been added yet.\",\"uR2eFu\":\"No tickets available\",\"b7JZFg\":\"Keine Tickets vorzeigen\",\"n5vdm2\":\"Für diesen Endpunkt wurden noch keine Webhook-Ereignisse aufgezeichnet. Ereignisse werden hier angezeigt, sobald sie ausgelöst werden.\",\"4GhX3c\":\"Keine Webhooks\",\"x5+Lcz\":\"Nicht eingecheckt\",\"+P/tII\":\"Sobald Sie bereit sind, schalten Sie Ihre Veranstaltung live und beginnen Sie mit dem Ticketverkauf.\",\"bU7oUm\":\"Nur an Bestellungen mit diesen Status senden\",\"ppuQR4\":\"Bestellung erstellt\",\"L4kzeZ\":[\"Bestelldetails \",[\"0\"]],\"vu6Arl\":\"Bestellung als bezahlt markiert\",\"FaPYw+\":\"Bestelleigentümer\",\"eB5vce\":\"Bestelleigentümer mit einem bestimmten Produkt\",\"CxLoxM\":\"Bestelleigentümer mit Produkten\",\"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.\",\"EZy55F\":\"Bestellung erstattet\",\"6eSHqs\":\"Bestellstatus\",\"e7eZuA\":\"Bestellung aktualisiert\",\"mz+c33\":\"Erstellte Aufträge\",\"5It1cQ\":\"Bestellungen exportiert\",\"m/ebSk\":\"Organizer Details\",\"J2cXxX\":\"Organisatoren können nur Events und Tickets verwalten. Sie können keine Benutzer, Kontoeinstellungen oder Rechnungsinformationen verwalten.\",\"6/dCYd\":\"Übersicht\",\"2w/FiJ\":\"Bezahltes Ticket\",\"/l/ckQ\":\"URL einfügen\",\"iq5IUr\":\"Pause Ticket\",\"URAE3q\":\"Pausiert\",\"TskrJ8\":\"Zahlung & Plan\",\"EyE8E6\":\"Zahlungsabwicklung\",\"vcyz2L\":\"Zahlungseinstellungen\",\"CcK+Ft\":\"PDF\",\"att1Hj\":\"percent\",\"dfVao3\":\"Bestellung aufgeben\",\"br3Y/y\":\"Plattformgebühren\",\"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\",\"jEw0Mr\":\"Bitte geben Sie eine gültige URL ein\",\"Dvq0wf\":\"Bitte ein Bild angeben.\",\"MA04r/\":\"Bitte entfernen Sie die Filter und stellen Sie die Sortierung auf \\\"Startseite-Reihenfolge\\\", um die Sortierung zu aktivieren\",\"EFq6EG\":\"Bitte ein Bild auswählen.\",\"yygcoG\":\"Bitte wählen Sie mindestens ein Ticket aus\",\"fuwKpE\":\"Bitte versuchen Sie es erneut.\",\"o+tJN/\":\"Bitte warten Sie, während wir Ihre Teilnehmer für den Export vorbereiten...\",\"+5Mlle\":\"Bitte warten Sie, während wir Ihre Bestellungen für den Export vorbereiten...\",\"R7+D0/\":\"Portugiesisch (Brasilien)\",\"Qs7yI0\":\"Powered By\",\"lqAWKB\":\"Powered by <0>Hi.Events 👋\",\"3n47kV\":\"Powered By Hi.Events\",\"ddi4j4\":\"Unterstützt durch Stripe\",\"cs5muu\":\"Vorschau der Veranstaltungsseite\",\"a5jvSX\":\"Price Tiers\",\"p/JDmw\":\"Produkt\",\"EWCLpZ\":\"Produkt erstellt\",\"XkFYVB\":\"Produkt gelöscht\",\"0dzBGg\":\"Produkt-E-Mail wurde an den Teilnehmer erneut gesendet\",\"YMwcbR\":\"Produktverkäufe, Einnahmen und Steueraufschlüsselung\",\"ldVIlB\":\"Produkt aktualisiert\",\"mIqT3T\":\"Produkte, Waren und flexible Preisoptionen\",\"ZXpm3a\":[\"Promo \",[\"promoCode\"],\" code applied\"],\"JoKGiJ\":\"Gutscheincode\",\"k3wH7i\":\"Nutzung von Rabattcodes und Rabattaufschlüsselung\",\"evDBV8\":\"Veranstaltung veröffentlichen\",\"812gwg\":\"Lizenz kaufen\",\"YwNJAq\":\"QR-Code-Scanning mit sofortigem Feedback und sicherem Teilen für den Mitarbeiterzugang\",\"HiGkFu\":\"Weiterleitung zu Stripe...\",\"RloWNu\":\"Reply to email\",\"Gkz9Vm\":\"Produkt-E-Mail erneut senden\",\"slOprG\":\"Setzen Sie Ihr Passwort zurück\",\"hVF4dJ\":\"Sale starts\",\"lBAlVv\":\"Suche nach Namen, Bestellnummer, Teilnehmernummer oder E-Mail ...\",\"ulAuWO\":\"Search by event name or description...\",\"NQSiYb\":\"Search by name or description...\",\"B1bB1j\":\"Search by order #, name or email...\",\"KZpERn\":\"Search by product name...\",\"jA4hXE\":\"Search by subject or body...\",\"HYnGee\":\"Suche nach Ticketnamen...\",\"j9cPeF\":\"Ereignistypen auswählen\",\"XH5juP\":\"Ticketstufe auswählen\",\"nuWxSr\":\"Select Tickets\",\"Ropvj0\":\"Wählen Sie aus, welche Ereignisse diesen Webhook auslösen\",\"BG3f7v\":\"Sell Anything\",\"VtX8nW\":\"Verkaufen Sie Waren zusammen mit Tickets mit integrierter Steuer- und Rabattcode-Unterstützung\",\"Cye3uV\":\"Verkaufen Sie mehr als nur Tickets\",\"471O/e\":\"Send confirmation email\",\"nwVSiv\":\"Bestellbestätigung und Produkt-E-Mail senden\",\"vu4F0h\":\"Set a minimum price and let users donate more\",\"VlS7y2\":\"Richten Sie Ihre Zahlungsabwicklung ein, um Gelder aus Ticketverkäufen zu erhalten.\",\"HbUQWA\":\"Einrichtung in Minuten\",\"FFbYHm\":[\"Should this \",[\"type\"],\" be applied to all new tickets?\"],\"smd87r\":\"Verfügbare Ticketanzahl anzeigen\",\"j3b+OW\":\"Wird dem Kunden nach dem Bezahlvorgang auf der Bestellübersichtsseite angezeigt\",\"v6IwHE\":\"Intelligentes Einchecken\",\"J9xKh8\":\"Intelligentes Dashboard\",\"KTxc6k\":\"Etwas ist schiefgelaufen. Bitte versuchen Sie es erneut oder kontaktieren Sie den Support, falls das Problem weiterhin besteht.\",\"DvCwYF\":\"Sorry, this promo code is invalid'\",\"9rRZZ+\":\"Leider ist Ihre Bestellung abgelaufen. Bitte starten Sie eine neue Bestellung.\",\"a4SyEE\":\"Die Sortierung ist deaktiviert, während Filter und Sortierung angewendet werden\",\"4nG1lG\":\"Standardticket zum Festpreis\",\"RS0o7b\":\"State\",\"Ih8kN0\":[\"Successfully $\",[\"0\"],\" attendee\"],\"xHl17l\":[\"Erfolgreich geprüft <0>\",[\"0\"],\" \",[\"1\"],\" \",[\"2\"]],\"onFQYs\":\"Ticket erfolgreich erstellt\",\"Hgj/mB\":\"Successfully deleted ticket\",\"JwTmB6\":\"Produkt erfolgreich dupliziert\",\"g2lRrH\":\"Ticket erfolgreich aktualisiert\",\"kj7zYe\":\"Webhook erfolgreich aktualisiert\",\"5gIl+x\":\"Unterstützung für gestaffelte, spendenbasierte und Produktverkäufe mit anpassbaren Preisen und Kapazitäten\",\"EEZnW+\":\"Taxes & Fees\",\"gVjSFp\":\"Taxes and Fees can be associated with tickets and will be added to the ticket price.\",\"e0ZSh4\":\"Text Colour\",\"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\",\"tXadb0\":\"Die gesuchte Veranstaltung ist derzeit nicht verfügbar. Sie wurde möglicherweise entfernt, ist abgelaufen oder die URL ist falsch.\",\"FqjKfd\":\"The location of your event\",\"kIXEVN\":[\"Die maximale Anzahl von Tickets für \",[\"0\"],\" ist \",[\"1\"]],\"FeAfXO\":[\"Die maximale Anzahl an Tickets für Generäle beträgt \",[\"0\"]],\"POEqXB\":\"The organizer details of your event\",\"TJZByZ\":\"The tax and fee to apply to this ticket. You can create new taxes and fees on the\",\"OJYwh9\":\"Die Steuern und Gebühren, die auf dieses Ticket angewendet werden sollen. Sie können neue Steuern und Gebühren auf der\",\"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'\",\"wgAiDb\":\"The user must login to change their email.\",\"jvxN9/\":\"Für diese Veranstaltung sind keine Tickets verfügbar\",\"hjLUr+\":\"There was an error loading this content. Please refresh the page and try again.\",\"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.\",\"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\",\"axERYu\":\"This order has already been paid. <0>View order details\",\"wY+HO9\":\"This order has already been processed.\",\"D44cEI\":\"This order has been completed.\",\"0vRWbB\":\"This order is awaiting payment.\",\"LIjb4v\":\"This order is processing. TODO - a nice image and poll the API\",\"5189cf\":\"Dadurch werden alle Sichtbarkeitseinstellungen überschrieben und das Ticket wird vor allen Kunden verborgen.\",\"4vwjho\":\"This page has expired. <0>View order details\",\"WJqBqd\":\"Dieses Ticket kann nicht gelöscht werden, da es\\nmit einer Bestellung verknüpft ist. Sie können es stattdessen ausblenden.\",\"ma6qdu\":\"Dieses Ticket ist nicht öffentlich sichtbar.\",\"xJ8nzj\":\"Dieses Ticket ist ausgeblendet, sofern es nicht durch einen Promo-Code angesprochen wird.\",\"KosivG\":\"Ticket erfolgreich gelöscht\",\"HGuXjF\":\"Ticketinhaber\",\"6tmWch\":\"Ticket oder Produkt\",\"USk+Mn\":\"Ticket page message\",\"mRM6XH\":\"Ticketverkauf\",\"NirIiz\":\"Ticketstufe\",\"8jLPgH\":\"Art des Tickets\",\"jqWDf9\":\"Ticket widget background color\",\"UrMVAz\":\"Ticket-Widget-Vorschau\",\"ngtDy7\":\"Ticket widget text color\",\"N+YYpo\":\"Eintrittskarte(n)\",\"6GQNLE\":\"Tickets\",\"NRhrIB\":\"Tickets & Produkte\",\"ikA//P\":\"verkaufte Tickets\",\"i+idBz\":\"Verkaufte Tickets\",\"AGRilS\":\"Verkaufte Tickets\",\"56Qw2C\":\"Tickets erfolgreich sortiert\",\"4f8A8M\":\"Tickets to which the promo code applies (Applies to all by default)\",\"Aiggp0\":\"Tiered products allow you to offer multiple price options for the same product.\\nThis is perfect for early bird products, or offering different price\\noptions for different groups of people.\",\"oYaHuq\":\"Stufenticket\",\"XZrhpz\":\"Tiered Ticket - Coming Soon\",\"4M150e\":\"Mit gestaffelten Tickets können Sie mehrere Preisoptionen für dasselbe Ticket anbieten.\\nDas ist ideal für Frühbuchertickets oder das Anbieten unterschiedlicher Preisoptionen\\nfür unterschiedliche Personengruppen.\",\"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.\",\"BZBYf3\":\"Um Kreditkartenzahlungen zu empfangen, musst du dein Stripe-Konto verbinden. Stripe ist unser Zahlungsabwicklungspartner, der sichere Transaktionen und pünktliche Auszahlungen gewährleistet.\",\"/b6Z1R\":\"Verfolgen Sie Einnahmen, Seitenaufrufe und Verkäufe mit detaillierten Analysen und exportierbaren Berichten\",\"OpKMSn\":\"Transaktionsgebühr:\",\"mLGbAS\":[\"Teilnehmer \",[\"0\"],\" konnte nicht ausgewählt werden\"],\"nNdxt9\":\"Ticket konnte nicht erstellt werden. Bitte überprüfen Sie Ihre Angaben\",\"IrVSu+\":\"Produkt konnte nicht dupliziert werden. Bitte überprüfen Sie Ihre Angaben\",\"Vx2J6x\":\"Teilnehmer konnte nicht abgerufen werden\",\"ZBAScj\":\"Unbekannter Teilnehmer\",\"oMcLhS\":\"Unlimited ticket quantity available\",\"ZkS2p3\":\"Veranstaltung nicht mehr veröffentlichen\",\"gsehpV\":\"Upload an image to be displayed on the event page\",\"lnCMdg\":\"Bild hochladen\",\"HtrFfw\":\"URL ist erforderlich\",\"fROFIL\":\"Vietnamesisch\",\"gj5YGm\":\"Sehen Sie sich Berichte zu Ihrer Veranstaltung an und laden Sie sie herunter. Bitte beachten Sie, dass nur abgeschlossene Bestellungen in diesen Berichten enthalten sind.\",\"c7VN/A\":\"Antworten anzeigen\",\"AM+zF3\":\"Teilnehmer anzeigen\",\"e4mhwd\":\"Zur Event-Homepage\",\"n6EaWL\":\"Protokolle anzeigen\",\"AMkkeL\":\"Bestellung anzeigen\",\"MXm9nr\":\"VIP-Produkt\",\"GdWB+V\":\"Webhook erfolgreich erstellt\",\"2X4ecw\":\"Webhook erfolgreich gelöscht\",\"CThMKa\":\"Webhook-Protokolle\",\"nuh/Wq\":\"Webhook-URL\",\"8BMPMe\":\"Webhook sendet keine Benachrichtigungen\",\"FSaY52\":\"Webhook sendet Benachrichtigungen\",\"v1kQyJ\":\"Webhooks\",\"jupD+L\":\"Willkommen zurück 👋\",\"je8QQT\":\"Willkommen bei Hi.Events 👋\",\"wjqPqF\":\"Was sind Stufentickets?\",\"5iXvHA\":\"What is a Tiered Ticketing?\",\"46L1AK\":\"Was ist ein Webhook?\",\"MhhnvW\":\"Für welche Tickets gilt dieser Code? (Gilt standardmäßig für alle)\",\"dCil3h\":\"Auf welche Tickets soll sich diese Frage beziehen?\",\"cxsKvw\":\"Wenn ein Check-in gelöscht wird\",\"Gmd0hv\":\"Wenn ein neuer Teilnehmer erstellt wird\",\"Lc18qn\":\"Wenn eine neue Bestellung erstellt wird\",\"dfkQIO\":\"Wenn ein neues Produkt erstellt wird\",\"8OhzyY\":\"Wenn ein Produkt gelöscht wird\",\"tRXdQ9\":\"Wenn ein Produkt aktualisiert wird\",\"Q7CWxp\":\"Wenn ein Teilnehmer storniert wird\",\"IuUoyV\":\"Wenn ein Teilnehmer eingecheckt wird\",\"nBVOd7\":\"Wenn ein Teilnehmer aktualisiert wird\",\"ny2r8d\":\"Wenn eine Bestellung storniert wird\",\"c9RYbv\":\"Wenn eine Bestellung als bezahlt markiert wird\",\"ejMDw1\":\"Wenn eine Bestellung erstattet wird\",\"fVPt0F\":\"Wenn eine Bestellung aktualisiert wird\",\"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\",\"4ysd6z\":\"You can connecting using this Zoom link...\",\"9HGdDw\":\"Sie können einen Promo-Code erstellen, der auf dieses Ticket abzielt, auf der\",\"UqVaVO\":\"Sie können den Tickettyp nicht ändern, da diesem Ticket Teilnehmer zugeordnet sind.\",\"zQ8idk\":\"You cannot change the ticket type because there are already tickets sold for this ticket.\",\"3vRX5A\":\"Sie können diese Preisstufe nicht löschen, da für diese Stufe bereits Tickets verkauft wurden. Sie können sie stattdessen ausblenden.\",\"RCC09s\":\"You cannot edit a default question\",\"XoeazJ\":\"You have no attendee questions. Attendee questions are asked once per attendee.\",\"FZKDIe\":\"You have no order questions. Order questions are asked once per order.\",\"casL1O\":\"Sie haben Steuern und Gebühren zu einem kostenlosen Produkt hinzugefügt. Möchten Sie diese entfernen?\",\"183zcL\":\"Sie haben Steuern und Gebühren zu einem Freiticket hinzugefügt. Möchten Sie diese entfernen oder unkenntlich machen?\",\"2v5MI1\":\"Sie haben noch keine Nachrichten gesendet. Sie können Nachrichten an alle Teilnehmer oder an bestimmte Ticketinhaber senden.\",\"LRguuL\":\"You must have at least one tier\",\"FRl8Jv\":\"Sie müssen Ihre Konto-E-Mail-Adresse verifizieren, bevor Sie Nachrichten senden können.\",\"8QNzin\":\"Sie benötigen ein Ticket, bevor Sie eine Kapazitätszuweisung erstellen können.\",\"WHXRMI\":\"Sie benötigen mindestens ein Ticket, um loslegen zu können. Kostenlos, kostenpflichtig oder der Benutzer kann selbst entscheiden, was er bezahlen möchte.\",\"bdg03s\":\"Your account email in outgoing emails.\",\"TF37u6\":\"Deine Teilnehmer wurden erfolgreich exportiert.\",\"nBqgQb\":\"Ihre E-Mail\",\"R02pnV\":\"Ihr Event muss live sein, bevor Sie Tickets an Teilnehmer verkaufen können.\",\"cqo2VO\":\"Ihre Veranstaltung muss live sein, bevor Sie Tickets verkaufen können.\",\"la26JS\":\"Your order is in progress\",\"XeNum6\":\"Deine Bestellungen wurden erfolgreich exportiert.\",\"vvO1I2\":\"Ihr Stripe-Konto ist verbunden und bereit zur Zahlungsabwicklung.\",\"3k7HDY\":\"Zip\",\"VftCuk\":\"Zoom link, Google Meet link, etc.\",\"YtqjMA\":\"Aufgrund des hohen Spam-Risikos ist eine manuelle Verifizierung erforderlich, bevor du Nachrichten senden kannst.\\nBitte kontaktiere uns, um Zugriff zu beantragen.\",\"8XAE7n\":\"Wenn du ein Konto bei uns hast, erhältst du eine E-Mail mit Anweisungen zum Zurücksetzen deines\\nPassworts.\"}")}; \ No newline at end of file +/*eslint-disable*/module.exports={messages:JSON.parse("{\"f8qS7T\":\"„Hier gibt es noch nichts zu sehen“\",\"J/hVSQ\":[[\"0\"]],\"Jv22kr\":[[\"0\"],\" <0>erfolgreich eingecheckt\"],\"yxhYRZ\":[[\"0\"],\" <0>erfolgreich ausgecheckt\"],\"KMgp2+\":[[\"0\"],\" verfügbar\"],\"Pmr5xp\":[[\"0\"],\" erfolgreich erstellt\"],\"FImCSc\":[[\"0\"],\" erfolgreich aktualisiert\"],\"KOr9b4\":[[\"0\"],\"s Veranstaltungen\"],\"cU8MWb\":[[\"0\"],\"/\",[\"1\"],\" eingecheckt\"],\"Vjij1k\":[[\"days\"],\" Tage, \",[\"hours\"],\" Stunden, \",[\"minutes\"],\" Minuten und \",[\"seconds\"],\" Sekunden\"],\"f3RdEk\":[[\"hours\"],\" Stunden, \",[\"minutes\"],\" Minuten und \",[\"seconds\"],\" Sekunden\"],\"fyE7Au\":[[\"minutes\"],\" Minuten und \",[\"seconds\"],\" Sekunden\"],\"NlQ0cx\":[\"Erste Veranstaltung von \",[\"organizerName\"]],\"Ul6IgC\":\"<0>Kapazitätszuweisungen ermöglichen es Ihnen, die Kapazität über Tickets oder ein ganzes Ereignis zu verwalten. Ideal für mehrtägige Veranstaltungen, Workshops und mehr, bei denen die Kontrolle der Teilnehmerzahl entscheidend ist.<1>Beispielsweise können Sie eine Kapazitätszuweisung mit einem <2>Tag Eins und einem <3>Alle Tage-Ticket verknüpfen. Sobald die Kapazität erreicht ist, werden beide Tickets automatisch nicht mehr zum Verkauf angeboten.\",\"Exjbj7\":\"<0>Einchecklisten helfen, den Eintritt der Teilnehmer zu verwalten. Sie können mehrere Tickets mit einer Eincheckliste verknüpfen und sicherstellen, dass nur Personen mit gültigen Tickets eintreten können.\",\"OXku3b\":\"<0>https://Ihre-website.com\",\"qnSLLW\":\"<0>Bitte geben Sie den Preis ohne Steuern und Gebühren ein.<1>Steuern und Gebühren können unten hinzugefügt werden.\",\"ZjMs6e\":\"<0>Die Anzahl der für dieses Produkt verfügbaren Produkte<1>Dieser Wert kann überschrieben werden, wenn mit diesem Produkt <2>Kapazitätsgrenzen verbunden sind.\",\"E15xs8\":\"⚡️ Richten Sie Ihre Veranstaltung ein\",\"FL6OwU\":\"✉️ Bestätigen Sie Ihre E-Mail-Adresse\",\"BN0OQd\":\"🎉 Herzlichen Glückwunsch zur Erstellung einer Veranstaltung!\",\"4kSf7w\":\"🎟️ Produkte hinzufügen\",\"4WT5tD\":\"🎨 Veranstaltungsseite anpassen\",\"3VPPdS\":\"💳 Mit Stripe verbinden\",\"cjdktw\":\"🚀 Veröffentliche dein Event\",\"rmelwV\":\"0 Minuten und 0 Sekunden\",\"i0puaE\":\"10.00\",\"qdfdgM\":\"Hauptstraße 123\",\"IoRZzD\":\"20\",\"+H1RMb\":\"01.01.2024 10:00\",\"Q/T49U\":\"01.01.2024 18:00\",\"hMT8+2\":\"94103\",\"efAM7X\":\"Ein Datumseingabefeld. Perfekt, um nach einem Geburtsdatum o.ä. zu fragen.\",\"6euFZ/\":[\"Ein standardmäßiger \",[\"type\"],\" wird automatisch auf alle neuen Produkte angewendet. Sie können dies für jedes Produkt einzeln überschreiben.\"],\"SMUbbQ\":\"Eine Dropdown-Eingabe erlaubt nur eine Auswahl\",\"qv4bfj\":\"Eine Gebühr, beispielsweise eine Buchungsgebühr oder eine Servicegebühr\",\"POT0K/\":\"Ein fester Betrag pro Produkt. Z.B., 0,50 $ pro Produkt\",\"f4vJgj\":\"Eine mehrzeilige Texteingabe\",\"OIPtI5\":\"Ein Prozentsatz des Produktpreises. Z.B., 3,5 % des Produktpreises\",\"ZthcdI\":\"Ein Promo-Code ohne Rabatt kann verwendet werden, um versteckte Produkte anzuzeigen.\",\"AG/qmQ\":\"Eine Radiooption hat mehrere Optionen, aber nur eine kann ausgewählt werden.\",\"h179TP\":\"Eine kurze Beschreibung der Veranstaltung, die in Suchmaschinenergebnissen und beim Teilen in sozialen Medien angezeigt wird. Standardmäßig wird die Veranstaltungsbeschreibung verwendet\",\"WKMnh4\":\"Eine einzeilige Texteingabe\",\"BHZbFy\":\"Eine einzelne Frage pro Bestellung. Z.B., Wie lautet Ihre Lieferadresse?\",\"Fuh+dI\":\"Eine einzelne Frage pro Produkt. Z.B., Welche T-Shirt-Größe haben Sie?\",\"RlJmQg\":\"Eine Standardsteuer wie Mehrwertsteuer oder GST\",\"uIKNjo\":\"Über die Veranstaltung\",\"3pykXZ\":\"Akzeptieren Sie Banküberweisungen, Schecks oder andere Offline-Zahlungsmethoden\",\"hrvLf4\":\"Akzeptieren Sie Kreditkartenzahlungen über Stripe\",\"bfXQ+N\":\"Einladung annehmen\",\"AeXO77\":\"Konto\",\"lkNdiH\":\"Kontoname\",\"Puv7+X\":\"Account Einstellungen\",\"OmylXO\":\"Konto erfolgreich aktualisiert\",\"7L01XJ\":\"Aktionen\",\"FQBaXG\":\"Aktivieren\",\"5T2HxQ\":\"Aktivierungsdatum\",\"F6pfE9\":\"Aktiv\",\"/PN1DA\":\"Fügen Sie eine Beschreibung für diese Eincheckliste hinzu\",\"0/vPdA\":\"Fügen Sie Anmerkungen über den Teilnehmer hinzu. Diese sind für den Teilnehmer nicht sichtbar.\",\"Or1CPR\":\"Fügen Sie Anmerkungen über den Teilnehmer hinzu...\",\"l3sZO1\":\"Fügen Sie Notizen zur Bestellung hinzu. Diese sind für den Kunden nicht sichtbar.\",\"xMekgu\":\"Fügen Sie Notizen zur Bestellung hinzu...\",\"PGPGsL\":\"Beschreibung hinzufügen\",\"gMK0ps\":\"Fügen Sie Ereignisdetails hinzu und verwalten Sie die Ereigniseinstellungen.\",\"OveehC\":\"Fügen Sie Anweisungen für Offline-Zahlungen hinzu (z. B. Überweisungsdetails, wo Schecks hingeschickt werden sollen, Zahlungsfristen)\",\"LTVoRa\":\"Weitere Produkte hinzufügen\",\"ApsD9J\":\"Neue hinzufügen\",\"TZxnm8\":\"Option hinzufügen\",\"24l4x6\":\"Produkt hinzufügen\",\"8q0EdE\":\"Produkt zur Kategorie hinzufügen\",\"YvCknQ\":\"Produkte hinzufügen\",\"Cw27zP\":\"Frage hinzufügen\",\"yWiPh+\":\"Steuern oder Gebühren hinzufügen\",\"goOKRY\":\"Ebene hinzufügen\",\"oZW/gT\":\"Zum Kalender hinzufügen\",\"pn5qSs\":\"Zusätzliche Informationen\",\"Y8DIQy\":\"Zusatzoptionen\",\"Du6bPw\":\"Adresse\",\"NY/x1b\":\"Anschrift Zeile 1\",\"POdIrN\":\"Anschrift Zeile 1\",\"cormHa\":\"Adresszeile 2\",\"gwk5gg\":\"Adresszeile 2\",\"U3pytU\":\"Administrator\",\"HLDaLi\":\"Administratorbenutzer haben vollständigen Zugriff auf Ereignisse und Kontoeinstellungen.\",\"W7AfhC\":\"Alle Teilnehmer dieser Veranstaltung\",\"cde2hc\":\"Alle Produkte\",\"5CQ+r0\":\"Erlauben Sie Teilnehmern, die mit unbezahlten Bestellungen verbunden sind, einzuchecken\",\"ipYKgM\":\"Suchmaschinenindizierung zulassen\",\"LRbt6D\":\"Suchmaschinen erlauben, dieses Ereignis zu indizieren\",\"+MHcJD\":\"Fast geschafft! Wir warten nur darauf, dass Ihre Zahlung bearbeitet wird. Dies sollte nur ein paar Sekunden dauern.\",\"ApOYO8\":\"Erstaunlich, Ereignis, Schlüsselwörter...\",\"hehnjM\":\"Menge\",\"R2O9Rg\":[\"Bezahlter Betrag (\",[\"0\"],\")\"],\"V7MwOy\":\"Beim Laden der Seite ist ein Fehler aufgetreten\",\"Q7UCEH\":\"Beim Sortieren der Fragen ist ein Fehler aufgetreten. Bitte versuchen Sie es erneut oder aktualisieren Sie die Seite\",\"jD/OCQ\":\"Ein Event ist die eigentliche Veranstaltung, die Sie veranstalten. Sie können später weitere Details hinzufügen.\",\"oBkF+i\":\"Ein Veranstalter ist das Unternehmen oder die Person, die die Veranstaltung ausrichtet.\",\"W5A0Ly\":\"Ein unerwarteter Fehler ist aufgetreten.\",\"byKna+\":\"Ein unerwarteter Fehler ist aufgetreten. Bitte versuchen Sie es erneut.\",\"ubdMGz\":\"Alle Anfragen von Produktinhabern werden an diese E-Mail-Adresse gesendet. Diese wird auch als „Antwort-an“-Adresse für alle von dieser Veranstaltung gesendeten E-Mails verwendet.\",\"aAIQg2\":\"Aussehen\",\"Ym1gnK\":\"angewandt\",\"sy6fss\":[\"Gilt für \",[\"0\"],\" Produkte\"],\"kadJKg\":\"Gilt für 1 Produkt\",\"DB8zMK\":\"Anwenden\",\"GctSSm\":\"Promo-Code anwenden\",\"ARBThj\":[\"Diesen \",[\"type\"],\" auf alle neuen Produkte anwenden\"],\"S0ctOE\":\"Veranstaltung archivieren\",\"TdfEV7\":\"Archiviert\",\"A6AtLP\":\"Archivierte Veranstaltungen\",\"q7TRd7\":\"Möchten Sie diesen Teilnehmer wirklich aktivieren?\",\"TvkW9+\":\"Sind Sie sicher, dass Sie diese Veranstaltung archivieren möchten?\",\"/CV2x+\":\"Möchten Sie diesen Teilnehmer wirklich stornieren? Dadurch wird sein Ticket ungültig.\",\"YgRSEE\":\"Möchten Sie diesen Aktionscode wirklich löschen?\",\"iU234U\":\"Möchten Sie diese Frage wirklich löschen?\",\"CMyVEK\":\"Möchten Sie diese Veranstaltung wirklich als Entwurf speichern? Dadurch wird die Veranstaltung für die Öffentlichkeit unsichtbar.\",\"mEHQ8I\":\"Möchten Sie diese Veranstaltung wirklich öffentlich machen? Dadurch wird die Veranstaltung für die Öffentlichkeit sichtbar\",\"s4JozW\":\"Sind Sie sicher, dass Sie diese Veranstaltung wiederherstellen möchten? Es wird als Entwurf wiederhergestellt.\",\"vJuISq\":\"Sind Sie sicher, dass Sie diese Kapazitätszuweisung löschen möchten?\",\"baHeCz\":\"Möchten Sie diese Eincheckliste wirklich löschen?\",\"LBLOqH\":\"Einmal pro Bestellung anfragen\",\"wu98dY\":\"Einmal pro Produkt fragen\",\"ss9PbX\":\"Teilnehmer\",\"m0CFV2\":\"Teilnehmerdetails\",\"QKim6l\":\"Teilnehmer nicht gefunden\",\"R5IT/I\":\"Teilnehmernotizen\",\"lXcSD2\":\"Fragen der Teilnehmer\",\"HT/08n\":\"Teilnehmer-Ticket\",\"9SZT4E\":\"Teilnehmer\",\"iPBfZP\":\"Registrierte Teilnehmer\",\"7KxcHR\":\"Teilnehmer mit einem bestimmten Produkt\",\"IMJ6rh\":\"Automatische Größenanpassung\",\"vZ5qKF\":\"Passen Sie die Widgethöhe automatisch an den Inhalt an. Wenn diese Option deaktiviert ist, füllt das Widget die Höhe des Containers aus.\",\"4lVaWA\":\"Warten auf Offline-Zahlung\",\"2rHwhl\":\"Warten auf Offline-Zahlung\",\"3wF4Q/\":\"Zahlung ausstehend\",\"ioG+xt\":\"Zahlung steht aus\",\"3PmQfI\":\"Tolles Event\",\"Yrbm6T\":\"Awesome Organizer Ltd.\",\"9002sI\":\"Zurück zu allen Events\",\"A302fe\":\"Zurück zur Veranstaltungsseite\",\"VCoEm+\":\"Zurück zur Anmeldung\",\"k1bLf+\":\"Hintergrundfarbe\",\"I7xjqg\":\"Hintergrundtyp\",\"1mwMl+\":\"Bevor Sie versenden!\",\"/yeZ20\":\"Bevor Ihre Veranstaltung live gehen kann, müssen Sie einige Dinge erledigen.\",\"ze6ETw\":\"Beginnen Sie in wenigen Minuten mit dem Verkauf von Produkten\",\"8rE61T\":\"Rechnungsadresse\",\"/xC/im\":\"Rechnungseinstellungen\",\"rp/zaT\":\"Brasilianisches Portugiesisch\",\"whqocw\":\"Mit der Registrierung stimmen Sie unseren <0>Servicebedingungen und <1>Datenschutzrichtlinie zu.\",\"bcCn6r\":\"Berechnungstyp\",\"+8bmSu\":\"Kalifornien\",\"iStTQt\":\"Die Kameraberechtigung wurde verweigert. <0>Fordern Sie die Berechtigung erneut an. Wenn dies nicht funktioniert, müssen Sie dieser Seite in Ihren Browsereinstellungen <1>Zugriff auf Ihre Kamera gewähren.\",\"dEgA5A\":\"Stornieren\",\"Gjt/py\":\"E-Mail-Änderung abbrechen\",\"tVJk4q\":\"Bestellung stornieren\",\"Os6n2a\":\"Bestellung stornieren\",\"Mz7Ygx\":[\"Bestellung stornieren \",[\"0\"]],\"3tTjpi\":\"Das Stornieren wird alle mit dieser Bestellung verbundenen Produkte stornieren und die Produkte wieder in den verfügbaren Bestand zurückgeben.\",\"vv7kpg\":\"Abgesagt\",\"U7nGvl\":\"Check-in nicht möglich\",\"QyjCeq\":\"Kapazität\",\"V6Q5RZ\":\"Kapazitätszuweisung erfolgreich erstellt\",\"k5p8dz\":\"Kapazitätszuweisung erfolgreich gelöscht\",\"nDBs04\":\"Kapazitätsmanagement\",\"ddha3c\":\"Kategorien ermöglichen es Ihnen, Produkte zusammenzufassen. Zum Beispiel könnten Sie eine Kategorie für \\\"Tickets\\\" und eine andere für \\\"Merchandise\\\" haben.\",\"iS0wAT\":\"Kategorien helfen Ihnen, Ihre Produkte zu organisieren. Dieser Titel wird auf der öffentlichen Veranstaltungsseite angezeigt.\",\"eorM7z\":\"Kategorien erfolgreich neu geordnet.\",\"3EXqwa\":\"Kategorie erfolgreich erstellt\",\"77/YgG\":\"Cover ändern\",\"GptGxg\":\"Kennwort ändern\",\"xMDm+I\":\"Einchecken\",\"p2WLr3\":[\"Check-in \",[\"0\"],\" \",[\"1\"]],\"D6+U20\":\"Einchecken und Bestellung als bezahlt markieren\",\"QYLpB4\":\"Nur einchecken\",\"/Ta1d4\":\"Auschecken\",\"5LDT6f\":\"Schau dir dieses Event an!\",\"gXcPxc\":\"Einchecken\",\"fVUbUy\":\"Eincheckliste erfolgreich erstellt\",\"+CeSxK\":\"Eincheckliste erfolgreich gelöscht\",\"+hBhWk\":\"Die Eincheckliste ist abgelaufen\",\"mBsBHq\":\"Die Eincheckliste ist nicht aktiv\",\"vPqpQG\":\"Eincheckliste nicht gefunden\",\"tejfAy\":\"Einchecklisten\",\"hD1ocH\":\"Eincheck-URL in die Zwischenablage kopiert\",\"CNafaC\":\"Kontrollkästchenoptionen ermöglichen Mehrfachauswahl\",\"SpabVf\":\"Kontrollkästchen\",\"CRu4lK\":\"Eingecheckt\",\"znIg+z\":\"Zur Kasse\",\"1WnhCL\":\"Checkout-Einstellungen\",\"6imsQS\":\"Vereinfachtes Chinesisch\",\"JjkX4+\":\"Wählen Sie eine Farbe für Ihren Hintergrund\",\"/Jizh9\":\"Wähle einen Account\",\"3wV73y\":\"Stadt\",\"FG98gC\":\"Suchtext löschen\",\"EYeuMv\":\"klicken Sie hier\",\"sby+1/\":\"Zum Kopieren klicken\",\"yz7wBu\":\"Schließen\",\"62Ciis\":\"Sidebar schließen\",\"EWPtMO\":\"Code\",\"ercTDX\":\"Der Code muss zwischen 3 und 50 Zeichen lang sein\",\"oqr9HB\":\"Dieses Produkt einklappen, wenn die Veranstaltungsseite initial geladen wird\",\"jZlrte\":\"Farbe\",\"Vd+LC3\":\"Die Farbe muss ein gültiger Hex-Farbcode sein. Beispiel: #ffffff\",\"1HfW/F\":\"Farben\",\"VZeG/A\":\"Demnächst\",\"yPI7n9\":\"Durch Kommas getrennte Schlüsselwörter, die das Ereignis beschreiben. Diese werden von Suchmaschinen verwendet, um das Ereignis zu kategorisieren und zu indizieren.\",\"NPZqBL\":\"Bestellung abschließen\",\"guBeyC\":\"Jetzt bezahlen\",\"C8HNV2\":\"Jetzt bezahlen\",\"qqWcBV\":\"Vollendet\",\"6HK5Ct\":\"Abgeschlossene Bestellungen\",\"NWVRtl\":\"Abgeschlossene Bestellungen\",\"DwF9eH\":\"Komponentencode\",\"Tf55h7\":\"Konfigurierter Rabatt\",\"7VpPHA\":\"Bestätigen\",\"ZaEJZM\":\"E-Mail-Änderung bestätigen\",\"yjkELF\":\"Bestätige neues Passwort\",\"xnWESi\":\"Bestätige das Passwort\",\"p2/GCq\":\"Bestätige das Passwort\",\"wnDgGj\":\"E-Mail-Adresse wird bestätigt …\",\"pbAk7a\":\"Stripe verbinden\",\"UMGQOh\":\"Mit Stripe verbinden\",\"QKLP1W\":\"Verbinden Sie Ihr Stripe-Konto, um Zahlungen zu empfangen.\",\"5lcVkL\":\"Verbindungsdetails\",\"yAej59\":\"Hintergrundfarbe des Inhalts\",\"xGVfLh\":\"Weitermachen\",\"X++RMT\":\"Text der Schaltfläche „Weiter“\",\"AfNRFG\":\"Text der Schaltfläche „Weiter“\",\"lIbwvN\":\"Mit der Ereigniseinrichtung fortfahren\",\"HB22j9\":\"Weiter einrichten\",\"bZEa4H\":\"Mit der Einrichtung von Stripe Connect fortfahren\",\"6V3Ea3\":\"Kopiert\",\"T5rdis\":\"in die Zwischenablage kopiert\",\"he3ygx\":\"Kopieren\",\"r2B2P8\":\"Eincheck-URL kopieren\",\"8+cOrS\":\"Details auf alle Teilnehmer anwenden\",\"ENCIQz\":\"Link kopieren\",\"E6nRW7\":\"URL kopieren\",\"JNCzPW\":\"Land\",\"IF7RiR\":\"Abdeckung\",\"hYgDIe\":\"Erstellen\",\"b9XOHo\":[\"Erstellen Sie \",[\"0\"]],\"k9RiLi\":\"Ein Produkt erstellen\",\"6kdXbW\":\"Einen Promo-Code erstellen\",\"n5pRtF\":\"Ticket erstellen\",\"X6sRve\":[\"Erstellen Sie ein Konto oder <0>\",[\"0\"],\", um loszulegen\"],\"nx+rqg\":\"einen Organizer erstellen\",\"ipP6Ue\":\"Teilnehmer erstellen\",\"VwdqVy\":\"Kapazitätszuweisung erstellen\",\"EwoMtl\":\"Kategorie erstellen\",\"XletzW\":\"Kategorie erstellen\",\"WVbTwK\":\"Eincheckliste erstellen\",\"uN355O\":\"Ereignis erstellen\",\"BOqY23\":\"Neu erstellen\",\"kpJAeS\":\"Organizer erstellen\",\"a0EjD+\":\"Produkt erstellen\",\"+scrJC\":\"Erstellen Sie Produkte für Ihre Veranstaltung, legen Sie Preise fest und verwalten Sie die verfügbare Menge.\",\"sYpiZP\":\"Promo-Code erstellen\",\"B3Mkdt\":\"Frage erstellen\",\"UKfi21\":\"Steuer oder Gebühr erstellen\",\"d+F6q9\":\"Erstellt\",\"Q2lUR2\":\"Währung\",\"DCKkhU\":\"Aktuelles Passwort\",\"uIElGP\":\"Benutzerdefinierte Karten-URL\",\"UEqXyt\":\"Benutzerdefinierter Bereich\",\"876pfE\":\"Kunde\",\"QOg2Sf\":\"Passen Sie die E-Mail- und Benachrichtigungseinstellungen für dieses Ereignis an\",\"Y9Z/vP\":\"Passen Sie die Startseite der Veranstaltung und die Nachrichten an der Kasse an\",\"2E2O5H\":\"Passen Sie die sonstigen Einstellungen für dieses Ereignis an\",\"iJhSxe\":\"Passen Sie die SEO-Einstellungen für dieses Event an\",\"KIhhpi\":\"Passen Sie Ihre Veranstaltungsseite an\",\"nrGWUv\":\"Passen Sie Ihre Veranstaltungsseite an Ihre Marke und Ihren Stil an.\",\"Zz6Cxn\":\"Gefahrenzone\",\"ZQKLI1\":\"Gefahrenzone\",\"7p5kLi\":\"Dashboard\",\"mYGY3B\":\"Datum\",\"JvUngl\":\"Datum & Uhrzeit\",\"JJhRbH\":\"Kapazität am ersten Tag\",\"cnGeoo\":\"Löschen\",\"jRJZxD\":\"Kapazität löschen\",\"VskHIx\":\"Kategorie löschen\",\"Qrc8RZ\":\"Eincheckliste löschen\",\"WHf154\":\"Code löschen\",\"heJllm\":\"Cover löschen\",\"KWa0gi\":\"Lösche Bild\",\"1l14WA\":\"Produkt löschen\",\"IatsLx\":\"Frage löschen\",\"Nu4oKW\":\"Beschreibung\",\"YC3oXa\":\"Beschreibung für das Eincheckpersonal\",\"URmyfc\":\"Einzelheiten\",\"1lRT3t\":\"Das Deaktivieren dieser Kapazität wird Verkäufe verfolgen, aber nicht stoppen, wenn das Limit erreicht ist\",\"H6Ma8Z\":\"Rabatt\",\"ypJ62C\":\"Rabatt %\",\"3LtiBI\":[\"Rabatt in \",[\"0\"]],\"C8JLas\":\"Rabattart\",\"1QfxQT\":\"Zurückweisen\",\"DZlSLn\":\"Dokumentenbeschriftung\",\"cVq+ga\":\"Sie haben noch kein Konto? <0>Registrieren\",\"3F1nBX\":\"Spende / Produkt mit freier Preiswahl\",\"OvNbls\":\".ics herunterladen\",\"kodV18\":\"CSV herunterladen\",\"CELKku\":\"Rechnung herunterladen\",\"LQrXcu\":\"Rechnung herunterladen\",\"QIodqd\":\"QR-Code herunterladen\",\"yhjU+j\":\"Rechnung wird heruntergeladen\",\"uABpqP\":\"Ziehen und ablegen oder klicken\",\"CfKofC\":\"Dropdown-Auswahl\",\"JzLDvy\":\"Duplizieren Sie Kapazitätszuweisungen\",\"ulMxl+\":\"Duplizieren Sie Check-in-Listen\",\"vi8Q/5\":\"Ereignis duplizieren\",\"3ogkAk\":\"Ereignis duplizieren\",\"Yu6m6X\":\"Duplizieren Sie das Titelbild des Ereignisses\",\"+fA4C7\":\"Optionen duplizieren\",\"SoiDyI\":\"Produkte duplizieren\",\"57ALrd\":\"Promo-Codes duplizieren\",\"83Hu4O\":\"Fragen duplizieren\",\"20144c\":\"Einstellungen duplizieren\",\"7Cx5It\":\"Früher Vogel\",\"ePK91l\":\"Bearbeiten\",\"N6j2JH\":[\"Bearbeiten \",[\"0\"]],\"kBkYSa\":\"Kapazität bearbeiten\",\"oHE9JT\":\"Kapazitätszuweisung bearbeiten\",\"j1Jl7s\":\"Kategorie bearbeiten\",\"FU1gvP\":\"Eincheckliste bearbeiten\",\"iFgaVN\":\"Code bearbeiten\",\"jrBSO1\":\"Organisator bearbeiten\",\"tdD/QN\":\"Produkt bearbeiten\",\"n143Tq\":\"Produktkategorie bearbeiten\",\"9BdS63\":\"Aktionscode bearbeiten\",\"O0CE67\":\"Frage bearbeiten\",\"EzwCw7\":\"Frage bearbeiten\",\"poTr35\":\"Benutzer bearbeiten\",\"GTOcxw\":\"Benutzer bearbeiten\",\"pqFrv2\":\"z.B. 2,50 für 2,50 $\",\"3yiej1\":\"z.B. 23,5 für 23,5 %\",\"O3oNi5\":\"Email\",\"VxYKoK\":\"E-Mail- und Benachrichtigungseinstellungen\",\"ATGYL1\":\"E-Mail-Adresse\",\"hzKQCy\":\"E-Mail-Adresse\",\"HqP6Qf\":\"E-Mail-Änderung erfolgreich abgebrochen\",\"mISwW1\":\"E-Mail-Änderung ausstehend\",\"APuxIE\":\"E-Mail-Bestätigung erneut gesendet\",\"YaCgdO\":\"E-Mail-Bestätigung erfolgreich erneut gesendet\",\"jyt+cx\":\"E-Mail-Fußzeilennachricht\",\"I6F3cp\":\"E-Mail nicht verifiziert\",\"NTZ/NX\":\"Code einbetten\",\"4rnJq4\":\"Skript einbetten\",\"8oPbg1\":\"Rechnungsstellung aktivieren\",\"j6w7d/\":\"Aktivieren Sie diese Kapazität, um den Produktverkauf zu stoppen, wenn das Limit erreicht ist\",\"VFv2ZC\":\"Endtermin\",\"237hSL\":\"Beendet\",\"nt4UkP\":\"Beendete Veranstaltungen\",\"lYGfRP\":\"Englisch\",\"MhVoma\":\"Geben Sie einen Betrag ohne Steuern und Gebühren ein.\",\"SlfejT\":\"Fehler\",\"3Z223G\":\"Fehler beim Bestätigen der E-Mail-Adresse\",\"a6gga1\":\"Fehler beim Bestätigen der E-Mail-Änderung\",\"5/63nR\":\"EUR\",\"0pC/y6\":\"Ereignis\",\"CFLUfD\":\"Veranstaltung erfolgreich erstellt 🎉\",\"/dgc8E\":\"Veranstaltungsdatum\",\"0Zptey\":\"Ereignisstandards\",\"QcCPs8\":\"Veranstaltungsdetails\",\"6fuA9p\":\"Ereignis erfolgreich dupliziert\",\"AEuj2m\":\"Veranstaltungsstartseite\",\"Xe3XMd\":\"Das Ereignis ist nicht öffentlich sichtbar\",\"4pKXJS\":\"Veranstaltung ist öffentlich sichtbar\",\"ClwUUD\":\"Veranstaltungsort & Details zum Veranstaltungsort\",\"OopDbA\":\"Veranstaltungsseite\",\"4/If97\":\"Die Aktualisierung des Ereignisstatus ist fehlgeschlagen. Bitte versuchen Sie es später erneut\",\"btxLWj\":\"Veranstaltungsstatus aktualisiert\",\"nMU2d3\":\"Veranstaltungs-URL\",\"tst44n\":\"Veranstaltungen\",\"sZg7s1\":\"Ablaufdatum\",\"KnN1Tu\":\"Läuft ab\",\"uaSvqt\":\"Verfallsdatum\",\"GS+Mus\":\"Export\",\"9xAp/j\":\"Teilnehmer konnte nicht abgesagt werden\",\"ZpieFv\":\"Stornierung der Bestellung fehlgeschlagen\",\"z6tdjE\":\"Nachricht konnte nicht gelöscht werden. Bitte versuchen Sie es erneut.\",\"xDzTh7\":\"Rechnung konnte nicht heruntergeladen werden. Bitte versuchen Sie es erneut.\",\"9zSt4h\":\"Das Exportieren der Teilnehmer ist fehlgeschlagen. Bitte versuchen Sie es erneut.\",\"2uGNuE\":\"Der Export der Bestellungen ist fehlgeschlagen. Bitte versuchen Sie es erneut.\",\"d+KKMz\":\"Laden der Eincheckliste fehlgeschlagen\",\"ZQ15eN\":\"Ticket-E-Mail konnte nicht erneut gesendet werden\",\"ejXy+D\":\"Produkte konnten nicht sortiert werden\",\"PLUB/s\":\"Gebühr\",\"/mfICu\":\"Gebühren\",\"LyFC7X\":\"Bestellungen filtern\",\"cSev+j\":\"Filter\",\"CVw2MU\":[\"Filter (\",[\"activeFilterCount\"],\")\"],\"wPmXlA\":\"Erste Rechnungsnummer\",\"V1EGGU\":\"Vorname\",\"kODvZJ\":\"Vorname\",\"S+tm06\":\"Der Vorname muss zwischen 1 und 50 Zeichen lang sein\",\"1g0dC4\":\"Vorname, Nachname und E-Mail-Adresse sind Standardfragen und werden immer in den Bestellvorgang einbezogen.\",\"Rs/IcB\":\"Erstmals verwendet\",\"TpqW74\":\"Fest\",\"irpUxR\":\"Fester Betrag\",\"TF9opW\":\"Flash ist auf diesem Gerät nicht verfügbar\",\"UNMVei\":\"Passwort vergessen?\",\"2POOFK\":\"Frei\",\"P/OAYJ\":\"Kostenloses Produkt\",\"vAbVy9\":\"Kostenloses Produkt, keine Zahlungsinformationen erforderlich\",\"nLC6tu\":\"Französisch\",\"Weq9zb\":\"Allgemein\",\"DDcvSo\":\"Deutsch\",\"4GLxhy\":\"Erste Schritte\",\"4D3rRj\":\"Zurück zum Profil\",\"9LCqFI\":\"Zur Event-Homepage\",\"ebIDwV\":\"Google Kalender\",\"RUz8o/\":\"Bruttoverkäufe\",\"IgcAGN\":\"Bruttoumsatz\",\"yRg26W\":\"Bruttoumsatz\",\"R4r4XO\":\"Gäste\",\"26pGvx\":\"Haben Sie einen Promo-Code?\",\"V7yhws\":\"hello@awesome-events.com\",\"6K/IHl\":\"Hier ist ein Beispiel, wie Sie die Komponente in Ihrer Anwendung verwenden können.\",\"Y1SSqh\":\"Hier ist die React-Komponente, die Sie verwenden können, um das Widget in Ihre Anwendung einzubetten.\",\"QuhVpV\":[\"Hallo \",[\"0\"],\" 👋\"],\"Ow9Hz5\":[\"Hi.Events-Konferenz \",[\"0\"]],\"verBst\":\"Hi.Events Konferenzzentrum\",\"6eMEQO\":\"hi.events-Logo\",\"C4qOW8\":\"Vor der Öffentlichkeit verborgen\",\"gt3Xw9\":\"versteckte Frage\",\"g3rqFe\":\"versteckte Fragen\",\"k3dfFD\":\"Versteckte Fragen sind nur für den Veranstalter und nicht für den Kunden sichtbar.\",\"vLyv1R\":\"Verstecken\",\"Mkkvfd\":\"Seite „Erste Schritte“ ausblenden\",\"mFn5Xz\":\"Versteckte Fragen ausblenden\",\"YHsF9c\":\"Produkt nach Verkaufsenddatum ausblenden\",\"06s3w3\":\"Produkt vor Verkaufsstartdatum ausblenden\",\"axVMjA\":\"Produkt ausblenden, es sei denn, der Benutzer hat einen gültigen Promo-Code\",\"ySQGHV\":\"Produkt bei Ausverkauf ausblenden\",\"SCimta\":\"Blenden Sie die Seite „Erste Schritte“ in der Seitenleiste aus.\",\"5xR17G\":\"Dieses Produkt vor Kunden verbergen\",\"Da29Y6\":\"Diese Frage verbergen\",\"fvDQhr\":\"Diese Ebene vor Benutzern verbergen\",\"lNipG+\":\"Das Ausblenden eines Produkts verhindert, dass Benutzer es auf der Veranstaltungsseite sehen.\",\"ZOBwQn\":\"Homepage-Design\",\"PRuBTd\":\"Homepage Designer\",\"YjVNGZ\":\"Homepage-Vorschau\",\"c3E/kw\":\"Homer\",\"8k8Njd\":\"Wie viele Minuten hat der Kunde Zeit, um seine Bestellung abzuschließen. Wir empfehlen mindestens 15 Minuten\",\"ySxKZe\":\"Wie oft kann dieser Code verwendet werden?\",\"dZsDbK\":[\"HTML-Zeichenlimit überschritten: \",[\"htmlLength\"],\"/\",[\"maxLength\"]],\"fYyXCd\":\"https://example-maps-service.com/...\",\"uOXLV3\":\"Ich stimme den <0>Allgemeinen Geschäftsbedingungen zu\",\"sd6lr7\":\"Ich möchte mit einer Offline-Methode bezahlen\",\"SdFlIP\":\"Ich möchte mit einer Online-Methode (z. B. Kreditkarte) bezahlen\",\"93DUnd\":[\"Wenn keine neue Registerkarte geöffnet wurde, <0><1>\",[\"0\"],\".\"],\"yKdof1\":\"Wenn leer, wird die Adresse verwendet, um einen Google Maps-Link zu erstellen\",\"UYT+c8\":\"Wenn aktiviert, kann das Check-in-Personal Teilnehmer entweder als eingecheckt markieren oder die Bestellung als bezahlt markieren und die Teilnehmer einchecken. Wenn deaktiviert, können Teilnehmer mit unbezahlten Bestellungen nicht eingecheckt werden.\",\"muXhGi\":\"Wenn aktiviert, erhält der Veranstalter eine E-Mail-Benachrichtigung, wenn eine neue Bestellung aufgegeben wird\",\"6fLyj/\":\"Sollten Sie diese Änderung nicht veranlasst haben, ändern Sie bitte umgehend Ihr Passwort.\",\"n/ZDCz\":\"Bild erfolgreich gelöscht\",\"Mfbc2v\":\"Bildabmessungen müssen zwischen 4000px und 4000px liegen. Mit einer maximalen Höhe von 4000px und einer maximalen Breite von 4000px\",\"uPEIvq\":\"Das Bild muss kleiner als 5 MB sein.\",\"AGZmwV\":\"Bild erfolgreich hochgeladen\",\"VyUuZb\":\"Bild-URL\",\"ibi52/\":\"Die Bildbreite muss mindestens 900 Pixel und die Höhe mindestens 50 Pixel betragen.\",\"NoNwIX\":\"Inaktiv\",\"T0K0yl\":\"Inaktive Benutzer können sich nicht anmelden.\",\"kO44sp\":\"Fügen Sie Verbindungsdetails für Ihr Online-Event hinzu. Diese Details werden auf der Bestellübersichtsseite und der Teilnehmer-Ticketseite angezeigt.\",\"FlQKnG\":\"Steuern und Gebühren im Preis einbeziehen\",\"Vi+BiW\":[\"Beinhaltet \",[\"0\"],\" Produkte\"],\"lpm0+y\":\"Beinhaltet 1 Produkt\",\"UiAk5P\":\"Bild einfügen\",\"OyLdaz\":\"Einladung erneut verschickt!\",\"HE6KcK\":\"Einladung widerrufen!\",\"SQKPvQ\":\"Benutzer einladen\",\"bKOYkd\":\"Rechnung erfolgreich heruntergeladen\",\"alD1+n\":\"Rechnungsnotizen\",\"kOtCs2\":\"Rechnungsnummerierung\",\"UZ2GSZ\":\"Rechnungseinstellungen\",\"PgdQrx\":\"Rückerstattung ausstellen\",\"HX5SVx\":\"Artikel\",\"KFXip/\":\"John\",\"XcgRvb\":\"Johnson\",\"87a/t/\":\"Etikett\",\"vXIe7J\":\"Sprache\",\"2LMsOq\":\"Letzte 12 Monate\",\"vfe90m\":\"Letzte 14 Tage\",\"aK4uBd\":\"Letzte 24 Stunden\",\"uq2BmQ\":\"Letzte 30 Tage\",\"bB6Ram\":\"Letzte 48 Stunden\",\"VlnB7s\":\"Letzte 6 Monate\",\"ct2SYD\":\"Letzte 7 Tage\",\"XgOuA7\":\"Letzte 90 Tage\",\"I3yitW\":\"Letzte Anmeldung\",\"1ZaQUH\":\"Nachname\",\"UXBCwc\":\"Nachname\",\"tKCBU0\":\"Zuletzt verwendet\",\"tITjB1\":\"Erfahren Sie mehr über Stripe\",\"enV0g0\":\"Leer lassen, um das Standardwort \\\"Rechnung\\\" zu verwenden\",\"vR92Yn\":\"Beginnen wir mit der Erstellung Ihres ersten Organizers\",\"Z3FXyt\":\"Wird geladen...\",\"wJijgU\":\"Standort\",\"sQia9P\":\"Anmelden\",\"zUDyah\":\"Einloggen\",\"z0t9bb\":\"Anmelden\",\"nOhz3x\":\"Ausloggen\",\"F2jAFv\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ich habe das Element platziert …\",\"NJahlc\":\"Rechnungsadresse beim Checkout erforderlich machen\",\"MU3ijv\":\"Machen Sie diese Frage obligatorisch\",\"wckWOP\":\"Verwalten\",\"onpJrA\":\"Teilnehmer verwalten\",\"n4SpU5\":\"Veranstaltung verwalten\",\"WVgSTy\":\"Bestellung verwalten\",\"1MAvUY\":\"Zahlungs- und Rechnungseinstellungen für diese Veranstaltung verwalten.\",\"cQrNR3\":\"Profil verwalten\",\"AtXtSw\":\"Verwalten Sie Steuern und Gebühren, die auf Ihre Produkte angewendet werden können\",\"ophZVW\":\"Tickets verwalten\",\"DdHfeW\":\"Verwalten Sie Ihre Kontodetails und Standardeinstellungen\",\"S+UjNL\":\"Verwalten Sie Ihre Stripe-Zahlungsdetails\",\"BfucwY\":\"Verwalten Sie Ihre Benutzer und deren Berechtigungen\",\"1m+YT2\":\"Bevor der Kunde zur Kasse gehen kann, müssen obligatorische Fragen beantwortet werden.\",\"Dim4LO\":\"Einen Teilnehmer manuell hinzufügen\",\"e4KdjJ\":\"Teilnehmer manuell hinzufügen\",\"vFjEnF\":\"Als bezahlt markieren\",\"g9dPPQ\":\"Maximal pro Bestellung\",\"l5OcwO\":\"Nachricht an Teilnehmer\",\"Gv5AMu\":\"Nachrichten an Teilnehmer senden\",\"oUCR3c\":\"Nachricht an Teilnehmer mit bestimmten Produkten senden\",\"Lvi+gV\":\"Nachricht an den Käufer\",\"tNZzFb\":\"Nachrichteninhalt\",\"lYDV/s\":\"Nachrichten an einzelne Teilnehmer senden\",\"V7DYWd\":\"Nachricht gesendet\",\"t7TeQU\":\"Mitteilungen\",\"xFRMlO\":\"Mindestbestellwert\",\"QYcUEf\":\"Minimaler Preis\",\"RDie0n\":\"Sonstiges\",\"mYLhkl\":\"Verschiedene Einstellungen\",\"KYveV8\":\"Mehrzeiliges Textfeld\",\"VD0iA7\":\"Mehrere Preisoptionen. Perfekt für Frühbucherprodukte usw.\",\"/bhMdO\":\"Meine tolle Eventbeschreibung...\",\"vX8/tc\":\"Mein toller Veranstaltungstitel …\",\"hKtWk2\":\"Mein Profil\",\"fj5byd\":\"N/V\",\"pRjx4L\":\"Ich habe das Element platziert …\",\"6YtxFj\":\"Name\",\"hVuv90\":\"Der Name sollte weniger als 150 Zeichen lang sein\",\"AIUkyF\":\"Navigieren Sie zu Teilnehmer\",\"qqeAJM\":\"Niemals\",\"7vhWI8\":\"Neues Kennwort\",\"1UzENP\":\"NEIN\",\"eRblWH\":[\"Kein \",[\"0\"],\" verfügbar.\"],\"LNWHXb\":\"Keine archivierten Veranstaltungen anzuzeigen.\",\"q2LEDV\":\"Für diese Bestellung wurden keine Teilnehmer gefunden.\",\"zlHa5R\":\"Zu dieser Bestellung wurden keine Teilnehmer hinzugefügt.\",\"Wjz5KP\":\"Keine Teilnehmer zum Anzeigen\",\"Razen5\":\"Vor diesem Datum kann sich niemand mit dieser Liste einchecken\",\"XUfgCI\":\"Keine Kapazitätszuweisungen\",\"a/gMx2\":\"Keine Einchecklisten\",\"tMFDem\":\"Keine Daten verfügbar\",\"6Z/F61\":\"Keine Daten verfügbar. Bitte wählen Sie einen Datumsbereich aus.\",\"fFeCKc\":\"Kein Rabatt\",\"HFucK5\":\"Keine beendeten Veranstaltungen anzuzeigen.\",\"yAlJXG\":\"Keine Ereignisse zum Anzeigen\",\"GqvPcv\":\"Keine Filter verfügbar\",\"KPWxKD\":\"Keine Nachrichten zum Anzeigen\",\"J2LkP8\":\"Keine Bestellungen anzuzeigen\",\"RBXXtB\":\"Derzeit sind keine Zahlungsmethoden verfügbar. Bitte wenden Sie sich an den Veranstalter, um Unterstützung zu erhalten.\",\"ZWEfBE\":\"Keine Zahlung erforderlich\",\"ZPoHOn\":\"Kein Produkt mit diesem Teilnehmer verknüpft.\",\"Ya1JhR\":\"Keine Produkte in dieser Kategorie verfügbar.\",\"FTfObB\":\"Noch keine Produkte\",\"+Y976X\":\"Keine Promo-Codes anzuzeigen\",\"MAavyl\":\"Dieser Teilnehmer hat keine Fragen beantwortet.\",\"SnlQeq\":\"Für diese Bestellung wurden keine Fragen gestellt.\",\"Ev2r9A\":\"Keine Ergebnisse\",\"gk5uwN\":\"Keine Suchergebnisse\",\"RHyZUL\":\"Keine Suchergebnisse.\",\"RY2eP1\":\"Es wurden keine Steuern oder Gebühren hinzugefügt.\",\"EdQY6l\":\"Keiner\",\"OJx3wK\":\"Nicht verfügbar\",\"Scbrsn\":\"Nicht im Angebot\",\"1DBGsz\":\"Notizen\",\"jtrY3S\":\"Noch nichts zu zeigen\",\"hFwWnI\":\"Benachrichtigungseinstellungen\",\"xXqEPO\":\"Käufer über Rückerstattung benachrichtigen\",\"YpN29s\":\"Veranstalter über neue Bestellungen benachrichtigen\",\"qeQhNj\":\"Jetzt erstellen wir Ihr erstes Event\",\"omyBS0\":\"Anzahl der für die Zahlung zulässigen Tage (leer lassen, um Zahlungsbedingungen auf Rechnungen wegzulassen)\",\"n86jmj\":\"Nummernpräfix\",\"mwe+2z\":\"Offline-Bestellungen werden in der Veranstaltungsstatistik erst berücksichtigt, wenn die Bestellung als bezahlt markiert wurde.\",\"dWBrJX\":\"Offline-Zahlung fehlgeschlagen. Bitte versuchen Sie es erneut oder kontaktieren Sie den Veranstalter.\",\"fcnqjw\":\"Anweisungen für Offline-Zahlungen\",\"+eZ7dp\":\"Offline-Zahlungen\",\"ojDQlR\":\"Informationen zu Offline-Zahlungen\",\"u5oO/W\":\"Einstellungen für Offline-Zahlungen\",\"2NPDz1\":\"Im Angebot\",\"Ldu/RI\":\"Im Angebot\",\"Ug4SfW\":\"Sobald Sie ein Ereignis erstellt haben, wird es hier angezeigt.\",\"ZxnK5C\":\"Sobald Sie Daten sammeln, werden sie hier angezeigt.\",\"PnSzEc\":\"Sobald Sie bereit sind, setzen Sie Ihre Veranstaltung live und beginnen Sie mit dem Verkauf von Produkten.\",\"J6n7sl\":\"Laufend\",\"z+nuVJ\":\"Online-Veranstaltung\",\"WKHW0N\":\"Details zur Online-Veranstaltung\",\"/xkmKX\":\"Über dieses Formular sollten ausschließlich wichtige E-Mails gesendet werden, die in direktem Zusammenhang mit dieser Veranstaltung stehen.\\nJeder Missbrauch, einschließlich des Versendens von Werbe-E-Mails, führt zu einer sofortigen Sperrung des Kontos.\",\"Qqqrwa\":\"Eincheckseite öffnen\",\"OdnLE4\":\"Seitenleiste öffnen\",\"ZZEYpT\":[\"Option \",[\"i\"]],\"oPknTP\":\"Optionale zusätzliche Informationen, die auf allen Rechnungen erscheinen (z. B. Zahlungsbedingungen, Gebühren für verspätete Zahlungen, Rückgaberichtlinien)\",\"OrXJBY\":\"Optionales Präfix für Rechnungsnummern (z. B. INV-)\",\"0zpgxV\":\"Optionen\",\"BzEFor\":\"oder\",\"UYUgdb\":\"Befehl\",\"mm+eaX\":\"Befehl #\",\"B3gPuX\":\"Bestellung storniert\",\"SIbded\":\"Bestellung abgeschlossen\",\"q/CcwE\":\"Auftragsdatum\",\"Tol4BF\":\"Bestelldetails\",\"WbImlQ\":\"Die Bestellung wurde storniert und der Bestellinhaber wurde benachrichtigt.\",\"nAn4Oe\":\"Bestellung als bezahlt markiert\",\"uzEfRz\":\"Bestellnotizen\",\"VCOi7U\":\"Fragen zur Bestellung\",\"TPoYsF\":\"Bestellnummer\",\"acIJ41\":\"Bestellstatus\",\"GX6dZv\":\"Bestellübersicht\",\"tDTq0D\":\"Bestell-Timeout\",\"1h+RBg\":\"Aufträge\",\"3y+V4p\":\"Organisationsadresse\",\"GVcaW6\":\"Organisationsdetails\",\"nfnm9D\":\"Organisationsname\",\"G5RhpL\":\"Veranstalter\",\"mYygCM\":\"Veranstalter ist erforderlich\",\"Pa6G7v\":\"Name des Organisators\",\"l894xP\":\"Organisatoren können nur Veranstaltungen und Produkte verwalten. Sie können keine Benutzer, Kontoeinstellungen oder Abrechnungsinformationen verwalten.\",\"fdjq4c\":\"Polsterung\",\"ErggF8\":\"Hintergrundfarbe der Seite\",\"8F1i42\":\"Seite nicht gefunden\",\"QbrUIo\":\"Seitenaufrufe\",\"6D8ePg\":\"Seite.\",\"IkGIz8\":\"bezahlt\",\"HVW65c\":\"Bezahltes Produkt\",\"ZfxaB4\":\"Teilweise erstattet\",\"8ZsakT\":\"Passwort\",\"TUJAyx\":\"Das Passwort muss mindestens 8 Zeichen lang sein\",\"vwGkYB\":\"Das Passwort muss mindestens 8 Zeichen lang sein\",\"BLTZ42\":\"Passwort erfolgreich zurückgesetzt. Bitte melden Sie sich mit Ihrem neuen Passwort an.\",\"f7SUun\":\"Passwörter sind nicht gleich\",\"aEDp5C\":\"Fügen Sie dies dort ein, wo das Widget erscheinen soll.\",\"+23bI/\":\"Patrick\",\"iAS9f2\":\"patrick@acme.com\",\"621rYf\":\"Zahlung\",\"Lg+ewC\":\"Zahlung & Rechnungsstellung\",\"DZjk8u\":\"Einstellungen für Zahlung & Rechnungsstellung\",\"lflimf\":\"Zahlungsfrist\",\"JhtZAK\":\"Bezahlung fehlgeschlagen\",\"JEdsvQ\":\"Zahlungsanweisungen\",\"bLB3MJ\":\"Zahlungsmethoden\",\"QzmQBG\":\"Zahlungsanbieter\",\"lsxOPC\":\"Zahlung erhalten\",\"wJTzyi\":\"Zahlungsstatus\",\"xgav5v\":\"Zahlung erfolgreich abgeschlossen!\",\"R29lO5\":\"Zahlungsbedingungen\",\"/roQKz\":\"Prozentsatz\",\"vPJ1FI\":\"Prozentualer Betrag\",\"xdA9ud\":\"Platzieren Sie dies im Ihrer Website.\",\"blK94r\":\"Bitte fügen Sie mindestens eine Option hinzu\",\"FJ9Yat\":\"Bitte überprüfen Sie, ob die angegebenen Informationen korrekt sind\",\"TkQVup\":\"Bitte überprüfen Sie Ihre E-Mail und Ihr Passwort und versuchen Sie es erneut\",\"sMiGXD\":\"Bitte überprüfen Sie, ob Ihre E-Mail gültig ist\",\"Ajavq0\":\"Bitte überprüfen Sie Ihre E-Mail, um Ihre E-Mail-Adresse zu bestätigen\",\"MdfrBE\":\"Bitte füllen Sie das folgende Formular aus, um Ihre Einladung anzunehmen\",\"b1Jvg+\":\"Bitte fahren Sie im neuen Tab fort\",\"hcX103\":\"Bitte erstellen Sie ein Produkt\",\"cdR8d6\":\"Bitte erstellen Sie ein Ticket\",\"x2mjl4\":\"Bitte geben Sie eine gültige Bild-URL ein, die auf ein Bild verweist.\",\"HnNept\":\"Bitte geben Sie Ihr neues Passwort ein\",\"5FSIzj\":\"Bitte beachten Sie\",\"C63rRe\":\"Bitte kehre zur Veranstaltungsseite zurück, um neu zu beginnen.\",\"pJLvdS\":\"Bitte auswählen\",\"Ewir4O\":\"Bitte wählen Sie mindestens ein Produkt aus\",\"igBrCH\":\"Bitte bestätigen Sie Ihre E-Mail-Adresse, um auf alle Funktionen zugreifen zu können\",\"/IzmnP\":\"Bitte warten Sie, während wir Ihre Rechnung vorbereiten...\",\"MOERNx\":\"Portugiesisch\",\"qCJyMx\":\"Checkout-Nachricht veröffentlichen\",\"g2UNkE\":\"Powered by\",\"Rs7IQv\":\"Nachricht vor dem Checkout\",\"rdUucN\":\"Vorschau\",\"a7u1N9\":\"Preis\",\"CmoB9j\":\"Preisanzeigemodus\",\"BI7D9d\":\"Preis nicht festgelegt\",\"Q8PWaJ\":\"Preisstufen\",\"q6XHL1\":\"Preistyp\",\"6RmHKN\":\"Primärfarbe\",\"G/ZwV1\":\"Grundfarbe\",\"8cBtvm\":\"Primäre Textfarbe\",\"BZz12Q\":\"Drucken\",\"MT7dxz\":\"Alle Tickets ausdrucken\",\"DKwDdj\":\"Tickets drucken\",\"K47k8R\":\"Produkt\",\"1JwlHk\":\"Produktkategorie\",\"U61sAj\":\"Produktkategorie erfolgreich aktualisiert.\",\"1USFWA\":\"Produkt erfolgreich gelöscht\",\"4Y2FZT\":\"Produktpreistyp\",\"mFwX0d\":\"Produktfragen\",\"Lu+kBU\":\"Produktverkäufe\",\"U/R4Ng\":\"Produktebene\",\"sJsr1h\":\"Produkttyp\",\"o1zPwM\":\"Produkt-Widget-Vorschau\",\"ktyvbu\":\"Produkt(e)\",\"N0qXpE\":\"Produkte\",\"ggqAiw\":\"verkaufte Produkte\",\"Vla0Bo\":\"Verkaufte Produkte\",\"/u4DIx\":\"Verkaufte Produkte\",\"DJQEZc\":\"Produkte erfolgreich sortiert\",\"vERlcd\":\"Profil\",\"kUlL8W\":\"Profil erfolgreich aktualisiert\",\"cl5WYc\":[\"Aktionscode \",[\"promo_code\"],\" angewendet\"],\"P5sgAk\":\"Aktionscode\",\"yKWfjC\":\"Aktionscode-Seite\",\"RVb8Fo\":\"Promo-Codes\",\"BZ9GWa\":\"Mit Promo-Codes können Sie Rabatte oder Vorverkaufszugang anbieten oder Sonderzugang zu Ihrer Veranstaltung gewähren.\",\"OP094m\":\"Bericht zu Aktionscodes\",\"4kyDD5\":\"Geben Sie zusätzlichen Kontext oder Anweisungen für diese Frage an. Verwenden Sie dieses Feld, um Bedingungen, Richtlinien oder wichtige Informationen hinzuzufügen, die die Teilnehmer vor dem Beantworten wissen müssen.\",\"toutGW\":\"QR-Code\",\"LkMOWF\":\"Verfügbare Menge\",\"oCLG0M\":\"Verkaufte Menge\",\"XKJuAX\":\"Frage gelöscht\",\"avf0gk\":\"Fragebeschreibung\",\"oQvMPn\":\"Fragentitel\",\"enzGAL\":\"Fragen\",\"ROv2ZT\":\"Fragen & Antworten\",\"K885Eq\":\"Fragen erfolgreich sortiert\",\"OMJ035\":\"Radio-Option\",\"C4TjpG\":\"Lese weniger\",\"I3QpvQ\":\"Empfänger\",\"N2C89m\":\"Referenz\",\"gxFu7d\":[\"Rückerstattungsbetrag (\",[\"0\"],\")\"],\"WZbCR3\":\"Rückerstattung fehlgeschlagen\",\"n10yGu\":\"Rückerstattungsauftrag\",\"zPH6gp\":\"Rückerstattungsauftrag\",\"RpwiYC\":\"Rückerstattung ausstehend\",\"xHpVRl\":\"Rückerstattungsstatus\",\"/BI0y9\":\"Rückerstattung\",\"fgLNSM\":\"Registrieren\",\"9+8Vez\":\"Verbleibende Verwendungen\",\"tasfos\":\"entfernen\",\"t/YqKh\":\"Entfernen\",\"t9yxlZ\":\"Berichte\",\"prZGMe\":\"Rechnungsadresse erforderlich\",\"EGm34e\":\"Bestätigungsmail erneut senden\",\"lnrkNz\":\"E-Mail-Bestätigung erneut senden\",\"wIa8Qe\":\"Einladung erneut versenden\",\"VeKsnD\":\"Bestell-E-Mail erneut senden\",\"dFuEhO\":\"Ticket-E-Mail erneut senden\",\"o6+Y6d\":\"Erneut senden...\",\"OfhWJH\":\"Zurücksetzen\",\"RfwZxd\":\"Passwort zurücksetzen\",\"KbS2K9\":\"Passwort zurücksetzen\",\"e99fHm\":\"Veranstaltung wiederherstellen\",\"vtc20Z\":\"Zurück zur Veranstaltungsseite\",\"s8v9hq\":\"Zur Veranstaltungsseite zurückkehren\",\"8YBH95\":\"Einnahmen\",\"PO/sOY\":\"Einladung widerrufen\",\"GDvlUT\":\"Rolle\",\"ELa4O9\":\"Verkaufsende\",\"5uo5eP\":\"Der Verkauf ist beendet\",\"Qm5XkZ\":\"Verkaufsstartdatum\",\"hBsw5C\":\"Verkauf beendet\",\"kpAzPe\":\"Verkaufsstart\",\"P/wEOX\":\"San Francisco\",\"tfDRzk\":\"Speichern\",\"IUwGEM\":\"Änderungen speichern\",\"U65fiW\":\"Organizer speichern\",\"UGT5vp\":\"Einstellungen speichern\",\"ovB7m2\":\"QR-Code scannen\",\"EEU0+z\":\"Scannen Sie diesen QR-Code, um auf die Veranstaltungsseite zuzugreifen oder teilen Sie ihn mit anderen\",\"W4kWXJ\":\"Suche nach Teilnehmername, E-Mail oder Bestellnummer ...\",\"+pr/FY\":\"Suche nach Veranstaltungsnamen...\",\"3zRbWw\":\"Suchen Sie nach Namen, E-Mail oder Bestellnummer ...\",\"L22Tdf\":\"Suchen nach Name, Bestellnummer, Teilnehmernummer oder E-Mail...\",\"BiYOdA\":\"Suche mit Name...\",\"YEjitp\":\"Suche nach Thema oder Inhalt...\",\"Pjsch9\":\"Kapazitätszuweisungen suchen...\",\"r9M1hc\":\"Einchecklisten durchsuchen...\",\"+0Yy2U\":\"Produkte suchen\",\"YIix5Y\":\"Suchen...\",\"OeW+DS\":\"Sekundäre Farbe\",\"DnXcDK\":\"Sekundäre Farbe\",\"cZF6em\":\"Sekundäre Textfarbe\",\"ZIgYeg\":\"Sekundäre Textfarbe\",\"02ePaq\":[[\"0\"],\" auswählen\"],\"QuNKRX\":\"Kamera auswählen\",\"9FQEn8\":\"Kategorie auswählen...\",\"kWI/37\":\"Veranstalter auswählen\",\"ixIx1f\":\"Produkt auswählen\",\"3oSV95\":\"Produktebene auswählen\",\"C4Y1hA\":\"Produkte auswählen\",\"hAjDQy\":\"Status auswählen\",\"QYARw/\":\"Ticket auswählen\",\"OMX4tH\":\"Tickets auswählen\",\"DrwwNd\":\"Zeitraum auswählen\",\"O/7I0o\":\"Wählen...\",\"JlFcis\":\"Schicken\",\"qKWv5N\":[\"Senden Sie eine Kopie an <0>\",[\"0\"],\"\"],\"RktTWf\":\"Eine Nachricht schicken\",\"/mQ/tD\":\"Als Test senden. Dadurch wird die Nachricht an Ihre E-Mail-Adresse und nicht an die Empfänger gesendet.\",\"M/WIer\":\"Nachricht Senden\",\"D7ZemV\":\"Bestellbestätigung und Ticket-E-Mail senden\",\"v1rRtW\":\"Test senden\",\"4Ml90q\":\"SEO\",\"j1VfcT\":\"SEO-Beschreibung\",\"/SIY6o\":\"SEO-Schlüsselwörter\",\"GfWoKv\":\"SEO-Einstellungen\",\"rXngLf\":\"SEO-Titel\",\"/jZOZa\":\"Servicegebühr\",\"Bj/QGQ\":\"Legen Sie einen Mindestpreis fest und lassen Sie die Nutzer mehr zahlen, wenn sie wollen.\",\"L0pJmz\":\"Legen Sie die Startnummer für die Rechnungsnummerierung fest. Dies kann nicht geändert werden, sobald Rechnungen generiert wurden.\",\"nYNT+5\":\"Richten Sie Ihre Veranstaltung ein\",\"A8iqfq\":\"Schalten Sie Ihr Event live\",\"Tz0i8g\":\"Einstellungen\",\"Z8lGw6\":\"Teilen\",\"B2V3cA\":\"Veranstaltung teilen\",\"17Fd7X\":\"Auf Facebook teilen\",\"x7i6H+\":\"Auf LinkedIn teilen\",\"zziQd8\":\"Auf Pinterest teilen\",\"/TgBEk\":\"Auf Reddit teilen\",\"0Wlk5F\":\"Auf sozialen Medien teilen\",\"on+mNS\":\"Auf Telegram teilen\",\"PcmR+m\":\"Auf WhatsApp teilen\",\"/5b1iZ\":\"Auf X teilen\",\"n/T2KI\":\"Per E-Mail teilen\",\"8vETh9\":\"Zeigen\",\"V0SbFp\":\"Verfügbare Produktmenge anzeigen\",\"qDsmzu\":\"Versteckte Fragen anzeigen\",\"fMPkxb\":\"Zeig mehr\",\"izwOOD\":\"Steuern und Gebühren separat ausweisen\",\"1SbbH8\":\"Wird dem Kunden nach dem Checkout auf der Bestellübersichtsseite angezeigt.\",\"YfHZv0\":\"Wird dem Kunden vor dem Bezahlvorgang angezeigt\",\"CBBcly\":\"Zeigt allgemeine Adressfelder an, einschließlich Land\",\"yTnnYg\":\"Simpson\",\"TNaCfq\":\"Einzeiliges Textfeld\",\"+P0Cn2\":\"Überspringe diesen Schritt\",\"YSEnLE\":\"Schmied\",\"lgFfeO\":\"Ausverkauft\",\"Mi1rVn\":\"Ausverkauft\",\"nwtY4N\":\"Etwas ist schief gelaufen\",\"GRChTw\":\"Beim Löschen der Steuer oder Gebühr ist ein Fehler aufgetreten\",\"YHFrbe\":\"Etwas ist schief gelaufen. Bitte versuche es erneut\",\"kf83Ld\":\"Etwas ist schief gelaufen.\",\"fWsBTs\":\"Etwas ist schief gelaufen. Bitte versuche es erneut.\",\"F6YahU\":\"Es ist leider ein Fehler aufgetreten. Bitte starten Sie den Bezahlvorgang erneut.\",\"KWgppI\":\"Entschuldigen Sie, beim Laden dieser Seite ist ein Fehler aufgetreten.\",\"/TCOIK\":\"Entschuldigung, diese Bestellung existiert nicht mehr.\",\"6a/UJE\":\"Dieser Aktionscode wird leider nicht erkannt\",\"65A04M\":\"Spanisch\",\"mFuBqb\":\"Standardprodukt mit festem Preis\",\"D3iCkb\":\"Startdatum\",\"/2by1f\":\"Staat oder Region\",\"uAQUqI\":\"Status\",\"4HXezG\":\"Stripe\",\"WbopAG\":\"Stripe-Zahlungen sind für diese Veranstaltung nicht aktiviert.\",\"UJmAAK\":\"Thema\",\"X2rrlw\":\"Zwischensumme\",\"zzDlyQ\":\"Erfolg\",\"b0HJ45\":[\"Erfolgreich! \",[\"0\"],\" erhält in Kürze eine E-Mail.\"],\"BJIEiF\":[\"Erfolgreich \",[\"0\"],\" Teilnehmer\"],\"OtgNFx\":\"E-Mail-Adresse erfolgreich bestätigt\",\"IKwyaF\":\"E-Mail-Änderung erfolgreich bestätigt\",\"zLmvhE\":\"Teilnehmer erfolgreich erstellt\",\"gP22tw\":\"Produkt erfolgreich erstellt\",\"9mZEgt\":\"Promo-Code erfolgreich erstellt\",\"aIA9C4\":\"Frage erfolgreich erstellt\",\"J3RJSZ\":\"Teilnehmer erfolgreich aktualisiert\",\"3suLF0\":\"Kapazitätszuweisung erfolgreich aktualisiert\",\"Z+rnth\":\"Eincheckliste erfolgreich aktualisiert\",\"vzJenu\":\"E-Mail-Einstellungen erfolgreich aktualisiert\",\"7kOMfV\":\"Ereignis erfolgreich aktualisiert\",\"G0KW+e\":\"Erfolgreich aktualisiertes Homepage-Design\",\"k9m6/E\":\"Homepage-Einstellungen erfolgreich aktualisiert\",\"y/NR6s\":\"Standort erfolgreich aktualisiert\",\"73nxDO\":\"Verschiedene Einstellungen erfolgreich aktualisiert\",\"4H80qv\":\"Bestellung erfolgreich aktualisiert\",\"6xCBVN\":\"Einstellungen für Zahlung & Rechnungsstellung erfolgreich aktualisiert\",\"1Ycaad\":\"Produkt erfolgreich aktualisiert\",\"70dYC8\":\"Promo-Code erfolgreich aktualisiert\",\"F+pJnL\":\"SEO-Einstellungen erfolgreich aktualisiert\",\"DXZRk5\":\"Suite 100\",\"GNcfRk\":\"Support-E-Mail\",\"uRfugr\":\"T-Shirt\",\"JpohL9\":\"Steuer\",\"geUFpZ\":\"Steuern & Gebühren\",\"dFHcIn\":\"Steuerdetails\",\"wQzCPX\":\"Steuerinformationen, die unten auf allen Rechnungen erscheinen sollen (z. B. USt-Nummer, Steuerregistrierung)\",\"0RXCDo\":\"Steuer oder Gebühr erfolgreich gelöscht\",\"ZowkxF\":\"Steuern\",\"qu6/03\":\"Steuern und Gebühren\",\"gypigA\":\"Dieser Aktionscode ist ungültig\",\"5ShqeM\":\"Die gesuchte Eincheckliste existiert nicht.\",\"QXlz+n\":\"Die Standardwährung für Ihre Ereignisse.\",\"mnafgQ\":\"Die Standardzeitzone für Ihre Ereignisse.\",\"o7s5FA\":\"Die Sprache, in der der Teilnehmer die E-Mails erhalten soll.\",\"NlfnUd\":\"Der Link, auf den Sie geklickt haben, ist ungültig.\",\"HsFnrk\":[\"Die maximale Anzahl an Produkten für \",[\"0\"],\" ist \",[\"1\"]],\"TSAiPM\":\"Die gesuchte Seite existiert nicht\",\"MSmKHn\":\"Der dem Kunden angezeigte Preis versteht sich inklusive Steuern und Gebühren.\",\"6zQOg1\":\"Der dem Kunden angezeigte Preis enthält keine Steuern und Gebühren. Diese werden separat ausgewiesen\",\"ne/9Ur\":\"Die von Ihnen gewählten Stileinstellungen gelten nur für kopiertes HTML und werden nicht gespeichert.\",\"vQkyB3\":\"Die Steuern und Gebühren, die auf dieses Produkt angewendet werden. Sie können neue Steuern und Gebühren erstellen auf der\",\"esY5SG\":\"Der Titel der Veranstaltung, der in Suchmaschinenergebnissen und beim Teilen in sozialen Medien angezeigt wird. Standardmäßig wird der Veranstaltungstitel verwendet\",\"wDx3FF\":\"Für diese Veranstaltung sind keine Produkte verfügbar\",\"pNgdBv\":\"In dieser Kategorie sind keine Produkte verfügbar\",\"rMcHYt\":\"Eine Rückerstattung steht aus. Bitte warten Sie, bis der Vorgang abgeschlossen ist, bevor Sie eine weitere Rückerstattung anfordern.\",\"F89D36\":\"Beim Markieren der Bestellung als bezahlt ist ein Fehler aufgetreten\",\"68Axnm\":\"Bei der Bearbeitung Ihrer Anfrage ist ein Fehler aufgetreten. Bitte versuchen Sie es erneut.\",\"mVKOW6\":\"Beim Senden Ihrer Nachricht ist ein Fehler aufgetreten\",\"AhBPHd\":\"Diese Details werden nur angezeigt, wenn die Bestellung erfolgreich abgeschlossen wurde. Bestellungen, die auf Zahlung warten, zeigen diese Nachricht nicht an.\",\"Pc/Wtj\":\"Dieser Teilnehmer hat eine unbezahlte Bestellung.\",\"mf3FrP\":\"Diese Kategorie hat noch keine Produkte.\",\"8QH2Il\":\"Diese Kategorie ist vor der öffentlichen Ansicht verborgen\",\"xxv3BZ\":\"Diese Eincheckliste ist abgelaufen\",\"Sa7w7S\":\"Diese Eincheckliste ist abgelaufen und steht nicht mehr für Eincheckungen zur Verfügung.\",\"Uicx2U\":\"Diese Eincheckliste ist aktiv\",\"1k0Mp4\":\"Diese Eincheckliste ist noch nicht aktiv\",\"K6fmBI\":\"Diese Eincheckliste ist noch nicht aktiv und steht nicht für Eincheckungen zur Verfügung.\",\"t/ePFj\":\"Diese Beschreibung wird dem Eincheckpersonal angezeigt\",\"MLTkH7\":\"Diese E-Mail hat keinen Werbezweck und steht in direktem Zusammenhang mit der Veranstaltung.\",\"2eIpBM\":\"Dieses Event ist momentan nicht verfügbar. Bitte versuchen Sie es später noch einmal.\",\"Z6LdQU\":\"Dieses Event ist nicht verfügbar.\",\"MMd2TJ\":\"Diese Informationen werden auf der Zahlungsseite, der Bestellübersichtsseite und in der Bestellbestätigungs-E-Mail angezeigt.\",\"XAHqAg\":\"Dies ist ein allgemeines Produkt, wie ein T-Shirt oder eine Tasse. Es wird kein Ticket ausgestellt\",\"CNk/ro\":\"Dies ist eine Online-Veranstaltung\",\"FwXnJd\":\"Diese Liste wird nach diesem Datum nicht mehr für Eincheckungen verfügbar sein\",\"cHO4ec\":\"Diese Nachricht wird in die Fußzeile aller E-Mails aufgenommen, die von dieser Veranstaltung gesendet werden.\",\"55i7Fa\":\"Diese Nachricht wird nur angezeigt, wenn die Bestellung erfolgreich abgeschlossen wurde. Bestellungen, die auf Zahlung warten, zeigen diese Nachricht nicht an.\",\"RjwlZt\":\"Diese Bestellung wurde bereits bezahlt.\",\"5K8REg\":\"Diese Bestellung wurde bereits zurückerstattet.\",\"OiQMhP\":\"Diese Bestellung wurde storniert\",\"YyEJij\":\"Diese Bestellung wurde storniert.\",\"Q0zd4P\":\"Diese Bestellung ist abgelaufen. Bitte erneut beginnen.\",\"HILpDX\":\"Diese Bestellung wartet auf Zahlung\",\"BdYtn9\":\"Diese Bestellung ist abgeschlossen\",\"e3uMJH\":\"Diese Bestellung ist abgeschlossen.\",\"YNKXOK\":\"Diese Bestellung wird bearbeitet.\",\"yPZN4i\":\"Diese Bestellseite ist nicht mehr verfügbar.\",\"i0TtkR\":\"Dies überschreibt alle Sichtbarkeitseinstellungen und verbirgt das Produkt vor allen Kunden.\",\"cRRc+F\":\"Dieses Produkt kann nicht gelöscht werden, da es mit einer Bestellung verknüpft ist. Sie können es stattdessen ausblenden.\",\"3Kzsk7\":\"Dieses Produkt ist ein Ticket. Käufer erhalten nach dem Kauf ein Ticket\",\"0fT4x3\":\"Dieses Produkt ist vor der öffentlichen Ansicht verborgen\",\"Y/x1MZ\":\"Dieses Produkt ist verborgen, es sei denn, es wird von einem Promo-Code anvisiert\",\"Qt7RBu\":\"Diese Frage ist nur für den Veranstalter sichtbar\",\"os29v1\":\"Dieser Link zum Zurücksetzen des Passworts ist ungültig oder abgelaufen.\",\"IV9xTT\":\"Dieser Benutzer ist nicht aktiv, da er die Einladung nicht angenommen hat.\",\"5AnPaO\":\"Fahrkarte\",\"kjAL4v\":\"Fahrkarte\",\"dtGC3q\":\"Die Ticket-E-Mail wurde erneut an den Teilnehmer gesendet.\",\"54q0zp\":\"Tickets für\",\"xN9AhL\":[\"Stufe \",[\"0\"]],\"jZj9y9\":\"Gestuftes Produkt\",\"8wITQA\":\"Gestufte Produkte ermöglichen es Ihnen, mehrere Preisoptionen für dasselbe Produkt anzubieten. Dies ist ideal für Frühbucherprodukte oder um unterschiedliche Preisoptionen für verschiedene Personengruppen anzubieten.\\\" # de\",\"nn3mSR\":\"Verbleibende Zeit:\",\"s/0RpH\":\"Nutzungshäufigkeit\",\"y55eMd\":\"Anzahl der Verwendungen\",\"40Gx0U\":\"Zeitzone\",\"oDGm7V\":\"TIPP\",\"MHrjPM\":\"Titel\",\"xdA/+p\":\"Werkzeuge\",\"72c5Qo\":\"Gesamt\",\"YXx+fG\":\"Gesamt vor Rabatten\",\"NRWNfv\":\"Gesamtrabattbetrag\",\"BxsfMK\":\"Gesamtkosten\",\"2bR+8v\":\"Gesamtumsatz brutto\",\"mpB/d9\":\"Gesamtbestellwert\",\"m3FM1g\":\"Gesamtbetrag zurückerstattet\",\"jEbkcB\":\"Insgesamt erstattet\",\"GBBIy+\":\"Verbleibender Gesamtbetrag\",\"/SgoNA\":\"Gesamtsteuer\",\"+zy2Nq\":\"Typ\",\"FMdMfZ\":\"Teilnehmer konnte nicht eingecheckt werden\",\"bPWBLL\":\"Teilnehmer konnte nicht ausgecheckt werden\",\"9+P7zk\":\"Produkt konnte nicht erstellt werden. Bitte überprüfen Sie Ihre Angaben\",\"WLxtFC\":\"Produkt konnte nicht erstellt werden. Bitte überprüfen Sie Ihre Angaben\",\"/cSMqv\":\"Frage konnte nicht erstellt werden. Bitte überprüfen Sie Ihre Angaben\",\"MH/lj8\":\"Frage kann nicht aktualisiert werden. Bitte überprüfen Sie Ihre Angaben\",\"nnfSdK\":\"Einzigartige Kunden\",\"Mqy/Zy\":\"Vereinigte Staaten\",\"NIuIk1\":\"Unbegrenzt\",\"/p9Fhq\":\"Unbegrenzt verfügbar\",\"E0q9qH\":\"Unbegrenzte Nutzung erlaubt\",\"h10Wm5\":\"Unbezahlte Bestellung\",\"ia8YsC\":\"Bevorstehende\",\"TlEeFv\":\"Bevorstehende Veranstaltungen\",\"L/gNNk\":[\"Aktualisierung \",[\"0\"]],\"+qqX74\":\"Aktualisieren Sie den Namen, die Beschreibung und die Daten der Veranstaltung\",\"vXPSuB\":\"Profil aktualisieren\",\"BNBfrU\":\"Cover hochladen\",\"IagCbF\":\"URL\",\"UtDm3q\":\"URL in die Zwischenablage kopiert\",\"e5lF64\":\"Anwendungsbeispiel\",\"fiV0xj\":\"Verwendungslimit\",\"sGEOe4\":\"Verwenden Sie eine unscharfe Version des Titelbilds als Hintergrund\",\"OadMRm\":\"Titelbild verwenden\",\"7PzzBU\":\"Benutzer\",\"yDOdwQ\":\"Benutzerverwaltung\",\"Sxm8rQ\":\"Benutzer\",\"VEsDvU\":\"Benutzer können ihre E-Mail in den <0>Profileinstellungen ändern.\",\"vgwVkd\":\"koordinierte Weltzeit\",\"khBZkl\":\"Umsatzsteuer\",\"E/9LUk\":\"Veranstaltungsort Namen\",\"jpctdh\":\"Ansehen\",\"Pte1Hv\":\"Teilnehmerdetails anzeigen\",\"/5PEQz\":\"Zur Veranstaltungsseite\",\"fFornT\":\"Vollständige Nachricht anzeigen\",\"YIsEhQ\":\"Ansichts Karte\",\"Ep3VfY\":\"Auf Google Maps anzeigen\",\"Y8s4f6\":\"Bestell Details ansehen\",\"QIWCnW\":\"VIP-Eincheckliste\",\"tF+VVr\":\"VIP-Ticket\",\"2q/Q7x\":\"Sichtweite\",\"vmOFL/\":\"Wir konnten Ihre Zahlung nicht verarbeiten. Bitte versuchen Sie es erneut oder wenden Sie sich an den Support.\",\"45Srzt\":\"Die Kategorie konnte nicht gelöscht werden. Bitte versuchen Sie es erneut.\",\"/DNy62\":[\"Wir konnten keine Tickets finden, die mit \",[\"0\"],\" übereinstimmen\"],\"1E0vyy\":\"Wir konnten die Daten nicht laden. Bitte versuchen Sie es erneut.\",\"NmpGKr\":\"Wir konnten die Kategorien nicht neu ordnen. Bitte versuchen Sie es erneut.\",\"VGioT0\":\"Wir empfehlen Abmessungen von 2160 x 1080 Pixel und eine maximale Dateigröße von 5 MB.\",\"b9UB/w\":\"Wir verwenden Stripe zur Zahlungsabwicklung. Verbinden Sie Ihr Stripe-Konto, um Zahlungen zu empfangen.\",\"01WH0a\":\"Wir konnten Ihre Zahlung nicht bestätigen. Bitte versuchen Sie es erneut oder wenden Sie sich an den Support.\",\"Gspam9\":\"Wir bearbeiten Ihre Bestellung. Bitte warten...\",\"LuY52w\":\"Willkommen an Bord! Bitte melden Sie sich an, um fortzufahren.\",\"dVxpp5\":[\"Willkommen zurück\",[\"0\"],\" 👋\"],\"NxOVCl\":[\"Willkommen bei Hi.Events, \",[\"0\"],\" 👋\"],\"xgL50q\":\"Was sind gestufte Produkte?\",\"f1jUC0\":\"An welchem Datum soll diese Eincheckliste aktiv werden?\",\"4ueloy\":\"Was ist eine Kategorie?\",\"gxeWAU\":\"Für welche Produkte gilt dieser Code?\",\"hFHnxR\":\"Für welche Produkte gilt dieser Code? (Standardmäßig gilt er für alle)\",\"AeejQi\":\"Für welche Produkte soll diese Kapazität gelten?\",\"Rb0XUE\":\"Um wie viel Uhr werden Sie ankommen?\",\"5N4wLD\":\"Um welche Art von Frage handelt es sich?\",\"gyLUYU\":\"Wenn aktiviert, werden Rechnungen für Ticketbestellungen erstellt. Rechnungen werden zusammen mit der Bestellbestätigungs-E-Mail gesendet. Teilnehmer können ihre Rechnungen auch von der Bestellbestätigungsseite herunterladen.\",\"D3opg4\":\"Wenn Offline-Zahlungen aktiviert sind, können Benutzer ihre Bestellungen abschließen und ihre Tickets erhalten. Ihre Tickets werden klar anzeigen, dass die Bestellung nicht bezahlt ist, und das Check-in-Tool wird das Check-in-Personal benachrichtigen, wenn eine Bestellung eine Zahlung erfordert.\",\"D7C6XV\":\"Wann soll diese Eincheckliste ablaufen?\",\"FVetkT\":\"Welche Tickets sollen mit dieser Eincheckliste verknüpft werden?\",\"S+OdxP\":\"Wer organisiert diese Veranstaltung?\",\"LINr2M\":\"An wen ist diese Nachricht gerichtet?\",\"nWhye/\":\"Wem sollte diese Frage gestellt werden?\",\"VxFvXQ\":\"Widget einbetten\",\"v1P7Gm\":\"Widget-Einstellungen\",\"b4itZn\":\"Arbeiten\",\"hqmXmc\":\"Arbeiten...\",\"+G/XiQ\":\"Seit Jahresbeginn\",\"l75CjT\":\"Ja\",\"QcwyCh\":\"Ja, entfernen\",\"ySeBKv\":\"Sie haben dieses Ticket bereits gescannt\",\"P+Sty0\":[\"Sie ändern Ihre E-Mail zu <0>\",[\"0\"],\".\"],\"gGhBmF\":\"Sie sind offline\",\"sdB7+6\":\"Sie können einen Promo-Code erstellen, der sich auf dieses Produkt richtet auf der\",\"KRhIxT\":\"Sie können jetzt Zahlungen über Stripe empfangen.\",\"Gnjf3o\":\"Sie können den Produkttyp nicht ändern, da Teilnehmer mit diesem Produkt verknüpft sind.\",\"S+on7c\":\"Sie können Teilnehmer mit unbezahlten Bestellungen nicht einchecken.\",\"yNi4PV\":\"Sie können Teilnehmer mit unbezahlten Bestellungen nicht einchecken. Diese Einstellung kann in den Veranstaltungsdetails geändert werden.\",\"c9Evkd\":\"Sie können die letzte Kategorie nicht löschen.\",\"6uwAvx\":\"Sie können diese Preiskategorie nicht löschen, da für diese Kategorie bereits Produkte verkauft wurden. Sie können sie stattdessen ausblenden.\",\"tFbRKJ\":\"Sie können die Rolle oder den Status des Kontoinhabers nicht bearbeiten.\",\"fHfiEo\":\"Sie können eine manuell erstellte Bestellung nicht zurückerstatten.\",\"hK9c7R\":\"Sie haben eine versteckte Frage erstellt, aber die Option zum Anzeigen versteckter Fragen deaktiviert. Sie wurde aktiviert.\",\"NOaWRX\":\"Sie haben keine Berechtigung, auf diese Seite zuzugreifen\",\"BRArmD\":\"Sie haben Zugriff auf mehrere Konten. Bitte wählen Sie eines aus, um fortzufahren.\",\"Z6q0Vl\":\"Sie haben diese Einladung bereits angenommen. Bitte melden Sie sich an, um fortzufahren.\",\"rdk1xK\":\"Sie haben Ihr Stripe-Konto verbunden\",\"ofEncr\":\"Sie haben keine Teilnehmerfragen.\",\"CoZHDB\":\"Sie haben keine Bestellfragen.\",\"15qAvl\":\"Sie haben keine ausstehende E-Mail-Änderung.\",\"n81Qk8\":\"Sie haben die Einrichtung von Stripe Connect noch nicht abgeschlossen\",\"jxsiqJ\":\"Sie haben Ihr Stripe-Konto nicht verbunden\",\"+FWjhR\":\"Die Zeit für die Bestellung ist abgelaufen.\",\"MycdJN\":\"Sie haben Steuern und Gebühren zu einem kostenlosen Produkt hinzugefügt. Möchten Sie sie entfernen oder verbergen?\",\"YzEk2o\":\"Sie haben noch keine Nachrichten gesendet. Sie können Nachrichten an alle Teilnehmer oder an bestimmte Produkthalter senden.\",\"R6i9o9\":\"Sie müssen bestätigen, dass diese E-Mail keinen Werbezweck hat\",\"3ZI8IL\":\"Sie müssen den Allgemeinen Geschäftsbedingungen zustimmen\",\"dMd3Uf\":\"Sie müssen Ihre E-Mail-Adresse bestätigen, bevor Ihre Veranstaltung live gehen kann.\",\"H35u3n\":\"Sie müssen ein Ticket erstellen, bevor Sie einen Teilnehmer manuell hinzufügen können.\",\"jE4Z8R\":\"Sie müssen mindestens eine Preisstufe haben\",\"8/eLoa\":\"Sie müssen Ihr Konto verifizieren, bevor Sie Nachrichten senden können.\",\"Egnj9d\":\"Sie müssen eine Bestellung manuell als bezahlt markieren. Dies kann auf der Bestellverwaltungsseite erfolgen.\",\"L/+xOk\":\"Sie benötigen ein Ticket, bevor Sie eine Eincheckliste erstellen können.\",\"Djl45M\":\"Sie benötigen ein Produkt, bevor Sie eine Kapazitätszuweisung erstellen können.\",\"y3qNri\":\"Sie benötigen mindestens ein Produkt, um loszulegen. Kostenlos, bezahlt oder lassen Sie den Benutzer entscheiden, was er zahlen möchte.\",\"9HcibB\":[\"Du gehst zu \",[\"0\"],\"! 🎉\"],\"ROR8QD\":\"Ihr Kontoname wird auf Veranstaltungsseiten und in E-Mails verwendet.\",\"veessc\":\"Ihre Teilnehmer werden hier angezeigt, sobald sie sich für Ihre Veranstaltung registriert haben. Sie können Teilnehmer auch manuell hinzufügen.\",\"Eh5Wrd\":\"Eure tolle Website 🎉\",\"lkMK2r\":\"Deine Details\",\"3ENYTQ\":[\"Ihre E-Mail-Anfrage zur Änderung auf <0>\",[\"0\"],\" steht noch aus. Bitte überprüfen Sie Ihre E-Mail, um sie zu bestätigen\"],\"yZfBoy\":\"Ihre Nachricht wurde gesendet\",\"KSQ8An\":\"Deine Bestellung\",\"Jwiilf\":\"Deine Bestellung wurde storniert\",\"6UxSgB\":\"Ihre Bestellung wartet auf Zahlung 🏦\",\"7YJdgG\":\"Sobald Ihre Bestellungen eintreffen, werden sie hier angezeigt.\",\"9TO8nT\":\"Ihr Passwort\",\"P8hBau\":\"Ihre Zahlung wird verarbeitet.\",\"UdY1lL\":\"Ihre Zahlung war nicht erfolgreich, bitte versuchen Sie es erneut.\",\"fzuM26\":\"Ihre Zahlung war nicht erfolgreich. Bitte versuchen Sie es erneut.\",\"cEli2o\":\"Ihr Produkt für\",\"cJ4Y4R\":\"Ihre Rückerstattung wird bearbeitet.\",\"IFHV2p\":\"Ihr Ticket für\",\"x1PPdr\":\"Postleitzahl\",\"BM/KQm\":\"Postleitzahl\",\"+LtVBt\":\"Postleitzahl\",\"25QDJ1\":\"- Zum Veröffentlichen klicken\",\"WOyJmc\":\"- Zum Rückgängigmachen der Veröffentlichung klicken\",\"1bpx9A\":\"...\",\"4zldrf\":[[\"0\",\"plural\",{\"one\":[\"#\",\" hidden question\"],\"other\":[\"#\",\" hidden questions\"]}]],\"xYxQCZ\":[[\"0\"],\" \",[\"1\"]],\"S4PqS9\":[[\"0\"],\" aktive Webhooks\"],\"tmew5X\":[[\"0\"],\" eingecheckt\"],\"qSiUsc\":[[\"0\"],[\"1\"]],\"OJnhhX\":[[\"eventCount\"],\" Ereignisse\"],\"wapGcj\":[[\"message\"]],\"pDgeaz\":[[\"title\"]],\"0940VN\":\"<0>Die Anzahl der verfügbaren Tickets für dieses Ticket<1>Dieser Wert kann überschrieben werden, wenn diesem Ticket <2>Kapazitätsgrenzen zugewiesen sind.\",\"ZnVt5v\":\"<0>Webhooks benachrichtigen externe Dienste sofort, wenn Ereignisse eintreten, z. B. wenn ein neuer Teilnehmer zu deinem CRM oder deiner Mailingliste hinzugefügt wird, um eine nahtlose Automatisierung zu gewährleisten.<1>Nutze Drittanbieterdienste wie <2>Zapier, <3>IFTTT oder <4>Make, um benutzerdefinierte Workflows zu erstellen und Aufgaben zu automatisieren.\",\"y1NShf\":\"🎉 Congratulation on creating an event!\",\"fAv9QG\":\"🎟️ Tickets hinzufügen\",\"s4Tgn6\":\"📢 Promote your event\",\"UQ7pBY\":\"0.50 for $0.50\",\"M2DyLc\":\"1 aktiver Webhook\",\"i1+xzD\":\"1.75 for 1.75%\",\"W9+fkZ\":\"10001\",\"d9El7Q\":[\"Auf alle neuen Tickets wird automatisch ein Standard-\",[\"type\"],\" angewendet. Sie können dies für jedes Ticket einzeln überschreiben.\"],\"Pgaiuj\":\"Ein fester Betrag pro Ticket. Z. B. 0,50 € pro Ticket\",\"ySO/4f\":\"Ein Prozentsatz des Ticketpreises. Beispiel: 3,5 % des Ticketpreises\",\"WXeXGB\":\"Mit einem Promo-Code ohne Rabatt können versteckte Tickets freigeschaltet werden.\",\"GMhWB5\":\"A Radio option allows has multiple options but only one can be selected.\",\"CBt3s7\":\"A Radio Option allows only one selection\",\"7g61G9\":\"A short description of Awesome Events Ltd.\",\"zCk10D\":\"Eine einzelne Frage pro Teilnehmer. Z. B.: „Was ist Ihr Lieblingsessen?“\",\"ap3v36\":\"Eine einzige Frage pro Bestellung. Z. B.: Wie lautet der Name Ihres Unternehmens?\",\"uyJsf6\":\"Über\",\"pDwHGk\":\"About hi.events\",\"WTk/ke\":\"Über Stripe Connect\",\"VTfZPy\":\"Zugriff verweigert\",\"iwyhk4\":\"Access to the VIP area...\",\"0b79Xf\":\"Account Email\",\"m16xKo\":\"Hinzufügen\",\"LKNynS\":\"Add a cover image, description, and more to make your event stand out.\",\"a5KFZU\":\"Füge Veranstaltungsdetails hinzu und verwalte die Einstellungen.\",\"Fb+SDI\":\"Weitere Tickets hinzufügen\",\"BGD9Yt\":\"Tickets hinzufügen\",\"QN2F+7\":\"Webhook hinzufügen\",\"p59pEv\":\"Additional Details\",\"CPXP5Z\":\"Mitgliedsorganisationen\",\"gKq1fa\":\"Alle Teilnehmer\",\"QsYjci\":\"Alle Veranstaltungen\",\"/twVAS\":\"Alle Tickets\",\"8wYDMp\":\"Already have an account?\",\"TRYjHa\":[\"amount in \",[\"0\"]],\"tLjOgo\":[\"Amount paid $\",[\"0\"]],\"vRznIT\":\"Ein Fehler ist aufgetreten beim Überprüfen des Exportstatus.\",\"er3d/4\":\"Beim Sortieren der Tickets ist ein Fehler aufgetreten. Bitte versuchen Sie es erneut oder aktualisieren Sie die Seite\",\"hhvESd\":\"An event is the actual event you are hosting\",\"3ZpITr\":\"Eine Veranstaltung ist das Treffen oder Ereignis, das Sie organisieren. Sie können später weitere Details hinzufügen.\",\"QNrkms\":\"Antwort erfolgreich aktualisiert.\",\"j4DliD\":\"Alle Anfragen von Ticketinhabern werden an diese E-Mail-Adresse gesendet. Diese wird auch als „Antwortadresse“ für alle E-Mails verwendet, die von dieser Veranstaltung gesendet werden.\",\"epTbAK\":[\"Gilt für \",[\"0\"],\" Tickets\"],\"6MkQ2P\":\"Gilt für 1 Ticket\",\"jcnZEw\":[\"Wenden Sie diesen \",[\"type\"],\" auf alle neuen Tickets an\"],\"Dy+k4r\":\"Sind Sie sicher, dass Sie diesen Teilnehmer stornieren möchten? Dies macht sein Produkt ungültig\",\"5H3Z78\":\"Bist du sicher, dass du diesen Webhook löschen möchtest?\",\"2xEpch\":\"Einmal pro Teilnehmer fragen\",\"F2rX0R\":\"Mindestens ein Ereignistyp muss ausgewählt werden\",\"AJ4rvK\":\"Teilnehmer storniert\",\"qvylEK\":\"Teilnehmer erstellt\",\"Xc2I+v\":\"Teilnehmerverwaltung\",\"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.\",\"D2qlBU\":\"Teilnehmer aktualisiert\",\"k3Tngl\":\"Teilnehmer exportiert\",\"5UbY+B\":\"Teilnehmer mit einem bestimmten Ticket\",\"kShOaz\":\"Automatisierter Arbeitsablauf\",\"VPoeAx\":\"Automatisierte Einlassverwaltung mit mehreren Check-in-Listen und Echtzeitvalidierung\",\"lXkUEV\":\"Availability\",\"Vm0RKe\":\"Durchschn. Rabatt/Bestellung\",\"sGUsYa\":\"Durchschn. Bestellwert\",\"kNmmvE\":\"Awesome Events Ltd.\",\"0TGkYM\":\"Back to event homepage\",\"MLZyiY\":\"Background color\",\"EOUool\":\"Grundlegende Details\",\"7EGQKA\":\"Because you are the account owner, you cannot change your role or status.\",\"wVfiR2\":\"Before you're event can go live, there's a few thing to do.\",\"iMdwTb\":\"Bevor dein Event live gehen kann, musst du einige Schritte erledigen. Schließe alle folgenden Schritte ab, um zu beginnen.\",\"1xAcxY\":\"Beginnen Sie in wenigen Minuten mit dem Ticketverkauf\",\"R+w/Va\":\"Billing\",\"Ayxd+S\":\"Markenkontrolle\",\"Ptp9MF\":\"Button color\",\"Jzn1qy\":\"Can't load events\",\"GGWsTU\":\"Abgesagt\",\"Ud7zwq\":\"Durch die Stornierung werden alle mit dieser Bestellung verbundenen Tickets storniert und die Tickets werden wieder in den verfügbaren Pool freigegeben.\",\"K7tIrx\":\"Kategorie\",\"QndF4b\":\"einchecken\",\"9FVFym\":\"Kasse\",\"Y3FYXy\":\"Einchecken\",\"udRwQs\":\"Check-in erstellt\",\"F4SRy3\":\"Check-in gelöscht\",\"rfeicl\":\"Erfolgreich eingecheckt\",\"/ydvvl\":\"Checkout Messaging\",\"h1IXFK\":\"Chinesisch\",\"DM4gBB\":\"Chinesisch (Traditionell)\",\"jJGoVv\":\"Choose what notifications you want to receive\",\"RG3szS\":\"schließen\",\"msqIjo\":\"Dieses Ticket beim ersten Laden der Veranstaltungsseite minimieren\",\"/sZIOR\":\"Vollständiger Shop\",\"7D9MJz\":\"Stripe-Einrichtung abschließen\",\"nqx+6h\":\"Schließen Sie diese Schritte ab, um mit dem Ticketverkauf für Ihre Veranstaltung zu beginnen.\",\"DnLC08\":\"Congratulation on creating an event!\",\"o5A0Go\":\"Herzlichen Glückwunsch zur Erstellung eines Events!\",\"Xe2tSS\":\"Verbindungsdokumentation\",\"1Xxb9f\":\"Zahlungsabwicklung verbinden\",\"EWnXR+\":\"Mit Stripe verbinden\",\"MOUF31\":\"Verbinden Sie sich mit dem CRM und automatisieren Sie Aufgaben mit Webhooks und Integrationen\",\"/3017M\":\"Mit Stripe verbunden\",\"i3p844\":\"Contact email\",\"02S6xJ\":\"Support kontaktieren\",\"nBGbqc\":\"Kontaktieren Sie uns, um Nachrichten zu aktivieren\",\"0GwUT4\":\"Weiter zur Kasse\",\"RGVUUI\":\"Weiter zur Zahlung\",\"P0rbCt\":\"Cover Image\",\"dyrgS4\":\"Erstellen und personalisieren Sie Ihre Veranstaltungsseite sofort\",\"a6YrKg\":\"Create promo codes\",\"n6H6AO\":\"Create promo codes to offer discounts to your attendees.\",\"Tg323g\":\"Ticket erstellen\",\"agZ87r\":\"Erstellen Sie Tickets für Ihre Veranstaltung, legen Sie Preise fest und verwalten Sie die verfügbare Menge.\",\"dkAPxi\":\"Webhook erstellen\",\"Lu75d1\":\"Customize the email settings for this event\",\"RaxMyF\":\"Customize the event homepage and checkout experience\",\"q9Jg0H\":\"Passen Sie Ihre Veranstaltungsseite und das Widget-Design perfekt an Ihre Marke an\",\"zgCHnE\":\"Täglicher Verkaufsbericht\",\"nHm0AI\":\"Aufschlüsselung der täglichen Verkäufe, Steuern und Gebühren\",\"PqrqgF\":\"Tag eins Eincheckliste\",\"RiXc4g\":\"Deactivate user\",\"GnyEfA\":\"Ticket löschen\",\"E33LRn\":\"Delete user\",\"snMaH4\":\"Webhook löschen\",\"s9iD5d\":\"Description should be less than 50,000 characters\",\"x8uDKb\":\"Disable code\",\"b5SKxQ\":\"Deaktivieren Sie diese Kapazität, um Kapazitäten zu verfolgen, ohne den Produktverkauf zu stoppen\",\"Tgg8XQ\":\"Deaktivieren Sie diese Kapazitätsverfolgung ohne den Ticketverkauf zu stoppen\",\"QotGhf\":\"Diese Nachricht schließen\",\"TvY/XA\":\"Dokumentation\",\"dYskfr\":\"Existiert nicht\",\"V6Jjbr\":\"Sie haben kein Konto? <0>Registrieren\",\"4+aC/x\":\"Spende / Bezahlen Sie, was Sie möchten Ticket\",\"++S5i/\":\"Donation amount\",\"OO7MG7\":\"Donation Ticket\",\"0pEVi2\":\"Download Tickets PDF\",\"eneWvv\":\"Entwurf\",\"3z2ium\":\"Zum Sortieren ziehen\",\"6skwyH\":\"Drop an image, or click here to replace the Cover Image\",\"S37RRV\":\"Drop an image, or click here to upload the Cover Image\",\"X7F5EC\":\"Aufgrund des hohen Spamrisikos ist eine manuelle Verifizierung erforderlich, bevor du Nachrichten senden kannst.\\nBitte kontaktiere uns, um Zugang zu beantragen.\",\"KRmTkx\":\"Produkt duplizieren\",\"Wt9eV8\":\"Tickets duplizieren\",\"4xK5y2\":\"Webhooks duplizieren\",\"KIjvtr\":\"Niederländisch\",\"2iZEz7\":\"Antwort bearbeiten\",\"kNGp1D\":\"Teilnehmer bearbeiten\",\"t2bbp8\":\"Teilnehmer bearbeiten\",\"d+nnyk\":\"Ticket bearbeiten\",\"fW5sSv\":\"Webhook bearbeiten\",\"nP7CdQ\":\"Webhook bearbeiten\",\"WiKda6\":\"Email Configuration\",\"G5zNMX\":\"Email Settings\",\"nA31FG\":\"Aktivieren Sie diese Kapazität, um den Ticketverkauf zu stoppen, wenn das Limit erreicht ist\",\"RxzN1M\":\"Aktiviert\",\"LslKhj\":\"Fehler beim Laden der Protokolle\",\"nuoP/j\":\"Event created successfully\",\"4JzCvP\":\"Veranstaltung nicht verfügbar\",\"mImacG\":\"Veranstaltungsseite\",\"JyD0LH\":\"Event Settings\",\"uPX+1O\":\"Event-Ticketing von\",\"YDVUVl\":\"Ereignistypen\",\"3Fj/xp\":\"Event wdwdeNot Available\",\"VlvpJ0\":\"Antworten exportieren\",\"JKfSAv\":\"Export fehlgeschlagen. Bitte versuchen Sie es erneut.\",\"SVOEsu\":\"Export gestartet. Datei wird vorbereitet...\",\"jtrqH9\":\"Teilnehmer werden exportiert\",\"R4Oqr8\":\"Export abgeschlossen. Datei wird heruntergeladen...\",\"UlAK8E\":\"Bestellungen werden exportiert\",\"Jjw03p\":\"Fehler beim Export der Teilnehmer\",\"ZPwFnN\":\"Fehler beim Export der Bestellungen\",\"X4o0MX\":\"Webhook konnte nicht geladen werden\",\"10XEC9\":\"Produkt-E-Mail konnte nicht erneut gesendet werden\",\"lKh069\":\"Exportauftrag konnte nicht gestartet werden\",\"NNc33d\":\"Fehler beim Aktualisieren der Antwort.\",\"7/9RFs\":\"Bild-Upload fehlgeschlagen.\",\"YirHq7\":\"Rückmeldung\",\"T4BMxU\":\"Gebühren können sich ändern. Du wirst über Änderungen deiner Gebührenstruktur benachrichtigt.\",\"QWa3Sk\":\"First Name, Last Name, and Email Address are default questions that are always included in the checkout process.\",\"YXhom6\":\"Feste Gebühr:\",\"KgxI80\":\"Flexibles Ticketing\",\"/4rQr+\":\"Freikarten\",\"01my8x\":\"Kostenloses Ticket, keine Zahlungsinformationen erforderlich\",\"ejVYRQ\":\"From\",\"vAVBBv\":\"Fully Integrated\",\"kfVY6V\":\"Starten Sie kostenlos, keine Abonnementgebühren\",\"u6FPxT\":\"Get Tickets\",\"8KDgYV\":\"Bereiten Sie Ihre Veranstaltung vor\",\"cQPKZt\":\"Go to Dashboard\",\"yPvkqO\":\"Gehe zu Hi.Events\",\"gHSuV/\":\"Zur Startseite gehen\",\"Lek3cJ\":\"Zum Stripe-Dashboard\",\"GNJ1kd\":\"Hilfe & Support\",\"spMR9y\":\"Hi.Events erhebt Plattformgebühren zur Wartung und Verbesserung unserer Dienste. Diese Gebühren werden automatisch von jeder Transaktion abgezogen.\",\"EeNE0j\":\"Hidden will not be shown to customers.\",\"P+5Pbo\":\"Antworten ausblenden\",\"fsi6fC\":\"Dieses Ticket vor Kunden verbergen\",\"Fhzoa8\":\"Ticket nach Verkaufsende verbergen\",\"yhm3J/\":\"Ticket vor Verkaufsbeginn verbergen\",\"k7/oGT\":\"Ticket verbergen, sofern der Benutzer nicht über einen gültigen Aktionscode verfügt\",\"L0ZOiu\":\"Ticket bei Ausverkauf verbergen\",\"uno73L\":\"Wenn Sie ein Ticket ausblenden, können Benutzer es nicht auf der Veranstaltungsseite sehen.\",\"tj6Gob\":\"Homepage & Checkout\",\"m07jN3\":\"Homepage & Checkout Settings\",\"id+NIk\":\"How many minutes the customer has to complete their order\",\"htoh8N\":\"https://webhook-domain.com/webhook\",\"sIxFk5\":\"I agree to the terms and conditions\",\"4/kP5a\":\"Wenn sich kein neues Tab automatisch geöffnet hat, klicke bitte unten auf die Schaltfläche, um mit dem Checkout fortzufahren.\",\"Crwwhn\":[\"If a new tab did not open, please <0>\",[\"0\"],\".\"],\"9gtsTP\":\"Wenn leer, wird die Adresse verwendet, um einen Google-Kartenlink zu generieren.\",\"wOU3Tr\":\"Wenn du ein Konto bei uns hast, erhältst du eine E-Mail mit Anweisungen zum Zurücksetzen deines Passworts.\",\"Gyl1h8\":\"Image dimensions must be at least 600px by 300px\",\"TiGacZ\":\"Image dimensions must be at least 900px by 450px\",\"UnTvkH\":\"Die Bildabmessungen müssen zwischen 3000px und 2000px liegen. Mit einer maximalen Höhe von 2000px und einer maximalen Breite von 3000px\",\"UJLg8x\":\"In-depth Analytics\",\"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.\",\"SYmeUu\":\"Fügen Sie Verbindungsdetails für Ihre Online-Veranstaltung hinzu. Diese Details werden auf der Bestellzusammenfassungsseite und der Teilnehmerproduktseite angezeigt.\",\"evpD4c\":\"Fügen Sie Verbindungsdetails für Ihre Online-Veranstaltung hinzu. Diese Details werden auf der Bestellübersichtsseite und der Teilnehmerticketseite angezeigt.\",\"AXTNr8\":[\"Enthält \",[\"0\"],\" Tickets\"],\"7/Rzoe\":\"Enthält 1 Ticket\",\"F1Xp97\":\"Einzelne Teilnehmer\",\"nbfdhU\":\"Integrationen\",\"Lj7sBL\":\"Italienisch\",\"1IWWYX\":[\"KittenTech Conference \",[\"0\"]],\"ZgJEMX\":\"KittenTech Conference Center\",\"h0Q9Iw\":\"Letzte Antwort\",\"gw3Ur5\":\"Zuletzt ausgelöst\",\"CKcupn\":\"Latest Orders\",\"c+gAXc\":\"Let's get started by creating your first event\",\"QfrKvi\":\"Link color\",\"shkJ3U\":\"Verknüpfen Sie Ihr Stripe-Konto, um Gelder aus dem Ticketverkauf zu erhalten.\",\"dF6vP6\":\"Live\",\"NFxlHW\":\"Webhooks werden geladen\",\"XkhEf9\":\"Lorem ipsum...\",\"xGUf/F\":\"Veranstaltung veröffentlichen\",\"4wUIjX\":\"Machen Sie Ihre Veranstaltung live\",\"8mmINh\":\"Manage billing information and view invoices\",\"jWIznR\":\"Manage default settings for new events\",\"wqyqaF\":\"Manage general account settings\",\"5Llat8\":\"Produkte verwalten\",\"f92Qak\":\"Manage taxes and fees which can be applied to tickets\",\"PlTcVr\":\"Verwalten Sie Steuern und Gebühren, die auf Ihre Tickets erhoben werden können\",\"Wsx7Iu\":\"Manage users and their permissions\",\"QHcjP+\":\"Manage your billing and payment details\",\"2FzaR1\":\"Verwalten Sie Ihre Zahlungsabwicklung und sehen Sie die Plattformgebühren ein\",\"lzcrX3\":\"Durch manuelles Hinzufügen eines Teilnehmers wird die Ticketanzahl angepasst.\",\"/x0FyM\":\"Match Your Brand\",\"1jRD0v\":\"Teilnehmer mit bestimmten Tickets benachrichtigen\",\"97QrnA\":\"Kommunizieren Sie mit Teilnehmern, verwalten Sie Bestellungen und bearbeiten Sie Rückerstattungen an einem Ort\",\"0/yJtP\":\"Nachricht an Bestelleigentümer mit bestimmten Produkten senden\",\"tccUcA\":\"Mobiler Check-in\",\"SVuGaP\":\"Multiple price options, users can choose which to pay\",\"6wbTro\":\"Mehrere Preisoptionen. Perfekt für Frühbuchertickets usw.\",\"m920rF\":\"New York\",\"074+X8\":\"Keine aktiven Webhooks\",\"6r9SGl\":\"Keine Kreditkarte erforderlich\",\"Z6ILSe\":\"Keine Veranstaltungen für diesen Veranstalter\",\"XZkeaI\":\"Keine Protokolle gefunden\",\"zK/+ef\":\"Keine Produkte zur Auswahl verfügbar\",\"q91DKx\":\"Dieser Teilnehmer hat keine Fragen beantwortet.\",\"QoAi8D\":\"Keine Antwort\",\"EK/G11\":\"Noch keine Antworten\",\"cU1op4\":\"No Taxes or Fees have been added yet.\",\"uR2eFu\":\"No tickets available\",\"b7JZFg\":\"Keine Tickets vorzeigen\",\"n5vdm2\":\"Für diesen Endpunkt wurden noch keine Webhook-Ereignisse aufgezeichnet. Ereignisse werden hier angezeigt, sobald sie ausgelöst werden.\",\"4GhX3c\":\"Keine Webhooks\",\"x5+Lcz\":\"Nicht eingecheckt\",\"+P/tII\":\"Sobald Sie bereit sind, schalten Sie Ihre Veranstaltung live und beginnen Sie mit dem Ticketverkauf.\",\"bU7oUm\":\"Nur an Bestellungen mit diesen Status senden\",\"ppuQR4\":\"Bestellung erstellt\",\"L4kzeZ\":[\"Bestelldetails \",[\"0\"]],\"vu6Arl\":\"Bestellung als bezahlt markiert\",\"FaPYw+\":\"Bestelleigentümer\",\"eB5vce\":\"Bestelleigentümer mit einem bestimmten Produkt\",\"CxLoxM\":\"Bestelleigentümer mit Produkten\",\"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.\",\"EZy55F\":\"Bestellung erstattet\",\"6eSHqs\":\"Bestellstatus\",\"e7eZuA\":\"Bestellung aktualisiert\",\"mz+c33\":\"Erstellte Aufträge\",\"5It1cQ\":\"Bestellungen exportiert\",\"m/ebSk\":\"Organizer Details\",\"J2cXxX\":\"Organisatoren können nur Events und Tickets verwalten. Sie können keine Benutzer, Kontoeinstellungen oder Rechnungsinformationen verwalten.\",\"6/dCYd\":\"Übersicht\",\"2w/FiJ\":\"Bezahltes Ticket\",\"/l/ckQ\":\"URL einfügen\",\"iq5IUr\":\"Pause Ticket\",\"URAE3q\":\"Pausiert\",\"TskrJ8\":\"Zahlung & Plan\",\"EyE8E6\":\"Zahlungsabwicklung\",\"vcyz2L\":\"Zahlungseinstellungen\",\"CcK+Ft\":\"PDF\",\"att1Hj\":\"percent\",\"dfVao3\":\"Bestellung aufgeben\",\"br3Y/y\":\"Plattformgebühren\",\"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\",\"jEw0Mr\":\"Bitte geben Sie eine gültige URL ein\",\"Dvq0wf\":\"Bitte ein Bild angeben.\",\"MA04r/\":\"Bitte entfernen Sie die Filter und stellen Sie die Sortierung auf \\\"Startseite-Reihenfolge\\\", um die Sortierung zu aktivieren\",\"EFq6EG\":\"Bitte ein Bild auswählen.\",\"yygcoG\":\"Bitte wählen Sie mindestens ein Ticket aus\",\"fuwKpE\":\"Bitte versuchen Sie es erneut.\",\"o+tJN/\":\"Bitte warten Sie, während wir Ihre Teilnehmer für den Export vorbereiten...\",\"+5Mlle\":\"Bitte warten Sie, während wir Ihre Bestellungen für den Export vorbereiten...\",\"R7+D0/\":\"Portugiesisch (Brasilien)\",\"Qs7yI0\":\"Powered By\",\"lqAWKB\":\"Powered by <0>Hi.Events 👋\",\"3n47kV\":\"Powered By Hi.Events\",\"ddi4j4\":\"Unterstützt durch Stripe\",\"cs5muu\":\"Vorschau der Veranstaltungsseite\",\"a5jvSX\":\"Price Tiers\",\"p/JDmw\":\"Produkt\",\"EWCLpZ\":\"Produkt erstellt\",\"XkFYVB\":\"Produkt gelöscht\",\"0dzBGg\":\"Produkt-E-Mail wurde an den Teilnehmer erneut gesendet\",\"YMwcbR\":\"Produktverkäufe, Einnahmen und Steueraufschlüsselung\",\"ldVIlB\":\"Produkt aktualisiert\",\"mIqT3T\":\"Produkte, Waren und flexible Preisoptionen\",\"ZXpm3a\":[\"Promo \",[\"promoCode\"],\" code applied\"],\"JoKGiJ\":\"Gutscheincode\",\"k3wH7i\":\"Nutzung von Rabattcodes und Rabattaufschlüsselung\",\"evDBV8\":\"Veranstaltung veröffentlichen\",\"812gwg\":\"Lizenz kaufen\",\"YwNJAq\":\"QR-Code-Scanning mit sofortigem Feedback und sicherem Teilen für den Mitarbeiterzugang\",\"HiGkFu\":\"Weiterleitung zu Stripe...\",\"RloWNu\":\"Reply to email\",\"Gkz9Vm\":\"Produkt-E-Mail erneut senden\",\"slOprG\":\"Setzen Sie Ihr Passwort zurück\",\"hVF4dJ\":\"Sale starts\",\"lBAlVv\":\"Suche nach Namen, Bestellnummer, Teilnehmernummer oder E-Mail ...\",\"ulAuWO\":\"Search by event name or description...\",\"NQSiYb\":\"Search by name or description...\",\"B1bB1j\":\"Search by order #, name or email...\",\"KZpERn\":\"Search by product name...\",\"jA4hXE\":\"Search by subject or body...\",\"HYnGee\":\"Suche nach Ticketnamen...\",\"j9cPeF\":\"Ereignistypen auswählen\",\"XH5juP\":\"Ticketstufe auswählen\",\"nuWxSr\":\"Select Tickets\",\"Ropvj0\":\"Wählen Sie aus, welche Ereignisse diesen Webhook auslösen\",\"BG3f7v\":\"Sell Anything\",\"VtX8nW\":\"Verkaufen Sie Waren zusammen mit Tickets mit integrierter Steuer- und Rabattcode-Unterstützung\",\"Cye3uV\":\"Verkaufen Sie mehr als nur Tickets\",\"471O/e\":\"Send confirmation email\",\"nwVSiv\":\"Bestellbestätigung und Produkt-E-Mail senden\",\"vu4F0h\":\"Set a minimum price and let users donate more\",\"VlS7y2\":\"Richten Sie Ihre Zahlungsabwicklung ein, um Gelder aus Ticketverkäufen zu erhalten.\",\"HbUQWA\":\"Einrichtung in Minuten\",\"FFbYHm\":[\"Should this \",[\"type\"],\" be applied to all new tickets?\"],\"smd87r\":\"Verfügbare Ticketanzahl anzeigen\",\"j3b+OW\":\"Wird dem Kunden nach dem Bezahlvorgang auf der Bestellübersichtsseite angezeigt\",\"v6IwHE\":\"Intelligentes Einchecken\",\"J9xKh8\":\"Intelligentes Dashboard\",\"KTxc6k\":\"Etwas ist schiefgelaufen. Bitte versuchen Sie es erneut oder kontaktieren Sie den Support, falls das Problem weiterhin besteht.\",\"DvCwYF\":\"Sorry, this promo code is invalid'\",\"9rRZZ+\":\"Leider ist Ihre Bestellung abgelaufen. Bitte starten Sie eine neue Bestellung.\",\"a4SyEE\":\"Die Sortierung ist deaktiviert, während Filter und Sortierung angewendet werden\",\"4nG1lG\":\"Standardticket zum Festpreis\",\"RS0o7b\":\"State\",\"Ih8kN0\":[\"Successfully $\",[\"0\"],\" attendee\"],\"xHl17l\":[\"Erfolgreich geprüft <0>\",[\"0\"],\" \",[\"1\"],\" \",[\"2\"]],\"onFQYs\":\"Ticket erfolgreich erstellt\",\"Hgj/mB\":\"Successfully deleted ticket\",\"JwTmB6\":\"Produkt erfolgreich dupliziert\",\"g2lRrH\":\"Ticket erfolgreich aktualisiert\",\"kj7zYe\":\"Webhook erfolgreich aktualisiert\",\"5gIl+x\":\"Unterstützung für gestaffelte, spendenbasierte und Produktverkäufe mit anpassbaren Preisen und Kapazitäten\",\"EEZnW+\":\"Taxes & Fees\",\"gVjSFp\":\"Taxes and Fees can be associated with tickets and will be added to the ticket price.\",\"e0ZSh4\":\"Text Colour\",\"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\",\"tXadb0\":\"Die gesuchte Veranstaltung ist derzeit nicht verfügbar. Sie wurde möglicherweise entfernt, ist abgelaufen oder die URL ist falsch.\",\"FqjKfd\":\"The location of your event\",\"kIXEVN\":[\"Die maximale Anzahl von Tickets für \",[\"0\"],\" ist \",[\"1\"]],\"FeAfXO\":[\"Die maximale Anzahl an Tickets für Generäle beträgt \",[\"0\"]],\"POEqXB\":\"The organizer details of your event\",\"TJZByZ\":\"The tax and fee to apply to this ticket. You can create new taxes and fees on the\",\"OJYwh9\":\"Die Steuern und Gebühren, die auf dieses Ticket angewendet werden sollen. Sie können neue Steuern und Gebühren auf der\",\"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'\",\"wgAiDb\":\"The user must login to change their email.\",\"jvxN9/\":\"Für diese Veranstaltung sind keine Tickets verfügbar\",\"hjLUr+\":\"There was an error loading this content. Please refresh the page and try again.\",\"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.\",\"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\",\"axERYu\":\"This order has already been paid. <0>View order details\",\"wY+HO9\":\"This order has already been processed.\",\"D44cEI\":\"This order has been completed.\",\"0vRWbB\":\"This order is awaiting payment.\",\"LIjb4v\":\"This order is processing. TODO - a nice image and poll the API\",\"5189cf\":\"Dadurch werden alle Sichtbarkeitseinstellungen überschrieben und das Ticket wird vor allen Kunden verborgen.\",\"4vwjho\":\"This page has expired. <0>View order details\",\"WJqBqd\":\"Dieses Ticket kann nicht gelöscht werden, da es\\nmit einer Bestellung verknüpft ist. Sie können es stattdessen ausblenden.\",\"ma6qdu\":\"Dieses Ticket ist nicht öffentlich sichtbar.\",\"xJ8nzj\":\"Dieses Ticket ist ausgeblendet, sofern es nicht durch einen Promo-Code angesprochen wird.\",\"KosivG\":\"Ticket erfolgreich gelöscht\",\"HGuXjF\":\"Ticketinhaber\",\"6tmWch\":\"Ticket oder Produkt\",\"USk+Mn\":\"Ticket page message\",\"mRM6XH\":\"Ticketverkauf\",\"NirIiz\":\"Ticketstufe\",\"8jLPgH\":\"Art des Tickets\",\"jqWDf9\":\"Ticket widget background color\",\"UrMVAz\":\"Ticket-Widget-Vorschau\",\"ngtDy7\":\"Ticket widget text color\",\"N+YYpo\":\"Eintrittskarte(n)\",\"6GQNLE\":\"Tickets\",\"NRhrIB\":\"Tickets & Produkte\",\"ikA//P\":\"verkaufte Tickets\",\"i+idBz\":\"Verkaufte Tickets\",\"AGRilS\":\"Verkaufte Tickets\",\"56Qw2C\":\"Tickets erfolgreich sortiert\",\"4f8A8M\":\"Tickets to which the promo code applies (Applies to all by default)\",\"Aiggp0\":\"Tiered products allow you to offer multiple price options for the same product.\\nThis is perfect for early bird products, or offering different price\\noptions for different groups of people.\",\"oYaHuq\":\"Stufenticket\",\"XZrhpz\":\"Tiered Ticket - Coming Soon\",\"4M150e\":\"Mit gestaffelten Tickets können Sie mehrere Preisoptionen für dasselbe Ticket anbieten.\\nDas ist ideal für Frühbuchertickets oder das Anbieten unterschiedlicher Preisoptionen\\nfür unterschiedliche Personengruppen.\",\"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.\",\"BZBYf3\":\"Um Kreditkartenzahlungen zu empfangen, musst du dein Stripe-Konto verbinden. Stripe ist unser Zahlungsabwicklungspartner, der sichere Transaktionen und pünktliche Auszahlungen gewährleistet.\",\"/b6Z1R\":\"Verfolgen Sie Einnahmen, Seitenaufrufe und Verkäufe mit detaillierten Analysen und exportierbaren Berichten\",\"OpKMSn\":\"Transaktionsgebühr:\",\"mLGbAS\":[\"Teilnehmer \",[\"0\"],\" konnte nicht ausgewählt werden\"],\"nNdxt9\":\"Ticket konnte nicht erstellt werden. Bitte überprüfen Sie Ihre Angaben\",\"IrVSu+\":\"Produkt konnte nicht dupliziert werden. Bitte überprüfen Sie Ihre Angaben\",\"Vx2J6x\":\"Teilnehmer konnte nicht abgerufen werden\",\"ZBAScj\":\"Unbekannter Teilnehmer\",\"oMcLhS\":\"Unlimited ticket quantity available\",\"ZkS2p3\":\"Veranstaltung nicht mehr veröffentlichen\",\"gsehpV\":\"Upload an image to be displayed on the event page\",\"lnCMdg\":\"Bild hochladen\",\"HtrFfw\":\"URL ist erforderlich\",\"fROFIL\":\"Vietnamesisch\",\"gj5YGm\":\"Sehen Sie sich Berichte zu Ihrer Veranstaltung an und laden Sie sie herunter. Bitte beachten Sie, dass nur abgeschlossene Bestellungen in diesen Berichten enthalten sind.\",\"c7VN/A\":\"Antworten anzeigen\",\"AM+zF3\":\"Teilnehmer anzeigen\",\"e4mhwd\":\"Zur Event-Homepage\",\"n6EaWL\":\"Protokolle anzeigen\",\"AMkkeL\":\"Bestellung anzeigen\",\"MXm9nr\":\"VIP-Produkt\",\"GdWB+V\":\"Webhook erfolgreich erstellt\",\"2X4ecw\":\"Webhook erfolgreich gelöscht\",\"CThMKa\":\"Webhook-Protokolle\",\"nuh/Wq\":\"Webhook-URL\",\"8BMPMe\":\"Webhook sendet keine Benachrichtigungen\",\"FSaY52\":\"Webhook sendet Benachrichtigungen\",\"v1kQyJ\":\"Webhooks\",\"jupD+L\":\"Willkommen zurück 👋\",\"je8QQT\":\"Willkommen bei Hi.Events 👋\",\"wjqPqF\":\"Was sind Stufentickets?\",\"5iXvHA\":\"What is a Tiered Ticketing?\",\"46L1AK\":\"Was ist ein Webhook?\",\"MhhnvW\":\"Für welche Tickets gilt dieser Code? (Gilt standardmäßig für alle)\",\"dCil3h\":\"Auf welche Tickets soll sich diese Frage beziehen?\",\"cxsKvw\":\"Wenn ein Check-in gelöscht wird\",\"Gmd0hv\":\"Wenn ein neuer Teilnehmer erstellt wird\",\"Lc18qn\":\"Wenn eine neue Bestellung erstellt wird\",\"dfkQIO\":\"Wenn ein neues Produkt erstellt wird\",\"8OhzyY\":\"Wenn ein Produkt gelöscht wird\",\"tRXdQ9\":\"Wenn ein Produkt aktualisiert wird\",\"Q7CWxp\":\"Wenn ein Teilnehmer storniert wird\",\"IuUoyV\":\"Wenn ein Teilnehmer eingecheckt wird\",\"nBVOd7\":\"Wenn ein Teilnehmer aktualisiert wird\",\"ny2r8d\":\"Wenn eine Bestellung storniert wird\",\"c9RYbv\":\"Wenn eine Bestellung als bezahlt markiert wird\",\"ejMDw1\":\"Wenn eine Bestellung erstattet wird\",\"fVPt0F\":\"Wenn eine Bestellung aktualisiert wird\",\"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\",\"4ysd6z\":\"You can connecting using this Zoom link...\",\"9HGdDw\":\"Sie können einen Promo-Code erstellen, der auf dieses Ticket abzielt, auf der\",\"UqVaVO\":\"Sie können den Tickettyp nicht ändern, da diesem Ticket Teilnehmer zugeordnet sind.\",\"zQ8idk\":\"You cannot change the ticket type because there are already tickets sold for this ticket.\",\"3vRX5A\":\"Sie können diese Preisstufe nicht löschen, da für diese Stufe bereits Tickets verkauft wurden. Sie können sie stattdessen ausblenden.\",\"RCC09s\":\"You cannot edit a default question\",\"XoeazJ\":\"You have no attendee questions. Attendee questions are asked once per attendee.\",\"FZKDIe\":\"You have no order questions. Order questions are asked once per order.\",\"casL1O\":\"Sie haben Steuern und Gebühren zu einem kostenlosen Produkt hinzugefügt. Möchten Sie diese entfernen?\",\"183zcL\":\"Sie haben Steuern und Gebühren zu einem Freiticket hinzugefügt. Möchten Sie diese entfernen oder unkenntlich machen?\",\"2v5MI1\":\"Sie haben noch keine Nachrichten gesendet. Sie können Nachrichten an alle Teilnehmer oder an bestimmte Ticketinhaber senden.\",\"LRguuL\":\"You must have at least one tier\",\"FRl8Jv\":\"Sie müssen Ihre Konto-E-Mail-Adresse verifizieren, bevor Sie Nachrichten senden können.\",\"8QNzin\":\"Sie benötigen ein Ticket, bevor Sie eine Kapazitätszuweisung erstellen können.\",\"WHXRMI\":\"Sie benötigen mindestens ein Ticket, um loslegen zu können. Kostenlos, kostenpflichtig oder der Benutzer kann selbst entscheiden, was er bezahlen möchte.\",\"bdg03s\":\"Your account email in outgoing emails.\",\"TF37u6\":\"Deine Teilnehmer wurden erfolgreich exportiert.\",\"nBqgQb\":\"Ihre E-Mail\",\"R02pnV\":\"Ihr Event muss live sein, bevor Sie Tickets an Teilnehmer verkaufen können.\",\"cqo2VO\":\"Ihre Veranstaltung muss live sein, bevor Sie Tickets verkaufen können.\",\"la26JS\":\"Your order is in progress\",\"XeNum6\":\"Deine Bestellungen wurden erfolgreich exportiert.\",\"vvO1I2\":\"Ihr Stripe-Konto ist verbunden und bereit zur Zahlungsabwicklung.\",\"3k7HDY\":\"Zip\",\"VftCuk\":\"Zoom link, Google Meet link, etc.\",\"YtqjMA\":\"Aufgrund des hohen Spam-Risikos ist eine manuelle Verifizierung erforderlich, bevor du Nachrichten senden kannst.\\nBitte kontaktiere uns, um Zugriff zu beantragen.\",\"8XAE7n\":\"Wenn du ein Konto bei uns hast, erhältst du eine E-Mail mit Anweisungen zum Zurücksetzen deines\\nPassworts.\"}")}; \ No newline at end of file diff --git a/frontend/src/locales/de.po b/frontend/src/locales/de.po index 7bdd99ab1b..c28b382a5d 100644 --- a/frontend/src/locales/de.po +++ b/frontend/src/locales/de.po @@ -96,7 +96,7 @@ msgstr "{hours} Stunden, {minutes} Minuten und {seconds} Sekunden" #: src/components/common/Countdown/index.tsx:72 msgid "{minutes} minutes and {seconds} seconds" -msgstr "{Minuten} Minuten und {Sekunden} Sekunden" +msgstr "{minutes} Minuten und {seconds} Sekunden" #: src/components/routes/welcome/index.tsx:59 msgid "{organizerName}'s first event" @@ -2896,7 +2896,7 @@ msgstr "Nachname" #: src/components/routes/product-widget/CollectInformation/index.tsx:401 #: src/components/routes/profile/ManageProfile/index.tsx:137 msgid "Last Name" -msgstr "Familienname, Nachname" +msgstr "Nachname" #: src/components/common/WebhookTable/index.tsx:239 msgid "Last Response" @@ -2953,7 +2953,7 @@ msgstr "Anmelden" msgid "Logging in" msgstr "Einloggen" -#: src/components/routes/auth/Register/index.tsx:70 +#: src/components/routes/auth/Register/index.tsx:53 #~ msgid "Login" #~ msgstr "Anmelden" @@ -3951,7 +3951,7 @@ msgstr "Checkout-Nachricht veröffentlichen" #: src/components/common/PoweredByFooter/index.tsx:28 msgid "Powered by" -msgstr "Angetrieben von" +msgstr "Powered by" #: src/components/forms/StripeCheckoutForm/index.tsx:137 #~ msgid "Powered by Stripe" diff --git a/frontend/src/locales/it.js b/frontend/src/locales/it.js index 5933c87f04..b9a98561f6 100644 --- a/frontend/src/locales/it.js +++ b/frontend/src/locales/it.js @@ -1 +1 @@ -/*eslint-disable*/module.exports={messages:JSON.parse("{\"f8qS7T\":\"'Non c'è ancora nulla da mostrare'\",\"J/hVSQ\":[[\"0\"]],\"Jv22kr\":[[\"0\"],\" <0>registrato con successo\"],\"yxhYRZ\":[[\"0\"],\" <0>uscita registrata con successo\"],\"KMgp2+\":[[\"0\"],\" disponibili\"],\"Pmr5xp\":[[\"0\"],\" creato con successo\"],\"FImCSc\":[[\"0\"],\" aggiornato con successo\"],\"KOr9b4\":[\"Eventi di \",[\"0\"]],\"cU8MWb\":[[\"0\"],\"/\",[\"1\"],\" registrati\"],\"Vjij1k\":[[\"days\"],\" giorni, \",[\"hours\"],\" ore, \",[\"minutes\"],\" minuti e \",[\"seconds\"],\" secondi\"],\"f3RdEk\":[[\"hours\"],\" ore, \",[\"minutes\"],\" minuti e \",[\"seconds\"],\" secondi\"],\"fyE7Au\":[[\"minutes\"],\" minuti e \",[\"seconds\"],\" secondi\"],\"NlQ0cx\":[\"Primo evento di \",[\"organizerName\"]],\"Ul6IgC\":\"<0>Le assegnazioni di capacità ti permettono di gestire la capacità tra biglietti o un intero evento. Ideale per eventi di più giorni, workshop e altro, dove il controllo delle presenze è cruciale.<1>Ad esempio, puoi associare un'assegnazione di capacità con i biglietti <2>Primo Giorno e <3>Tutti i Giorni. Una volta raggiunta la capacità, entrambi i biglietti smetteranno automaticamente di essere disponibili per la vendita.\",\"Exjbj7\":\"<0>Le liste di check-in aiutano a gestire l'ingresso dei partecipanti al tuo evento. Puoi associare più biglietti a una lista di check-in e assicurarti che solo coloro con biglietti validi possano entrare.\",\"OXku3b\":\"<0>https://il-tuo-sito-web.com\",\"qnSLLW\":\"<0>Inserisci il prezzo escluse tasse e commissioni.<1>Tasse e commissioni possono essere aggiunte qui sotto.\",\"ZjMs6e\":\"<0>Il numero di prodotti disponibili per questo prodotto<1>Questo valore può essere sovrascritto se ci sono <2>Limiti di Capacità associati a questo prodotto.\",\"E15xs8\":\"⚡️ Configura il tuo evento\",\"FL6OwU\":\"✉️ Conferma il tuo indirizzo email\",\"BN0OQd\":\"🎉 Congratulazioni per aver creato un evento!\",\"4kSf7w\":\"🎟️ Aggiungi prodotti\",\"4WT5tD\":\"🎨 Personalizza la pagina del tuo evento\",\"3VPPdS\":\"💳 Connetti con Stripe\",\"cjdktw\":\"🚀 Metti online il tuo evento\",\"rmelwV\":\"0 minuti e 0 secondi\",\"i0puaE\":\"10.00\",\"qdfdgM\":\"Via Roma 123\",\"IoRZzD\":\"20\",\"+H1RMb\":\"2024-01-01 10:00\",\"Q/T49U\":\"2024-01-01 18:00\",\"hMT8+2\":\"00100\",\"efAM7X\":\"Un campo data. Perfetto per chiedere una data di nascita ecc.\",\"6euFZ/\":[\"Un \",[\"type\"],\" predefinito viene applicato automaticamente a tutti i nuovi prodotti. Puoi sovrascrivere questa impostazione per ogni singolo prodotto.\"],\"SMUbbQ\":\"Un menu a tendina consente una sola selezione\",\"qv4bfj\":\"Una commissione, come una commissione di prenotazione o una commissione di servizio\",\"POT0K/\":\"Un importo fisso per prodotto. Es. $0,50 per prodotto\",\"f4vJgj\":\"Un campo di testo a più righe\",\"OIPtI5\":\"Una percentuale del prezzo del prodotto. Es. 3,5% del prezzo del prodotto\",\"ZthcdI\":\"Un codice promozionale senza sconto può essere utilizzato per rivelare prodotti nascosti.\",\"AG/qmQ\":\"Un'opzione Radio ha più opzioni ma solo una può essere selezionata.\",\"h179TP\":\"Una breve descrizione dell'evento che verrà visualizzata nei risultati dei motori di ricerca e quando condiviso sui social media. Per impostazione predefinita, verrà utilizzata la descrizione dell'evento\",\"WKMnh4\":\"Un campo di testo a singola riga\",\"BHZbFy\":\"Una singola domanda per ordine. Es. Qual è il tuo indirizzo di spedizione?\",\"Fuh+dI\":\"Una singola domanda per prodotto. Es. Qual è la tua taglia di maglietta?\",\"RlJmQg\":\"Un'imposta standard, come IVA o GST\",\"uIKNjo\":\"Informazioni sull'evento\",\"3pykXZ\":\"Accetta bonifici bancari, assegni o altri metodi di pagamento offline\",\"hrvLf4\":\"Accetta pagamenti con carta di credito tramite Stripe\",\"bfXQ+N\":\"Accetta Invito\",\"AeXO77\":\"Account\",\"lkNdiH\":\"Nome Account\",\"Puv7+X\":\"Impostazioni Account\",\"OmylXO\":\"Account aggiornato con successo\",\"7L01XJ\":\"Azioni\",\"FQBaXG\":\"Attiva\",\"5T2HxQ\":\"Data di attivazione\",\"F6pfE9\":\"Attivo\",\"/PN1DA\":\"Aggiungi una descrizione per questa lista di check-in\",\"0/vPdA\":\"Aggiungi eventuali note sul partecipante. Queste non saranno visibili al partecipante.\",\"Or1CPR\":\"Aggiungi eventuali note sul partecipante...\",\"l3sZO1\":\"Aggiungi eventuali note sull'ordine. Queste non saranno visibili al cliente.\",\"xMekgu\":\"Aggiungi eventuali note sull'ordine...\",\"PGPGsL\":\"Aggiungi descrizione\",\"gMK0ps\":\"Aggiungi dettagli dell'evento e gestisci le impostazioni dell'evento.\",\"OveehC\":\"Aggiungi istruzioni per i pagamenti offline (es. dettagli del bonifico bancario, dove inviare gli assegni, scadenze di pagamento)\",\"LTVoRa\":\"Aggiungi altri prodotti\",\"ApsD9J\":\"Aggiungi Nuovo\",\"TZxnm8\":\"Aggiungi Opzione\",\"24l4x6\":\"Aggiungi Prodotto\",\"8q0EdE\":\"Aggiungi Prodotto alla Categoria\",\"YvCknQ\":\"Aggiungi prodotti\",\"Cw27zP\":\"Aggiungi domanda\",\"yWiPh+\":\"Aggiungi Tassa o Commissione\",\"goOKRY\":\"Aggiungi livello\",\"oZW/gT\":\"Aggiungi al Calendario\",\"pn5qSs\":\"Informazioni Aggiuntive\",\"Y8DIQy\":\"Opzioni Aggiuntive\",\"Du6bPw\":\"Indirizzo\",\"NY/x1b\":\"Indirizzo riga 1\",\"POdIrN\":\"Indirizzo Riga 1\",\"cormHa\":\"Indirizzo riga 2\",\"gwk5gg\":\"Indirizzo Riga 2\",\"U3pytU\":\"Amministratore\",\"HLDaLi\":\"Gli amministratori hanno accesso completo agli eventi e alle impostazioni dell'account.\",\"W7AfhC\":\"Tutti i partecipanti di questo evento\",\"cde2hc\":\"Tutti i Prodotti\",\"5CQ+r0\":\"Consenti ai partecipanti associati a ordini non pagati di effettuare il check-in\",\"ipYKgM\":\"Consenti l'indicizzazione dei motori di ricerca\",\"LRbt6D\":\"Consenti ai motori di ricerca di indicizzare questo evento\",\"+MHcJD\":\"Ci siamo quasi! Stiamo solo aspettando che il tuo pagamento venga elaborato. Questo dovrebbe richiedere solo pochi secondi..\",\"ApOYO8\":\"Fantastico, Evento, Parole chiave...\",\"hehnjM\":\"Importo\",\"R2O9Rg\":[\"Importo pagato (\",[\"0\"],\")\"],\"V7MwOy\":\"Si è verificato un errore durante il caricamento della pagina\",\"Q7UCEH\":\"Si è verificato un errore durante l'ordinamento delle domande. Riprova o aggiorna la pagina\",\"jD/OCQ\":\"Un evento è l'evento effettivo che stai organizzando. Puoi aggiungere più dettagli in seguito.\",\"oBkF+i\":\"Un organizzatore è l'azienda o la persona che ospita l'evento\",\"W5A0Ly\":\"Si è verificato un errore imprevisto.\",\"byKna+\":\"Si è verificato un errore imprevisto. Per favore riprova.\",\"ubdMGz\":\"Qualsiasi richiesta dai possessori di prodotti verrà inviata a questo indirizzo email. Questo sarà anche utilizzato come indirizzo \\\"rispondi a\\\" per tutte le email inviate da questo evento\",\"aAIQg2\":\"Aspetto\",\"Ym1gnK\":\"applicato\",\"sy6fss\":[\"Si applica a \",[\"0\"],\" prodotti\"],\"kadJKg\":\"Si applica a 1 prodotto\",\"DB8zMK\":\"Applica\",\"GctSSm\":\"Applica Codice Promozionale\",\"ARBThj\":[\"Applica questo \",[\"type\"],\" a tutti i nuovi prodotti\"],\"S0ctOE\":\"Archivia evento\",\"TdfEV7\":\"Archiviati\",\"A6AtLP\":\"Eventi Archiviati\",\"q7TRd7\":\"Sei sicuro di voler attivare questo partecipante?\",\"TvkW9+\":\"Sei sicuro di voler archiviare questo evento?\",\"/CV2x+\":\"Sei sicuro di voler cancellare questo partecipante? Questo annullerà il loro biglietto\",\"YgRSEE\":\"Sei sicuro di voler eliminare questo codice promozionale?\",\"iU234U\":\"Sei sicuro di voler eliminare questa domanda?\",\"CMyVEK\":\"Sei sicuro di voler rendere questo evento una bozza? Questo renderà l'evento invisibile al pubblico\",\"mEHQ8I\":\"Sei sicuro di voler rendere questo evento pubblico? Questo renderà l'evento visibile al pubblico\",\"s4JozW\":\"Sei sicuro di voler ripristinare questo evento? Verrà ripristinato come bozza.\",\"vJuISq\":\"Sei sicuro di voler eliminare questa Assegnazione di Capacità?\",\"baHeCz\":\"Sei sicuro di voler eliminare questa Lista di Check-In?\",\"LBLOqH\":\"Chiedi una volta per ordine\",\"wu98dY\":\"Chiedi una volta per prodotto\",\"ss9PbX\":\"Partecipante\",\"m0CFV2\":\"Dettagli Partecipante\",\"QKim6l\":\"Partecipante non trovato\",\"R5IT/I\":\"Note Partecipante\",\"lXcSD2\":\"Domande partecipante\",\"HT/08n\":\"Biglietto Partecipante\",\"9SZT4E\":\"Partecipanti\",\"iPBfZP\":\"Partecipanti Registrati\",\"7KxcHR\":\"Partecipanti con un prodotto specifico\",\"IMJ6rh\":\"Ridimensionamento Automatico\",\"vZ5qKF\":\"Ridimensiona automaticamente l'altezza del widget in base al contenuto. Quando disabilitato, il widget riempirà l'altezza del contenitore.\",\"4lVaWA\":\"In attesa di pagamento offline\",\"2rHwhl\":\"In Attesa di Pagamento Offline\",\"3wF4Q/\":\"In attesa di pagamento\",\"ioG+xt\":\"In Attesa di Pagamento\",\"3PmQfI\":\"Evento Fantastico\",\"Yrbm6T\":\"Awesome Organizer Srl.\",\"9002sI\":\"Torna a tutti gli eventi\",\"A302fe\":\"Torna alla pagina dell'evento\",\"VCoEm+\":\"Torna al login\",\"k1bLf+\":\"Colore di Sfondo\",\"I7xjqg\":\"Tipo di Sfondo\",\"1mwMl+\":\"Prima di inviare!\",\"/yeZ20\":\"Prima che il tuo evento possa andare online, ci sono alcune cose che devi fare.\",\"ze6ETw\":\"Inizia a vendere prodotti in pochi minuti\",\"8rE61T\":\"Indirizzo di Fatturazione\",\"/xC/im\":\"Impostazioni di Fatturazione\",\"rp/zaT\":\"Portoghese Brasiliano\",\"whqocw\":\"Registrandoti accetti i nostri <0>Termini di Servizio e la <1>Privacy Policy.\",\"bcCn6r\":\"Tipo di Calcolo\",\"+8bmSu\":\"California\",\"iStTQt\":\"L'autorizzazione della fotocamera è stata negata. <0>Richiedi Autorizzazione di nuovo, o se questo non funziona, dovrai <1>concedere a questa pagina l'accesso alla tua fotocamera nelle impostazioni del browser.\",\"dEgA5A\":\"Annulla\",\"Gjt/py\":\"Annulla cambio email\",\"tVJk4q\":\"Annulla ordine\",\"Os6n2a\":\"Annulla Ordine\",\"Mz7Ygx\":[\"Annulla Ordine \",[\"0\"]],\"3tTjpi\":\"L'annullamento cancellerà tutti i prodotti associati a questo ordine e rilascerà i prodotti nel pool disponibile.\",\"vv7kpg\":\"Annullato\",\"U7nGvl\":\"Impossibile Effettuare il Check In\",\"QyjCeq\":\"Capacità\",\"V6Q5RZ\":\"Assegnazione di Capacità creata con successo\",\"k5p8dz\":\"Assegnazione di Capacità eliminata con successo\",\"nDBs04\":\"Gestione della Capacità\",\"ddha3c\":\"Le categorie ti permettono di raggruppare i prodotti. Ad esempio, potresti avere una categoria per \\\"Biglietti\\\" e un'altra per \\\"Merchandise\\\".\",\"iS0wAT\":\"Le categorie ti aiutano a organizzare i tuoi prodotti. Questo titolo verrà visualizzato sulla pagina pubblica dell'evento.\",\"eorM7z\":\"Categorie riordinate con successo.\",\"3EXqwa\":\"Categoria Creata con Successo\",\"77/YgG\":\"Cambia Copertina\",\"GptGxg\":\"Cambia password\",\"xMDm+I\":\"Registra Ingresso\",\"p2WLr3\":[\"Registra ingresso di \",[\"0\"],\" \",[\"1\"]],\"D6+U20\":\"Registra ingresso e segna l'ordine come pagato\",\"QYLpB4\":\"Solo registrazione ingresso\",\"/Ta1d4\":\"Registra Uscita\",\"5LDT6f\":\"Dai un'occhiata a questo evento!\",\"gXcPxc\":\"Registrazione\",\"fVUbUy\":\"Lista di Registrazione creata con successo\",\"+CeSxK\":\"Lista di Registrazione eliminata con successo\",\"+hBhWk\":\"La lista di registrazione è scaduta\",\"mBsBHq\":\"La lista di registrazione non è attiva\",\"vPqpQG\":\"Lista di registrazione non trovata\",\"tejfAy\":\"Liste di Registrazione\",\"hD1ocH\":\"URL di Registrazione copiato negli appunti\",\"CNafaC\":\"Le opzioni di casella di controllo consentono selezioni multiple\",\"SpabVf\":\"Caselle di controllo\",\"CRu4lK\":\"Registrato\",\"znIg+z\":\"Pagamento\",\"1WnhCL\":\"Impostazioni di Pagamento\",\"6imsQS\":\"Cinese (Semplificato)\",\"JjkX4+\":\"Scegli un colore per lo sfondo\",\"/Jizh9\":\"Scegli un account\",\"3wV73y\":\"Città\",\"FG98gC\":\"Cancella Testo di Ricerca\",\"EYeuMv\":\"clicca qui\",\"sby+1/\":\"Clicca per copiare\",\"yz7wBu\":\"Chiudi\",\"62Ciis\":\"Chiudi barra laterale\",\"EWPtMO\":\"Codice\",\"ercTDX\":\"Il codice deve essere compreso tra 3 e 50 caratteri\",\"oqr9HB\":\"Comprimi questo prodotto quando la pagina dell'evento viene caricata inizialmente\",\"jZlrte\":\"Colore\",\"Vd+LC3\":\"Il colore deve essere un codice colore esadecimale valido. Esempio: #ffffff\",\"1HfW/F\":\"Colori\",\"VZeG/A\":\"Prossimamente\",\"yPI7n9\":\"Parole chiave separate da virgole che descrivono l'evento. Queste saranno utilizzate dai motori di ricerca per aiutare a categorizzare e indicizzare l'evento\",\"NPZqBL\":\"Completa Ordine\",\"guBeyC\":\"Completa pagamento\",\"C8HNV2\":\"Completa Pagamento\",\"qqWcBV\":\"Completato\",\"6HK5Ct\":\"Ordini completati\",\"NWVRtl\":\"Ordini Completati\",\"DwF9eH\":\"Codice Componente\",\"Tf55h7\":\"Sconto Configurato\",\"7VpPHA\":\"Conferma\",\"ZaEJZM\":\"Conferma Cambio Email\",\"yjkELF\":\"Conferma Nuova Password\",\"xnWESi\":\"Conferma password\",\"p2/GCq\":\"Conferma Password\",\"wnDgGj\":\"Conferma indirizzo email in corso...\",\"pbAk7a\":\"Connect Stripe\",\"UMGQOh\":\"Connetti con Stripe\",\"QKLP1W\":\"Connetti il tuo account Stripe per iniziare a ricevere pagamenti.\",\"5lcVkL\":\"Dettagli di Connessione\",\"yAej59\":\"Colore di sfondo del contenuto\",\"xGVfLh\":\"Continua\",\"X++RMT\":\"Testo pulsante continua\",\"AfNRFG\":\"Testo Pulsante Continua\",\"lIbwvN\":\"Continua Configurazione Evento\",\"HB22j9\":\"Continua configurazione\",\"bZEa4H\":\"Continua Configurazione Stripe Connect\",\"6V3Ea3\":\"Copiato\",\"T5rdis\":\"copiato negli appunti\",\"he3ygx\":\"Copia\",\"r2B2P8\":\"Copia URL di Check-In\",\"8+cOrS\":\"Copia dettagli a tutti i partecipanti\",\"ENCIQz\":\"Copia Link\",\"E6nRW7\":\"Copia URL\",\"JNCzPW\":\"Paese\",\"IF7RiR\":\"Copertina\",\"hYgDIe\":\"Crea\",\"b9XOHo\":[\"Crea \",[\"0\"]],\"k9RiLi\":\"Crea un Prodotto\",\"6kdXbW\":\"Crea un Codice Promozionale\",\"n5pRtF\":\"Crea un Biglietto\",\"X6sRve\":[\"Crea un account o <0>\",[\"0\"],\" per iniziare\"],\"nx+rqg\":\"crea un organizzatore\",\"ipP6Ue\":\"Crea Partecipante\",\"VwdqVy\":\"Crea Assegnazione di Capacità\",\"EwoMtl\":\"Crea categoria\",\"XletzW\":\"Crea Categoria\",\"WVbTwK\":\"Crea Lista di Check-In\",\"uN355O\":\"Crea Evento\",\"BOqY23\":\"Crea nuovo\",\"kpJAeS\":\"Crea Organizzatore\",\"a0EjD+\":\"Crea Prodotto\",\"+scrJC\":\"Crea prodotti per il tuo evento, imposta i prezzi e gestisci la quantità disponibile.\",\"sYpiZP\":\"Crea Codice Promozionale\",\"B3Mkdt\":\"Crea Domanda\",\"UKfi21\":\"Crea Tassa o Commissione\",\"d+F6q9\":\"Creato\",\"Q2lUR2\":\"Valuta\",\"DCKkhU\":\"Password Attuale\",\"uIElGP\":\"URL Maps Personalizzato\",\"UEqXyt\":\"Intervallo Personalizzato\",\"876pfE\":\"Cliente\",\"QOg2Sf\":\"Personalizza le impostazioni di email e notifiche per questo evento\",\"Y9Z/vP\":\"Personalizza i messaggi della homepage dell'evento e del checkout\",\"2E2O5H\":\"Personalizza le impostazioni varie per questo evento\",\"iJhSxe\":\"Personalizza le impostazioni SEO per questo evento\",\"KIhhpi\":\"Personalizza la pagina del tuo evento\",\"nrGWUv\":\"Personalizza la pagina del tuo evento per adattarla al tuo brand e stile.\",\"Zz6Cxn\":\"Danger zone\",\"ZQKLI1\":\"Danger Zone\",\"7p5kLi\":\"Dashboard\",\"mYGY3B\":\"Data\",\"JvUngl\":\"Data e Ora\",\"JJhRbH\":\"Capacità primo giorno\",\"cnGeoo\":\"Elimina\",\"jRJZxD\":\"Elimina Capacità\",\"VskHIx\":\"Elimina categoria\",\"Qrc8RZ\":\"Elimina Lista Check-In\",\"WHf154\":\"Elimina codice\",\"heJllm\":\"Elimina Copertina\",\"KWa0gi\":\"Elimina Immagine\",\"1l14WA\":\"Elimina prodotto\",\"IatsLx\":\"Elimina domanda\",\"Nu4oKW\":\"Descrizione\",\"YC3oXa\":\"Descrizione per il personale di check-in\",\"URmyfc\":\"Dettagli\",\"1lRT3t\":\"Disabilitando questa capacità verranno monitorate le vendite ma non verranno interrotte quando viene raggiunto il limite\",\"H6Ma8Z\":\"Sconto\",\"ypJ62C\":\"Sconto %\",\"3LtiBI\":[\"Sconto in \",[\"0\"]],\"C8JLas\":\"Tipo di Sconto\",\"1QfxQT\":\"Chiudi\",\"DZlSLn\":\"Etichetta Documento\",\"cVq+ga\":\"Non hai un account? <0>Registrati\",\"3F1nBX\":\"Donazione / Prodotto a offerta libera\",\"OvNbls\":\"Scarica .ics\",\"kodV18\":\"Scarica CSV\",\"CELKku\":\"Scarica fattura\",\"LQrXcu\":\"Scarica Fattura\",\"QIodqd\":\"Scarica Codice QR\",\"yhjU+j\":\"Scaricamento Fattura in corso\",\"uABpqP\":\"Trascina e rilascia o clicca\",\"CfKofC\":\"Selezione a tendina\",\"JzLDvy\":\"Duplica Assegnazioni di Capacità\",\"ulMxl+\":\"Duplica Liste di Check-In\",\"vi8Q/5\":\"Duplica evento\",\"3ogkAk\":\"Duplica Evento\",\"Yu6m6X\":\"Duplica Immagine di Copertina Evento\",\"+fA4C7\":\"Opzioni di Duplicazione\",\"SoiDyI\":\"Duplica Prodotti\",\"57ALrd\":\"Duplica Codici Promozionali\",\"83Hu4O\":\"Duplica Domande\",\"20144c\":\"Duplica Impostazioni\",\"7Cx5It\":\"Prevendita\",\"ePK91l\":\"Modifica\",\"N6j2JH\":[\"Modifica \",[\"0\"]],\"kBkYSa\":\"Modifica Capacità\",\"oHE9JT\":\"Modifica Assegnazione di Capacità\",\"j1Jl7s\":\"Modifica categoria\",\"FU1gvP\":\"Modifica Lista di Check-In\",\"iFgaVN\":\"Modifica Codice\",\"jrBSO1\":\"Modifica Organizzatore\",\"tdD/QN\":\"Modifica Prodotto\",\"n143Tq\":\"Modifica Categoria Prodotto\",\"9BdS63\":\"Modifica Codice Promozionale\",\"O0CE67\":\"Modifica domanda\",\"EzwCw7\":\"Modifica Domanda\",\"poTr35\":\"Modifica utente\",\"GTOcxw\":\"Modifica Utente\",\"pqFrv2\":\"es. 2.50 per $2.50\",\"3yiej1\":\"es. 23.5 per 23.5%\",\"O3oNi5\":\"Email\",\"VxYKoK\":\"Impostazioni Email e Notifiche\",\"ATGYL1\":\"Indirizzo email\",\"hzKQCy\":\"Indirizzo Email\",\"HqP6Qf\":\"Modifica email annullata con successo\",\"mISwW1\":\"Modifica email in attesa\",\"APuxIE\":\"Conferma email inviata nuovamente\",\"YaCgdO\":\"Conferma email inviata nuovamente con successo\",\"jyt+cx\":\"Messaggio piè di pagina email\",\"I6F3cp\":\"Email non verificata\",\"NTZ/NX\":\"Codice di Incorporamento\",\"4rnJq4\":\"Script di Incorporamento\",\"8oPbg1\":\"Abilita Fatturazione\",\"j6w7d/\":\"Abilita questa capacità per interrompere le vendite dei prodotti quando viene raggiunto il limite\",\"VFv2ZC\":\"Data Fine\",\"237hSL\":\"Terminato\",\"nt4UkP\":\"Eventi Terminati\",\"lYGfRP\":\"Inglese\",\"MhVoma\":\"Inserisci un importo escluse tasse e commissioni.\",\"SlfejT\":\"Errore\",\"3Z223G\":\"Errore durante la conferma dell'indirizzo email\",\"a6gga1\":\"Errore durante la conferma della modifica email\",\"5/63nR\":\"EUR\",\"0pC/y6\":\"Evento\",\"CFLUfD\":\"Evento creato con successo 🎉\",\"/dgc8E\":\"Data Evento\",\"0Zptey\":\"Impostazioni Predefinite Evento\",\"QcCPs8\":\"Dettagli Evento\",\"6fuA9p\":\"Evento duplicato con successo\",\"AEuj2m\":\"Homepage Evento\",\"Xe3XMd\":\"L'evento non è visibile al pubblico\",\"4pKXJS\":\"L'evento è visibile al pubblico\",\"ClwUUD\":\"Dettagli della sede e della location dell'evento\",\"OopDbA\":\"Pagina evento\",\"4/If97\":\"Aggiornamento stato evento fallito. Riprova più tardi\",\"btxLWj\":\"Stato evento aggiornato\",\"nMU2d3\":\"URL Evento\",\"tst44n\":\"Eventi\",\"sZg7s1\":\"Data di scadenza\",\"KnN1Tu\":\"Scade\",\"uaSvqt\":\"Data di Scadenza\",\"GS+Mus\":\"Esporta\",\"9xAp/j\":\"Impossibile annullare il partecipante\",\"ZpieFv\":\"Impossibile annullare l'ordine\",\"z6tdjE\":\"Impossibile eliminare il messaggio. Riprova.\",\"xDzTh7\":\"Impossibile scaricare la fattura. Riprova.\",\"9zSt4h\":\"Impossibile esportare i partecipanti. Riprova.\",\"2uGNuE\":\"Impossibile esportare gli ordini. Riprova.\",\"d+KKMz\":\"Impossibile caricare la Lista di Check-In\",\"ZQ15eN\":\"Impossibile reinviare l'email del biglietto\",\"ejXy+D\":\"Impossibile ordinare i prodotti\",\"PLUB/s\":\"Commissione\",\"/mfICu\":\"Commissioni\",\"LyFC7X\":\"Filtra Ordini\",\"cSev+j\":\"Filtri\",\"CVw2MU\":[\"Filtri (\",[\"activeFilterCount\"],\")\"],\"wPmXlA\":\"Primo Numero Fattura\",\"V1EGGU\":\"Nome\",\"kODvZJ\":\"Nome\",\"S+tm06\":\"Il nome deve essere compreso tra 1 e 50 caratteri\",\"1g0dC4\":\"Nome, Cognome e Indirizzo Email sono domande predefinite e sono sempre incluse nel processo di checkout.\",\"Rs/IcB\":\"Primo Utilizzo\",\"TpqW74\":\"Fisso\",\"irpUxR\":\"Importo fisso\",\"TF9opW\":\"Il flash non è disponibile su questo dispositivo\",\"UNMVei\":\"Password dimenticata?\",\"2POOFK\":\"Gratuito\",\"P/OAYJ\":\"Prodotto Gratuito\",\"vAbVy9\":\"Prodotto gratuito, nessuna informazione di pagamento richiesta\",\"nLC6tu\":\"Francese\",\"Weq9zb\":\"Generale\",\"DDcvSo\":\"Tedesco\",\"4GLxhy\":\"Primi Passi\",\"4D3rRj\":\"Torna al profilo\",\"9LCqFI\":\"Vai alla homepage dell'evento\",\"ebIDwV\":\"Google Calendar\",\"RUz8o/\":\"vendite lorde\",\"IgcAGN\":\"Vendite lorde\",\"yRg26W\":\"Vendite Lorde\",\"R4r4XO\":\"Ospiti\",\"26pGvx\":\"Hai un codice promozionale?\",\"V7yhws\":\"hello@awesome-events.com\",\"6K/IHl\":\"Ecco un esempio di come puoi utilizzare il componente nella tua applicazione.\",\"Y1SSqh\":\"Ecco il componente React che puoi utilizzare per incorporare il widget nella tua applicazione.\",\"QuhVpV\":[\"Ciao \",[\"0\"],\" 👋\"],\"Ow9Hz5\":[\"Conferenza Hi.Events \",[\"0\"]],\"verBst\":\"Centro Conferenze Hi.Events\",\"6eMEQO\":\"logo hi.events\",\"C4qOW8\":\"Nascosto dalla vista pubblica\",\"gt3Xw9\":\"domanda nascosta\",\"g3rqFe\":\"domande nascoste\",\"k3dfFD\":\"Le domande nascoste sono visibili solo all'organizzatore dell'evento e non al cliente.\",\"vLyv1R\":\"Nascondi\",\"Mkkvfd\":\"Nascondi pagina di introduzione\",\"mFn5Xz\":\"Nascondi domande nascoste\",\"YHsF9c\":\"Nascondi prodotto dopo la data di fine vendita\",\"06s3w3\":\"Nascondi prodotto prima della data di inizio vendita\",\"axVMjA\":\"Nascondi prodotto a meno che l'utente non abbia un codice promozionale applicabile\",\"ySQGHV\":\"Nascondi prodotto quando esaurito\",\"SCimta\":\"Nascondi la pagina di introduzione dalla barra laterale\",\"5xR17G\":\"Nascondi questo prodotto ai clienti\",\"Da29Y6\":\"Nascondi questa domanda\",\"fvDQhr\":\"Nascondi questo livello agli utenti\",\"lNipG+\":\"Nascondere un prodotto impedirà agli utenti di vederlo sulla pagina dell'evento.\",\"ZOBwQn\":\"Design Homepage\",\"PRuBTd\":\"Designer Homepage\",\"YjVNGZ\":\"Anteprima Homepage\",\"c3E/kw\":\"Homer\",\"8k8Njd\":\"Quanti minuti ha il cliente per completare il proprio ordine. Consigliamo almeno 15 minuti\",\"ySxKZe\":\"Quante volte può essere utilizzato questo codice?\",\"dZsDbK\":[\"Limite di caratteri HTML superato: \",[\"htmlLength\"],\"/\",[\"maxLength\"]],\"fYyXCd\":\"https://example-maps-service.com/...\",\"uOXLV3\":\"Accetto i <0>termini e condizioni\",\"sd6lr7\":\"Vorrei pagare utilizzando un metodo offline\",\"SdFlIP\":\"Vorrei pagare utilizzando un metodo online (carta di credito ecc.)\",\"93DUnd\":[\"Se non si è aperta una nuova scheda, per favore <0><1>\",[\"0\"],\".\"],\"yKdof1\":\"Se vuoto, l'indirizzo verrà utilizzato per generare un link a Google Maps\",\"UYT+c8\":\"Se abilitato, il personale di check-in può sia segnare i partecipanti come registrati sia segnare l'ordine come pagato e registrare i partecipanti. Se disabilitato, i partecipanti associati a ordini non pagati non possono essere registrati.\",\"muXhGi\":\"Se abilitato, l'organizzatore riceverà una notifica via email quando viene effettuato un nuovo ordine\",\"6fLyj/\":\"Se non hai richiesto questa modifica, cambia immediatamente la tua password.\",\"n/ZDCz\":\"Immagine eliminata con successo\",\"Mfbc2v\":\"Le dimensioni dell'immagine devono essere tra 4000px per 4000px. Con un'altezza massima di 4000px e una larghezza massima di 4000px\",\"uPEIvq\":\"L'immagine deve essere inferiore a 5MB\",\"AGZmwV\":\"Immagine caricata con successo\",\"VyUuZb\":\"URL Immagine\",\"ibi52/\":\"La larghezza dell'immagine deve essere almeno 900px e l'altezza almeno 50px\",\"NoNwIX\":\"Inattivo\",\"T0K0yl\":\"Gli utenti inattivi non possono accedere.\",\"kO44sp\":\"Includi dettagli di connessione per il tuo evento online. Questi dettagli saranno mostrati nella pagina di riepilogo dell'ordine e nella pagina del biglietto del partecipante.\",\"FlQKnG\":\"Includi tasse e commissioni nel prezzo\",\"Vi+BiW\":[\"Include \",[\"0\"],\" prodotti\"],\"lpm0+y\":\"Include 1 prodotto\",\"UiAk5P\":\"Inserisci Immagine\",\"OyLdaz\":\"Invito reinviato!\",\"HE6KcK\":\"Invito revocato!\",\"SQKPvQ\":\"Invita Utente\",\"bKOYkd\":\"Fattura scaricata con successo\",\"alD1+n\":\"Note Fattura\",\"kOtCs2\":\"Numerazione Fattura\",\"UZ2GSZ\":\"Impostazioni Fattura\",\"PgdQrx\":\"Emetti rimborso\",\"HX5SVx\":\"Articolo\",\"KFXip/\":\"John\",\"XcgRvb\":\"Johnson\",\"87a/t/\":\"Etichetta\",\"vXIe7J\":\"Lingua\",\"2LMsOq\":\"Ultimi 12 mesi\",\"vfe90m\":\"Ultimi 14 giorni\",\"aK4uBd\":\"Ultime 24 ore\",\"uq2BmQ\":\"Ultimi 30 giorni\",\"bB6Ram\":\"Ultime 48 ore\",\"VlnB7s\":\"Ultimi 6 mesi\",\"ct2SYD\":\"Ultimi 7 giorni\",\"XgOuA7\":\"Ultimi 90 giorni\",\"I3yitW\":\"Ultimo accesso\",\"1ZaQUH\":\"Cognome\",\"UXBCwc\":\"Cognome\",\"tKCBU0\":\"Ultimo Utilizzo\",\"tITjB1\":\"Learn more about Stripe\",\"enV0g0\":\"Lascia vuoto per utilizzare la parola predefinita \\\"Fattura\\\"\",\"vR92Yn\":\"Iniziamo creando il tuo primo organizzatore\",\"Z3FXyt\":\"Caricamento...\",\"wJijgU\":\"Luogo\",\"sQia9P\":\"Accedi\",\"zUDyah\":\"Accesso in corso\",\"z0t9bb\":\"Login\",\"nOhz3x\":\"Esci\",\"F2jAFv\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nam placerat elementum...\",\"NJahlc\":\"Rendi obbligatorio l'indirizzo di fatturazione durante il checkout\",\"MU3ijv\":\"Rendi obbligatoria questa domanda\",\"wckWOP\":\"Gestisci\",\"onpJrA\":\"Gestisci partecipante\",\"n4SpU5\":\"Gestisci evento\",\"WVgSTy\":\"Gestisci ordine\",\"1MAvUY\":\"Gestisci le impostazioni di pagamento e fatturazione per questo evento.\",\"cQrNR3\":\"Gestisci Profilo\",\"AtXtSw\":\"Gestisci tasse e commissioni che possono essere applicate ai tuoi prodotti\",\"ophZVW\":\"Gestisci biglietti\",\"DdHfeW\":\"Gestisci i dettagli del tuo account e le impostazioni predefinite\",\"S+UjNL\":\"Manage your Stripe payment details\",\"BfucwY\":\"Gestisci i tuoi utenti e le loro autorizzazioni\",\"1m+YT2\":\"Le domande obbligatorie devono essere risposte prima che il cliente possa procedere al checkout.\",\"Dim4LO\":\"Aggiungi manualmente un Partecipante\",\"e4KdjJ\":\"Aggiungi Manualmente Partecipante\",\"vFjEnF\":\"Segna come pagato\",\"g9dPPQ\":\"Massimo Per Ordine\",\"l5OcwO\":\"Messaggio al partecipante\",\"Gv5AMu\":\"Messaggio ai Partecipanti\",\"oUCR3c\":\"Message attendees with specific products\",\"Lvi+gV\":\"Messaggio all'acquirente\",\"tNZzFb\":\"Contenuto del Messaggio\",\"lYDV/s\":\"Invia messaggio ai singoli partecipanti\",\"V7DYWd\":\"Messaggio Inviato\",\"t7TeQU\":\"Messaggi\",\"xFRMlO\":\"Minimo Per Ordine\",\"QYcUEf\":\"Prezzo Minimo\",\"RDie0n\":\"Varie\",\"mYLhkl\":\"Impostazioni Varie\",\"KYveV8\":\"Casella di testo multilinea\",\"VD0iA7\":\"Opzioni di prezzo multiple. Perfetto per prodotti early bird ecc.\",\"/bhMdO\":\"La mia fantastica descrizione dell'evento...\",\"vX8/tc\":\"Il mio fantastico titolo dell'evento...\",\"hKtWk2\":\"Il Mio Profilo\",\"fj5byd\":\"N/D\",\"pRjx4L\":\"Nam placerat elementum...\",\"6YtxFj\":\"Nome\",\"hVuv90\":\"Il nome deve essere inferiore a 150 caratteri\",\"AIUkyF\":\"Vai al Partecipante\",\"qqeAJM\":\"Mai\",\"7vhWI8\":\"Nuova Password\",\"1UzENP\":\"No\",\"eRblWH\":[\"No \",[\"0\"],\" available.\"],\"LNWHXb\":\"Nessun evento archiviato da mostrare.\",\"q2LEDV\":\"Nessun partecipante trovato per questo ordine.\",\"zlHa5R\":\"Nessun partecipante è stato aggiunto a questo ordine.\",\"Wjz5KP\":\"Nessun Partecipante da mostrare\",\"Razen5\":\"Nessun partecipante potrà effettuare il check-in prima di questa data utilizzando questa lista\",\"XUfgCI\":\"Nessuna Assegnazione di Capacità\",\"a/gMx2\":\"Nessuna Lista di Check-In\",\"tMFDem\":\"Nessun dato disponibile\",\"6Z/F61\":\"Nessun dato da mostrare. Seleziona un intervallo di date\",\"fFeCKc\":\"Nessuno Sconto\",\"HFucK5\":\"Nessun evento terminato da mostrare.\",\"yAlJXG\":\"Nessun evento da mostrare\",\"GqvPcv\":\"Nessun filtro disponibile\",\"KPWxKD\":\"Nessun messaggio da mostrare\",\"J2LkP8\":\"Nessun ordine da mostrare\",\"RBXXtB\":\"Nessun metodo di pagamento è attualmente disponibile. Contatta l'organizzatore dell'evento per assistenza.\",\"ZWEfBE\":\"Nessun Pagamento Richiesto\",\"ZPoHOn\":\"Nessun prodotto associato a questo partecipante.\",\"Ya1JhR\":\"Nessun prodotto disponibile in questa categoria.\",\"FTfObB\":\"Ancora Nessun Prodotto\",\"+Y976X\":\"Nessun Codice Promozionale da mostrare\",\"MAavyl\":\"Nessuna domanda risposta da questo partecipante.\",\"SnlQeq\":\"Nessuna domanda è stata posta per questo ordine.\",\"Ev2r9A\":\"Nessun risultato\",\"gk5uwN\":\"Nessun Risultato di Ricerca\",\"RHyZUL\":\"Nessun risultato di ricerca.\",\"RY2eP1\":\"Nessuna Tassa o Commissione è stata aggiunta.\",\"EdQY6l\":\"Nessuno\",\"OJx3wK\":\"Non disponibile\",\"Scbrsn\":\"Non in Vendita\",\"1DBGsz\":\"Note\",\"jtrY3S\":\"Ancora niente da mostrare\",\"hFwWnI\":\"Impostazioni Notifiche\",\"xXqEPO\":\"Notifica all'acquirente il rimborso\",\"YpN29s\":\"Notifica all'organizzatore i nuovi ordini\",\"qeQhNj\":\"Ora creiamo il tuo primo evento\",\"omyBS0\":\"Numero di giorni consentiti per il pagamento (lasciare vuoto per omettere i termini di pagamento dalle fatture)\",\"n86jmj\":\"Prefisso Numero\",\"mwe+2z\":\"Gli ordini offline non sono riflessi nelle statistiche dell'evento finché l'ordine non viene contrassegnato come pagato.\",\"dWBrJX\":\"Pagamento offline fallito. Riprova o contatta l'organizzatore dell'evento.\",\"fcnqjw\":\"Istruzioni per il Pagamento Offline\",\"+eZ7dp\":\"Pagamenti Offline\",\"ojDQlR\":\"Informazioni sui Pagamenti Offline\",\"u5oO/W\":\"Impostazioni Pagamenti Offline\",\"2NPDz1\":\"In vendita\",\"Ldu/RI\":\"In Vendita\",\"Ug4SfW\":\"Una volta creato un evento, lo vedrai qui.\",\"ZxnK5C\":\"Una volta che inizi a raccogliere dati, li vedrai qui.\",\"PnSzEc\":\"Quando sei pronto, rendi attivo il tuo evento e inizia a vendere prodotti.\",\"J6n7sl\":\"In Corso\",\"z+nuVJ\":\"Evento online\",\"WKHW0N\":\"Dettagli Evento Online\",\"/xkmKX\":\"Solo le email importanti, direttamente correlate a questo evento, dovrebbero essere inviate utilizzando questo modulo.\\nQualsiasi uso improprio, incluso l'invio di email promozionali, porterà al ban immediato dell'account.\",\"Qqqrwa\":\"Apri Pagina di Check-In\",\"OdnLE4\":\"Apri barra laterale\",\"ZZEYpT\":[\"Opzione \",[\"i\"]],\"oPknTP\":\"Informazioni aggiuntive opzionali da visualizzare su tutte le fatture (ad es. termini di pagamento, penali per ritardo, politica di reso)\",\"OrXJBY\":\"Prefisso opzionale per i numeri di fattura (ad es., FATT-)\",\"0zpgxV\":\"Opzioni\",\"BzEFor\":\"o\",\"UYUgdb\":\"Ordine\",\"mm+eaX\":\"Order #\",\"B3gPuX\":\"Ordine Annullato\",\"SIbded\":\"Ordine Completato\",\"q/CcwE\":\"Data Ordine\",\"Tol4BF\":\"Dettagli Ordine\",\"WbImlQ\":\"L'ordine è stato annullato e il proprietario dell'ordine è stato avvisato.\",\"nAn4Oe\":\"Ordine contrassegnato come pagato\",\"uzEfRz\":\"Note Ordine\",\"VCOi7U\":\"Domande ordine\",\"TPoYsF\":\"Riferimento Ordine\",\"acIJ41\":\"Stato Ordine\",\"GX6dZv\":\"Riepilogo Ordine\",\"tDTq0D\":\"Timeout ordine\",\"1h+RBg\":\"Ordini\",\"3y+V4p\":\"Indirizzo Organizzazione\",\"GVcaW6\":\"Dettagli Organizzazione\",\"nfnm9D\":\"Nome Organizzazione\",\"G5RhpL\":\"Organizzatore\",\"mYygCM\":\"L'organizzatore è obbligatorio\",\"Pa6G7v\":\"Nome Organizzatore\",\"l894xP\":\"Gli organizzatori possono gestire solo eventi e prodotti. Non possono gestire utenti, impostazioni dell'account o informazioni di fatturazione.\",\"fdjq4c\":\"Spaziatura\",\"ErggF8\":\"Colore sfondo pagina\",\"8F1i42\":\"Pagina non trovata\",\"QbrUIo\":\"Visualizzazioni pagina\",\"6D8ePg\":\"pagina.\",\"IkGIz8\":\"pagato\",\"HVW65c\":\"Prodotto a Pagamento\",\"ZfxaB4\":\"Parzialmente Rimborsato\",\"8ZsakT\":\"Password\",\"TUJAyx\":\"La password deve essere di almeno 8 caratteri\",\"vwGkYB\":\"La password deve essere di almeno 8 caratteri\",\"BLTZ42\":\"Password reimpostata con successo. Accedi con la tua nuova password.\",\"f7SUun\":\"Le password non sono uguali\",\"aEDp5C\":\"Incolla questo dove vuoi che appaia il widget.\",\"+23bI/\":\"Patrick\",\"iAS9f2\":\"patrick@acme.com\",\"621rYf\":\"Pagamento\",\"Lg+ewC\":\"Pagamento e Fatturazione\",\"DZjk8u\":\"Impostazioni Pagamento e Fatturazione\",\"lflimf\":\"Periodo di Scadenza Pagamento\",\"JhtZAK\":\"Pagamento Fallito\",\"JEdsvQ\":\"Istruzioni di Pagamento\",\"bLB3MJ\":\"Metodi di Pagamento\",\"QzmQBG\":\"Fornitore di pagamento\",\"lsxOPC\":\"Pagamento Ricevuto\",\"wJTzyi\":\"Stato Pagamento\",\"xgav5v\":\"Pagamento riuscito!\",\"R29lO5\":\"Termini di Pagamento\",\"/roQKz\":\"Percentuale\",\"vPJ1FI\":\"Importo Percentuale\",\"xdA9ud\":\"Inserisci questo nel tag del tuo sito web.\",\"blK94r\":\"Aggiungi almeno un'opzione\",\"FJ9Yat\":\"Verifica che le informazioni fornite siano corrette\",\"TkQVup\":\"Controlla la tua email e password e riprova\",\"sMiGXD\":\"Verifica che la tua email sia valida\",\"Ajavq0\":\"Controlla la tua email per confermare il tuo indirizzo email\",\"MdfrBE\":\"Completa il modulo sottostante per accettare il tuo invito\",\"b1Jvg+\":\"Continua nella nuova scheda\",\"hcX103\":\"Crea un prodotto\",\"cdR8d6\":\"Crea un biglietto\",\"x2mjl4\":\"Inserisci un URL valido che punti a un'immagine.\",\"HnNept\":\"Inserisci la tua nuova password\",\"5FSIzj\":\"Nota Bene\",\"C63rRe\":\"Torna alla pagina dell'evento per ricominciare.\",\"pJLvdS\":\"Seleziona\",\"Ewir4O\":\"Seleziona almeno un prodotto\",\"igBrCH\":\"Verifica il tuo indirizzo email per accedere a tutte le funzionalità\",\"/IzmnP\":\"Attendi mentre prepariamo la tua fattura...\",\"MOERNx\":\"Portoghese\",\"qCJyMx\":\"Messaggio post checkout\",\"g2UNkE\":\"Offerto da\",\"Rs7IQv\":\"Messaggio pre checkout\",\"rdUucN\":\"Anteprima\",\"a7u1N9\":\"Prezzo\",\"CmoB9j\":\"Modalità visualizzazione prezzo\",\"BI7D9d\":\"Prezzo non impostato\",\"Q8PWaJ\":\"Livelli di prezzo\",\"q6XHL1\":\"Tipo di Prezzo\",\"6RmHKN\":\"Colore Primario\",\"G/ZwV1\":\"Colore Primario\",\"8cBtvm\":\"Colore Testo Primario\",\"BZz12Q\":\"Stampa\",\"MT7dxz\":\"Stampa Tutti i Biglietti\",\"DKwDdj\":\"Stampa Biglietti\",\"K47k8R\":\"Prodotto\",\"1JwlHk\":\"Categoria Prodotto\",\"U61sAj\":\"Categoria prodotto aggiornata con successo.\",\"1USFWA\":\"Prodotto eliminato con successo\",\"4Y2FZT\":\"Tipo di Prezzo Prodotto\",\"mFwX0d\":\"Domande prodotto\",\"Lu+kBU\":\"Vendite Prodotti\",\"U/R4Ng\":\"Livello Prodotto\",\"sJsr1h\":\"Tipo di Prodotto\",\"o1zPwM\":\"Anteprima Widget Prodotto\",\"ktyvbu\":\"Prodotto/i\",\"N0qXpE\":\"Prodotti\",\"ggqAiw\":\"prodotti venduti\",\"Vla0Bo\":\"Prodotti venduti\",\"/u4DIx\":\"Prodotti Venduti\",\"DJQEZc\":\"Prodotti ordinati con successo\",\"vERlcd\":\"Profilo\",\"kUlL8W\":\"Profilo aggiornato con successo\",\"cl5WYc\":[\"Codice promo \",[\"promo_code\"],\" applicato\"],\"P5sgAk\":\"Codice Promo\",\"yKWfjC\":\"Pagina Codice Promo\",\"RVb8Fo\":\"Codici Promo\",\"BZ9GWa\":\"I codici promo possono essere utilizzati per offrire sconti, accesso in prevendita o fornire accesso speciale al tuo evento.\",\"OP094m\":\"Report Codici Promo\",\"4kyDD5\":\"Fornisci contesto aggiuntivo o istruzioni per questa domanda. Usa questo campo per aggiungere termini\\ne condizioni, linee guida o qualsiasi informazione importante che i partecipanti devono conoscere prima di rispondere.\",\"toutGW\":\"Codice QR\",\"LkMOWF\":\"Quantità Disponibile\",\"oCLG0M\":\"Quantità Venduta\",\"XKJuAX\":\"Domanda eliminata\",\"avf0gk\":\"Descrizione Domanda\",\"oQvMPn\":\"Titolo Domanda\",\"enzGAL\":\"Domande\",\"ROv2ZT\":\"Domande e Risposte\",\"K885Eq\":\"Domande ordinate con successo\",\"OMJ035\":\"Opzione Radio\",\"C4TjpG\":\"Leggi meno\",\"I3QpvQ\":\"Destinatario\",\"N2C89m\":\"Riferimento\",\"gxFu7d\":[\"Importo rimborso (\",[\"0\"],\")\"],\"WZbCR3\":\"Rimborso Fallito\",\"n10yGu\":\"Rimborsa ordine\",\"zPH6gp\":\"Rimborsa Ordine\",\"RpwiYC\":\"Rimborso in Attesa\",\"xHpVRl\":\"Stato Rimborso\",\"/BI0y9\":\"Rimborsato\",\"fgLNSM\":\"Registrati\",\"9+8Vez\":\"Utilizzi Rimanenti\",\"tasfos\":\"rimuovi\",\"t/YqKh\":\"Rimuovi\",\"t9yxlZ\":\"Report\",\"prZGMe\":\"Richiedi Indirizzo di Fatturazione\",\"EGm34e\":\"Reinvia email di conferma\",\"lnrkNz\":\"Reinvia conferma email\",\"wIa8Qe\":\"Reinvia invito\",\"VeKsnD\":\"Reinvia email ordine\",\"dFuEhO\":\"Reinvia email biglietto\",\"o6+Y6d\":\"Reinvio in corso...\",\"OfhWJH\":\"Reimposta\",\"RfwZxd\":\"Reimposta password\",\"KbS2K9\":\"Reimposta Password\",\"e99fHm\":\"Ripristina evento\",\"vtc20Z\":\"Torna alla pagina dell'evento\",\"s8v9hq\":\"Torna alla Pagina dell'Evento\",\"8YBH95\":\"Ricavi\",\"PO/sOY\":\"Revoca invito\",\"GDvlUT\":\"Ruolo\",\"ELa4O9\":\"Data Fine Vendita\",\"5uo5eP\":\"Vendita terminata\",\"Qm5XkZ\":\"Data Inizio Vendita\",\"hBsw5C\":\"Vendite terminate\",\"kpAzPe\":\"Inizio vendite\",\"P/wEOX\":\"San Francisco\",\"tfDRzk\":\"Salva\",\"IUwGEM\":\"Salva Modifiche\",\"U65fiW\":\"Salva Organizzatore\",\"UGT5vp\":\"Salva Impostazioni\",\"ovB7m2\":\"Scansiona Codice QR\",\"EEU0+z\":\"Scansiona questo codice QR per accedere alla pagina dell'evento o condividerla con altri\",\"W4kWXJ\":\"Cerca per nome partecipante, email o numero ordine...\",\"+pr/FY\":\"Cerca per nome evento...\",\"3zRbWw\":\"Cerca per nome, email o numero ordine...\",\"L22Tdf\":\"Cerca per nome, numero ordine, numero partecipante o email...\",\"BiYOdA\":\"Cerca per nome...\",\"YEjitp\":\"Cerca per oggetto o contenuto...\",\"Pjsch9\":\"Cerca assegnazioni di capacità...\",\"r9M1hc\":\"Cerca liste di check-in...\",\"+0Yy2U\":\"Cerca prodotti\",\"YIix5Y\":\"Cerca...\",\"OeW+DS\":\"Colore secondario\",\"DnXcDK\":\"Colore Secondario\",\"cZF6em\":\"Colore testo secondario\",\"ZIgYeg\":\"Colore Testo Secondario\",\"02ePaq\":[\"Seleziona \",[\"0\"]],\"QuNKRX\":\"Seleziona Fotocamera\",\"9FQEn8\":\"Seleziona categoria...\",\"kWI/37\":\"Seleziona organizzatore\",\"ixIx1f\":\"Seleziona Prodotto\",\"3oSV95\":\"Seleziona Livello Prodotto\",\"C4Y1hA\":\"Seleziona prodotti\",\"hAjDQy\":\"Seleziona stato\",\"QYARw/\":\"Seleziona Biglietto\",\"OMX4tH\":\"Seleziona biglietti\",\"DrwwNd\":\"Seleziona periodo di tempo\",\"O/7I0o\":\"Seleziona...\",\"JlFcis\":\"Invia\",\"qKWv5N\":[\"Invia una copia a <0>\",[\"0\"],\"\"],\"RktTWf\":\"Invia un messaggio\",\"/mQ/tD\":\"Invia come test. Questo invierà il messaggio al tuo indirizzo email invece che ai destinatari.\",\"M/WIer\":\"Invia Messaggio\",\"D7ZemV\":\"Invia email di conferma ordine e biglietto\",\"v1rRtW\":\"Invia Test\",\"4Ml90q\":\"SEO\",\"j1VfcT\":\"Descrizione SEO\",\"/SIY6o\":\"Parole Chiave SEO\",\"GfWoKv\":\"Impostazioni SEO\",\"rXngLf\":\"Titolo SEO\",\"/jZOZa\":\"Commissione di Servizio\",\"Bj/QGQ\":\"Imposta un prezzo minimo e permetti agli utenti di pagare di più se lo desiderano\",\"L0pJmz\":\"Imposta il numero iniziale per la numerazione delle fatture. Questo non può essere modificato una volta che le fatture sono state generate.\",\"nYNT+5\":\"Configura il tuo evento\",\"A8iqfq\":\"Metti online il tuo evento\",\"Tz0i8g\":\"Impostazioni\",\"Z8lGw6\":\"Condividi\",\"B2V3cA\":\"Condividi Evento\",\"17Fd7X\":\"Condividi su Facebook\",\"x7i6H+\":\"Condividi su LinkedIn\",\"zziQd8\":\"Condividi su Pinterest\",\"/TgBEk\":\"Condividi su Reddit\",\"0Wlk5F\":\"Condividi sui Social\",\"on+mNS\":\"Condividi su Telegram\",\"PcmR+m\":\"Condividi su WhatsApp\",\"/5b1iZ\":\"Condividi su X\",\"n/T2KI\":\"Condividi via Email\",\"8vETh9\":\"Mostra\",\"V0SbFp\":\"Mostra quantità prodotto disponibile\",\"qDsmzu\":\"Mostra domande nascoste\",\"fMPkxb\":\"Mostra altro\",\"izwOOD\":\"Mostra tasse e commissioni separatamente\",\"1SbbH8\":\"Mostrato al cliente dopo il checkout, nella pagina di riepilogo dell'ordine.\",\"YfHZv0\":\"Mostrato al cliente prima del checkout\",\"CBBcly\":\"Mostra i campi comuni dell'indirizzo, incluso il paese\",\"yTnnYg\":\"Simpson\",\"TNaCfq\":\"Casella di testo a riga singola\",\"+P0Cn2\":\"Salta questo passaggio\",\"YSEnLE\":\"Smith\",\"lgFfeO\":\"Esaurito\",\"Mi1rVn\":\"Esaurito\",\"nwtY4N\":\"Qualcosa è andato storto\",\"GRChTw\":\"Qualcosa è andato storto durante l'eliminazione della Tassa o Commissione\",\"YHFrbe\":\"Qualcosa è andato storto! Riprova\",\"kf83Ld\":\"Qualcosa è andato storto.\",\"fWsBTs\":\"Qualcosa è andato storto. Riprova.\",\"F6YahU\":\"Spiacenti, qualcosa è andato storto. Riavvia il processo di checkout.\",\"KWgppI\":\"Spiacenti, qualcosa è andato storto durante il caricamento di questa pagina.\",\"/TCOIK\":\"Spiacenti, questo ordine non esiste più.\",\"6a/UJE\":\"Spiacenti, questo codice promo non è riconosciuto\",\"65A04M\":\"Spagnolo\",\"mFuBqb\":\"Prodotto standard con prezzo fisso\",\"D3iCkb\":\"Data Inizio\",\"/2by1f\":\"Stato o Regione\",\"uAQUqI\":\"Stato\",\"4HXezG\":\"Stripe\",\"WbopAG\":\"I pagamenti Stripe non sono abilitati per questo evento.\",\"UJmAAK\":\"Oggetto\",\"X2rrlw\":\"Subtotale\",\"zzDlyQ\":\"Successo\",\"b0HJ45\":[\"Successo! \",[\"0\"],\" riceverà un'email a breve.\"],\"BJIEiF\":[\"Partecipante \",[\"0\"],\" con successo\"],\"OtgNFx\":\"Indirizzo email confermato con successo\",\"IKwyaF\":\"Modifica email confermata con successo\",\"zLmvhE\":\"Partecipante creato con successo\",\"gP22tw\":\"Prodotto Creato con Successo\",\"9mZEgt\":\"Codice Promo Creato con Successo\",\"aIA9C4\":\"Domanda Creata con Successo\",\"J3RJSZ\":\"Partecipante aggiornato con successo\",\"3suLF0\":\"Assegnazione Capacità aggiornata con successo\",\"Z+rnth\":\"Lista Check-In aggiornata con successo\",\"vzJenu\":\"Impostazioni Email Aggiornate con Successo\",\"7kOMfV\":\"Evento Aggiornato con Successo\",\"G0KW+e\":\"Design Homepage Aggiornato con Successo\",\"k9m6/E\":\"Impostazioni Homepage Aggiornate con Successo\",\"y/NR6s\":\"Posizione Aggiornata con Successo\",\"73nxDO\":\"Impostazioni Varie Aggiornate con Successo\",\"4H80qv\":\"Ordine aggiornato con successo\",\"6xCBVN\":\"Impostazioni di Pagamento e Fatturazione Aggiornate con Successo\",\"1Ycaad\":\"Prodotto aggiornato con successo\",\"70dYC8\":\"Codice Promo Aggiornato con Successo\",\"F+pJnL\":\"Impostazioni SEO Aggiornate con Successo\",\"DXZRk5\":\"Suite 100\",\"GNcfRk\":\"Email di Supporto\",\"uRfugr\":\"T-shirt\",\"JpohL9\":\"Tassa\",\"geUFpZ\":\"Tasse e Commissioni\",\"dFHcIn\":\"Dettagli Fiscali\",\"wQzCPX\":\"Informazioni fiscali da mostrare in fondo a tutte le fatture (es. numero di partita IVA, registrazione fiscale)\",\"0RXCDo\":\"Tassa o Commissione eliminata con successo\",\"ZowkxF\":\"Tasse\",\"qu6/03\":\"Tasse e Commissioni\",\"gypigA\":\"Quel codice promo non è valido\",\"5ShqeM\":\"La lista di check-in che stai cercando non esiste.\",\"QXlz+n\":\"La valuta predefinita per i tuoi eventi.\",\"mnafgQ\":\"Il fuso orario predefinito per i tuoi eventi.\",\"o7s5FA\":\"La lingua in cui il partecipante riceverà le email.\",\"NlfnUd\":\"Il link che hai cliccato non è valido.\",\"HsFnrk\":[\"Il numero massimo di prodotti per \",[\"0\"],\"è \",[\"1\"]],\"TSAiPM\":\"La pagina che stai cercando non esiste\",\"MSmKHn\":\"Il prezzo mostrato al cliente includerà tasse e commissioni.\",\"6zQOg1\":\"Il prezzo mostrato al cliente non includerà tasse e commissioni. Saranno mostrate separatamente\",\"ne/9Ur\":\"Le impostazioni di stile che scegli si applicano solo all'HTML copiato e non saranno memorizzate.\",\"vQkyB3\":\"Le tasse e commissioni da applicare a questo prodotto. Puoi creare nuove tasse e commissioni nella\",\"esY5SG\":\"Il titolo dell'evento che verrà visualizzato nei risultati dei motori di ricerca e quando si condivide sui social media. Per impostazione predefinita, verrà utilizzato il titolo dell'evento\",\"wDx3FF\":\"Non ci sono prodotti disponibili per questo evento\",\"pNgdBv\":\"Non ci sono prodotti disponibili in questa categoria\",\"rMcHYt\":\"C'è un rimborso in attesa. Attendi che sia completato prima di richiedere un altro rimborso.\",\"F89D36\":\"Si è verificato un errore nel contrassegnare l'ordine come pagato\",\"68Axnm\":\"Si è verificato un errore durante l'elaborazione della tua richiesta. Riprova.\",\"mVKOW6\":\"Si è verificato un errore durante l'invio del tuo messaggio\",\"AhBPHd\":\"Questi dettagli saranno mostrati solo se l'ordine è completato con successo. Gli ordini in attesa di pagamento non mostreranno questo messaggio.\",\"Pc/Wtj\":\"Questo partecipante ha un ordine non pagato.\",\"mf3FrP\":\"Questa categoria non ha ancora prodotti.\",\"8QH2Il\":\"Questa categoria è nascosta alla vista pubblica\",\"xxv3BZ\":\"Questa lista di check-in è scaduta\",\"Sa7w7S\":\"Questa lista di check-in è scaduta e non è più disponibile per i check-in.\",\"Uicx2U\":\"Questa lista di check-in è attiva\",\"1k0Mp4\":\"Questa lista di check-in non è ancora attiva\",\"K6fmBI\":\"Questa lista di check-in non è ancora attiva e non è disponibile per i check-in.\",\"t/ePFj\":\"Questa descrizione sarà mostrata al personale di check-in\",\"MLTkH7\":\"Questa email non è promozionale ed è direttamente correlata all'evento.\",\"2eIpBM\":\"This event is not available at the moment. Please check back later.\",\"Z6LdQU\":\"This event is not available.\",\"MMd2TJ\":\"Queste informazioni saranno mostrate nella pagina di pagamento, nella pagina di riepilogo dell'ordine e nell'email di conferma dell'ordine.\",\"XAHqAg\":\"Questo è un prodotto generico, come una maglietta o una tazza. Non verrà emesso alcun biglietto\",\"CNk/ro\":\"Questo è un evento online\",\"FwXnJd\":\"Questa lista non sarà più disponibile per i check-in dopo questa data\",\"cHO4ec\":\"Questo messaggio sarà incluso nel piè di pagina di tutte le email inviate da questo evento\",\"55i7Fa\":\"Questo messaggio sarà mostrato solo se l'ordine è completato con successo. Gli ordini in attesa di pagamento non mostreranno questo messaggio\",\"RjwlZt\":\"Questo ordine è già stato pagato.\",\"5K8REg\":\"Questo ordine è già stato rimborsato.\",\"OiQMhP\":\"Questo ordine è stato annullato\",\"YyEJij\":\"Questo ordine è stato annullato.\",\"Q0zd4P\":\"Questo ordine è scaduto. Per favore ricomincia.\",\"HILpDX\":\"Questo ordine è in attesa di pagamento\",\"BdYtn9\":\"Questo ordine è completo\",\"e3uMJH\":\"Questo ordine è completo.\",\"YNKXOK\":\"Questo ordine è in elaborazione.\",\"yPZN4i\":\"Questa pagina dell'ordine non è più disponibile.\",\"i0TtkR\":\"Questo sovrascrive tutte le impostazioni di visibilità e nasconderà il prodotto a tutti i clienti.\",\"cRRc+F\":\"Questo prodotto non può essere eliminato perché è associato a un ordine. Puoi invece nasconderlo.\",\"3Kzsk7\":\"Questo prodotto è un biglietto. Agli acquirenti verrà emesso un biglietto al momento dell'acquisto\",\"0fT4x3\":\"Questo prodotto è nascosto alla vista pubblica\",\"Y/x1MZ\":\"Questo prodotto è nascosto a meno che non sia oggetto di un Codice Promo\",\"Qt7RBu\":\"Questa domanda è visibile solo all'organizzatore dell'evento\",\"os29v1\":\"Questo link per reimpostare la password non è valido o è scaduto.\",\"IV9xTT\":\"Questo utente non è attivo, poiché non ha accettato il suo invito.\",\"5AnPaO\":\"biglietto\",\"kjAL4v\":\"Biglietto\",\"dtGC3q\":\"Email del biglietto reinviata al partecipante\",\"54q0zp\":\"Biglietti per\",\"xN9AhL\":[\"Livello \",[\"0\"]],\"jZj9y9\":\"Prodotto a Livelli\",\"8wITQA\":\"I prodotti a livelli ti permettono di offrire più opzioni di prezzo per lo stesso prodotto. È perfetto per prodotti in prevendita o per offrire diverse opzioni di prezzo per diversi gruppi di persone.\",\"nn3mSR\":\"Tempo rimasto:\",\"s/0RpH\":\"Volte utilizzato\",\"y55eMd\":\"Volte Utilizzato\",\"40Gx0U\":\"Fuso orario\",\"oDGm7V\":\"SUGGERIMENTO\",\"MHrjPM\":\"Titolo\",\"xdA/+p\":\"Strumenti\",\"72c5Qo\":\"Totale\",\"YXx+fG\":\"Totale Prima degli Sconti\",\"NRWNfv\":\"Importo Totale Sconto\",\"BxsfMK\":\"Commissioni Totali\",\"2bR+8v\":\"Vendite Lorde Totali\",\"mpB/d9\":\"Importo totale ordine\",\"m3FM1g\":\"Totale rimborsato\",\"jEbkcB\":\"Totale Rimborsato\",\"GBBIy+\":\"Totale rimanente\",\"/SgoNA\":\"Tasse Totali\",\"+zy2Nq\":\"Tipo\",\"FMdMfZ\":\"Impossibile registrare il partecipante\",\"bPWBLL\":\"Impossibile registrare l'uscita del partecipante\",\"9+P7zk\":\"Impossibile creare il prodotto. Controlla i tuoi dati\",\"WLxtFC\":\"Impossibile creare il prodotto. Controlla i tuoi dati\",\"/cSMqv\":\"Impossibile creare la domanda. Controlla i tuoi dati\",\"MH/lj8\":\"Impossibile aggiornare la domanda. Controlla i tuoi dati\",\"nnfSdK\":\"Clienti Unici\",\"Mqy/Zy\":\"Stati Uniti\",\"NIuIk1\":\"Illimitato\",\"/p9Fhq\":\"Disponibilità illimitata\",\"E0q9qH\":\"Utilizzi illimitati consentiti\",\"h10Wm5\":\"Ordine Non Pagato\",\"ia8YsC\":\"In Arrivo\",\"TlEeFv\":\"Eventi in Arrivo\",\"L/gNNk\":[\"Aggiorna \",[\"0\"]],\"+qqX74\":\"Aggiorna nome, descrizione e date dell'evento\",\"vXPSuB\":\"Aggiorna profilo\",\"BNBfrU\":\"Carica Copertina\",\"IagCbF\":\"URL\",\"UtDm3q\":\"URL copiato negli appunti\",\"e5lF64\":\"Esempio di Utilizzo\",\"fiV0xj\":\"Limite di Utilizzo\",\"sGEOe4\":\"Usa una versione sfocata dell'immagine di copertina come sfondo\",\"OadMRm\":\"Usa immagine di copertina\",\"7PzzBU\":\"Utente\",\"yDOdwQ\":\"Gestione Utenti\",\"Sxm8rQ\":\"Utenti\",\"VEsDvU\":\"Gli utenti possono modificare la loro email in <0>Impostazioni Profilo\",\"vgwVkd\":\"UTC\",\"khBZkl\":\"IVA\",\"E/9LUk\":\"Nome della Sede\",\"jpctdh\":\"Visualizza\",\"Pte1Hv\":\"Visualizza Dettagli Partecipante\",\"/5PEQz\":\"Visualizza pagina evento\",\"fFornT\":\"Visualizza messaggio completo\",\"YIsEhQ\":\"Visualizza mappa\",\"Ep3VfY\":\"Visualizza su Google Maps\",\"Y8s4f6\":\"Visualizza dettagli ordine\",\"QIWCnW\":\"Lista check-in VIP\",\"tF+VVr\":\"Biglietto VIP\",\"2q/Q7x\":\"Visibilità\",\"vmOFL/\":\"Non è stato possibile elaborare il tuo pagamento. Riprova o contatta l'assistenza.\",\"45Srzt\":\"Non è stato possibile eliminare la categoria. Riprova.\",\"/DNy62\":[\"Non abbiamo trovato biglietti corrispondenti a \",[\"0\"]],\"1E0vyy\":\"Non è stato possibile caricare i dati. Riprova.\",\"NmpGKr\":\"Non è stato possibile riordinare le categorie. Riprova.\",\"VGioT0\":\"Consigliamo dimensioni di 2160px per 1080px e una dimensione massima del file di 5MB\",\"b9UB/w\":\"We use Stripe to process payments. Connect your Stripe account to start receiving payments.\",\"01WH0a\":\"Non siamo riusciti a confermare il tuo pagamento. Riprova o contatta l'assistenza.\",\"Gspam9\":\"Stiamo elaborando il tuo ordine. Attendere prego...\",\"LuY52w\":\"Benvenuto a bordo! Accedi per continuare.\",\"dVxpp5\":[\"Bentornato\",[\"0\"],\" 👋\"],\"NxOVCl\":[\"Benvenuto su Hi.Events, \",[\"0\"],\" 👋\"],\"xgL50q\":\"Cosa sono i Prodotti a Livelli?\",\"f1jUC0\":\"In quale data questa lista di check-in dovrebbe diventare attiva?\",\"4ueloy\":\"Cos'è una Categoria?\",\"gxeWAU\":\"What products does this code apply to?\",\"hFHnxR\":\"What products does this code apply to? (Applies to all by default)\",\"AeejQi\":\"What products should this capacity apply to?\",\"Rb0XUE\":\"What time will you be arriving?\",\"5N4wLD\":\"What type of question is this?\",\"gyLUYU\":\"Quando abilitato, le fatture verranno generate per gli ordini di biglietti. Le fatture saranno inviate insieme all'email di conferma dell'ordine. I partecipanti possono anche scaricare le loro fatture dalla pagina di conferma dell'ordine.\",\"D3opg4\":\"Quando i pagamenti offline sono abilitati, gli utenti potranno completare i loro ordini e ricevere i loro biglietti. I loro biglietti indicheranno chiaramente che l'ordine non è pagato, e lo strumento di check-in avviserà il personale di check-in se un ordine richiede il pagamento.\",\"D7C6XV\":\"Quando dovrebbe scadere questa lista di check-in?\",\"FVetkT\":\"Quali biglietti dovrebbero essere associati a questa lista di check-in?\",\"S+OdxP\":\"Chi sta organizzando questo evento?\",\"LINr2M\":\"A chi è destinato questo messaggio?\",\"nWhye/\":\"A chi dovrebbe essere posta questa domanda?\",\"VxFvXQ\":\"Incorpora Widget\",\"v1P7Gm\":\"Impostazioni Widget\",\"b4itZn\":\"In corso\",\"hqmXmc\":\"In corso...\",\"+G/XiQ\":\"Da inizio anno\",\"l75CjT\":\"Sì\",\"QcwyCh\":\"Sì, rimuovili\",\"ySeBKv\":\"Hai già scansionato questo biglietto\",\"P+Sty0\":[\"Stai cambiando la tua email in <0>\",[\"0\"],\".\"],\"gGhBmF\":\"Sei offline\",\"sdB7+6\":\"Puoi creare un codice promo che ha come target questo prodotto nella\",\"KRhIxT\":\"You can now start receiving payments through Stripe.\",\"Gnjf3o\":\"Non puoi cambiare il tipo di prodotto poiché ci sono partecipanti associati a questo prodotto.\",\"S+on7c\":\"You cannot check in attendees with unpaid orders.\",\"yNi4PV\":\"Non puoi registrare partecipanti con ordini non pagati. Questa impostazione può essere modificata nelle impostazioni dell'evento.\",\"c9Evkd\":\"Non puoi eliminare l'ultima categoria.\",\"6uwAvx\":\"Non puoi eliminare questo livello di prezzo perché ci sono già prodotti venduti per questo livello. Puoi invece nasconderlo.\",\"tFbRKJ\":\"Non puoi modificare il ruolo o lo stato del proprietario dell'account.\",\"fHfiEo\":\"Non puoi rimborsare un ordine creato manualmente.\",\"hK9c7R\":\"Hai creato una domanda nascosta ma hai disabilitato l'opzione per mostrare le domande nascoste. È stata abilitata.\",\"NOaWRX\":\"You do not have permission to access this page\",\"BRArmD\":\"Hai accesso a più account. Scegli uno per continuare.\",\"Z6q0Vl\":\"Hai già accettato questo invito. Accedi per continuare.\",\"rdk1xK\":\"You have connected your Stripe account\",\"ofEncr\":\"Non hai domande per i partecipanti.\",\"CoZHDB\":\"Non hai domande per gli ordini.\",\"15qAvl\":\"Non hai modifiche di email in sospeso.\",\"n81Qk8\":\"You have not completed your Stripe Connect setup\",\"jxsiqJ\":\"You have not connected your Stripe account\",\"+FWjhR\":\"Hai esaurito il tempo per completare il tuo ordine.\",\"MycdJN\":\"You have taxes and fees added to a Free Product. Would you like to remove or obscure them?\",\"YzEk2o\":\"Non hai ancora inviato messaggi. Puoi inviare messaggi a tutti i partecipanti o a specifici possessori di prodotti.\",\"R6i9o9\":\"Devi riconoscere che questa email non è promozionale\",\"3ZI8IL\":\"Devi accettare i termini e le condizioni\",\"dMd3Uf\":\"Devi confermare il tuo indirizzo email prima che il tuo evento possa andare in diretta.\",\"H35u3n\":\"Devi creare un biglietto prima di poter aggiungere manualmente un partecipante.\",\"jE4Z8R\":\"Devi avere almeno un livello di prezzo\",\"8/eLoa\":\"You need to verify your account before you can send messages.\",\"Egnj9d\":\"Dovrai contrassegnare un ordine come pagato manualmente. Questo può essere fatto nella pagina di gestione dell'ordine.\",\"L/+xOk\":\"Avrai bisogno di un biglietto prima di poter creare una lista di check-in.\",\"Djl45M\":\"Avrai bisogno di un prodotto prima di poter creare un'assegnazione di capacità.\",\"y3qNri\":\"Avrai bisogno di almeno un prodotto per iniziare. Gratuito, a pagamento o lascia che l'utente decida quanto pagare.\",\"9HcibB\":[\"Stai andando a \",[\"0\"],\"! 🎉\"],\"ROR8QD\":\"Il nome del tuo account è utilizzato nelle pagine degli eventi e nelle email.\",\"veessc\":\"I tuoi partecipanti appariranno qui una volta che si saranno registrati per il tuo evento. Puoi anche aggiungere manualmente i partecipanti.\",\"Eh5Wrd\":\"Il tuo fantastico sito web 🎉\",\"lkMK2r\":\"I tuoi Dettagli\",\"3ENYTQ\":[\"La tua richiesta di cambio email a <0>\",[\"0\"],\" è in attesa. Controlla la tua email per confermare\"],\"yZfBoy\":\"Il tuo messaggio è stato inviato\",\"KSQ8An\":\"Il tuo Ordine\",\"Jwiilf\":\"Il tuo ordine è stato annullato\",\"6UxSgB\":\"Il tuo ordine è in attesa di pagamento 🏦\",\"7YJdgG\":\"I tuoi ordini appariranno qui una volta che inizieranno ad arrivare.\",\"9TO8nT\":\"La tua password\",\"P8hBau\":\"Il tuo pagamento è in elaborazione.\",\"UdY1lL\":\"Il tuo pagamento non è andato a buon fine, riprova.\",\"fzuM26\":\"Il tuo pagamento non è andato a buon fine. Riprova.\",\"cEli2o\":\"Il tuo prodotto per\",\"cJ4Y4R\":\"Il tuo rimborso è in elaborazione.\",\"IFHV2p\":\"Il tuo biglietto per\",\"x1PPdr\":\"CAP / Codice Postale\",\"BM/KQm\":\"CAP o Codice Postale\",\"+LtVBt\":\"CAP o Codice Postale\",\"25QDJ1\":\"- Clicca per pubblicare\",\"WOyJmc\":\"- Clicca per annullare la pubblicazione\",\"1bpx9A\":\"...\",\"4zldrf\":[[\"0\",\"plural\",{\"one\":[\"#\",\" domanda nascosta\"],\"other\":[\"#\",\" domande nascoste\"]}]],\"xYxQCZ\":[[\"0\"],\" \",[\"1\"]],\"S4PqS9\":[[\"0\"],\" Webhook Attivi\"],\"tmew5X\":[[\"0\"],\" registrati\"],\"qSiUsc\":[[\"0\"],[\"1\"]],\"OJnhhX\":[[\"eventCount\"],\" eventi\"],\"wapGcj\":[[\"message\"]],\"pDgeaz\":[[\"title\"]],\"0940VN\":\"<0>Il numero di biglietti disponibili per questo biglietto<1>Questo valore può essere sovrascritto se ci sono <2>Limiti di Capacità associati a questo biglietto.\",\"ZnVt5v\":\"<0>I webhook notificano istantaneamente i servizi esterni quando si verificano eventi, come l'aggiunta di un nuovo partecipante al tuo CRM o alla mailing list al momento della registrazione, garantendo un'automazione senza interruzioni.<1>Utilizza servizi di terze parti come <2>Zapier, <3>IFTTT o <4>Make per creare flussi di lavoro personalizzati e automatizzare le attività.\",\"y1NShf\":\"🎉 Congratulazioni per aver creato un evento!\",\"fAv9QG\":\"🎟️ Aggiungi biglietti\",\"s4Tgn6\":\"📢 Promuovi il tuo evento\",\"UQ7pBY\":\"0.50 per $0.50\",\"M2DyLc\":\"1 Webhook Attivo\",\"i1+xzD\":\"1.75 per 1.75%\",\"W9+fkZ\":\"10001\",\"d9El7Q\":[\"Un \",[\"type\"],\" predefinito viene applicato automaticamente a tutti i nuovi biglietti. Puoi sovrascrivere questa impostazione per ogni singolo biglietto.\"],\"Pgaiuj\":\"Un importo fisso per biglietto. Es. $0,50 per biglietto\",\"ySO/4f\":\"Una percentuale del prezzo del biglietto. Es. 3,5% del prezzo del biglietto\",\"WXeXGB\":\"Un codice promozionale senza sconto può essere utilizzato per rivelare biglietti nascosti.\",\"GMhWB5\":\"Un'opzione Radio ha più opzioni ma solo una può essere selezionata.\",\"CBt3s7\":\"Un'opzione Radio consente una sola selezione\",\"7g61G9\":\"Una breve descrizione di Awesome Events Ltd.\",\"zCk10D\":\"Una singola domanda per partecipante. Es. Qual è il tuo pasto preferito?\",\"ap3v36\":\"Una singola domanda per ordine. Es. Qual è il nome della tua azienda?\",\"uyJsf6\":\"Informazioni\",\"pDwHGk\":\"Informazioni su hi.events\",\"WTk/ke\":\"Informazioni su Stripe Connect\",\"VTfZPy\":\"Accesso Negato\",\"iwyhk4\":\"Accesso all'area VIP...\",\"0b79Xf\":\"Email dell'Account\",\"m16xKo\":\"Aggiungi\",\"LKNynS\":\"Aggiungi un'immagine di copertina, una descrizione e altro per far risaltare il tuo evento.\",\"a5KFZU\":\"Aggiungi i dettagli dell'evento e gestisci le impostazioni dell'evento.\",\"Fb+SDI\":\"Aggiungi altri biglietti\",\"BGD9Yt\":\"Aggiungi biglietti\",\"QN2F+7\":\"Aggiungi Webhook\",\"p59pEv\":\"Dettagli Aggiuntivi\",\"CPXP5Z\":\"Affiliati\",\"gKq1fa\":\"Tutti i partecipanti\",\"QsYjci\":\"Tutti gli Eventi\",\"/twVAS\":\"Tutti i Biglietti\",\"8wYDMp\":\"Hai già un account?\",\"TRYjHa\":[\"importo in \",[\"0\"]],\"tLjOgo\":[\"Importo pagato $\",[\"0\"]],\"vRznIT\":\"Si è verificato un errore durante il controllo dello stato di esportazione.\",\"er3d/4\":\"Si è verificato un errore durante l'ordinamento dei biglietti. Riprova o aggiorna la pagina\",\"hhvESd\":\"Un evento è l'evento effettivo che stai organizzando\",\"3ZpITr\":\"An event is the gathering or occasion you’re organizing. You can add more details later.\",\"QNrkms\":\"Risposta aggiornata con successo.\",\"j4DliD\":\"Qualsiasi richiesta dai possessori di biglietti verrà inviata a questo indirizzo email. Questo sarà anche utilizzato come indirizzo \\\"rispondi a\\\" per tutte le email inviate da questo evento\",\"epTbAK\":[\"Si applica a \",[\"0\"],\" biglietti\"],\"6MkQ2P\":\"Si applica a 1 biglietto\",\"jcnZEw\":[\"Applica questo \",[\"type\"],\" a tutti i nuovi biglietti\"],\"Dy+k4r\":\"Sei sicuro di voler cancellare questo partecipante? Questo annullerà il loro prodotto\",\"5H3Z78\":\"Sei sicuro di voler eliminare questo webhook?\",\"2xEpch\":\"Chiedi una volta per partecipante\",\"F2rX0R\":\"Deve essere selezionato almeno un tipo di evento\",\"AJ4rvK\":\"Partecipante Cancellato\",\"qvylEK\":\"Partecipante Creato\",\"Xc2I+v\":\"Gestione Partecipanti\",\"VvYqMB\":\"Le domande per i partecipanti vengono poste una volta per partecipante. Per impostazione predefinita, alle persone vengono chiesti nome, cognome e indirizzo email.\",\"spxPEv\":\"Le domande per i partecipanti vengono poste una volta per partecipante. Per impostazione predefinita, chiediamo nome, cognome e indirizzo email del partecipante.\",\"D2qlBU\":\"Partecipante Aggiornato\",\"k3Tngl\":\"Partecipanti Esportati\",\"5UbY+B\":\"Partecipanti con un biglietto specifico\",\"kShOaz\":\"Flusso di Lavoro Automatico\",\"VPoeAx\":\"Gestione automatizzata degli ingressi con liste di check-in multiple e convalida in tempo reale\",\"lXkUEV\":\"Disponibilità\",\"Vm0RKe\":\"Sconto Medio/Ordine\",\"sGUsYa\":\"Valore Medio Ordine\",\"kNmmvE\":\"Awesome Events Srl.\",\"0TGkYM\":\"Torna alla homepage dell'evento\",\"MLZyiY\":\"Colore di sfondo\",\"EOUool\":\"Dettagli di Base\",\"7EGQKA\":\"Poiché sei il proprietario dell'account, non puoi modificare il tuo ruolo o stato.\",\"wVfiR2\":\"Prima che il tuo evento possa andare online, ci sono alcune cose da fare.\",\"iMdwTb\":\"Prima che il tuo evento possa andare online, ci sono alcune cose da fare. Completa tutti i passaggi qui sotto per iniziare.\",\"1xAcxY\":\"Inizia a vendere biglietti in pochi minuti\",\"R+w/Va\":\"Fatturazione\",\"Ayxd+S\":\"Controllo del Brand\",\"Ptp9MF\":\"Colore pulsante\",\"Jzn1qy\":\"Impossibile caricare gli eventi\",\"GGWsTU\":\"Annullato\",\"Ud7zwq\":\"L'annullamento cancellerà tutti i biglietti associati a questo ordine e rilascerà i biglietti nel pool disponibile.\",\"K7tIrx\":\"Categoria\",\"QndF4b\":\"registra ingresso\",\"9FVFym\":\"registra uscita\",\"Y3FYXy\":\"Registrazione\",\"udRwQs\":\"Registrazione Creata\",\"F4SRy3\":\"Registrazione Eliminata\",\"rfeicl\":\"Registrazione effettuata con successo\",\"/ydvvl\":\"Messaggi di Pagamento\",\"h1IXFK\":\"Cinese\",\"DM4gBB\":\"Cinese (Tradizionale)\",\"jJGoVv\":\"Scegli quali notifiche vuoi ricevere\",\"RG3szS\":\"chiudi\",\"msqIjo\":\"Comprimi questo biglietto quando la pagina dell'evento viene caricata inizialmente\",\"/sZIOR\":\"Negozio Completo\",\"7D9MJz\":\"Completa Configurazione Stripe\",\"nqx+6h\":\"Completa questi passaggi per iniziare a vendere biglietti per il tuo evento.\",\"DnLC08\":\"Congratulation on creating an event!\",\"o5A0Go\":\"Congratulazioni per aver creato un evento!\",\"Xe2tSS\":\"Documentazione di Connessione\",\"1Xxb9f\":\"Connetti elaborazione pagamenti\",\"EWnXR+\":\"Connetti a Stripe\",\"MOUF31\":\"Connetti con CRM e automatizza le attività utilizzando webhook e integrazioni\",\"/3017M\":\"Connesso a Stripe\",\"i3p844\":\"Contact email\",\"02S6xJ\":\"Contatta il Supporto\",\"nBGbqc\":\"Contattaci per abilitare la messaggistica\",\"0GwUT4\":\"Procedi al pagamento\",\"RGVUUI\":\"Continua Al Pagamento\",\"P0rbCt\":\"Immagine di Copertina\",\"dyrgS4\":\"Crea e personalizza la tua pagina evento istantaneamente\",\"a6YrKg\":\"Crea codici promozionali\",\"n6H6AO\":\"Crea codici promozionali per offrire sconti ai tuoi partecipanti.\",\"Tg323g\":\"Crea Biglietto\",\"agZ87r\":\"Crea biglietti per il tuo evento, imposta i prezzi e gestisci la quantità disponibile.\",\"dkAPxi\":\"Crea Webhook\",\"Lu75d1\":\"Personalizza le impostazioni email per questo evento\",\"RaxMyF\":\"Personalizza la homepage dell'evento e l'esperienza di checkout\",\"q9Jg0H\":\"Personalizza la pagina del tuo evento e il design del widget per adattarli perfettamente al tuo brand\",\"zgCHnE\":\"Report Vendite Giornaliere\",\"nHm0AI\":\"Ripartizione giornaliera di vendite, tasse e commissioni\",\"PqrqgF\":\"Lista check-in primo giorno\",\"RiXc4g\":\"Disattiva utente\",\"GnyEfA\":\"Elimina biglietto\",\"E33LRn\":\"Elimina utente\",\"snMaH4\":\"Elimina webhook\",\"s9iD5d\":\"La descrizione deve essere inferiore a 50.000 caratteri\",\"x8uDKb\":\"Disabilita codice\",\"b5SKxQ\":\"Disabilita il monitoraggio di questa capacità senza interrompere le vendite dei prodotti\",\"Tgg8XQ\":\"Disabilita il monitoraggio di questa capacità senza interrompere le vendite dei biglietti\",\"QotGhf\":\"Ignora questo messaggio\",\"TvY/XA\":\"Documentazione\",\"dYskfr\":\"Non esiste\",\"V6Jjbr\":\"Non hai un account? <0>Registrati\",\"4+aC/x\":\"Donazione / Biglietto a offerta libera\",\"++S5i/\":\"Importo donazione\",\"OO7MG7\":\"Biglietto Donazione\",\"0pEVi2\":\"Scarica PDF Biglietti\",\"eneWvv\":\"Bozza\",\"3z2ium\":\"Trascina per ordinare\",\"6skwyH\":\"Rilascia un'immagine, o clicca qui per sostituire l'Immagine di Copertina\",\"S37RRV\":\"Rilascia un'immagine, o clicca qui per caricare l'Immagine di Copertina\",\"X7F5EC\":\"A causa dell'alto rischio di spam, è necessaria una verifica manuale prima di poter inviare messaggi.\\nContattaci per richiedere l'accesso.\",\"KRmTkx\":\"Duplica Prodotto\",\"Wt9eV8\":\"Duplica Biglietti\",\"4xK5y2\":\"Duplica Webhook\",\"KIjvtr\":\"Olandese\",\"2iZEz7\":\"Modifica Risposta\",\"kNGp1D\":\"Modifica partecipante\",\"t2bbp8\":\"Modifica Partecipante\",\"d+nnyk\":\"Modifica Biglietto\",\"fW5sSv\":\"Modifica webhook\",\"nP7CdQ\":\"Modifica Webhook\",\"WiKda6\":\"Configurazione Email\",\"G5zNMX\":\"Impostazioni Email\",\"nA31FG\":\"Abilita questa capacità per interrompere le vendite dei biglietti quando viene raggiunto il limite\",\"RxzN1M\":\"Abilitato\",\"LslKhj\":\"Errore durante il caricamento dei log\",\"nuoP/j\":\"Evento creato con successo\",\"4JzCvP\":\"Evento Non Disponibile\",\"mImacG\":\"Pagina dell'evento\",\"JyD0LH\":\"Impostazioni Evento\",\"uPX+1O\":\"Biglietteria gestita da\",\"YDVUVl\":\"Tipi di Evento\",\"3Fj/xp\":\"Event wdwdeNot Available\",\"VlvpJ0\":\"Esporta risposte\",\"JKfSAv\":\"Esportazione fallita. Riprova.\",\"SVOEsu\":\"Esportazione avviata. Preparazione file...\",\"jtrqH9\":\"Esportazione Partecipanti\",\"R4Oqr8\":\"Esportazione completata. Download file in corso...\",\"UlAK8E\":\"Esportazione Ordini\",\"Jjw03p\":\"Impossibile esportare i partecipanti\",\"ZPwFnN\":\"Impossibile esportare gli ordini\",\"X4o0MX\":\"Impossibile caricare il Webhook\",\"10XEC9\":\"Impossibile reinviare l'email del prodotto\",\"lKh069\":\"Impossibile avviare il processo di esportazione\",\"NNc33d\":\"Impossibile aggiornare la risposta.\",\"7/9RFs\":\"Caricamento immagine non riuscito.\",\"YirHq7\":\"Feedback\",\"T4BMxU\":\"Le commissioni sono soggette a modifiche. Sarai informato di qualsiasi modifica alla struttura delle tue commissioni.\",\"QWa3Sk\":\"Nome, Cognome e Indirizzo Email sono domande predefinite che sono sempre incluse nel processo di checkout.\",\"YXhom6\":\"Commissione Fissa:\",\"KgxI80\":\"Biglietteria Flessibile\",\"/4rQr+\":\"Biglietto Gratuito\",\"01my8x\":\"Biglietto gratuito, nessuna informazione di pagamento richiesta\",\"ejVYRQ\":\"Da\",\"vAVBBv\":\"Completamente integrato\",\"kfVY6V\":\"Inizia gratuitamente, nessun costo di abbonamento\",\"u6FPxT\":\"Ottieni Biglietti\",\"8KDgYV\":\"Prepara il tuo evento\",\"cQPKZt\":\"Vai alla Dashboard\",\"yPvkqO\":\"Vai a Hi.Events\",\"gHSuV/\":\"Vai alla pagina iniziale\",\"Lek3cJ\":\"Vai alla Dashboard di Stripe\",\"GNJ1kd\":\"Aiuto e Supporto\",\"spMR9y\":\"Hi.Events addebita commissioni di piattaforma per mantenere e migliorare i nostri servizi. Queste commissioni vengono automaticamente detratte da ogni transazione.\",\"EeNE0j\":\"Nascosto non sarà mostrato ai clienti.\",\"P+5Pbo\":\"Nascondi Risposte\",\"fsi6fC\":\"Nascondi questo biglietto ai clienti\",\"Fhzoa8\":\"Nascondi biglietto dopo la data di fine vendita\",\"yhm3J/\":\"Nascondi biglietto prima della data di inizio vendita\",\"k7/oGT\":\"Nascondi biglietto a meno che l'utente non abbia un codice promozionale applicabile\",\"L0ZOiu\":\"Nascondi biglietto quando esaurito\",\"uno73L\":\"Nascondere un biglietto impedirà agli utenti di vederlo sulla pagina dell'evento.\",\"tj6Gob\":\"Homepage e Checkout\",\"m07jN3\":\"Impostazioni Homepage e Checkout\",\"id+NIk\":\"Quanti minuti ha il cliente per completare il proprio ordine\",\"htoh8N\":\"https://webhook-domain.com/webhook\",\"sIxFk5\":\"Accetto i termini e condizioni\",\"4/kP5a\":\"Se una nuova scheda non si è aperta automaticamente, clicca sul pulsante qui sotto per procedere al pagamento.\",\"Crwwhn\":[\"If a new tab did not open, please <0>\",[\"0\"],\".\"],\"9gtsTP\":\"If blank, the address will be used to generate a Google map link\",\"wOU3Tr\":\"Se hai un account con noi, riceverai un'email con le istruzioni per reimpostare la password.\",\"Gyl1h8\":\"Le dimensioni dell'immagine devono essere almeno 600px per 300px\",\"TiGacZ\":\"Le dimensioni dell'immagine devono essere almeno 900px per 450px\",\"UnTvkH\":\"Le dimensioni dell'immagine devono essere tra 3000px per 2000px. Con un'altezza massima di 2000px e una larghezza massima di 3000px\",\"UJLg8x\":\"Analisi approfondite\",\"OFAmKP\":\"Includi dettagli di connessione per il tuo evento online\",\"BfPBBG\":\"Includi dettagli di connessione per il tuo evento online. Questi dettagli saranno dopo la registrazione avvenuta con successo.\",\"6+pAOx\":\"Includi dettagli di connessione per il tuo evento online. Questi dettagli saranno mostrati dopo la registrazione avvenuta con successo.\",\"SYmeUu\":\"Includi dettagli di connessione per il tuo evento online. Questi dettagli saranno mostrati nella pagina di riepilogo dell'ordine e nella pagina del prodotto del partecipante\",\"evpD4c\":\"Includi dettagli di connessione per il tuo evento online. Questi dettagli saranno mostrati nella pagina di riepilogo dell'ordine e nella pagina del biglietto del partecipante\",\"AXTNr8\":[\"Include \",[\"0\"],\" biglietti\"],\"7/Rzoe\":\"Include 1 biglietto\",\"F1Xp97\":\"Partecipanti individuali\",\"nbfdhU\":\"Integrazioni\",\"Lj7sBL\":\"Italiano\",\"1IWWYX\":[\"KittenTech Conference \",[\"0\"]],\"ZgJEMX\":\"KittenTech Conference Center\",\"h0Q9Iw\":\"Ultima Risposta\",\"gw3Ur5\":\"Ultimo Attivato\",\"CKcupn\":\"Latest Orders\",\"c+gAXc\":\"Let's get started by creating your first event\",\"QfrKvi\":\"Link color\",\"shkJ3U\":\"Collega il tuo account Stripe per ricevere fondi dalle vendite dei biglietti.\",\"dF6vP6\":\"Online\",\"NFxlHW\":\"Caricamento Webhooks\",\"XkhEf9\":\"Lorem ipsum...\",\"xGUf/F\":\"Make Event Live\",\"4wUIjX\":\"Rendi attivo il tuo evento\",\"8mmINh\":\"Manage billing information and view invoices\",\"jWIznR\":\"Manage default settings for new events\",\"wqyqaF\":\"Manage general account settings\",\"5Llat8\":\"Manage products\",\"f92Qak\":\"Manage taxes and fees which can be applied to tickets\",\"PlTcVr\":\"Manage taxes and fees which can be applied to your tickets\",\"Wsx7Iu\":\"Manage users and their permissions\",\"QHcjP+\":\"Manage your billing and payment details\",\"2FzaR1\":\"Gestisci l'elaborazione dei pagamenti e visualizza le commissioni della piattaforma\",\"lzcrX3\":\"Manually adding an attendee will adjust ticket quantity.\",\"/x0FyM\":\"Adatta al tuo brand\",\"1jRD0v\":\"Invia messaggio ai partecipanti con biglietti specifici\",\"97QrnA\":\"Invia messaggi ai partecipanti, gestisci ordini e gestisci rimborsi, tutto in un unico posto\",\"0/yJtP\":\"Invia messaggio ai proprietari degli ordini con prodotti specifici\",\"tccUcA\":\"Check-in Mobile\",\"SVuGaP\":\"Multiple price options, users can choose which to pay\",\"6wbTro\":\"Multiple price options. Perfect for early bird tickets etc.\",\"m920rF\":\"New York\",\"074+X8\":\"Nessun Webhook Attivo\",\"6r9SGl\":\"Nessuna Carta di Credito Richiesta\",\"Z6ILSe\":\"No events for this organizer\",\"XZkeaI\":\"Nessun log trovato\",\"zK/+ef\":\"Nessun prodotto disponibile per la selezione\",\"q91DKx\":\"No questions have been answered by this attendee.\",\"QoAi8D\":\"Nessuna risposta\",\"EK/G11\":\"Ancora nessuna risposta\",\"cU1op4\":\"No Taxes or Fees have been added yet.\",\"uR2eFu\":\"No tickets available\",\"b7JZFg\":\"No tickets to show\",\"n5vdm2\":\"Nessun evento webhook è stato registrato per questo endpoint. Gli eventi appariranno qui una volta attivati.\",\"4GhX3c\":\"Nessun Webhook\",\"x5+Lcz\":\"Not Checked In\",\"+P/tII\":\"Once you're ready, set your event live and start selling tickets.\",\"bU7oUm\":\"Invia solo agli ordini con questi stati\",\"ppuQR4\":\"Ordine Creato\",\"L4kzeZ\":[\"Order Details \",[\"0\"]],\"vu6Arl\":\"Ordine Contrassegnato come Pagato\",\"FaPYw+\":\"Proprietario ordine\",\"eB5vce\":\"Proprietari di ordini con un prodotto specifico\",\"CxLoxM\":\"Proprietari di ordini con prodotti\",\"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.\",\"EZy55F\":\"Ordine Rimborsato\",\"6eSHqs\":\"Stati ordine\",\"e7eZuA\":\"Ordine Aggiornato\",\"mz+c33\":\"Orders Created\",\"5It1cQ\":\"Ordini Esportati\",\"m/ebSk\":\"Organizer Details\",\"J2cXxX\":\"Organizers can only manage events and tickets. They cannot manage users, account settings or billing information.\",\"6/dCYd\":\"Panoramica\",\"2w/FiJ\":\"Paid Ticket\",\"/l/ckQ\":\"Incolla URL\",\"iq5IUr\":\"Pause Ticket\",\"URAE3q\":\"In pausa\",\"TskrJ8\":\"Pagamento e Piano\",\"EyE8E6\":\"Elaborazione Pagamenti\",\"vcyz2L\":\"Impostazioni Pagamento\",\"CcK+Ft\":\"PDF\",\"att1Hj\":\"percent\",\"dfVao3\":\"Effettua Ordine\",\"br3Y/y\":\"Commissioni Piattaforma\",\"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\",\"jEw0Mr\":\"Inserisci un URL valido\",\"Dvq0wf\":\"Per favore, fornisci un'immagine.\",\"MA04r/\":\"Please remove filters and set sorting to \\\"Homepage order\\\" to enable sorting\",\"EFq6EG\":\"Per favore, seleziona un'immagine.\",\"yygcoG\":\"Please select at least one ticket\",\"fuwKpE\":\"Riprova.\",\"o+tJN/\":\"Attendi mentre prepariamo i tuoi partecipanti per l'esportazione...\",\"+5Mlle\":\"Attendi mentre prepariamo i tuoi ordini per l'esportazione...\",\"R7+D0/\":\"Portuguese (Brazil)\",\"Qs7yI0\":\"Powered By\",\"lqAWKB\":\"Powered by <0>Hi.Events 👋\",\"3n47kV\":\"Powered By Hi.Events\",\"ddi4j4\":\"Powered by Stripe\",\"cs5muu\":\"Anteprima pagina evento\",\"a5jvSX\":\"Price Tiers\",\"p/JDmw\":\"product\",\"EWCLpZ\":\"Prodotto Creato\",\"XkFYVB\":\"Prodotto Eliminato\",\"0dzBGg\":\"Product email has been resent to attendee\",\"YMwcbR\":\"Ripartizione vendite prodotti, ricavi e tasse\",\"ldVIlB\":\"Prodotto Aggiornato\",\"mIqT3T\":\"Prodotti, merchandising e opzioni di prezzo flessibili\",\"ZXpm3a\":[\"Promo \",[\"promoCode\"],\" code applied\"],\"JoKGiJ\":\"Codice promo\",\"k3wH7i\":\"Ripartizione utilizzo codici promo e sconti\",\"evDBV8\":\"Pubblica Evento\",\"812gwg\":\"Purchase License\",\"YwNJAq\":\"Scansione di codici QR con feedback istantaneo e condivisione sicura per l'accesso del personale\",\"HiGkFu\":\"Reindirizzamento a Stripe...\",\"RloWNu\":\"Reply to email\",\"Gkz9Vm\":\"Resend product email\",\"slOprG\":\"Reimposta la tua password\",\"hVF4dJ\":\"Sale starts\",\"lBAlVv\":\"Seach by name, order #, attendee # or email...\",\"ulAuWO\":\"Search by event name or description...\",\"NQSiYb\":\"Search by name or description...\",\"B1bB1j\":\"Search by order #, name or email...\",\"KZpERn\":\"Search by product name...\",\"jA4hXE\":\"Search by subject or body...\",\"HYnGee\":\"Search by ticket name...\",\"j9cPeF\":\"Seleziona tipi di evento\",\"XH5juP\":\"Select Ticket Tier\",\"nuWxSr\":\"Select Tickets\",\"Ropvj0\":\"Seleziona quali eventi attiveranno questo webhook\",\"BG3f7v\":\"Vendi qualsiasi cosa\",\"VtX8nW\":\"Vendi merchandising insieme ai biglietti con supporto integrato per tasse e codici promozionali\",\"Cye3uV\":\"Vendi Più Che Biglietti\",\"471O/e\":\"Send confirmation email\",\"nwVSiv\":\"Send order confirmation and product email\",\"vu4F0h\":\"Set a minimum price and let users donate more\",\"VlS7y2\":\"Set up your payment processing to receive funds from ticket sales.\",\"HbUQWA\":\"Configurazione in Minuti\",\"FFbYHm\":[\"Should this \",[\"type\"],\" be applied to all new tickets?\"],\"smd87r\":\"Show available ticket quantity\",\"j3b+OW\":\"Shown to the customer after they checkout, on the order summary page\",\"v6IwHE\":\"Check-in Intelligente\",\"J9xKh8\":\"Dashboard Intelligente\",\"KTxc6k\":\"Qualcosa è andato storto, riprova o contatta l'assistenza se il problema persiste\",\"DvCwYF\":\"Sorry, this promo code is invalid'\",\"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\",\"RS0o7b\":\"State\",\"Ih8kN0\":[\"Successfully $\",[\"0\"],\" attendee\"],\"xHl17l\":[\"Successfully checked <0>\",[\"0\"],\" \",[\"1\"],\" \",[\"2\"]],\"onFQYs\":\"Successfully Created Ticket\",\"Hgj/mB\":\"Successfully deleted ticket\",\"JwTmB6\":\"Prodotto Duplicato con Successo\",\"g2lRrH\":\"Successfully updated ticket\",\"kj7zYe\":\"Webhook aggiornato con successo\",\"5gIl+x\":\"Supporto per vendite a livelli, basate su donazioni e di prodotti con prezzi e capacità personalizzabili\",\"EEZnW+\":\"Taxes & Fees\",\"gVjSFp\":\"Taxes and Fees can be associated with tickets and will be added to the ticket price.\",\"e0ZSh4\":\"Text Colour\",\"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\",\"tXadb0\":\"L'evento che stai cercando non è disponibile al momento. Potrebbe essere stato rimosso, scaduto o l'URL potrebbe essere errato.\",\"FqjKfd\":\"The location of your event\",\"kIXEVN\":[\"The maximum numbers number of tickets for \",[\"0\"],\"is \",[\"1\"]],\"FeAfXO\":[\"The maximum numbers number of tickets for Generals is \",[\"0\"]],\"POEqXB\":\"The organizer details of your event\",\"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'\",\"wgAiDb\":\"The user must login to change their email.\",\"jvxN9/\":\"There are no tickets available for this event\",\"hjLUr+\":\"There was an error loading this content. Please refresh the page and try again.\",\"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.\",\"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\",\"axERYu\":\"This order has already been paid. <0>View order details\",\"wY+HO9\":\"This order has already been processed.\",\"D44cEI\":\"This order has been completed.\",\"0vRWbB\":\"This order is awaiting payment.\",\"LIjb4v\":\"This order is processing. TODO - a nice image and poll the API\",\"5189cf\":\"This overrides all visibility settings and will hide the ticket from all customers.\",\"4vwjho\":\"This page has expired. <0>View order details\",\"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\",\"KosivG\":\"Ticket deleted successfully\",\"HGuXjF\":\"Possessori di biglietti\",\"6tmWch\":\"Biglietto o prodotto\",\"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\",\"NRhrIB\":\"Biglietti e prodotti\",\"ikA//P\":\"tickets sold\",\"i+idBz\":\"Tickets sold\",\"AGRilS\":\"Tickets Sold\",\"56Qw2C\":\"Tickets sorted successfully\",\"4f8A8M\":\"Tickets to which the promo code applies (Applies to all by default)\",\"Aiggp0\":\"Tiered products allow you to offer multiple price options for the same product.\\nThis is perfect for early bird products, or offering different price\\noptions for different groups of people.\",\"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.\",\"BZBYf3\":\"Per ricevere pagamenti con carta di credito, devi collegare il tuo account Stripe. Stripe è il nostro partner per l'elaborazione dei pagamenti che garantisce transazioni sicure e pagamenti puntuali.\",\"/b6Z1R\":\"Monitora ricavi, visualizzazioni di pagina e vendite con analisi dettagliate e report esportabili\",\"OpKMSn\":\"Commissione di Transazione:\",\"mLGbAS\":[\"Unable to \",[\"0\"],\" attendee\"],\"nNdxt9\":\"Unable to create ticket. Please check the your details\",\"IrVSu+\":\"Impossibile duplicare il prodotto. Controlla i tuoi dati\",\"Vx2J6x\":\"Impossibile recuperare il partecipante\",\"ZBAScj\":\"Partecipante Sconosciuto\",\"oMcLhS\":\"Unlimited ticket quantity available\",\"ZkS2p3\":\"Annulla Pubblicazione Evento\",\"gsehpV\":\"Upload an image to be displayed on the event page\",\"lnCMdg\":\"Carica immagine\",\"HtrFfw\":\"URL è obbligatorio\",\"fROFIL\":\"Vietnamita\",\"gj5YGm\":\"Visualizza e scarica i report per il tuo evento. Nota: solo gli ordini completati sono inclusi in questi report.\",\"c7VN/A\":\"Visualizza Risposte\",\"AM+zF3\":\"View attendee\",\"e4mhwd\":\"View event homepage\",\"n6EaWL\":\"Visualizza log\",\"AMkkeL\":\"View order\",\"MXm9nr\":\"VIP Product\",\"GdWB+V\":\"Webhook creato con successo\",\"2X4ecw\":\"Webhook eliminato con successo\",\"CThMKa\":\"Log Webhook\",\"nuh/Wq\":\"URL Webhook\",\"8BMPMe\":\"Il webhook non invierà notifiche\",\"FSaY52\":\"Il webhook invierà notifiche\",\"v1kQyJ\":\"Webhooks\",\"jupD+L\":\"Bentornato 👋\",\"je8QQT\":\"Benvenuto su Hi.Events 👋\",\"wjqPqF\":\"What are Tiered Tickets?\",\"5iXvHA\":\"What is a Tiered Ticketing?\",\"46L1AK\":\"What is a webhook?\",\"MhhnvW\":\"What tickets does this code apply to? (Applies to all by default)\",\"dCil3h\":\"What tickets should this question be apply to?\",\"cxsKvw\":\"Quando un check-in viene eliminato\",\"Gmd0hv\":\"Quando viene creato un nuovo partecipante\",\"Lc18qn\":\"Quando viene creato un nuovo ordine\",\"dfkQIO\":\"Quando viene creato un nuovo prodotto\",\"8OhzyY\":\"Quando un prodotto viene eliminato\",\"tRXdQ9\":\"Quando un prodotto viene aggiornato\",\"Q7CWxp\":\"Quando un partecipante viene annullato\",\"IuUoyV\":\"Quando un partecipante effettua il check-in\",\"nBVOd7\":\"Quando un partecipante viene aggiornato\",\"ny2r8d\":\"Quando un ordine viene annullato\",\"c9RYbv\":\"Quando un ordine viene contrassegnato come pagato\",\"ejMDw1\":\"Quando un ordine viene rimborsato\",\"fVPt0F\":\"Quando un ordine viene aggiornato\",\"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\",\"4ysd6z\":\"You can connecting using this Zoom link...\",\"9HGdDw\":\"You can create a promo code which targets this ticket on the\",\"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\",\"XoeazJ\":\"You have no attendee questions. Attendee questions are asked once per attendee.\",\"FZKDIe\":\"You have no order questions. Order questions are asked once per order.\",\"casL1O\":\"Hai tasse e commissioni aggiunte a un Prodotto Gratuito. Vuoi rimuoverle?\",\"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.\",\"LRguuL\":\"You must have at least one tier\",\"FRl8Jv\":\"Devi verificare l'email del tuo account prima di poter inviare messaggi.\",\"8QNzin\":\"You'll need at a ticket before you can create a capacity assignment.\",\"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.\",\"TF37u6\":\"I tuoi partecipanti sono stati esportati con successo.\",\"nBqgQb\":\"La tua Email\",\"R02pnV\":\"Il tuo evento deve essere attivo prima di poter vendere biglietti ai partecipanti.\",\"cqo2VO\":\"Your event must be live before you can sell tickets.\",\"la26JS\":\"Your order is in progress\",\"XeNum6\":\"I tuoi ordini sono stati esportati con successo.\",\"vvO1I2\":\"Il tuo account Stripe è collegato e pronto per elaborare i pagamenti.\",\"3k7HDY\":\"Zip\",\"VftCuk\":\"Zoom link, Google Meet link, etc.\",\"YtqjMA\":\"A causa dell'elevato rischio di spam, richiediamo una verifica manuale prima di poter inviare messaggi.\\nContattaci per richiedere l'accesso.\",\"8XAE7n\":\"Se hai un account con noi, riceverai un'email con le istruzioni su come reimpostare la tua\\npassword.\"}")}; \ No newline at end of file +/*eslint-disable*/module.exports={messages:JSON.parse("{\"f8qS7T\":\"'Non c'è ancora nulla da mostrare'\",\"J/hVSQ\":[[\"0\"]],\"Jv22kr\":[[\"0\"],\" <0>registrato con successo\"],\"yxhYRZ\":[[\"0\"],\" <0>uscita registrata con successo\"],\"KMgp2+\":[[\"0\"],\" disponibili\"],\"Pmr5xp\":[[\"0\"],\" creato con successo\"],\"FImCSc\":[[\"0\"],\" aggiornato con successo\"],\"KOr9b4\":[\"Eventi di \",[\"0\"]],\"cU8MWb\":[[\"0\"],\"/\",[\"1\"],\" registrati\"],\"Vjij1k\":[[\"days\"],\" giorni, \",[\"hours\"],\" ore, \",[\"minutes\"],\" minuti e \",[\"seconds\"],\" secondi\"],\"f3RdEk\":[[\"hours\"],\" ore, \",[\"minutes\"],\" minuti e \",[\"seconds\"],\" secondi\"],\"fyE7Au\":[[\"minutes\"],\" minuti e \",[\"seconds\"],\" secondi\"],\"NlQ0cx\":[\"Primo evento di \",[\"organizerName\"]],\"Ul6IgC\":\"<0>Le assegnazioni di capacità ti permettono di gestire la capacità tra biglietti o un intero evento. Ideale per eventi di più giorni, workshop e altro, dove il controllo delle presenze è cruciale.<1>Ad esempio, puoi associare un'assegnazione di capacità con i biglietti <2>Primo Giorno e <3>Tutti i Giorni. Una volta raggiunta la capacità, entrambi i biglietti smetteranno automaticamente di essere disponibili per la vendita.\",\"Exjbj7\":\"<0>Le liste di check-in aiutano a gestire l'ingresso dei partecipanti al tuo evento. Puoi associare più biglietti a una lista di check-in e assicurarti che solo coloro con biglietti validi possano entrare.\",\"OXku3b\":\"<0>https://il-tuo-sito-web.com\",\"qnSLLW\":\"<0>Inserisci il prezzo escluse tasse e commissioni.<1>Tasse e commissioni possono essere aggiunte qui sotto.\",\"ZjMs6e\":\"<0>Il numero di prodotti disponibili per questo prodotto<1>Questo valore può essere sovrascritto se ci sono <2>Limiti di Capacità associati a questo prodotto.\",\"E15xs8\":\"⚡️ Configura il tuo evento\",\"FL6OwU\":\"✉️ Conferma il tuo indirizzo email\",\"BN0OQd\":\"🎉 Congratulazioni per aver creato un evento!\",\"4kSf7w\":\"🎟️ Aggiungi prodotti\",\"4WT5tD\":\"🎨 Personalizza la pagina del tuo evento\",\"3VPPdS\":\"💳 Connetti con Stripe\",\"cjdktw\":\"🚀 Metti online il tuo evento\",\"rmelwV\":\"0 minuti e 0 secondi\",\"i0puaE\":\"10.00\",\"qdfdgM\":\"Via Roma 123\",\"IoRZzD\":\"20\",\"+H1RMb\":\"2024-01-01 10:00\",\"Q/T49U\":\"2024-01-01 18:00\",\"hMT8+2\":\"00100\",\"efAM7X\":\"Un campo data. Perfetto per chiedere una data di nascita ecc.\",\"6euFZ/\":[\"Un \",[\"type\"],\" predefinito viene applicato automaticamente a tutti i nuovi prodotti. Puoi sovrascrivere questa impostazione per ogni singolo prodotto.\"],\"SMUbbQ\":\"Un menu a tendina consente una sola selezione\",\"qv4bfj\":\"Una commissione, come una commissione di prenotazione o una commissione di servizio\",\"POT0K/\":\"Un importo fisso per prodotto. Es. $0,50 per prodotto\",\"f4vJgj\":\"Un campo di testo a più righe\",\"OIPtI5\":\"Una percentuale del prezzo del prodotto. Es. 3,5% del prezzo del prodotto\",\"ZthcdI\":\"Un codice promozionale senza sconto può essere utilizzato per rivelare prodotti nascosti.\",\"AG/qmQ\":\"Un'opzione Radio ha più opzioni ma solo una può essere selezionata.\",\"h179TP\":\"Una breve descrizione dell'evento che verrà visualizzata nei risultati dei motori di ricerca e quando condiviso sui social media. Per impostazione predefinita, verrà utilizzata la descrizione dell'evento\",\"WKMnh4\":\"Un campo di testo a singola riga\",\"BHZbFy\":\"Una singola domanda per ordine. Es. Qual è il tuo indirizzo di spedizione?\",\"Fuh+dI\":\"Una singola domanda per prodotto. Es. Qual è la tua taglia di maglietta?\",\"RlJmQg\":\"Un'imposta standard, come IVA o GST\",\"uIKNjo\":\"Informazioni sull'evento\",\"3pykXZ\":\"Accetta bonifici bancari, assegni o altri metodi di pagamento offline\",\"hrvLf4\":\"Accetta pagamenti con carta di credito tramite Stripe\",\"bfXQ+N\":\"Accetta Invito\",\"AeXO77\":\"Account\",\"lkNdiH\":\"Nome Account\",\"Puv7+X\":\"Impostazioni Account\",\"OmylXO\":\"Account aggiornato con successo\",\"7L01XJ\":\"Azioni\",\"FQBaXG\":\"Attiva\",\"5T2HxQ\":\"Data di attivazione\",\"F6pfE9\":\"Attivo\",\"/PN1DA\":\"Aggiungi una descrizione per questa lista di check-in\",\"0/vPdA\":\"Aggiungi eventuali note sul partecipante. Queste non saranno visibili al partecipante.\",\"Or1CPR\":\"Aggiungi eventuali note sul partecipante...\",\"l3sZO1\":\"Aggiungi eventuali note sull'ordine. Queste non saranno visibili al cliente.\",\"xMekgu\":\"Aggiungi eventuali note sull'ordine...\",\"PGPGsL\":\"Aggiungi descrizione\",\"gMK0ps\":\"Aggiungi dettagli dell'evento e gestisci le impostazioni dell'evento.\",\"OveehC\":\"Aggiungi istruzioni per i pagamenti offline (es. dettagli del bonifico bancario, dove inviare gli assegni, scadenze di pagamento)\",\"LTVoRa\":\"Aggiungi altri prodotti\",\"ApsD9J\":\"Aggiungi Nuovo\",\"TZxnm8\":\"Aggiungi Opzione\",\"24l4x6\":\"Aggiungi Prodotto\",\"8q0EdE\":\"Aggiungi Prodotto alla Categoria\",\"YvCknQ\":\"Aggiungi prodotti\",\"Cw27zP\":\"Aggiungi domanda\",\"yWiPh+\":\"Aggiungi Tassa o Commissione\",\"goOKRY\":\"Aggiungi livello\",\"oZW/gT\":\"Aggiungi al Calendario\",\"pn5qSs\":\"Informazioni Aggiuntive\",\"Y8DIQy\":\"Opzioni Aggiuntive\",\"Du6bPw\":\"Indirizzo\",\"NY/x1b\":\"Indirizzo riga 1\",\"POdIrN\":\"Indirizzo Riga 1\",\"cormHa\":\"Indirizzo riga 2\",\"gwk5gg\":\"Indirizzo Riga 2\",\"U3pytU\":\"Amministratore\",\"HLDaLi\":\"Gli amministratori hanno accesso completo agli eventi e alle impostazioni dell'account.\",\"W7AfhC\":\"Tutti i partecipanti di questo evento\",\"cde2hc\":\"Tutti i Prodotti\",\"5CQ+r0\":\"Consenti ai partecipanti associati a ordini non pagati di effettuare il check-in\",\"ipYKgM\":\"Consenti l'indicizzazione dei motori di ricerca\",\"LRbt6D\":\"Consenti ai motori di ricerca di indicizzare questo evento\",\"+MHcJD\":\"Ci siamo quasi! Stiamo solo aspettando che il tuo pagamento venga elaborato. Questo dovrebbe richiedere solo pochi secondi..\",\"ApOYO8\":\"Fantastico, Evento, Parole chiave...\",\"hehnjM\":\"Importo\",\"R2O9Rg\":[\"Importo pagato (\",[\"0\"],\")\"],\"V7MwOy\":\"Si è verificato un errore durante il caricamento della pagina\",\"Q7UCEH\":\"Si è verificato un errore durante l'ordinamento delle domande. Riprova o aggiorna la pagina\",\"jD/OCQ\":\"Un evento è l'evento effettivo che stai organizzando. Puoi aggiungere più dettagli in seguito.\",\"oBkF+i\":\"Un organizzatore è l'azienda o la persona che ospita l'evento\",\"W5A0Ly\":\"Si è verificato un errore imprevisto.\",\"byKna+\":\"Si è verificato un errore imprevisto. Per favore riprova.\",\"ubdMGz\":\"Qualsiasi richiesta dai possessori di prodotti verrà inviata a questo indirizzo email. Questo sarà anche utilizzato come indirizzo \\\"rispondi a\\\" per tutte le email inviate da questo evento\",\"aAIQg2\":\"Aspetto\",\"Ym1gnK\":\"applicato\",\"sy6fss\":[\"Si applica a \",[\"0\"],\" prodotti\"],\"kadJKg\":\"Si applica a 1 prodotto\",\"DB8zMK\":\"Applica\",\"GctSSm\":\"Applica Codice Promozionale\",\"ARBThj\":[\"Applica questo \",[\"type\"],\" a tutti i nuovi prodotti\"],\"S0ctOE\":\"Archivia evento\",\"TdfEV7\":\"Archiviati\",\"A6AtLP\":\"Eventi Archiviati\",\"q7TRd7\":\"Sei sicuro di voler attivare questo partecipante?\",\"TvkW9+\":\"Sei sicuro di voler archiviare questo evento?\",\"/CV2x+\":\"Sei sicuro di voler cancellare questo partecipante? Questo annullerà il loro biglietto\",\"YgRSEE\":\"Sei sicuro di voler eliminare questo codice promozionale?\",\"iU234U\":\"Sei sicuro di voler eliminare questa domanda?\",\"CMyVEK\":\"Sei sicuro di voler rendere questo evento una bozza? Questo renderà l'evento invisibile al pubblico\",\"mEHQ8I\":\"Sei sicuro di voler rendere questo evento pubblico? Questo renderà l'evento visibile al pubblico\",\"s4JozW\":\"Sei sicuro di voler ripristinare questo evento? Verrà ripristinato come bozza.\",\"vJuISq\":\"Sei sicuro di voler eliminare questa Assegnazione di Capacità?\",\"baHeCz\":\"Sei sicuro di voler eliminare questa Lista di Check-In?\",\"LBLOqH\":\"Chiedi una volta per ordine\",\"wu98dY\":\"Chiedi una volta per prodotto\",\"ss9PbX\":\"Partecipante\",\"m0CFV2\":\"Dettagli Partecipante\",\"QKim6l\":\"Partecipante non trovato\",\"R5IT/I\":\"Note Partecipante\",\"lXcSD2\":\"Domande partecipante\",\"HT/08n\":\"Biglietto Partecipante\",\"9SZT4E\":\"Partecipanti\",\"iPBfZP\":\"Partecipanti Registrati\",\"7KxcHR\":\"Partecipanti con un prodotto specifico\",\"IMJ6rh\":\"Ridimensionamento Automatico\",\"vZ5qKF\":\"Ridimensiona automaticamente l'altezza del widget in base al contenuto. Quando disabilitato, il widget riempirà l'altezza del contenitore.\",\"4lVaWA\":\"In attesa di pagamento offline\",\"2rHwhl\":\"In Attesa di Pagamento Offline\",\"3wF4Q/\":\"In attesa di pagamento\",\"ioG+xt\":\"In Attesa di Pagamento\",\"3PmQfI\":\"Evento Fantastico\",\"Yrbm6T\":\"Awesome Organizer Srl.\",\"9002sI\":\"Torna a tutti gli eventi\",\"A302fe\":\"Torna alla pagina dell'evento\",\"VCoEm+\":\"Torna al login\",\"k1bLf+\":\"Colore di Sfondo\",\"I7xjqg\":\"Tipo di Sfondo\",\"1mwMl+\":\"Prima di inviare!\",\"/yeZ20\":\"Prima che il tuo evento possa andare online, ci sono alcune cose che devi fare.\",\"ze6ETw\":\"Inizia a vendere prodotti in pochi minuti\",\"8rE61T\":\"Indirizzo di Fatturazione\",\"/xC/im\":\"Impostazioni di Fatturazione\",\"rp/zaT\":\"Portoghese Brasiliano\",\"whqocw\":\"Registrandoti accetti i nostri <0>Termini di Servizio e la <1>Privacy Policy.\",\"bcCn6r\":\"Tipo di Calcolo\",\"+8bmSu\":\"California\",\"iStTQt\":\"L'autorizzazione della fotocamera è stata negata. <0>Richiedi Autorizzazione di nuovo, o se questo non funziona, dovrai <1>concedere a questa pagina l'accesso alla tua fotocamera nelle impostazioni del browser.\",\"dEgA5A\":\"Annulla\",\"Gjt/py\":\"Annulla cambio email\",\"tVJk4q\":\"Annulla ordine\",\"Os6n2a\":\"Annulla Ordine\",\"Mz7Ygx\":[\"Annulla Ordine \",[\"0\"]],\"3tTjpi\":\"L'annullamento cancellerà tutti i prodotti associati a questo ordine e rilascerà i prodotti nel pool disponibile.\",\"vv7kpg\":\"Annullato\",\"U7nGvl\":\"Impossibile Effettuare il Check In\",\"QyjCeq\":\"Capacità\",\"V6Q5RZ\":\"Assegnazione di Capacità creata con successo\",\"k5p8dz\":\"Assegnazione di Capacità eliminata con successo\",\"nDBs04\":\"Gestione della Capacità\",\"ddha3c\":\"Le categorie ti permettono di raggruppare i prodotti. Ad esempio, potresti avere una categoria per \\\"Biglietti\\\" e un'altra per \\\"Merchandise\\\".\",\"iS0wAT\":\"Le categorie ti aiutano a organizzare i tuoi prodotti. Questo titolo verrà visualizzato sulla pagina pubblica dell'evento.\",\"eorM7z\":\"Categorie riordinate con successo.\",\"3EXqwa\":\"Categoria Creata con Successo\",\"77/YgG\":\"Cambia Copertina\",\"GptGxg\":\"Cambia password\",\"xMDm+I\":\"Registra Ingresso\",\"p2WLr3\":[\"Registra ingresso di \",[\"0\"],\" \",[\"1\"]],\"D6+U20\":\"Registra ingresso e segna l'ordine come pagato\",\"QYLpB4\":\"Solo registrazione ingresso\",\"/Ta1d4\":\"Registra Uscita\",\"5LDT6f\":\"Dai un'occhiata a questo evento!\",\"gXcPxc\":\"Registrazione\",\"fVUbUy\":\"Lista di Registrazione creata con successo\",\"+CeSxK\":\"Lista di Registrazione eliminata con successo\",\"+hBhWk\":\"La lista di registrazione è scaduta\",\"mBsBHq\":\"La lista di registrazione non è attiva\",\"vPqpQG\":\"Lista di registrazione non trovata\",\"tejfAy\":\"Liste di Registrazione\",\"hD1ocH\":\"URL di Registrazione copiato negli appunti\",\"CNafaC\":\"Le opzioni di casella di controllo consentono selezioni multiple\",\"SpabVf\":\"Caselle di controllo\",\"CRu4lK\":\"Registrato\",\"znIg+z\":\"Pagamento\",\"1WnhCL\":\"Impostazioni di Pagamento\",\"6imsQS\":\"Cinese (Semplificato)\",\"JjkX4+\":\"Scegli un colore per lo sfondo\",\"/Jizh9\":\"Scegli un account\",\"3wV73y\":\"Città\",\"FG98gC\":\"Cancella Testo di Ricerca\",\"EYeuMv\":\"clicca qui\",\"sby+1/\":\"Clicca per copiare\",\"yz7wBu\":\"Chiudi\",\"62Ciis\":\"Chiudi barra laterale\",\"EWPtMO\":\"Codice\",\"ercTDX\":\"Il codice deve essere compreso tra 3 e 50 caratteri\",\"oqr9HB\":\"Comprimi questo prodotto quando la pagina dell'evento viene caricata inizialmente\",\"jZlrte\":\"Colore\",\"Vd+LC3\":\"Il colore deve essere un codice colore esadecimale valido. Esempio: #ffffff\",\"1HfW/F\":\"Colori\",\"VZeG/A\":\"Prossimamente\",\"yPI7n9\":\"Parole chiave separate da virgole che descrivono l'evento. Queste saranno utilizzate dai motori di ricerca per aiutare a categorizzare e indicizzare l'evento\",\"NPZqBL\":\"Completa Ordine\",\"guBeyC\":\"Completa pagamento\",\"C8HNV2\":\"Completa Pagamento\",\"qqWcBV\":\"Completato\",\"6HK5Ct\":\"Ordini completati\",\"NWVRtl\":\"Ordini Completati\",\"DwF9eH\":\"Codice Componente\",\"Tf55h7\":\"Sconto Configurato\",\"7VpPHA\":\"Conferma\",\"ZaEJZM\":\"Conferma Cambio Email\",\"yjkELF\":\"Conferma Nuova Password\",\"xnWESi\":\"Conferma password\",\"p2/GCq\":\"Conferma Password\",\"wnDgGj\":\"Conferma indirizzo email in corso...\",\"pbAk7a\":\"Connetti Stripe\",\"UMGQOh\":\"Connetti con Stripe\",\"QKLP1W\":\"Connetti il tuo account Stripe per iniziare a ricevere pagamenti.\",\"5lcVkL\":\"Dettagli di Connessione\",\"yAej59\":\"Colore di sfondo del contenuto\",\"xGVfLh\":\"Continua\",\"X++RMT\":\"Testo pulsante continua\",\"AfNRFG\":\"Testo Pulsante Continua\",\"lIbwvN\":\"Continua Configurazione Evento\",\"HB22j9\":\"Continua configurazione\",\"bZEa4H\":\"Continua Configurazione Stripe Connect\",\"6V3Ea3\":\"Copiato\",\"T5rdis\":\"copiato negli appunti\",\"he3ygx\":\"Copia\",\"r2B2P8\":\"Copia URL di Check-In\",\"8+cOrS\":\"Copia dettagli a tutti i partecipanti\",\"ENCIQz\":\"Copia Link\",\"E6nRW7\":\"Copia URL\",\"JNCzPW\":\"Paese\",\"IF7RiR\":\"Copertina\",\"hYgDIe\":\"Crea\",\"b9XOHo\":[\"Crea \",[\"0\"]],\"k9RiLi\":\"Crea un Prodotto\",\"6kdXbW\":\"Crea un Codice Promozionale\",\"n5pRtF\":\"Crea un Biglietto\",\"X6sRve\":[\"Crea un account o <0>\",[\"0\"],\" per iniziare\"],\"nx+rqg\":\"crea un organizzatore\",\"ipP6Ue\":\"Crea Partecipante\",\"VwdqVy\":\"Crea Assegnazione di Capacità\",\"EwoMtl\":\"Crea categoria\",\"XletzW\":\"Crea Categoria\",\"WVbTwK\":\"Crea Lista di Check-In\",\"uN355O\":\"Crea Evento\",\"BOqY23\":\"Crea nuovo\",\"kpJAeS\":\"Crea Organizzatore\",\"a0EjD+\":\"Crea Prodotto\",\"+scrJC\":\"Crea prodotti per il tuo evento, imposta i prezzi e gestisci la quantità disponibile.\",\"sYpiZP\":\"Crea Codice Promozionale\",\"B3Mkdt\":\"Crea Domanda\",\"UKfi21\":\"Crea Tassa o Commissione\",\"d+F6q9\":\"Creato\",\"Q2lUR2\":\"Valuta\",\"DCKkhU\":\"Password Attuale\",\"uIElGP\":\"URL Mappe personalizzate\",\"UEqXyt\":\"Intervallo Personalizzato\",\"876pfE\":\"Cliente\",\"QOg2Sf\":\"Personalizza le impostazioni di email e notifiche per questo evento\",\"Y9Z/vP\":\"Personalizza i messaggi della homepage dell'evento e del checkout\",\"2E2O5H\":\"Personalizza le impostazioni varie per questo evento\",\"iJhSxe\":\"Personalizza le impostazioni SEO per questo evento\",\"KIhhpi\":\"Personalizza la pagina del tuo evento\",\"nrGWUv\":\"Personalizza la pagina del tuo evento per adattarla al tuo brand e stile.\",\"Zz6Cxn\":\"Zona pericolosa\",\"ZQKLI1\":\"Zona pericolosa\",\"7p5kLi\":\"Dashboard\",\"mYGY3B\":\"Data\",\"JvUngl\":\"Data e Ora\",\"JJhRbH\":\"Capacità primo giorno\",\"cnGeoo\":\"Elimina\",\"jRJZxD\":\"Elimina Capacità\",\"VskHIx\":\"Elimina categoria\",\"Qrc8RZ\":\"Elimina Lista Check-In\",\"WHf154\":\"Elimina codice\",\"heJllm\":\"Elimina Copertina\",\"KWa0gi\":\"Elimina Immagine\",\"1l14WA\":\"Elimina prodotto\",\"IatsLx\":\"Elimina domanda\",\"Nu4oKW\":\"Descrizione\",\"YC3oXa\":\"Descrizione per il personale di check-in\",\"URmyfc\":\"Dettagli\",\"1lRT3t\":\"Disabilitando questa capacità verranno monitorate le vendite ma non verranno interrotte quando viene raggiunto il limite\",\"H6Ma8Z\":\"Sconto\",\"ypJ62C\":\"Sconto %\",\"3LtiBI\":[\"Sconto in \",[\"0\"]],\"C8JLas\":\"Tipo di Sconto\",\"1QfxQT\":\"Chiudi\",\"DZlSLn\":\"Etichetta Documento\",\"cVq+ga\":\"Non hai un account? <0>Registrati\",\"3F1nBX\":\"Donazione / Prodotto a offerta libera\",\"OvNbls\":\"Scarica .ics\",\"kodV18\":\"Scarica CSV\",\"CELKku\":\"Scarica fattura\",\"LQrXcu\":\"Scarica Fattura\",\"QIodqd\":\"Scarica Codice QR\",\"yhjU+j\":\"Scaricamento Fattura in corso\",\"uABpqP\":\"Trascina e rilascia o clicca\",\"CfKofC\":\"Selezione a tendina\",\"JzLDvy\":\"Duplica Assegnazioni di Capacità\",\"ulMxl+\":\"Duplica Liste di Check-In\",\"vi8Q/5\":\"Duplica evento\",\"3ogkAk\":\"Duplica Evento\",\"Yu6m6X\":\"Duplica Immagine di Copertina Evento\",\"+fA4C7\":\"Opzioni di Duplicazione\",\"SoiDyI\":\"Duplica Prodotti\",\"57ALrd\":\"Duplica Codici Promozionali\",\"83Hu4O\":\"Duplica Domande\",\"20144c\":\"Duplica Impostazioni\",\"7Cx5It\":\"Prevendita\",\"ePK91l\":\"Modifica\",\"N6j2JH\":[\"Modifica \",[\"0\"]],\"kBkYSa\":\"Modifica Capacità\",\"oHE9JT\":\"Modifica Assegnazione di Capacità\",\"j1Jl7s\":\"Modifica categoria\",\"FU1gvP\":\"Modifica Lista di Check-In\",\"iFgaVN\":\"Modifica Codice\",\"jrBSO1\":\"Modifica Organizzatore\",\"tdD/QN\":\"Modifica Prodotto\",\"n143Tq\":\"Modifica Categoria Prodotto\",\"9BdS63\":\"Modifica Codice Promozionale\",\"O0CE67\":\"Modifica domanda\",\"EzwCw7\":\"Modifica Domanda\",\"poTr35\":\"Modifica utente\",\"GTOcxw\":\"Modifica Utente\",\"pqFrv2\":\"es. 2.50 per $2.50\",\"3yiej1\":\"es. 23.5 per 23.5%\",\"O3oNi5\":\"Email\",\"VxYKoK\":\"Impostazioni Email e Notifiche\",\"ATGYL1\":\"Indirizzo email\",\"hzKQCy\":\"Indirizzo Email\",\"HqP6Qf\":\"Modifica email annullata con successo\",\"mISwW1\":\"Modifica email in attesa\",\"APuxIE\":\"Conferma email inviata nuovamente\",\"YaCgdO\":\"Conferma email inviata nuovamente con successo\",\"jyt+cx\":\"Messaggio piè di pagina email\",\"I6F3cp\":\"Email non verificata\",\"NTZ/NX\":\"Codice di Incorporamento\",\"4rnJq4\":\"Script di Incorporamento\",\"8oPbg1\":\"Abilita Fatturazione\",\"j6w7d/\":\"Abilita questa capacità per interrompere le vendite dei prodotti quando viene raggiunto il limite\",\"VFv2ZC\":\"Data Fine\",\"237hSL\":\"Terminato\",\"nt4UkP\":\"Eventi Terminati\",\"lYGfRP\":\"Inglese\",\"MhVoma\":\"Inserisci un importo escluse tasse e commissioni.\",\"SlfejT\":\"Errore\",\"3Z223G\":\"Errore durante la conferma dell'indirizzo email\",\"a6gga1\":\"Errore durante la conferma della modifica email\",\"5/63nR\":\"EUR\",\"0pC/y6\":\"Evento\",\"CFLUfD\":\"Evento creato con successo 🎉\",\"/dgc8E\":\"Data Evento\",\"0Zptey\":\"Impostazioni Predefinite Evento\",\"QcCPs8\":\"Dettagli Evento\",\"6fuA9p\":\"Evento duplicato con successo\",\"AEuj2m\":\"Homepage Evento\",\"Xe3XMd\":\"L'evento non è visibile al pubblico\",\"4pKXJS\":\"L'evento è visibile al pubblico\",\"ClwUUD\":\"Dettagli della sede e della location dell'evento\",\"OopDbA\":\"Pagina evento\",\"4/If97\":\"Aggiornamento stato evento fallito. Riprova più tardi\",\"btxLWj\":\"Stato evento aggiornato\",\"nMU2d3\":\"URL Evento\",\"tst44n\":\"Eventi\",\"sZg7s1\":\"Data di scadenza\",\"KnN1Tu\":\"Scade\",\"uaSvqt\":\"Data di Scadenza\",\"GS+Mus\":\"Esporta\",\"9xAp/j\":\"Impossibile annullare il partecipante\",\"ZpieFv\":\"Impossibile annullare l'ordine\",\"z6tdjE\":\"Impossibile eliminare il messaggio. Riprova.\",\"xDzTh7\":\"Impossibile scaricare la fattura. Riprova.\",\"9zSt4h\":\"Impossibile esportare i partecipanti. Riprova.\",\"2uGNuE\":\"Impossibile esportare gli ordini. Riprova.\",\"d+KKMz\":\"Impossibile caricare la Lista di Check-In\",\"ZQ15eN\":\"Impossibile reinviare l'email del biglietto\",\"ejXy+D\":\"Impossibile ordinare i prodotti\",\"PLUB/s\":\"Commissione\",\"/mfICu\":\"Commissioni\",\"LyFC7X\":\"Filtra Ordini\",\"cSev+j\":\"Filtri\",\"CVw2MU\":[\"Filtri (\",[\"activeFilterCount\"],\")\"],\"wPmXlA\":\"Primo Numero Fattura\",\"V1EGGU\":\"Nome\",\"kODvZJ\":\"Nome\",\"S+tm06\":\"Il nome deve essere compreso tra 1 e 50 caratteri\",\"1g0dC4\":\"Nome, Cognome e Indirizzo Email sono domande predefinite e sono sempre incluse nel processo di checkout.\",\"Rs/IcB\":\"Primo Utilizzo\",\"TpqW74\":\"Fisso\",\"irpUxR\":\"Importo fisso\",\"TF9opW\":\"Il flash non è disponibile su questo dispositivo\",\"UNMVei\":\"Password dimenticata?\",\"2POOFK\":\"Gratuito\",\"P/OAYJ\":\"Prodotto Gratuito\",\"vAbVy9\":\"Prodotto gratuito, nessuna informazione di pagamento richiesta\",\"nLC6tu\":\"Francese\",\"Weq9zb\":\"Generale\",\"DDcvSo\":\"Tedesco\",\"4GLxhy\":\"Primi Passi\",\"4D3rRj\":\"Torna al profilo\",\"9LCqFI\":\"Vai alla homepage dell'evento\",\"ebIDwV\":\"Google Calendar\",\"RUz8o/\":\"vendite lorde\",\"IgcAGN\":\"Vendite lorde\",\"yRg26W\":\"Vendite Lorde\",\"R4r4XO\":\"Ospiti\",\"26pGvx\":\"Hai un codice promozionale?\",\"V7yhws\":\"hello@awesome-events.com\",\"6K/IHl\":\"Ecco un esempio di come puoi utilizzare il componente nella tua applicazione.\",\"Y1SSqh\":\"Ecco il componente React che puoi utilizzare per incorporare il widget nella tua applicazione.\",\"QuhVpV\":[\"Ciao \",[\"0\"],\" 👋\"],\"Ow9Hz5\":[\"Conferenza Hi.Events \",[\"0\"]],\"verBst\":\"Centro Conferenze Hi.Events\",\"6eMEQO\":\"logo hi.events\",\"C4qOW8\":\"Nascosto dalla vista pubblica\",\"gt3Xw9\":\"domanda nascosta\",\"g3rqFe\":\"domande nascoste\",\"k3dfFD\":\"Le domande nascoste sono visibili solo all'organizzatore dell'evento e non al cliente.\",\"vLyv1R\":\"Nascondi\",\"Mkkvfd\":\"Nascondi pagina di introduzione\",\"mFn5Xz\":\"Nascondi domande nascoste\",\"YHsF9c\":\"Nascondi prodotto dopo la data di fine vendita\",\"06s3w3\":\"Nascondi prodotto prima della data di inizio vendita\",\"axVMjA\":\"Nascondi prodotto a meno che l'utente non abbia un codice promozionale applicabile\",\"ySQGHV\":\"Nascondi prodotto quando esaurito\",\"SCimta\":\"Nascondi la pagina di introduzione dalla barra laterale\",\"5xR17G\":\"Nascondi questo prodotto ai clienti\",\"Da29Y6\":\"Nascondi questa domanda\",\"fvDQhr\":\"Nascondi questo livello agli utenti\",\"lNipG+\":\"Nascondere un prodotto impedirà agli utenti di vederlo sulla pagina dell'evento.\",\"ZOBwQn\":\"Design Homepage\",\"PRuBTd\":\"Designer Homepage\",\"YjVNGZ\":\"Anteprima Homepage\",\"c3E/kw\":\"Homer\",\"8k8Njd\":\"Quanti minuti ha il cliente per completare il proprio ordine. Consigliamo almeno 15 minuti\",\"ySxKZe\":\"Quante volte può essere utilizzato questo codice?\",\"dZsDbK\":[\"Limite di caratteri HTML superato: \",[\"htmlLength\"],\"/\",[\"maxLength\"]],\"fYyXCd\":\"https://example-maps-service.com/...\",\"uOXLV3\":\"Accetto i <0>termini e condizioni\",\"sd6lr7\":\"Vorrei pagare utilizzando un metodo offline\",\"SdFlIP\":\"Vorrei pagare utilizzando un metodo online (carta di credito ecc.)\",\"93DUnd\":[\"Se non si è aperta una nuova scheda, per favore <0><1>\",[\"0\"],\".\"],\"yKdof1\":\"Se vuoto, l'indirizzo verrà utilizzato per generare un link a Google Maps\",\"UYT+c8\":\"Se abilitato, il personale di check-in può sia segnare i partecipanti come registrati sia segnare l'ordine come pagato e registrare i partecipanti. Se disabilitato, i partecipanti associati a ordini non pagati non possono essere registrati.\",\"muXhGi\":\"Se abilitato, l'organizzatore riceverà una notifica via email quando viene effettuato un nuovo ordine\",\"6fLyj/\":\"Se non hai richiesto questa modifica, cambia immediatamente la tua password.\",\"n/ZDCz\":\"Immagine eliminata con successo\",\"Mfbc2v\":\"Le dimensioni dell'immagine devono essere tra 4000px per 4000px. Con un'altezza massima di 4000px e una larghezza massima di 4000px\",\"uPEIvq\":\"L'immagine deve essere inferiore a 5MB\",\"AGZmwV\":\"Immagine caricata con successo\",\"VyUuZb\":\"URL Immagine\",\"ibi52/\":\"La larghezza dell'immagine deve essere almeno 900px e l'altezza almeno 50px\",\"NoNwIX\":\"Inattivo\",\"T0K0yl\":\"Gli utenti inattivi non possono accedere.\",\"kO44sp\":\"Includi dettagli di connessione per il tuo evento online. Questi dettagli saranno mostrati nella pagina di riepilogo dell'ordine e nella pagina del biglietto del partecipante.\",\"FlQKnG\":\"Includi tasse e commissioni nel prezzo\",\"Vi+BiW\":[\"Include \",[\"0\"],\" prodotti\"],\"lpm0+y\":\"Include 1 prodotto\",\"UiAk5P\":\"Inserisci Immagine\",\"OyLdaz\":\"Invito reinviato!\",\"HE6KcK\":\"Invito revocato!\",\"SQKPvQ\":\"Invita Utente\",\"bKOYkd\":\"Fattura scaricata con successo\",\"alD1+n\":\"Note Fattura\",\"kOtCs2\":\"Numerazione Fattura\",\"UZ2GSZ\":\"Impostazioni Fattura\",\"PgdQrx\":\"Emetti rimborso\",\"HX5SVx\":\"Articolo\",\"KFXip/\":\"John\",\"XcgRvb\":\"Johnson\",\"87a/t/\":\"Etichetta\",\"vXIe7J\":\"Lingua\",\"2LMsOq\":\"Ultimi 12 mesi\",\"vfe90m\":\"Ultimi 14 giorni\",\"aK4uBd\":\"Ultime 24 ore\",\"uq2BmQ\":\"Ultimi 30 giorni\",\"bB6Ram\":\"Ultime 48 ore\",\"VlnB7s\":\"Ultimi 6 mesi\",\"ct2SYD\":\"Ultimi 7 giorni\",\"XgOuA7\":\"Ultimi 90 giorni\",\"I3yitW\":\"Ultimo accesso\",\"1ZaQUH\":\"Cognome\",\"UXBCwc\":\"Cognome\",\"tKCBU0\":\"Ultimo Utilizzo\",\"tITjB1\":\"Scopri di più su Stripe\",\"enV0g0\":\"Lascia vuoto per utilizzare la parola predefinita \\\"Fattura\\\"\",\"vR92Yn\":\"Iniziamo creando il tuo primo organizzatore\",\"Z3FXyt\":\"Caricamento...\",\"wJijgU\":\"Luogo\",\"sQia9P\":\"Accedi\",\"zUDyah\":\"Accesso in corso\",\"z0t9bb\":\"Login\",\"nOhz3x\":\"Esci\",\"F2jAFv\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nam placerat elementum...\",\"NJahlc\":\"Rendi obbligatorio l'indirizzo di fatturazione durante il checkout\",\"MU3ijv\":\"Rendi obbligatoria questa domanda\",\"wckWOP\":\"Gestisci\",\"onpJrA\":\"Gestisci partecipante\",\"n4SpU5\":\"Gestisci evento\",\"WVgSTy\":\"Gestisci ordine\",\"1MAvUY\":\"Gestisci le impostazioni di pagamento e fatturazione per questo evento.\",\"cQrNR3\":\"Gestisci Profilo\",\"AtXtSw\":\"Gestisci tasse e commissioni che possono essere applicate ai tuoi prodotti\",\"ophZVW\":\"Gestisci biglietti\",\"DdHfeW\":\"Gestisci i dettagli del tuo account e le impostazioni predefinite\",\"S+UjNL\":\"Gestisci i dettagli dei tuoi pagamenti Stripe\",\"BfucwY\":\"Gestisci i tuoi utenti e le loro autorizzazioni\",\"1m+YT2\":\"Le domande obbligatorie devono essere risposte prima che il cliente possa procedere al checkout.\",\"Dim4LO\":\"Aggiungi manualmente un Partecipante\",\"e4KdjJ\":\"Aggiungi Manualmente Partecipante\",\"vFjEnF\":\"Segna come pagato\",\"g9dPPQ\":\"Massimo Per Ordine\",\"l5OcwO\":\"Messaggio al partecipante\",\"Gv5AMu\":\"Messaggio ai Partecipanti\",\"oUCR3c\":\"Invia messaggi ai partecipanti con prodotti specifici\",\"Lvi+gV\":\"Messaggio all'acquirente\",\"tNZzFb\":\"Contenuto del Messaggio\",\"lYDV/s\":\"Invia messaggio ai singoli partecipanti\",\"V7DYWd\":\"Messaggio Inviato\",\"t7TeQU\":\"Messaggi\",\"xFRMlO\":\"Minimo Per Ordine\",\"QYcUEf\":\"Prezzo Minimo\",\"RDie0n\":\"Varie\",\"mYLhkl\":\"Impostazioni Varie\",\"KYveV8\":\"Casella di testo multilinea\",\"VD0iA7\":\"Opzioni di prezzo multiple. Perfetto per prodotti early bird ecc.\",\"/bhMdO\":\"La mia fantastica descrizione dell'evento...\",\"vX8/tc\":\"Il mio fantastico titolo dell'evento...\",\"hKtWk2\":\"Il Mio Profilo\",\"fj5byd\":\"N/D\",\"pRjx4L\":\"Nam placerat elementum...\",\"6YtxFj\":\"Nome\",\"hVuv90\":\"Il nome deve essere inferiore a 150 caratteri\",\"AIUkyF\":\"Vai al Partecipante\",\"qqeAJM\":\"Mai\",\"7vhWI8\":\"Nuova Password\",\"1UzENP\":\"No\",\"eRblWH\":[\"Non \",[\"0\"],\" disponibile.\"],\"LNWHXb\":\"Nessun evento archiviato da mostrare.\",\"q2LEDV\":\"Nessun partecipante trovato per questo ordine.\",\"zlHa5R\":\"Nessun partecipante è stato aggiunto a questo ordine.\",\"Wjz5KP\":\"Nessun Partecipante da mostrare\",\"Razen5\":\"Nessun partecipante potrà effettuare il check-in prima di questa data utilizzando questa lista\",\"XUfgCI\":\"Nessuna Assegnazione di Capacità\",\"a/gMx2\":\"Nessuna Lista di Check-In\",\"tMFDem\":\"Nessun dato disponibile\",\"6Z/F61\":\"Nessun dato da mostrare. Seleziona un intervallo di date\",\"fFeCKc\":\"Nessuno Sconto\",\"HFucK5\":\"Nessun evento terminato da mostrare.\",\"yAlJXG\":\"Nessun evento da mostrare\",\"GqvPcv\":\"Nessun filtro disponibile\",\"KPWxKD\":\"Nessun messaggio da mostrare\",\"J2LkP8\":\"Nessun ordine da mostrare\",\"RBXXtB\":\"Nessun metodo di pagamento è attualmente disponibile. Contatta l'organizzatore dell'evento per assistenza.\",\"ZWEfBE\":\"Nessun Pagamento Richiesto\",\"ZPoHOn\":\"Nessun prodotto associato a questo partecipante.\",\"Ya1JhR\":\"Nessun prodotto disponibile in questa categoria.\",\"FTfObB\":\"Ancora Nessun Prodotto\",\"+Y976X\":\"Nessun Codice Promozionale da mostrare\",\"MAavyl\":\"Nessuna domanda risposta da questo partecipante.\",\"SnlQeq\":\"Nessuna domanda è stata posta per questo ordine.\",\"Ev2r9A\":\"Nessun risultato\",\"gk5uwN\":\"Nessun Risultato di Ricerca\",\"RHyZUL\":\"Nessun risultato di ricerca.\",\"RY2eP1\":\"Nessuna Tassa o Commissione è stata aggiunta.\",\"EdQY6l\":\"Nessuno\",\"OJx3wK\":\"Non disponibile\",\"Scbrsn\":\"Non in Vendita\",\"1DBGsz\":\"Note\",\"jtrY3S\":\"Ancora niente da mostrare\",\"hFwWnI\":\"Impostazioni Notifiche\",\"xXqEPO\":\"Notifica all'acquirente il rimborso\",\"YpN29s\":\"Notifica all'organizzatore i nuovi ordini\",\"qeQhNj\":\"Ora creiamo il tuo primo evento\",\"omyBS0\":\"Numero di giorni consentiti per il pagamento (lasciare vuoto per omettere i termini di pagamento dalle fatture)\",\"n86jmj\":\"Prefisso Numero\",\"mwe+2z\":\"Gli ordini offline non sono riflessi nelle statistiche dell'evento finché l'ordine non viene contrassegnato come pagato.\",\"dWBrJX\":\"Pagamento offline fallito. Riprova o contatta l'organizzatore dell'evento.\",\"fcnqjw\":\"Istruzioni per il Pagamento Offline\",\"+eZ7dp\":\"Pagamenti Offline\",\"ojDQlR\":\"Informazioni sui Pagamenti Offline\",\"u5oO/W\":\"Impostazioni Pagamenti Offline\",\"2NPDz1\":\"In vendita\",\"Ldu/RI\":\"In Vendita\",\"Ug4SfW\":\"Una volta creato un evento, lo vedrai qui.\",\"ZxnK5C\":\"Una volta che inizi a raccogliere dati, li vedrai qui.\",\"PnSzEc\":\"Quando sei pronto, rendi attivo il tuo evento e inizia a vendere prodotti.\",\"J6n7sl\":\"In Corso\",\"z+nuVJ\":\"Evento online\",\"WKHW0N\":\"Dettagli Evento Online\",\"/xkmKX\":\"Solo le email importanti, direttamente correlate a questo evento, dovrebbero essere inviate utilizzando questo modulo.\\nQualsiasi uso improprio, incluso l'invio di email promozionali, porterà al ban immediato dell'account.\",\"Qqqrwa\":\"Apri Pagina di Check-In\",\"OdnLE4\":\"Apri barra laterale\",\"ZZEYpT\":[\"Opzione \",[\"i\"]],\"oPknTP\":\"Informazioni aggiuntive opzionali da visualizzare su tutte le fatture (ad es. termini di pagamento, penali per ritardo, politica di reso)\",\"OrXJBY\":\"Prefisso opzionale per i numeri di fattura (ad es., FATT-)\",\"0zpgxV\":\"Opzioni\",\"BzEFor\":\"o\",\"UYUgdb\":\"Ordine\",\"mm+eaX\":\"Order #\",\"B3gPuX\":\"Ordine Annullato\",\"SIbded\":\"Ordine Completato\",\"q/CcwE\":\"Data Ordine\",\"Tol4BF\":\"Dettagli Ordine\",\"WbImlQ\":\"L'ordine è stato annullato e il proprietario dell'ordine è stato avvisato.\",\"nAn4Oe\":\"Ordine contrassegnato come pagato\",\"uzEfRz\":\"Note Ordine\",\"VCOi7U\":\"Domande ordine\",\"TPoYsF\":\"Riferimento Ordine\",\"acIJ41\":\"Stato Ordine\",\"GX6dZv\":\"Riepilogo Ordine\",\"tDTq0D\":\"Timeout ordine\",\"1h+RBg\":\"Ordini\",\"3y+V4p\":\"Indirizzo Organizzazione\",\"GVcaW6\":\"Dettagli Organizzazione\",\"nfnm9D\":\"Nome Organizzazione\",\"G5RhpL\":\"Organizzatore\",\"mYygCM\":\"L'organizzatore è obbligatorio\",\"Pa6G7v\":\"Nome Organizzatore\",\"l894xP\":\"Gli organizzatori possono gestire solo eventi e prodotti. Non possono gestire utenti, impostazioni dell'account o informazioni di fatturazione.\",\"fdjq4c\":\"Spaziatura\",\"ErggF8\":\"Colore sfondo pagina\",\"8F1i42\":\"Pagina non trovata\",\"QbrUIo\":\"Visualizzazioni pagina\",\"6D8ePg\":\"pagina.\",\"IkGIz8\":\"pagato\",\"HVW65c\":\"Prodotto a Pagamento\",\"ZfxaB4\":\"Parzialmente Rimborsato\",\"8ZsakT\":\"Password\",\"TUJAyx\":\"La password deve essere di almeno 8 caratteri\",\"vwGkYB\":\"La password deve essere di almeno 8 caratteri\",\"BLTZ42\":\"Password reimpostata con successo. Accedi con la tua nuova password.\",\"f7SUun\":\"Le password non sono uguali\",\"aEDp5C\":\"Incolla questo dove vuoi che appaia il widget.\",\"+23bI/\":\"Patrick\",\"iAS9f2\":\"patrick@acme.com\",\"621rYf\":\"Pagamento\",\"Lg+ewC\":\"Pagamento e Fatturazione\",\"DZjk8u\":\"Impostazioni Pagamento e Fatturazione\",\"lflimf\":\"Periodo di Scadenza Pagamento\",\"JhtZAK\":\"Pagamento Fallito\",\"JEdsvQ\":\"Istruzioni di Pagamento\",\"bLB3MJ\":\"Metodi di Pagamento\",\"QzmQBG\":\"Fornitore di pagamento\",\"lsxOPC\":\"Pagamento Ricevuto\",\"wJTzyi\":\"Stato Pagamento\",\"xgav5v\":\"Pagamento riuscito!\",\"R29lO5\":\"Termini di Pagamento\",\"/roQKz\":\"Percentuale\",\"vPJ1FI\":\"Importo Percentuale\",\"xdA9ud\":\"Inserisci questo nel tag del tuo sito web.\",\"blK94r\":\"Aggiungi almeno un'opzione\",\"FJ9Yat\":\"Verifica che le informazioni fornite siano corrette\",\"TkQVup\":\"Controlla la tua email e password e riprova\",\"sMiGXD\":\"Verifica che la tua email sia valida\",\"Ajavq0\":\"Controlla la tua email per confermare il tuo indirizzo email\",\"MdfrBE\":\"Completa il modulo sottostante per accettare il tuo invito\",\"b1Jvg+\":\"Continua nella nuova scheda\",\"hcX103\":\"Crea un prodotto\",\"cdR8d6\":\"Crea un biglietto\",\"x2mjl4\":\"Inserisci un URL valido che punti a un'immagine.\",\"HnNept\":\"Inserisci la tua nuova password\",\"5FSIzj\":\"Nota Bene\",\"C63rRe\":\"Torna alla pagina dell'evento per ricominciare.\",\"pJLvdS\":\"Seleziona\",\"Ewir4O\":\"Seleziona almeno un prodotto\",\"igBrCH\":\"Verifica il tuo indirizzo email per accedere a tutte le funzionalità\",\"/IzmnP\":\"Attendi mentre prepariamo la tua fattura...\",\"MOERNx\":\"Portoghese\",\"qCJyMx\":\"Messaggio post checkout\",\"g2UNkE\":\"Offerto da\",\"Rs7IQv\":\"Messaggio pre checkout\",\"rdUucN\":\"Anteprima\",\"a7u1N9\":\"Prezzo\",\"CmoB9j\":\"Modalità visualizzazione prezzo\",\"BI7D9d\":\"Prezzo non impostato\",\"Q8PWaJ\":\"Livelli di prezzo\",\"q6XHL1\":\"Tipo di Prezzo\",\"6RmHKN\":\"Colore Primario\",\"G/ZwV1\":\"Colore Primario\",\"8cBtvm\":\"Colore Testo Primario\",\"BZz12Q\":\"Stampa\",\"MT7dxz\":\"Stampa Tutti i Biglietti\",\"DKwDdj\":\"Stampa Biglietti\",\"K47k8R\":\"Prodotto\",\"1JwlHk\":\"Categoria Prodotto\",\"U61sAj\":\"Categoria prodotto aggiornata con successo.\",\"1USFWA\":\"Prodotto eliminato con successo\",\"4Y2FZT\":\"Tipo di Prezzo Prodotto\",\"mFwX0d\":\"Domande prodotto\",\"Lu+kBU\":\"Vendite Prodotti\",\"U/R4Ng\":\"Livello Prodotto\",\"sJsr1h\":\"Tipo di Prodotto\",\"o1zPwM\":\"Anteprima Widget Prodotto\",\"ktyvbu\":\"Prodotto/i\",\"N0qXpE\":\"Prodotti\",\"ggqAiw\":\"prodotti venduti\",\"Vla0Bo\":\"Prodotti venduti\",\"/u4DIx\":\"Prodotti Venduti\",\"DJQEZc\":\"Prodotti ordinati con successo\",\"vERlcd\":\"Profilo\",\"kUlL8W\":\"Profilo aggiornato con successo\",\"cl5WYc\":[\"Codice promo \",[\"promo_code\"],\" applicato\"],\"P5sgAk\":\"Codice Promo\",\"yKWfjC\":\"Pagina Codice Promo\",\"RVb8Fo\":\"Codici Promo\",\"BZ9GWa\":\"I codici promo possono essere utilizzati per offrire sconti, accesso in prevendita o fornire accesso speciale al tuo evento.\",\"OP094m\":\"Report Codici Promo\",\"4kyDD5\":\"Fornisci contesto aggiuntivo o istruzioni per questa domanda. Usa questo campo per aggiungere termini\\ne condizioni, linee guida o qualsiasi informazione importante che i partecipanti devono conoscere prima di rispondere.\",\"toutGW\":\"Codice QR\",\"LkMOWF\":\"Quantità Disponibile\",\"oCLG0M\":\"Quantità Venduta\",\"XKJuAX\":\"Domanda eliminata\",\"avf0gk\":\"Descrizione Domanda\",\"oQvMPn\":\"Titolo Domanda\",\"enzGAL\":\"Domande\",\"ROv2ZT\":\"Domande e Risposte\",\"K885Eq\":\"Domande ordinate con successo\",\"OMJ035\":\"Opzione Radio\",\"C4TjpG\":\"Leggi meno\",\"I3QpvQ\":\"Destinatario\",\"N2C89m\":\"Riferimento\",\"gxFu7d\":[\"Importo rimborso (\",[\"0\"],\")\"],\"WZbCR3\":\"Rimborso Fallito\",\"n10yGu\":\"Rimborsa ordine\",\"zPH6gp\":\"Rimborsa Ordine\",\"RpwiYC\":\"Rimborso in Attesa\",\"xHpVRl\":\"Stato Rimborso\",\"/BI0y9\":\"Rimborsato\",\"fgLNSM\":\"Registrati\",\"9+8Vez\":\"Utilizzi Rimanenti\",\"tasfos\":\"rimuovi\",\"t/YqKh\":\"Rimuovi\",\"t9yxlZ\":\"Report\",\"prZGMe\":\"Richiedi Indirizzo di Fatturazione\",\"EGm34e\":\"Reinvia email di conferma\",\"lnrkNz\":\"Reinvia conferma email\",\"wIa8Qe\":\"Reinvia invito\",\"VeKsnD\":\"Reinvia email ordine\",\"dFuEhO\":\"Reinvia email biglietto\",\"o6+Y6d\":\"Reinvio in corso...\",\"OfhWJH\":\"Reimposta\",\"RfwZxd\":\"Reimposta password\",\"KbS2K9\":\"Reimposta Password\",\"e99fHm\":\"Ripristina evento\",\"vtc20Z\":\"Torna alla pagina dell'evento\",\"s8v9hq\":\"Torna alla Pagina dell'Evento\",\"8YBH95\":\"Ricavi\",\"PO/sOY\":\"Revoca invito\",\"GDvlUT\":\"Ruolo\",\"ELa4O9\":\"Data Fine Vendita\",\"5uo5eP\":\"Vendita terminata\",\"Qm5XkZ\":\"Data Inizio Vendita\",\"hBsw5C\":\"Vendite terminate\",\"kpAzPe\":\"Inizio vendite\",\"P/wEOX\":\"San Francisco\",\"tfDRzk\":\"Salva\",\"IUwGEM\":\"Salva Modifiche\",\"U65fiW\":\"Salva Organizzatore\",\"UGT5vp\":\"Salva Impostazioni\",\"ovB7m2\":\"Scansiona Codice QR\",\"EEU0+z\":\"Scansiona questo codice QR per accedere alla pagina dell'evento o condividerla con altri\",\"W4kWXJ\":\"Cerca per nome partecipante, email o numero ordine...\",\"+pr/FY\":\"Cerca per nome evento...\",\"3zRbWw\":\"Cerca per nome, email o numero ordine...\",\"L22Tdf\":\"Cerca per nome, numero ordine, numero partecipante o email...\",\"BiYOdA\":\"Cerca per nome...\",\"YEjitp\":\"Cerca per oggetto o contenuto...\",\"Pjsch9\":\"Cerca assegnazioni di capacità...\",\"r9M1hc\":\"Cerca liste di check-in...\",\"+0Yy2U\":\"Cerca prodotti\",\"YIix5Y\":\"Cerca...\",\"OeW+DS\":\"Colore secondario\",\"DnXcDK\":\"Colore Secondario\",\"cZF6em\":\"Colore testo secondario\",\"ZIgYeg\":\"Colore Testo Secondario\",\"02ePaq\":[\"Seleziona \",[\"0\"]],\"QuNKRX\":\"Seleziona Fotocamera\",\"9FQEn8\":\"Seleziona categoria...\",\"kWI/37\":\"Seleziona organizzatore\",\"ixIx1f\":\"Seleziona Prodotto\",\"3oSV95\":\"Seleziona Livello Prodotto\",\"C4Y1hA\":\"Seleziona prodotti\",\"hAjDQy\":\"Seleziona stato\",\"QYARw/\":\"Seleziona Biglietto\",\"OMX4tH\":\"Seleziona biglietti\",\"DrwwNd\":\"Seleziona periodo di tempo\",\"O/7I0o\":\"Seleziona...\",\"JlFcis\":\"Invia\",\"qKWv5N\":[\"Invia una copia a <0>\",[\"0\"],\"\"],\"RktTWf\":\"Invia un messaggio\",\"/mQ/tD\":\"Invia come test. Questo invierà il messaggio al tuo indirizzo email invece che ai destinatari.\",\"M/WIer\":\"Invia Messaggio\",\"D7ZemV\":\"Invia email di conferma ordine e biglietto\",\"v1rRtW\":\"Invia Test\",\"4Ml90q\":\"SEO\",\"j1VfcT\":\"Descrizione SEO\",\"/SIY6o\":\"Parole Chiave SEO\",\"GfWoKv\":\"Impostazioni SEO\",\"rXngLf\":\"Titolo SEO\",\"/jZOZa\":\"Commissione di Servizio\",\"Bj/QGQ\":\"Imposta un prezzo minimo e permetti agli utenti di pagare di più se lo desiderano\",\"L0pJmz\":\"Imposta il numero iniziale per la numerazione delle fatture. Questo non può essere modificato una volta che le fatture sono state generate.\",\"nYNT+5\":\"Configura il tuo evento\",\"A8iqfq\":\"Metti online il tuo evento\",\"Tz0i8g\":\"Impostazioni\",\"Z8lGw6\":\"Condividi\",\"B2V3cA\":\"Condividi Evento\",\"17Fd7X\":\"Condividi su Facebook\",\"x7i6H+\":\"Condividi su LinkedIn\",\"zziQd8\":\"Condividi su Pinterest\",\"/TgBEk\":\"Condividi su Reddit\",\"0Wlk5F\":\"Condividi sui Social\",\"on+mNS\":\"Condividi su Telegram\",\"PcmR+m\":\"Condividi su WhatsApp\",\"/5b1iZ\":\"Condividi su X\",\"n/T2KI\":\"Condividi via Email\",\"8vETh9\":\"Mostra\",\"V0SbFp\":\"Mostra quantità prodotto disponibile\",\"qDsmzu\":\"Mostra domande nascoste\",\"fMPkxb\":\"Mostra altro\",\"izwOOD\":\"Mostra tasse e commissioni separatamente\",\"1SbbH8\":\"Mostrato al cliente dopo il checkout, nella pagina di riepilogo dell'ordine.\",\"YfHZv0\":\"Mostrato al cliente prima del checkout\",\"CBBcly\":\"Mostra i campi comuni dell'indirizzo, incluso il paese\",\"yTnnYg\":\"Simpson\",\"TNaCfq\":\"Casella di testo a riga singola\",\"+P0Cn2\":\"Salta questo passaggio\",\"YSEnLE\":\"Smith\",\"lgFfeO\":\"Esaurito\",\"Mi1rVn\":\"Esaurito\",\"nwtY4N\":\"Qualcosa è andato storto\",\"GRChTw\":\"Qualcosa è andato storto durante l'eliminazione della Tassa o Commissione\",\"YHFrbe\":\"Qualcosa è andato storto! Riprova\",\"kf83Ld\":\"Qualcosa è andato storto.\",\"fWsBTs\":\"Qualcosa è andato storto. Riprova.\",\"F6YahU\":\"Spiacenti, qualcosa è andato storto. Riavvia il processo di checkout.\",\"KWgppI\":\"Spiacenti, qualcosa è andato storto durante il caricamento di questa pagina.\",\"/TCOIK\":\"Spiacenti, questo ordine non esiste più.\",\"6a/UJE\":\"Spiacenti, questo codice promo non è riconosciuto\",\"65A04M\":\"Spagnolo\",\"mFuBqb\":\"Prodotto standard con prezzo fisso\",\"D3iCkb\":\"Data Inizio\",\"/2by1f\":\"Stato o Regione\",\"uAQUqI\":\"Stato\",\"4HXezG\":\"Stripe\",\"WbopAG\":\"I pagamenti Stripe non sono abilitati per questo evento.\",\"UJmAAK\":\"Oggetto\",\"X2rrlw\":\"Subtotale\",\"zzDlyQ\":\"Successo\",\"b0HJ45\":[\"Successo! \",[\"0\"],\" riceverà un'email a breve.\"],\"BJIEiF\":[\"Partecipante \",[\"0\"],\" con successo\"],\"OtgNFx\":\"Indirizzo email confermato con successo\",\"IKwyaF\":\"Modifica email confermata con successo\",\"zLmvhE\":\"Partecipante creato con successo\",\"gP22tw\":\"Prodotto Creato con Successo\",\"9mZEgt\":\"Codice Promo Creato con Successo\",\"aIA9C4\":\"Domanda Creata con Successo\",\"J3RJSZ\":\"Partecipante aggiornato con successo\",\"3suLF0\":\"Assegnazione Capacità aggiornata con successo\",\"Z+rnth\":\"Lista Check-In aggiornata con successo\",\"vzJenu\":\"Impostazioni Email Aggiornate con Successo\",\"7kOMfV\":\"Evento Aggiornato con Successo\",\"G0KW+e\":\"Design Homepage Aggiornato con Successo\",\"k9m6/E\":\"Impostazioni Homepage Aggiornate con Successo\",\"y/NR6s\":\"Posizione Aggiornata con Successo\",\"73nxDO\":\"Impostazioni Varie Aggiornate con Successo\",\"4H80qv\":\"Ordine aggiornato con successo\",\"6xCBVN\":\"Impostazioni di Pagamento e Fatturazione Aggiornate con Successo\",\"1Ycaad\":\"Prodotto aggiornato con successo\",\"70dYC8\":\"Codice Promo Aggiornato con Successo\",\"F+pJnL\":\"Impostazioni SEO Aggiornate con Successo\",\"DXZRk5\":\"Suite 100\",\"GNcfRk\":\"Email di Supporto\",\"uRfugr\":\"T-shirt\",\"JpohL9\":\"Tassa\",\"geUFpZ\":\"Tasse e Commissioni\",\"dFHcIn\":\"Dettagli Fiscali\",\"wQzCPX\":\"Informazioni fiscali da mostrare in fondo a tutte le fatture (es. numero di partita IVA, registrazione fiscale)\",\"0RXCDo\":\"Tassa o Commissione eliminata con successo\",\"ZowkxF\":\"Tasse\",\"qu6/03\":\"Tasse e Commissioni\",\"gypigA\":\"Quel codice promo non è valido\",\"5ShqeM\":\"La lista di check-in che stai cercando non esiste.\",\"QXlz+n\":\"La valuta predefinita per i tuoi eventi.\",\"mnafgQ\":\"Il fuso orario predefinito per i tuoi eventi.\",\"o7s5FA\":\"La lingua in cui il partecipante riceverà le email.\",\"NlfnUd\":\"Il link che hai cliccato non è valido.\",\"HsFnrk\":[\"Il numero massimo di prodotti per \",[\"0\"],\"è \",[\"1\"]],\"TSAiPM\":\"La pagina che stai cercando non esiste\",\"MSmKHn\":\"Il prezzo mostrato al cliente includerà tasse e commissioni.\",\"6zQOg1\":\"Il prezzo mostrato al cliente non includerà tasse e commissioni. Saranno mostrate separatamente\",\"ne/9Ur\":\"Le impostazioni di stile che scegli si applicano solo all'HTML copiato e non saranno memorizzate.\",\"vQkyB3\":\"Le tasse e commissioni da applicare a questo prodotto. Puoi creare nuove tasse e commissioni nella\",\"esY5SG\":\"Il titolo dell'evento che verrà visualizzato nei risultati dei motori di ricerca e quando si condivide sui social media. Per impostazione predefinita, verrà utilizzato il titolo dell'evento\",\"wDx3FF\":\"Non ci sono prodotti disponibili per questo evento\",\"pNgdBv\":\"Non ci sono prodotti disponibili in questa categoria\",\"rMcHYt\":\"C'è un rimborso in attesa. Attendi che sia completato prima di richiedere un altro rimborso.\",\"F89D36\":\"Si è verificato un errore nel contrassegnare l'ordine come pagato\",\"68Axnm\":\"Si è verificato un errore durante l'elaborazione della tua richiesta. Riprova.\",\"mVKOW6\":\"Si è verificato un errore durante l'invio del tuo messaggio\",\"AhBPHd\":\"Questi dettagli saranno mostrati solo se l'ordine è completato con successo. Gli ordini in attesa di pagamento non mostreranno questo messaggio.\",\"Pc/Wtj\":\"Questo partecipante ha un ordine non pagato.\",\"mf3FrP\":\"Questa categoria non ha ancora prodotti.\",\"8QH2Il\":\"Questa categoria è nascosta alla vista pubblica\",\"xxv3BZ\":\"Questa lista di check-in è scaduta\",\"Sa7w7S\":\"Questa lista di check-in è scaduta e non è più disponibile per i check-in.\",\"Uicx2U\":\"Questa lista di check-in è attiva\",\"1k0Mp4\":\"Questa lista di check-in non è ancora attiva\",\"K6fmBI\":\"Questa lista di check-in non è ancora attiva e non è disponibile per i check-in.\",\"t/ePFj\":\"Questa descrizione sarà mostrata al personale di check-in\",\"MLTkH7\":\"Questa email non è promozionale ed è direttamente correlata all'evento.\",\"2eIpBM\":\"Questo evento non è disponibile al momento. Torna più tardi..\",\"Z6LdQU\":\"Questo evento non è disponibile.\",\"MMd2TJ\":\"Queste informazioni saranno mostrate nella pagina di pagamento, nella pagina di riepilogo dell'ordine e nell'email di conferma dell'ordine.\",\"XAHqAg\":\"Questo è un prodotto generico, come una maglietta o una tazza. Non verrà emesso alcun biglietto\",\"CNk/ro\":\"Questo è un evento online\",\"FwXnJd\":\"Questa lista non sarà più disponibile per i check-in dopo questa data\",\"cHO4ec\":\"Questo messaggio sarà incluso nel piè di pagina di tutte le email inviate da questo evento\",\"55i7Fa\":\"Questo messaggio sarà mostrato solo se l'ordine è completato con successo. Gli ordini in attesa di pagamento non mostreranno questo messaggio\",\"RjwlZt\":\"Questo ordine è già stato pagato.\",\"5K8REg\":\"Questo ordine è già stato rimborsato.\",\"OiQMhP\":\"Questo ordine è stato annullato\",\"YyEJij\":\"Questo ordine è stato annullato.\",\"Q0zd4P\":\"Questo ordine è scaduto. Per favore ricomincia.\",\"HILpDX\":\"Questo ordine è in attesa di pagamento\",\"BdYtn9\":\"Questo ordine è completo\",\"e3uMJH\":\"Questo ordine è completo.\",\"YNKXOK\":\"Questo ordine è in elaborazione.\",\"yPZN4i\":\"Questa pagina dell'ordine non è più disponibile.\",\"i0TtkR\":\"Questo sovrascrive tutte le impostazioni di visibilità e nasconderà il prodotto a tutti i clienti.\",\"cRRc+F\":\"Questo prodotto non può essere eliminato perché è associato a un ordine. Puoi invece nasconderlo.\",\"3Kzsk7\":\"Questo prodotto è un biglietto. Agli acquirenti verrà emesso un biglietto al momento dell'acquisto\",\"0fT4x3\":\"Questo prodotto è nascosto alla vista pubblica\",\"Y/x1MZ\":\"Questo prodotto è nascosto a meno che non sia oggetto di un Codice Promo\",\"Qt7RBu\":\"Questa domanda è visibile solo all'organizzatore dell'evento\",\"os29v1\":\"Questo link per reimpostare la password non è valido o è scaduto.\",\"IV9xTT\":\"Questo utente non è attivo, poiché non ha accettato il suo invito.\",\"5AnPaO\":\"biglietto\",\"kjAL4v\":\"Biglietto\",\"dtGC3q\":\"Email del biglietto reinviata al partecipante\",\"54q0zp\":\"Biglietti per\",\"xN9AhL\":[\"Livello \",[\"0\"]],\"jZj9y9\":\"Prodotto a Livelli\",\"8wITQA\":\"I prodotti a livelli ti permettono di offrire più opzioni di prezzo per lo stesso prodotto. È perfetto per prodotti in prevendita o per offrire diverse opzioni di prezzo per diversi gruppi di persone.\",\"nn3mSR\":\"Tempo rimasto:\",\"s/0RpH\":\"Volte utilizzato\",\"y55eMd\":\"Volte Utilizzato\",\"40Gx0U\":\"Fuso orario\",\"oDGm7V\":\"SUGGERIMENTO\",\"MHrjPM\":\"Titolo\",\"xdA/+p\":\"Strumenti\",\"72c5Qo\":\"Totale\",\"YXx+fG\":\"Totale Prima degli Sconti\",\"NRWNfv\":\"Importo Totale Sconto\",\"BxsfMK\":\"Commissioni Totali\",\"2bR+8v\":\"Vendite Lorde Totali\",\"mpB/d9\":\"Importo totale ordine\",\"m3FM1g\":\"Totale rimborsato\",\"jEbkcB\":\"Totale Rimborsato\",\"GBBIy+\":\"Totale rimanente\",\"/SgoNA\":\"Tasse Totali\",\"+zy2Nq\":\"Tipo\",\"FMdMfZ\":\"Impossibile registrare il partecipante\",\"bPWBLL\":\"Impossibile registrare l'uscita del partecipante\",\"9+P7zk\":\"Impossibile creare il prodotto. Controlla i tuoi dati\",\"WLxtFC\":\"Impossibile creare il prodotto. Controlla i tuoi dati\",\"/cSMqv\":\"Impossibile creare la domanda. Controlla i tuoi dati\",\"MH/lj8\":\"Impossibile aggiornare la domanda. Controlla i tuoi dati\",\"nnfSdK\":\"Clienti Unici\",\"Mqy/Zy\":\"Stati Uniti\",\"NIuIk1\":\"Illimitato\",\"/p9Fhq\":\"Disponibilità illimitata\",\"E0q9qH\":\"Utilizzi illimitati consentiti\",\"h10Wm5\":\"Ordine Non Pagato\",\"ia8YsC\":\"In Arrivo\",\"TlEeFv\":\"Eventi in Arrivo\",\"L/gNNk\":[\"Aggiorna \",[\"0\"]],\"+qqX74\":\"Aggiorna nome, descrizione e date dell'evento\",\"vXPSuB\":\"Aggiorna profilo\",\"BNBfrU\":\"Carica Copertina\",\"IagCbF\":\"URL\",\"UtDm3q\":\"URL copiato negli appunti\",\"e5lF64\":\"Esempio di Utilizzo\",\"fiV0xj\":\"Limite di Utilizzo\",\"sGEOe4\":\"Usa una versione sfocata dell'immagine di copertina come sfondo\",\"OadMRm\":\"Usa immagine di copertina\",\"7PzzBU\":\"Utente\",\"yDOdwQ\":\"Gestione Utenti\",\"Sxm8rQ\":\"Utenti\",\"VEsDvU\":\"Gli utenti possono modificare la loro email in <0>Impostazioni Profilo\",\"vgwVkd\":\"UTC\",\"khBZkl\":\"IVA\",\"E/9LUk\":\"Nome della Sede\",\"jpctdh\":\"Visualizza\",\"Pte1Hv\":\"Visualizza Dettagli Partecipante\",\"/5PEQz\":\"Visualizza pagina evento\",\"fFornT\":\"Visualizza messaggio completo\",\"YIsEhQ\":\"Visualizza mappa\",\"Ep3VfY\":\"Visualizza su Google Maps\",\"Y8s4f6\":\"Visualizza dettagli ordine\",\"QIWCnW\":\"Lista check-in VIP\",\"tF+VVr\":\"Biglietto VIP\",\"2q/Q7x\":\"Visibilità\",\"vmOFL/\":\"Non è stato possibile elaborare il tuo pagamento. Riprova o contatta l'assistenza.\",\"45Srzt\":\"Non è stato possibile eliminare la categoria. Riprova.\",\"/DNy62\":[\"Non abbiamo trovato biglietti corrispondenti a \",[\"0\"]],\"1E0vyy\":\"Non è stato possibile caricare i dati. Riprova.\",\"NmpGKr\":\"Non è stato possibile riordinare le categorie. Riprova.\",\"VGioT0\":\"Consigliamo dimensioni di 2160px per 1080px e una dimensione massima del file di 5MB\",\"b9UB/w\":\"Utilizziamo Stripe per elaborare i pagamenti. Collega il tuo account Stripe per iniziare a ricevere pagamenti.\",\"01WH0a\":\"Non siamo riusciti a confermare il tuo pagamento. Riprova o contatta l'assistenza.\",\"Gspam9\":\"Stiamo elaborando il tuo ordine. Attendere prego...\",\"LuY52w\":\"Benvenuto a bordo! Accedi per continuare.\",\"dVxpp5\":[\"Bentornato\",[\"0\"],\" 👋\"],\"NxOVCl\":[\"Benvenuto su Hi.Events, \",[\"0\"],\" 👋\"],\"xgL50q\":\"Cosa sono i Prodotti a Livelli?\",\"f1jUC0\":\"In quale data questa lista di check-in dovrebbe diventare attiva?\",\"4ueloy\":\"Cos'è una Categoria?\",\"gxeWAU\":\"A quali prodotti si applica questo codice?\",\"hFHnxR\":\"A quali prodotti si applica questo codice? (Si applica a tutti per impostazione predefinita)\",\"AeejQi\":\"A quali prodotti dovrebbe applicarsi questa capacità?\",\"Rb0XUE\":\"A che ora arriverai?\",\"5N4wLD\":\"Che tipo di domanda è questa?\",\"gyLUYU\":\"Quando abilitato, le fatture verranno generate per gli ordini di biglietti. Le fatture saranno inviate insieme all'email di conferma dell'ordine. I partecipanti possono anche scaricare le loro fatture dalla pagina di conferma dell'ordine.\",\"D3opg4\":\"Quando i pagamenti offline sono abilitati, gli utenti potranno completare i loro ordini e ricevere i loro biglietti. I loro biglietti indicheranno chiaramente che l'ordine non è pagato, e lo strumento di check-in avviserà il personale di check-in se un ordine richiede il pagamento.\",\"D7C6XV\":\"Quando dovrebbe scadere questa lista di check-in?\",\"FVetkT\":\"Quali biglietti dovrebbero essere associati a questa lista di check-in?\",\"S+OdxP\":\"Chi sta organizzando questo evento?\",\"LINr2M\":\"A chi è destinato questo messaggio?\",\"nWhye/\":\"A chi dovrebbe essere posta questa domanda?\",\"VxFvXQ\":\"Incorpora Widget\",\"v1P7Gm\":\"Impostazioni Widget\",\"b4itZn\":\"In corso\",\"hqmXmc\":\"In corso...\",\"+G/XiQ\":\"Da inizio anno\",\"l75CjT\":\"Sì\",\"QcwyCh\":\"Sì, rimuovili\",\"ySeBKv\":\"Hai già scansionato questo biglietto\",\"P+Sty0\":[\"Stai cambiando la tua email in <0>\",[\"0\"],\".\"],\"gGhBmF\":\"Sei offline\",\"sdB7+6\":\"Puoi creare un codice promo che ha come target questo prodotto nella\",\"KRhIxT\":\"Ora puoi iniziare a ricevere pagamenti tramite Stripe.\",\"Gnjf3o\":\"Non puoi cambiare il tipo di prodotto poiché ci sono partecipanti associati a questo prodotto.\",\"S+on7c\":\"Non è possibile registrare i partecipanti con ordini non pagati.\",\"yNi4PV\":\"Non puoi registrare partecipanti con ordini non pagati. Questa impostazione può essere modificata nelle impostazioni dell'evento.\",\"c9Evkd\":\"Non puoi eliminare l'ultima categoria.\",\"6uwAvx\":\"Non puoi eliminare questo livello di prezzo perché ci sono già prodotti venduti per questo livello. Puoi invece nasconderlo.\",\"tFbRKJ\":\"Non puoi modificare il ruolo o lo stato del proprietario dell'account.\",\"fHfiEo\":\"Non puoi rimborsare un ordine creato manualmente.\",\"hK9c7R\":\"Hai creato una domanda nascosta ma hai disabilitato l'opzione per mostrare le domande nascoste. È stata abilitata.\",\"NOaWRX\":\"Non hai il permesso di accedere a questa pagina\",\"BRArmD\":\"Hai accesso a più account. Scegli uno per continuare.\",\"Z6q0Vl\":\"Hai già accettato questo invito. Accedi per continuare.\",\"rdk1xK\":\"Hai collegato il tuo account Stripe\",\"ofEncr\":\"Non hai domande per i partecipanti.\",\"CoZHDB\":\"Non hai domande per gli ordini.\",\"15qAvl\":\"Non hai modifiche di email in sospeso.\",\"n81Qk8\":\"Non hai completato la configurazione di Stripe Connect\",\"jxsiqJ\":\"Non hai collegato il tuo account Stripe\",\"+FWjhR\":\"Hai esaurito il tempo per completare il tuo ordine.\",\"MycdJN\":\"Hai aggiunto tasse e commissioni a un prodotto gratuito. Vuoi rimuoverle o nasconderle?\",\"YzEk2o\":\"Non hai ancora inviato messaggi. Puoi inviare messaggi a tutti i partecipanti o a specifici possessori di prodotti.\",\"R6i9o9\":\"Devi riconoscere che questa email non è promozionale\",\"3ZI8IL\":\"Devi accettare i termini e le condizioni\",\"dMd3Uf\":\"Devi confermare il tuo indirizzo email prima che il tuo evento possa andare in diretta.\",\"H35u3n\":\"Devi creare un biglietto prima di poter aggiungere manualmente un partecipante.\",\"jE4Z8R\":\"Devi avere almeno un livello di prezzo\",\"8/eLoa\":\"Devi verificare il tuo account prima di poter inviare messaggi.\",\"Egnj9d\":\"Dovrai contrassegnare un ordine come pagato manualmente. Questo può essere fatto nella pagina di gestione dell'ordine.\",\"L/+xOk\":\"Avrai bisogno di un biglietto prima di poter creare una lista di check-in.\",\"Djl45M\":\"Avrai bisogno di un prodotto prima di poter creare un'assegnazione di capacità.\",\"y3qNri\":\"Avrai bisogno di almeno un prodotto per iniziare. Gratuito, a pagamento o lascia che l'utente decida quanto pagare.\",\"9HcibB\":[\"Stai andando a \",[\"0\"],\"! 🎉\"],\"ROR8QD\":\"Il nome del tuo account è utilizzato nelle pagine degli eventi e nelle email.\",\"veessc\":\"I tuoi partecipanti appariranno qui una volta che si saranno registrati per il tuo evento. Puoi anche aggiungere manualmente i partecipanti.\",\"Eh5Wrd\":\"Il tuo fantastico sito web 🎉\",\"lkMK2r\":\"I tuoi Dettagli\",\"3ENYTQ\":[\"La tua richiesta di cambio email a <0>\",[\"0\"],\" è in attesa. Controlla la tua email per confermare\"],\"yZfBoy\":\"Il tuo messaggio è stato inviato\",\"KSQ8An\":\"Il tuo Ordine\",\"Jwiilf\":\"Il tuo ordine è stato annullato\",\"6UxSgB\":\"Il tuo ordine è in attesa di pagamento 🏦\",\"7YJdgG\":\"I tuoi ordini appariranno qui una volta che inizieranno ad arrivare.\",\"9TO8nT\":\"La tua password\",\"P8hBau\":\"Il tuo pagamento è in elaborazione.\",\"UdY1lL\":\"Il tuo pagamento non è andato a buon fine, riprova.\",\"fzuM26\":\"Il tuo pagamento non è andato a buon fine. Riprova.\",\"cEli2o\":\"Il tuo prodotto per\",\"cJ4Y4R\":\"Il tuo rimborso è in elaborazione.\",\"IFHV2p\":\"Il tuo biglietto per\",\"x1PPdr\":\"CAP / Codice Postale\",\"BM/KQm\":\"CAP o Codice Postale\",\"+LtVBt\":\"CAP o Codice Postale\",\"25QDJ1\":\"- Clicca per pubblicare\",\"WOyJmc\":\"- Clicca per annullare la pubblicazione\",\"1bpx9A\":\"...\",\"4zldrf\":[[\"0\",\"plural\",{\"one\":[\"#\",\" domanda nascosta\"],\"other\":[\"#\",\" domande nascoste\"]}]],\"xYxQCZ\":[[\"0\"],\" \",[\"1\"]],\"S4PqS9\":[[\"0\"],\" Webhook Attivi\"],\"tmew5X\":[[\"0\"],\" registrati\"],\"qSiUsc\":[[\"0\"],[\"1\"]],\"OJnhhX\":[[\"eventCount\"],\" eventi\"],\"wapGcj\":[[\"message\"]],\"pDgeaz\":[[\"title\"]],\"0940VN\":\"<0>Il numero di biglietti disponibili per questo biglietto<1>Questo valore può essere sovrascritto se ci sono <2>Limiti di Capacità associati a questo biglietto.\",\"ZnVt5v\":\"<0>I webhook notificano istantaneamente i servizi esterni quando si verificano eventi, come l'aggiunta di un nuovo partecipante al tuo CRM o alla mailing list al momento della registrazione, garantendo un'automazione senza interruzioni.<1>Utilizza servizi di terze parti come <2>Zapier, <3>IFTTT o <4>Make per creare flussi di lavoro personalizzati e automatizzare le attività.\",\"y1NShf\":\"🎉 Congratulazioni per aver creato un evento!\",\"fAv9QG\":\"🎟️ Aggiungi biglietti\",\"s4Tgn6\":\"📢 Promuovi il tuo evento\",\"UQ7pBY\":\"0.50 per $0.50\",\"M2DyLc\":\"1 Webhook Attivo\",\"i1+xzD\":\"1.75 per 1.75%\",\"W9+fkZ\":\"10001\",\"d9El7Q\":[\"Un \",[\"type\"],\" predefinito viene applicato automaticamente a tutti i nuovi biglietti. Puoi sovrascrivere questa impostazione per ogni singolo biglietto.\"],\"Pgaiuj\":\"Un importo fisso per biglietto. Es. $0,50 per biglietto\",\"ySO/4f\":\"Una percentuale del prezzo del biglietto. Es. 3,5% del prezzo del biglietto\",\"WXeXGB\":\"Un codice promozionale senza sconto può essere utilizzato per rivelare biglietti nascosti.\",\"GMhWB5\":\"Un'opzione Radio ha più opzioni ma solo una può essere selezionata.\",\"CBt3s7\":\"Un'opzione Radio consente una sola selezione\",\"7g61G9\":\"Una breve descrizione di Awesome Events Ltd.\",\"zCk10D\":\"Una singola domanda per partecipante. Es. Qual è il tuo pasto preferito?\",\"ap3v36\":\"Una singola domanda per ordine. Es. Qual è il nome della tua azienda?\",\"uyJsf6\":\"Informazioni\",\"pDwHGk\":\"Informazioni su hi.events\",\"WTk/ke\":\"Informazioni su Stripe Connect\",\"VTfZPy\":\"Accesso Negato\",\"iwyhk4\":\"Accesso all'area VIP...\",\"0b79Xf\":\"Email dell'Account\",\"m16xKo\":\"Aggiungi\",\"LKNynS\":\"Aggiungi un'immagine di copertina, una descrizione e altro per far risaltare il tuo evento.\",\"a5KFZU\":\"Aggiungi i dettagli dell'evento e gestisci le impostazioni dell'evento.\",\"Fb+SDI\":\"Aggiungi altri biglietti\",\"BGD9Yt\":\"Aggiungi biglietti\",\"QN2F+7\":\"Aggiungi Webhook\",\"p59pEv\":\"Dettagli Aggiuntivi\",\"CPXP5Z\":\"Affiliati\",\"gKq1fa\":\"Tutti i partecipanti\",\"QsYjci\":\"Tutti gli Eventi\",\"/twVAS\":\"Tutti i Biglietti\",\"8wYDMp\":\"Hai già un account?\",\"TRYjHa\":[\"importo in \",[\"0\"]],\"tLjOgo\":[\"Importo pagato $\",[\"0\"]],\"vRznIT\":\"Si è verificato un errore durante il controllo dello stato di esportazione.\",\"er3d/4\":\"Si è verificato un errore durante l'ordinamento dei biglietti. Riprova o aggiorna la pagina\",\"hhvESd\":\"Un evento è l'evento effettivo che stai organizzando\",\"3ZpITr\":\"Un evento è l'incontro o l'occasione che stai organizzando. Puoi aggiungere ulteriori dettagli in seguito.\",\"QNrkms\":\"Risposta aggiornata con successo.\",\"j4DliD\":\"Qualsiasi richiesta dai possessori di biglietti verrà inviata a questo indirizzo email. Questo sarà anche utilizzato come indirizzo \\\"rispondi a\\\" per tutte le email inviate da questo evento\",\"epTbAK\":[\"Si applica a \",[\"0\"],\" biglietti\"],\"6MkQ2P\":\"Si applica a 1 biglietto\",\"jcnZEw\":[\"Applica questo \",[\"type\"],\" a tutti i nuovi biglietti\"],\"Dy+k4r\":\"Sei sicuro di voler cancellare questo partecipante? Questo annullerà il loro prodotto\",\"5H3Z78\":\"Sei sicuro di voler eliminare questo webhook?\",\"2xEpch\":\"Chiedi una volta per partecipante\",\"F2rX0R\":\"Deve essere selezionato almeno un tipo di evento\",\"AJ4rvK\":\"Partecipante Cancellato\",\"qvylEK\":\"Partecipante Creato\",\"Xc2I+v\":\"Gestione Partecipanti\",\"VvYqMB\":\"Le domande per i partecipanti vengono poste una volta per partecipante. Per impostazione predefinita, alle persone vengono chiesti nome, cognome e indirizzo email.\",\"spxPEv\":\"Le domande per i partecipanti vengono poste una volta per partecipante. Per impostazione predefinita, chiediamo nome, cognome e indirizzo email del partecipante.\",\"D2qlBU\":\"Partecipante Aggiornato\",\"k3Tngl\":\"Partecipanti Esportati\",\"5UbY+B\":\"Partecipanti con un biglietto specifico\",\"kShOaz\":\"Flusso di Lavoro Automatico\",\"VPoeAx\":\"Gestione automatizzata degli ingressi con liste di check-in multiple e convalida in tempo reale\",\"lXkUEV\":\"Disponibilità\",\"Vm0RKe\":\"Sconto Medio/Ordine\",\"sGUsYa\":\"Valore Medio Ordine\",\"kNmmvE\":\"Awesome Events Srl.\",\"0TGkYM\":\"Torna alla homepage dell'evento\",\"MLZyiY\":\"Colore di sfondo\",\"EOUool\":\"Dettagli di Base\",\"7EGQKA\":\"Poiché sei il proprietario dell'account, non puoi modificare il tuo ruolo o stato.\",\"wVfiR2\":\"Prima che il tuo evento possa andare online, ci sono alcune cose da fare.\",\"iMdwTb\":\"Prima che il tuo evento possa andare online, ci sono alcune cose da fare. Completa tutti i passaggi qui sotto per iniziare.\",\"1xAcxY\":\"Inizia a vendere biglietti in pochi minuti\",\"R+w/Va\":\"Fatturazione\",\"Ayxd+S\":\"Controllo del Brand\",\"Ptp9MF\":\"Colore pulsante\",\"Jzn1qy\":\"Impossibile caricare gli eventi\",\"GGWsTU\":\"Annullato\",\"Ud7zwq\":\"L'annullamento cancellerà tutti i biglietti associati a questo ordine e rilascerà i biglietti nel pool disponibile.\",\"K7tIrx\":\"Categoria\",\"QndF4b\":\"registra ingresso\",\"9FVFym\":\"registra uscita\",\"Y3FYXy\":\"Registrazione\",\"udRwQs\":\"Registrazione Creata\",\"F4SRy3\":\"Registrazione Eliminata\",\"rfeicl\":\"Registrazione effettuata con successo\",\"/ydvvl\":\"Messaggi di Pagamento\",\"h1IXFK\":\"Cinese\",\"DM4gBB\":\"Cinese (Tradizionale)\",\"jJGoVv\":\"Scegli quali notifiche vuoi ricevere\",\"RG3szS\":\"chiudi\",\"msqIjo\":\"Comprimi questo biglietto quando la pagina dell'evento viene caricata inizialmente\",\"/sZIOR\":\"Negozio Completo\",\"7D9MJz\":\"Completa Configurazione Stripe\",\"nqx+6h\":\"Completa questi passaggi per iniziare a vendere biglietti per il tuo evento.\",\"DnLC08\":\"Congratulation on creating an event!\",\"o5A0Go\":\"Congratulazioni per aver creato un evento!\",\"Xe2tSS\":\"Documentazione di Connessione\",\"1Xxb9f\":\"Connetti elaborazione pagamenti\",\"EWnXR+\":\"Connetti a Stripe\",\"MOUF31\":\"Connetti con CRM e automatizza le attività utilizzando webhook e integrazioni\",\"/3017M\":\"Connesso a Stripe\",\"i3p844\":\"Contatto email\",\"02S6xJ\":\"Contatta il Supporto\",\"nBGbqc\":\"Contattaci per abilitare la messaggistica\",\"0GwUT4\":\"Procedi al pagamento\",\"RGVUUI\":\"Continua Al Pagamento\",\"P0rbCt\":\"Immagine di Copertina\",\"dyrgS4\":\"Crea e personalizza la tua pagina evento istantaneamente\",\"a6YrKg\":\"Crea codici promozionali\",\"n6H6AO\":\"Crea codici promozionali per offrire sconti ai tuoi partecipanti.\",\"Tg323g\":\"Crea Biglietto\",\"agZ87r\":\"Crea biglietti per il tuo evento, imposta i prezzi e gestisci la quantità disponibile.\",\"dkAPxi\":\"Crea Webhook\",\"Lu75d1\":\"Personalizza le impostazioni email per questo evento\",\"RaxMyF\":\"Personalizza la homepage dell'evento e l'esperienza di checkout\",\"q9Jg0H\":\"Personalizza la pagina del tuo evento e il design del widget per adattarli perfettamente al tuo brand\",\"zgCHnE\":\"Report Vendite Giornaliere\",\"nHm0AI\":\"Ripartizione giornaliera di vendite, tasse e commissioni\",\"PqrqgF\":\"Lista check-in primo giorno\",\"RiXc4g\":\"Disattiva utente\",\"GnyEfA\":\"Elimina biglietto\",\"E33LRn\":\"Elimina utente\",\"snMaH4\":\"Elimina webhook\",\"s9iD5d\":\"La descrizione deve essere inferiore a 50.000 caratteri\",\"x8uDKb\":\"Disabilita codice\",\"b5SKxQ\":\"Disabilita il monitoraggio di questa capacità senza interrompere le vendite dei prodotti\",\"Tgg8XQ\":\"Disabilita il monitoraggio di questa capacità senza interrompere le vendite dei biglietti\",\"QotGhf\":\"Ignora questo messaggio\",\"TvY/XA\":\"Documentazione\",\"dYskfr\":\"Non esiste\",\"V6Jjbr\":\"Non hai un account? <0>Registrati\",\"4+aC/x\":\"Donazione / Biglietto a offerta libera\",\"++S5i/\":\"Importo donazione\",\"OO7MG7\":\"Biglietto Donazione\",\"0pEVi2\":\"Scarica PDF Biglietti\",\"eneWvv\":\"Bozza\",\"3z2ium\":\"Trascina per ordinare\",\"6skwyH\":\"Rilascia un'immagine, o clicca qui per sostituire l'Immagine di Copertina\",\"S37RRV\":\"Rilascia un'immagine, o clicca qui per caricare l'Immagine di Copertina\",\"X7F5EC\":\"A causa dell'alto rischio di spam, è necessaria una verifica manuale prima di poter inviare messaggi.\\nContattaci per richiedere l'accesso.\",\"KRmTkx\":\"Duplica Prodotto\",\"Wt9eV8\":\"Duplica Biglietti\",\"4xK5y2\":\"Duplica Webhook\",\"KIjvtr\":\"Olandese\",\"2iZEz7\":\"Modifica Risposta\",\"kNGp1D\":\"Modifica partecipante\",\"t2bbp8\":\"Modifica Partecipante\",\"d+nnyk\":\"Modifica Biglietto\",\"fW5sSv\":\"Modifica webhook\",\"nP7CdQ\":\"Modifica Webhook\",\"WiKda6\":\"Configurazione Email\",\"G5zNMX\":\"Impostazioni Email\",\"nA31FG\":\"Abilita questa capacità per interrompere le vendite dei biglietti quando viene raggiunto il limite\",\"RxzN1M\":\"Abilitato\",\"LslKhj\":\"Errore durante il caricamento dei log\",\"nuoP/j\":\"Evento creato con successo\",\"4JzCvP\":\"Evento Non Disponibile\",\"mImacG\":\"Pagina dell'evento\",\"JyD0LH\":\"Impostazioni Evento\",\"uPX+1O\":\"Biglietteria gestita da\",\"YDVUVl\":\"Tipi di Evento\",\"3Fj/xp\":\"Evento wdwdeNon disponibile\",\"VlvpJ0\":\"Esporta risposte\",\"JKfSAv\":\"Esportazione fallita. Riprova.\",\"SVOEsu\":\"Esportazione avviata. Preparazione file...\",\"jtrqH9\":\"Esportazione Partecipanti\",\"R4Oqr8\":\"Esportazione completata. Download file in corso...\",\"UlAK8E\":\"Esportazione Ordini\",\"Jjw03p\":\"Impossibile esportare i partecipanti\",\"ZPwFnN\":\"Impossibile esportare gli ordini\",\"X4o0MX\":\"Impossibile caricare il Webhook\",\"10XEC9\":\"Impossibile reinviare l'email del prodotto\",\"lKh069\":\"Impossibile avviare il processo di esportazione\",\"NNc33d\":\"Impossibile aggiornare la risposta.\",\"7/9RFs\":\"Caricamento immagine non riuscito.\",\"YirHq7\":\"Feedback\",\"T4BMxU\":\"Le commissioni sono soggette a modifiche. Sarai informato di qualsiasi modifica alla struttura delle tue commissioni.\",\"QWa3Sk\":\"Nome, Cognome e Indirizzo Email sono domande predefinite che sono sempre incluse nel processo di checkout.\",\"YXhom6\":\"Commissione Fissa:\",\"KgxI80\":\"Biglietteria Flessibile\",\"/4rQr+\":\"Biglietto Gratuito\",\"01my8x\":\"Biglietto gratuito, nessuna informazione di pagamento richiesta\",\"ejVYRQ\":\"Da\",\"vAVBBv\":\"Completamente integrato\",\"kfVY6V\":\"Inizia gratuitamente, nessun costo di abbonamento\",\"u6FPxT\":\"Ottieni Biglietti\",\"8KDgYV\":\"Prepara il tuo evento\",\"cQPKZt\":\"Vai alla Dashboard\",\"yPvkqO\":\"Vai a Hi.Events\",\"gHSuV/\":\"Vai alla pagina iniziale\",\"Lek3cJ\":\"Vai alla Dashboard di Stripe\",\"GNJ1kd\":\"Aiuto e Supporto\",\"spMR9y\":\"Hi.Events addebita commissioni di piattaforma per mantenere e migliorare i nostri servizi. Queste commissioni vengono automaticamente detratte da ogni transazione.\",\"EeNE0j\":\"Nascosto non sarà mostrato ai clienti.\",\"P+5Pbo\":\"Nascondi Risposte\",\"fsi6fC\":\"Nascondi questo biglietto ai clienti\",\"Fhzoa8\":\"Nascondi biglietto dopo la data di fine vendita\",\"yhm3J/\":\"Nascondi biglietto prima della data di inizio vendita\",\"k7/oGT\":\"Nascondi biglietto a meno che l'utente non abbia un codice promozionale applicabile\",\"L0ZOiu\":\"Nascondi biglietto quando esaurito\",\"uno73L\":\"Nascondere un biglietto impedirà agli utenti di vederlo sulla pagina dell'evento.\",\"tj6Gob\":\"Homepage e Checkout\",\"m07jN3\":\"Impostazioni Homepage e Checkout\",\"id+NIk\":\"Quanti minuti ha il cliente per completare il proprio ordine\",\"htoh8N\":\"https://webhook-domain.com/webhook\",\"sIxFk5\":\"Accetto i termini e condizioni\",\"4/kP5a\":\"Se una nuova scheda non si è aperta automaticamente, clicca sul pulsante qui sotto per procedere al pagamento.\",\"Crwwhn\":[\"Se non si è aperta una nuova scheda, per favore <0>\",[\"0\"],\".\"],\"9gtsTP\":\"Se vuoto, l'indirizzo verrà utilizzato per generare un collegamento a Google Maps\",\"wOU3Tr\":\"Se hai un account con noi, riceverai un'email con le istruzioni per reimpostare la password.\",\"Gyl1h8\":\"Le dimensioni dell'immagine devono essere almeno 600px per 300px\",\"TiGacZ\":\"Le dimensioni dell'immagine devono essere almeno 900px per 450px\",\"UnTvkH\":\"Le dimensioni dell'immagine devono essere tra 3000px per 2000px. Con un'altezza massima di 2000px e una larghezza massima di 3000px\",\"UJLg8x\":\"Analisi approfondite\",\"OFAmKP\":\"Includi dettagli di connessione per il tuo evento online\",\"BfPBBG\":\"Includi dettagli di connessione per il tuo evento online. Questi dettagli saranno dopo la registrazione avvenuta con successo.\",\"6+pAOx\":\"Includi dettagli di connessione per il tuo evento online. Questi dettagli saranno mostrati dopo la registrazione avvenuta con successo.\",\"SYmeUu\":\"Includi dettagli di connessione per il tuo evento online. Questi dettagli saranno mostrati nella pagina di riepilogo dell'ordine e nella pagina del prodotto del partecipante\",\"evpD4c\":\"Includi dettagli di connessione per il tuo evento online. Questi dettagli saranno mostrati nella pagina di riepilogo dell'ordine e nella pagina del biglietto del partecipante\",\"AXTNr8\":[\"Include \",[\"0\"],\" biglietti\"],\"7/Rzoe\":\"Include 1 biglietto\",\"F1Xp97\":\"Partecipanti individuali\",\"nbfdhU\":\"Integrazioni\",\"Lj7sBL\":\"Italiano\",\"1IWWYX\":[\"KittenTech Conference \",[\"0\"]],\"ZgJEMX\":\"KittenTech Conference Center\",\"h0Q9Iw\":\"Ultima Risposta\",\"gw3Ur5\":\"Ultimo Attivato\",\"CKcupn\":\"Ultimi ordini\",\"c+gAXc\":\"Iniziamo creando il tuo primo evento\",\"QfrKvi\":\"Link colore\",\"shkJ3U\":\"Collega il tuo account Stripe per ricevere fondi dalle vendite dei biglietti.\",\"dF6vP6\":\"Online\",\"NFxlHW\":\"Caricamento Webhooks\",\"XkhEf9\":\"Lorem ipsum...\",\"xGUf/F\":\"Rendi l'evento live\",\"4wUIjX\":\"Rendi attivo il tuo evento\",\"8mmINh\":\"Gestisci le informazioni di fatturazione e visualizza le fatture\",\"jWIznR\":\"Gestisci le impostazioni predefinite per i nuovi eventi\",\"wqyqaF\":\"Gestisci le impostazioni generali dell'account\",\"5Llat8\":\"Gestisci prodotti\",\"f92Qak\":\"Gestisci le tasse e le commissioni che possono essere applicate ai biglietti\",\"PlTcVr\":\"Gestisci le tasse e le commissioni che possono essere applicate ai tuoi biglietti\",\"Wsx7Iu\":\"Gestire gli utenti e i loro permessi\",\"QHcjP+\":\"Gestisci i tuoi dati di fatturazione e dettagli di pagamento\",\"2FzaR1\":\"Gestisci l'elaborazione dei pagamenti e visualizza le commissioni della piattaforma\",\"lzcrX3\":\"L'aggiunta manuale di un partecipante modificherà la quantità dei biglietti.\",\"/x0FyM\":\"Adatta al tuo brand\",\"1jRD0v\":\"Invia messaggio ai partecipanti con biglietti specifici\",\"97QrnA\":\"Invia messaggi ai partecipanti, gestisci ordini e gestisci rimborsi, tutto in un unico posto\",\"0/yJtP\":\"Invia messaggio ai proprietari degli ordini con prodotti specifici\",\"tccUcA\":\"Check-in Mobile\",\"SVuGaP\":\"Multiple price options, users can choose which to pay\",\"6wbTro\":\"Diverse opzioni di prezzo. Perfetto per biglietti early bird ecc.\",\"m920rF\":\"New York\",\"074+X8\":\"Nessun Webhook Attivo\",\"6r9SGl\":\"Nessuna Carta di Credito Richiesta\",\"Z6ILSe\":\"Nessun evento per questo organizzatore\",\"XZkeaI\":\"Nessun log trovato\",\"zK/+ef\":\"Nessun prodotto disponibile per la selezione\",\"q91DKx\":\"Nessuna domanda ha ricevuto risposta da questo partecipante.\",\"QoAi8D\":\"Nessuna risposta\",\"EK/G11\":\"Ancora nessuna risposta\",\"cU1op4\":\"Non sono state ancora aggiunte tasse o commissioni.\",\"uR2eFu\":\"Nessun biglietto disponibile\",\"b7JZFg\":\"Nessun biglietto da mostrare\",\"n5vdm2\":\"Nessun evento webhook è stato registrato per questo endpoint. Gli eventi appariranno qui una volta attivati.\",\"4GhX3c\":\"Nessun Webhook\",\"x5+Lcz\":\"Not Checked In\",\"+P/tII\":\"Once you're ready, set your event live and start selling tickets.\",\"bU7oUm\":\"Invia solo agli ordini con questi stati\",\"ppuQR4\":\"Ordine Creato\",\"L4kzeZ\":[\"Dettagli dell'ordine \",[\"0\"]],\"vu6Arl\":\"Ordine Contrassegnato come Pagato\",\"FaPYw+\":\"Proprietario ordine\",\"eB5vce\":\"Proprietari di ordini con un prodotto specifico\",\"CxLoxM\":\"Proprietari di ordini con prodotti\",\"wg9MPp\":\"Le domande relative all'ordine vengono poste una volta per ordine. Per impostazione predefinita, vengono richiesti nome, cognome e indirizzo email.\",\"+KNVxX\":\"Le domande relative all'ordine vengono poste una sola volta per ordine. Per impostazione predefinita, chiediamo nome, cognome e indirizzo email.\",\"EZy55F\":\"Ordine Rimborsato\",\"6eSHqs\":\"Stati ordine\",\"e7eZuA\":\"Ordine Aggiornato\",\"mz+c33\":\"Ordini Creati\",\"5It1cQ\":\"Ordini Esportati\",\"m/ebSk\":\"Dettagli dell'organizzatore\",\"J2cXxX\":\"Gli organizzatori possono solo gestire eventi e biglietti. Non possono gestire utenti, impostazioni dell'account o informazioni di fatturazione.\",\"6/dCYd\":\"Panoramica\",\"2w/FiJ\":\"Paid Ticket\",\"/l/ckQ\":\"Incolla URL\",\"iq5IUr\":\"Pause Ticket\",\"URAE3q\":\"In pausa\",\"TskrJ8\":\"Pagamento e Piano\",\"EyE8E6\":\"Elaborazione Pagamenti\",\"vcyz2L\":\"Impostazioni Pagamento\",\"CcK+Ft\":\"PDF\",\"att1Hj\":\"per cento\",\"dfVao3\":\"Effettua Ordine\",\"br3Y/y\":\"Commissioni Piattaforma\",\"q40YFl\":\"Please continue your order in the new tab\",\"ZJG4Di\":\"Assicurati di inviare solo email direttamente correlate all'ordine. Le email promozionali\\nnon devono essere inviate tramite questo modulo.\",\"o+HaYe\":\"Inserisci un codice promozionale valido\",\"jEw0Mr\":\"Inserisci un URL valido\",\"Dvq0wf\":\"Per favore, fornisci un'immagine.\",\"MA04r/\":\"Si prega di rimuovere i filtri e impostare l'ordinamento su \\\"Ordine homepage\\\" per abilitare l'ordinamento\",\"EFq6EG\":\"Per favore, seleziona un'immagine.\",\"yygcoG\":\"Please select at least one ticket\",\"fuwKpE\":\"Riprova.\",\"o+tJN/\":\"Attendi mentre prepariamo i tuoi partecipanti per l'esportazione...\",\"+5Mlle\":\"Attendi mentre prepariamo i tuoi ordini per l'esportazione...\",\"R7+D0/\":\"Portuguese (Brazil)\",\"Qs7yI0\":\"Offerto da\",\"lqAWKB\":\"Offerto da <0>Hi.Events 👋\",\"3n47kV\":\"Offerto da Hi.Events\",\"ddi4j4\":\"Offerto da Stripe\",\"cs5muu\":\"Anteprima pagina evento\",\"a5jvSX\":\"Fasce di prezzo\",\"p/JDmw\":\"prodotto\",\"EWCLpZ\":\"Prodotto Creato\",\"XkFYVB\":\"Prodotto Eliminato\",\"0dzBGg\":\"Product email has been resent to attendee\",\"YMwcbR\":\"Ripartizione vendite prodotti, ricavi e tasse\",\"ldVIlB\":\"Prodotto Aggiornato\",\"mIqT3T\":\"Prodotti, merchandising e opzioni di prezzo flessibili\",\"ZXpm3a\":[\"Codice \",[\"promoCode\"],\" promo applicato\"],\"JoKGiJ\":\"Codice promo\",\"k3wH7i\":\"Ripartizione utilizzo codici promo e sconti\",\"evDBV8\":\"Pubblica Evento\",\"812gwg\":\"Acquista licenza\",\"YwNJAq\":\"Scansione di codici QR con feedback istantaneo e condivisione sicura per l'accesso del personale\",\"HiGkFu\":\"Reindirizzamento a Stripe...\",\"RloWNu\":\"Reply to email\",\"Gkz9Vm\":\"Invia nuovamente l'email del prodotto\",\"slOprG\":\"Reimposta la tua password\",\"hVF4dJ\":\"Inizio vendite\",\"lBAlVv\":\"Cerca per nome, ordine #, partecipante # o email...\",\"ulAuWO\":\"Cerca per nome o descrizione dell'evento...\",\"NQSiYb\":\"Cerca per nome o descrizione...\",\"B1bB1j\":\"Ricerca per ordiner #, nome o email...\",\"KZpERn\":\"Cerca per nome del prodotto...\",\"jA4hXE\":\"Cerca per argomento o corpo...\",\"HYnGee\":\"Cerca per nome del biglietto...\",\"j9cPeF\":\"Seleziona tipi di evento\",\"XH5juP\":\"Seleziona fascia biglietto\",\"nuWxSr\":\"Seleziona Tickets\",\"Ropvj0\":\"Seleziona quali eventi attiveranno questo webhook\",\"BG3f7v\":\"Vendi qualsiasi cosa\",\"VtX8nW\":\"Vendi merchandising insieme ai biglietti con supporto integrato per tasse e codici promozionali\",\"Cye3uV\":\"Vendi Più Che Biglietti\",\"471O/e\":\"Send confirmation email\",\"nwVSiv\":\"Inviare conferma dell'ordine ed email del prodotto\",\"vu4F0h\":\"Imposta un prezzo minimo e consenti agli utenti di donare di più\",\"VlS7y2\":\"Imposta l'elaborazione dei pagamenti per ricevere fondi dalla vendita dei biglietti.\",\"HbUQWA\":\"Configurazione in Minuti\",\"FFbYHm\":[\"Should this \",[\"type\"],\" be applied to all new tickets?\"],\"smd87r\":\"Mostra la quantità di biglietti disponibili\",\"j3b+OW\":\"Mostrato al cliente dopo il pagamento, nella pagina di riepilogo dell'ordine\",\"v6IwHE\":\"Check-in Intelligente\",\"J9xKh8\":\"Dashboard Intelligente\",\"KTxc6k\":\"Qualcosa è andato storto, riprova o contatta l'assistenza se il problema persiste\",\"DvCwYF\":\"Spiacenti, questo codice promozionale non è valido'\",\"9rRZZ+\":\"Spiacenti, il tuo ordine è scaduto. Inizia un nuovo ordine.r.\",\"a4SyEE\":\"L'ordinamento è disabilitato mentre vengono applicati filtri e ordinamento\",\"4nG1lG\":\"Biglietto standard a prezzo fisso\",\"RS0o7b\":\"Stato\",\"Ih8kN0\":[\"Successfully $\",[\"0\"],\" attendee\"],\"xHl17l\":[\"Controllato con successo <0>\",[\"0\"],\" \",[\"1\"],\" \",[\"2\"]],\"onFQYs\":\"Ticket creato con successo\",\"Hgj/mB\":\"Ticket eliminato con successo\",\"JwTmB6\":\"Prodotto Duplicato con Successo\",\"g2lRrH\":\"Successfully updated ticket\",\"kj7zYe\":\"Webhook aggiornato con successo\",\"5gIl+x\":\"Supporto per vendite a livelli, basate su donazioni e di prodotti con prezzi e capacità personalizzabili\",\"EEZnW+\":\"Tasse e commissioni\",\"gVjSFp\":\"Taxes and Fees can be associated with tickets and will be added to the ticket price.\",\"e0ZSh4\":\"Colore del testo\",\"0ozSQu\":\"Il colore di sfondo per la homepage dell'evento\",\"LbHWgW\":\"Il colore di sfondo per il widget del biglietto nella home page dell'evento\",\"75Xclv\":\"I dettagli di base del tuo evento\",\"UNqHnV\":\"Il colore dei pulsanti nella homepage dell'evento\",\"0amhbL\":\"Il colore dei link nella homepage dell'evento\",\"tXadb0\":\"L'evento che stai cercando non è disponibile al momento. Potrebbe essere stato rimosso, scaduto o l'URL potrebbe essere errato.\",\"FqjKfd\":\"La posizione del tuo evento\",\"kIXEVN\":[\"Il numero massimo di biglietti per \",[\"0\"],\"è \",[\"1\"]],\"FeAfXO\":[\"Il numero massimo di biglietti per i Generali è \",[\"0\"]],\"POEqXB\":\"I dettagli dell'organizzatore del tuo evento\",\"TJZByZ\":\"Le tasse e le commissioni da applicare a questo biglietto. Puoi creare nuove tasse e commissioni su\",\"OJYwh9\":\"Le tasse e le commissioni da applicare a questo biglietto. Puoi creare nuove tasse e commissioni su\",\"6BpBfZ\":\"Il colore del testo per la homepage dell'evento\",\"rljHp7\":\"The text color for the ticket widget on the event homepage\",\"s4di40\":\"Il testo da visualizzare nel pulsante \\\"Continua\\\". Il valore predefinito è \\\"Continua\\\".'\",\"wgAiDb\":\"L'utente deve effettuare l'accesso per modificare la propria email.\",\"jvxN9/\":\"Non ci sono biglietti disponibili per questo evento\",\"hjLUr+\":\"There was an error loading this content. Please refresh the page and try again.\",\"Um/adz\":\"Questi consentono selezioni multiple\",\"vWeHWp\":\"Questi colori non vengono salvati nel nostro sistema.\",\"7qzHGS\":\"Questi colori non vengono salvati nel nostro sistema. Vengono utilizzati solo per generare il widget..\",\"GabtCa\":\"Questo è l'indirizzo email che verrà utilizzato come indirizzo di risposta per tutte le email inviate da questo evento\",\"CKkb5E\":\"This message is how below the\",\"axERYu\":\"Questo ordine è già stato pagato. <0>Visualizza i dettagli dell'ordine\",\"wY+HO9\":\"Questo ordine è già stato elaborato.\",\"D44cEI\":\"Questo ordine è stato completato.\",\"0vRWbB\":\"Questo ordine è in attesa di pagamento.\",\"LIjb4v\":\"Questo ordine è in fase di elaborazione. TODO: una bella immagine e interroga l'API\",\"5189cf\":\"Questo sovrascrive tutte le impostazioni di visibilità e nasconderà il ticket a tutti i clienti.\",\"4vwjho\":\"Questa pagina è scaduta. <0>Visualizza i dettagli dell'ordine\",\"WJqBqd\":\"Questo ticket non può essere eliminato perché è\\nassociato a un ordine. Puoi nasconderlo.\",\"ma6qdu\":\"Questo biglietto è nascosto alla vista del pubblico\",\"xJ8nzj\":\"Questo biglietto è nascosto a meno che non venga selezionato un codice Promo\",\"KosivG\":\"Ticket eliminato con successo\",\"HGuXjF\":\"Possessori di biglietti\",\"6tmWch\":\"Biglietto o prodotto\",\"USk+Mn\":\"Messaggio sulla pagina del ticket\",\"mRM6XH\":\"Vendita biglietti\",\"NirIiz\":\"Fascia del biglietto\",\"8jLPgH\":\"Tipo di biglietto\",\"jqWDf9\":\"Colore di sfondo del widget del biglietto\",\"UrMVAz\":\"Anteprima widget biglietto\",\"ngtDy7\":\"Colore del testo del widget del biglietto\",\"N+YYpo\":\"Biglietto(i)\",\"6GQNLE\":\"Biglietti\",\"NRhrIB\":\"Biglietti e prodotti\",\"ikA//P\":\"biglietti venduti\",\"i+idBz\":\"Biglietti venduti\",\"AGRilS\":\"Biglietti Venduti\",\"56Qw2C\":\"Biglietti ordinati con successo\",\"4f8A8M\":\"Biglietti a cui si applica il codice promo (si applica a tutti per impostazione predefinita)\",\"Aiggp0\":\"I prodotti a livelli consentono di offrire più opzioni di prezzo per lo stesso prodotto.\\nQuesto è perfetto per i prodotti early bird o per offrire prezzi diversi\\nper gruppi di persone diversi.\",\"oYaHuq\":\"Biglietto a livelli\",\"XZrhpz\":\"Biglietto a livelli - Prossimamente\",\"4M150e\":\"I biglietti a più livelli ti permettono di offrire più opzioni di prezzo per lo stesso biglietto.\\nQuesto è perfetto per i biglietti early bird o per offrire prezzi diversi\\nper gruppi di persone diversi.\",\"jQoYTX\":\"I biglietti a più livelli consentono di offrire diverse opzioni di prezzo per lo stesso biglietto. Questa soluzione è perfetta per i biglietti early bird o per offrire diverse opzioni di prezzo per gruppi di persone diversi..\",\"BZBYf3\":\"Per ricevere pagamenti con carta di credito, devi collegare il tuo account Stripe. Stripe è il nostro partner per l'elaborazione dei pagamenti che garantisce transazioni sicure e pagamenti puntuali.\",\"/b6Z1R\":\"Monitora ricavi, visualizzazioni di pagina e vendite con analisi dettagliate e report esportabili\",\"OpKMSn\":\"Commissione di Transazione:\",\"mLGbAS\":[\"Unable to \",[\"0\"],\" attendee\"],\"nNdxt9\":\"Impossibile creare il biglietto. Controlla i tuoi dati.\",\"IrVSu+\":\"Impossibile duplicare il prodotto. Controlla i tuoi dati\",\"Vx2J6x\":\"Impossibile recuperare il partecipante\",\"ZBAScj\":\"Partecipante Sconosciuto\",\"oMcLhS\":\"Quantità illimitata di biglietti disponibili\",\"ZkS2p3\":\"Annulla Pubblicazione Evento\",\"gsehpV\":\"Carica un'immagine da visualizzare sulla pagina dell'evento\",\"lnCMdg\":\"Carica immagine\",\"HtrFfw\":\"URL è obbligatorio\",\"fROFIL\":\"Vietnamita\",\"gj5YGm\":\"Visualizza e scarica i report per il tuo evento. Nota: solo gli ordini completati sono inclusi in questi report.\",\"c7VN/A\":\"Visualizza Risposte\",\"AM+zF3\":\"Visualizza i partecipanti\",\"e4mhwd\":\"Visualizza la homepage dell'evento\",\"n6EaWL\":\"Visualizza log\",\"AMkkeL\":\"Visualizza ordine\",\"MXm9nr\":\"Prodotto VIP\",\"GdWB+V\":\"Webhook creato con successo\",\"2X4ecw\":\"Webhook eliminato con successo\",\"CThMKa\":\"Log Webhook\",\"nuh/Wq\":\"URL Webhook\",\"8BMPMe\":\"Il webhook non invierà notifiche\",\"FSaY52\":\"Il webhook invierà notifiche\",\"v1kQyJ\":\"Webhooks\",\"jupD+L\":\"Bentornato 👋\",\"je8QQT\":\"Benvenuto su Hi.Events 👋\",\"wjqPqF\":\"Cosa sono i Biglietti a Livelli?\",\"5iXvHA\":\"Che cosa sono i Biglietti a Livelli?\",\"46L1AK\":\"Che cosa è un webhook?\",\"MhhnvW\":\"A quali biglietti si applica questo codice? (Si applica a tutti per impostazione predefinita)\",\"dCil3h\":\"A quali biglietti si dovrebbe applicare questa domanda?\",\"cxsKvw\":\"Quando un check-in viene eliminato\",\"Gmd0hv\":\"Quando viene creato un nuovo partecipante\",\"Lc18qn\":\"Quando viene creato un nuovo ordine\",\"dfkQIO\":\"Quando viene creato un nuovo prodotto\",\"8OhzyY\":\"Quando un prodotto viene eliminato\",\"tRXdQ9\":\"Quando un prodotto viene aggiornato\",\"Q7CWxp\":\"Quando un partecipante viene annullato\",\"IuUoyV\":\"Quando un partecipante effettua il check-in\",\"nBVOd7\":\"Quando un partecipante viene aggiornato\",\"ny2r8d\":\"Quando un ordine viene annullato\",\"c9RYbv\":\"Quando un ordine viene contrassegnato come pagato\",\"ejMDw1\":\"Quando un ordine viene rimborsato\",\"fVPt0F\":\"Quando un ordine viene aggiornato\",\"vVGiM4\":\"Who type of question is this?\",\"onLsWS\":\"Ops! Qualcosa è andato storto. Riprova o contatta l'assistenza se il problema persiste.\",\"AHXN2z\":\"Widget\",\"AU/8QR\":\"Configurazione del widget\",\"4ysd6z\":\"Puoi connetterti usando questo link Zoom...\",\"9HGdDw\":\"Puoi creare un codice promozionale che indirizza questo biglietto su\",\"UqVaVO\":\"Non è possibile modificare il tipo di biglietto poiché ci sono partecipanti associati a questo biglietto.\",\"zQ8idk\":\"Non puoi cambiare il tipo di biglietto perché ci sono già biglietti venduti per questo biglietto.\",\"3vRX5A\":\"Non puoi eliminare questa fascia di prezzo perché ci sono già biglietti venduti per questa fascia. Puoi nasconderla..\",\"RCC09s\":\"Non è possibile modificare una domanda predefinita\",\"XoeazJ\":\"Non ci sono domande da porre ai partecipanti. Le domande vengono poste una sola volta per partecipante.\",\"FZKDIe\":\"You have no order questions. Order questions are asked once per order.\",\"casL1O\":\"Hai tasse e commissioni aggiunte a un Prodotto Gratuito. Vuoi rimuoverle?\",\"183zcL\":\"Hai aggiunto tasse e commissioni a un biglietto gratuito. Vuoi rimuoverle o nasconderle?\",\"2v5MI1\":\"Non hai ancora inviato alcun messaggio. Puoi inviare messaggi a tutti i partecipanti o a specifici possessori di biglietti..\",\"LRguuL\":\"Devi avere almeno un livello\",\"FRl8Jv\":\"Devi verificare l'email del tuo account prima di poter inviare messaggi.\",\"8QNzin\":\"Avrai bisogno di un biglietto prima di poter creare un'assegnazione di capacità.\",\"WHXRMI\":\"Per iniziare, avrai bisogno di almeno un biglietto. Gratuito, a pagamento o lascia che sia l'utente a decidere quanto pagare.\",\"bdg03s\":\"Your account email in outgoing emails.\",\"TF37u6\":\"I tuoi partecipanti sono stati esportati con successo.\",\"nBqgQb\":\"La tua Email\",\"R02pnV\":\"Il tuo evento deve essere attivo prima di poter vendere biglietti ai partecipanti.\",\"cqo2VO\":\"Il tuo evento deve essere attivo prima di poter vendere i biglietti.\",\"la26JS\":\"Il tuo ordine è in corso\",\"XeNum6\":\"I tuoi ordini sono stati esportati con successo.\",\"vvO1I2\":\"Il tuo account Stripe è collegato e pronto per elaborare i pagamenti.\",\"3k7HDY\":\"Zip\",\"VftCuk\":\"Link Zoom, Link Google Meet, ecc.\",\"YtqjMA\":\"A causa dell'elevato rischio di spam, richiediamo una verifica manuale prima di poter inviare messaggi.\\nContattaci per richiedere l'accesso.\",\"8XAE7n\":\"Se hai un account con noi, riceverai un'email con le istruzioni su come reimpostare la tua\\npassword.\"}")}; \ No newline at end of file diff --git a/frontend/src/locales/it.po b/frontend/src/locales/it.po index 8ece042640..75a6f37d64 100644 --- a/frontend/src/locales/it.po +++ b/frontend/src/locales/it.po @@ -9,7 +9,7 @@ msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: \n" "PO-Revision-Date: 2025-05-04 12:37-0800\n" -"Last-Translator: Fabio Lovato \n" +"Last-Translator: Albano Battistella \n" "Language-Team: Italian\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" @@ -647,7 +647,7 @@ msgstr "Si è verificato un errore durante l'ordinamento delle domande. Riprova #: src/components/routes/welcome/index.tsx:75 msgid "An event is the gathering or occasion you’re organizing. You can add more details later." -msgstr "An event is the gathering or occasion you’re organizing. You can add more details later." +msgstr "Un evento è l'incontro o l'occasione che stai organizzando. Puoi aggiungere ulteriori dettagli in seguito." #: src/components/routes/welcome/index.tsx:23 msgid "An organizer is the company or person who is hosting the event" @@ -1424,7 +1424,7 @@ msgstr "Connetti elaborazione pagamenti" #: src/components/routes/account/ManageAccount/sections/PaymentSettings/index.tsx:52 #~ msgid "Connect Stripe" -#~ msgstr "Connect Stripe" +#~ msgstr "Connetti Stripe" #: src/components/routes/event/EventDashboard/index.tsx:205 msgid "Connect to Stripe" @@ -1453,7 +1453,7 @@ msgstr "Dettagli di Connessione" #: src/components/routes/event/settings.tsx:243 #~ msgid "Contact email" -#~ msgstr "Contact email" +#~ msgstr "Contatto email" #: src/components/modals/SendMessageModal/index.tsx:167 msgid "Contact Support" @@ -1691,7 +1691,7 @@ msgstr "Password Attuale" #: src/components/routes/event/Settings/Sections/LocationSettings/index.tsx:159 msgid "Custom Maps URL" -msgstr "URL Maps Personalizzato" +msgstr "URL Mappe personalizzate" #: src/components/common/ReportTable/index.tsx:53 msgid "Custom Range" @@ -1753,11 +1753,11 @@ msgstr "Ripartizione giornaliera di vendite, tasse e commissioni" #: src/components/common/QuestionsTable/index.tsx:115 #: src/components/common/WebhookTable/index.tsx:116 msgid "Danger zone" -msgstr "Danger zone" +msgstr "Zona pericolosa" #: src/components/common/AttendeeTable/index.tsx:179 msgid "Danger Zone" -msgstr "Danger Zone" +msgstr "Zona pericolosa" #: src/components/layouts/Event/index.tsx:89 msgid "Dashboard" @@ -2395,7 +2395,7 @@ msgstr "URL Evento" #: src/components/layouts/EventHomepage/EventNotAvailable/index.tsx:39 #~ msgid "Event wdwdeNot Available" -#~ msgstr "" +#~ msgstr "Evento wdwdeNon disponibile" #: src/components/layouts/Event/index.tsx:226 msgid "Events" @@ -2924,7 +2924,7 @@ msgstr "Se una nuova scheda non si è aperta automaticamente, clicca sul pulsant #: src/components/routes/ticket-widget/SelectTickets/index.tsx:236 #~ msgid "If a new tab did not open, please <0>{0}." -#~ msgstr "If a new tab did not open, please <0>{0}." +#~ msgstr "Se non si è aperta una nuova scheda, per favore <0>{0}." #: src/components/routes/product-widget/SelectProducts/index.tsx:284 #~ msgid "If a new tab did not open, please <0><1>{0}." @@ -2932,7 +2932,7 @@ msgstr "Se una nuova scheda non si è aperta automaticamente, clicca sul pulsant #: src/components/routes/event/Settings/Sections/LocationSettings/index.tsx:149 #~ msgid "If blank, the address will be used to generate a Google map link" -#~ msgstr "If blank, the address will be used to generate a Google map link" +#~ msgstr "Se vuoto, l'indirizzo verrà utilizzato per generare un collegamento a Google Maps" #: src/components/routes/event/Settings/Sections/LocationSettings/index.tsx:158 msgid "If blank, the address will be used to generate a Google Mapa link" @@ -3203,11 +3203,11 @@ msgstr "Ultimo Utilizzo" #: src/components/routes/event/EventDashboard/index.tsx:85 #~ msgid "Latest Orders" -#~ msgstr "Latest Orders" +#~ msgstr "Ultimi ordini" #: src/components/routes/account/ManageAccount/sections/PaymentSettings/index.tsx:56 #~ msgid "Learn more about Stripe" -#~ msgstr "Learn more about Stripe" +#~ msgstr "Scopri di più su Stripe" #: src/components/routes/event/Settings/Sections/PaymentSettings/index.tsx:191 msgid "Leave blank to use the default word \"Invoice\"" @@ -3215,7 +3215,7 @@ msgstr "Lascia vuoto per utilizzare la parola predefinita \"Fattura\"" #: src/components/routes/welcome/index.tsx:108 #~ msgid "Let's get started by creating your first event" -#~ msgstr "Let's get started by creating your first event" +#~ msgstr "Iniziamo creando il tuo primo evento" #: src/components/routes/welcome/index.tsx:20 msgid "Let's get started by creating your first organizer" @@ -3223,7 +3223,7 @@ msgstr "Iniziamo creando il tuo primo organizzatore" #: src/components/routes/event/Settings/Sections/HomepageAndCheckoutSettings/index.tsx:91 #~ msgid "Link color" -#~ msgstr "Link color" +#~ msgstr "Link colore" #: src/components/routes/event/EventDashboard/index.tsx:194 msgid "Link your Stripe account to receive funds from ticket sales." @@ -3278,7 +3278,7 @@ msgstr "Rendi obbligatorio l'indirizzo di fatturazione durante il checkout" #: src/components/routes/event/EventDashboard/index.tsx:172 #~ msgid "Make Event Live" -#~ msgstr "Make Event Live" +#~ msgstr "Rendi l'evento live" #: src/components/forms/QuestionForm/index.tsx:212 msgid "Make this question mandatory" @@ -3305,11 +3305,11 @@ msgstr "Gestisci partecipante" #: src/components/routes/account/ManageAccount/index.tsx:32 #~ msgid "Manage billing information and view invoices" -#~ msgstr "Manage billing information and view invoices" +#~ msgstr "Gestisci le informazioni di fatturazione e visualizza le fatture" #: src/components/routes/account/ManageAccount/index.tsx:24 #~ msgid "Manage default settings for new events" -#~ msgstr "Manage default settings for new events" +#~ msgstr "Gestisci le impostazioni predefinite per i nuovi eventi" #: src/components/common/EventCard/index.tsx:150 msgid "Manage event" @@ -3317,7 +3317,7 @@ msgstr "Gestisci evento" #: src/components/routes/account/ManageAccount/index.tsx:16 #~ msgid "Manage general account settings" -#~ msgstr "Manage general account settings" +#~ msgstr "Gestisci le impostazioni generali dell'account" #: src/components/common/OrdersTable/index.tsx:156 msgid "Manage order" @@ -3329,7 +3329,7 @@ msgstr "Gestisci le impostazioni di pagamento e fatturazione per questo evento." #: src/components/modals/CreateAttendeeModal/index.tsx:106 #~ msgid "Manage products" -#~ msgstr "Manage products" +#~ msgstr "Gestisci prodotti" #: src/components/routes/profile/ManageProfile/index.tsx:101 msgid "Manage Profile" @@ -3337,7 +3337,7 @@ msgstr "Gestisci Profilo" #: src/components/routes/account/ManageAccount/index.tsx:20 #~ msgid "Manage taxes and fees which can be applied to tickets" -#~ msgstr "Manage taxes and fees which can be applied to tickets" +#~ msgstr "Gestisci le tasse e le commissioni che possono essere applicate ai biglietti" #: src/components/routes/account/ManageAccount/sections/TaxSettings/index.tsx:17 msgid "Manage taxes and fees which can be applied to your products" @@ -3345,7 +3345,7 @@ msgstr "Gestisci tasse e commissioni che possono essere applicate ai tuoi prodot #: src/components/routes/account/ManageAccount/sections/TaxSettings/index.tsx:17 #~ msgid "Manage taxes and fees which can be applied to your tickets" -#~ msgstr "Manage taxes and fees which can be applied to your tickets" +#~ msgstr "Gestisci le tasse e le commissioni che possono essere applicate ai tuoi biglietti" #: src/components/modals/CreateAttendeeModal/index.tsx:106 msgid "Manage tickets" @@ -3353,7 +3353,7 @@ msgstr "Gestisci biglietti" #: src/components/routes/account/ManageAccount/index.tsx:28 #~ msgid "Manage users and their permissions" -#~ msgstr "Manage users and their permissions" +#~ msgstr "Gestire gli utenti e i loro permessi" #: src/components/routes/account/ManageAccount/sections/AccountSettings/index.tsx:54 msgid "Manage your account details and default settings" @@ -3361,7 +3361,7 @@ msgstr "Gestisci i dettagli del tuo account e le impostazioni predefinite" #: src/components/routes/account/ManageAccount/sections/BillingSettings/index.tsx:11 #~ msgid "Manage your billing and payment details" -#~ msgstr "Manage your billing and payment details" +#~ msgstr "Gestisci i tuoi dati di fatturazione e dettagli di pagamento" #: src/components/routes/account/ManageAccount/sections/PaymentSettings/index.tsx:241 msgid "Manage your payment processing and view platform fees" @@ -3369,7 +3369,7 @@ msgstr "Gestisci l'elaborazione dei pagamenti e visualizza le commissioni della #: src/components/routes/account/ManageAccount/sections/PaymentSettings/index.tsx:91 #~ msgid "Manage your Stripe payment details" -#~ msgstr "Manage your Stripe payment details" +#~ msgstr "Gestisci i dettagli dei tuoi pagamenti Stripe" #: src/components/routes/account/ManageAccount/sections/Users/index.tsx:143 msgid "Manage your users and their permissions" @@ -3390,7 +3390,7 @@ msgstr "Aggiungi Manualmente Partecipante" #: src/components/modals/CreateAttendeeModal/index.tsx:148 #~ msgid "Manually adding an attendee will adjust ticket quantity." -#~ msgstr "Manually adding an attendee will adjust ticket quantity." +#~ msgstr "L'aggiunta manuale di un partecipante modificherà la quantità dei biglietti." #: src/components/common/OrdersTable/index.tsx:167 msgid "Mark as paid" @@ -3414,7 +3414,7 @@ msgstr "Messaggio ai Partecipanti" #: src/components/modals/SendMessageModal/index.tsx:165 #~ msgid "Message attendees with specific products" -#~ msgstr "Message attendees with specific products" +#~ msgstr "Invia messaggi ai partecipanti con prodotti specifici" #: src/components/modals/SendMessageModal/index.tsx:206 msgid "Message attendees with specific tickets" @@ -3483,7 +3483,7 @@ msgstr "Opzioni di prezzo multiple. Perfetto per prodotti early bird ecc." #: src/components/forms/TicketForm/index.tsx:147 #~ msgid "Multiple price options. Perfect for early bird tickets etc." -#~ msgstr "Multiple price options. Perfect for early bird tickets etc." +#~ msgstr "Diverse opzioni di prezzo. Perfetto per biglietti early bird ecc." #: src/components/routes/event/Settings/Sections/SeoSettings/index.tsx:71 msgid "My amazing event description..." @@ -3553,7 +3553,7 @@ msgstr "No" #: src/components/common/QuestionAndAnswerList/index.tsx:104 #~ msgid "No {0} available." -#~ msgstr "No {0} available." +#~ msgstr "Non {0} disponibile." #: src/components/routes/event/Webhooks/index.tsx:22 msgid "No Active Webhooks" @@ -3609,7 +3609,7 @@ msgstr "Nessun evento terminato da mostrare." #: src/components/routes/organizer/OrganizerDashboard/index.tsx:88 #~ msgid "No events for this organizer" -#~ msgstr "No events for this organizer" +#~ msgstr "Nessun evento per questo organizzatore" #: src/components/common/NoEventsBlankSlate/index.tsx:14 msgid "No events to show" @@ -3665,7 +3665,7 @@ msgstr "Nessuna domanda risposta da questo partecipante." #: src/components/modals/ViewAttendeeModal/index.tsx:75 #~ msgid "No questions have been answered by this attendee." -#~ msgstr "No questions have been answered by this attendee." +#~ msgstr "Nessuna domanda ha ricevuto risposta da questo partecipante." #: src/components/modals/ManageOrderModal/index.tsx:119 msgid "No questions have been asked for this order." @@ -3693,7 +3693,7 @@ msgstr "Nessun risultato di ricerca." #: src/components/common/TaxAndFeeList/index.tsx:101 #~ msgid "No Taxes or Fees have been added yet." -#~ msgstr "No Taxes or Fees have been added yet." +#~ msgstr "Non sono state ancora aggiunte tasse o commissioni." #: src/components/common/TaxAndFeeList/index.tsx:101 msgid "No Taxes or Fees have been added." @@ -3701,11 +3701,11 @@ msgstr "Nessuna Tassa o Commissione è stata aggiunta." #: src/components/routes/ticket-widget/SelectTickets/index.tsx:197 #~ msgid "No tickets available" -#~ msgstr "No tickets available" +#~ msgstr "Nessun biglietto disponibile" #: src/components/common/TicketsTable/index.tsx:65 #~ msgid "No tickets to show" -#~ msgstr "No tickets to show" +#~ msgstr "Nessun biglietto da mostrare" #: src/components/modals/WebhookLogsModal/index.tsx:180 msgid "No webhook events have been recorded for this endpoint yet. Events will appear here once they are triggered." @@ -3900,7 +3900,7 @@ msgstr "Dettagli Ordine" #: src/components/modals/ViewOrderModal/index.tsx:30 #~ msgid "Order Details {0}" -#~ msgstr "Order Details {0}" +#~ msgstr "Dettagli dell'ordine {0}" #: src/components/modals/CancelOrderModal/index.tsx:29 msgid "Order has been canceled and the order owner has been notified." @@ -3937,11 +3937,11 @@ msgstr "Domande ordine" #: src/components/common/QuestionsTable/index.tsx:326 #~ msgid "Order questions are asked once per order. By default, people are asked for their first name, last name, and email address." -#~ msgstr "Order questions are asked once per order. By default, people are asked for their first name, last name, and email address." +#~ msgstr "Le domande relative all'ordine vengono poste una volta per ordine. Per impostazione predefinita, vengono richiesti nome, cognome e indirizzo email." #: src/components/common/QuestionsTable/index.tsx:226 #~ msgid "Order questions are asked once per order. By default, we ask for the first name, last name, and email address." -#~ msgstr "Order questions are asked once per order. By default, we ask for the first name, last name, and email address." +#~ msgstr "Le domande relative all'ordine vengono poste una sola volta per ordine. Per impostazione predefinita, chiediamo nome, cognome e indirizzo email." #: src/components/routes/product-widget/OrderSummaryAndProducts/index.tsx:112 msgid "Order Reference" @@ -3980,7 +3980,7 @@ msgstr "Ordini" #: src/components/common/StatBoxes/index.tsx:51 #: src/components/routes/event/EventDashboard/index.tsx:105 #~ msgid "Orders Created" -#~ msgstr "Orders Created" +#~ msgstr "Ordini Creati" #: src/components/routes/event/orders.tsx:94 msgid "Orders Exported" @@ -4007,7 +4007,7 @@ msgstr "Organizzatore" #: src/components/routes/event/settings.tsx:231 #~ msgid "Organizer Details" -#~ msgstr "Organizer Details" +#~ msgstr "Dettagli dell'organizzatore" #: src/components/modals/CreateEventModal/index.tsx:41 msgid "Organizer is required" @@ -4025,7 +4025,7 @@ msgstr "Gli organizzatori possono gestire solo eventi e prodotti. Non possono ge #: src/components/modals/EditUserModal/index.tsx:57 #: src/components/modals/InviteUserModal/index.tsx:49 #~ msgid "Organizers can only manage events and tickets. They cannot manage users, account settings or billing information." -#~ msgstr "Organizers can only manage events and tickets. They cannot manage users, account settings or billing information." +#~ msgstr "Gli organizzatori possono solo gestire eventi e biglietti. Non possono gestire utenti, impostazioni dell'account o informazioni di fatturazione." #: src/components/layouts/Event/index.tsx:87 msgid "Overview" @@ -4183,7 +4183,7 @@ msgstr "Termini di Pagamento" #: src/components/forms/PromoCodeForm/index.tsx:53 #~ msgid "percent" -#~ msgstr "percent" +#~ msgstr "per cento" #: src/components/forms/PromoCodeForm/index.tsx:51 #: src/components/forms/TaxAndFeeForm/index.tsx:27 @@ -4252,8 +4252,8 @@ msgstr "Crea un biglietto" #~ "Please ensure you only send emails directly related to the order. Promotional emails\n" #~ "should not be sent using this form." #~ msgstr "" -#~ "Please ensure you only send emails directly related to the order. Promotional emails\n" -#~ "should not be sent using this form." +#~ "Assicurati di inviare solo email direttamente correlate all'ordine. Le email promozionali\n" +#~ "non devono essere inviate tramite questo modulo." #: src/components/common/Editor/Controls/InsertImageControl/index.tsx:45 msgid "Please enter a valid image URL that points to an image." @@ -4261,7 +4261,7 @@ msgstr "Inserisci un URL valido che punti a un'immagine." #: src/components/routes/ticket-widget/SelectTickets/index.tsx:178 #~ msgid "Please enter a valid promo code" -#~ msgstr "Please enter a valid promo code" +#~ msgstr "Inserisci un codice promozionale valido" #: src/components/modals/CreateWebhookModal/index.tsx:30 msgid "Please enter a valid URL" @@ -4281,7 +4281,7 @@ msgstr "Per favore, fornisci un'immagine." #: src/components/common/TicketsTable/index.tsx:84 #~ msgid "Please remove filters and set sorting to \"Homepage order\" to enable sorting" -#~ msgstr "Please remove filters and set sorting to \"Homepage order\" to enable sorting" +#~ msgstr "Si prega di rimuovere i filtri e impostare l'ordinamento su \"Ordine homepage\" per abilitare l'ordinamento" #: src/components/layouts/Checkout/index.tsx:159 msgid "Please return to the event page to start over." @@ -4343,19 +4343,19 @@ msgstr "Offerto da" #: src/components/common/EventDocumentHead/index.tsx:12 #~ msgid "Powered By" -#~ msgstr "Powered By" +#~ msgstr "Offerto da" #: src/components/layouts/EventHomepage/Footer/index.tsx:7 #~ msgid "Powered by <0>Hi.Events 👋" -#~ msgstr "Powered by <0>Hi.Events 👋" +#~ msgstr "Offerto da <0>Hi.Events 👋" #: src/components/common/EventDocumentHead/index.tsx:14 #~ msgid "Powered By Hi.Events" -#~ msgstr "Powered By Hi.Events" +#~ msgstr "Offerto da Hi.Events" #: src/components/forms/StripeCheckoutForm/index.tsx:137 #~ msgid "Powered by Stripe" -#~ msgstr "Powered by Stripe" +#~ msgstr "Offerto da Stripe" #: src/components/routes/event/Settings/Sections/HomepageAndCheckoutSettings/index.tsx:67 msgid "Pre Checkout message" @@ -4390,7 +4390,7 @@ msgstr "Livelli di prezzo" #: src/components/forms/TicketForm/index.tsx:191 #~ msgid "Price Tiers" -#~ msgstr "Price Tiers" +#~ msgstr "Fasce di prezzo" #: src/components/forms/ProductForm/index.tsx:228 msgid "Price Type" @@ -4423,7 +4423,7 @@ msgstr "Stampa Biglietti" #: src/components/common/AttendeeTable/index.tsx:190 #~ msgid "product" -#~ msgstr "product" +#~ msgstr "prodotto" #: src/components/common/AttendeeDetails/index.tsx:37 #: src/components/modals/ManageAttendeeModal/index.tsx:119 @@ -4530,7 +4530,7 @@ msgstr "Codice promo {promo_code} applicato" #: src/components/routes/ticket-widget/SelectTickets/index.tsx:119 #~ msgid "Promo {promoCode} code applied" -#~ msgstr "Promo {promoCode} code applied" +#~ msgstr "Codice {promoCode} promo applicato" #: src/components/common/OrderDetails/index.tsx:86 msgid "Promo code" @@ -4576,7 +4576,7 @@ msgstr "Pubblica Evento" #: src/components/common/GlobalMenu/index.tsx:25 #~ msgid "Purchase License" -#~ msgstr "Purchase License" +#~ msgstr "Acquista licenza" #: src/components/modals/ShareModal/index.tsx:126 msgid "QR Code" @@ -4723,7 +4723,7 @@ msgstr "Reinvia email ordine" #: src/components/common/AttendeeTable/index.tsx:179 #~ msgid "Resend product email" -#~ msgstr "Resend product email" +#~ msgstr "Invia nuovamente l'email del prodotto" #: src/components/common/AttendeeTable/index.tsx:171 msgid "Resend ticket email" @@ -4794,7 +4794,7 @@ msgstr "Data Inizio Vendita" #: src/components/routes/ticket-widget/SelectTickets/index.tsx:35 #: src/components/routes/ticket-widget/SelectTickets/Prices/Tiered/index.tsx:29 #~ msgid "Sale starts" -#~ msgstr "Sale starts" +#~ msgstr "Inizio vendite" #: src/components/common/ProductPriceAvailability/index.tsx:13 #: src/components/common/ProductPriceAvailability/index.tsx:35 @@ -4846,7 +4846,7 @@ msgstr "Scansiona questo codice QR per accedere alla pagina dell'evento o condiv #: src/components/layouts/CheckIn/index.tsx:288 #~ msgid "Seach by name, order #, attendee # or email..." -#~ msgstr "Seach by name, order #, attendee # or email..." +#~ msgstr "Cerca per nome, ordine #, partecipante # o email..." #: src/components/routes/event/attendees.tsx:64 msgid "Search by attendee name, email or order #..." @@ -4854,7 +4854,7 @@ msgstr "Cerca per nome partecipante, email o numero ordine..." #: src/components/routes/events/Dashboard/index.tsx:44 #~ msgid "Search by event name or description..." -#~ msgstr "Search by event name or description..." +#~ msgstr "Cerca per nome o descrizione dell'evento..." #: src/components/routes/events/Dashboard/index.tsx:69 #: src/components/routes/organizer/OrganizerDashboard/index.tsx:66 @@ -4863,7 +4863,7 @@ msgstr "Cerca per nome evento..." #: src/components/routes/event/tickets.tsx:43 #~ msgid "Search by name or description..." -#~ msgstr "Search by name or description..." +#~ msgstr "Cerca per nome o descrizione..." #: src/components/routes/event/orders.tsx:126 msgid "Search by name, email, or order #..." @@ -4879,15 +4879,15 @@ msgstr "Cerca per nome..." #: src/components/routes/event/orders.tsx:46 #~ msgid "Search by order #, name or email..." -#~ msgstr "Search by order #, name or email..." +#~ msgstr "Ricerca per ordiner #, nome o email..." #: src/components/routes/event/products.tsx:43 #~ msgid "Search by product name..." -#~ msgstr "Search by product name..." +#~ msgstr "Cerca per nome del prodotto..." #: src/components/routes/event/messages.tsx:37 #~ msgid "Search by subject or body..." -#~ msgstr "Search by subject or body..." +#~ msgstr "Cerca per argomento o corpo..." #: src/components/routes/event/messages.tsx:34 msgid "Search by subject or content..." @@ -4895,7 +4895,7 @@ msgstr "Cerca per oggetto o contenuto..." #: src/components/routes/event/tickets.tsx:43 #~ msgid "Search by ticket name..." -#~ msgstr "Search by ticket name..." +#~ msgstr "Cerca per nome del biglietto..." #: src/components/routes/event/CapacityAssignments/index.tsx:37 msgid "Search capacity assignments..." @@ -4973,7 +4973,7 @@ msgstr "Seleziona Biglietto" #: src/components/modals/CreateAttendeeModal/index.tsx:163 #: src/components/modals/EditAttendeeModal/index.tsx:117 #~ msgid "Select Ticket Tier" -#~ msgstr "Select Ticket Tier" +#~ msgstr "Seleziona fascia biglietto" #: src/components/forms/CheckInListForm/index.tsx:26 #: src/components/modals/SendMessageModal/index.tsx:207 @@ -4982,7 +4982,7 @@ msgstr "Seleziona biglietti" #: src/components/layouts/EventHomepage/index.tsx:20 #~ msgid "Select Tickets" -#~ msgstr "Select Tickets" +#~ msgstr "Seleziona Tickets" #: src/components/common/ReportTable/index.tsx:261 msgid "Select time period" @@ -5034,7 +5034,7 @@ msgstr "Invia Messaggio" #: src/components/modals/CreateAttendeeModal/index.tsx:191 #~ msgid "Send order confirmation and product email" -#~ msgstr "Send order confirmation and product email" +#~ msgstr "Inviare conferma dell'ordine ed email del prodotto" #: src/components/modals/CreateAttendeeModal/index.tsx:192 msgid "Send order confirmation and ticket email" @@ -5070,7 +5070,7 @@ msgstr "Commissione di Servizio" #: 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" +#~ msgstr "Imposta un prezzo minimo e consenti agli utenti di donare di più" #: src/components/forms/ProductForm/index.tsx:159 msgid "Set a minimum price and let users pay more if they choose" @@ -5086,7 +5086,7 @@ msgstr "Configura il tuo evento" #: src/components/routes/event/EventDashboard/index.tsx:190 #~ msgid "Set up your payment processing to receive funds from ticket sales." -#~ msgstr "Set up your payment processing to receive funds from ticket sales." +#~ msgstr "Imposta l'elaborazione dei pagamenti per ricevere fondi dalla vendita dei biglietti." #: src/components/routes/event/GettingStarted/index.tsx:183 msgid "Set your event live" @@ -5162,7 +5162,7 @@ msgstr "Mostra quantità prodotto disponibile" #: src/components/forms/TicketForm/index.tsx:348 #~ msgid "Show available ticket quantity" -#~ msgstr "Show available ticket quantity" +#~ msgstr "Mostra la quantità di biglietti disponibili" #: src/components/common/QuestionsTable/index.tsx:295 msgid "Show hidden questions" @@ -5178,7 +5178,7 @@ msgstr "Mostra tasse e commissioni separatamente" #: src/components/routes/event/Settings/Sections/HomepageAndCheckoutSettings/index.tsx:76 #~ msgid "Shown to the customer after they checkout, on the order summary page" -#~ msgstr "Shown to the customer after they checkout, on the order summary page" +#~ msgstr "Mostrato al cliente dopo il pagamento, nella pagina di riepilogo dell'ordine" #: src/components/routes/event/Settings/Sections/HomepageAndCheckoutSettings/index.tsx:79 msgid "Shown to the customer after they checkout, on the order summary page." @@ -5267,7 +5267,7 @@ msgstr "Spiacenti, questo ordine non esiste più." #: src/components/routes/ticket-widget/SelectTickets/index.tsx:208 #~ msgid "Sorry, this promo code is invalid'" -#~ msgstr "Sorry, this promo code is invalid'" +#~ msgstr "Spiacenti, questo codice promozionale non è valido'" #: src/components/routes/product-widget/SelectProducts/index.tsx:246 msgid "Sorry, this promo code is not recognized" @@ -5275,11 +5275,11 @@ msgstr "Spiacenti, questo codice promo non è riconosciuto" #: src/components/layouts/Checkout/index.tsx:26 #~ msgid "Sorry, your order has expired. Please start a new order." -#~ msgstr "Sorry, your order has expired. Please start a new order." +#~ msgstr "Spiacenti, il tuo ordine è scaduto. Inizia un nuovo ordine.r." #: src/components/common/TicketsTable/SortableTicket/index.tsx:115 #~ msgid "Sorting is disabled while filters and sorting are applied" -#~ msgstr "Sorting is disabled while filters and sorting are applied" +#~ msgstr "L'ordinamento è disabilitato mentre vengono applicati filtri e ordinamento" #: src/components/common/LanguageSwitcher/index.tsx:18 msgid "Spanish" @@ -5291,7 +5291,7 @@ msgstr "Prodotto standard con prezzo fisso" #: src/components/forms/TicketForm/index.tsx:129 #~ msgid "Standard ticket with a fixed price" -#~ msgstr "Standard ticket with a fixed price" +#~ msgstr "Biglietto standard a prezzo fisso" #: src/components/modals/CreateEventModal/index.tsx:144 #: src/components/modals/DuplicateEventModal/index.tsx:93 @@ -5302,7 +5302,7 @@ msgstr "Data Inizio" #: src/components/routes/event/settings.tsx:112 #~ msgid "State" -#~ msgstr "State" +#~ msgstr "Stato" #: src/components/common/CheckoutQuestion/index.tsx:165 #: src/components/routes/event/Settings/Sections/LocationSettings/index.tsx:139 @@ -5361,7 +5361,7 @@ msgstr "Partecipante {0} con successo" #: src/components/common/AttendeeCheckInTable/index.tsx:47 #: src/components/common/AttendeeCheckInTable/index.tsx:71 #~ msgid "Successfully checked <0>{0} {1} {2}" -#~ msgstr "Successfully checked <0>{0} {1} {2}" +#~ msgstr "Controllato con successo <0>{0} {1} {2}" #: src/components/routes/profile/ConfirmEmailAddress/index.tsx:23 msgid "Successfully confirmed email address" @@ -5390,11 +5390,11 @@ msgstr "Domanda Creata con Successo" #: src/components/modals/CreateTicketModal/index.tsx:50 #~ msgid "Successfully Created Ticket" -#~ msgstr "Successfully Created Ticket" +#~ msgstr "Ticket creato con successo" #: src/components/common/TicketsTable/index.tsx:48 #~ msgid "Successfully deleted ticket" -#~ msgstr "Successfully deleted ticket" +#~ msgstr "Ticket eliminato con successo" #: src/components/modals/DuplicateProductModal/index.tsx:95 msgid "Successfully Duplicated Product" @@ -5514,7 +5514,7 @@ msgstr "Tasse" #: src/components/routes/account/ManageAccount/index.tsx:19 #: src/components/routes/account/ManageAccount/sections/TaxSettings/index.tsx:14 #~ msgid "Taxes & Fees" -#~ msgstr "Taxes & Fees" +#~ msgstr "Tasse e commissioni" #: src/components/forms/ProductForm/index.tsx:351 #: src/components/forms/ProductForm/index.tsx:358 @@ -5527,7 +5527,7 @@ msgstr "Tasse e Commissioni" #: src/components/routes/event/Settings/Sections/HomepageAndCheckoutSettings/index.tsx:81 #~ msgid "Text Colour" -#~ msgstr "Text Colour" +#~ msgstr "Colore del testo" #: src/components/routes/product-widget/SelectProducts/index.tsx:138 #: src/components/routes/product-widget/SelectProducts/index.tsx:186 @@ -5536,17 +5536,17 @@ msgstr "Quel codice promo non è valido" #: src/components/routes/event/Settings/Sections/HomepageAndCheckoutSettings/index.tsx:78 #~ msgid "The background color for the event homepage" -#~ msgstr "The background color for the event homepage" +#~ msgstr "Il colore di sfondo per la homepage dell'evento" #: src/components/routes/event/Settings/Sections/HomepageAndCheckoutSettings/index.tsx:98 #~ msgid "The background color for the ticket widget on the event homepage" -#~ msgstr "The background color for the ticket widget on the event homepage" +#~ msgstr "Il colore di sfondo per il widget del biglietto nella home page dell'evento" #: src/components/routes/event/settings.tsx:50 #: src/components/routes/event/settings.tsx:134 #: src/components/routes/event/settings.tsx:210 #~ msgid "The basic details of your event" -#~ msgstr "The basic details of your event" +#~ msgstr "I dettagli di base del tuo evento" #: src/components/layouts/CheckIn/index.tsx:316 msgid "The check-in list you are looking for does not exist." @@ -5554,11 +5554,11 @@ msgstr "La lista di check-in che stai cercando non esiste." #: src/components/routes/event/Settings/Sections/HomepageAndCheckoutSettings/index.tsx:88 #~ msgid "The color of the buttons on the event homepage" -#~ msgstr "The color of the buttons on the event homepage" +#~ msgstr "Il colore dei pulsanti nella homepage dell'evento" #: src/components/routes/event/Settings/Sections/HomepageAndCheckoutSettings/index.tsx:92 #~ msgid "The color of the links on the event homepage" -#~ msgstr "The color of the links on the event homepage" +#~ msgstr "Il colore dei link nella homepage dell'evento" #: src/components/forms/OrganizerForm/index.tsx:47 #: src/components/routes/account/ManageAccount/sections/AccountSettings/index.tsx:75 @@ -5585,7 +5585,7 @@ msgstr "Il link che hai cliccato non è valido." #: src/components/routes/event/settings.tsx:85 #~ msgid "The location of your event" -#~ msgstr "The location of your event" +#~ msgstr "La posizione del tuo evento" #: src/components/routes/product-widget/SelectProducts/index.tsx:444 msgid "The maximum number of products for {0}is {1}" @@ -5593,15 +5593,15 @@ msgstr "Il numero massimo di prodotti per {0}è {1}" #: src/components/routes/ticket-widget/SelectTickets/index.tsx:351 #~ msgid "The maximum numbers number of tickets for {0}is {1}" -#~ msgstr "The maximum numbers number of tickets for {0}is {1}" +#~ msgstr "Il numero massimo di biglietti per {0}è {1}" #: src/components/routes/ticket-widget/SelectTickets/index.tsx:318 #~ msgid "The maximum numbers number of tickets for Generals is {0}" -#~ msgstr "The maximum numbers number of tickets for Generals is {0}" +#~ msgstr "Il numero massimo di biglietti per i Generali è {0}" #: src/components/routes/event/settings.tsx:232 #~ msgid "The organizer details of your event" -#~ msgstr "The organizer details of your event" +#~ msgstr "I dettagli dell'organizzatore del tuo evento" #: src/components/common/ErrorDisplay/index.tsx:17 msgid "The page you are looking for does not exist" @@ -5621,7 +5621,7 @@ msgstr "Le impostazioni di stile che scegli si applicano solo all'HTML copiato e #: src/components/forms/TicketForm/index.tsx:223 #~ msgid "The tax and fee to apply to this ticket. You can create new taxes and fees on the" -#~ msgstr "The tax and fee to apply to this ticket. You can create new taxes and fees on the" +#~ msgstr "Le tasse e le commissioni da applicare a questo biglietto. Puoi creare nuove tasse e commissioni su" #: src/components/forms/ProductForm/index.tsx:355 msgid "The taxes and fees to apply to this product. You can create new taxes and fees on the" @@ -5629,11 +5629,11 @@ msgstr "Le tasse e commissioni da applicare a questo prodotto. Puoi creare nuove #: src/components/forms/TicketForm/index.tsx:300 #~ msgid "The taxes and fees to apply to this ticket. You can create new taxes and fees on the" -#~ msgstr "The taxes and fees to apply to this ticket. You can create new taxes and fees on the" +#~ msgstr "Le tasse e le commissioni da applicare a questo biglietto. Puoi creare nuove tasse e commissioni su" #: src/components/routes/event/Settings/Sections/HomepageAndCheckoutSettings/index.tsx:82 #~ msgid "The text color for the event homepage" -#~ msgstr "The text color for the event homepage" +#~ msgstr "Il colore del testo per la homepage dell'evento" #: src/components/routes/event/Settings/Sections/HomepageAndCheckoutSettings/index.tsx:102 #~ msgid "The text color for the ticket widget on the event homepage" @@ -5641,7 +5641,7 @@ msgstr "Le tasse e commissioni da applicare a questo prodotto. Puoi creare nuove #: src/components/routes/event/Settings/Sections/HomepageAndCheckoutSettings/index.tsx:91 #~ msgid "The text to display in the 'Continue' button. Defaults to 'Continue'" -#~ msgstr "The text to display in the 'Continue' button. Defaults to 'Continue'" +#~ msgstr "Il testo da visualizzare nel pulsante \"Continua\". Il valore predefinito è \"Continua\".'" #: src/components/routes/event/Settings/Sections/SeoSettings/index.tsx:63 msgid "The title of the event that will be displayed in search engine results and when sharing on social media. By default, the event title will be used" @@ -5649,7 +5649,7 @@ msgstr "Il titolo dell'evento che verrà visualizzato nei risultati dei motori d #: src/components/modals/EditUserModal/index.tsx:79 #~ msgid "The user must login to change their email." -#~ msgstr "The user must login to change their email." +#~ msgstr "L'utente deve effettuare l'accesso per modificare la propria email." #: src/components/routes/product-widget/SelectProducts/index.tsx:272 msgid "There are no products available for this event" @@ -5661,7 +5661,7 @@ msgstr "Non ci sono prodotti disponibili in questa categoria" #: src/components/routes/ticket-widget/SelectTickets/index.tsx:260 #~ msgid "There are no tickets available for this event" -#~ msgstr "There are no tickets available for this event" +#~ msgstr "Non ci sono biglietti disponibili per questo evento" #: src/components/modals/RefundOrderModal/index.tsx:137 msgid "There is a refund pending. Please wait for it to complete before requesting another refund." @@ -5685,15 +5685,15 @@ msgstr "Si è verificato un errore durante l'invio del tuo messaggio" #: src/components/forms/QuestionForm/index.tsx:108 #~ msgid "These allow multiple selections" -#~ msgstr "These allow multiple selections" +#~ msgstr "Questi consentono selezioni multiple" #: src/components/common/WidgetEditor/index.tsx:86 #~ msgid "These colors are not saved in our system." -#~ msgstr "These colors are not saved in our system." +#~ msgstr "Questi colori non vengono salvati nel nostro sistema." #: src/components/common/WidgetEditor/index.tsx:85 #~ msgid "These colors are not saved in our system. They are only used to generate the widget." -#~ msgstr "These colors are not saved in our system. They are only used to generate the widget." +#~ msgstr "Questi colori non vengono salvati nel nostro sistema. Vengono utilizzati solo per generare il widget.." #: src/components/routes/event/Settings/Sections/LocationSettings/index.tsx:105 msgid "These details will only be shown if order is completed successfully. Orders awaiting payment will not show this message." @@ -5741,11 +5741,11 @@ msgstr "Questa email non è promozionale ed è direttamente correlata all'evento #: src/components/layouts/EventHomepage/EventNotAvailable/index.tsx:8 #~ msgid "This event is not available at the moment. Please check back later." -#~ msgstr "This event is not available at the moment. Please check back later." +#~ msgstr "Questo evento non è disponibile al momento. Torna più tardi.." #: src/components/layouts/EventHomepage/index.tsx:49 #~ msgid "This event is not available." -#~ msgstr "This event is not available." +#~ msgstr "Questo evento non è disponibile." #: src/components/routes/event/Settings/Sections/PaymentSettings/index.tsx:152 msgid "This information will be shown on the payment page, order summary page, and order confirmation email." @@ -5761,7 +5761,7 @@ msgstr "Questo è un evento online" #: src/components/routes/event/Settings/Sections/EmailSettings/index.tsx:61 #~ msgid "This is the email address that will be used as the reply-to address for all emails sent from this event" -#~ msgstr "This is the email address that will be used as the reply-to address for all emails sent from this event" +#~ msgstr "Questo è l'indirizzo email che verrà utilizzato come indirizzo di risposta per tutte le email inviate da questo evento" #: src/components/forms/CheckInListForm/index.tsx:57 msgid "This list will no longer be available for check-ins after this date" @@ -5787,11 +5787,11 @@ msgstr "Questo ordine è già stato pagato." #: src/components/routes/ticket-widget/Payment/index.tsx:40 #~ msgid "This order has already been paid. <0>View order details" -#~ msgstr "This order has already been paid. <0>View order details" +#~ msgstr "Questo ordine è già stato pagato. <0>Visualizza i dettagli dell'ordine" #: src/components/routes/ticket-widget/CollectInformation/index.tsx:199 #~ msgid "This order has already been processed." -#~ msgstr "This order has already been processed." +#~ msgstr "Questo ordine è già stato elaborato." #: src/components/modals/RefundOrderModal/index.tsx:141 msgid "This order has already been refunded." @@ -5807,7 +5807,7 @@ msgstr "Questo ordine è stato annullato." #: src/components/routes/ticket-widget/CollectInformation/index.tsx:182 #~ msgid "This order has been completed." -#~ msgstr "This order has been completed." +#~ msgstr "Questo ordine è stato completato." #: src/components/routes/product-widget/CollectInformation/index.tsx:210 msgid "This order has expired. Please start again." @@ -5819,7 +5819,7 @@ msgstr "Questo ordine è in attesa di pagamento" #: src/components/routes/ticket-widget/CollectInformation/index.tsx:188 #~ msgid "This order is awaiting payment." -#~ msgstr "This order is awaiting payment." +#~ msgstr "Questo ordine è in attesa di pagamento." #: src/components/routes/product-widget/CollectInformation/index.tsx:229 msgid "This order is complete" @@ -5837,7 +5837,7 @@ msgstr "Questo ordine è in elaborazione." #: src/components/routes/ticket-widget/OrderSummaryAndTickets/index.tsx:32 #: src/components/routes/ticket-widget/OrderSummaryAndTickets/index.tsx:48 #~ msgid "This order is processing. TODO - a nice image and poll the API" -#~ msgstr "This order is processing. TODO - a nice image and poll the API" +#~ msgstr "Questo ordine è in fase di elaborazione. TODO: una bella immagine e interroga l'API" #: src/components/forms/StripeCheckoutForm/index.tsx:103 msgid "This order page is no longer available." @@ -5849,11 +5849,11 @@ msgstr "Questo sovrascrive tutte le impostazioni di visibilità e nasconderà il #: src/components/forms/TicketForm/index.tsx:360 #~ msgid "This overrides all visibility settings and will hide the ticket from all customers." -#~ msgstr "This overrides all visibility settings and will hide the ticket from all customers." +#~ msgstr "Questo sovrascrive tutte le impostazioni di visibilità e nasconderà il ticket a tutti i clienti." #: src/components/routes/ticket-widget/Payment/index.tsx:53 #~ msgid "This page has expired. <0>View order details" -#~ msgstr "This page has expired. <0>View order details" +#~ msgstr "Questa pagina è scaduta. <0>Visualizza i dettagli dell'ordine" #: src/components/common/ProductsTable/SortableProduct/index.tsx:59 msgid "This product cannot be deleted because it is associated with an order. You can hide it instead." @@ -5884,16 +5884,16 @@ msgstr "Questo link per reimpostare la password non è valido o è scaduto." #~ "This ticket cannot be deleted because it is\n" #~ "associated with an order. You can hide it instead." #~ msgstr "" -#~ "This ticket cannot be deleted because it is\n" -#~ "associated with an order. You can hide it instead." +#~ "Questo ticket non può essere eliminato perché è\n" +#~ "associato a un ordine. Puoi nasconderlo." #: src/components/common/TicketsTable/SortableTicket/index.tsx:131 #~ msgid "This ticket is hidden from public view" -#~ msgstr "This ticket is hidden from public view" +#~ msgstr "Questo biglietto è nascosto alla vista del pubblico" #: src/components/common/TicketsTable/SortableTicket/index.tsx:132 #~ msgid "This ticket is hidden unless targeted by a Promo Code" -#~ msgstr "This ticket is hidden unless targeted by a Promo Code" +#~ msgstr "Questo biglietto è nascosto a meno che non venga selezionato un codice Promo" #: src/components/modals/EditUserModal/index.tsx:65 msgid "This user is not active, as they have not accepted their invitation." @@ -5911,7 +5911,7 @@ msgstr "Biglietto" #: src/components/common/TicketsTable/SortableTicket/index.tsx:52 #~ msgid "Ticket deleted successfully" -#~ msgstr "Ticket deleted successfully" +#~ msgstr "Ticket eliminato con successo" #: src/components/common/AttendeeTable/index.tsx:49 msgid "Ticket email has been resent to attendee" @@ -5927,44 +5927,44 @@ msgstr "Biglietto o prodotto" #: src/components/routes/event/Settings/Sections/HomepageAndCheckoutSettings/index.tsx:63 #~ msgid "Ticket page message" -#~ msgstr "Ticket page message" +#~ msgstr "Messaggio sulla pagina del ticket" #: src/components/routes/event/EventDashboard/index.tsx:53 #~ msgid "Ticket Sales" -#~ msgstr "Ticket Sales" +#~ msgstr "Vendita biglietti" #: src/components/modals/CreateAttendeeModal/index.tsx:161 #: src/components/modals/EditAttendeeModal/index.tsx:115 #~ msgid "Ticket Tier" -#~ msgstr "Ticket Tier" +#~ msgstr "Fascia del biglietto" #: src/components/forms/TicketForm/index.tsx:189 #: src/components/forms/TicketForm/index.tsx:196 #~ msgid "Ticket Type" -#~ msgstr "Ticket Type" +#~ msgstr "Tipo di biglietto" #: src/components/routes/event/Settings/Sections/HomepageAndCheckoutSettings/index.tsx:97 #~ msgid "Ticket widget background color" -#~ msgstr "Ticket widget background color" +#~ msgstr "Colore di sfondo del widget del biglietto" #: src/components/common/WidgetEditor/index.tsx:311 #~ msgid "Ticket Widget Preview" -#~ msgstr "Ticket Widget Preview" +#~ msgstr "Anteprima widget biglietto" #: src/components/routes/event/Settings/Sections/HomepageAndCheckoutSettings/index.tsx:101 #~ msgid "Ticket widget text color" -#~ msgstr "Ticket widget text color" +#~ msgstr "Colore del testo del widget del biglietto" #: src/components/common/PromoCodeTable/index.tsx:147 #~ msgid "Ticket(s)" -#~ msgstr "Ticket(s)" +#~ msgstr "Biglietto(i)" #: src/components/common/PromoCodeTable/index.tsx:71 #: src/components/layouts/Event/index.tsx:40 #: src/components/layouts/EventHomepage/index.tsx:80 #: src/components/routes/event/tickets.tsx:39 #~ msgid "Tickets" -#~ msgstr "Tickets" +#~ msgstr "Biglietti" #: src/components/layouts/Event/index.tsx:101 #: src/components/routes/event/products.tsx:46 @@ -5977,23 +5977,23 @@ msgstr "Biglietti per" #: src/components/common/EventCard/index.tsx:126 #~ msgid "tickets sold" -#~ msgstr "tickets sold" +#~ msgstr "biglietti venduti" #: src/components/common/StatBoxes/index.tsx:21 #~ msgid "Tickets sold" -#~ msgstr "Tickets sold" +#~ msgstr "Biglietti venduti" #: src/components/routes/event/EventDashboard/index.tsx:73 #~ msgid "Tickets Sold" -#~ msgstr "Tickets Sold" +#~ msgstr "Biglietti Venduti" #: src/components/common/TicketsTable/index.tsx:44 #~ msgid "Tickets sorted successfully" -#~ msgstr "Tickets sorted successfully" +#~ msgstr "Biglietti ordinati con successo" #: src/components/forms/PromoCodeForm/index.tsx:59 #~ msgid "Tickets to which the promo code applies (Applies to all by default)" -#~ msgstr "Tickets to which the promo code applies (Applies to all by default)" +#~ msgstr "Biglietti a cui si applica il codice promo (si applica a tutti per impostazione predefinita)" #: src/components/forms/ProductForm/index.tsx:67 msgid "Tier {0}" @@ -6009,9 +6009,9 @@ msgstr "Prodotto a Livelli" #~ "This is perfect for early bird products, or offering different price\n" #~ "options for different groups of people." #~ msgstr "" -#~ "Tiered products allow you to offer multiple price options for the same product.\n" -#~ "This is perfect for early bird products, or offering different price\n" -#~ "options for different groups of people." +#~ "I prodotti a livelli consentono di offrire più opzioni di prezzo per lo stesso prodotto.\n" +#~ "Questo è perfetto per i prodotti early bird o per offrire prezzi diversi\n" +#~ "per gruppi di persone diversi." #: src/components/forms/ProductForm/index.tsx:243 msgid "Tiered products allow you to offer multiple price options for the same product. This is perfect for early bird products, or offering different price options for different groups of people." @@ -6019,11 +6019,11 @@ msgstr "I prodotti a livelli ti permettono di offrire più opzioni di prezzo per #: src/components/forms/TicketForm/index.tsx:145 #~ msgid "Tiered Ticket" -#~ msgstr "Tiered Ticket" +#~ msgstr "Biglietto a livelli" #: src/components/forms/TicketForm/index.tsx:52 #~ msgid "Tiered Ticket - Coming Soon" -#~ msgstr "Tiered Ticket - Coming Soon" +#~ msgstr "Biglietto a livelli - Prossimamente" #: src/components/forms/TicketForm/index.tsx:203 #~ msgid "" @@ -6031,13 +6031,13 @@ msgstr "I prodotti a livelli ti permettono di offrire più opzioni di prezzo per #~ "This is perfect for early bird tickets, or offering different price\n" #~ "options for different groups of people." #~ msgstr "" -#~ "Tiered tickets allow you to offer multiple price options for the same ticket.\n" -#~ "This is perfect for early bird tickets, or offering different price\n" -#~ "options for different groups of people." +#~ "I biglietti a più livelli ti permettono di offrire più opzioni di prezzo per lo stesso biglietto.\n" +#~ "Questo è perfetto per i biglietti early bird o per offrire prezzi diversi\n" +#~ "per gruppi di persone diversi." #: src/components/forms/TicketForm/index.tsx:156 #~ 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." +#~ msgstr "I biglietti a più livelli consentono di offrire diverse opzioni di prezzo per lo stesso biglietto. Questa soluzione è perfetta per i biglietti early bird o per offrire diverse opzioni di prezzo per gruppi di persone diversi.." #: src/components/layouts/Checkout/index.tsx:90 msgid "Time left:" @@ -6158,7 +6158,7 @@ msgstr "Impossibile creare la domanda. Controlla i tuoi dati" #: src/components/modals/CreateTicketModal/index.tsx:65 #: src/components/routes/ticket-widget/SelectTickets/index.tsx:117 #~ msgid "Unable to create ticket. Please check the your details" -#~ msgstr "Unable to create ticket. Please check the your details" +#~ msgstr "Impossibile creare il biglietto. Controlla i tuoi dati." #: src/components/modals/DuplicateProductModal/index.tsx:103 msgid "Unable to duplicate product. Please check the your details" @@ -6199,7 +6199,7 @@ msgstr "Disponibilità illimitata" #: src/components/common/TicketsTable/index.tsx:106 #~ msgid "Unlimited ticket quantity available" -#~ msgstr "Unlimited ticket quantity available" +#~ msgstr "Quantità illimitata di biglietti disponibili" #: src/components/common/PromoCodeTable/index.tsx:126 msgid "Unlimited usages allowed" @@ -6236,7 +6236,7 @@ msgstr "Aggiorna profilo" #: src/components/routes/event/Settings/Sections/ImageSettings/index.tsx:75 #~ msgid "Upload an image to be displayed on the event page" -#~ msgstr "Upload an image to be displayed on the event page" +#~ msgstr "Carica un'immagine da visualizzare sulla pagina dell'evento" #: src/components/routes/event/HomepageDesigner/CoverUpload/index.tsx:80 msgid "Upload Cover" @@ -6327,7 +6327,7 @@ msgstr "Visualizza Risposte" #: src/components/common/AttendeeTable/index.tsx:164 #~ msgid "View attendee" -#~ msgstr "View attendee" +#~ msgstr "Visualizza i partecipanti" #: src/components/common/AttendeeList/index.tsx:103 msgid "View Attendee Details" @@ -6335,7 +6335,7 @@ msgstr "Visualizza Dettagli Partecipante" #: src/components/layouts/Checkout/index.tsx:55 #~ msgid "View event homepage" -#~ msgstr "View event homepage" +#~ msgstr "Visualizza la homepage dell'evento" #: src/components/common/EventCard/index.tsx:145 msgid "View event page" @@ -6359,7 +6359,7 @@ msgstr "Visualizza su Google Maps" #: src/components/common/OrdersTable/index.tsx:111 #~ msgid "View order" -#~ msgstr "View order" +#~ msgstr "Visualizza ordine" #: src/components/forms/StripeCheckoutForm/index.tsx:94 #: src/components/forms/StripeCheckoutForm/index.tsx:104 @@ -6373,7 +6373,7 @@ msgstr "Lista check-in VIP" #: src/components/forms/ProductForm/index.tsx:254 #~ msgid "VIP Product" -#~ msgstr "VIP Product" +#~ msgstr "Prodotto VIP" #: src/components/forms/ProductForm/index.tsx:254 msgid "VIP Ticket" @@ -6409,7 +6409,7 @@ msgstr "Consigliamo dimensioni di 2160px per 1080px e una dimensione massima del #: src/components/routes/account/ManageAccount/sections/PaymentSettings/index.tsx:42 #~ msgid "We use Stripe to process payments. Connect your Stripe account to start receiving payments." -#~ msgstr "We use Stripe to process payments. Connect your Stripe account to start receiving payments." +#~ msgstr "Utilizziamo Stripe per elaborare i pagamenti. Collega il tuo account Stripe per iniziare a ricevere pagamenti." #: src/components/routes/product-widget/PaymentReturn/index.tsx:84 msgid "We were unable to confirm your payment. Please try again or contact support." @@ -6474,7 +6474,7 @@ msgstr "Cosa sono i Prodotti a Livelli?" #: src/components/forms/TicketForm/index.tsx:202 #~ msgid "What are Tiered Tickets?" -#~ msgstr "What are Tiered Tickets?" +#~ msgstr "Cosa sono i Biglietti a Livelli?" #: src/components/forms/CheckInListForm/index.tsx:50 msgid "What date should this check-in list become active?" @@ -6486,40 +6486,40 @@ msgstr "Cos'è una Categoria?" #: src/components/forms/TicketForm/index.tsx:158 #~ msgid "What is a Tiered Ticketing?" -#~ msgstr "What is a Tiered Ticketing?" +#~ msgstr "Che cosa sono i Biglietti a Livelli?" #: src/components/routes/event/Webhooks/index.tsx:31 #~ msgid "What is a webhook?" -#~ msgstr "What is a webhook?" +#~ msgstr "Che cosa è un webhook?" #: src/components/forms/QuestionForm/index.tsx:159 msgid "What products does this code apply to?" -msgstr "What products does this code apply to?" +msgstr "A quali prodotti si applica questo codice?" #: src/components/forms/PromoCodeForm/index.tsx:68 msgid "What products does this code apply to? (Applies to all by default)" -msgstr "What products does this code apply to? (Applies to all by default)" +msgstr "A quali prodotti si applica questo codice? (Si applica a tutti per impostazione predefinita)" #: src/components/forms/CapaciyAssigmentForm/index.tsx:48 msgid "What products should this capacity apply to?" -msgstr "What products should this capacity apply to?" +msgstr "A quali prodotti dovrebbe applicarsi questa capacità?" #: src/components/forms/PromoCodeForm/index.tsx:68 #~ msgid "What tickets does this code apply to? (Applies to all by default)" -#~ msgstr "What tickets does this code apply to? (Applies to all by default)" +#~ msgstr "A quali biglietti si applica questo codice? (Si applica a tutti per impostazione predefinita)" #: src/components/forms/CapaciyAssigmentForm/index.tsx:47 #: src/components/forms/QuestionForm/index.tsx:159 #~ msgid "What tickets should this question be apply to?" -#~ msgstr "What tickets should this question be apply to?" +#~ msgstr "A quali biglietti si dovrebbe applicare questa domanda?" #: src/components/forms/QuestionForm/index.tsx:179 msgid "What time will you be arriving?" -msgstr "What time will you be arriving?" +msgstr "A che ora arriverai?" #: src/components/forms/QuestionForm/index.tsx:170 msgid "What type of question is this?" -msgstr "What type of question is this?" +msgstr "Che tipo di domanda è questa?" #: src/components/forms/WebhookForm/index.tsx:108 msgid "When a check-in is deleted" @@ -6607,7 +6607,7 @@ msgstr "A chi dovrebbe essere posta questa domanda?" #: src/components/routes/ticket-widget/CollectInformation/index.tsx:65 #~ msgid "Whoops! something went wrong. Please try again or contact support if the problem persists." -#~ msgstr "Whoops! something went wrong. Please try again or contact support if the problem persists." +#~ msgstr "Ops! Qualcosa è andato storto. Riprova o contatta l'assistenza se il problema persiste." #: src/components/layouts/Event/index.tsx:42 #~ msgid "Widget" @@ -6615,7 +6615,7 @@ msgstr "A chi dovrebbe essere posta questa domanda?" #: src/components/routes/event/settings.tsx:29 #~ msgid "Widget Configuration" -#~ msgstr "Widget Configuration" +#~ msgstr "Configurazione del widget" #: src/components/layouts/Event/index.tsx:110 msgid "Widget Embed" @@ -6674,7 +6674,7 @@ msgstr "Sei offline" #: src/components/routes/event/Settings/Sections/LocationSettings/index.tsx:93 #~ msgid "You can connecting using this Zoom link..." -#~ msgstr "You can connecting using this Zoom link..." +#~ msgstr "Puoi connetterti usando questo link Zoom..." #: src/components/forms/ProductForm/index.tsx:407 msgid "You can create a promo code which targets this product on the" @@ -6682,11 +6682,11 @@ msgstr "Puoi creare un codice promo che ha come target questo prodotto nella" #: src/components/forms/TicketForm/index.tsx:352 #~ msgid "You can create a promo code which targets this ticket on the" -#~ msgstr "You can create a promo code which targets this ticket on the" +#~ msgstr "Puoi creare un codice promozionale che indirizza questo biglietto su" #: src/components/routes/account/ManageAccount/sections/PaymentSettings/index.tsx:31 #~ msgid "You can now start receiving payments through Stripe." -#~ msgstr "You can now start receiving payments through Stripe." +#~ msgstr "Ora puoi iniziare a ricevere pagamenti tramite Stripe." #: src/components/forms/ProductForm/index.tsx:208 msgid "You cannot change the product type as there are attendees associated with this product." @@ -6694,15 +6694,15 @@ msgstr "Non puoi cambiare il tipo di prodotto poiché ci sono partecipanti assoc #: src/components/forms/TicketForm/index.tsx:184 #~ msgid "You cannot change the ticket type as there are attendees associated with this ticket." -#~ msgstr "You cannot change the ticket type as there are attendees associated with this ticket." +#~ msgstr "Non è possibile modificare il tipo di biglietto poiché ci sono partecipanti associati a questo biglietto." #: src/components/forms/TicketForm/index.tsx:185 #~ msgid "You cannot change the ticket type because there are already tickets sold for this ticket." -#~ msgstr "You cannot change the ticket type because there are already tickets sold for this ticket." +#~ msgstr "Non puoi cambiare il tipo di biglietto perché ci sono già biglietti venduti per questo biglietto." #: src/components/layouts/CheckIn/index.tsx:119 #~ msgid "You cannot check in attendees with unpaid orders." -#~ msgstr "You cannot check in attendees with unpaid orders." +#~ msgstr "Non è possibile registrare i partecipanti con ordini non pagati." #: src/components/layouts/CheckIn/index.tsx:129 #: src/components/layouts/CheckIn/index.tsx:164 @@ -6719,11 +6719,11 @@ msgstr "Non puoi eliminare questo livello di prezzo perché ci sono già prodott #: src/components/forms/TicketForm/index.tsx:54 #~ msgid "You cannot delete this price tier because there are already tickets sold for this tier. You can hide it instead." -#~ msgstr "You cannot delete this price tier because there are already tickets sold for this tier. You can hide it instead." +#~ msgstr "Non puoi eliminare questa fascia di prezzo perché ci sono già biglietti venduti per questa fascia. Puoi nasconderla.." #: src/components/common/QuestionsTable/index.tsx:42 #~ msgid "You cannot edit a default question" -#~ msgstr "You cannot edit a default question" +#~ msgstr "Non è possibile modificare una domanda predefinita" #: src/components/modals/EditUserModal/index.tsx:88 msgid "You cannot edit the role or status of the account owner." @@ -6739,7 +6739,7 @@ msgstr "Hai creato una domanda nascosta ma hai disabilitato l'opzione per mostra #: src/components/routes/account/ManageAccount/sections/PaymentSettings/index.tsx:77 #~ msgid "You do not have permission to access this page" -#~ msgstr "You do not have permission to access this page" +#~ msgstr "Non hai il permesso di accedere a questa pagina" #: src/components/modals/ChooseAccountModal/index.tsx:14 msgid "You have access to multiple accounts. Please choose one to continue." @@ -6751,7 +6751,7 @@ msgstr "Hai già accettato questo invito. Accedi per continuare." #: src/components/routes/account/ManageAccount/sections/PaymentSettings/index.tsx:29 #~ msgid "You have connected your Stripe account" -#~ msgstr "You have connected your Stripe account" +#~ msgstr "Hai collegato il tuo account Stripe" #: src/components/common/QuestionsTable/index.tsx:338 msgid "You have no attendee questions." @@ -6759,7 +6759,7 @@ msgstr "Non hai domande per i partecipanti." #: src/components/common/QuestionsTable/index.tsx:149 #~ 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." +#~ msgstr "Non ci sono domande da porre ai partecipanti. Le domande vengono poste una sola volta per partecipante." #: src/components/common/QuestionsTable/index.tsx:323 msgid "You have no order questions." @@ -6775,11 +6775,11 @@ msgstr "Non hai modifiche di email in sospeso." #: src/components/routes/account/ManageAccount/sections/PaymentSettings/index.tsx:39 #~ msgid "You have not completed your Stripe Connect setup" -#~ msgstr "You have not completed your Stripe Connect setup" +#~ msgstr "Non hai completato la configurazione di Stripe Connect" #: src/components/routes/account/ManageAccount/sections/PaymentSettings/index.tsx:38 #~ msgid "You have not connected your Stripe account" -#~ msgstr "You have not connected your Stripe account" +#~ msgstr "Non hai collegato il tuo account Stripe" #: src/components/layouts/Checkout/index.tsx:156 msgid "You have run out of time to complete your order." @@ -6787,7 +6787,7 @@ msgstr "Hai esaurito il tempo per completare il tuo ordine." #: src/components/forms/ProductForm/index.tsx:374 #~ msgid "You have taxes and fees added to a Free Product. Would you like to remove or obscure them?" -#~ msgstr "You have taxes and fees added to a Free Product. Would you like to remove or obscure them?" +#~ msgstr "Hai aggiunto tasse e commissioni a un prodotto gratuito. Vuoi rimuoverle o nasconderle?" #: src/components/forms/ProductForm/index.tsx:374 msgid "You have taxes and fees added to a Free Product. Would you like to remove them?" @@ -6795,7 +6795,7 @@ msgstr "Hai tasse e commissioni aggiunte a un Prodotto Gratuito. Vuoi rimuoverle #: src/components/forms/TicketForm/index.tsx:319 #~ msgid "You have taxes and fees added to a Free Ticket. Would you like to remove or obscure them?" -#~ msgstr "You have taxes and fees added to a Free Ticket. Would you like to remove or obscure them?" +#~ msgstr "Hai aggiunto tasse e commissioni a un biglietto gratuito. Vuoi rimuoverle o nasconderle?" #: src/components/common/MessageList/index.tsx:74 msgid "You haven't sent any messages yet. You can send messages to all attendees, or to specific product holders." @@ -6803,7 +6803,7 @@ msgstr "Non hai ancora inviato messaggi. Puoi inviare messaggi a tutti i parteci #: src/components/common/MessageList/index.tsx:64 #~ msgid "You haven't sent any messages yet. You can send messages to all attendees, or to specific ticket holders." -#~ msgstr "You haven't sent any messages yet. You can send messages to all attendees, or to specific ticket holders." +#~ msgstr "Non hai ancora inviato alcun messaggio. Puoi inviare messaggi a tutti i partecipanti o a specifici possessori di biglietti.." #: src/components/modals/SendMessageModal/index.tsx:108 msgid "You must acknowledge that this email is not promotional" @@ -6827,11 +6827,11 @@ msgstr "Devi avere almeno un livello di prezzo" #: src/components/forms/TicketForm/index.tsx:84 #~ msgid "You must have at least one tier" -#~ msgstr "You must have at least one tier" +#~ msgstr "Devi avere almeno un livello" #: src/components/modals/SendMessageModal/index.tsx:136 #~ msgid "You need to verify your account before you can send messages." -#~ msgstr "You need to verify your account before you can send messages." +#~ msgstr "Devi verificare il tuo account prima di poter inviare messaggi." #: src/components/modals/SendMessageModal/index.tsx:151 msgid "You need to verify your account email before you can send messages." @@ -6851,7 +6851,7 @@ msgstr "Avrai bisogno di un prodotto prima di poter creare un'assegnazione di ca #: src/components/modals/CreateCapacityAssignmentModal/index.tsx:51 #~ msgid "You'll need at a ticket before you can create a capacity assignment." -#~ msgstr "You'll need at a ticket before you can create a capacity assignment." +#~ msgstr "Avrai bisogno di un biglietto prima di poter creare un'assegnazione di capacità." #: src/components/common/ProductsTable/ProductsBlankSlate/index.tsx:43 msgid "You'll need at least one product to get started. Free, paid or let the user decide what to pay." @@ -6859,7 +6859,7 @@ msgstr "Avrai bisogno di almeno un prodotto per iniziare. Gratuito, a pagamento #: src/components/common/TicketsTable/index.tsx:69 #~ msgid "You'll need at least one ticket to get started. Free, paid or let the user decide what to pay." -#~ msgstr "You'll need at least one ticket to get started. Free, paid or let the user decide what to pay." +#~ msgstr "Per iniziare, avrai bisogno di almeno un biglietto. Gratuito, a pagamento o lascia che sia l'utente a decidere quanto pagare." #: src/components/routes/product-widget/OrderSummaryAndProducts/index.tsx:93 msgid "You're going to {0}! 🎉" @@ -6903,7 +6903,7 @@ msgstr "Il tuo evento deve essere attivo prima di poter vendere biglietti ai par #: src/components/routes/event/EventDashboard/index.tsx:164 #~ msgid "Your event must be live before you can sell tickets." -#~ msgstr "Your event must be live before you can sell tickets." +#~ msgstr "Il tuo evento deve essere attivo prima di poter vendere i biglietti." #: src/components/common/OrdersTable/index.tsx:88 msgid "Your message has been sent" @@ -6923,7 +6923,7 @@ msgstr "Il tuo ordine è in attesa di pagamento 🏦" #: src/components/routes/ticket-widget/SelectTickets/index.tsx:242 #~ msgid "Your order is in progress" -#~ msgstr "Your order is in progress" +#~ msgstr "Il tuo ordine è in corso" #: src/components/routes/event/orders.tsx:95 msgid "Your orders have been exported successfully." @@ -6986,4 +6986,4 @@ msgstr "CAP o Codice Postale" #: src/components/routes/event/Settings/Sections/LocationSettings/index.tsx:92 #~ msgid "Zoom link, Google Meet link, etc." -#~ msgstr "Zoom link, Google Meet link, etc." +#~ msgstr "Link Zoom, Link Google Meet, ecc." diff --git a/frontend/yarn.lock b/frontend/yarn.lock index 923f8f96c9..b8ba51c4f8 100644 --- a/frontend/yarn.lock +++ b/frontend/yarn.lock @@ -1164,36 +1164,36 @@ resolved "https://registry.yarnpkg.com/@remirror/core-constants/-/core-constants-3.0.0.tgz#96fdb89d25c62e7b6a5d08caf0ce5114370e3b8f" integrity sha512-42aWfPrimMfDKDi4YegyS7x+/0tlzaqwPQCULLanv3DMIlu96KTJR0fM5isWX2UViOqlGnX6YFgqWepcX+XMNg== -"@remix-run/node@^2.8.1": - version "2.15.3" - resolved "https://registry.yarnpkg.com/@remix-run/node/-/node-2.15.3.tgz#c400b21ef50e94b0ae3b4631b0110f3c9094eae9" - integrity sha512-TYfS6BPhbABBpSRZ6WBA4qIWSwWvJhRVQGXCHUtgOwkuW863rcFmjh9g2Xj/IHyTmbOYPdcjHsIgZ9el4CHOKQ== +"@remix-run/node@^2.16.8": + version "2.16.8" + resolved "https://registry.yarnpkg.com/@remix-run/node/-/node-2.16.8.tgz#a008168f40390376cdecff0e1c5f9df9d5b34f06" + integrity sha512-foeYXU3mdaBJZnbtGbM8mNdHowz2+QnVGDRo7P3zgFkmsccMEflArGZNbkACGKd9xwDguTxxMJ6cuXBC4jIfgQ== dependencies: - "@remix-run/server-runtime" "2.15.3" + "@remix-run/server-runtime" "2.16.8" "@remix-run/web-fetch" "^4.4.2" "@web3-storage/multipart-parser" "^1.0.0" cookie-signature "^1.1.0" source-map-support "^0.5.21" stream-slice "^0.1.2" - undici "^6.11.1" + undici "^6.21.2" -"@remix-run/router@1.22.0": - version "1.22.0" - resolved "https://registry.yarnpkg.com/@remix-run/router/-/router-1.22.0.tgz#dd8096cb055c475a4de6b35322b8d3b118c17b43" - integrity sha512-MBOl8MeOzpK0HQQQshKB7pABXbmyHizdTpqnrIseTbsv0nAepwC2ENZa1aaBExNQcpLoXmWthhak8SABLzvGPw== +"@remix-run/router@1.23.0": + version "1.23.0" + resolved "https://registry.yarnpkg.com/@remix-run/router/-/router-1.23.0.tgz#35390d0e7779626c026b11376da6789eb8389242" + integrity sha512-O3rHJzAQKamUz1fvE0Qaw0xSFqsA/yafi2iqeE0pvdFtCO1viYx8QL6f3Ln/aCCTLxs68SLf0KPM9eSeM8yBnA== -"@remix-run/server-runtime@2.15.3": - version "2.15.3" - resolved "https://registry.yarnpkg.com/@remix-run/server-runtime/-/server-runtime-2.15.3.tgz#a5031a6c406423adec94f1a49952137df5b00a2d" - integrity sha512-taHBe1DEqxZNjjj6OfkSYbup+sZPjbTgUhykaI+nHqrC2NDQuTiisBXhLwtx60GctONR/x0lWhF7R9ZGC5WsHw== +"@remix-run/server-runtime@2.16.8": + version "2.16.8" + resolved "https://registry.yarnpkg.com/@remix-run/server-runtime/-/server-runtime-2.16.8.tgz#79fe6274a37a5f5e18db6cb867b127b364a957da" + integrity sha512-ZwWOam4GAQTx10t+wK09YuYctd2Koz5Xy/klDgUN3lmTXmwbV0tZU0baiXEqZXrvyD+WDZ4b0ADDW9Df3+dpzA== dependencies: - "@remix-run/router" "1.22.0" + "@remix-run/router" "1.23.0" "@types/cookie" "^0.6.0" "@web3-storage/multipart-parser" "^1.0.0" - cookie "^0.6.0" + cookie "^0.7.2" set-cookie-parser "^2.4.8" source-map "^0.7.3" - turbo-stream "2.4.0" + turbo-stream "2.4.1" "@remix-run/web-blob@^3.1.0": version "3.1.0" @@ -1589,15 +1589,10 @@ resolved "https://registry.yarnpkg.com/@tiptap/extension-text-align/-/extension-text-align-2.11.5.tgz#c0952affcc6c3658aa859e9ed1985f7ab5500c42" integrity sha512-Ei0zDpH5N9EV59ogydK4HTKa4lCPicCsQllM5n/Nf2tUJPir3aiYxzJ73FzhComD4Hpo1ANYnmssBhy8QeoPZA== -"@tiptap/extension-text-style@^2.11.5": - version "2.11.5" - resolved "https://registry.yarnpkg.com/@tiptap/extension-text-style/-/extension-text-style-2.11.5.tgz#f1b3882de489328203187e6256e6ee130477cfad" - integrity sha512-YUmYl0gILSd/u/ZkOmNxjNXVw+mu8fpC2f8G4I4tLODm0zCx09j9DDEJXSrM5XX72nxJQqtSQsCpNKnL0hfeEQ== - -"@tiptap/extension-text-style@^2.11.7": - version "2.11.7" - resolved "https://registry.yarnpkg.com/@tiptap/extension-text-style/-/extension-text-style-2.11.7.tgz#1af9c23ed6154680eac1c0621d1112764c3fafb9" - integrity sha512-LHO6DBg/9SkCQFdWlVfw9nolUmw+Cid94WkTY+7IwrpyG2+ZGQxnKpCJCKyeaFNbDoYAtvu0vuTsSXeCkgShcA== +"@tiptap/extension-text-style@^2.11.5", "@tiptap/extension-text-style@^2.12.0": + version "2.12.0" + resolved "https://registry.yarnpkg.com/@tiptap/extension-text-style/-/extension-text-style-2.12.0.tgz#391e1086650075ddd99afe66c477e1cc359a7061" + integrity sha512-Pxwt23ZlvbQUahV0PvHy8Ej6IAuKR1FvHobUvwP3T8AiY7hob66fWRe7tQbESzSAzm5Vv2xkvyHeU8vekMTezA== "@tiptap/extension-text@^2.11.5": version "2.11.5" @@ -1609,12 +1604,12 @@ resolved "https://registry.yarnpkg.com/@tiptap/extension-underline/-/extension-underline-2.11.5.tgz#eacf453fec192e517fdadecb7a81c976a08a9e05" integrity sha512-YpWHXNIkSoRSuzT2cvgKpyJ2tTz3LzqkTM64uC+uTJ8cUkvXIWUWejJR42q8ma/mTlQe4lHff4IQ0Sf58Digtw== -"@tiptap/pm@^2.1.13", "@tiptap/pm@^2.11.5": - version "2.11.5" - resolved "https://registry.yarnpkg.com/@tiptap/pm/-/pm-2.11.5.tgz#6577e277e5a991c605a3dfcebde7c0b794d8def4" - integrity sha512-z9JFtqc5ZOsdQLd9vRnXfTCQ8v5ADAfRt9Nm7SqP6FUHII8E1hs38ACzf5xursmth/VonJYb5+73Pqxk1hGIPw== +"@tiptap/pm@^2.11.5", "@tiptap/pm@^2.12.0": + version "2.12.0" + resolved "https://registry.yarnpkg.com/@tiptap/pm/-/pm-2.12.0.tgz#72c2b574c10a0442af03c8754869f0b7ad6e2a4c" + integrity sha512-TNzVwpeNzFfHAcYTOKqX9iU4fRxliyoZrCnERR+RRzeg7gWrXrCLubQt1WEx0sojMAfznshSL3M5HGsYjEbYwA== dependencies: - prosemirror-changeset "^2.2.1" + prosemirror-changeset "^2.3.0" prosemirror-collab "^1.3.1" prosemirror-commands "^1.6.2" prosemirror-dropcursor "^1.8.1" @@ -1628,7 +1623,7 @@ prosemirror-schema-basic "^1.2.3" prosemirror-schema-list "^1.4.1" prosemirror-state "^1.4.3" - prosemirror-tables "^1.6.3" + prosemirror-tables "^1.6.4" prosemirror-trailing-node "^3.0.0" prosemirror-transform "^1.10.2" prosemirror-view "^1.37.0" @@ -2539,16 +2534,11 @@ cookie@0.7.1: resolved "https://registry.yarnpkg.com/cookie/-/cookie-0.7.1.tgz#2f73c42142d5d5cf71310a74fc4ae61670e5dbc9" integrity sha512-6DnInpx7SJ2AK3+CTUE/ZM0vWTUboZCegxhC2xiIydHR9jNuTAASBrfEpHhiGOZw/nX51bHt6YQl8jsGo4y/0w== -cookie@0.7.2: +cookie@0.7.2, cookie@^0.7.2: version "0.7.2" resolved "https://registry.yarnpkg.com/cookie/-/cookie-0.7.2.tgz#556369c472a2ba910f2979891b526b3436237ed7" integrity sha512-yki5XnKuf750l50uGTllt6kKILY4nQ1eNIQatoXEByZ5dWgnKqbnqmTrBE5B4N7lrMJKQ2ytWMiTO2o0v6Ew/w== -cookie@^0.6.0: - version "0.6.0" - resolved "https://registry.yarnpkg.com/cookie/-/cookie-0.6.0.tgz#2798b04b071b0ecbff0dbb62a505a8efa4e19051" - integrity sha512-U71cyTamuh1CRNCfpGY6to28lxvNwPG4Guz/EVjgf3Jmzv0vlDp1atT9eS5dDjMYHucpHbWns6Lwf3BKz6svdw== - cookie@^1.0.1: version "1.0.2" resolved "https://registry.yarnpkg.com/cookie/-/cookie-1.0.2.tgz#27360701532116bd3f1f9416929d176afe1e4610" @@ -4348,10 +4338,10 @@ prop-types@^15.6.2, prop-types@^15.7.2, prop-types@^15.8.1: object-assign "^4.1.1" react-is "^16.13.1" -prosemirror-changeset@^2.2.1: - version "2.2.1" - resolved "https://registry.yarnpkg.com/prosemirror-changeset/-/prosemirror-changeset-2.2.1.tgz#dae94b63aec618fac7bb9061648e6e2a79988383" - integrity sha512-J7msc6wbxB4ekDFj+n9gTW/jav/p53kdlivvuppHsrZXCaQdVgRghoZbSS3kwrRyAstRVQ4/+u5k7YfLgkkQvQ== +prosemirror-changeset@^2.3.0: + version "2.3.0" + resolved "https://registry.yarnpkg.com/prosemirror-changeset/-/prosemirror-changeset-2.3.0.tgz#df7546fd6cb92ee9924d2b0463d5d39775ad915d" + integrity sha512-8wRKhlEwEJ4I13Ju54q2NZR1pVKGTgJ/8XsQ8L5A5uUsQ/YQScQJuEAuh8Bn8i6IwAMjjLRABd9lVli+DlIiVw== dependencies: prosemirror-transform "^1.0.0" @@ -4435,10 +4425,10 @@ prosemirror-menu@^1.2.4: prosemirror-history "^1.0.0" prosemirror-state "^1.0.0" -prosemirror-model@^1.0.0, prosemirror-model@^1.19.0, prosemirror-model@^1.20.0, prosemirror-model@^1.21.0, prosemirror-model@^1.23.0, prosemirror-model@^1.24.1: - version "1.24.1" - resolved "https://registry.yarnpkg.com/prosemirror-model/-/prosemirror-model-1.24.1.tgz#b445e4f9b9cfc8c1a699215057b506842ebff1a9" - integrity sha512-YM053N+vTThzlWJ/AtPtF1j0ebO36nvbmDy4U7qA2XQB8JVaQp1FmB9Jhrps8s+z+uxhhVTny4m20ptUvhk0Mg== +prosemirror-model@^1.0.0, prosemirror-model@^1.19.0, prosemirror-model@^1.20.0, prosemirror-model@^1.21.0, prosemirror-model@^1.23.0, prosemirror-model@^1.25.0: + version "1.25.1" + resolved "https://registry.yarnpkg.com/prosemirror-model/-/prosemirror-model-1.25.1.tgz#aeae9f1ec79fcaa76f6fc619800d91fbcf726870" + integrity sha512-AUvbm7qqmpZa5d9fPKMvH1Q5bqYQvAZWOGRvxsB6iFLyycvC9MwNemNVjHVrWgjaoxAfY8XVg7DbvQ/qxvI9Eg== dependencies: orderedmap "^2.0.0" @@ -4467,16 +4457,16 @@ prosemirror-state@^1.0.0, prosemirror-state@^1.2.2, prosemirror-state@^1.4.3: prosemirror-transform "^1.0.0" prosemirror-view "^1.27.0" -prosemirror-tables@^1.6.3: - version "1.6.4" - resolved "https://registry.yarnpkg.com/prosemirror-tables/-/prosemirror-tables-1.6.4.tgz#e36ebca70d9e398c4a3b99b122ba86bfc985293d" - integrity sha512-TkDY3Gw52gRFRfRn2f4wJv5WOgAOXLJA2CQJYIJ5+kdFbfj3acR4JUW6LX2e1hiEBiUwvEhzH5a3cZ5YSztpIA== +prosemirror-tables@^1.6.4: + version "1.7.1" + resolved "https://registry.yarnpkg.com/prosemirror-tables/-/prosemirror-tables-1.7.1.tgz#df2507f285c6c7563097b4904cb7c4b9e0cd724b" + integrity sha512-eRQ97Bf+i9Eby99QbyAiyov43iOKgWa7QCGly+lrDt7efZ1v8NWolhXiB43hSDGIXT1UXgbs4KJN3a06FGpr1Q== dependencies: prosemirror-keymap "^1.2.2" - prosemirror-model "^1.24.1" + prosemirror-model "^1.25.0" prosemirror-state "^1.4.3" - prosemirror-transform "^1.10.2" - prosemirror-view "^1.37.2" + prosemirror-transform "^1.10.3" + prosemirror-view "^1.39.1" prosemirror-trailing-node@^3.0.0: version "3.0.0" @@ -4486,17 +4476,17 @@ prosemirror-trailing-node@^3.0.0: "@remirror/core-constants" "3.0.0" escape-string-regexp "^4.0.0" -prosemirror-transform@^1.0.0, prosemirror-transform@^1.1.0, prosemirror-transform@^1.10.2, prosemirror-transform@^1.7.3: - version "1.10.2" - resolved "https://registry.yarnpkg.com/prosemirror-transform/-/prosemirror-transform-1.10.2.tgz#8ebac4e305b586cd96595aa028118c9191bbf052" - integrity sha512-2iUq0wv2iRoJO/zj5mv8uDUriOHWzXRnOTVgCzSXnktS/2iQRa3UUQwVlkBlYZFtygw6Nh1+X4mGqoYBINn5KQ== +prosemirror-transform@^1.0.0, prosemirror-transform@^1.1.0, prosemirror-transform@^1.10.2, prosemirror-transform@^1.10.3, prosemirror-transform@^1.7.3: + version "1.10.4" + resolved "https://registry.yarnpkg.com/prosemirror-transform/-/prosemirror-transform-1.10.4.tgz#56419eac14f9f56612c806ae46f9238648f3f02e" + integrity sha512-pwDy22nAnGqNR1feOQKHxoFkkUtepoFAd3r2hbEDsnf4wp57kKA36hXsB3njA9FtONBEwSDnDeCiJe+ItD+ykw== dependencies: prosemirror-model "^1.21.0" -prosemirror-view@^1.0.0, prosemirror-view@^1.1.0, prosemirror-view@^1.27.0, prosemirror-view@^1.31.0, prosemirror-view@^1.37.0, prosemirror-view@^1.37.2: - version "1.37.2" - resolved "https://registry.yarnpkg.com/prosemirror-view/-/prosemirror-view-1.37.2.tgz#e16b92611c6d0f30695606724dc4a9575ce7ca6b" - integrity sha512-ApcyrfV/cRcaL65on7TQcfWElwLyOgIjnIynfAuV+fIdlpbSvSWRwfuPaH7T5mo4AbO/FID29qOtjiDIKGWyog== +prosemirror-view@^1.0.0, prosemirror-view@^1.1.0, prosemirror-view@^1.27.0, prosemirror-view@^1.31.0, prosemirror-view@^1.37.0, prosemirror-view@^1.39.1: + version "1.39.3" + resolved "https://registry.yarnpkg.com/prosemirror-view/-/prosemirror-view-1.39.3.tgz#54fa4b8ab4fd75ad0075dc6dc0be1745429d5a5c" + integrity sha512-bY/7kg0LzRE7ytR0zRdSMWX3sknEjw68l836ffLPMh0OG3OYnNuBDUSF3v0vjvnzgYjgY9ZH/RypbARURlcMFA== dependencies: prosemirror-model "^1.20.0" prosemirror-state "^1.0.0" @@ -5267,6 +5257,11 @@ turbo-stream@2.4.0: resolved "https://registry.yarnpkg.com/turbo-stream/-/turbo-stream-2.4.0.tgz#1e4fca6725e90fa14ac4adb782f2d3759a5695f0" integrity sha512-FHncC10WpBd2eOmGwpmQsWLDoK4cqsA/UT/GqNoaKOQnT8uzhtCbg3EoUDMvqpOSAI0S26mr0rkjzbOO6S3v1g== +turbo-stream@2.4.1: + version "2.4.1" + resolved "https://registry.yarnpkg.com/turbo-stream/-/turbo-stream-2.4.1.tgz#c1a64397724084c09b0f6ea4a2c528d3f67931f9" + integrity sha512-v8kOJXpG3WoTN/+at8vK7erSzo6nW6CIaeOvNOkHQVDajfz1ZVeSxCbc6tOH4hrGZW7VUCV0TOXd8CPzYnYkrw== + type-check@^0.4.0, type-check@~0.4.0: version "0.4.0" resolved "https://registry.yarnpkg.com/type-check/-/type-check-0.4.0.tgz#07b8203bfa7056c0657050e3ccd2c37730bab8f1" @@ -5297,10 +5292,10 @@ type-is@~1.6.18: media-typer "0.3.0" mime-types "~2.1.24" -typescript@^5.0.2: - version "5.7.3" - resolved "https://registry.yarnpkg.com/typescript/-/typescript-5.7.3.tgz#919b44a7dbb8583a9b856d162be24a54bf80073e" - integrity sha512-84MVSjMEHP+FQRPy3pX9sTVV/INIex71s9TL2Gm5FG/WG1SqXeKyZ0k7/blY/4FdOzI12CBy1vGc4og/eus0fw== +typescript@^5.8.3: + version "5.8.3" + resolved "https://registry.yarnpkg.com/typescript/-/typescript-5.8.3.tgz#92f8a3e5e3cf497356f4178c34cd65a7f5e8440e" + integrity sha512-p1diW6TqL9L07nNxvRMM7hMMw4c5XOo/1ibL4aAIGmSAt9slTE1Xgw5KWuof2uTOvCg9BY7ZRi+GaF+7sfgPeQ== uc.micro@^2.0.0, uc.micro@^2.1.0: version "2.1.0" @@ -5317,10 +5312,10 @@ undici-types@~6.20.0: resolved "https://registry.yarnpkg.com/undici-types/-/undici-types-6.20.0.tgz#8171bf22c1f588d1554d55bf204bc624af388433" integrity sha512-Ny6QZ2Nju20vw1SRHe3d9jVu6gJ+4e3+MMpqu7pqE5HT6WsTSlce++GQmK5UXS8mzV8DSYHrQH+Xrf2jVcuKNg== -undici@^6.11.1, undici@^6.19.2: - version "6.21.1" - resolved "https://registry.yarnpkg.com/undici/-/undici-6.21.1.tgz#336025a14162e6837e44ad7b819b35b6c6af0e05" - integrity sha512-q/1rj5D0/zayJB2FraXdaWxbhWiNKDvu8naDT2dl1yTlvJp4BLtOcp2a5BvgGNQpYYJzau7tf1WgKv3b+7mqpQ== +undici@^6.19.2, undici@^6.21.2: + version "6.21.3" + resolved "https://registry.yarnpkg.com/undici/-/undici-6.21.3.tgz#185752ad92c3d0efe7a7d1f6854a50f83b552d7a" + integrity sha512-gBLkYIlEnSp8pFbT64yFgGE6UIB9tAkhukC23PmMDCe5Nd+cRqKxSjw5y54MK2AZMgZfJWMaNE4nYUHgi1XEOw== unicode-properties@^1.4.0, unicode-properties@^1.4.1: version "1.4.1"