first commit

This commit is contained in:
2026-05-25 14:34:29 +02:00
commit 64f5e06629
4236 changed files with 1314148 additions and 0 deletions

View File

@@ -0,0 +1,22 @@
<?php
// autoload.php @generated by Composer
if (PHP_VERSION_ID < 50600) {
if (!headers_sent()) {
header('HTTP/1.1 500 Internal Server Error');
}
$err = 'Composer 2.3.0 dropped support for autoloading on PHP <5.6 and you are running '.PHP_VERSION.', please upgrade PHP or use Composer 2.2 LTS via "composer self-update --2.2". Aborting.'.PHP_EOL;
if (!ini_get('display_errors')) {
if (PHP_SAPI === 'cli' || PHP_SAPI === 'phpdbg') {
fwrite(STDERR, $err);
} elseif (!headers_sent()) {
echo $err;
}
}
throw new RuntimeException($err);
}
require_once __DIR__ . '/composer/autoload_real.php';
return ComposerAutoloaderInitca9c50e9b8bbb42851c91855da171fd2::getLoader();

View File

@@ -0,0 +1,579 @@
<?php
/*
* This file is part of Composer.
*
* (c) Nils Adermann <naderman@naderman.de>
* Jordi Boggiano <j.boggiano@seld.be>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
namespace Composer\Autoload;
/**
* ClassLoader implements a PSR-0, PSR-4 and classmap class loader.
*
* $loader = new \Composer\Autoload\ClassLoader();
*
* // register classes with namespaces
* $loader->add('Symfony\Component', __DIR__.'/component');
* $loader->add('Symfony', __DIR__.'/framework');
*
* // activate the autoloader
* $loader->register();
*
* // to enable searching the include path (eg. for PEAR packages)
* $loader->setUseIncludePath(true);
*
* In this example, if you try to use a class in the Symfony\Component
* namespace or one of its children (Symfony\Component\Console for instance),
* the autoloader will first look for the class under the component/
* directory, and it will then fallback to the framework/ directory if not
* found before giving up.
*
* This class is loosely based on the Symfony UniversalClassLoader.
*
* @author Fabien Potencier <fabien@symfony.com>
* @author Jordi Boggiano <j.boggiano@seld.be>
* @see https://www.php-fig.org/psr/psr-0/
* @see https://www.php-fig.org/psr/psr-4/
*/
class ClassLoader
{
/** @var \Closure(string):void */
private static $includeFile;
/** @var string|null */
private $vendorDir;
// PSR-4
/**
* @var array<string, array<string, int>>
*/
private $prefixLengthsPsr4 = array();
/**
* @var array<string, list<string>>
*/
private $prefixDirsPsr4 = array();
/**
* @var list<string>
*/
private $fallbackDirsPsr4 = array();
// PSR-0
/**
* List of PSR-0 prefixes
*
* Structured as array('F (first letter)' => array('Foo\Bar (full prefix)' => array('path', 'path2')))
*
* @var array<string, array<string, list<string>>>
*/
private $prefixesPsr0 = array();
/**
* @var list<string>
*/
private $fallbackDirsPsr0 = array();
/** @var bool */
private $useIncludePath = false;
/**
* @var array<string, string>
*/
private $classMap = array();
/** @var bool */
private $classMapAuthoritative = false;
/**
* @var array<string, bool>
*/
private $missingClasses = array();
/** @var string|null */
private $apcuPrefix;
/**
* @var array<string, self>
*/
private static $registeredLoaders = array();
/**
* @param string|null $vendorDir
*/
public function __construct($vendorDir = null)
{
$this->vendorDir = $vendorDir;
self::initializeIncludeClosure();
}
/**
* @return array<string, list<string>>
*/
public function getPrefixes()
{
if (!empty($this->prefixesPsr0)) {
return call_user_func_array('array_merge', array_values($this->prefixesPsr0));
}
return array();
}
/**
* @return array<string, list<string>>
*/
public function getPrefixesPsr4()
{
return $this->prefixDirsPsr4;
}
/**
* @return list<string>
*/
public function getFallbackDirs()
{
return $this->fallbackDirsPsr0;
}
/**
* @return list<string>
*/
public function getFallbackDirsPsr4()
{
return $this->fallbackDirsPsr4;
}
/**
* @return array<string, string> Array of classname => path
*/
public function getClassMap()
{
return $this->classMap;
}
/**
* @param array<string, string> $classMap Class to filename map
*
* @return void
*/
public function addClassMap(array $classMap)
{
if ($this->classMap) {
$this->classMap = array_merge($this->classMap, $classMap);
} else {
$this->classMap = $classMap;
}
}
/**
* Registers a set of PSR-0 directories for a given prefix, either
* appending or prepending to the ones previously set for this prefix.
*
* @param string $prefix The prefix
* @param list<string>|string $paths The PSR-0 root directories
* @param bool $prepend Whether to prepend the directories
*
* @return void
*/
public function add($prefix, $paths, $prepend = false)
{
$paths = (array) $paths;
if (!$prefix) {
if ($prepend) {
$this->fallbackDirsPsr0 = array_merge(
$paths,
$this->fallbackDirsPsr0
);
} else {
$this->fallbackDirsPsr0 = array_merge(
$this->fallbackDirsPsr0,
$paths
);
}
return;
}
$first = $prefix[0];
if (!isset($this->prefixesPsr0[$first][$prefix])) {
$this->prefixesPsr0[$first][$prefix] = $paths;
return;
}
if ($prepend) {
$this->prefixesPsr0[$first][$prefix] = array_merge(
$paths,
$this->prefixesPsr0[$first][$prefix]
);
} else {
$this->prefixesPsr0[$first][$prefix] = array_merge(
$this->prefixesPsr0[$first][$prefix],
$paths
);
}
}
/**
* Registers a set of PSR-4 directories for a given namespace, either
* appending or prepending to the ones previously set for this namespace.
*
* @param string $prefix The prefix/namespace, with trailing '\\'
* @param list<string>|string $paths The PSR-4 base directories
* @param bool $prepend Whether to prepend the directories
*
* @throws \InvalidArgumentException
*
* @return void
*/
public function addPsr4($prefix, $paths, $prepend = false)
{
$paths = (array) $paths;
if (!$prefix) {
// Register directories for the root namespace.
if ($prepend) {
$this->fallbackDirsPsr4 = array_merge(
$paths,
$this->fallbackDirsPsr4
);
} else {
$this->fallbackDirsPsr4 = array_merge(
$this->fallbackDirsPsr4,
$paths
);
}
} elseif (!isset($this->prefixDirsPsr4[$prefix])) {
// Register directories for a new namespace.
$length = strlen($prefix);
if ('\\' !== $prefix[$length - 1]) {
throw new \InvalidArgumentException("A non-empty PSR-4 prefix must end with a namespace separator.");
}
$this->prefixLengthsPsr4[$prefix[0]][$prefix] = $length;
$this->prefixDirsPsr4[$prefix] = $paths;
} elseif ($prepend) {
// Prepend directories for an already registered namespace.
$this->prefixDirsPsr4[$prefix] = array_merge(
$paths,
$this->prefixDirsPsr4[$prefix]
);
} else {
// Append directories for an already registered namespace.
$this->prefixDirsPsr4[$prefix] = array_merge(
$this->prefixDirsPsr4[$prefix],
$paths
);
}
}
/**
* Registers a set of PSR-0 directories for a given prefix,
* replacing any others previously set for this prefix.
*
* @param string $prefix The prefix
* @param list<string>|string $paths The PSR-0 base directories
*
* @return void
*/
public function set($prefix, $paths)
{
if (!$prefix) {
$this->fallbackDirsPsr0 = (array) $paths;
} else {
$this->prefixesPsr0[$prefix[0]][$prefix] = (array) $paths;
}
}
/**
* Registers a set of PSR-4 directories for a given namespace,
* replacing any others previously set for this namespace.
*
* @param string $prefix The prefix/namespace, with trailing '\\'
* @param list<string>|string $paths The PSR-4 base directories
*
* @throws \InvalidArgumentException
*
* @return void
*/
public function setPsr4($prefix, $paths)
{
if (!$prefix) {
$this->fallbackDirsPsr4 = (array) $paths;
} else {
$length = strlen($prefix);
if ('\\' !== $prefix[$length - 1]) {
throw new \InvalidArgumentException("A non-empty PSR-4 prefix must end with a namespace separator.");
}
$this->prefixLengthsPsr4[$prefix[0]][$prefix] = $length;
$this->prefixDirsPsr4[$prefix] = (array) $paths;
}
}
/**
* Turns on searching the include path for class files.
*
* @param bool $useIncludePath
*
* @return void
*/
public function setUseIncludePath($useIncludePath)
{
$this->useIncludePath = $useIncludePath;
}
/**
* Can be used to check if the autoloader uses the include path to check
* for classes.
*
* @return bool
*/
public function getUseIncludePath()
{
return $this->useIncludePath;
}
/**
* Turns off searching the prefix and fallback directories for classes
* that have not been registered with the class map.
*
* @param bool $classMapAuthoritative
*
* @return void
*/
public function setClassMapAuthoritative($classMapAuthoritative)
{
$this->classMapAuthoritative = $classMapAuthoritative;
}
/**
* Should class lookup fail if not found in the current class map?
*
* @return bool
*/
public function isClassMapAuthoritative()
{
return $this->classMapAuthoritative;
}
/**
* APCu prefix to use to cache found/not-found classes, if the extension is enabled.
*
* @param string|null $apcuPrefix
*
* @return void
*/
public function setApcuPrefix($apcuPrefix)
{
$this->apcuPrefix = function_exists('apcu_fetch') && filter_var(ini_get('apc.enabled'), FILTER_VALIDATE_BOOLEAN) ? $apcuPrefix : null;
}
/**
* The APCu prefix in use, or null if APCu caching is not enabled.
*
* @return string|null
*/
public function getApcuPrefix()
{
return $this->apcuPrefix;
}
/**
* Registers this instance as an autoloader.
*
* @param bool $prepend Whether to prepend the autoloader or not
*
* @return void
*/
public function register($prepend = false)
{
spl_autoload_register(array($this, 'loadClass'), true, $prepend);
if (null === $this->vendorDir) {
return;
}
if ($prepend) {
self::$registeredLoaders = array($this->vendorDir => $this) + self::$registeredLoaders;
} else {
unset(self::$registeredLoaders[$this->vendorDir]);
self::$registeredLoaders[$this->vendorDir] = $this;
}
}
/**
* Unregisters this instance as an autoloader.
*
* @return void
*/
public function unregister()
{
spl_autoload_unregister(array($this, 'loadClass'));
if (null !== $this->vendorDir) {
unset(self::$registeredLoaders[$this->vendorDir]);
}
}
/**
* Loads the given class or interface.
*
* @param string $class The name of the class
* @return true|null True if loaded, null otherwise
*/
public function loadClass($class)
{
if ($file = $this->findFile($class)) {
$includeFile = self::$includeFile;
$includeFile($file);
return true;
}
return null;
}
/**
* Finds the path to the file where the class is defined.
*
* @param string $class The name of the class
*
* @return string|false The path if found, false otherwise
*/
public function findFile($class)
{
// class map lookup
if (isset($this->classMap[$class])) {
return $this->classMap[$class];
}
if ($this->classMapAuthoritative || isset($this->missingClasses[$class])) {
return false;
}
if (null !== $this->apcuPrefix) {
$file = apcu_fetch($this->apcuPrefix.$class, $hit);
if ($hit) {
return $file;
}
}
$file = $this->findFileWithExtension($class, '.php');
// Search for Hack files if we are running on HHVM
if (false === $file && defined('HHVM_VERSION')) {
$file = $this->findFileWithExtension($class, '.hh');
}
if (null !== $this->apcuPrefix) {
apcu_add($this->apcuPrefix.$class, $file);
}
if (false === $file) {
// Remember that this class does not exist.
$this->missingClasses[$class] = true;
}
return $file;
}
/**
* Returns the currently registered loaders keyed by their corresponding vendor directories.
*
* @return array<string, self>
*/
public static function getRegisteredLoaders()
{
return self::$registeredLoaders;
}
/**
* @param string $class
* @param string $ext
* @return string|false
*/
private function findFileWithExtension($class, $ext)
{
// PSR-4 lookup
$logicalPathPsr4 = strtr($class, '\\', DIRECTORY_SEPARATOR) . $ext;
$first = $class[0];
if (isset($this->prefixLengthsPsr4[$first])) {
$subPath = $class;
while (false !== $lastPos = strrpos($subPath, '\\')) {
$subPath = substr($subPath, 0, $lastPos);
$search = $subPath . '\\';
if (isset($this->prefixDirsPsr4[$search])) {
$pathEnd = DIRECTORY_SEPARATOR . substr($logicalPathPsr4, $lastPos + 1);
foreach ($this->prefixDirsPsr4[$search] as $dir) {
if (file_exists($file = $dir . $pathEnd)) {
return $file;
}
}
}
}
}
// PSR-4 fallback dirs
foreach ($this->fallbackDirsPsr4 as $dir) {
if (file_exists($file = $dir . DIRECTORY_SEPARATOR . $logicalPathPsr4)) {
return $file;
}
}
// PSR-0 lookup
if (false !== $pos = strrpos($class, '\\')) {
// namespaced class name
$logicalPathPsr0 = substr($logicalPathPsr4, 0, $pos + 1)
. strtr(substr($logicalPathPsr4, $pos + 1), '_', DIRECTORY_SEPARATOR);
} else {
// PEAR-like class name
$logicalPathPsr0 = strtr($class, '_', DIRECTORY_SEPARATOR) . $ext;
}
if (isset($this->prefixesPsr0[$first])) {
foreach ($this->prefixesPsr0[$first] as $prefix => $dirs) {
if (0 === strpos($class, $prefix)) {
foreach ($dirs as $dir) {
if (file_exists($file = $dir . DIRECTORY_SEPARATOR . $logicalPathPsr0)) {
return $file;
}
}
}
}
}
// PSR-0 fallback dirs
foreach ($this->fallbackDirsPsr0 as $dir) {
if (file_exists($file = $dir . DIRECTORY_SEPARATOR . $logicalPathPsr0)) {
return $file;
}
}
// PSR-0 include paths.
if ($this->useIncludePath && $file = stream_resolve_include_path($logicalPathPsr0)) {
return $file;
}
return false;
}
/**
* @return void
*/
private static function initializeIncludeClosure()
{
if (self::$includeFile !== null) {
return;
}
/**
* Scope isolated include.
*
* Prevents access to $this/self from included files.
*
* @param string $file
* @return void
*/
self::$includeFile = \Closure::bind(static function($file) {
include $file;
}, null, null);
}
}

View File

@@ -0,0 +1,396 @@
<?php
/*
* This file is part of Composer.
*
* (c) Nils Adermann <naderman@naderman.de>
* Jordi Boggiano <j.boggiano@seld.be>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
namespace Composer;
use Composer\Autoload\ClassLoader;
use Composer\Semver\VersionParser;
/**
* This class is copied in every Composer installed project and available to all
*
* See also https://getcomposer.org/doc/07-runtime.md#installed-versions
*
* To require its presence, you can require `composer-runtime-api ^2.0`
*
* @final
*/
class InstalledVersions
{
/**
* @var string|null if set (by reflection by Composer), this should be set to the path where this class is being copied to
* @internal
*/
private static $selfDir = null;
/**
* @var mixed[]|null
* @psalm-var array{root: array{name: string, pretty_version: string, version: string, reference: string|null, type: string, install_path: string, aliases: string[], dev: bool}, versions: array<string, array{pretty_version?: string, version?: string, reference?: string|null, type?: string, install_path?: string, aliases?: string[], dev_requirement: bool, replaced?: string[], provided?: string[]}>}|array{}|null
*/
private static $installed;
/**
* @var bool
*/
private static $installedIsLocalDir;
/**
* @var bool|null
*/
private static $canGetVendors;
/**
* @var array[]
* @psalm-var array<string, array{root: array{name: string, pretty_version: string, version: string, reference: string|null, type: string, install_path: string, aliases: string[], dev: bool}, versions: array<string, array{pretty_version?: string, version?: string, reference?: string|null, type?: string, install_path?: string, aliases?: string[], dev_requirement: bool, replaced?: string[], provided?: string[]}>}>
*/
private static $installedByVendor = array();
/**
* Returns a list of all package names which are present, either by being installed, replaced or provided
*
* @return string[]
* @psalm-return list<string>
*/
public static function getInstalledPackages()
{
$packages = array();
foreach (self::getInstalled() as $installed) {
$packages[] = array_keys($installed['versions']);
}
if (1 === \count($packages)) {
return $packages[0];
}
return array_keys(array_flip(\call_user_func_array('array_merge', $packages)));
}
/**
* Returns a list of all package names with a specific type e.g. 'library'
*
* @param string $type
* @return string[]
* @psalm-return list<string>
*/
public static function getInstalledPackagesByType($type)
{
$packagesByType = array();
foreach (self::getInstalled() as $installed) {
foreach ($installed['versions'] as $name => $package) {
if (isset($package['type']) && $package['type'] === $type) {
$packagesByType[] = $name;
}
}
}
return $packagesByType;
}
/**
* Checks whether the given package is installed
*
* This also returns true if the package name is provided or replaced by another package
*
* @param string $packageName
* @param bool $includeDevRequirements
* @return bool
*/
public static function isInstalled($packageName, $includeDevRequirements = true)
{
foreach (self::getInstalled() as $installed) {
if (isset($installed['versions'][$packageName])) {
return $includeDevRequirements || !isset($installed['versions'][$packageName]['dev_requirement']) || $installed['versions'][$packageName]['dev_requirement'] === false;
}
}
return false;
}
/**
* Checks whether the given package satisfies a version constraint
*
* e.g. If you want to know whether version 2.3+ of package foo/bar is installed, you would call:
*
* Composer\InstalledVersions::satisfies(new VersionParser, 'foo/bar', '^2.3')
*
* @param VersionParser $parser Install composer/semver to have access to this class and functionality
* @param string $packageName
* @param string|null $constraint A version constraint to check for, if you pass one you have to make sure composer/semver is required by your package
* @return bool
*/
public static function satisfies(VersionParser $parser, $packageName, $constraint)
{
$constraint = $parser->parseConstraints((string) $constraint);
$provided = $parser->parseConstraints(self::getVersionRanges($packageName));
return $provided->matches($constraint);
}
/**
* Returns a version constraint representing all the range(s) which are installed for a given package
*
* It is easier to use this via isInstalled() with the $constraint argument if you need to check
* whether a given version of a package is installed, and not just whether it exists
*
* @param string $packageName
* @return string Version constraint usable with composer/semver
*/
public static function getVersionRanges($packageName)
{
foreach (self::getInstalled() as $installed) {
if (!isset($installed['versions'][$packageName])) {
continue;
}
$ranges = array();
if (isset($installed['versions'][$packageName]['pretty_version'])) {
$ranges[] = $installed['versions'][$packageName]['pretty_version'];
}
if (array_key_exists('aliases', $installed['versions'][$packageName])) {
$ranges = array_merge($ranges, $installed['versions'][$packageName]['aliases']);
}
if (array_key_exists('replaced', $installed['versions'][$packageName])) {
$ranges = array_merge($ranges, $installed['versions'][$packageName]['replaced']);
}
if (array_key_exists('provided', $installed['versions'][$packageName])) {
$ranges = array_merge($ranges, $installed['versions'][$packageName]['provided']);
}
return implode(' || ', $ranges);
}
throw new \OutOfBoundsException('Package "' . $packageName . '" is not installed');
}
/**
* @param string $packageName
* @return string|null If the package is being replaced or provided but is not really installed, null will be returned as version, use satisfies or getVersionRanges if you need to know if a given version is present
*/
public static function getVersion($packageName)
{
foreach (self::getInstalled() as $installed) {
if (!isset($installed['versions'][$packageName])) {
continue;
}
if (!isset($installed['versions'][$packageName]['version'])) {
return null;
}
return $installed['versions'][$packageName]['version'];
}
throw new \OutOfBoundsException('Package "' . $packageName . '" is not installed');
}
/**
* @param string $packageName
* @return string|null If the package is being replaced or provided but is not really installed, null will be returned as version, use satisfies or getVersionRanges if you need to know if a given version is present
*/
public static function getPrettyVersion($packageName)
{
foreach (self::getInstalled() as $installed) {
if (!isset($installed['versions'][$packageName])) {
continue;
}
if (!isset($installed['versions'][$packageName]['pretty_version'])) {
return null;
}
return $installed['versions'][$packageName]['pretty_version'];
}
throw new \OutOfBoundsException('Package "' . $packageName . '" is not installed');
}
/**
* @param string $packageName
* @return string|null If the package is being replaced or provided but is not really installed, null will be returned as reference
*/
public static function getReference($packageName)
{
foreach (self::getInstalled() as $installed) {
if (!isset($installed['versions'][$packageName])) {
continue;
}
if (!isset($installed['versions'][$packageName]['reference'])) {
return null;
}
return $installed['versions'][$packageName]['reference'];
}
throw new \OutOfBoundsException('Package "' . $packageName . '" is not installed');
}
/**
* @param string $packageName
* @return string|null If the package is being replaced or provided but is not really installed, null will be returned as install path. Packages of type metapackages also have a null install path.
*/
public static function getInstallPath($packageName)
{
foreach (self::getInstalled() as $installed) {
if (!isset($installed['versions'][$packageName])) {
continue;
}
return isset($installed['versions'][$packageName]['install_path']) ? $installed['versions'][$packageName]['install_path'] : null;
}
throw new \OutOfBoundsException('Package "' . $packageName . '" is not installed');
}
/**
* @return array
* @psalm-return array{name: string, pretty_version: string, version: string, reference: string|null, type: string, install_path: string, aliases: string[], dev: bool}
*/
public static function getRootPackage()
{
$installed = self::getInstalled();
return $installed[0]['root'];
}
/**
* Returns the raw installed.php data for custom implementations
*
* @deprecated Use getAllRawData() instead which returns all datasets for all autoloaders present in the process. getRawData only returns the first dataset loaded, which may not be what you expect.
* @return array[]
* @psalm-return array{root: array{name: string, pretty_version: string, version: string, reference: string|null, type: string, install_path: string, aliases: string[], dev: bool}, versions: array<string, array{pretty_version?: string, version?: string, reference?: string|null, type?: string, install_path?: string, aliases?: string[], dev_requirement: bool, replaced?: string[], provided?: string[]}>}
*/
public static function getRawData()
{
@trigger_error('getRawData only returns the first dataset loaded, which may not be what you expect. Use getAllRawData() instead which returns all datasets for all autoloaders present in the process.', E_USER_DEPRECATED);
if (null === self::$installed) {
// only require the installed.php file if this file is loaded from its dumped location,
// and not from its source location in the composer/composer package, see https://github.com/composer/composer/issues/9937
if (substr(__DIR__, -8, 1) !== 'C') {
self::$installed = include __DIR__ . '/installed.php';
} else {
self::$installed = array();
}
}
return self::$installed;
}
/**
* Returns the raw data of all installed.php which are currently loaded for custom implementations
*
* @return array[]
* @psalm-return list<array{root: array{name: string, pretty_version: string, version: string, reference: string|null, type: string, install_path: string, aliases: string[], dev: bool}, versions: array<string, array{pretty_version?: string, version?: string, reference?: string|null, type?: string, install_path?: string, aliases?: string[], dev_requirement: bool, replaced?: string[], provided?: string[]}>}>
*/
public static function getAllRawData()
{
return self::getInstalled();
}
/**
* Lets you reload the static array from another file
*
* This is only useful for complex integrations in which a project needs to use
* this class but then also needs to execute another project's autoloader in process,
* and wants to ensure both projects have access to their version of installed.php.
*
* A typical case would be PHPUnit, where it would need to make sure it reads all
* the data it needs from this class, then call reload() with
* `require $CWD/vendor/composer/installed.php` (or similar) as input to make sure
* the project in which it runs can then also use this class safely, without
* interference between PHPUnit's dependencies and the project's dependencies.
*
* @param array[] $data A vendor/composer/installed.php data set
* @return void
*
* @psalm-param array{root: array{name: string, pretty_version: string, version: string, reference: string|null, type: string, install_path: string, aliases: string[], dev: bool}, versions: array<string, array{pretty_version?: string, version?: string, reference?: string|null, type?: string, install_path?: string, aliases?: string[], dev_requirement: bool, replaced?: string[], provided?: string[]}>} $data
*/
public static function reload($data)
{
self::$installed = $data;
self::$installedByVendor = array();
// when using reload, we disable the duplicate protection to ensure that self::$installed data is
// always returned, but we cannot know whether it comes from the installed.php in __DIR__ or not,
// so we have to assume it does not, and that may result in duplicate data being returned when listing
// all installed packages for example
self::$installedIsLocalDir = false;
}
/**
* @return string
*/
private static function getSelfDir()
{
if (self::$selfDir === null) {
self::$selfDir = strtr(__DIR__, '\\', '/');
}
return self::$selfDir;
}
/**
* @return array[]
* @psalm-return list<array{root: array{name: string, pretty_version: string, version: string, reference: string|null, type: string, install_path: string, aliases: string[], dev: bool}, versions: array<string, array{pretty_version?: string, version?: string, reference?: string|null, type?: string, install_path?: string, aliases?: string[], dev_requirement: bool, replaced?: string[], provided?: string[]}>}>
*/
private static function getInstalled()
{
if (null === self::$canGetVendors) {
self::$canGetVendors = method_exists('Composer\Autoload\ClassLoader', 'getRegisteredLoaders');
}
$installed = array();
$copiedLocalDir = false;
if (self::$canGetVendors) {
$selfDir = self::getSelfDir();
foreach (ClassLoader::getRegisteredLoaders() as $vendorDir => $loader) {
$vendorDir = strtr($vendorDir, '\\', '/');
if (isset(self::$installedByVendor[$vendorDir])) {
$installed[] = self::$installedByVendor[$vendorDir];
} elseif (is_file($vendorDir.'/composer/installed.php')) {
/** @var array{root: array{name: string, pretty_version: string, version: string, reference: string|null, type: string, install_path: string, aliases: string[], dev: bool}, versions: array<string, array{pretty_version?: string, version?: string, reference?: string|null, type?: string, install_path?: string, aliases?: string[], dev_requirement: bool, replaced?: string[], provided?: string[]}>} $required */
$required = require $vendorDir.'/composer/installed.php';
self::$installedByVendor[$vendorDir] = $required;
$installed[] = $required;
if (self::$installed === null && $vendorDir.'/composer' === $selfDir) {
self::$installed = $required;
self::$installedIsLocalDir = true;
}
}
if (self::$installedIsLocalDir && $vendorDir.'/composer' === $selfDir) {
$copiedLocalDir = true;
}
}
}
if (null === self::$installed) {
// only require the installed.php file if this file is loaded from its dumped location,
// and not from its source location in the composer/composer package, see https://github.com/composer/composer/issues/9937
if (substr(__DIR__, -8, 1) !== 'C') {
/** @var array{root: array{name: string, pretty_version: string, version: string, reference: string|null, type: string, install_path: string, aliases: string[], dev: bool}, versions: array<string, array{pretty_version?: string, version?: string, reference?: string|null, type?: string, install_path?: string, aliases?: string[], dev_requirement: bool, replaced?: string[], provided?: string[]}>} $required */
$required = require __DIR__ . '/installed.php';
self::$installed = $required;
} else {
self::$installed = array();
}
}
if (self::$installed !== array() && !$copiedLocalDir) {
$installed[] = self::$installed;
}
return $installed;
}
}

View File

@@ -0,0 +1,21 @@
Copyright (c) Nils Adermann, Jordi Boggiano
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is furnished
to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.

View File

@@ -0,0 +1,209 @@
<?php
// autoload_classmap.php @generated by Composer
$vendorDir = dirname(__DIR__);
$baseDir = dirname($vendorDir);
return array(
'Composer\\InstalledVersions' => $vendorDir . '/composer/InstalledVersions.php',
'ElementorDeps\\Attribute' => $baseDir . '/vendor_prefixed/twig/symfony/polyfill-php80/Resources/stubs/Attribute.php',
'ElementorDeps\\CURLStringFile' => $baseDir . '/vendor_prefixed/twig/symfony/polyfill-php81/Resources/stubs/CURLStringFile.php',
'ElementorDeps\\PhpToken' => $baseDir . '/vendor_prefixed/twig/symfony/polyfill-php80/Resources/stubs/PhpToken.php',
'ElementorDeps\\ReturnTypeWillChange' => $baseDir . '/vendor_prefixed/twig/symfony/polyfill-php81/Resources/stubs/ReturnTypeWillChange.php',
'ElementorDeps\\Stringable' => $baseDir . '/vendor_prefixed/twig/symfony/polyfill-php80/Resources/stubs/Stringable.php',
'ElementorDeps\\Symfony\\Polyfill\\Ctype\\Ctype' => $baseDir . '/vendor_prefixed/twig/symfony/polyfill-ctype/Ctype.php',
'ElementorDeps\\Symfony\\Polyfill\\Mbstring\\Mbstring' => $baseDir . '/vendor_prefixed/twig/symfony/polyfill-mbstring/Mbstring.php',
'ElementorDeps\\Symfony\\Polyfill\\Php80\\Php80' => $baseDir . '/vendor_prefixed/twig/symfony/polyfill-php80/Php80.php',
'ElementorDeps\\Symfony\\Polyfill\\Php80\\PhpToken' => $baseDir . '/vendor_prefixed/twig/symfony/polyfill-php80/PhpToken.php',
'ElementorDeps\\Symfony\\Polyfill\\Php81\\Php81' => $baseDir . '/vendor_prefixed/twig/symfony/polyfill-php81/Php81.php',
'ElementorDeps\\Twig\\Attribute\\YieldReady' => $baseDir . '/vendor_prefixed/twig/twig/twig/src/Attribute/YieldReady.php',
'ElementorDeps\\Twig\\Cache\\CacheInterface' => $baseDir . '/vendor_prefixed/twig/twig/twig/src/Cache/CacheInterface.php',
'ElementorDeps\\Twig\\Cache\\ChainCache' => $baseDir . '/vendor_prefixed/twig/twig/twig/src/Cache/ChainCache.php',
'ElementorDeps\\Twig\\Cache\\FilesystemCache' => $baseDir . '/vendor_prefixed/twig/twig/twig/src/Cache/FilesystemCache.php',
'ElementorDeps\\Twig\\Cache\\NullCache' => $baseDir . '/vendor_prefixed/twig/twig/twig/src/Cache/NullCache.php',
'ElementorDeps\\Twig\\Cache\\ReadOnlyFilesystemCache' => $baseDir . '/vendor_prefixed/twig/twig/twig/src/Cache/ReadOnlyFilesystemCache.php',
'ElementorDeps\\Twig\\Compiler' => $baseDir . '/vendor_prefixed/twig/twig/twig/src/Compiler.php',
'ElementorDeps\\Twig\\Environment' => $baseDir . '/vendor_prefixed/twig/twig/twig/src/Environment.php',
'ElementorDeps\\Twig\\Error\\Error' => $baseDir . '/vendor_prefixed/twig/twig/twig/src/Error/Error.php',
'ElementorDeps\\Twig\\Error\\LoaderError' => $baseDir . '/vendor_prefixed/twig/twig/twig/src/Error/LoaderError.php',
'ElementorDeps\\Twig\\Error\\RuntimeError' => $baseDir . '/vendor_prefixed/twig/twig/twig/src/Error/RuntimeError.php',
'ElementorDeps\\Twig\\Error\\SyntaxError' => $baseDir . '/vendor_prefixed/twig/twig/twig/src/Error/SyntaxError.php',
'ElementorDeps\\Twig\\ExpressionParser' => $baseDir . '/vendor_prefixed/twig/twig/twig/src/ExpressionParser.php',
'ElementorDeps\\Twig\\ExtensionSet' => $baseDir . '/vendor_prefixed/twig/twig/twig/src/ExtensionSet.php',
'ElementorDeps\\Twig\\Extension\\AbstractExtension' => $baseDir . '/vendor_prefixed/twig/twig/twig/src/Extension/AbstractExtension.php',
'ElementorDeps\\Twig\\Extension\\CoreExtension' => $baseDir . '/vendor_prefixed/twig/twig/twig/src/Extension/CoreExtension.php',
'ElementorDeps\\Twig\\Extension\\DebugExtension' => $baseDir . '/vendor_prefixed/twig/twig/twig/src/Extension/DebugExtension.php',
'ElementorDeps\\Twig\\Extension\\EscaperExtension' => $baseDir . '/vendor_prefixed/twig/twig/twig/src/Extension/EscaperExtension.php',
'ElementorDeps\\Twig\\Extension\\ExtensionInterface' => $baseDir . '/vendor_prefixed/twig/twig/twig/src/Extension/ExtensionInterface.php',
'ElementorDeps\\Twig\\Extension\\GlobalsInterface' => $baseDir . '/vendor_prefixed/twig/twig/twig/src/Extension/GlobalsInterface.php',
'ElementorDeps\\Twig\\Extension\\OptimizerExtension' => $baseDir . '/vendor_prefixed/twig/twig/twig/src/Extension/OptimizerExtension.php',
'ElementorDeps\\Twig\\Extension\\ProfilerExtension' => $baseDir . '/vendor_prefixed/twig/twig/twig/src/Extension/ProfilerExtension.php',
'ElementorDeps\\Twig\\Extension\\RuntimeExtensionInterface' => $baseDir . '/vendor_prefixed/twig/twig/twig/src/Extension/RuntimeExtensionInterface.php',
'ElementorDeps\\Twig\\Extension\\SandboxExtension' => $baseDir . '/vendor_prefixed/twig/twig/twig/src/Extension/SandboxExtension.php',
'ElementorDeps\\Twig\\Extension\\StagingExtension' => $baseDir . '/vendor_prefixed/twig/twig/twig/src/Extension/StagingExtension.php',
'ElementorDeps\\Twig\\Extension\\StringLoaderExtension' => $baseDir . '/vendor_prefixed/twig/twig/twig/src/Extension/StringLoaderExtension.php',
'ElementorDeps\\Twig\\Extension\\YieldNotReadyExtension' => $baseDir . '/vendor_prefixed/twig/twig/twig/src/Extension/YieldNotReadyExtension.php',
'ElementorDeps\\Twig\\FileExtensionEscapingStrategy' => $baseDir . '/vendor_prefixed/twig/twig/twig/src/FileExtensionEscapingStrategy.php',
'ElementorDeps\\Twig\\Lexer' => $baseDir . '/vendor_prefixed/twig/twig/twig/src/Lexer.php',
'ElementorDeps\\Twig\\Loader\\ArrayLoader' => $baseDir . '/vendor_prefixed/twig/twig/twig/src/Loader/ArrayLoader.php',
'ElementorDeps\\Twig\\Loader\\ChainLoader' => $baseDir . '/vendor_prefixed/twig/twig/twig/src/Loader/ChainLoader.php',
'ElementorDeps\\Twig\\Loader\\FilesystemLoader' => $baseDir . '/vendor_prefixed/twig/twig/twig/src/Loader/FilesystemLoader.php',
'ElementorDeps\\Twig\\Loader\\LoaderInterface' => $baseDir . '/vendor_prefixed/twig/twig/twig/src/Loader/LoaderInterface.php',
'ElementorDeps\\Twig\\Markup' => $baseDir . '/vendor_prefixed/twig/twig/twig/src/Markup.php',
'ElementorDeps\\Twig\\NodeTraverser' => $baseDir . '/vendor_prefixed/twig/twig/twig/src/NodeTraverser.php',
'ElementorDeps\\Twig\\NodeVisitor\\AbstractNodeVisitor' => $baseDir . '/vendor_prefixed/twig/twig/twig/src/NodeVisitor/AbstractNodeVisitor.php',
'ElementorDeps\\Twig\\NodeVisitor\\EscaperNodeVisitor' => $baseDir . '/vendor_prefixed/twig/twig/twig/src/NodeVisitor/EscaperNodeVisitor.php',
'ElementorDeps\\Twig\\NodeVisitor\\MacroAutoImportNodeVisitor' => $baseDir . '/vendor_prefixed/twig/twig/twig/src/NodeVisitor/MacroAutoImportNodeVisitor.php',
'ElementorDeps\\Twig\\NodeVisitor\\NodeVisitorInterface' => $baseDir . '/vendor_prefixed/twig/twig/twig/src/NodeVisitor/NodeVisitorInterface.php',
'ElementorDeps\\Twig\\NodeVisitor\\OptimizerNodeVisitor' => $baseDir . '/vendor_prefixed/twig/twig/twig/src/NodeVisitor/OptimizerNodeVisitor.php',
'ElementorDeps\\Twig\\NodeVisitor\\SafeAnalysisNodeVisitor' => $baseDir . '/vendor_prefixed/twig/twig/twig/src/NodeVisitor/SafeAnalysisNodeVisitor.php',
'ElementorDeps\\Twig\\NodeVisitor\\SandboxNodeVisitor' => $baseDir . '/vendor_prefixed/twig/twig/twig/src/NodeVisitor/SandboxNodeVisitor.php',
'ElementorDeps\\Twig\\NodeVisitor\\YieldNotReadyNodeVisitor' => $baseDir . '/vendor_prefixed/twig/twig/twig/src/NodeVisitor/YieldNotReadyNodeVisitor.php',
'ElementorDeps\\Twig\\Node\\AutoEscapeNode' => $baseDir . '/vendor_prefixed/twig/twig/twig/src/Node/AutoEscapeNode.php',
'ElementorDeps\\Twig\\Node\\BlockNode' => $baseDir . '/vendor_prefixed/twig/twig/twig/src/Node/BlockNode.php',
'ElementorDeps\\Twig\\Node\\BlockReferenceNode' => $baseDir . '/vendor_prefixed/twig/twig/twig/src/Node/BlockReferenceNode.php',
'ElementorDeps\\Twig\\Node\\BodyNode' => $baseDir . '/vendor_prefixed/twig/twig/twig/src/Node/BodyNode.php',
'ElementorDeps\\Twig\\Node\\CaptureNode' => $baseDir . '/vendor_prefixed/twig/twig/twig/src/Node/CaptureNode.php',
'ElementorDeps\\Twig\\Node\\CheckSecurityCallNode' => $baseDir . '/vendor_prefixed/twig/twig/twig/src/Node/CheckSecurityCallNode.php',
'ElementorDeps\\Twig\\Node\\CheckSecurityNode' => $baseDir . '/vendor_prefixed/twig/twig/twig/src/Node/CheckSecurityNode.php',
'ElementorDeps\\Twig\\Node\\CheckToStringNode' => $baseDir . '/vendor_prefixed/twig/twig/twig/src/Node/CheckToStringNode.php',
'ElementorDeps\\Twig\\Node\\DeprecatedNode' => $baseDir . '/vendor_prefixed/twig/twig/twig/src/Node/DeprecatedNode.php',
'ElementorDeps\\Twig\\Node\\DoNode' => $baseDir . '/vendor_prefixed/twig/twig/twig/src/Node/DoNode.php',
'ElementorDeps\\Twig\\Node\\EmbedNode' => $baseDir . '/vendor_prefixed/twig/twig/twig/src/Node/EmbedNode.php',
'ElementorDeps\\Twig\\Node\\Expression\\AbstractExpression' => $baseDir . '/vendor_prefixed/twig/twig/twig/src/Node/Expression/AbstractExpression.php',
'ElementorDeps\\Twig\\Node\\Expression\\ArrayExpression' => $baseDir . '/vendor_prefixed/twig/twig/twig/src/Node/Expression/ArrayExpression.php',
'ElementorDeps\\Twig\\Node\\Expression\\ArrowFunctionExpression' => $baseDir . '/vendor_prefixed/twig/twig/twig/src/Node/Expression/ArrowFunctionExpression.php',
'ElementorDeps\\Twig\\Node\\Expression\\AssignNameExpression' => $baseDir . '/vendor_prefixed/twig/twig/twig/src/Node/Expression/AssignNameExpression.php',
'ElementorDeps\\Twig\\Node\\Expression\\Binary\\AbstractBinary' => $baseDir . '/vendor_prefixed/twig/twig/twig/src/Node/Expression/Binary/AbstractBinary.php',
'ElementorDeps\\Twig\\Node\\Expression\\Binary\\AddBinary' => $baseDir . '/vendor_prefixed/twig/twig/twig/src/Node/Expression/Binary/AddBinary.php',
'ElementorDeps\\Twig\\Node\\Expression\\Binary\\AndBinary' => $baseDir . '/vendor_prefixed/twig/twig/twig/src/Node/Expression/Binary/AndBinary.php',
'ElementorDeps\\Twig\\Node\\Expression\\Binary\\BitwiseAndBinary' => $baseDir . '/vendor_prefixed/twig/twig/twig/src/Node/Expression/Binary/BitwiseAndBinary.php',
'ElementorDeps\\Twig\\Node\\Expression\\Binary\\BitwiseOrBinary' => $baseDir . '/vendor_prefixed/twig/twig/twig/src/Node/Expression/Binary/BitwiseOrBinary.php',
'ElementorDeps\\Twig\\Node\\Expression\\Binary\\BitwiseXorBinary' => $baseDir . '/vendor_prefixed/twig/twig/twig/src/Node/Expression/Binary/BitwiseXorBinary.php',
'ElementorDeps\\Twig\\Node\\Expression\\Binary\\ConcatBinary' => $baseDir . '/vendor_prefixed/twig/twig/twig/src/Node/Expression/Binary/ConcatBinary.php',
'ElementorDeps\\Twig\\Node\\Expression\\Binary\\DivBinary' => $baseDir . '/vendor_prefixed/twig/twig/twig/src/Node/Expression/Binary/DivBinary.php',
'ElementorDeps\\Twig\\Node\\Expression\\Binary\\EndsWithBinary' => $baseDir . '/vendor_prefixed/twig/twig/twig/src/Node/Expression/Binary/EndsWithBinary.php',
'ElementorDeps\\Twig\\Node\\Expression\\Binary\\EqualBinary' => $baseDir . '/vendor_prefixed/twig/twig/twig/src/Node/Expression/Binary/EqualBinary.php',
'ElementorDeps\\Twig\\Node\\Expression\\Binary\\FloorDivBinary' => $baseDir . '/vendor_prefixed/twig/twig/twig/src/Node/Expression/Binary/FloorDivBinary.php',
'ElementorDeps\\Twig\\Node\\Expression\\Binary\\GreaterBinary' => $baseDir . '/vendor_prefixed/twig/twig/twig/src/Node/Expression/Binary/GreaterBinary.php',
'ElementorDeps\\Twig\\Node\\Expression\\Binary\\GreaterEqualBinary' => $baseDir . '/vendor_prefixed/twig/twig/twig/src/Node/Expression/Binary/GreaterEqualBinary.php',
'ElementorDeps\\Twig\\Node\\Expression\\Binary\\HasEveryBinary' => $baseDir . '/vendor_prefixed/twig/twig/twig/src/Node/Expression/Binary/HasEveryBinary.php',
'ElementorDeps\\Twig\\Node\\Expression\\Binary\\HasSomeBinary' => $baseDir . '/vendor_prefixed/twig/twig/twig/src/Node/Expression/Binary/HasSomeBinary.php',
'ElementorDeps\\Twig\\Node\\Expression\\Binary\\InBinary' => $baseDir . '/vendor_prefixed/twig/twig/twig/src/Node/Expression/Binary/InBinary.php',
'ElementorDeps\\Twig\\Node\\Expression\\Binary\\LessBinary' => $baseDir . '/vendor_prefixed/twig/twig/twig/src/Node/Expression/Binary/LessBinary.php',
'ElementorDeps\\Twig\\Node\\Expression\\Binary\\LessEqualBinary' => $baseDir . '/vendor_prefixed/twig/twig/twig/src/Node/Expression/Binary/LessEqualBinary.php',
'ElementorDeps\\Twig\\Node\\Expression\\Binary\\MatchesBinary' => $baseDir . '/vendor_prefixed/twig/twig/twig/src/Node/Expression/Binary/MatchesBinary.php',
'ElementorDeps\\Twig\\Node\\Expression\\Binary\\ModBinary' => $baseDir . '/vendor_prefixed/twig/twig/twig/src/Node/Expression/Binary/ModBinary.php',
'ElementorDeps\\Twig\\Node\\Expression\\Binary\\MulBinary' => $baseDir . '/vendor_prefixed/twig/twig/twig/src/Node/Expression/Binary/MulBinary.php',
'ElementorDeps\\Twig\\Node\\Expression\\Binary\\NotEqualBinary' => $baseDir . '/vendor_prefixed/twig/twig/twig/src/Node/Expression/Binary/NotEqualBinary.php',
'ElementorDeps\\Twig\\Node\\Expression\\Binary\\NotInBinary' => $baseDir . '/vendor_prefixed/twig/twig/twig/src/Node/Expression/Binary/NotInBinary.php',
'ElementorDeps\\Twig\\Node\\Expression\\Binary\\OrBinary' => $baseDir . '/vendor_prefixed/twig/twig/twig/src/Node/Expression/Binary/OrBinary.php',
'ElementorDeps\\Twig\\Node\\Expression\\Binary\\PowerBinary' => $baseDir . '/vendor_prefixed/twig/twig/twig/src/Node/Expression/Binary/PowerBinary.php',
'ElementorDeps\\Twig\\Node\\Expression\\Binary\\RangeBinary' => $baseDir . '/vendor_prefixed/twig/twig/twig/src/Node/Expression/Binary/RangeBinary.php',
'ElementorDeps\\Twig\\Node\\Expression\\Binary\\SpaceshipBinary' => $baseDir . '/vendor_prefixed/twig/twig/twig/src/Node/Expression/Binary/SpaceshipBinary.php',
'ElementorDeps\\Twig\\Node\\Expression\\Binary\\StartsWithBinary' => $baseDir . '/vendor_prefixed/twig/twig/twig/src/Node/Expression/Binary/StartsWithBinary.php',
'ElementorDeps\\Twig\\Node\\Expression\\Binary\\SubBinary' => $baseDir . '/vendor_prefixed/twig/twig/twig/src/Node/Expression/Binary/SubBinary.php',
'ElementorDeps\\Twig\\Node\\Expression\\BlockReferenceExpression' => $baseDir . '/vendor_prefixed/twig/twig/twig/src/Node/Expression/BlockReferenceExpression.php',
'ElementorDeps\\Twig\\Node\\Expression\\CallExpression' => $baseDir . '/vendor_prefixed/twig/twig/twig/src/Node/Expression/CallExpression.php',
'ElementorDeps\\Twig\\Node\\Expression\\ConditionalExpression' => $baseDir . '/vendor_prefixed/twig/twig/twig/src/Node/Expression/ConditionalExpression.php',
'ElementorDeps\\Twig\\Node\\Expression\\ConstantExpression' => $baseDir . '/vendor_prefixed/twig/twig/twig/src/Node/Expression/ConstantExpression.php',
'ElementorDeps\\Twig\\Node\\Expression\\FilterExpression' => $baseDir . '/vendor_prefixed/twig/twig/twig/src/Node/Expression/FilterExpression.php',
'ElementorDeps\\Twig\\Node\\Expression\\Filter\\DefaultFilter' => $baseDir . '/vendor_prefixed/twig/twig/twig/src/Node/Expression/Filter/DefaultFilter.php',
'ElementorDeps\\Twig\\Node\\Expression\\Filter\\RawFilter' => $baseDir . '/vendor_prefixed/twig/twig/twig/src/Node/Expression/Filter/RawFilter.php',
'ElementorDeps\\Twig\\Node\\Expression\\FunctionExpression' => $baseDir . '/vendor_prefixed/twig/twig/twig/src/Node/Expression/FunctionExpression.php',
'ElementorDeps\\Twig\\Node\\Expression\\GetAttrExpression' => $baseDir . '/vendor_prefixed/twig/twig/twig/src/Node/Expression/GetAttrExpression.php',
'ElementorDeps\\Twig\\Node\\Expression\\InlinePrint' => $baseDir . '/vendor_prefixed/twig/twig/twig/src/Node/Expression/InlinePrint.php',
'ElementorDeps\\Twig\\Node\\Expression\\MethodCallExpression' => $baseDir . '/vendor_prefixed/twig/twig/twig/src/Node/Expression/MethodCallExpression.php',
'ElementorDeps\\Twig\\Node\\Expression\\NameExpression' => $baseDir . '/vendor_prefixed/twig/twig/twig/src/Node/Expression/NameExpression.php',
'ElementorDeps\\Twig\\Node\\Expression\\NullCoalesceExpression' => $baseDir . '/vendor_prefixed/twig/twig/twig/src/Node/Expression/NullCoalesceExpression.php',
'ElementorDeps\\Twig\\Node\\Expression\\ParentExpression' => $baseDir . '/vendor_prefixed/twig/twig/twig/src/Node/Expression/ParentExpression.php',
'ElementorDeps\\Twig\\Node\\Expression\\TempNameExpression' => $baseDir . '/vendor_prefixed/twig/twig/twig/src/Node/Expression/TempNameExpression.php',
'ElementorDeps\\Twig\\Node\\Expression\\TestExpression' => $baseDir . '/vendor_prefixed/twig/twig/twig/src/Node/Expression/TestExpression.php',
'ElementorDeps\\Twig\\Node\\Expression\\Test\\ConstantTest' => $baseDir . '/vendor_prefixed/twig/twig/twig/src/Node/Expression/Test/ConstantTest.php',
'ElementorDeps\\Twig\\Node\\Expression\\Test\\DefinedTest' => $baseDir . '/vendor_prefixed/twig/twig/twig/src/Node/Expression/Test/DefinedTest.php',
'ElementorDeps\\Twig\\Node\\Expression\\Test\\DivisiblebyTest' => $baseDir . '/vendor_prefixed/twig/twig/twig/src/Node/Expression/Test/DivisiblebyTest.php',
'ElementorDeps\\Twig\\Node\\Expression\\Test\\EvenTest' => $baseDir . '/vendor_prefixed/twig/twig/twig/src/Node/Expression/Test/EvenTest.php',
'ElementorDeps\\Twig\\Node\\Expression\\Test\\NullTest' => $baseDir . '/vendor_prefixed/twig/twig/twig/src/Node/Expression/Test/NullTest.php',
'ElementorDeps\\Twig\\Node\\Expression\\Test\\OddTest' => $baseDir . '/vendor_prefixed/twig/twig/twig/src/Node/Expression/Test/OddTest.php',
'ElementorDeps\\Twig\\Node\\Expression\\Test\\SameasTest' => $baseDir . '/vendor_prefixed/twig/twig/twig/src/Node/Expression/Test/SameasTest.php',
'ElementorDeps\\Twig\\Node\\Expression\\Unary\\AbstractUnary' => $baseDir . '/vendor_prefixed/twig/twig/twig/src/Node/Expression/Unary/AbstractUnary.php',
'ElementorDeps\\Twig\\Node\\Expression\\Unary\\NegUnary' => $baseDir . '/vendor_prefixed/twig/twig/twig/src/Node/Expression/Unary/NegUnary.php',
'ElementorDeps\\Twig\\Node\\Expression\\Unary\\NotUnary' => $baseDir . '/vendor_prefixed/twig/twig/twig/src/Node/Expression/Unary/NotUnary.php',
'ElementorDeps\\Twig\\Node\\Expression\\Unary\\PosUnary' => $baseDir . '/vendor_prefixed/twig/twig/twig/src/Node/Expression/Unary/PosUnary.php',
'ElementorDeps\\Twig\\Node\\Expression\\VariadicExpression' => $baseDir . '/vendor_prefixed/twig/twig/twig/src/Node/Expression/VariadicExpression.php',
'ElementorDeps\\Twig\\Node\\FlushNode' => $baseDir . '/vendor_prefixed/twig/twig/twig/src/Node/FlushNode.php',
'ElementorDeps\\Twig\\Node\\ForLoopNode' => $baseDir . '/vendor_prefixed/twig/twig/twig/src/Node/ForLoopNode.php',
'ElementorDeps\\Twig\\Node\\ForNode' => $baseDir . '/vendor_prefixed/twig/twig/twig/src/Node/ForNode.php',
'ElementorDeps\\Twig\\Node\\IfNode' => $baseDir . '/vendor_prefixed/twig/twig/twig/src/Node/IfNode.php',
'ElementorDeps\\Twig\\Node\\ImportNode' => $baseDir . '/vendor_prefixed/twig/twig/twig/src/Node/ImportNode.php',
'ElementorDeps\\Twig\\Node\\IncludeNode' => $baseDir . '/vendor_prefixed/twig/twig/twig/src/Node/IncludeNode.php',
'ElementorDeps\\Twig\\Node\\MacroNode' => $baseDir . '/vendor_prefixed/twig/twig/twig/src/Node/MacroNode.php',
'ElementorDeps\\Twig\\Node\\ModuleNode' => $baseDir . '/vendor_prefixed/twig/twig/twig/src/Node/ModuleNode.php',
'ElementorDeps\\Twig\\Node\\NameDeprecation' => $baseDir . '/vendor_prefixed/twig/twig/twig/src/Node/NameDeprecation.php',
'ElementorDeps\\Twig\\Node\\Node' => $baseDir . '/vendor_prefixed/twig/twig/twig/src/Node/Node.php',
'ElementorDeps\\Twig\\Node\\NodeCaptureInterface' => $baseDir . '/vendor_prefixed/twig/twig/twig/src/Node/NodeCaptureInterface.php',
'ElementorDeps\\Twig\\Node\\NodeOutputInterface' => $baseDir . '/vendor_prefixed/twig/twig/twig/src/Node/NodeOutputInterface.php',
'ElementorDeps\\Twig\\Node\\PrintNode' => $baseDir . '/vendor_prefixed/twig/twig/twig/src/Node/PrintNode.php',
'ElementorDeps\\Twig\\Node\\SandboxNode' => $baseDir . '/vendor_prefixed/twig/twig/twig/src/Node/SandboxNode.php',
'ElementorDeps\\Twig\\Node\\SetNode' => $baseDir . '/vendor_prefixed/twig/twig/twig/src/Node/SetNode.php',
'ElementorDeps\\Twig\\Node\\TextNode' => $baseDir . '/vendor_prefixed/twig/twig/twig/src/Node/TextNode.php',
'ElementorDeps\\Twig\\Node\\WithNode' => $baseDir . '/vendor_prefixed/twig/twig/twig/src/Node/WithNode.php',
'ElementorDeps\\Twig\\Parser' => $baseDir . '/vendor_prefixed/twig/twig/twig/src/Parser.php',
'ElementorDeps\\Twig\\Profiler\\Dumper\\BaseDumper' => $baseDir . '/vendor_prefixed/twig/twig/twig/src/Profiler/Dumper/BaseDumper.php',
'ElementorDeps\\Twig\\Profiler\\Dumper\\BlackfireDumper' => $baseDir . '/vendor_prefixed/twig/twig/twig/src/Profiler/Dumper/BlackfireDumper.php',
'ElementorDeps\\Twig\\Profiler\\Dumper\\HtmlDumper' => $baseDir . '/vendor_prefixed/twig/twig/twig/src/Profiler/Dumper/HtmlDumper.php',
'ElementorDeps\\Twig\\Profiler\\Dumper\\TextDumper' => $baseDir . '/vendor_prefixed/twig/twig/twig/src/Profiler/Dumper/TextDumper.php',
'ElementorDeps\\Twig\\Profiler\\NodeVisitor\\ProfilerNodeVisitor' => $baseDir . '/vendor_prefixed/twig/twig/twig/src/Profiler/NodeVisitor/ProfilerNodeVisitor.php',
'ElementorDeps\\Twig\\Profiler\\Node\\EnterProfileNode' => $baseDir . '/vendor_prefixed/twig/twig/twig/src/Profiler/Node/EnterProfileNode.php',
'ElementorDeps\\Twig\\Profiler\\Node\\LeaveProfileNode' => $baseDir . '/vendor_prefixed/twig/twig/twig/src/Profiler/Node/LeaveProfileNode.php',
'ElementorDeps\\Twig\\Profiler\\Profile' => $baseDir . '/vendor_prefixed/twig/twig/twig/src/Profiler/Profile.php',
'ElementorDeps\\Twig\\RuntimeLoader\\ContainerRuntimeLoader' => $baseDir . '/vendor_prefixed/twig/twig/twig/src/RuntimeLoader/ContainerRuntimeLoader.php',
'ElementorDeps\\Twig\\RuntimeLoader\\FactoryRuntimeLoader' => $baseDir . '/vendor_prefixed/twig/twig/twig/src/RuntimeLoader/FactoryRuntimeLoader.php',
'ElementorDeps\\Twig\\RuntimeLoader\\RuntimeLoaderInterface' => $baseDir . '/vendor_prefixed/twig/twig/twig/src/RuntimeLoader/RuntimeLoaderInterface.php',
'ElementorDeps\\Twig\\Runtime\\EscaperRuntime' => $baseDir . '/vendor_prefixed/twig/twig/twig/src/Runtime/EscaperRuntime.php',
'ElementorDeps\\Twig\\Sandbox\\SecurityError' => $baseDir . '/vendor_prefixed/twig/twig/twig/src/Sandbox/SecurityError.php',
'ElementorDeps\\Twig\\Sandbox\\SecurityNotAllowedFilterError' => $baseDir . '/vendor_prefixed/twig/twig/twig/src/Sandbox/SecurityNotAllowedFilterError.php',
'ElementorDeps\\Twig\\Sandbox\\SecurityNotAllowedFunctionError' => $baseDir . '/vendor_prefixed/twig/twig/twig/src/Sandbox/SecurityNotAllowedFunctionError.php',
'ElementorDeps\\Twig\\Sandbox\\SecurityNotAllowedMethodError' => $baseDir . '/vendor_prefixed/twig/twig/twig/src/Sandbox/SecurityNotAllowedMethodError.php',
'ElementorDeps\\Twig\\Sandbox\\SecurityNotAllowedPropertyError' => $baseDir . '/vendor_prefixed/twig/twig/twig/src/Sandbox/SecurityNotAllowedPropertyError.php',
'ElementorDeps\\Twig\\Sandbox\\SecurityNotAllowedTagError' => $baseDir . '/vendor_prefixed/twig/twig/twig/src/Sandbox/SecurityNotAllowedTagError.php',
'ElementorDeps\\Twig\\Sandbox\\SecurityPolicy' => $baseDir . '/vendor_prefixed/twig/twig/twig/src/Sandbox/SecurityPolicy.php',
'ElementorDeps\\Twig\\Sandbox\\SecurityPolicyInterface' => $baseDir . '/vendor_prefixed/twig/twig/twig/src/Sandbox/SecurityPolicyInterface.php',
'ElementorDeps\\Twig\\Sandbox\\SourcePolicyInterface' => $baseDir . '/vendor_prefixed/twig/twig/twig/src/Sandbox/SourcePolicyInterface.php',
'ElementorDeps\\Twig\\Source' => $baseDir . '/vendor_prefixed/twig/twig/twig/src/Source.php',
'ElementorDeps\\Twig\\Template' => $baseDir . '/vendor_prefixed/twig/twig/twig/src/Template.php',
'ElementorDeps\\Twig\\TemplateWrapper' => $baseDir . '/vendor_prefixed/twig/twig/twig/src/TemplateWrapper.php',
'ElementorDeps\\Twig\\Test\\IntegrationTestCase' => $baseDir . '/vendor_prefixed/twig/twig/twig/src/Test/IntegrationTestCase.php',
'ElementorDeps\\Twig\\Test\\NodeTestCase' => $baseDir . '/vendor_prefixed/twig/twig/twig/src/Test/NodeTestCase.php',
'ElementorDeps\\Twig\\Token' => $baseDir . '/vendor_prefixed/twig/twig/twig/src/Token.php',
'ElementorDeps\\Twig\\TokenParser\\AbstractTokenParser' => $baseDir . '/vendor_prefixed/twig/twig/twig/src/TokenParser/AbstractTokenParser.php',
'ElementorDeps\\Twig\\TokenParser\\ApplyTokenParser' => $baseDir . '/vendor_prefixed/twig/twig/twig/src/TokenParser/ApplyTokenParser.php',
'ElementorDeps\\Twig\\TokenParser\\AutoEscapeTokenParser' => $baseDir . '/vendor_prefixed/twig/twig/twig/src/TokenParser/AutoEscapeTokenParser.php',
'ElementorDeps\\Twig\\TokenParser\\BlockTokenParser' => $baseDir . '/vendor_prefixed/twig/twig/twig/src/TokenParser/BlockTokenParser.php',
'ElementorDeps\\Twig\\TokenParser\\DeprecatedTokenParser' => $baseDir . '/vendor_prefixed/twig/twig/twig/src/TokenParser/DeprecatedTokenParser.php',
'ElementorDeps\\Twig\\TokenParser\\DoTokenParser' => $baseDir . '/vendor_prefixed/twig/twig/twig/src/TokenParser/DoTokenParser.php',
'ElementorDeps\\Twig\\TokenParser\\EmbedTokenParser' => $baseDir . '/vendor_prefixed/twig/twig/twig/src/TokenParser/EmbedTokenParser.php',
'ElementorDeps\\Twig\\TokenParser\\ExtendsTokenParser' => $baseDir . '/vendor_prefixed/twig/twig/twig/src/TokenParser/ExtendsTokenParser.php',
'ElementorDeps\\Twig\\TokenParser\\FlushTokenParser' => $baseDir . '/vendor_prefixed/twig/twig/twig/src/TokenParser/FlushTokenParser.php',
'ElementorDeps\\Twig\\TokenParser\\ForTokenParser' => $baseDir . '/vendor_prefixed/twig/twig/twig/src/TokenParser/ForTokenParser.php',
'ElementorDeps\\Twig\\TokenParser\\FromTokenParser' => $baseDir . '/vendor_prefixed/twig/twig/twig/src/TokenParser/FromTokenParser.php',
'ElementorDeps\\Twig\\TokenParser\\IfTokenParser' => $baseDir . '/vendor_prefixed/twig/twig/twig/src/TokenParser/IfTokenParser.php',
'ElementorDeps\\Twig\\TokenParser\\ImportTokenParser' => $baseDir . '/vendor_prefixed/twig/twig/twig/src/TokenParser/ImportTokenParser.php',
'ElementorDeps\\Twig\\TokenParser\\IncludeTokenParser' => $baseDir . '/vendor_prefixed/twig/twig/twig/src/TokenParser/IncludeTokenParser.php',
'ElementorDeps\\Twig\\TokenParser\\MacroTokenParser' => $baseDir . '/vendor_prefixed/twig/twig/twig/src/TokenParser/MacroTokenParser.php',
'ElementorDeps\\Twig\\TokenParser\\SandboxTokenParser' => $baseDir . '/vendor_prefixed/twig/twig/twig/src/TokenParser/SandboxTokenParser.php',
'ElementorDeps\\Twig\\TokenParser\\SetTokenParser' => $baseDir . '/vendor_prefixed/twig/twig/twig/src/TokenParser/SetTokenParser.php',
'ElementorDeps\\Twig\\TokenParser\\TokenParserInterface' => $baseDir . '/vendor_prefixed/twig/twig/twig/src/TokenParser/TokenParserInterface.php',
'ElementorDeps\\Twig\\TokenParser\\UseTokenParser' => $baseDir . '/vendor_prefixed/twig/twig/twig/src/TokenParser/UseTokenParser.php',
'ElementorDeps\\Twig\\TokenParser\\WithTokenParser' => $baseDir . '/vendor_prefixed/twig/twig/twig/src/TokenParser/WithTokenParser.php',
'ElementorDeps\\Twig\\TokenStream' => $baseDir . '/vendor_prefixed/twig/twig/twig/src/TokenStream.php',
'ElementorDeps\\Twig\\TwigFilter' => $baseDir . '/vendor_prefixed/twig/twig/twig/src/TwigFilter.php',
'ElementorDeps\\Twig\\TwigFunction' => $baseDir . '/vendor_prefixed/twig/twig/twig/src/TwigFunction.php',
'ElementorDeps\\Twig\\TwigTest' => $baseDir . '/vendor_prefixed/twig/twig/twig/src/TwigTest.php',
'ElementorDeps\\Twig\\Util\\DeprecationCollector' => $baseDir . '/vendor_prefixed/twig/twig/twig/src/Util/DeprecationCollector.php',
'ElementorDeps\\Twig\\Util\\ReflectionCallable' => $baseDir . '/vendor_prefixed/twig/twig/twig/src/Util/ReflectionCallable.php',
'ElementorDeps\\Twig\\Util\\TemplateDirIterator' => $baseDir . '/vendor_prefixed/twig/twig/twig/src/Util/TemplateDirIterator.php',
'ElementorDeps\\UnhandledMatchError' => $baseDir . '/vendor_prefixed/twig/symfony/polyfill-php80/Resources/stubs/UnhandledMatchError.php',
'ElementorDeps\\ValueError' => $baseDir . '/vendor_prefixed/twig/symfony/polyfill-php80/Resources/stubs/ValueError.php',
);

View File

@@ -0,0 +1,10 @@
<?php
// autoload_files.php @generated by Composer
$vendorDir = dirname(__DIR__);
$baseDir = dirname($vendorDir);
return array(
'9db71c6726821ac61284818089584d23' => $vendorDir . '/elementor/wp-one-package/runner.php',
);

View File

@@ -0,0 +1,9 @@
<?php
// autoload_namespaces.php @generated by Composer
$vendorDir = dirname(__DIR__);
$baseDir = dirname($vendorDir);
return array(
);

View File

@@ -0,0 +1,10 @@
<?php
// autoload_psr4.php @generated by Composer
$vendorDir = dirname(__DIR__);
$baseDir = dirname($vendorDir);
return array(
'Elementor\\WPNotificationsPackage\\' => array($vendorDir . '/elementor/wp-notifications-package/src'),
);

View File

@@ -0,0 +1,50 @@
<?php
// autoload_real.php @generated by Composer
class ComposerAutoloaderInitca9c50e9b8bbb42851c91855da171fd2
{
private static $loader;
public static function loadClassLoader($class)
{
if ('Composer\Autoload\ClassLoader' === $class) {
require __DIR__ . '/ClassLoader.php';
}
}
/**
* @return \Composer\Autoload\ClassLoader
*/
public static function getLoader()
{
if (null !== self::$loader) {
return self::$loader;
}
require __DIR__ . '/platform_check.php';
spl_autoload_register(array('ComposerAutoloaderInitca9c50e9b8bbb42851c91855da171fd2', 'loadClassLoader'), true, true);
self::$loader = $loader = new \Composer\Autoload\ClassLoader(\dirname(__DIR__));
spl_autoload_unregister(array('ComposerAutoloaderInitca9c50e9b8bbb42851c91855da171fd2', 'loadClassLoader'));
require __DIR__ . '/autoload_static.php';
call_user_func(\Composer\Autoload\ComposerStaticInitca9c50e9b8bbb42851c91855da171fd2::getInitializer($loader));
$loader->register(true);
$filesToLoad = \Composer\Autoload\ComposerStaticInitca9c50e9b8bbb42851c91855da171fd2::$files;
$requireFile = \Closure::bind(static function ($fileIdentifier, $file) {
if (empty($GLOBALS['__composer_autoload_files'][$fileIdentifier])) {
$GLOBALS['__composer_autoload_files'][$fileIdentifier] = true;
require $file;
}
}, null, null);
foreach ($filesToLoad as $fileIdentifier => $file) {
$requireFile($fileIdentifier, $file);
}
return $loader;
}
}

View File

@@ -0,0 +1,239 @@
<?php
// autoload_static.php @generated by Composer
namespace Composer\Autoload;
class ComposerStaticInitca9c50e9b8bbb42851c91855da171fd2
{
public static $files = array (
'9db71c6726821ac61284818089584d23' => __DIR__ . '/..' . '/elementor/wp-one-package/runner.php',
);
public static $prefixLengthsPsr4 = array (
'E' =>
array (
'Elementor\\WPNotificationsPackage\\' => 33,
),
);
public static $prefixDirsPsr4 = array (
'Elementor\\WPNotificationsPackage\\' =>
array (
0 => __DIR__ . '/..' . '/elementor/wp-notifications-package/src',
),
);
public static $classMap = array (
'Composer\\InstalledVersions' => __DIR__ . '/..' . '/composer/InstalledVersions.php',
'ElementorDeps\\Attribute' => __DIR__ . '/../..' . '/vendor_prefixed/twig/symfony/polyfill-php80/Resources/stubs/Attribute.php',
'ElementorDeps\\CURLStringFile' => __DIR__ . '/../..' . '/vendor_prefixed/twig/symfony/polyfill-php81/Resources/stubs/CURLStringFile.php',
'ElementorDeps\\PhpToken' => __DIR__ . '/../..' . '/vendor_prefixed/twig/symfony/polyfill-php80/Resources/stubs/PhpToken.php',
'ElementorDeps\\ReturnTypeWillChange' => __DIR__ . '/../..' . '/vendor_prefixed/twig/symfony/polyfill-php81/Resources/stubs/ReturnTypeWillChange.php',
'ElementorDeps\\Stringable' => __DIR__ . '/../..' . '/vendor_prefixed/twig/symfony/polyfill-php80/Resources/stubs/Stringable.php',
'ElementorDeps\\Symfony\\Polyfill\\Ctype\\Ctype' => __DIR__ . '/../..' . '/vendor_prefixed/twig/symfony/polyfill-ctype/Ctype.php',
'ElementorDeps\\Symfony\\Polyfill\\Mbstring\\Mbstring' => __DIR__ . '/../..' . '/vendor_prefixed/twig/symfony/polyfill-mbstring/Mbstring.php',
'ElementorDeps\\Symfony\\Polyfill\\Php80\\Php80' => __DIR__ . '/../..' . '/vendor_prefixed/twig/symfony/polyfill-php80/Php80.php',
'ElementorDeps\\Symfony\\Polyfill\\Php80\\PhpToken' => __DIR__ . '/../..' . '/vendor_prefixed/twig/symfony/polyfill-php80/PhpToken.php',
'ElementorDeps\\Symfony\\Polyfill\\Php81\\Php81' => __DIR__ . '/../..' . '/vendor_prefixed/twig/symfony/polyfill-php81/Php81.php',
'ElementorDeps\\Twig\\Attribute\\YieldReady' => __DIR__ . '/../..' . '/vendor_prefixed/twig/twig/twig/src/Attribute/YieldReady.php',
'ElementorDeps\\Twig\\Cache\\CacheInterface' => __DIR__ . '/../..' . '/vendor_prefixed/twig/twig/twig/src/Cache/CacheInterface.php',
'ElementorDeps\\Twig\\Cache\\ChainCache' => __DIR__ . '/../..' . '/vendor_prefixed/twig/twig/twig/src/Cache/ChainCache.php',
'ElementorDeps\\Twig\\Cache\\FilesystemCache' => __DIR__ . '/../..' . '/vendor_prefixed/twig/twig/twig/src/Cache/FilesystemCache.php',
'ElementorDeps\\Twig\\Cache\\NullCache' => __DIR__ . '/../..' . '/vendor_prefixed/twig/twig/twig/src/Cache/NullCache.php',
'ElementorDeps\\Twig\\Cache\\ReadOnlyFilesystemCache' => __DIR__ . '/../..' . '/vendor_prefixed/twig/twig/twig/src/Cache/ReadOnlyFilesystemCache.php',
'ElementorDeps\\Twig\\Compiler' => __DIR__ . '/../..' . '/vendor_prefixed/twig/twig/twig/src/Compiler.php',
'ElementorDeps\\Twig\\Environment' => __DIR__ . '/../..' . '/vendor_prefixed/twig/twig/twig/src/Environment.php',
'ElementorDeps\\Twig\\Error\\Error' => __DIR__ . '/../..' . '/vendor_prefixed/twig/twig/twig/src/Error/Error.php',
'ElementorDeps\\Twig\\Error\\LoaderError' => __DIR__ . '/../..' . '/vendor_prefixed/twig/twig/twig/src/Error/LoaderError.php',
'ElementorDeps\\Twig\\Error\\RuntimeError' => __DIR__ . '/../..' . '/vendor_prefixed/twig/twig/twig/src/Error/RuntimeError.php',
'ElementorDeps\\Twig\\Error\\SyntaxError' => __DIR__ . '/../..' . '/vendor_prefixed/twig/twig/twig/src/Error/SyntaxError.php',
'ElementorDeps\\Twig\\ExpressionParser' => __DIR__ . '/../..' . '/vendor_prefixed/twig/twig/twig/src/ExpressionParser.php',
'ElementorDeps\\Twig\\ExtensionSet' => __DIR__ . '/../..' . '/vendor_prefixed/twig/twig/twig/src/ExtensionSet.php',
'ElementorDeps\\Twig\\Extension\\AbstractExtension' => __DIR__ . '/../..' . '/vendor_prefixed/twig/twig/twig/src/Extension/AbstractExtension.php',
'ElementorDeps\\Twig\\Extension\\CoreExtension' => __DIR__ . '/../..' . '/vendor_prefixed/twig/twig/twig/src/Extension/CoreExtension.php',
'ElementorDeps\\Twig\\Extension\\DebugExtension' => __DIR__ . '/../..' . '/vendor_prefixed/twig/twig/twig/src/Extension/DebugExtension.php',
'ElementorDeps\\Twig\\Extension\\EscaperExtension' => __DIR__ . '/../..' . '/vendor_prefixed/twig/twig/twig/src/Extension/EscaperExtension.php',
'ElementorDeps\\Twig\\Extension\\ExtensionInterface' => __DIR__ . '/../..' . '/vendor_prefixed/twig/twig/twig/src/Extension/ExtensionInterface.php',
'ElementorDeps\\Twig\\Extension\\GlobalsInterface' => __DIR__ . '/../..' . '/vendor_prefixed/twig/twig/twig/src/Extension/GlobalsInterface.php',
'ElementorDeps\\Twig\\Extension\\OptimizerExtension' => __DIR__ . '/../..' . '/vendor_prefixed/twig/twig/twig/src/Extension/OptimizerExtension.php',
'ElementorDeps\\Twig\\Extension\\ProfilerExtension' => __DIR__ . '/../..' . '/vendor_prefixed/twig/twig/twig/src/Extension/ProfilerExtension.php',
'ElementorDeps\\Twig\\Extension\\RuntimeExtensionInterface' => __DIR__ . '/../..' . '/vendor_prefixed/twig/twig/twig/src/Extension/RuntimeExtensionInterface.php',
'ElementorDeps\\Twig\\Extension\\SandboxExtension' => __DIR__ . '/../..' . '/vendor_prefixed/twig/twig/twig/src/Extension/SandboxExtension.php',
'ElementorDeps\\Twig\\Extension\\StagingExtension' => __DIR__ . '/../..' . '/vendor_prefixed/twig/twig/twig/src/Extension/StagingExtension.php',
'ElementorDeps\\Twig\\Extension\\StringLoaderExtension' => __DIR__ . '/../..' . '/vendor_prefixed/twig/twig/twig/src/Extension/StringLoaderExtension.php',
'ElementorDeps\\Twig\\Extension\\YieldNotReadyExtension' => __DIR__ . '/../..' . '/vendor_prefixed/twig/twig/twig/src/Extension/YieldNotReadyExtension.php',
'ElementorDeps\\Twig\\FileExtensionEscapingStrategy' => __DIR__ . '/../..' . '/vendor_prefixed/twig/twig/twig/src/FileExtensionEscapingStrategy.php',
'ElementorDeps\\Twig\\Lexer' => __DIR__ . '/../..' . '/vendor_prefixed/twig/twig/twig/src/Lexer.php',
'ElementorDeps\\Twig\\Loader\\ArrayLoader' => __DIR__ . '/../..' . '/vendor_prefixed/twig/twig/twig/src/Loader/ArrayLoader.php',
'ElementorDeps\\Twig\\Loader\\ChainLoader' => __DIR__ . '/../..' . '/vendor_prefixed/twig/twig/twig/src/Loader/ChainLoader.php',
'ElementorDeps\\Twig\\Loader\\FilesystemLoader' => __DIR__ . '/../..' . '/vendor_prefixed/twig/twig/twig/src/Loader/FilesystemLoader.php',
'ElementorDeps\\Twig\\Loader\\LoaderInterface' => __DIR__ . '/../..' . '/vendor_prefixed/twig/twig/twig/src/Loader/LoaderInterface.php',
'ElementorDeps\\Twig\\Markup' => __DIR__ . '/../..' . '/vendor_prefixed/twig/twig/twig/src/Markup.php',
'ElementorDeps\\Twig\\NodeTraverser' => __DIR__ . '/../..' . '/vendor_prefixed/twig/twig/twig/src/NodeTraverser.php',
'ElementorDeps\\Twig\\NodeVisitor\\AbstractNodeVisitor' => __DIR__ . '/../..' . '/vendor_prefixed/twig/twig/twig/src/NodeVisitor/AbstractNodeVisitor.php',
'ElementorDeps\\Twig\\NodeVisitor\\EscaperNodeVisitor' => __DIR__ . '/../..' . '/vendor_prefixed/twig/twig/twig/src/NodeVisitor/EscaperNodeVisitor.php',
'ElementorDeps\\Twig\\NodeVisitor\\MacroAutoImportNodeVisitor' => __DIR__ . '/../..' . '/vendor_prefixed/twig/twig/twig/src/NodeVisitor/MacroAutoImportNodeVisitor.php',
'ElementorDeps\\Twig\\NodeVisitor\\NodeVisitorInterface' => __DIR__ . '/../..' . '/vendor_prefixed/twig/twig/twig/src/NodeVisitor/NodeVisitorInterface.php',
'ElementorDeps\\Twig\\NodeVisitor\\OptimizerNodeVisitor' => __DIR__ . '/../..' . '/vendor_prefixed/twig/twig/twig/src/NodeVisitor/OptimizerNodeVisitor.php',
'ElementorDeps\\Twig\\NodeVisitor\\SafeAnalysisNodeVisitor' => __DIR__ . '/../..' . '/vendor_prefixed/twig/twig/twig/src/NodeVisitor/SafeAnalysisNodeVisitor.php',
'ElementorDeps\\Twig\\NodeVisitor\\SandboxNodeVisitor' => __DIR__ . '/../..' . '/vendor_prefixed/twig/twig/twig/src/NodeVisitor/SandboxNodeVisitor.php',
'ElementorDeps\\Twig\\NodeVisitor\\YieldNotReadyNodeVisitor' => __DIR__ . '/../..' . '/vendor_prefixed/twig/twig/twig/src/NodeVisitor/YieldNotReadyNodeVisitor.php',
'ElementorDeps\\Twig\\Node\\AutoEscapeNode' => __DIR__ . '/../..' . '/vendor_prefixed/twig/twig/twig/src/Node/AutoEscapeNode.php',
'ElementorDeps\\Twig\\Node\\BlockNode' => __DIR__ . '/../..' . '/vendor_prefixed/twig/twig/twig/src/Node/BlockNode.php',
'ElementorDeps\\Twig\\Node\\BlockReferenceNode' => __DIR__ . '/../..' . '/vendor_prefixed/twig/twig/twig/src/Node/BlockReferenceNode.php',
'ElementorDeps\\Twig\\Node\\BodyNode' => __DIR__ . '/../..' . '/vendor_prefixed/twig/twig/twig/src/Node/BodyNode.php',
'ElementorDeps\\Twig\\Node\\CaptureNode' => __DIR__ . '/../..' . '/vendor_prefixed/twig/twig/twig/src/Node/CaptureNode.php',
'ElementorDeps\\Twig\\Node\\CheckSecurityCallNode' => __DIR__ . '/../..' . '/vendor_prefixed/twig/twig/twig/src/Node/CheckSecurityCallNode.php',
'ElementorDeps\\Twig\\Node\\CheckSecurityNode' => __DIR__ . '/../..' . '/vendor_prefixed/twig/twig/twig/src/Node/CheckSecurityNode.php',
'ElementorDeps\\Twig\\Node\\CheckToStringNode' => __DIR__ . '/../..' . '/vendor_prefixed/twig/twig/twig/src/Node/CheckToStringNode.php',
'ElementorDeps\\Twig\\Node\\DeprecatedNode' => __DIR__ . '/../..' . '/vendor_prefixed/twig/twig/twig/src/Node/DeprecatedNode.php',
'ElementorDeps\\Twig\\Node\\DoNode' => __DIR__ . '/../..' . '/vendor_prefixed/twig/twig/twig/src/Node/DoNode.php',
'ElementorDeps\\Twig\\Node\\EmbedNode' => __DIR__ . '/../..' . '/vendor_prefixed/twig/twig/twig/src/Node/EmbedNode.php',
'ElementorDeps\\Twig\\Node\\Expression\\AbstractExpression' => __DIR__ . '/../..' . '/vendor_prefixed/twig/twig/twig/src/Node/Expression/AbstractExpression.php',
'ElementorDeps\\Twig\\Node\\Expression\\ArrayExpression' => __DIR__ . '/../..' . '/vendor_prefixed/twig/twig/twig/src/Node/Expression/ArrayExpression.php',
'ElementorDeps\\Twig\\Node\\Expression\\ArrowFunctionExpression' => __DIR__ . '/../..' . '/vendor_prefixed/twig/twig/twig/src/Node/Expression/ArrowFunctionExpression.php',
'ElementorDeps\\Twig\\Node\\Expression\\AssignNameExpression' => __DIR__ . '/../..' . '/vendor_prefixed/twig/twig/twig/src/Node/Expression/AssignNameExpression.php',
'ElementorDeps\\Twig\\Node\\Expression\\Binary\\AbstractBinary' => __DIR__ . '/../..' . '/vendor_prefixed/twig/twig/twig/src/Node/Expression/Binary/AbstractBinary.php',
'ElementorDeps\\Twig\\Node\\Expression\\Binary\\AddBinary' => __DIR__ . '/../..' . '/vendor_prefixed/twig/twig/twig/src/Node/Expression/Binary/AddBinary.php',
'ElementorDeps\\Twig\\Node\\Expression\\Binary\\AndBinary' => __DIR__ . '/../..' . '/vendor_prefixed/twig/twig/twig/src/Node/Expression/Binary/AndBinary.php',
'ElementorDeps\\Twig\\Node\\Expression\\Binary\\BitwiseAndBinary' => __DIR__ . '/../..' . '/vendor_prefixed/twig/twig/twig/src/Node/Expression/Binary/BitwiseAndBinary.php',
'ElementorDeps\\Twig\\Node\\Expression\\Binary\\BitwiseOrBinary' => __DIR__ . '/../..' . '/vendor_prefixed/twig/twig/twig/src/Node/Expression/Binary/BitwiseOrBinary.php',
'ElementorDeps\\Twig\\Node\\Expression\\Binary\\BitwiseXorBinary' => __DIR__ . '/../..' . '/vendor_prefixed/twig/twig/twig/src/Node/Expression/Binary/BitwiseXorBinary.php',
'ElementorDeps\\Twig\\Node\\Expression\\Binary\\ConcatBinary' => __DIR__ . '/../..' . '/vendor_prefixed/twig/twig/twig/src/Node/Expression/Binary/ConcatBinary.php',
'ElementorDeps\\Twig\\Node\\Expression\\Binary\\DivBinary' => __DIR__ . '/../..' . '/vendor_prefixed/twig/twig/twig/src/Node/Expression/Binary/DivBinary.php',
'ElementorDeps\\Twig\\Node\\Expression\\Binary\\EndsWithBinary' => __DIR__ . '/../..' . '/vendor_prefixed/twig/twig/twig/src/Node/Expression/Binary/EndsWithBinary.php',
'ElementorDeps\\Twig\\Node\\Expression\\Binary\\EqualBinary' => __DIR__ . '/../..' . '/vendor_prefixed/twig/twig/twig/src/Node/Expression/Binary/EqualBinary.php',
'ElementorDeps\\Twig\\Node\\Expression\\Binary\\FloorDivBinary' => __DIR__ . '/../..' . '/vendor_prefixed/twig/twig/twig/src/Node/Expression/Binary/FloorDivBinary.php',
'ElementorDeps\\Twig\\Node\\Expression\\Binary\\GreaterBinary' => __DIR__ . '/../..' . '/vendor_prefixed/twig/twig/twig/src/Node/Expression/Binary/GreaterBinary.php',
'ElementorDeps\\Twig\\Node\\Expression\\Binary\\GreaterEqualBinary' => __DIR__ . '/../..' . '/vendor_prefixed/twig/twig/twig/src/Node/Expression/Binary/GreaterEqualBinary.php',
'ElementorDeps\\Twig\\Node\\Expression\\Binary\\HasEveryBinary' => __DIR__ . '/../..' . '/vendor_prefixed/twig/twig/twig/src/Node/Expression/Binary/HasEveryBinary.php',
'ElementorDeps\\Twig\\Node\\Expression\\Binary\\HasSomeBinary' => __DIR__ . '/../..' . '/vendor_prefixed/twig/twig/twig/src/Node/Expression/Binary/HasSomeBinary.php',
'ElementorDeps\\Twig\\Node\\Expression\\Binary\\InBinary' => __DIR__ . '/../..' . '/vendor_prefixed/twig/twig/twig/src/Node/Expression/Binary/InBinary.php',
'ElementorDeps\\Twig\\Node\\Expression\\Binary\\LessBinary' => __DIR__ . '/../..' . '/vendor_prefixed/twig/twig/twig/src/Node/Expression/Binary/LessBinary.php',
'ElementorDeps\\Twig\\Node\\Expression\\Binary\\LessEqualBinary' => __DIR__ . '/../..' . '/vendor_prefixed/twig/twig/twig/src/Node/Expression/Binary/LessEqualBinary.php',
'ElementorDeps\\Twig\\Node\\Expression\\Binary\\MatchesBinary' => __DIR__ . '/../..' . '/vendor_prefixed/twig/twig/twig/src/Node/Expression/Binary/MatchesBinary.php',
'ElementorDeps\\Twig\\Node\\Expression\\Binary\\ModBinary' => __DIR__ . '/../..' . '/vendor_prefixed/twig/twig/twig/src/Node/Expression/Binary/ModBinary.php',
'ElementorDeps\\Twig\\Node\\Expression\\Binary\\MulBinary' => __DIR__ . '/../..' . '/vendor_prefixed/twig/twig/twig/src/Node/Expression/Binary/MulBinary.php',
'ElementorDeps\\Twig\\Node\\Expression\\Binary\\NotEqualBinary' => __DIR__ . '/../..' . '/vendor_prefixed/twig/twig/twig/src/Node/Expression/Binary/NotEqualBinary.php',
'ElementorDeps\\Twig\\Node\\Expression\\Binary\\NotInBinary' => __DIR__ . '/../..' . '/vendor_prefixed/twig/twig/twig/src/Node/Expression/Binary/NotInBinary.php',
'ElementorDeps\\Twig\\Node\\Expression\\Binary\\OrBinary' => __DIR__ . '/../..' . '/vendor_prefixed/twig/twig/twig/src/Node/Expression/Binary/OrBinary.php',
'ElementorDeps\\Twig\\Node\\Expression\\Binary\\PowerBinary' => __DIR__ . '/../..' . '/vendor_prefixed/twig/twig/twig/src/Node/Expression/Binary/PowerBinary.php',
'ElementorDeps\\Twig\\Node\\Expression\\Binary\\RangeBinary' => __DIR__ . '/../..' . '/vendor_prefixed/twig/twig/twig/src/Node/Expression/Binary/RangeBinary.php',
'ElementorDeps\\Twig\\Node\\Expression\\Binary\\SpaceshipBinary' => __DIR__ . '/../..' . '/vendor_prefixed/twig/twig/twig/src/Node/Expression/Binary/SpaceshipBinary.php',
'ElementorDeps\\Twig\\Node\\Expression\\Binary\\StartsWithBinary' => __DIR__ . '/../..' . '/vendor_prefixed/twig/twig/twig/src/Node/Expression/Binary/StartsWithBinary.php',
'ElementorDeps\\Twig\\Node\\Expression\\Binary\\SubBinary' => __DIR__ . '/../..' . '/vendor_prefixed/twig/twig/twig/src/Node/Expression/Binary/SubBinary.php',
'ElementorDeps\\Twig\\Node\\Expression\\BlockReferenceExpression' => __DIR__ . '/../..' . '/vendor_prefixed/twig/twig/twig/src/Node/Expression/BlockReferenceExpression.php',
'ElementorDeps\\Twig\\Node\\Expression\\CallExpression' => __DIR__ . '/../..' . '/vendor_prefixed/twig/twig/twig/src/Node/Expression/CallExpression.php',
'ElementorDeps\\Twig\\Node\\Expression\\ConditionalExpression' => __DIR__ . '/../..' . '/vendor_prefixed/twig/twig/twig/src/Node/Expression/ConditionalExpression.php',
'ElementorDeps\\Twig\\Node\\Expression\\ConstantExpression' => __DIR__ . '/../..' . '/vendor_prefixed/twig/twig/twig/src/Node/Expression/ConstantExpression.php',
'ElementorDeps\\Twig\\Node\\Expression\\FilterExpression' => __DIR__ . '/../..' . '/vendor_prefixed/twig/twig/twig/src/Node/Expression/FilterExpression.php',
'ElementorDeps\\Twig\\Node\\Expression\\Filter\\DefaultFilter' => __DIR__ . '/../..' . '/vendor_prefixed/twig/twig/twig/src/Node/Expression/Filter/DefaultFilter.php',
'ElementorDeps\\Twig\\Node\\Expression\\Filter\\RawFilter' => __DIR__ . '/../..' . '/vendor_prefixed/twig/twig/twig/src/Node/Expression/Filter/RawFilter.php',
'ElementorDeps\\Twig\\Node\\Expression\\FunctionExpression' => __DIR__ . '/../..' . '/vendor_prefixed/twig/twig/twig/src/Node/Expression/FunctionExpression.php',
'ElementorDeps\\Twig\\Node\\Expression\\GetAttrExpression' => __DIR__ . '/../..' . '/vendor_prefixed/twig/twig/twig/src/Node/Expression/GetAttrExpression.php',
'ElementorDeps\\Twig\\Node\\Expression\\InlinePrint' => __DIR__ . '/../..' . '/vendor_prefixed/twig/twig/twig/src/Node/Expression/InlinePrint.php',
'ElementorDeps\\Twig\\Node\\Expression\\MethodCallExpression' => __DIR__ . '/../..' . '/vendor_prefixed/twig/twig/twig/src/Node/Expression/MethodCallExpression.php',
'ElementorDeps\\Twig\\Node\\Expression\\NameExpression' => __DIR__ . '/../..' . '/vendor_prefixed/twig/twig/twig/src/Node/Expression/NameExpression.php',
'ElementorDeps\\Twig\\Node\\Expression\\NullCoalesceExpression' => __DIR__ . '/../..' . '/vendor_prefixed/twig/twig/twig/src/Node/Expression/NullCoalesceExpression.php',
'ElementorDeps\\Twig\\Node\\Expression\\ParentExpression' => __DIR__ . '/../..' . '/vendor_prefixed/twig/twig/twig/src/Node/Expression/ParentExpression.php',
'ElementorDeps\\Twig\\Node\\Expression\\TempNameExpression' => __DIR__ . '/../..' . '/vendor_prefixed/twig/twig/twig/src/Node/Expression/TempNameExpression.php',
'ElementorDeps\\Twig\\Node\\Expression\\TestExpression' => __DIR__ . '/../..' . '/vendor_prefixed/twig/twig/twig/src/Node/Expression/TestExpression.php',
'ElementorDeps\\Twig\\Node\\Expression\\Test\\ConstantTest' => __DIR__ . '/../..' . '/vendor_prefixed/twig/twig/twig/src/Node/Expression/Test/ConstantTest.php',
'ElementorDeps\\Twig\\Node\\Expression\\Test\\DefinedTest' => __DIR__ . '/../..' . '/vendor_prefixed/twig/twig/twig/src/Node/Expression/Test/DefinedTest.php',
'ElementorDeps\\Twig\\Node\\Expression\\Test\\DivisiblebyTest' => __DIR__ . '/../..' . '/vendor_prefixed/twig/twig/twig/src/Node/Expression/Test/DivisiblebyTest.php',
'ElementorDeps\\Twig\\Node\\Expression\\Test\\EvenTest' => __DIR__ . '/../..' . '/vendor_prefixed/twig/twig/twig/src/Node/Expression/Test/EvenTest.php',
'ElementorDeps\\Twig\\Node\\Expression\\Test\\NullTest' => __DIR__ . '/../..' . '/vendor_prefixed/twig/twig/twig/src/Node/Expression/Test/NullTest.php',
'ElementorDeps\\Twig\\Node\\Expression\\Test\\OddTest' => __DIR__ . '/../..' . '/vendor_prefixed/twig/twig/twig/src/Node/Expression/Test/OddTest.php',
'ElementorDeps\\Twig\\Node\\Expression\\Test\\SameasTest' => __DIR__ . '/../..' . '/vendor_prefixed/twig/twig/twig/src/Node/Expression/Test/SameasTest.php',
'ElementorDeps\\Twig\\Node\\Expression\\Unary\\AbstractUnary' => __DIR__ . '/../..' . '/vendor_prefixed/twig/twig/twig/src/Node/Expression/Unary/AbstractUnary.php',
'ElementorDeps\\Twig\\Node\\Expression\\Unary\\NegUnary' => __DIR__ . '/../..' . '/vendor_prefixed/twig/twig/twig/src/Node/Expression/Unary/NegUnary.php',
'ElementorDeps\\Twig\\Node\\Expression\\Unary\\NotUnary' => __DIR__ . '/../..' . '/vendor_prefixed/twig/twig/twig/src/Node/Expression/Unary/NotUnary.php',
'ElementorDeps\\Twig\\Node\\Expression\\Unary\\PosUnary' => __DIR__ . '/../..' . '/vendor_prefixed/twig/twig/twig/src/Node/Expression/Unary/PosUnary.php',
'ElementorDeps\\Twig\\Node\\Expression\\VariadicExpression' => __DIR__ . '/../..' . '/vendor_prefixed/twig/twig/twig/src/Node/Expression/VariadicExpression.php',
'ElementorDeps\\Twig\\Node\\FlushNode' => __DIR__ . '/../..' . '/vendor_prefixed/twig/twig/twig/src/Node/FlushNode.php',
'ElementorDeps\\Twig\\Node\\ForLoopNode' => __DIR__ . '/../..' . '/vendor_prefixed/twig/twig/twig/src/Node/ForLoopNode.php',
'ElementorDeps\\Twig\\Node\\ForNode' => __DIR__ . '/../..' . '/vendor_prefixed/twig/twig/twig/src/Node/ForNode.php',
'ElementorDeps\\Twig\\Node\\IfNode' => __DIR__ . '/../..' . '/vendor_prefixed/twig/twig/twig/src/Node/IfNode.php',
'ElementorDeps\\Twig\\Node\\ImportNode' => __DIR__ . '/../..' . '/vendor_prefixed/twig/twig/twig/src/Node/ImportNode.php',
'ElementorDeps\\Twig\\Node\\IncludeNode' => __DIR__ . '/../..' . '/vendor_prefixed/twig/twig/twig/src/Node/IncludeNode.php',
'ElementorDeps\\Twig\\Node\\MacroNode' => __DIR__ . '/../..' . '/vendor_prefixed/twig/twig/twig/src/Node/MacroNode.php',
'ElementorDeps\\Twig\\Node\\ModuleNode' => __DIR__ . '/../..' . '/vendor_prefixed/twig/twig/twig/src/Node/ModuleNode.php',
'ElementorDeps\\Twig\\Node\\NameDeprecation' => __DIR__ . '/../..' . '/vendor_prefixed/twig/twig/twig/src/Node/NameDeprecation.php',
'ElementorDeps\\Twig\\Node\\Node' => __DIR__ . '/../..' . '/vendor_prefixed/twig/twig/twig/src/Node/Node.php',
'ElementorDeps\\Twig\\Node\\NodeCaptureInterface' => __DIR__ . '/../..' . '/vendor_prefixed/twig/twig/twig/src/Node/NodeCaptureInterface.php',
'ElementorDeps\\Twig\\Node\\NodeOutputInterface' => __DIR__ . '/../..' . '/vendor_prefixed/twig/twig/twig/src/Node/NodeOutputInterface.php',
'ElementorDeps\\Twig\\Node\\PrintNode' => __DIR__ . '/../..' . '/vendor_prefixed/twig/twig/twig/src/Node/PrintNode.php',
'ElementorDeps\\Twig\\Node\\SandboxNode' => __DIR__ . '/../..' . '/vendor_prefixed/twig/twig/twig/src/Node/SandboxNode.php',
'ElementorDeps\\Twig\\Node\\SetNode' => __DIR__ . '/../..' . '/vendor_prefixed/twig/twig/twig/src/Node/SetNode.php',
'ElementorDeps\\Twig\\Node\\TextNode' => __DIR__ . '/../..' . '/vendor_prefixed/twig/twig/twig/src/Node/TextNode.php',
'ElementorDeps\\Twig\\Node\\WithNode' => __DIR__ . '/../..' . '/vendor_prefixed/twig/twig/twig/src/Node/WithNode.php',
'ElementorDeps\\Twig\\Parser' => __DIR__ . '/../..' . '/vendor_prefixed/twig/twig/twig/src/Parser.php',
'ElementorDeps\\Twig\\Profiler\\Dumper\\BaseDumper' => __DIR__ . '/../..' . '/vendor_prefixed/twig/twig/twig/src/Profiler/Dumper/BaseDumper.php',
'ElementorDeps\\Twig\\Profiler\\Dumper\\BlackfireDumper' => __DIR__ . '/../..' . '/vendor_prefixed/twig/twig/twig/src/Profiler/Dumper/BlackfireDumper.php',
'ElementorDeps\\Twig\\Profiler\\Dumper\\HtmlDumper' => __DIR__ . '/../..' . '/vendor_prefixed/twig/twig/twig/src/Profiler/Dumper/HtmlDumper.php',
'ElementorDeps\\Twig\\Profiler\\Dumper\\TextDumper' => __DIR__ . '/../..' . '/vendor_prefixed/twig/twig/twig/src/Profiler/Dumper/TextDumper.php',
'ElementorDeps\\Twig\\Profiler\\NodeVisitor\\ProfilerNodeVisitor' => __DIR__ . '/../..' . '/vendor_prefixed/twig/twig/twig/src/Profiler/NodeVisitor/ProfilerNodeVisitor.php',
'ElementorDeps\\Twig\\Profiler\\Node\\EnterProfileNode' => __DIR__ . '/../..' . '/vendor_prefixed/twig/twig/twig/src/Profiler/Node/EnterProfileNode.php',
'ElementorDeps\\Twig\\Profiler\\Node\\LeaveProfileNode' => __DIR__ . '/../..' . '/vendor_prefixed/twig/twig/twig/src/Profiler/Node/LeaveProfileNode.php',
'ElementorDeps\\Twig\\Profiler\\Profile' => __DIR__ . '/../..' . '/vendor_prefixed/twig/twig/twig/src/Profiler/Profile.php',
'ElementorDeps\\Twig\\RuntimeLoader\\ContainerRuntimeLoader' => __DIR__ . '/../..' . '/vendor_prefixed/twig/twig/twig/src/RuntimeLoader/ContainerRuntimeLoader.php',
'ElementorDeps\\Twig\\RuntimeLoader\\FactoryRuntimeLoader' => __DIR__ . '/../..' . '/vendor_prefixed/twig/twig/twig/src/RuntimeLoader/FactoryRuntimeLoader.php',
'ElementorDeps\\Twig\\RuntimeLoader\\RuntimeLoaderInterface' => __DIR__ . '/../..' . '/vendor_prefixed/twig/twig/twig/src/RuntimeLoader/RuntimeLoaderInterface.php',
'ElementorDeps\\Twig\\Runtime\\EscaperRuntime' => __DIR__ . '/../..' . '/vendor_prefixed/twig/twig/twig/src/Runtime/EscaperRuntime.php',
'ElementorDeps\\Twig\\Sandbox\\SecurityError' => __DIR__ . '/../..' . '/vendor_prefixed/twig/twig/twig/src/Sandbox/SecurityError.php',
'ElementorDeps\\Twig\\Sandbox\\SecurityNotAllowedFilterError' => __DIR__ . '/../..' . '/vendor_prefixed/twig/twig/twig/src/Sandbox/SecurityNotAllowedFilterError.php',
'ElementorDeps\\Twig\\Sandbox\\SecurityNotAllowedFunctionError' => __DIR__ . '/../..' . '/vendor_prefixed/twig/twig/twig/src/Sandbox/SecurityNotAllowedFunctionError.php',
'ElementorDeps\\Twig\\Sandbox\\SecurityNotAllowedMethodError' => __DIR__ . '/../..' . '/vendor_prefixed/twig/twig/twig/src/Sandbox/SecurityNotAllowedMethodError.php',
'ElementorDeps\\Twig\\Sandbox\\SecurityNotAllowedPropertyError' => __DIR__ . '/../..' . '/vendor_prefixed/twig/twig/twig/src/Sandbox/SecurityNotAllowedPropertyError.php',
'ElementorDeps\\Twig\\Sandbox\\SecurityNotAllowedTagError' => __DIR__ . '/../..' . '/vendor_prefixed/twig/twig/twig/src/Sandbox/SecurityNotAllowedTagError.php',
'ElementorDeps\\Twig\\Sandbox\\SecurityPolicy' => __DIR__ . '/../..' . '/vendor_prefixed/twig/twig/twig/src/Sandbox/SecurityPolicy.php',
'ElementorDeps\\Twig\\Sandbox\\SecurityPolicyInterface' => __DIR__ . '/../..' . '/vendor_prefixed/twig/twig/twig/src/Sandbox/SecurityPolicyInterface.php',
'ElementorDeps\\Twig\\Sandbox\\SourcePolicyInterface' => __DIR__ . '/../..' . '/vendor_prefixed/twig/twig/twig/src/Sandbox/SourcePolicyInterface.php',
'ElementorDeps\\Twig\\Source' => __DIR__ . '/../..' . '/vendor_prefixed/twig/twig/twig/src/Source.php',
'ElementorDeps\\Twig\\Template' => __DIR__ . '/../..' . '/vendor_prefixed/twig/twig/twig/src/Template.php',
'ElementorDeps\\Twig\\TemplateWrapper' => __DIR__ . '/../..' . '/vendor_prefixed/twig/twig/twig/src/TemplateWrapper.php',
'ElementorDeps\\Twig\\Test\\IntegrationTestCase' => __DIR__ . '/../..' . '/vendor_prefixed/twig/twig/twig/src/Test/IntegrationTestCase.php',
'ElementorDeps\\Twig\\Test\\NodeTestCase' => __DIR__ . '/../..' . '/vendor_prefixed/twig/twig/twig/src/Test/NodeTestCase.php',
'ElementorDeps\\Twig\\Token' => __DIR__ . '/../..' . '/vendor_prefixed/twig/twig/twig/src/Token.php',
'ElementorDeps\\Twig\\TokenParser\\AbstractTokenParser' => __DIR__ . '/../..' . '/vendor_prefixed/twig/twig/twig/src/TokenParser/AbstractTokenParser.php',
'ElementorDeps\\Twig\\TokenParser\\ApplyTokenParser' => __DIR__ . '/../..' . '/vendor_prefixed/twig/twig/twig/src/TokenParser/ApplyTokenParser.php',
'ElementorDeps\\Twig\\TokenParser\\AutoEscapeTokenParser' => __DIR__ . '/../..' . '/vendor_prefixed/twig/twig/twig/src/TokenParser/AutoEscapeTokenParser.php',
'ElementorDeps\\Twig\\TokenParser\\BlockTokenParser' => __DIR__ . '/../..' . '/vendor_prefixed/twig/twig/twig/src/TokenParser/BlockTokenParser.php',
'ElementorDeps\\Twig\\TokenParser\\DeprecatedTokenParser' => __DIR__ . '/../..' . '/vendor_prefixed/twig/twig/twig/src/TokenParser/DeprecatedTokenParser.php',
'ElementorDeps\\Twig\\TokenParser\\DoTokenParser' => __DIR__ . '/../..' . '/vendor_prefixed/twig/twig/twig/src/TokenParser/DoTokenParser.php',
'ElementorDeps\\Twig\\TokenParser\\EmbedTokenParser' => __DIR__ . '/../..' . '/vendor_prefixed/twig/twig/twig/src/TokenParser/EmbedTokenParser.php',
'ElementorDeps\\Twig\\TokenParser\\ExtendsTokenParser' => __DIR__ . '/../..' . '/vendor_prefixed/twig/twig/twig/src/TokenParser/ExtendsTokenParser.php',
'ElementorDeps\\Twig\\TokenParser\\FlushTokenParser' => __DIR__ . '/../..' . '/vendor_prefixed/twig/twig/twig/src/TokenParser/FlushTokenParser.php',
'ElementorDeps\\Twig\\TokenParser\\ForTokenParser' => __DIR__ . '/../..' . '/vendor_prefixed/twig/twig/twig/src/TokenParser/ForTokenParser.php',
'ElementorDeps\\Twig\\TokenParser\\FromTokenParser' => __DIR__ . '/../..' . '/vendor_prefixed/twig/twig/twig/src/TokenParser/FromTokenParser.php',
'ElementorDeps\\Twig\\TokenParser\\IfTokenParser' => __DIR__ . '/../..' . '/vendor_prefixed/twig/twig/twig/src/TokenParser/IfTokenParser.php',
'ElementorDeps\\Twig\\TokenParser\\ImportTokenParser' => __DIR__ . '/../..' . '/vendor_prefixed/twig/twig/twig/src/TokenParser/ImportTokenParser.php',
'ElementorDeps\\Twig\\TokenParser\\IncludeTokenParser' => __DIR__ . '/../..' . '/vendor_prefixed/twig/twig/twig/src/TokenParser/IncludeTokenParser.php',
'ElementorDeps\\Twig\\TokenParser\\MacroTokenParser' => __DIR__ . '/../..' . '/vendor_prefixed/twig/twig/twig/src/TokenParser/MacroTokenParser.php',
'ElementorDeps\\Twig\\TokenParser\\SandboxTokenParser' => __DIR__ . '/../..' . '/vendor_prefixed/twig/twig/twig/src/TokenParser/SandboxTokenParser.php',
'ElementorDeps\\Twig\\TokenParser\\SetTokenParser' => __DIR__ . '/../..' . '/vendor_prefixed/twig/twig/twig/src/TokenParser/SetTokenParser.php',
'ElementorDeps\\Twig\\TokenParser\\TokenParserInterface' => __DIR__ . '/../..' . '/vendor_prefixed/twig/twig/twig/src/TokenParser/TokenParserInterface.php',
'ElementorDeps\\Twig\\TokenParser\\UseTokenParser' => __DIR__ . '/../..' . '/vendor_prefixed/twig/twig/twig/src/TokenParser/UseTokenParser.php',
'ElementorDeps\\Twig\\TokenParser\\WithTokenParser' => __DIR__ . '/../..' . '/vendor_prefixed/twig/twig/twig/src/TokenParser/WithTokenParser.php',
'ElementorDeps\\Twig\\TokenStream' => __DIR__ . '/../..' . '/vendor_prefixed/twig/twig/twig/src/TokenStream.php',
'ElementorDeps\\Twig\\TwigFilter' => __DIR__ . '/../..' . '/vendor_prefixed/twig/twig/twig/src/TwigFilter.php',
'ElementorDeps\\Twig\\TwigFunction' => __DIR__ . '/../..' . '/vendor_prefixed/twig/twig/twig/src/TwigFunction.php',
'ElementorDeps\\Twig\\TwigTest' => __DIR__ . '/../..' . '/vendor_prefixed/twig/twig/twig/src/TwigTest.php',
'ElementorDeps\\Twig\\Util\\DeprecationCollector' => __DIR__ . '/../..' . '/vendor_prefixed/twig/twig/twig/src/Util/DeprecationCollector.php',
'ElementorDeps\\Twig\\Util\\ReflectionCallable' => __DIR__ . '/../..' . '/vendor_prefixed/twig/twig/twig/src/Util/ReflectionCallable.php',
'ElementorDeps\\Twig\\Util\\TemplateDirIterator' => __DIR__ . '/../..' . '/vendor_prefixed/twig/twig/twig/src/Util/TemplateDirIterator.php',
'ElementorDeps\\UnhandledMatchError' => __DIR__ . '/../..' . '/vendor_prefixed/twig/symfony/polyfill-php80/Resources/stubs/UnhandledMatchError.php',
'ElementorDeps\\ValueError' => __DIR__ . '/../..' . '/vendor_prefixed/twig/symfony/polyfill-php80/Resources/stubs/ValueError.php',
);
public static function getInitializer(ClassLoader $loader)
{
return \Closure::bind(function () use ($loader) {
$loader->prefixLengthsPsr4 = ComposerStaticInitca9c50e9b8bbb42851c91855da171fd2::$prefixLengthsPsr4;
$loader->prefixDirsPsr4 = ComposerStaticInitca9c50e9b8bbb42851c91855da171fd2::$prefixDirsPsr4;
$loader->classMap = ComposerStaticInitca9c50e9b8bbb42851c91855da171fd2::$classMap;
}, null, ClassLoader::class);
}
}

View File

@@ -0,0 +1,77 @@
{
"packages": [
{
"name": "elementor/wp-notifications-package",
"version": "1.2.0",
"version_normalized": "1.2.0.0",
"source": {
"type": "git",
"url": "https://github.com/elementor/wp-notifications-package.git",
"reference": "dd25ca9dd79402c3bb51fab112aa079702eb165e"
},
"dist": {
"type": "zip",
"url": "https://api.github.com/repos/elementor/wp-notifications-package/zipball/dd25ca9dd79402c3bb51fab112aa079702eb165e",
"reference": "dd25ca9dd79402c3bb51fab112aa079702eb165e",
"shasum": ""
},
"require-dev": {
"dealerdirect/phpcodesniffer-composer-installer": "^v1.0.0",
"squizlabs/php_codesniffer": "^3.10.2",
"wp-coding-standards/wpcs": "^3.1.0"
},
"time": "2025-04-28T12:27:21+00:00",
"type": "library",
"installation-source": "dist",
"autoload": {
"psr-4": {
"Elementor\\WPNotificationsPackage\\": "src/"
}
},
"notification-url": "https://packagist.org/downloads/",
"support": {
"source": "https://github.com/elementor/wp-notifications-package/tree/1.2.0"
},
"install-path": "../elementor/wp-notifications-package"
},
{
"name": "elementor/wp-one-package",
"version": "1.0.62",
"version_normalized": "1.0.62.0",
"dist": {
"type": "zip",
"url": "https://composer.elementor.com/download/elementor/wp-one-package/1.0.62"
},
"require": {
"elementor/wp-notifications-package": "^1.2"
},
"require-dev": {
"dealerdirect/phpcodesniffer-composer-installer": "^v1.0.0",
"johnpbloch/wordpress-core": "^6.0",
"phpunit/phpunit": "^9.0",
"squizlabs/php_codesniffer": "^3.10.2",
"wp-coding-standards/wpcs": "^3.1.0",
"yoast/phpunit-polyfills": "^2.0"
},
"time": "2026-05-11T10:53:25+00:00",
"type": "library",
"installation-source": "dist",
"autoload": {
"files": [
"./runner.php"
]
},
"scripts": {
"lint": [
"vendor/bin/phpcs --standard=./phpcs.xml ./src/"
],
"lint:fix": [
"vendor/bin/phpcbf ."
]
},
"install-path": "../elementor/wp-one-package"
}
],
"dev": false,
"dev-package-names": []
}

View File

@@ -0,0 +1,41 @@
<?php return array(
'root' => array(
'name' => 'elementor/elementor',
'pretty_version' => '4.00.x-dev',
'version' => '4.00.9999999.9999999-dev',
'reference' => '00258303329141ecfdb7c614549abd5b4d06b067',
'type' => 'project',
'install_path' => __DIR__ . '/../../',
'aliases' => array(),
'dev' => false,
),
'versions' => array(
'elementor/elementor' => array(
'pretty_version' => '4.00.x-dev',
'version' => '4.00.9999999.9999999-dev',
'reference' => '00258303329141ecfdb7c614549abd5b4d06b067',
'type' => 'project',
'install_path' => __DIR__ . '/../../',
'aliases' => array(),
'dev_requirement' => false,
),
'elementor/wp-notifications-package' => array(
'pretty_version' => '1.2.0',
'version' => '1.2.0.0',
'reference' => 'dd25ca9dd79402c3bb51fab112aa079702eb165e',
'type' => 'library',
'install_path' => __DIR__ . '/../elementor/wp-notifications-package',
'aliases' => array(),
'dev_requirement' => false,
),
'elementor/wp-one-package' => array(
'pretty_version' => '1.0.62',
'version' => '1.0.62.0',
'reference' => null,
'type' => 'library',
'install_path' => __DIR__ . '/../elementor/wp-one-package',
'aliases' => array(),
'dev_requirement' => false,
),
),
);

View File

@@ -0,0 +1,25 @@
<?php
// platform_check.php @generated by Composer
$issues = array();
if (!(PHP_VERSION_ID >= 70400)) {
$issues[] = 'Your Composer dependencies require a PHP version ">= 7.4.0". You are running ' . PHP_VERSION . '.';
}
if ($issues) {
if (!headers_sent()) {
header('HTTP/1.1 500 Internal Server Error');
}
if (!ini_get('display_errors')) {
if (PHP_SAPI === 'cli' || PHP_SAPI === 'phpdbg') {
fwrite(STDERR, 'Composer detected issues in your platform:' . PHP_EOL.PHP_EOL . implode(PHP_EOL, $issues) . PHP_EOL.PHP_EOL);
} elseif (!headers_sent()) {
echo 'Composer detected issues in your platform:' . PHP_EOL.PHP_EOL . str_replace('You are running '.PHP_VERSION.'.', '', implode(PHP_EOL, $issues)) . PHP_EOL.PHP_EOL;
}
}
throw new \RuntimeException(
'Composer detected issues in your platform: ' . implode(' ', $issues)
);
}

View File

@@ -0,0 +1,8 @@
# Elementor Empty Template
This Boilerplate is simple starting point for creating repository from scratch within elementor organization.
The repo includes InitRepo action that will be triggered automatically after repo created from this template and will configure:
- repository protected branch settings
- pull requests labels
- Create first initial release

View File

@@ -0,0 +1,23 @@
{
"name": "elementor/wp-notifications-package",
"version": "1.2.0",
"require-dev": {
"squizlabs/php_codesniffer": "^3.10.2",
"dealerdirect/phpcodesniffer-composer-installer": "^v1.0.0",
"wp-coding-standards/wpcs": "^3.1.0"
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
}
},
"scripts": {
"lint": "vendor/bin/phpcs --standard=./phpcs.xml .",
"lint:fix": "vendor/bin/phpcbf ."
},
"autoload": {
"psr-4": {
"Elementor\\WPNotificationsPackage\\": "src/"
}
}
}

View File

@@ -0,0 +1,409 @@
{
"_readme": [
"This file locks the dependencies of your project to a known state",
"Read more about it at https://getcomposer.org/doc/01-basic-usage.md#installing-dependencies",
"This file is @generated automatically"
],
"content-hash": "284616c4c768b873fd9efc8b16c18d73",
"packages": [],
"packages-dev": [
{
"name": "dealerdirect/phpcodesniffer-composer-installer",
"version": "v1.0.0",
"source": {
"type": "git",
"url": "https://github.com/PHPCSStandards/composer-installer.git",
"reference": "4be43904336affa5c2f70744a348312336afd0da"
},
"dist": {
"type": "zip",
"url": "https://api.github.com/repos/PHPCSStandards/composer-installer/zipball/4be43904336affa5c2f70744a348312336afd0da",
"reference": "4be43904336affa5c2f70744a348312336afd0da",
"shasum": ""
},
"require": {
"composer-plugin-api": "^1.0 || ^2.0",
"php": ">=5.4",
"squizlabs/php_codesniffer": "^2.0 || ^3.1.0 || ^4.0"
},
"require-dev": {
"composer/composer": "*",
"ext-json": "*",
"ext-zip": "*",
"php-parallel-lint/php-parallel-lint": "^1.3.1",
"phpcompatibility/php-compatibility": "^9.0",
"yoast/phpunit-polyfills": "^1.0"
},
"type": "composer-plugin",
"extra": {
"class": "PHPCSStandards\\Composer\\Plugin\\Installers\\PHPCodeSniffer\\Plugin"
},
"autoload": {
"psr-4": {
"PHPCSStandards\\Composer\\Plugin\\Installers\\PHPCodeSniffer\\": "src/"
}
},
"notification-url": "https://packagist.org/downloads/",
"license": [
"MIT"
],
"authors": [
{
"name": "Franck Nijhof",
"email": "franck.nijhof@dealerdirect.com",
"homepage": "http://www.frenck.nl",
"role": "Developer / IT Manager"
},
{
"name": "Contributors",
"homepage": "https://github.com/PHPCSStandards/composer-installer/graphs/contributors"
}
],
"description": "PHP_CodeSniffer Standards Composer Installer Plugin",
"homepage": "http://www.dealerdirect.com",
"keywords": [
"PHPCodeSniffer",
"PHP_CodeSniffer",
"code quality",
"codesniffer",
"composer",
"installer",
"phpcbf",
"phpcs",
"plugin",
"qa",
"quality",
"standard",
"standards",
"style guide",
"stylecheck",
"tests"
],
"support": {
"issues": "https://github.com/PHPCSStandards/composer-installer/issues",
"source": "https://github.com/PHPCSStandards/composer-installer"
},
"time": "2023-01-05T11:28:13+00:00"
},
{
"name": "phpcsstandards/phpcsextra",
"version": "1.2.1",
"source": {
"type": "git",
"url": "https://github.com/PHPCSStandards/PHPCSExtra.git",
"reference": "11d387c6642b6e4acaf0bd9bf5203b8cca1ec489"
},
"dist": {
"type": "zip",
"url": "https://api.github.com/repos/PHPCSStandards/PHPCSExtra/zipball/11d387c6642b6e4acaf0bd9bf5203b8cca1ec489",
"reference": "11d387c6642b6e4acaf0bd9bf5203b8cca1ec489",
"shasum": ""
},
"require": {
"php": ">=5.4",
"phpcsstandards/phpcsutils": "^1.0.9",
"squizlabs/php_codesniffer": "^3.8.0"
},
"require-dev": {
"php-parallel-lint/php-console-highlighter": "^1.0",
"php-parallel-lint/php-parallel-lint": "^1.3.2",
"phpcsstandards/phpcsdevcs": "^1.1.6",
"phpcsstandards/phpcsdevtools": "^1.2.1",
"phpunit/phpunit": "^4.5 || ^5.0 || ^6.0 || ^7.0 || ^8.0 || ^9.0"
},
"type": "phpcodesniffer-standard",
"extra": {
"branch-alias": {
"dev-stable": "1.x-dev",
"dev-develop": "1.x-dev"
}
},
"notification-url": "https://packagist.org/downloads/",
"license": [
"LGPL-3.0-or-later"
],
"authors": [
{
"name": "Juliette Reinders Folmer",
"homepage": "https://github.com/jrfnl",
"role": "lead"
},
{
"name": "Contributors",
"homepage": "https://github.com/PHPCSStandards/PHPCSExtra/graphs/contributors"
}
],
"description": "A collection of sniffs and standards for use with PHP_CodeSniffer.",
"keywords": [
"PHP_CodeSniffer",
"phpcbf",
"phpcodesniffer-standard",
"phpcs",
"standards",
"static analysis"
],
"support": {
"issues": "https://github.com/PHPCSStandards/PHPCSExtra/issues",
"security": "https://github.com/PHPCSStandards/PHPCSExtra/security/policy",
"source": "https://github.com/PHPCSStandards/PHPCSExtra"
},
"funding": [
{
"url": "https://github.com/PHPCSStandards",
"type": "github"
},
{
"url": "https://github.com/jrfnl",
"type": "github"
},
{
"url": "https://opencollective.com/php_codesniffer",
"type": "open_collective"
}
],
"time": "2023-12-08T16:49:07+00:00"
},
{
"name": "phpcsstandards/phpcsutils",
"version": "1.0.12",
"source": {
"type": "git",
"url": "https://github.com/PHPCSStandards/PHPCSUtils.git",
"reference": "87b233b00daf83fb70f40c9a28692be017ea7c6c"
},
"dist": {
"type": "zip",
"url": "https://api.github.com/repos/PHPCSStandards/PHPCSUtils/zipball/87b233b00daf83fb70f40c9a28692be017ea7c6c",
"reference": "87b233b00daf83fb70f40c9a28692be017ea7c6c",
"shasum": ""
},
"require": {
"dealerdirect/phpcodesniffer-composer-installer": "^0.4.1 || ^0.5 || ^0.6.2 || ^0.7 || ^1.0",
"php": ">=5.4",
"squizlabs/php_codesniffer": "^3.10.0 || 4.0.x-dev@dev"
},
"require-dev": {
"ext-filter": "*",
"php-parallel-lint/php-console-highlighter": "^1.0",
"php-parallel-lint/php-parallel-lint": "^1.3.2",
"phpcsstandards/phpcsdevcs": "^1.1.6",
"yoast/phpunit-polyfills": "^1.1.0 || ^2.0.0"
},
"type": "phpcodesniffer-standard",
"extra": {
"branch-alias": {
"dev-stable": "1.x-dev",
"dev-develop": "1.x-dev"
}
},
"autoload": {
"classmap": [
"PHPCSUtils/"
]
},
"notification-url": "https://packagist.org/downloads/",
"license": [
"LGPL-3.0-or-later"
],
"authors": [
{
"name": "Juliette Reinders Folmer",
"homepage": "https://github.com/jrfnl",
"role": "lead"
},
{
"name": "Contributors",
"homepage": "https://github.com/PHPCSStandards/PHPCSUtils/graphs/contributors"
}
],
"description": "A suite of utility functions for use with PHP_CodeSniffer",
"homepage": "https://phpcsutils.com/",
"keywords": [
"PHP_CodeSniffer",
"phpcbf",
"phpcodesniffer-standard",
"phpcs",
"phpcs3",
"standards",
"static analysis",
"tokens",
"utility"
],
"support": {
"docs": "https://phpcsutils.com/",
"issues": "https://github.com/PHPCSStandards/PHPCSUtils/issues",
"security": "https://github.com/PHPCSStandards/PHPCSUtils/security/policy",
"source": "https://github.com/PHPCSStandards/PHPCSUtils"
},
"funding": [
{
"url": "https://github.com/PHPCSStandards",
"type": "github"
},
{
"url": "https://github.com/jrfnl",
"type": "github"
},
{
"url": "https://opencollective.com/php_codesniffer",
"type": "open_collective"
}
],
"time": "2024-05-20T13:34:27+00:00"
},
{
"name": "squizlabs/php_codesniffer",
"version": "3.11.2",
"source": {
"type": "git",
"url": "https://github.com/PHPCSStandards/PHP_CodeSniffer.git",
"reference": "1368f4a58c3c52114b86b1abe8f4098869cb0079"
},
"dist": {
"type": "zip",
"url": "https://api.github.com/repos/PHPCSStandards/PHP_CodeSniffer/zipball/1368f4a58c3c52114b86b1abe8f4098869cb0079",
"reference": "1368f4a58c3c52114b86b1abe8f4098869cb0079",
"shasum": ""
},
"require": {
"ext-simplexml": "*",
"ext-tokenizer": "*",
"ext-xmlwriter": "*",
"php": ">=5.4.0"
},
"require-dev": {
"phpunit/phpunit": "^4.0 || ^5.0 || ^6.0 || ^7.0 || ^8.0 || ^9.3.4"
},
"bin": [
"bin/phpcbf",
"bin/phpcs"
],
"type": "library",
"extra": {
"branch-alias": {
"dev-master": "3.x-dev"
}
},
"notification-url": "https://packagist.org/downloads/",
"license": [
"BSD-3-Clause"
],
"authors": [
{
"name": "Greg Sherwood",
"role": "Former lead"
},
{
"name": "Juliette Reinders Folmer",
"role": "Current lead"
},
{
"name": "Contributors",
"homepage": "https://github.com/PHPCSStandards/PHP_CodeSniffer/graphs/contributors"
}
],
"description": "PHP_CodeSniffer tokenizes PHP, JavaScript and CSS files and detects violations of a defined set of coding standards.",
"homepage": "https://github.com/PHPCSStandards/PHP_CodeSniffer",
"keywords": [
"phpcs",
"standards",
"static analysis"
],
"support": {
"issues": "https://github.com/PHPCSStandards/PHP_CodeSniffer/issues",
"security": "https://github.com/PHPCSStandards/PHP_CodeSniffer/security/policy",
"source": "https://github.com/PHPCSStandards/PHP_CodeSniffer",
"wiki": "https://github.com/PHPCSStandards/PHP_CodeSniffer/wiki"
},
"funding": [
{
"url": "https://github.com/PHPCSStandards",
"type": "github"
},
{
"url": "https://github.com/jrfnl",
"type": "github"
},
{
"url": "https://opencollective.com/php_codesniffer",
"type": "open_collective"
}
],
"time": "2024-12-11T16:04:26+00:00"
},
{
"name": "wp-coding-standards/wpcs",
"version": "3.1.0",
"source": {
"type": "git",
"url": "https://github.com/WordPress/WordPress-Coding-Standards.git",
"reference": "9333efcbff231f10dfd9c56bb7b65818b4733ca7"
},
"dist": {
"type": "zip",
"url": "https://api.github.com/repos/WordPress/WordPress-Coding-Standards/zipball/9333efcbff231f10dfd9c56bb7b65818b4733ca7",
"reference": "9333efcbff231f10dfd9c56bb7b65818b4733ca7",
"shasum": ""
},
"require": {
"ext-filter": "*",
"ext-libxml": "*",
"ext-tokenizer": "*",
"ext-xmlreader": "*",
"php": ">=5.4",
"phpcsstandards/phpcsextra": "^1.2.1",
"phpcsstandards/phpcsutils": "^1.0.10",
"squizlabs/php_codesniffer": "^3.9.0"
},
"require-dev": {
"php-parallel-lint/php-console-highlighter": "^1.0.0",
"php-parallel-lint/php-parallel-lint": "^1.3.2",
"phpcompatibility/php-compatibility": "^9.0",
"phpcsstandards/phpcsdevtools": "^1.2.0",
"phpunit/phpunit": "^4.0 || ^5.0 || ^6.0 || ^7.0 || ^8.0 || ^9.0"
},
"suggest": {
"ext-iconv": "For improved results",
"ext-mbstring": "For improved results"
},
"type": "phpcodesniffer-standard",
"notification-url": "https://packagist.org/downloads/",
"license": [
"MIT"
],
"authors": [
{
"name": "Contributors",
"homepage": "https://github.com/WordPress/WordPress-Coding-Standards/graphs/contributors"
}
],
"description": "PHP_CodeSniffer rules (sniffs) to enforce WordPress coding conventions",
"keywords": [
"phpcs",
"standards",
"static analysis",
"wordpress"
],
"support": {
"issues": "https://github.com/WordPress/WordPress-Coding-Standards/issues",
"source": "https://github.com/WordPress/WordPress-Coding-Standards",
"wiki": "https://github.com/WordPress/WordPress-Coding-Standards/wiki"
},
"funding": [
{
"url": "https://opencollective.com/php_codesniffer",
"type": "custom"
}
],
"time": "2024-03-25T16:39:00+00:00"
}
],
"aliases": [],
"minimum-stability": "stable",
"stability-flags": {},
"prefer-stable": false,
"prefer-lowest": false,
"platform": {},
"platform-dev": {},
"plugin-api-version": "2.6.0"
}

View File

@@ -0,0 +1,54 @@
<?xml version="1.0"?>
<ruleset name="WordPress.Elementor">
<description>Elementor Coding Standards</description>
<arg name="parallel" value="8" />
<config name="text_domain" value="wp-notifications-package" />
<exclude-pattern>vendor/</exclude-pattern>
<exclude-pattern>build/</exclude-pattern>
<exclude-pattern>node_modules/</exclude-pattern>
<exclude-pattern>tests/*.php</exclude-pattern>
<exclude-pattern>*.js</exclude-pattern>
<exclude-pattern>*.css</exclude-pattern>
<exclude-pattern>*.scss</exclude-pattern>
<rule ref="WordPress-Core">
<exclude name="Universal.Arrays.DisallowShortArraySyntax"/>
</rule>
<rule ref="WordPress.Security" />
<rule ref="WordPress-Extra">
<exclude name="Generic.Commenting.DocComment.MissingShort" />
<exclude name="Generic.Formatting.MultipleStatementAlignment" />
<exclude name="Generic.Arrays.DisallowShortArraySyntax.Found" />
<exclude name="Squiz.Commenting.ClassComment.Missing" />
<exclude name="Squiz.Commenting.FileComment.Missing" />
<exclude name="Squiz.Commenting.FunctionComment.Missing" />
<exclude name="Squiz.Commenting.FunctionComment.MissingParamComment" />
<exclude name="Squiz.Commenting.VariableComment.Missing" />
<exclude name="Squiz.PHP.EmbeddedPhp.ContentBeforeOpen" />
<exclude name="Squiz.PHP.EmbeddedPhp.ContentAfterOpen" />
<exclude name="Squiz.PHP.EmbeddedPhp.ContentBeforeEnd" />
<exclude name="Squiz.PHP.EmbeddedPhp.ContentAfterEnd" />
<exclude name="WordPress.Files.FileName.NotHyphenatedLowercase" />
<exclude name="WordPress.Arrays.MultipleStatementAlignment" />
<exclude name="WordPress.CSRF.NonceVerification.NoNonceVerification" />
<exclude name="WordPress.Files.FileName.InvalidClassFileName" />
<exclude name="WordPress.WP.I18n.MissingTranslatorsComment" />
<exclude name="WordPress.WP.I18n.NonSingularStringLiteralSingle" />
<exclude name="WordPress.WP.I18n.NonSingularStringLiteralPlural" />
<exclude name="PEAR.Functions.FunctionCallSignature.ContentAfterOpenBracket" />
<exclude name="PEAR.Functions.FunctionCallSignature.MultipleArguments" />
<exclude name="PEAR.Functions.FunctionCallSignature.CloseBracketLine" />
</rule>
<rule ref="WordPress.NamingConventions.ValidHookName">
<properties>
<property name="additionalWordDelimiters" value="/-" />
</properties>
</rule>
<rule ref="Generic.Arrays.DisallowLongArraySyntax"/>
</ruleset>

View File

@@ -0,0 +1,118 @@
<?php
/**
* Plugin Name: WP Notifications Package
* Description: ...
* Plugin URI: https://elementor.com/
* Author: Elementor.com
* Version: 1.0.0
* License: GPL-3
* License URI: https://www.gnu.org/licenses/gpl-3.0.en.html
*
* Text Domain: wp-notifications-package
*/
use Elementor\WPNotificationsPackage\V120\Notifications;
if ( ! defined( 'ABSPATH' ) ) {
exit; // Exit if accessed directly.
}
class Plugin_Example {
public Notifications $notifications;
public function __construct() {
$this->init();
}
private function init() {
require __DIR__ . '/vendor/autoload.php';
$this->notifications = new Notifications( [
'app_name' => 'wp-notifications-package',
'app_version' => '1.2.0',
'short_app_name' => 'wppe',
'app_data' => [
'plugin_basename' => plugin_basename( __FILE__ ),
],
] );
add_action( 'admin_notices', [ $this, 'display_notifications' ] );
add_action( 'admin_footer', [ $this, 'display_dialog' ] );
}
public function display_notifications() {
$notifications = $this->notifications->get_notifications_by_conditions();
if ( empty( $notifications ) ) {
return;
}
?>
<div class="notice notice-info is-dismissible">
<h3><?php esc_html_e( 'What\'s new:', 'wp-notifications-package' ); ?></h3>
<ul>
<?php foreach ( $notifications as $item ) : ?>
<li><a href="<?php echo esc_url( $item['link'] ?? '#' ); ?>" target="_blank"><?php echo esc_html( $item['title'] ); ?></a></li>
<?php endforeach; ?>
</ul>
</div>
<?php
// Example with HTML Dialog modal
?>
<div class="notice notice-info is-dismissible">
<button class="plugin-example-notifications-dialog-open">Open Notification</button>
</div>
<?php
}
public function display_dialog() {
$notifications = $this->notifications->get_notifications_by_conditions();
if ( empty( $notifications ) ) {
return;
}
?>
<style>
#plugin-example-notifications-dialog {
padding: 20px;
border: 1px solid #ccc;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}
#plugin-example-notifications-dialog::backdrop {
background: rgba(0, 0, 0, 0.5);
}
</style>
<dialog id="plugin-example-notifications-dialog">
<h3><?php esc_html_e( 'What\'s new:', 'wp-notifications-package' ); ?></h3>
<ul>
<?php foreach ( $notifications as $item ) : ?>
<li><a href="<?php echo esc_url( $item['link'] ?? '#' ); ?>" target="_blank"><?php echo esc_html( $item['title'] ); ?></a></li>
<?php endforeach; ?>
</ul>
<button class="close">Close</button>
</dialog>
<script>
document.addEventListener( 'DOMContentLoaded', function() {
const openDialogBtn = document.querySelector( '.plugin-example-notifications-dialog-open' );
const closeDialogBtn = document.querySelector( '#plugin-example-notifications-dialog button.close' );
const dialog = document.getElementById( 'plugin-example-notifications-dialog' );
openDialogBtn.addEventListener( 'click', function() {
dialog.showModal();
} );
closeDialogBtn.addEventListener( 'click', function() {
dialog.close();
} );
} );
</script>
<?php
}
}
new Plugin_Example();

View File

@@ -0,0 +1,252 @@
<?php
namespace Elementor\WPNotificationsPackage\V120;
if ( ! defined( 'ABSPATH' ) ) {
exit; // Exit if accessed directly.
}
class Notifications {
const PACKAGE_VERSION = '1.2.0';
private string $app_name;
private string $app_version;
private string $short_app_name;
private string $transient_key;
private array $app_data = [];
private string $api_endpoint = 'https://my.elementor.com/api/v1/notifications';
public function __construct( array $config ) {
$this->app_name = sanitize_title( $config['app_name'] );
$this->app_version = $config['app_version'];
$this->short_app_name = $config['short_app_name'] ?? 'plugin';
$this->app_data = $config['app_data'] ?? [];
$this->transient_key = "_{$this->app_name}_notifications";
add_action( 'admin_init', [ $this, 'refresh_notifications' ] );
add_filter( 'body_class', [ $this, 'add_body_class' ] );
if ( ! empty( $this->app_data['plugin_basename'] ) ) {
register_deactivation_hook( $this->app_data['plugin_basename'], [ $this, 'on_plugin_deactivated' ] );
}
if ( ! empty( $this->app_data['theme_name'] ) ) {
add_action( 'switch_theme', [ $this, 'on_theme_deactivated' ], 10, 3 );
}
}
public function refresh_notifications(): void {
$this->get_notifications();
}
public function add_body_class( array $classes ): array {
$classes[] = $this->short_app_name . '-default';
return $classes;
}
public function get_notifications_by_conditions( $force_request = false ) {
$notifications = $this->get_notifications( $force_request );
$filtered_notifications = [];
foreach ( $notifications as $notification ) {
if ( empty( $notification['conditions'] ) ) {
$filtered_notifications = $this->add_to_array( $filtered_notifications, $notification );
continue;
}
if ( ! $this->check_conditions( $notification['conditions'] ) ) {
continue;
}
$filtered_notifications = $this->add_to_array( $filtered_notifications, $notification );
}
return $filtered_notifications;
}
private function get_notifications( $force_update = false, $additional_status = false ): array {
$notifications = static::get_transient( $this->transient_key );
if ( false === $notifications || $force_update ) {
$notifications = $this->fetch_data( $additional_status );
static::set_transient( $this->transient_key, $notifications );
}
return $notifications;
}
private function add_to_array( $filtered_notifications, $notification ) {
foreach ( $filtered_notifications as $filtered_notification ) {
if ( $filtered_notification['id'] === $notification['id'] ) {
return $filtered_notifications;
}
}
$filtered_notifications[] = $notification;
return $filtered_notifications;
}
private function check_conditions( $groups ): bool {
foreach ( $groups as $group ) {
if ( $this->check_group( $group ) ) {
return true;
}
}
return false;
}
private function check_group( $group ) {
$is_or_relation = ! empty( $group['relation'] ) && 'OR' === $group['relation'];
unset( $group['relation'] );
$result = false;
foreach ( $group as $condition ) {
// Reset results for each condition.
$result = false;
switch ( $condition['type'] ) {
case 'wordpress': // phpcs:ignore WordPress.WP.CapitalPDangit
// include an unmodified $wp_version
include ABSPATH . WPINC . '/version.php';
$result = version_compare( $wp_version, $condition['version'], $condition['operator'] );
break;
case 'multisite':
$result = is_multisite() === $condition['multisite'];
break;
case 'language':
$in_array = in_array( get_locale(), $condition['languages'], true );
$result = 'in' === $condition['operator'] ? $in_array : ! $in_array;
break;
case 'plugin':
if ( ! function_exists( 'is_plugin_active' ) ) {
require_once ABSPATH . 'wp-admin/includes/plugin.php';
}
$is_plugin_active = is_plugin_active( $condition['plugin'] );
if ( empty( $condition['operator'] ) ) {
$condition['operator'] = '==';
}
$result = '==' === $condition['operator'] ? $is_plugin_active : ! $is_plugin_active;
break;
case 'theme':
$theme = wp_get_theme();
if ( wp_get_theme()->parent() ) {
$theme = wp_get_theme()->parent();
}
if ( $theme->get_template() === $condition['theme'] ) {
$version = $theme->version;
} else {
$version = '';
}
$result = version_compare( $version, $condition['version'], $condition['operator'] );
break;
default:
$result = apply_filters( "$this->app_name/notifications/condition/{$condition['type']}", $result, $condition );
break;
}
if ( ( $is_or_relation && $result ) || ( ! $is_or_relation && ! $result ) ) {
return $result;
}
}
return $result;
}
private function fetch_data( $additional_status = false ): array {
$body_request = [
'api_version' => self::PACKAGE_VERSION,
'app_name' => $this->app_name,
'app_version' => $this->app_version,
'site_lang' => get_bloginfo( 'language' ),
'site_key' => $this->get_site_key(),
];
$timeout = 10;
if ( ! empty( $additional_status ) ) {
$body_request['status'] = $additional_status;
$timeout = 3;
}
$response = wp_remote_get(
$this->api_endpoint,
[
'timeout' => $timeout,
'body' => $body_request,
]
);
if ( is_wp_error( $response ) || 200 !== (int) wp_remote_retrieve_response_code( $response ) ) {
return [];
}
$data = \json_decode( wp_remote_retrieve_body( $response ), true );
if ( empty( $data['notifications'] ) || ! is_array( $data['notifications'] ) ) {
return [];
}
return $data['notifications'];
}
private function get_site_key() {
$site_key = get_option( 'elementor_connect_site_key' );
if ( ! $site_key ) {
$site_key = md5( uniqid( wp_generate_password() ) );
update_option( 'elementor_connect_site_key', $site_key );
}
return $site_key;
}
private static function get_transient( $cache_key ) {
$cache = get_option( $cache_key );
if ( empty( $cache['timeout'] ) ) {
return false;
}
if ( time() > $cache['timeout'] ) {
return false;
}
return json_decode( $cache['value'], true );
}
private static function set_transient( $cache_key, $value, $expiration = '+12 hours' ) {
$data = [
'timeout' => strtotime( $expiration, time() ),
'value' => wp_json_encode( $value ),
];
return update_option( $cache_key, $data, false );
}
public function on_plugin_deactivated(): void {
$this->get_notifications( true, 'deactivated' );
}
public function on_theme_deactivated( string $new_name, \WP_Theme $new_theme, \WP_Theme $old_theme ): void {
if ( $old_theme->get_template() === $this->app_data['theme_name'] ) {
$this->get_notifications( true, 'deactivated' );
}
}
}

View File

@@ -0,0 +1 @@
#adminmenu .toplevel_page_elementor-home .wp-menu-image:before{background-color:currentColor;content:"";-webkit-mask-image:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAyNCAyNCI+PHBhdGggZD0iTTEyLjEyIDBDNS40MjUgMCAwIDUuMzcgMCAxMnM1LjQyNCAxMiAxMi4xMiAxMmM2LjY5NyAwIDEyLjEyMS01LjM3IDEyLjEyMS0xMlMxOC44MTcgMCAxMi4xMjEgME04LjQ4NSAxOEg2LjA2VjZoMi40MjR6bTkuNjk3IDBoLTcuMjcydi0yLjRoNy4yNzJ6bTAtNC44aC03LjI3MnYtMi40aDcuMjcyem0wLTQuOGgtNy4yNzJWNmg3LjI3MnoiLz48L3N2Zz4=);mask-image:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAyNCAyNCI+PHBhdGggZD0iTTEyLjEyIDBDNS40MjUgMCAwIDUuMzcgMCAxMnM1LjQyNCAxMiAxMi4xMiAxMmM2LjY5NyAwIDEyLjEyMS01LjM3IDEyLjEyMS0xMlMxOC44MTcgMCAxMi4xMjEgME04LjQ4NSAxOEg2LjA2VjZoMi40MjR6bTkuNjk3IDBoLTcuMjcydi0yLjRoNy4yNzJ6bTAtNC44aC03LjI3MnYtMi40aDcuMjcyem0wLTQuOGgtNy4yNzJWNmg3LjI3MnoiLz48L3N2Zz4=);-webkit-mask-position:center;mask-position:center;-webkit-mask-repeat:no-repeat;mask-repeat:no-repeat;-webkit-mask-size:20px;mask-size:20px}#adminmenu a[href="admin.php?page=elementor-one-upgrade"]{background-color:#93003f;border-radius:4px;color:#fff;display:block;font-weight:500;letter-spacing:.46px;line-height:22px;margin:8px 12px;text-align:center}#adminmenu a[href="admin.php?page=elementor-one-upgrade"]:focus,#adminmenu a[href="admin.php?page=elementor-one-upgrade"]:hover{background-color:#c60055;box-shadow:none;color:#fff}#elementor-home-app-top-bar~#wpbody #wpbody-content{margin-block-start:0}

View File

@@ -0,0 +1 @@
<?php return array('dependencies' => array(), 'version' => '71fc09ea1a9e23155639');

View File

@@ -0,0 +1 @@
#adminmenu .toplevel_page_elementor-home .wp-menu-image:before{background-color:currentColor;content:"";-webkit-mask-image:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAyNCAyNCI+PHBhdGggZD0iTTEyLjEyIDBDNS40MjUgMCAwIDUuMzcgMCAxMnM1LjQyNCAxMiAxMi4xMiAxMmM2LjY5NyAwIDEyLjEyMS01LjM3IDEyLjEyMS0xMlMxOC44MTcgMCAxMi4xMjEgME04LjQ4NSAxOEg2LjA2VjZoMi40MjR6bTkuNjk3IDBoLTcuMjcydi0yLjRoNy4yNzJ6bTAtNC44aC03LjI3MnYtMi40aDcuMjcyem0wLTQuOGgtNy4yNzJWNmg3LjI3MnoiLz48L3N2Zz4=);mask-image:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAyNCAyNCI+PHBhdGggZD0iTTEyLjEyIDBDNS40MjUgMCAwIDUuMzcgMCAxMnM1LjQyNCAxMiAxMi4xMiAxMmM2LjY5NyAwIDEyLjEyMS01LjM3IDEyLjEyMS0xMlMxOC44MTcgMCAxMi4xMjEgME04LjQ4NSAxOEg2LjA2VjZoMi40MjR6bTkuNjk3IDBoLTcuMjcydi0yLjRoNy4yNzJ6bTAtNC44aC03LjI3MnYtMi40aDcuMjcyem0wLTQuOGgtNy4yNzJWNmg3LjI3MnoiLz48L3N2Zz4=);-webkit-mask-position:center;mask-position:center;-webkit-mask-repeat:no-repeat;mask-repeat:no-repeat;-webkit-mask-size:20px;mask-size:20px}#adminmenu a[href="admin.php?page=elementor-one-upgrade"]{background-color:#93003f;border-radius:4px;color:#fff;display:block;font-weight:500;letter-spacing:.46px;line-height:22px;margin:8px 12px;text-align:center}#adminmenu a[href="admin.php?page=elementor-one-upgrade"]:focus,#adminmenu a[href="admin.php?page=elementor-one-upgrade"]:hover{background-color:#c60055;box-shadow:none;color:#fff}#elementor-home-app-top-bar~#wpbody #wpbody-content{margin-block-start:0}

View File

@@ -0,0 +1 @@
document.addEventListener("DOMContentLoaded",function(){const e=document.querySelector('#adminmenu a[href="admin.php?page=elementor-one-upgrade"]');e&&e.setAttribute("target","_blank")});

View File

@@ -0,0 +1 @@
<?php return array('dependencies' => array('react', 'react-dom', 'wp-api-fetch', 'wp-element', 'wp-url'), 'version' => '01069f38180e7c38f688');

File diff suppressed because one or more lines are too long

View File

@@ -0,0 +1 @@
"use strict";(self.webpackChunk=self.webpackChunk||[]).push([["1047"],{25754(e){e.exports=JSON.parse('{"title":"Gestor de ferramentas","subtitle":"Controle todas as suas ferramentas num S\xd3 lugar.","filters":{"all":"Todas","active":"Ativas","disabled":"Desativadas","notInstalled":"N\xe3o instaladas"},"back":"Voltar \xe0 vis\xe3o geral das ferramentas","breadcrumb":{"home":"In\xedcio","toolManager":"Gestor de ferramentas"},"tools":{"build":{"title":"Criar","items":{"core":{"title":"Editor principal"},"pro":{"title":"Editor profissional","features":{"themeBuilder":"Construtor de temas","popups":"Pop-ups","commerce":"Com\xe9rcio","savedTemplates":"Modelos guardados","templateCategories":"Categorias de modelos","starterTemplates":"Modelos iniciais (modelos de website)","customFonts":"Tipos de letra personalizados","customIcons":"\xcdcones personalizados","customCode":"C\xf3digo personalizado","customCss":"CSS personalizado"}},"ai":{"title":"IA Agente"}}},"optimize":{"title":"Otimizar","items":{"accessibility":{"title":"Acessibilidade"},"io":{"title":"Otimiza\xe7\xe3o de imagem"}}},"manage":{"title":"Gerir","items":{"email":{"title":"Capacidade de entrega de email"},"manage":{"title":"Gerenciamento de sites"}}},"create":{"title":"Criar","items":{"core":{"title":"N\xfacleo do Editor","withAI":"com recursos de IA"},"pro":{"title":"Editor Pr\xf3","features":{"themeBuilder":"Construtor de tema","popups":"Pop-ups","commerce":"Com\xe9rcio","savedTemplates":"Modelos salvos","templateCategories":"Categorias de modelo","starterTemplates":"Modelos iniciais (modelos de site)","customFonts":"Fontes personalizadas","customIcons":"\xcdcones personalizados","customCode":"C\xf3digo personalizado","customCss":"CSS personalizado"}},"ai":{"title":"Angie \u2013 IA nativa para WordPress"}}}},"actions":{"add":"Adicionar","update":"Atualizar","activate":"Ativar","deactivate":"Desativar","migrateToOne":"Migrar para One","updateRequired":"Atualiza\xe7\xe3o necess\xe1ria","confirmAdd":{"title":"Adicionar ferramenta","msg":"Tem certeza de que deseja adicionar esta ferramenta? Isso adicionar\xe1 a ferramenta \xe0 sua conta e poder\xe1 us\xe1-la nos seus projetos.","ok":"Adicionar","cancel":"Cancelar"},"confirmActivate":{"title":"Tem certeza de que deseja ativar {name}? ","msg":"Ao ativar...","ok":"Ativar","cancel":"Cancelar"},"confirmDeactivate":{"title":"Tem certeza de que deseja desativar {name}? ","msg":"Ao desativar...","ok":"Desativar","cancel":"Agora n\xe3o"},"detachAi":"Desconecte o Editor AI do Elementor One","activateCore":"Ative o Editor Core para ativar o Editor Pro","confirmDetach":{"title":"Detach {name} ","msg":"{isEditorCore, select, true {Remove Elementor One from Editor AI. This lets you use it with another plan.} other {Remove the One plan from this plugin. This lets you use it with another plan.}}","ok":"Desanexar","cancel":"Agora n\xe3o"},"confirmDeactivateOrDetach":{"title":"O que voc\xea gostaria de fazer?","deactivateMsg":"Desligue esse recurso e seu plugin WordPress. Voc\xea pode lig\xe1-lo novamente a qualquer momento e continuar usando-o com seu plano One.","deactivate":"Desativar","msg":"{isEditorCore, select, true {Remove Elementor One from Editor AI. This lets you use it with another plan.} other {Remove the One plan from this plugin. This lets you use it with another plan.}}","detach":"Desanexar","cancel":"Agora n\xe3o"},"confirmMigration":{"title":"Move {name} to Elementor One? ","msg":"{name} is currently active with its own subscription. You also have an Elementor One subscription for this site.<br/><br/>If you switch to Elementor One:<ul><li>Your current {name} subscription will be deactivated</li><li>{name} will use your shared Elementor One credits</li></ul>","ok":"Mover","cancel":"Agora n\xe3o"},"failedAction":{"install":"A instala\xe7\xe3o falhou. Por favor, tente novamente mais tarde.","activate":"Falha na ativa\xe7\xe3o. Por favor, tente novamente mais tarde.","deactivate":"A desativa\xe7\xe3o falhou. Por favor, tente novamente mais tarde.","migrate":"A migra\xe7\xe3o falhou. Por favor, tente novamente mais tarde.","detach":"O desapego falhou. Por favor, tente novamente mais tarde."}},"showMoreFeatures":"Mostrar mais funcionalidades","hideMoreFeatures":"Ocultar mais funcionalidades","noToolsFound":"Nenhuma ferramenta correspondeu \xe0 pesquisa","noToolsFoundDescription":"Tente ajustar os seus filtros.","updateRequiredTooltip":"Os plugins atualizados t\xeam novas funcionalidades e corre\xe7\xf5es para que o seu site funcione de forma segura e fluida."}')}}]);

View File

@@ -0,0 +1 @@
"use strict";(self.webpackChunk=self.webpackChunk||[]).push([["1081"],{27984(e){e.exports=JSON.parse('{"header":{"title":"website builder","userInfo":"My account","userProfileMenu":{"connectPreText":"Have an Elementor One plan?","connect":"Connect","goToMyAccount":"Go to My account","disconnect":"Disconnect","elementorOneActive":"Elementor One","active":"Active","urlMismatch":"URL mismatch detected","fixUrlMismatch":"Fix now"},"whatsNew":"What\'s new","whatsNewError":"Something went wrong while fetching the notifications. Please try again later."}}')}}]);

View File

@@ -0,0 +1 @@
"use strict";(self.webpackChunk=self.webpackChunk||[]).push([["1095"],{96266(e){e.exports=JSON.parse('{"hi":"Hola. Traducci\xf3n de host","alerts":{"connect":{"description":"\xbfTiene un plan Elementor One?","action":"Act\xedvelo aqu\xed"},"installing":"Instalando\u2026 permanezca en esta p\xe1gina ({current} de {total})","urlMismatch":{"title":"Su licencia no est\xe1 conectada a este dominio","description":"Esto suele ocurrir despu\xe9s de un cambio de dominio, como al pasar a HTTPS o cambiar de URL.","action":"Corregir URL no coincidente"}}}')}}]);

View File

@@ -0,0 +1 @@
"use strict";(self.webpackChunk=self.webpackChunk||[]).push([["120"],{46251(t){t.exports=JSON.parse('{"hi":"Hi. Host translation","alerts":{"connect":{"description":"Have an Elementor One plan?","action":"Activate it here"},"installing":"Installing\u2026 please stay on this page ({current} of {total})","urlMismatch":{"title":"Your license isn\u2019t connected to this domain","description":"This usually happens after a domain change, such as moving to HTTPS or switching URLs.","action":"Fix mismatched URL"}}}')}}]);

View File

@@ -0,0 +1 @@
"use strict";(self.webpackChunk=self.webpackChunk||[]).push([["1211"],{63670(e){e.exports=JSON.parse('{"apps":{"HOSTING":"Alojamento","APP_AI":"Elementor AI","APP_IO":"Image Optimizer","APP_MAILER":"Site Mailer","PLUGIN":"Elementor Pro","APP_ACCESS":"Ally","APP_EMPMA":"Send","APP_MANAGE":"Elementor Manage"}}')}}]);

View File

@@ -0,0 +1 @@
"use strict";(self.webpackChunk=self.webpackChunk||[]).push([["1228"],{61047(e){e.exports=JSON.parse('{"downloadInvoice404":{"title":"Your invoice is being processed","message":"We\u2019ll email it to you once it\u2019s ready."},"supportedLanguages":{"en":"English","de":"Deutsch","es":"Espa\xf1ol","it":"Italiano","nl":"Nederlands","pt-PT":"Portugu\xeas","pt-BR":"Portugu\xeas (Brasil)","fr":"Fran\xe7ais","he-IL":"\u05E2\u05D1\u05E8\u05D9\u05EA"}}')}}]);

View File

@@ -0,0 +1 @@
"use strict";(self.webpackChunk=self.webpackChunk||[]).push([["1358"],{59453(e){e.exports=JSON.parse('{"onBoardingInstall":{"title":"Willkommen bei\\nElementor One!","description":"Wir werden alle Elementor-Funktionen installieren.\\nWenn Sie diese nicht installieren m\xf6chten, deaktivieren Sie sie jetzt.","skip":"\xdcberspringen","continue":"Weiter","installAndContinue":"Installieren und fortfahren","duringInstallation":"W\xe4hrend der Installation werden alle erforderlichen Tools aktualisiert.","tools":{"additionalBetaTools":"Zus\xe4tzliche Beta-Tools","editorCore":{"title":"Editor-Kern","description":"Erstellen Sie pixelgenaue Websites mit einer Drag & Drop-Oberfl\xe4che"},"editorPro":{"title":"Editor Pro","description":"Erstellen Sie Ihre gesamte Website mit professionellen Tools"},"imageOptimizer":{"title":"Bildoptimierung","description":"Bilder komprimieren und optimieren, um die Leistung zu steigern"},"accessibility":{"title":"Barrierefreiheit","description":"Barrierefreiheitsprobleme auf Ihrer Website finden und beheben"},"siteMailer":{"title":"Site Mailer","description":"Stellen Sie sicher, dass Ihre Website-E-Mails im Posteingang landen \u2013 nicht im Spam"},"ai":{"title":"Native KI f\xfcr WordPress","description":"Verwandeln Sie Ideen in Seiten, Bl\xf6cke und Funktionen mit nativer KI "},"installed":"Bereits installiert","singleSub":"Einzelabonnement","updateRequired":"Update erforderlich","updateRequiredTooltip":"Wird automatisch auf die neueste Version aktualisiert","beta":"Beta","manage":{"title":"Website-Verwaltung","description":"\xdcberwachen, optimieren und verwalten Sie alle Ihre Websites an einem Ort"},"installedTooltip":"Installierte Tools k\xf6nnen Sie im Tool-Manager deinstallieren."},"installedToolTip":"Installierte Tools k\xf6nnen Sie im Tool-Manager deinstallieren.","conflictsDialog":{"update":{"title":"Updates verf\xfcgbar","description":"Diese Tools laufen in \xe4lteren Versionen. Aktualisieren Sie sie f\xfcr beste Leistung und Sicherheit.","selectTools":"Tools zum Aktualisieren ausw\xe4hlen","action":"{nothingIsSelected, select, true {Weiter} other {Aktualisieren & fortfahren}}"},"migrate":{"title":"Migration erforderlich","description":"Diese Tools sind nicht auf Elementor One migriert. Migrieren Sie sie f\xfcr beste Leistung und Sicherheit.","selectTools":"Tools zum Migrieren ausw\xe4hlen","action":"{nothingIsSelected, select, true {Weiter} other {Verschieben & fortfahren}}"},"manageLater":"Sie k\xf6nnen diese Updates sp\xe4ter im Tool-Manager verwalten","step":"Schritt {step} von {total}"}},"siteIdentity":{"activeTheme":"Aktives Theme:","getHelloElementor":"Hello Elementor herunterladen","goToDashboard":"Zum Dashboard gehen","editSite":"Website bearbeiten","editSiteMenu":{"addPage":"Seite hinzuf\xfcgen","addBlogPost":"Blogbeitrag hinzuf\xfcgen","createHeader":"Header erstellen","createFooter":"Footer erstellen"},"helloThemeInstalled":"Hello Elementor Theme erfolgreich installiert","helloThemeInstallationFailed":"Installation des Hello Elementor Themes fehlgeschlagen","helloThemeActivationFailed":"Aktivierung des Hello Elementor Themes fehlgeschlagen","helloThemeActivated":"Hello Elementor Theme erfolgreich aktiviert","goToSiteSetup":"Zur Website-Einrichtung"},"capabilities":{"greeting":"Fangen wir an zu bauen.","filters":{"all":"Alle","discover":"Entdecken","build":"Erstellen","optimize":"Optimieren","manage":"Verwalten","featured":"Empfohlen","create":"Erstellen"},"toolManager":"Tool-Manager","addForFreeButton":"Kostenlos hinzuf\xfcgen","openButton":"\xd6ffnen","goProButton":"Pro werden","inProgressButton":"In Bearbeitung","learnMore":{"upgrade":"Upgrade","install":"Installieren","open":"\xd6ffnen"},"isNew":"Neu"},"toolManager":{"title":"Alle Ihre Tools an EINEM Ort steuern."},"welcomeModal":{"letsStart":{"title":"Willkommen beim <br />neuen Elementor!","description":"Erstellen, optimieren und verwalten Sie Ihre Website <br />aus einem leistungsstarken Arbeitsbereich.","button":"Los geht\'s"}}}')}}]);

View File

@@ -0,0 +1 @@
"use strict";(self.webpackChunk=self.webpackChunk||[]).push([["1432"],{79867(e){e.exports=JSON.parse('{"title":"Administrador de herramientas","subtitle":"Controle todas sus herramientas en UN solo lugar.","filters":{"all":"Todas","active":"Activas","disabled":"Desactivadas","notInstalled":"No instaladas"},"back":"Volver a la vista general de herramientas","breadcrumb":{"home":"Inicio","toolManager":"Administrador de herramientas"},"tools":{"build":{"title":"Crear","items":{"core":{"title":"N\xfacleo del editor"},"pro":{"title":"Editor pro","features":{"themeBuilder":"Constructor de temas","popups":"Ventanas emergentes","commerce":"Comercio","savedTemplates":"Plantillas guardadas","templateCategories":"Categor\xedas de plantillas","starterTemplates":"Plantillas de inicio (plantillas de sitio web)","customFonts":"Fuentes personalizadas","customIcons":"Iconos personalizados","customCode":"C\xf3digo personalizado","customCss":"CSS personalizado"}},"ai":{"title":"IA ag\xe9ntica"}}},"optimize":{"title":"Optimizar","items":{"accessibility":{"title":"Accesibilidad"},"io":{"title":"Optimizaci\xf3n de im\xe1genes"}}},"manage":{"title":"Gestionar","items":{"email":{"title":"Capacidad de entrega de correo electr\xf3nico"},"manage":{"title":"Gesti\xf3n del sitio"}}},"create":{"title":"Crear","items":{"core":{"title":"N\xfacleo del editor","withAI":"con capacidades de IA"},"pro":{"title":"Editor profesional","features":{"themeBuilder":"Creador de temas","popups":"Ventanas emergentes","commerce":"Comercio","savedTemplates":"Plantillas guardadas","templateCategories":"Categor\xedas de plantillas","starterTemplates":"Plantillas de inicio (plantillas de sitios web)","customFonts":"Fuentes personalizadas","customIcons":"Iconos personalizados","customCode":"C\xf3digo personalizado","customCss":"CSS personalizado"}},"ai":{"title":"Angie - IA nativa para WordPress"}}}},"actions":{"add":"A\xf1adir","update":"Actualizar","activate":"Activar","deactivate":"Desactivar","migrateToOne":"Migrar a One","updateRequired":"Actualizaci\xf3n necesaria","confirmAdd":{"title":"A\xf1adir herramienta","msg":"\xbfEst\xe1 seguro de que desea a\xf1adir esta herramienta? Esto a\xf1adir\xe1 la herramienta a su cuenta y podr\xe1 usarla en sus proyectos.","ok":"A\xf1adir","cancel":"Cancelar"},"confirmActivate":{"title":"\xbfEst\xe1 seguro de que desea activar {name}? ","msg":"Al activar...","ok":"Activar","cancel":"Cancelar"},"confirmDeactivate":{"title":"\xbfEst\xe1 seguro de que desea desactivar {name}? ","msg":"Al desactivar...","ok":"Desactivar","cancel":"Ahora no"},"detachAi":"Separe la IA del editor de Elementor One","activateCore":"Active Editor Core para habilitar Editor Pro","confirmDetach":{"title":"Detach {name} ","msg":"{isEditorCore, select, true {Remove Elementor One from Editor AI. This lets you use it with another plan.} other {Remove the One plan from this plugin. This lets you use it with another plan.}}","ok":"Despegar","cancel":"Ahora no"},"confirmDeactivateOrDetach":{"title":"\xbfQu\xe9 te gustar\xeda hacer?","deactivateMsg":"Desactive esta capacidad y su complemento de WordPress. Puedes volver a activarlo en cualquier momento y seguir us\xe1ndolo con tu plan One.","deactivate":"Desactivar","msg":"{isEditorCore, select, true {Remove Elementor One from Editor AI. This lets you use it with another plan.} other {Remove the One plan from this plugin. This lets you use it with another plan.}}","detach":"Despegar","cancel":"Ahora no"},"confirmMigration":{"title":"Move {name} to Elementor One? ","msg":"{name} is currently active with its own subscription. You also have an Elementor One subscription for this site.<br/><br/>If you switch to Elementor One:<ul><li>Your current {name} subscription will be deactivated</li><li>{name} will use your shared Elementor One credits</li></ul>","ok":"Mover","cancel":"Ahora no"},"failedAction":{"install":"La instalaci\xf3n fall\xf3. Int\xe9ntelo de nuevo m\xe1s tarde.","activate":"La activaci\xf3n fall\xf3. Int\xe9ntelo de nuevo m\xe1s tarde.","deactivate":"La desactivaci\xf3n fall\xf3. Int\xe9ntelo de nuevo m\xe1s tarde.","migrate":"La migraci\xf3n fracas\xf3. Int\xe9ntelo de nuevo m\xe1s tarde.","detach":"El destacamento fracas\xf3. Int\xe9ntelo de nuevo m\xe1s tarde."}},"showMoreFeatures":"Mostrar m\xe1s caracter\xedsticas","hideMoreFeatures":"Ocultar m\xe1s caracter\xedsticas","noToolsFound":"Ninguna herramienta coincide con la b\xfasqueda","noToolsFoundDescription":"Intente ajustar sus filtros.","updateRequiredTooltip":"Los plugins actualizados tienen nuevas caracter\xedsticas y correcciones para que su sitio funcione de forma segura y fluida."}')}}]);

View File

@@ -0,0 +1 @@
"use strict";(self.webpackChunk=self.webpackChunk||[]).push([["1440"],{98227(e){e.exports=JSON.parse('{"title":"Gestionnaire d\u2019outils","subtitle":"Contr\xf4lez tous vos outils en UN seul endroit.","filters":{"all":"Tous","active":"Actif","disabled":"D\xe9sactiv\xe9","notInstalled":"Non install\xe9"},"back":"Retour \xe0 l\u2019aper\xe7u des outils","breadcrumb":{"home":"Accueil","toolManager":"Gestionnaire d\u2019outils"},"tools":{"build":{"title":"Construire","items":{"core":{"title":"Noyau de l\u2019\xe9diteur"},"pro":{"title":"\xc9diteur pro","features":{"themeBuilder":"Constructeur de th\xe8me","popups":"Popups","commerce":"Commerce","savedTemplates":"Mod\xe8les enregistr\xe9s","templateCategories":"Cat\xe9gories de mod\xe8les","starterTemplates":"Mod\xe8les de d\xe9marrage (mod\xe8les de site web)","customFonts":"Polices personnalis\xe9es","customIcons":"Ic\xf4nes personnalis\xe9es","customCode":"Code personnalis\xe9","customCss":"CSS personnalis\xe9"}},"ai":{"title":"IA agentique"}}},"optimize":{"title":"Optimiser","items":{"accessibility":{"title":"Accessibilit\xe9"},"io":{"title":"Optimisation d\u2019image"}}},"manage":{"title":"G\xe9rer","items":{"email":{"title":"D\xe9livrabilit\xe9 des e-mails"},"manage":{"title":"Gestion des sites"}}},"create":{"title":"Cr\xe9er","items":{"core":{"title":"Noyau de l\'\xe9diteur","withAI":"avec des capacit\xe9s d\'IA"},"pro":{"title":"\xc9diteur Pro","features":{"themeBuilder":"G\xe9n\xe9rateur de th\xe8me","popups":"Fen\xeatres contextuelles","commerce":"Commerce","savedTemplates":"Mod\xe8les enregistr\xe9s","templateCategories":"Cat\xe9gories de mod\xe8les","starterTemplates":"Mod\xe8les de d\xe9marrage (mod\xe8les de sites Web)","customFonts":"Polices personnalis\xe9es","customIcons":"Ic\xf4nes personnalis\xe9es","customCode":"Code personnalis\xe9","customCss":"CSS personnalis\xe9"}},"ai":{"title":"Angie - IA native pour WordPress"}}}},"actions":{"add":"Ajouter","update":"Mettre \xe0 jour","activate":"Activer","deactivate":"D\xe9sactiver","migrateToOne":"Migrer vers One","updateRequired":"Mise \xe0 jour requise","confirmAdd":{"title":"Ajouter un outil","msg":"Voulez-vous vraiment ajouter cet outil ? Cela ajoutera l\u2019outil \xe0 votre compte et vous pourrez l\u2019utiliser dans vos projets.","ok":"Ajouter","cancel":"Annuler"},"confirmActivate":{"title":"Voulez-vous vraiment activer {name}? ","msg":"En activant...","ok":"Activer","cancel":"Annuler"},"confirmDeactivate":{"title":"Voulez-vous vraiment d\xe9sactiver {name}? ","msg":"En d\xe9sactivant...","ok":"D\xe9sactiver","cancel":"Pas maintenant"},"detachAi":"D\xe9tacher l\'IA de l\'\xe9diteur d\'Elementor One","activateCore":"Activez Editor Core pour activer Editor Pro","confirmDetach":{"title":"Detach {name} ","msg":"{isEditorCore, select, true {Remove Elementor One from Editor AI. This lets you use it with another plan.} other {Remove the One plan from this plugin. This lets you use it with another plan.}}","ok":"D\xe9tacher","cancel":"Pas maintenant"},"confirmDeactivateOrDetach":{"title":"Qu\'aimeriez-vous faire ?","deactivateMsg":"D\xe9sactivez cette fonctionnalit\xe9 et son plugin WordPress. Vous pouvez le r\xe9activer \xe0 tout moment et continuer \xe0 l\u2019utiliser avec votre forfait One.","deactivate":"D\xe9sactiver","msg":"{isEditorCore, select, true {Remove Elementor One from Editor AI. This lets you use it with another plan.} other {Remove the One plan from this plugin. This lets you use it with another plan.}}","detach":"D\xe9tacher","cancel":"Pas maintenant"},"confirmMigration":{"title":"Move {name} to Elementor One? ","msg":"{name} is currently active with its own subscription. You also have an Elementor One subscription for this site.<br/><br/>If you switch to Elementor One:<ul><li>Your current {name} subscription will be deactivated</li><li>{name} will use your shared Elementor One credits</li></ul>","ok":"Se d\xe9placer","cancel":"Pas maintenant"},"failedAction":{"install":"L\'installation a \xe9chou\xe9. Veuillez r\xe9essayer plus tard.","activate":"L\'activation a \xe9chou\xe9. Veuillez r\xe9essayer plus tard.","deactivate":"La d\xe9sactivation a \xe9chou\xe9. Veuillez r\xe9essayer plus tard.","migrate":"La migration a \xe9chou\xe9. Veuillez r\xe9essayer plus tard.","detach":"Le d\xe9tachement a \xe9chou\xe9. Veuillez r\xe9essayer plus tard."}},"showMoreFeatures":"Afficher plus de fonctionnalit\xe9s","hideMoreFeatures":"Masquer plus de fonctionnalit\xe9s","noToolsFound":"Aucun outil ne correspond \xe0 cette recherche","noToolsFoundDescription":"Essayez d\u2019ajuster vos filtres.","updateRequiredTooltip":"Les extensions \xe0 jour offrent de nouvelles fonctionnalit\xe9s et des correctifs pour que votre site fonctionne en toute s\xe9curit\xe9 et sans probl\xe8me."}')}}]);

View File

@@ -0,0 +1 @@
"use strict";(self.webpackChunk=self.webpackChunk||[]).push([["1506"],{83577(e){e.exports=JSON.parse('{"apps":{"HOSTING":"Hosting","APP_AI":"Elementor AI","APP_IO":"Image Optimizer","APP_MAILER":"Site Mailer","PLUGIN":"Elementor Pro","APP_ACCESS":"Ally","APP_EMPMA":"Send","APP_MANAGE":"Elementor Manage"}}')}}]);

View File

@@ -0,0 +1 @@
"use strict";(self.webpackChunk=self.webpackChunk||[]).push([["1566"],{25629(e){e.exports=JSON.parse('{"onBoardingInstall":{"title":"Witaj w\\nElementor One!","description":"Zainstalujemy wszystkie funkcje Elementora.\\nJe\u015Bli nie chcesz ich instalowa\u0107, odznacz je teraz.","skip":"Pomi\u0144","continue":"Kontynuuj","installAndContinue":"Zainstaluj i kontynuuj","duringInstallation":"Podczas instalacji zaktualizujemy wszystkie narz\u0119dzia, kt\xf3re tego wymagaj\u0105.","tools":{"additionalBetaTools":"Dodatkowe narz\u0119dzia beta","editorCore":{"title":"Rdze\u0144 edytora","description":"Tw\xf3rz idealne strony internetowe za pomoc\u0105 interfejsu \u201Eprzeci\u0105gnij i upu\u015B\u0107\u201D"},"editorPro":{"title":"Edytor Pro","description":"Zbuduj ca\u0142\u0105 swoj\u0105 witryn\u0119 za pomoc\u0105 profesjonalnych narz\u0119dzi"},"imageOptimizer":{"title":"Optymalizacja obraz\xf3w","description":"Kompresuj i optymalizuj obrazy, aby zwi\u0119kszy\u0107 wydajno\u015B\u0107"},"accessibility":{"title":"Dost\u0119pno\u015B\u0107","description":"Znajd\u017A i napraw problemy z dost\u0119pno\u015Bci\u0105 na ca\u0142ej swojej witrynie"},"siteMailer":{"title":"Site Mailer","description":"Upewnij si\u0119, \u017Ce e-maile z Twojej witryny trafiaj\u0105 do skrzynki odbiorczej \u2013 nie do spamu"},"ai":{"title":"Natywna sztuczna inteligencja dla WordPressa","description":"Zmieniaj pomys\u0142y w strony, bloki i funkcje dzi\u0119ki natywnej sztucznej inteligencji "},"installed":"Ju\u017C zainstalowano","singleSub":"Pojedyncza subskrypcja","updateRequired":"Wymagana aktualizacja","updateRequiredTooltip":"Zostanie automatycznie zaktualizowany do najnowszej wersji","beta":"Beta"}},"siteIdentity":{"activeTheme":"Aktywny motyw:","getHelloElementor":"Pobierz hello elementor","goToDashboard":"Przejd\u017A do pulpitu nawigacyjnego","editSite":"Edytuj witryn\u0119","editSiteMenu":{"addPage":"Dodaj stron\u0119","addBlogPost":"Dodaj wpis na blogu","createHeader":"Utw\xf3rz nag\u0142\xf3wek","createFooter":"Utw\xf3rz stopk\u0119"},"helloThemeInstalled":"Motyw Hello Elementor zosta\u0142 pomy\u015Blnie zainstalowany","helloThemeInstallationFailed":"Instalacja motywu Hello Elementor nie powiod\u0142a si\u0119","helloThemeActivationFailed":"Aktywacja motywu Hello Elementor nie powiod\u0142a si\u0119","helloThemeActivated":"Motyw Hello Elementor aktywowany pomy\u015Blnie"},"capabilities":{"greeting":"Zacznijmy budowa\u0107.","filters":{"all":"Wszystkie","discover":"Odkryj","build":"Buduj","optimize":"Optymalizuj","manage":"Zarz\u0105dzaj"},"toolManager":"Mened\u017Cer narz\u0119dzi","addForFreeButton":"Dodaj za darmo","openButton":"Otw\xf3rz","goProButton":"Przejd\u017A na wersj\u0119 Pro","inProgressButton":"W toku","learnMore":{"upgrade":"Uaktualnij","install":"Zainstaluj"}},"toolManager":{"title":"Kontroluj wszystkie swoje narz\u0119dzia w JEDNYM miejscu."}}')}}]);

View File

@@ -0,0 +1 @@
"use strict";(self.webpackChunk=self.webpackChunk||[]).push([["1598"],{45693(a){a.exports=JSON.parse('{"downloadInvoice404":{"title":"Faktur Anda sedang diproses","message":"Kami akan mengirimkannya melalui email setelah selesai."},"supportedLanguages":{"en":"Bahasa Inggris","de":"Deutsch","es":"Espa\xf1ol","it":"Italiano","nl":"Nederlands","pt-PT":"Portugu\xeas","pt-BR":"Portugis (Brasil)","fr":"Bahasa Prancis","he-IL":"\u05E2\u05D1\u05E8\u05D9\u05EA"}}')}}]);

View File

@@ -0,0 +1 @@
"use strict";(self.webpackChunk=self.webpackChunk||[]).push([["1605"],{54708(e){e.exports=JSON.parse('{"dialog":{"title":"Deel uw feedback","fieldTitlePlaceholder":"Titel","fieldDescriptionPlaceholder":"Vertel ons wat u in gedachten had","fieldSubjectPlaceholder":"Selecteer het onderwerp van uw feedback","fieldProductPlaceholder":"Selecteer het product","note":"We waarderen uw feedback! Hoewel we alle inzendingen beoordelen, kunnen we niet garanderen dat elke suggestie zal leiden tot een wijziging of update.","subjects":{"leaveFeedback":"Geef feedback","reportBug":"Meld een bug","requestFeature":"Vraag een functie aan","shareThoughts":"Deel andere gedachten"},"products":{"general":"Algemeen","editor":"Editor","accessibility":"Toegankelijkheid","imageOptimization":"Afbeeldingsoptimalisatie","emailDeliverability":"E-mailbezorgbaarheid","siteManagement":"Site Management"},"cancel":"Annuleren","submit":"Verzenden","titleLengthError":"Titel moet minder dan 90 tekens bevatten","descriptionLengthError":"Beschrijving moet minder dan 1024 tekens bevatten","alert":{"title":"Hulp nodig of een probleem tegengekomen?","button":"Dien een supportticket in"}},"tooltipSuccess":"Feedback verzonden. Bedankt voor uw hulp.","tooltipError":"Er is iets misgegaan. Probeer uw feedback opnieuw te verzenden."}')}}]);

View File

@@ -0,0 +1 @@
"use strict";(self.webpackChunk=self.webpackChunk||[]).push([["1645"],{34892(e){e.exports=JSON.parse('{"copyClipboard":"Copiar para a \xe1rea de transfer\xeancia","copyClipboardSuccess":"Copiado!","noDataToDisplay":"Nenhum dado para exibir","search":"Pesquisar","sort":"Ordenar","pagination":{"rowsPerPage":"Linhas por p\xe1gina:","displayedRows":"{from}-{to} de {count}"},"tablePagination":{"rowsPerPage":"Linhas por p\xe1gina:","displayedRows":"{from}-{to} de {count}"},"phoneInput":{"countryCode":"C\xf3digo do pa\xeds","phoneNumber":"N\xfamero de telefone","countryCodeRequired":"O c\xf3digo do pa\xeds \xe9 obrigat\xf3rio","phoneNumberRequired":"O n\xfamero de telefone \xe9 obrigat\xf3rio"}}')}}]);

View File

@@ -0,0 +1 @@
"use strict";(self.webpackChunk=self.webpackChunk||[]).push([["1673"],{55824(e){e.exports=JSON.parse('{"copyClipboard":"\u05D4\u05E2\u05EA\u05E7\u05D4 \u05DC\u05DC\u05D5\u05D7","copyClipboardSuccess":"\u05D4\u05D5\u05E2\u05EA\u05E7!","noDataToDisplay":"\u05D0\u05D9\u05DF \u05E0\u05EA\u05D5\u05E0\u05D9\u05DD \u05DC\u05D4\u05E6\u05D2\u05D4","search":"\u05D7\u05D9\u05E4\u05D5\u05E9","sort":"\u05DE\u05D9\u05D9\u05DF","pagination":{"rowsPerPage":"\u05E9\u05D5\u05E8\u05D5\u05EA \u05DC\u05E2\u05DE\u05D5\u05D3:","displayedRows":"{from}\u2013{to} \u05DE\u05EA\u05D5\u05DA {count}"},"tablePagination":{"rowsPerPage":"\u05E9\u05D5\u05E8\u05D5\u05EA \u05DC\u05E2\u05DE\u05D5\u05D3:","displayedRows":"{from}\u2013{to} \u05DE\u05EA\u05D5\u05DA {count}"},"phoneInput":{"countryCode":"\u05E7\u05D5\u05D3 \u05DE\u05D3\u05D9\u05E0\u05D4","phoneNumber":"\u05DE\u05E1\u05E4\u05E8 \u05D8\u05DC\u05E4\u05D5\u05DF","countryCodeRequired":"\u05E7\u05D5\u05D3 \u05DE\u05D3\u05D9\u05E0\u05D4 \u05E0\u05D3\u05E8\u05E9","phoneNumberRequired":"\u05DE\u05E1\u05E4\u05E8 \u05D8\u05DC\u05E4\u05D5\u05DF \u05E0\u05D3\u05E8\u05E9"}}')}}]);

View File

@@ -0,0 +1 @@
"use strict";(self.webpackChunk=self.webpackChunk||[]).push([["1675"],{44694(e){e.exports=JSON.parse('{"apps":{"HOSTING":"Hosting","APP_AI":"Elementor AI","APP_IO":"Image Optimizer","APP_MAILER":"Site Mailer","PLUGIN":"Elementor Pro","APP_ACCESS":"Ally","APP_EMPMA":"Send","APP_MANAGE":"Elementor Manage"}}')}}]);

View File

@@ -0,0 +1 @@
"use strict";(self.webpackChunk=self.webpackChunk||[]).push([["1720"],{1659(e){e.exports=JSON.parse('{"downloadInvoice404":{"title":"Ihre Rechnung wird bearbeitet","message":"Wir senden sie Ihnen per E-Mail zu, sobald sie fertig ist."},"supportedLanguages":{"en":"Englisch","de":"Deutsch","es":"Spanisch","it":"Italienisch","nl":"Niederl\xe4ndisch","pt-PT":"Portugu\xeas","pt-BR":"Portugiesisch (Brasilien)","fr":"Franz\xf6sisch","he-IL":"\u05E2\u05D1\u05E8\u05D9\u05EA"}}')}}]);

View File

@@ -0,0 +1 @@
"use strict";(self.webpackChunk=self.webpackChunk||[]).push([["1744"],{71907(e){e.exports=JSON.parse('{"hi":"Ol\xe1. Tradu\xe7\xe3o do host","alerts":{"connect":{"description":"Tem um plano Elementor One?","action":"Ative-o aqui"},"installing":"Instalando\u2026 permane\xe7a nesta p\xe1gina ({current} de {total})","urlMismatch":{"title":"Sua licen\xe7a n\xe3o est\xe1 conectada a este dom\xednio","description":"Isso geralmente acontece ap\xf3s uma altera\xe7\xe3o de dom\xednio, como mudar para HTTPS ou trocar de URL.","action":"Corrigir URL incompat\xedvel"}}}')}}]);

View File

@@ -0,0 +1 @@
"use strict";(self.webpackChunk=self.webpackChunk||[]).push([["1745"],{42616(e){e.exports=JSON.parse('{"4.0-default":{"title":"The new default","description":"New sites now start with version 4.0 and atomic features enabled by default. Existing sites can choose to manually activate. Nothing happens to your existing layouts and sites.","topic":"Version 4.0","chipTags":["Atomic Editor"],"readMoreText":"Learn More","cta":""},"4.0-atomic-forms":{"title":"Atomic Forms","description":"Build forms as part of your layout, not separate widgets. Create flexible, multi-column designs, nest elements freely, and maintain full control with the same atomic system and styling logic.","topic":"Version 4.0","chipTags":["Atomic Editor"],"readMoreText":"Learn More","cta":""},"4.0-interactions":{"title":"Pro Interactions","description":"Create advanced, lightweight motion inside the Editor. Define behavior visually, keep everything system-based, and deliver engaging experiences without bloated scripts or external tools.","topic":"Version 4.0","chipTags":["Atomic Editor"],"readMoreText":"Learn More","cta":""},"4.0-sync-design-system":{"title":"Sync and share design systems","description":"Export and import Variables and Classes between sites, and sync them with v3 Global Styles. Maintain a consistent design system across projects and across versions.","topic":"Version 4.0","chipTags":["Atomic Editor"],"readMoreText":"Learn More","cta":""},"angie-launch":{"title":"Introducing Angie Code.","description":"Create custom Elementor widgets, and snippets for custom site functionality from a simple description. Built natively for WordPress, and Elementor. Preview safely, refine through conversation, and publish when ready.","topic":"Angie Code","chipTags":["New launch"],"readMoreText":"Learn More","cta":""},"partner-program":{"title":"Partner with Elementor. Grow your business.","description":"Join to unlock exclusive access, secure visibility, benefit from marketing opportunities, and create additional revenue from the work you have already done. Join for free and start benefiting!","chipTags":["Partner Program"],"readMoreText":"","cta":"Apply now"},"manage-launch":{"title":"Introducing Manage","description":"Monitor, optimize and maintain all your sites from one centralized dashboard. Track performance, perform bulk updates and detect security risks to stay ahead of issues.","chipTags":["New Launch"],"readMoreText":"","cta":"Start free"},"components-3.35":{"title":"Components","description":"Build modular, reusable sections that update everywhere and decide how much control to give away to your team or clients.","topic":"Version 4.0","chipTags":["Atomic Editor"],"readMoreText":"Learn More","cta":""},"one-launch":{"title":"Introducing Elementor One","description":"The complete website building experience. All the tools to create, optimize, and manage websites, unified under one roof.","chipTags":["New Launch"],"readMoreText":"","cta":"Explore Elementor One"},"atomic-tabs-3.34":{"title":"Atomic Tabs","description":"Nest any type of content inside tab triggers or content panels, unlocking a truly atomic way of design.","topic":"Version 4.0","chipTags":["Atomic Editor"],"readMoreText":"Learn More","cta":""},"variables-manager-3.33":{"title":"Variables Manager","description":"Centralize and control all your color, typography, and size tokens for consistent, scalable design systems.","topic":"Version 4.0","chipTags":["Atomic Editor"],"readMoreText":"Learn More","cta":""},"ally-assistant":{"title":"New! Fix accessibility issues with Ally Assistant","description":"Scan any page for accessibility issues and fix them in one click. From color contrast to missing alt text, Ally Assistant provides guided steps or AI-powered fixes to make your site more inclusive.","topic":"Ally by Elementor","chipTags":["New Feature"],"readMoreText":"","cta":"Scan for free"},"image-optimizer-3.19":{"title":"Effortlessly optimize images for a stunning, high-speed website with the Image Optimizer plugin.","description":"Image Optimizer perfectly balances between image quality and performance to boost your website. Resize, compress, and convert images to WebP, for faster loading times and and better user experience.","topic":"Image Optimizer Plugin by Elementor","chipTags":["New plugin"],"readMoreText":"","cta":"Get the Image Optimizer"},"5-star-rating-prompt":{"title":"Love the New Features? Let Us Know with 5 Stars!","description":"Help spread the word by telling the world what you love about Elementor.","chipTags":[],"readMoreText":"","cta":"Leave a Review"},"site-mailer-introducing":{"title":"Introducing Site Mailer","description":"Keep your WordPress emails out of the spam folder with improved deliverability and an easy setup\u2014no need for an SMTP plugin or complicated configurations.","topic":"Site Mailer Plugin by Elementor","chipTags":["New plugin"],"readMoreText":"","cta":"Start Free Trial"}}')}}]);

View File

@@ -0,0 +1 @@
"use strict";(self.webpackChunk=self.webpackChunk||[]).push([["1816"],{52523(t){t.exports=JSON.parse('{"hi":"\u05D4\u05D9\u05D9. \u05EA\u05E8\u05D2\u05D5\u05DD \u05DE\u05D0\u05E8\u05D7","alerts":{"connect":{"description":"\u05D9\u05E9 \u05DC\u05DA \u05EA\u05D5\u05DB\u05E0\u05D9\u05EA Elementor One?","action":"\u05D4\u05E4\u05E2\u05DC \u05D0\u05D5\u05EA\u05D4 \u05DB\u05D0\u05DF"},"installing":"\u05DE\u05EA\u05E7\u05D9\u05DF\u2026 \u05E0\u05D0 \u05DC\u05D4\u05D9\u05E9\u05D0\u05E8 \u05D1\u05D3\u05E3 \u05D6\u05D4 ({current} \u05DE\u05EA\u05D5\u05DA {total})","urlMismatch":{"title":"\u05D4\u05E8\u05D9\u05E9\u05D9\u05D5\u05DF \u05E9\u05DC\u05DA \u05D0\u05D9\u05E0\u05D5 \u05DE\u05D7\u05D5\u05D1\u05E8 \u05DC\u05D3\u05D5\u05DE\u05D9\u05D9\u05DF \u05D6\u05D4","description":"\u05D6\u05D4 \u05E7\u05D5\u05E8\u05D4 \u05D1\u05D3\u05E8\u05DA \u05DB\u05DC\u05DC \u05DC\u05D0\u05D7\u05E8 \u05E9\u05D9\u05E0\u05D5\u05D9 \u05D3\u05D5\u05DE\u05D9\u05D9\u05DF, \u05DB\u05D2\u05D5\u05DF \u05DE\u05E2\u05D1\u05E8 \u05DC-HTTPS \u05D0\u05D5 \u05D4\u05D7\u05DC\u05E4\u05EA \u05DB\u05EA\u05D5\u05D1\u05D5\u05EA URL.","action":"\u05EA\u05E7\u05DF \u05DB\u05EA\u05D5\u05D1\u05EA URL \u05E9\u05D0\u05D9\u05E0\u05D4 \u05EA\u05D5\u05D0\u05DE\u05EA"}}}')}}]);

View File

@@ -0,0 +1 @@
"use strict";(self.webpackChunk=self.webpackChunk||[]).push([["1832"],{7051(e){e.exports=JSON.parse('{"header":"URL no coincide","title":"\xbfC\xf3mo desea continuar?","description":"Su clave de licencia no coincide con su dominio actual, lo que provoca una falta de coincidencia.{br}Esto se debe muy probablemente a un cambio en la URL del dominio de su sitio.","actions":{"updateCurrentSite":{"title":"Actualizar la URL conectada","description":"Para cambios de URL en el mismo sitio, como de staging a producci\xf3n o de HTTP a HTTPS.","action":"Actualizar URL conectada"},"connectNewSite":{"title":"Conectar la URL como un nuevo sitio","description":"Para conectar un sitio completamente diferente. El historial anterior se eliminar\xe1.","action":"Conectar como un nuevo sitio"}}}')}}]);

View File

@@ -0,0 +1 @@
"use strict";(self.webpackChunk=self.webpackChunk||[]).push([["1897"],{37040(e){e.exports=JSON.parse('{"apps":{"HOSTING":"Hosting","APP_AI":"Elementor AI","APP_IO":"Image Optimizer","APP_MAILER":"Site Mailer","PLUGIN":"Elementor Pro","APP_ACCESS":"Ally","APP_EMPMA":"Send","APP_MANAGE":"Elementor Manage"}}')}}]);

View File

@@ -0,0 +1 @@
"use strict";(self.webpackChunk=self.webpackChunk||[]).push([["202"],{27281(a){a.exports=JSON.parse('{"hi":"Halo. Terjemahan host","alerts":{"connect":{"description":"Punya paket Elementor One?","action":"Aktifkan di sini"},"installing":"Menginstal\u2026 harap tetap di halaman ini ({current} dari {total})","urlMismatch":{"title":"Lisensi Anda tidak terhubung ke domain ini","description":"Ini biasanya terjadi setelah perubahan domain, seperti berpindah ke HTTPS atau mengganti URL.","action":"Perbaiki URL yang tidak cocok"}}}')}}]);

View File

@@ -0,0 +1 @@
"use strict";(self.webpackChunk=self.webpackChunk||[]).push([["2055"],{42874(e){e.exports=JSON.parse('{"header":"URL incompat\xedvel","title":"Como voc\xea gostaria de continuar?","description":"Sua chave de licen\xe7a n\xe3o corresponde ao seu dom\xednio atual, causando uma incompatibilidade.{br}Isso provavelmente se deve a uma altera\xe7\xe3o na URL de dom\xednio do seu site.","actions":{"updateCurrentSite":{"title":"Atualizar a URL conectada","description":"Para altera\xe7\xf5es de URL no mesmo site, como de staging para produ\xe7\xe3o ou de HTTP para HTTPS.","action":"Atualizar URL conectada"},"connectNewSite":{"title":"Conectar a URL como um novo site","description":"Para conectar um site completamente diferente. O hist\xf3rico anterior ser\xe1 removido.","action":"Conectar como um novo site"}}}')}}]);

View File

@@ -0,0 +1 @@
"use strict";(self.webpackChunk=self.webpackChunk||[]).push([["2059"],{62966(e){e.exports=JSON.parse('{"example":{"component":"Componente di esempio"},"header":{"title":"costruttore di siti web","userInfo":"Il mio conto","userProfileMenu":{"connectPreText":"Hai un piano Elementor One?","connect":"Collegare","goToMyAccount":"Vai a Il mio account","disconnect":"Disconnetti","elementorOneActive":"Elementore Uno","active":"Attivo","urlMismatch":"Rilevata mancata corrispondenza dell\'URL","fixUrlMismatch":"Risolvilo adesso"},"whatsNew":"Cosa c\'\xe8 di nuovo","whatsNewError":"Qualcosa \xe8 andato storto durante il recupero delle notifiche. Per favore riprova pi\xf9 tardi."}}')}}]);

File diff suppressed because one or more lines are too long

View File

@@ -0,0 +1 @@
"use strict";(self.webpackChunk=self.webpackChunk||[]).push([["21"],{42196(i){i.exports=JSON.parse('{"title":"Gestore strumenti","subtitle":"Controlla tutti i tuoi strumenti in UN UNICO posto.","filters":{"all":"Tutti","active":"Attivi","disabled":"Disattivati","notInstalled":"Non installati"},"back":"Torna alla panoramica degli strumenti","breadcrumb":{"home":"Home","toolManager":"Gestore strumenti"},"tools":{"build":{"title":"Costruisci","items":{"core":{"title":"Editor core"},"pro":{"title":"Editor pro","features":{"themeBuilder":"Costruttore di temi","popups":"Popup","commerce":"Commercio","savedTemplates":"Modelli salvati","templateCategories":"Categorie di modelli","starterTemplates":"Modelli di avvio (modelli di siti web)","customFonts":"Font personalizzati","customIcons":"Icone personalizzate","customCode":"Codice personalizzato","customCss":"CSS personalizzato"}},"ai":{"title":"AI agentica"}}},"optimize":{"title":"Ottimizza","items":{"accessibility":{"title":"Accessibilit\xe0"},"io":{"title":"Ottimizzazione immagini"}}},"manage":{"title":"Gestisci","items":{"email":{"title":"Deliverability email"},"manage":{"title":"Gestione del sito"}}},"create":{"title":"Creare","items":{"core":{"title":"Nucleo editoriale","withAI":"con funzionalit\xe0 di intelligenza artificiale"},"pro":{"title":"Redattore professionista","features":{"themeBuilder":"Costruttore di temi","popups":"Popup","commerce":"Commercio","savedTemplates":"Modelli salvati","templateCategories":"Categorie di modelli","starterTemplates":"Modelli iniziali (modelli di siti Web)","customFonts":"Caratteri personalizzati","customIcons":"Icone personalizzate","customCode":"Codice personalizzato","customCss":"CSS personalizzato"}},"ai":{"title":"Angie - AI nativa per WordPress"}}}},"actions":{"add":"Aggiungi","update":"Aggiorna","activate":"Attiva","deactivate":"Disattiva","migrateToOne":"Migra a One","updateRequired":"Aggiornamento richiesto","confirmAdd":{"title":"Aggiungi strumento","msg":"Sei sicuro di voler aggiungere questo strumento? Questo aggiunger\xe0 lo strumento al tuo account e potrai usarlo nei tuoi progetti.","ok":"Aggiungi","cancel":"Annulla"},"confirmActivate":{"title":"Sei sicuro di voler attivare {name}? ","msg":"Attivando...","ok":"Attiva","cancel":"Annulla"},"confirmDeactivate":{"title":"Sei sicuro di voler disattivare {name}? ","msg":"Disattivando...","ok":"Disattiva","cancel":"Non ora"},"detachAi":"Scollega Editor AI da Elementor One","activateCore":"Attiva Editor Core per abilitare Editor Pro","confirmDetach":{"title":"Detach {name} ","msg":"{isEditorCore, select, true {Remove Elementor One from Editor AI. This lets you use it with another plan.} other {Remove the One plan from this plugin. This lets you use it with another plan.}}","ok":"Stacca","cancel":"Non adesso"},"confirmDeactivateOrDetach":{"title":"Cosa ti piacerebbe fare?","deactivateMsg":"Disattiva questa funzionalit\xe0 e il relativo plug-in WordPress. Puoi riattivarlo in qualsiasi momento e continuare a utilizzarlo con il tuo piano One.","deactivate":"Disattivare","msg":"{isEditorCore, select, true {Remove Elementor One from Editor AI. This lets you use it with another plan.} other {Remove the One plan from this plugin. This lets you use it with another plan.}}","detach":"Stacca","cancel":"Non adesso"},"confirmMigration":{"title":"Move {name} to Elementor One? ","msg":"{name} is currently active with its own subscription. You also have an Elementor One subscription for this site.<br/><br/>If you switch to Elementor One:<ul><li>Your current {name} subscription will be deactivated</li><li>{name} will use your shared Elementor One credits</li></ul>","ok":"Mossa","cancel":"Non adesso"},"failedAction":{"install":"Installazione non riuscita. Per favore riprova pi\xf9 tardi.","activate":"Attivazione non riuscita. Per favore riprova pi\xf9 tardi.","deactivate":"Disattivazione non riuscita. Per favore riprova pi\xf9 tardi.","migrate":"La migrazione non \xe8 riuscita. Per favore riprova pi\xf9 tardi.","detach":"Distacco fallito. Per favore riprova pi\xf9 tardi."}},"showMoreFeatures":"Mostra pi\xf9 funzionalit\xe0","hideMoreFeatures":"Nascondi pi\xf9 funzionalit\xe0","noToolsFound":"Nessuno strumento corrisponde alla ricerca","noToolsFoundDescription":"Prova a modificare i filtri.","updateRequiredTooltip":"I plugin aggiornati hanno nuove funzionalit\xe0 e correzioni per far s\xec che il tuo sito funzioni in modo sicuro e fluido."}')}}]);

View File

@@ -0,0 +1 @@
"use strict";(self.webpackChunk=self.webpackChunk||[]).push([["2127"],{56658(a){a.exports=JSON.parse('{"copyClipboard":"Salin ke papan klip","copyClipboardSuccess":"Tersalin!","noDataToDisplay":"Tidak ada data untuk ditampilkan","search":"Cari","sort":"Urutkan","pagination":{"rowsPerPage":"Baris per halaman:","displayedRows":"{from}-{to} dari {count}"},"phoneInput":{"countryCode":"Kode negara","phoneNumber":"Nomor telepon","countryCodeRequired":"Kode negara wajib diisi","phoneNumberRequired":"Nomor telepon wajib diisi"}}')}}]);

View File

@@ -0,0 +1 @@
"use strict";(self.webpackChunk=self.webpackChunk||[]).push([["2176"],{6659(o){o.exports=JSON.parse('{"copyClipboard":"Copiar al portapapeles","copyClipboardSuccess":"\xa1Copiado!","noDataToDisplay":"No hay datos para mostrar","search":"Buscar","sort":"Ordenar","pagination":{"rowsPerPage":"Filas por p\xe1gina:","displayedRows":"{from}-{to} de {count}"},"tablePagination":{"rowsPerPage":"Filas por p\xe1gina:","displayedRows":"{from}-{to} de {count}"},"phoneInput":{"countryCode":"C\xf3digo de pa\xeds","phoneNumber":"N\xfamero de tel\xe9fono","countryCodeRequired":"El c\xf3digo de pa\xeds es obligatorio","phoneNumberRequired":"El n\xfamero de tel\xe9fono es obligatorio"}}')}}]);

View File

@@ -0,0 +1 @@
"use strict";(self.webpackChunk=self.webpackChunk||[]).push([["2266"],{3313(e){e.exports=JSON.parse('{"example":{"component":"Componente de ejemplo"},"header":{"title":"creador de sitios web","userInfo":"mi cuenta","userProfileMenu":{"connectPreText":"\xbfTienes un plan Elementor One?","connect":"Conectar","goToMyAccount":"Ir a mi cuenta","disconnect":"Desconectar","elementorOneActive":"Elementor Uno","active":"Activo","urlMismatch":"Se detect\xf3 una URL que no coincide","fixUrlMismatch":"Arreglar ahora"},"whatsNew":"Qu\xe9 hay de nuevo","whatsNewError":"Algo sali\xf3 mal al recuperar las notificaciones. Int\xe9ntelo de nuevo m\xe1s tarde."}}')}}]);

View File

@@ -0,0 +1 @@
"use strict";(self.webpackChunk=self.webpackChunk||[]).push([["240"],{75251(e){e.exports=JSON.parse('{"dialog":{"title":"Geri bildiriminizi payla\u015F\u0131n","fieldTitlePlaceholder":"Ba\u015Fl\u0131k","fieldDescriptionPlaceholder":"Akl\u0131n\u0131zdakileri bize anlat\u0131n","fieldSubjectPlaceholder":"Geri bildiriminizin konusunu se\xe7in","fieldProductPlaceholder":"\xdcr\xfcn\xfc se\xe7in","note":"Geri bildiriminiz i\xe7in te\u015Fekk\xfcr ederiz! T\xfcm g\xf6nderimleri incelesek de her \xf6nerinin bir de\u011Fi\u015Fiklikle veya g\xfcncellemeyle sonu\xe7lanaca\u011F\u0131n\u0131 garanti edemeyiz.","subjects":{"leaveFeedback":"Geri bildirim b\u0131rak\u0131n","reportBug":"Hata bildirin","requestFeature":"\xd6zellik isteyin","shareThoughts":"Di\u011Fer d\xfc\u015F\xfcncelerinizi payla\u015F\u0131n"},"products":{"general":"Genel","editor":"D\xfczenleyici","accessibility":"Eri\u015Filebilirlik","imageOptimization":"G\xf6rsel optimizasyonu","emailDeliverability":"E-posta teslim edilebilirli\u011Fi","siteManagement":"Site Management"},"cancel":"\u0130ptal","submit":"G\xf6nder","titleLengthError":"Ba\u015Fl\u0131k 90 karakterden az olmal\u0131","descriptionLengthError":"A\xe7\u0131klama 1024 karakterden az olmal\u0131","alert":{"title":"Yard\u0131ma m\u0131 ihtiyac\u0131n\u0131z var veya bir sorunla m\u0131 kar\u015F\u0131la\u015Ft\u0131n\u0131z?","button":"Destek talebi g\xf6nderin"}},"tooltipSuccess":"Geri bildirim g\xf6nderildi. Bize yard\u0131m etti\u011Finiz i\xe7in te\u015Fekk\xfcrler.","tooltipError":"Bir \u015Feyler ters gitti. L\xfctfen geri bildiriminizi tekrar g\xf6ndermeyi deneyin."}')}}]);

View File

@@ -0,0 +1 @@
"use strict";(self.webpackChunk=self.webpackChunk||[]).push([["2455"],{96794(e){e.exports=JSON.parse('{"dialog":{"title":"Partagez vos commentaires","fieldTitlePlaceholder":"Titre","fieldDescriptionPlaceholder":"Dites-nous ce que vous aviez en t\xeate","fieldSubjectPlaceholder":"S\xe9lectionnez le sujet de vos commentaires","fieldProductPlaceholder":"S\xe9lectionner le produit","note":"Nous appr\xe9cions vos commentaires ! Bien que nous examinions toutes les soumissions, nous ne pouvons pas garantir que chaque suggestion entra\xeenera un changement ou une mise \xe0 jour.","subjects":{"leaveFeedback":"Laisser un commentaire","reportBug":"Signaler un bug","requestFeature":"Demander une fonctionnalit\xe9","shareThoughts":"Partager d\u2019autres r\xe9flexions"},"products":{"general":"G\xe9n\xe9ral","editor":"\xc9diteur","accessibility":"Accessibilit\xe9","imageOptimization":"Optimisation des images","emailDeliverability":"D\xe9livrabilit\xe9 des e-mails","siteManagement":"Site Management"},"cancel":"Annuler","submit":"Envoyer","titleLengthError":"Le titre doit contenir moins de 90 caract\xe8res","descriptionLengthError":"La description doit contenir moins de 1024 caract\xe8res","alert":{"title":"Besoin d\'aide ou rencontr\xe9 un probl\xe8me ?","button":"Envoyer un ticket d\'assistance"}},"tooltipSuccess":"Commentaires envoy\xe9s. Merci de nous avoir aid\xe9s.","tooltipError":"Une erreur s\'est produite. Veuillez r\xe9essayer d\'envoyer vos commentaires."}')}}]);

View File

@@ -0,0 +1 @@
"use strict";(self.webpackChunk=self.webpackChunk||[]).push([["2503"],{86186(e){e.exports=JSON.parse('{"apps":{"HOSTING":"\u05D0\u05D9\u05E8\u05D5\u05D7","APP_AI":"Elementor AI","APP_IO":"Image Optimizer","APP_MAILER":"Site Mailer","PLUGIN":"Elementor Pro","APP_ACCESS":"Ally","APP_EMPMA":"Send","APP_MANAGE":"Elementor Manage"}}')}}]);

View File

@@ -0,0 +1 @@
"use strict";(self.webpackChunk=self.webpackChunk||[]).push([["2551"],{62426(e){e.exports=JSON.parse('{"copyClipboard":"In die Zwischenablage kopieren","copyClipboardSuccess":"Kopiert!","noDataToDisplay":"Keine Daten zum Anzeigen","search":"Suchen","sort":"Sortieren","pagination":{"rowsPerPage":"Zeilen pro Seite:","displayedRows":"{from}\u2013{to} von {count}"},"tablePagination":{"rowsPerPage":"Zeilen pro Seite:","displayedRows":"{from}\u2013{to} von {count}"},"phoneInput":{"countryCode":"L\xe4ndervorwahl","phoneNumber":"Telefonnummer","countryCodeRequired":"L\xe4ndervorwahl ist erforderlich","phoneNumberRequired":"Telefonnummer ist erforderlich"}}')}}]);

View File

@@ -0,0 +1 @@
"use strict";(self.webpackChunk=self.webpackChunk||[]).push([["2558"],{30685(e){e.exports=JSON.parse('{"onBoardingInstall":{"title":"Bem-vindo ao\\nElementor One!","description":"Iremos instalar todas as funcionalidades do Elementor.\\nSe n\xe3o quiser instalar, desassinale-as agora.","skip":"Ignorar","continue":"Continuar","installAndContinue":"Instalar e continuar","duringInstallation":"Durante a instala\xe7\xe3o, atualizaremos todas as ferramentas que o exijam.","tools":{"additionalBetaTools":"Ferramentas beta adicionais","editorCore":{"title":"Editor Core","description":"Crie sites perfeitos com uma interface de arrastar e largar"},"editorPro":{"title":"Editor Pro","description":"Crie o seu site completo com ferramentas profissionais"},"imageOptimizer":{"title":"Otimiza\xe7\xe3o de imagem","description":"Comprima e otimize imagens para aumentar o desempenho"},"accessibility":{"title":"Acessibilidade","description":"Encontre e corrija problemas de acessibilidade em todo o seu site"},"siteMailer":{"title":"Site Mailer","description":"Garanta que os emails do seu site chegam \xe0 caixa de entrada \u2013 n\xe3o ao spam"},"ai":{"title":"IA nativa para WordPress","description":"Transforme ideias em p\xe1ginas, blocos e funcionalidades com IA nativa "},"installed":"J\xe1 instalado","singleSub":"Subscri\xe7\xe3o \xfanica","updateRequired":"Atualiza\xe7\xe3o necess\xe1ria","updateRequiredTooltip":"Ser\xe1 automaticamente atualizado para a vers\xe3o mais recente","beta":"Beta","manage":{"title":"Gest\xe3o do site","description":"Monitorize, otimize e fa\xe7a a gest\xe3o de todos os seus sites num s\xf3 s\xedtio"},"installedTooltip":"Pode desinstalar as ferramentas instaladas no gestor de ferramentas."},"installedToolTip":"Pode desinstalar as ferramentas instaladas no gestor de ferramentas.","conflictsDialog":{"update":{"title":"Atualiza\xe7\xf5es dispon\xedveis","description":"Estas ferramentas usam vers\xf5es antigas. Atualize para obter o melhor desempenho e seguran\xe7a.","selectTools":"Selecione as ferramentas a atualizar","action":"{nothingIsSelected, select, true {Continuar} other {Atualizar e continuar}}"},"migrate":{"title":"Migra\xe7\xe3o necess\xe1ria","description":"Estas ferramentas n\xe3o est\xe3o migradas para o Elementor One. Migre para obter o melhor desempenho e seguran\xe7a.","selectTools":"Selecione as ferramentas a migrar","action":"{nothingIsSelected, select, true {Continuar} other {Mover e continuar}}"},"manageLater":"Pode gerir estas atualiza\xe7\xf5es mais tarde no gestor de ferramentas","step":"Passo {step} de {total}"}},"siteIdentity":{"activeTheme":"Tema ativo:","getHelloElementor":"Obter hello elementor","goToDashboard":"Ir para o painel de controlo","editSite":"Editar site","editSiteMenu":{"addPage":"Adicionar uma p\xe1gina","addBlogPost":"Adicionar uma publica\xe7\xe3o de blogue","createHeader":"Criar um cabe\xe7alho","createFooter":"Criar um rodap\xe9"},"helloThemeInstalled":"Tema Hello Elementor instalado com sucesso","helloThemeInstallationFailed":"A instala\xe7\xe3o do tema Hello Elementor falhou","helloThemeActivationFailed":"A ativa\xe7\xe3o do tema Hello Elementor falhou","helloThemeActivated":"Tema Hello Elementor ativado com sucesso","goToSiteSetup":"Ir \xe0 configura\xe7\xe3o do site"},"capabilities":{"greeting":"Vamos come\xe7ar a construir.","filters":{"all":"Tudo","discover":"Descobrir","build":"Construir","optimize":"Otimizar","manage":"Gerir","featured":"Em destaque","create":"Criar"},"toolManager":"Gestor de ferramentas","addForFreeButton":"Adicionar gratuitamente","openButton":"Abrir","goProButton":"Tornar-se Pro","inProgressButton":"Em progresso","learnMore":{"upgrade":"Atualizar","install":"Instalar","open":"Abrir"},"isNew":"Novo"},"toolManager":{"title":"Controle todas as suas ferramentas num S\xd3 lugar."},"welcomeModal":{"letsStart":{"title":"Bem-vindo ao <br />novo Elementor!","description":"Crie, otimize e fa\xe7a a gest\xe3o do seu site <br />a partir de um \xfanico espa\xe7o de trabalho poderoso.","button":"Vamos come\xe7ar"}}}')}}]);

View File

@@ -0,0 +1 @@
"use strict";(self.webpackChunk=self.webpackChunk||[]).push([["2569"],{10688(o){o.exports=JSON.parse('{"header":"URL non corrispondente","title":"Come vuoi continuare?","description":"La tua chiave di licenza non corrisponde al tuo dominio attuale, causando una mancata corrispondenza.{br}Ci\xf2 \xe8 molto probabilmente dovuto a una modifica dell\'URL del dominio del tuo sito.","actions":{"updateCurrentSite":{"title":"Aggiorna l\'URL connesso","description":"Per modifiche dell\'URL sullo stesso sito, come da staging a produzione o da HTTP a HTTPS.","action":"Aggiorna URL connesso"},"connectNewSite":{"title":"Connetti l\'URL come nuovo sito","description":"Per connettere un sito completamente diverso. La cronologia precedente verr\xe0 rimossa.","action":"Connetti come nuovo sito"}}}')}}]);

View File

@@ -0,0 +1 @@
"use strict";(self.webpackChunk=self.webpackChunk||[]).push([["2590"],{14477(e){e.exports=JSON.parse('{"4.0-default":{"title":"De nieuwe standaard","description":"Nieuwe sites starten met versie 4.0 en atomische functies standaard ingeschakeld. Bestaande sites kunnen ze handmatig inschakelen. Uw huidige lay-outs en sites blijven ongewijzigd.","topic":"Versie 4.0","chipTags":["Atomic Editor"],"readMoreText":"Meer informatie","cta":""},"4.0-atomic-forms":{"title":"Atomic Forms","description":"Bouw formulieren als onderdeel van de lay-out, niet als losse widgets. Flexibele meer-kolom lay-outs, vrij nestelen en volledige controle met hetzelfde atomaire systeem.","topic":"Versie 4.0","chipTags":["Atomic Editor"],"readMoreText":"Meer informatie","cta":""},"4.0-interactions":{"title":"Pro-interacties","description":"Maak geavanceerde, lichte beweging in de Editor. Gedrag visueel defini\xebren, alles systeemgebaseerd, zonder zware scripts of externe tools.","topic":"Versie 4.0","chipTags":["Atomic Editor"],"readMoreText":"Meer informatie","cta":""},"4.0-sync-design-system":{"title":"Designsystemen synchroniseren en delen","description":"Exporteer en importeer variabelen en classes tussen sites en synchroniseer met Global Styles v3. Een consistent design over projecten en versies.","topic":"Versie 4.0","chipTags":["Atomic Editor"],"readMoreText":"Meer informatie","cta":""},"angie-launch":{"title":"Angie Code: kennismaking","description":"Maak aangepaste Elementor-widgets en snippets op basis van een korte omschrijving. Ingebouwd voor WordPress en Elementor. Veilig previewen, in gesprek verfijnen en publiceren wanneer u wilt.","topic":"Angie Code","chipTags":["Nieuwe release"],"readMoreText":"Meer informatie","cta":""},"partner-program":{"title":"Word partner van Elementor. Laat uw bedrijf groeien.","description":"Sluit u aan voor exclusieve toegang, zichtbaarheid, marketingkansen en extra omzet op werk dat u al doet. Gratis starten en profiteren.","chipTags":["Partnerprogramma"],"readMoreText":"","cta":"Nu solliciteren"},"manage-launch":{"title":"Manage: kennismaking","description":"Bewaak, optimaliseer en onderhoud al uw sites vanaf \xe9\xe9n centraal dashboard. Prestaties, bulkupdates en beveiligingsrisico\u2019s.","chipTags":["Nieuwe release"],"readMoreText":"","cta":"Gratis beginnen"},"components-3.35":{"title":"Componenten","description":"Bouw modulaire, herbruikbare secties die overal mee veranderen en bepaal hoeveel controle u aan team of klanten geeft.","topic":"Versie 4.0","chipTags":["Atomic Editor"],"readMoreText":"Meer informatie","cta":""},"one-launch":{"title":"Elementor One: kennismaking","description":"De volledige ervaring voor het bouwen van websites. Alle tools om te maken, te optimaliseren en te beheren, op \xe9\xe9n plek.","chipTags":["Nieuwe release"],"readMoreText":"","cta":"Elementor One verkennen"},"atomic-tabs-3.34":{"title":"Atomic tabs","description":"Plaats willekeurige inhoud in tabtriggers of -panelen, echt atomisch ontworpen.","topic":"Versie 4.0","chipTags":["Atomic Editor"],"readMoreText":"Meer informatie","cta":""},"variables-manager-3.33":{"title":"Variabelebeheer","description":"Centraliseer kleuren, typografie en grootte-tokens voor consistente, schaalbare designsystemen.","topic":"Versie 4.0","chipTags":["Atomic Editor"],"readMoreText":"Meer informatie","cta":""},"ally-assistant":{"title":"Nieuw: toegankelijkheid met Ally Assistant","description":"Scan elke pagina en los problemen in \xe9\xe9n klik op: van contrast tot alt-tekst. Geleide stappen of AI-correcties voor een inclusievere site.","topic":"Ally by Elementor","chipTags":["Nieuwe functie"],"readMoreText":"","cta":"Gratis scannen"},"image-optimizer-3.19":{"title":"Optimaliseer eenvoudig afbeeldingen voor een snelle, indrukwekkende site met de Image Optimizer-plugin.","description":"Image Optimizer balanceert kwaliteit en prestaties. Formaat, compressie, WebP: sneller laden, betere ervaring.","topic":"Image Optimizer Plugin by Elementor","chipTags":["Nieuwe plugin"],"readMoreText":"","cta":"Image Optimizer halen"},"5-star-rating-prompt":{"title":"Blij met de nieuwe functies? Geef 5 sterren","description":"Vertel wat u waardeert aan Elementor.","chipTags":[],"readMoreText":"","cta":"Beoordeling achterlaten"},"site-mailer-introducing":{"title":"Site Mailer: kennismaking","description":"Houd WordPress-e-mail uit de spam: betere aflevering en eenvoudige setup, zonder lastige SMTP-configuratie.","topic":"Site Mailer Plugin by Elementor","chipTags":["Nieuwe plugin"],"readMoreText":"","cta":"Gratis proefperiode"}}')}}]);

View File

@@ -0,0 +1 @@
"use strict";(self.webpackChunk=self.webpackChunk||[]).push([["2591"],{48402(e){e.exports=JSON.parse('{"header":"URL mismatch","title":"How would you like to continue?","description":"Your license key does not match your current domain, causing a mismatch.{br}This is most likely due to a change in the domain URL of your site.","actions":{"updateCurrentSite":{"title":"Update the connected URL","description":"For URL changes on the same site, like staging to production or HTTP to HTTPS.","action":"Update connected URL"},"connectNewSite":{"title":"Connect the URL as a new site","description":"For connecting a completely different site. Previous history will be removed.","action":"Connect as a new site"}}}')}}]);

View File

@@ -0,0 +1 @@
"use strict";(self.webpackChunk=self.webpackChunk||[]).push([["2619"],{80118(e){e.exports=JSON.parse('{"apps":{"HOSTING":"Hosting","APP_AI":"Elementor AI","APP_IO":"Image Optimizer","APP_MAILER":"Site Mailer","PLUGIN":"Elementor Pro","APP_ACCESS":"Ally","APP_EMPMA":"Send","APP_MANAGE":"Elementor Manage"}}')}}]);

View File

@@ -0,0 +1 @@
"use strict";(self.webpackChunk=self.webpackChunk||[]).push([["271"],{41090(e){e.exports={}}}]);

View File

@@ -0,0 +1 @@
"use strict";(self.webpackChunk=self.webpackChunk||[]).push([["2716"],{54103(e){e.exports=JSON.parse('{"dialog":{"title":"\u05E9\u05EA\u05E3 \u05D0\u05EA \u05D4\u05DE\u05E9\u05D5\u05D1 \u05E9\u05DC\u05DA","fieldTitlePlaceholder":"\u05DB\u05D5\u05EA\u05E8\u05EA","fieldDescriptionPlaceholder":"\u05E1\u05E4\u05E8 \u05DC\u05E0\u05D5 \u05DE\u05D4 \u05D7\u05E9\u05D1\u05EA","fieldSubjectPlaceholder":"\u05D1\u05D7\u05E8 \u05D0\u05EA \u05E0\u05D5\u05E9\u05D0 \u05D4\u05DE\u05E9\u05D5\u05D1 \u05E9\u05DC\u05DA","fieldProductPlaceholder":"\u05D1\u05D7\u05E8 \u05D0\u05EA \u05D4\u05DE\u05D5\u05E6\u05E8","note":"\u05D0\u05E0\u05D5 \u05DE\u05E2\u05E8\u05D9\u05DB\u05D9\u05DD \u05D0\u05EA \u05D4\u05DE\u05E9\u05D5\u05D1 \u05E9\u05DC\u05DA! \u05D0\u05E0\u05D5 \u05D1\u05D5\u05D3\u05E7\u05D9\u05DD \u05D0\u05EA \u05DB\u05DC \u05D4\u05D4\u05D2\u05E9\u05D5\u05EA, \u05D0\u05DA \u05D0\u05D9\u05E0\u05E0\u05D5 \u05D9\u05DB\u05D5\u05DC\u05D9\u05DD \u05DC\u05D4\u05D1\u05D8\u05D9\u05D7 \u05E9\u05DB\u05DC \u05D4\u05E6\u05E2\u05D4 \u05EA\u05D5\u05D1\u05D9\u05DC \u05DC\u05E9\u05D9\u05E0\u05D5\u05D9 \u05D0\u05D5 \u05E2\u05D3\u05DB\u05D5\u05DF.","subjects":{"leaveFeedback":"\u05D4\u05E9\u05D0\u05E8 \u05DE\u05E9\u05D5\u05D1","reportBug":"\u05D3\u05D5\u05D5\u05D7 \u05E2\u05DC \u05D1\u05D0\u05D2","requestFeature":"\u05D1\u05E7\u05E9 \u05EA\u05DB\u05D5\u05E0\u05D4","shareThoughts":"\u05E9\u05EA\u05E3 \u05DB\u05DC \u05DE\u05D7\u05E9\u05D1\u05D4 \u05D0\u05D7\u05E8\u05EA"},"products":{"general":"\u05DB\u05DC\u05DC\u05D9","editor":"\u05E2\u05D5\u05E8\u05DA","accessibility":"\u05E0\u05D2\u05D9\u05E9\u05D5\u05EA","imageOptimization":"\u05D0\u05D5\u05E4\u05D8\u05D9\u05DE\u05D9\u05D6\u05E6\u05D9\u05D9\u05EA \u05EA\u05DE\u05D5\u05E0\u05D4","emailDeliverability":"\u05D9\u05DB\u05D5\u05DC\u05EA \u05DE\u05E1\u05D9\u05E8\u05EA email","siteManagement":"Site Management"},"cancel":"\u05D1\u05D9\u05D8\u05D5\u05DC","submit":"\u05E9\u05DC\u05D7","titleLengthError":"\u05D4\u05DB\u05D5\u05EA\u05E8\u05EA \u05D7\u05D9\u05D9\u05D1\u05EA \u05DC\u05D4\u05D9\u05D5\u05EA \u05E4\u05D7\u05D5\u05EA \u05DE-90 \u05EA\u05D5\u05D5\u05D9\u05DD","descriptionLengthError":"\u05D4\u05EA\u05D9\u05D0\u05D5\u05E8 \u05D7\u05D9\u05D9\u05D1 \u05DC\u05D4\u05D9\u05D5\u05EA \u05E4\u05D7\u05D5\u05EA \u05DE-1024 \u05EA\u05D5\u05D5\u05D9\u05DD","alert":{"title":"\u05D6\u05E7\u05D5\u05E7 \u05DC\u05E2\u05D6\u05E8\u05D4 \u05D0\u05D5 \u05E0\u05EA\u05E7\u05DC\u05EA \u05D1\u05D1\u05E2\u05D9\u05D4?","button":"\u05E9\u05DC\u05D7 \u05D1\u05E7\u05E9\u05EA \u05EA\u05DE\u05D9\u05DB\u05D4"}},"tooltipSuccess":"\u05D4\u05DE\u05E9\u05D5\u05D1 \u05E0\u05E9\u05DC\u05D7. \u05EA\u05D5\u05D3\u05D4 \u05E9\u05E2\u05D6\u05E8\u05EA \u05DC\u05E0\u05D5.","tooltipError":"\u05DE\u05E9\u05D4\u05D5 \u05D4\u05E9\u05EA\u05D1\u05E9. \u05D0\u05E0\u05D0 \u05E0\u05E1\u05D4 \u05DC\u05E9\u05DC\u05D5\u05D7 \u05D0\u05EA \u05D4\u05DE\u05E9\u05D5\u05D1 \u05E9\u05DC\u05DA \u05E9\u05D5\u05D1."}')}}]);

View File

@@ -0,0 +1 @@
"use strict";(self.webpackChunk=self.webpackChunk||[]).push([["2757"],{66580(e){e.exports=JSON.parse('{"wPLoginAttempts":"WP-inlogpogingen.","wPLoginAttemptsResetSuccess":"WP-inlogpogingen zijn succesvol gereset.","errorTryAgain":"Er is iets misgegaan, probeer het opnieuw.","backupCreation":"Back-up maken.","backupCreated":"Site back-up is succesvol gemaakt.","backupUpdate":"Site back-up is succesvol bijgewerkt.","backupUpdated":"Site back-up is succesvol bijgewerkt.","backupRestore":"Back-up herstellen.","backupDelete":"Back-up verwijderen.","backupDeleted":"Back-up is verwijderd.","backupExport":"Back-up exporteren.","backupExportSuccessToast":"U ontvangt binnenkort een e-mail met de downloadlink.","debugMode":"Debugmodus.","debugModeSwithFailed":"{value, select, true {Uitschakelen} other {Inschakelen}} van debugmodus is mislukt, probeer het opnieuw.","siteDeletion":"Site verwijdering.","siteDeleted":"Site is verwijderd.","setFavoriteSuccess":"{domain} is toegevoegd aan uw favoriete sites.","removeFavoriteSuccess":"{domain} is verwijderd uit uw favoriete sites.","maxReachedFavorites":"Je hebt het maximale aantal favorieten bereikt.","generalErrorToast":"Oeps, dat werkte niet. Probeer het later opnieuw.","websiteDeactivation":"Website deactiveren.","setDefaultPaymentFailed":"Standaard betaalmethode instellen is mislukt.","actionFailedMessage":"Sorry, dat werkte niet.","retryErrorMessage":"Sorry, dat werkte niet. Probeer het opnieuw.","addingDomainFailed":"Domein toevoegen is mislukt, probeer het opnieuw.","removingDomainFailed":"Domein verwijderen is mislukt, probeer het opnieuw.","settingDomainPrimaryFailed":"Domein als primair instellen is mislukt, probeer het opnieuw.","emailVerification":"E-mailverificatie.","emailAlreadyVerified":"Het e-mailadres is al geverifieerd.","emailVerificationSent":"Verzonden! Controleer uw inbox voor een verificatie-e-mail.","emailVerificationResendDelay":"We hebben al een verificatie-e-mail naar uw inbox gestuurd. Als u de e-mail nog steeds niet kunt vinden, kunt u over 5 minuten vragen om deze opnieuw te verzenden.","teamMemberRemoved":"{email} is verwijderd uit uw team.","inviteSentTo":"Er is een uitnodiging verzonden naar {email}.","inviteResendDelay":"Wacht {cooldown} seconden voordat u de uitnodiging opnieuw verzendt.","billingInfoUpdated":"Uw factureringsgegevens zijn bijgewerkt.","subCanceledConfirmation":"Uw abonnement is geannuleerd en uw terugbetaling wordt verwerkt. Controleer uw e-mail voor details.","siteDomainRemoved":"Website {domain} is verwijderd.","siteLockPassReset":"Site-lock wachtwoord opnieuw ingesteld.","updatedSiteLockCode":"Uw nieuwe Site-Lock code is: {pass}.","contactSupport":"Neem contact op met de klantenservice.","srySomethingWrong":"Sorry, er is iets misgegaan.","subRefundFailed":"Uw abonnement is nog actief omdat de terugbetaling niet kon worden verwerkt. We staan klaar om u te helpen.","partialRefundMessage":"Uw terugbetaling kon niet volledig worden verwerkt, maar uw abonnement is niet langer actief. We staan klaar om u te helpen.","exitMaintenanceModeToastTitle":"Verlaat onderhoudsmodus.","exitMaintenanceModeToastText":"Site {slug} is succesvol uit de onderhoudsmodus gehaald."}')}}]);

View File

@@ -0,0 +1 @@
"use strict";(self.webpackChunk=self.webpackChunk||[]).push([["2767"],{69362(e){e.exports=JSON.parse('{"alertError":{"defaultTitle":"Etwas ist schiefgelaufen!","defaultMessage":"Bitte aktualisieren Sie diese Seite.","refreshBtn":"Aktualisieren","okBtn":"In Ordnung"},"errorBoundary":{"default":{"title":"Etwas ist schiefgelaufen!","message":"Bitte aktualisieren Sie diese Seite.","btn":"Aktualisieren"},"newVersion":{"title":"Neue Version verf\xfcgbar!","message":"Bitte aktualisieren Sie diese Seite.","btn":"Aktualisieren"}}}')}}]);

File diff suppressed because one or more lines are too long

View File

@@ -0,0 +1 @@
"use strict";(self.webpackChunk=self.webpackChunk||[]).push([["3028"],{82751(a){a.exports=JSON.parse('{"wPLoginAttempts":"Upaya masuk WP.","wPLoginAttemptsResetSuccess":"Upaya masuk WP telah berhasil direset.","errorTryAgain":"Terjadi kesalahan, silakan coba lagi.","backupCreation":"Pembuatan cadangan.","backupCreated":"Cadangan situs telah berhasil dibuat.","backupUpdate":"Cadangan situs telah berhasil diperbarui.","backupUpdated":"Cadangan situs telah berhasil diperbarui.","backupRestore":"Pemulihan cadangan.","backupDelete":"Penghapusan cadangan.","backupDeleted":"Cadangan telah dihapus.","backupExport":"Ekspor cadangan.","backupExportSuccessToast":"Anda akan segera menerima email berisi tautan unduhan.","debugMode":"Mode debug.","debugModeSwithFailed":"{value, select, true {Penonaktifan} other {Pengaktifan}} mode debug gagal, silakan coba lagi.","siteDeletion":"Penghapusan situs.","siteDeleted":"Situs telah dihapus.","setFavoriteSuccess":"{domain} telah ditambahkan ke situs favorit Anda.","removeFavoriteSuccess":"{domain} telah dihapus dari situs favorit Anda.","maxReachedFavorites":"Anda telah mencapai jumlah maksimum favorit.","generalErrorToast":"Ups, itu tidak berhasil. Coba lagi nanti.","websiteDeactivation":"Penonaktifan situs web.","setDefaultPaymentFailed":"Gagal menetapkan metode pembayaran default.","actionFailedMessage":"Maaf, itu tidak berhasil.","retryErrorMessage":"Maaf, itu tidak berhasil. Coba lagi.","addingDomainFailed":"Penambahan domain tidak berhasil, silakan coba lagi.","removingDomainFailed":"Penghapusan domain tidak berhasil, silakan coba lagi.","settingDomainPrimaryFailed":"Pengaturan domain sebagai utama tidak berhasil, silakan coba lagi.","emailVerification":"Verifikasi email.","emailAlreadyVerified":"Email sudah terverifikasi.","emailVerificationSent":"Terkirim! Periksa kotak masuk Anda untuk email verifikasi.","emailVerificationResendDelay":"Kami sudah mengirimkan email verifikasi ke kotak masuk Anda. Jika Anda masih belum menemukan emailnya, Anda dapat meminta untuk mengirim ulang dalam 5 menit.","teamMemberRemoved":"{email} telah dihapus dari tim Anda.","inviteSentTo":"Undangan telah dikirim ke {email}.","billingInfoUpdated":"Informasi penagihan Anda telah diperbarui.","subCanceledConfirmation":"Langganan Anda telah dibatalkan dan pengembalian dana Anda sedang diproses. Periksa email Anda untuk detailnya.","siteDomainRemoved":"Situs web {domain} telah dihapus.","siteLockPassReset":"Reset kata sandi kunci situs.","updatedSiteLockCode":"Kode Site-Lock baru Anda adalah: {pass}.","contactSupport":"Hubungi dukungan.","srySomethingWrong":"Maaf, terjadi kesalahan.","subRefundFailed":"Langganan Anda masih aktif karena pengembalian dana tidak dapat diproses. Kami siap membantu.","partialRefundMessage":"Pengembalian dana Anda tidak dapat diproses sepenuhnya, tetapi langganan Anda tidak lagi aktif. Kami siap membantu.","exitMaintenanceModeToastTitle":"Keluar dari mode pemeliharaan.","exitMaintenanceModeToastText":"Situs {slug} telah berhasil keluar dari mode pemeliharaan."}')}}]);

View File

@@ -0,0 +1 @@
"use strict";(self.webpackChunk=self.webpackChunk||[]).push([["3043"],{96078(e){e.exports=JSON.parse('{"header":"Niezgodno\u015B\u0107 adresu URL","title":"Jak chcesz kontynuowa\u0107?","description":"Tw\xf3j klucz licencyjny nie pasuje do Twojej bie\u017C\u0105cej domeny, co powoduje niezgodno\u015B\u0107.{br}Najprawdopodobniej jest to spowodowane zmian\u0105 adresu URL domeny Twojej witryny.","actions":{"updateCurrentSite":{"title":"Zaktualizuj po\u0142\u0105czony adres URL","description":"W przypadku zmian adresu URL w tej samej witrynie, np. ze \u015Brodowiska przej\u015Bciowego na produkcyjne lub z HTTP na HTTPS.","action":"Zaktualizuj po\u0142\u0105czony adres URL"},"connectNewSite":{"title":"Po\u0142\u0105cz adres URL jako now\u0105 witryn\u0119","description":"Do \u0142\u0105czenia zupe\u0142nie innej witryny. Poprzednia historia zostanie usuni\u0119ta.","action":"Po\u0142\u0105cz jako now\u0105 witryn\u0119"}}}')}}]);

View File

@@ -0,0 +1 @@
"use strict";(self.webpackChunk=self.webpackChunk||[]).push([["3125"],{87316(e){e.exports=JSON.parse('{"onBoardingInstall":{"title":"Bienvenido a\\nelementor one!","description":"Instalaremos todas las capacidades de Elementor.\\nSi no desea instalarlas, deselecci\xf3nelas ahora.","skip":"Omitir","continue":"Continuar","installAndContinue":"Instalar y continuar","duringInstallation":"Durante la instalaci\xf3n, actualizaremos todas las herramientas que lo requieran.","tools":{"additionalBetaTools":"Herramientas beta adicionales","editorCore":{"title":"N\xfacleo del editor","description":"Cree sitios web perfectos con una interfaz de arrastrar y soltar"},"editorPro":{"title":"Editor Pro","description":"Cree su sitio completo con herramientas profesionales"},"imageOptimizer":{"title":"Optimizaci\xf3n de im\xe1genes","description":"Comprima y optimice im\xe1genes para mejorar el rendimiento"},"accessibility":{"title":"Accesibilidad","description":"Encuentre y corrija problemas de accesibilidad en todo su sitio"},"siteMailer":{"title":"Site Mailer","description":"Aseg\xfarese de que los correos electr\xf3nicos de su sitio lleguen a la bandeja de entrada, no al spam"},"ai":{"title":"IA nativa para WordPress","description":"Convierta ideas en p\xe1ginas, bloques y funciones con IA nativa "},"installed":"Ya instalado","singleSub":"Suscripci\xf3n \xfanica","updateRequired":"Actualizaci\xf3n necesaria","updateRequiredTooltip":"Se actualizar\xe1 autom\xe1ticamente a la \xfaltima versi\xf3n","beta":"Beta","manage":{"title":"Gesti\xf3n del sitio","description":"Supervisa, optimiza y mant\xe9n todos tus sitios en un solo lugar"},"installedTooltip":"Puedes desinstalar las herramientas instaladas desde el administrador de herramientas."},"installedToolTip":"Puedes desinstalar las herramientas instaladas desde el administrador de herramientas.","conflictsDialog":{"update":{"title":"Actualizaciones disponibles","description":"Estas herramientas usan versiones anteriores. Actualiza para obtener el mejor rendimiento y seguridad.","selectTools":"Selecciona las herramientas a actualizar","action":"{nothingIsSelected, select, true {Continuar} other {Actualizar y continuar}}"},"migrate":{"title":"Migraci\xf3n necesaria","description":"Estas herramientas no est\xe1n migradas a Elementor One. Migra para obtener el mejor rendimiento y seguridad.","selectTools":"Selecciona las herramientas a migrar","action":"{nothingIsSelected, select, true {Continuar} other {Mover y continuar}}"},"manageLater":"Puedes gestionar estas actualizaciones m\xe1s tarde en el administrador de herramientas","step":"Paso {step} de {total}"}},"siteIdentity":{"activeTheme":"Tema activo:","getHelloElementor":"Obtener hello elementor","goToDashboard":"Ir al panel de control","editSite":"Editar sitio","editSiteMenu":{"addPage":"A\xf1adir una p\xe1gina","addBlogPost":"A\xf1adir una entrada de blog","createHeader":"Crear un encabezado","createFooter":"Crear un pie de p\xe1gina"},"helloThemeInstalled":"Tema Hello Elementor instalado correctamente","helloThemeInstallationFailed":"Error al instalar el tema Hello Elementor","helloThemeActivationFailed":"Error al activar el tema Hello Elementor","helloThemeActivated":"Tema Hello Elementor activado correctamente","goToSiteSetup":"Ir a la configuraci\xf3n del sitio"},"capabilities":{"greeting":"Empecemos a construir.","filters":{"all":"Todo","discover":"Descubrir","build":"Construir","optimize":"Optimizar","manage":"Gestionar","featured":"Destacados","create":"Crear"},"toolManager":"Administrador de herramientas","addForFreeButton":"A\xf1adir gratis","openButton":"Abrir","goProButton":"Hacerse Pro","inProgressButton":"En curso","learnMore":{"upgrade":"Actualizar","install":"Instalar","open":"Abrir"},"isNew":"Nuevo"},"toolManager":{"title":"Controle todas sus herramientas en UN solo lugar."},"welcomeModal":{"letsStart":{"title":"\xa1Te damos la bienvenida al <br />nuevo Elementor!","description":"Crea, optimiza y gestiona tu sitio web <br />desde un \xfanico espacio de trabajo potente.","button":"Empecemos"}}}')}}]);

View File

@@ -0,0 +1 @@
"use strict";(self.webpackChunk=self.webpackChunk||[]).push([["3143"],{47754(e){e.exports=JSON.parse('{"apps":{"HOSTING":"Hosting","APP_AI":"Elementor AI","APP_IO":"Image optimizer","APP_MAILER":"Site mailer","PLUGIN":"Elementor Pro","APP_ACCESS":"Ally","APP_EMPMA":"Send","APP_MANAGE":"Elementor Manage","APP_COOKIE":"Cookie consent"}}')}}]);

View File

@@ -0,0 +1 @@
"use strict";(self.webpackChunk=self.webpackChunk||[]).push([["3259"],{99174(e){e.exports=JSON.parse('{"downloadInvoice404":{"title":"Votre facture est en cours de traitement","message":"Nous vous l\'enverrons par courriel d\xe8s qu\'elle sera pr\xeate."},"supportedLanguages":{"en":"Anglais","de":"Allemand","es":"Espagnol","it":"Italien","nl":"N\xe9erlandais","pt-PT":"Portugais","pt-BR":"Portugais (Br\xe9sil)","fr":"Fran\xe7ais","he-IL":"H\xe9breu"}}')}}]);

View File

@@ -0,0 +1 @@
"use strict";(self.webpackChunk=self.webpackChunk||[]).push([["3423"],{54562(e){e.exports=JSON.parse('{"onBoardingInstall":{"title":"Welkom bij\\nElementor One!","description":"We installeren alle Elementor-functionaliteiten.\\nAls u deze niet wilt installeren, deselecteer ze dan nu.","skip":"Overslaan","continue":"Doorgaan","installAndContinue":"Installeren en doorgaan","duringInstallation":"Tijdens de installatie zullen we alle benodigde tools updaten.","tools":{"additionalBetaTools":"Extra b\xe8ta-tools","editorCore":{"title":"Editor Core","description":"Cre\xeber pixel-perfecte websites met een drag & drop-interface"},"editorPro":{"title":"Editor Pro","description":"Bouw uw volledige site met professionele tools"},"imageOptimizer":{"title":"Afbeeldingsoptimalisatie","description":"Comprimeer en optimaliseer afbeeldingen om de prestaties te verbeteren"},"accessibility":{"title":"Toegankelijkheid","description":"Vind en los toegankelijkheidsproblemen op uw site op"},"siteMailer":{"title":"Site Mailer","description":"Zorg ervoor dat uw site-e-mails de inbox bereiken \u2013 niet de spam"},"ai":{"title":"Native AI voor WordPress","description":"Zet idee\xebn om in pagina\'s, blokken en functies met native AI "},"installed":"Reeds ge\xefnstalleerd","singleSub":"Enkel abonnement","updateRequired":"Update vereist","updateRequiredTooltip":"Wordt automatisch bijgewerkt naar de nieuwste versie","beta":"B\xe8ta","manage":{"title":"Sitebeheer","description":"Bewaak, optimaliseer en beheer al uw sites op \xe9\xe9n plek"},"installedTooltip":"Ge\xefnstalleerde tools kunt u de\xefnstalleren via de toolbeheerder."},"installedToolTip":"Ge\xefnstalleerde tools kunt u de\xefnstalleren via de toolbeheerder.","conflictsDialog":{"update":{"title":"Updates beschikbaar","description":"Deze tools draaien op oudere versies. Werk ze bij voor de beste prestaties en beveiliging.","selectTools":"Selecteer te updaten tools","action":"{nothingIsSelected, select, true {Doorgaan} other {Bijwerken en doorgaan}}"},"migrate":{"title":"Migratie vereist","description":"Deze tools zijn niet naar Elementor One gemigreerd. Migreer ze voor de beste prestaties en beveiliging.","selectTools":"Selecteer te migreren tools","action":"{nothingIsSelected, select, true {Doorgaan} other {Verplaatsen en doorgaan}}"},"manageLater":"U kunt deze updates later beheren in de toolbeheerder","step":"Stap {step} van {total}"}},"siteIdentity":{"activeTheme":"Actief thema:","getHelloElementor":"Ontvang Hello Elementor","goToDashboard":"Ga naar dashboard","editSite":"Site bewerken","editSiteMenu":{"addPage":"Pagina toevoegen","addBlogPost":"Blogpost toevoegen","createHeader":"Header maken","createFooter":"Footer maken"},"helloThemeInstalled":"Hello Elementor-thema succesvol ge\xefnstalleerd","helloThemeInstallationFailed":"Installatie van Hello Elementor-thema mislukt","helloThemeActivationFailed":"Activering van het Hello Elementor-thema is mislukt","helloThemeActivated":"Hello Elementor-thema succesvol geactiveerd","goToSiteSetup":"Naar site-instelling"},"capabilities":{"greeting":"Laten we beginnen met bouwen.","filters":{"all":"Alles","discover":"Ontdekken","build":"Bouwen","optimize":"Optimaliseren","manage":"Beheren","featured":"Uitgelicht","create":"Maken"},"toolManager":"Toolbeheerder","addForFreeButton":"Gratis toevoegen","openButton":"Openen","goProButton":"Ga pro","inProgressButton":"Bezig","learnMore":{"upgrade":"Upgraden","install":"Installeren","open":"Openen"},"isNew":"Nieuw"},"toolManager":{"title":"Beheer al uw tools op \xc9\xc9N plek."},"welcomeModal":{"letsStart":{"title":"Welkom bij de <br />nieuwe Elementor!","description":"Maak, optimaliseer en beheer uw website <br />vanuit \xe9\xe9n krachtige werkplek.","button":"Aan de slag"}}}')}}]);

View File

@@ -0,0 +1 @@
"use strict";(self.webpackChunk=self.webpackChunk||[]).push([["3437"],{43964(a){a.exports=JSON.parse('{"header":"URL tidak cocok","title":"Bagaimana Anda ingin melanjutkan?","description":"Kunci lisensi Anda tidak cocok dengan domain Anda saat ini, menyebabkan ketidakcocokan.{br}Ini kemungkinan besar disebabkan oleh perubahan URL domain situs Anda.","actions":{"updateCurrentSite":{"title":"Perbarui URL yang terhubung","description":"Untuk perubahan URL pada situs yang sama, seperti dari staging ke produksi atau HTTP ke HTTPS.","action":"Perbarui URL yang terhubung"},"connectNewSite":{"title":"Hubungkan URL sebagai situs baru","description":"Untuk menghubungkan situs yang sama sekali berbeda. Riwayat sebelumnya akan dihapus.","action":"Hubungkan sebagai situs baru"}}}')}}]);

View File

@@ -0,0 +1 @@
"use strict";(self.webpackChunk=self.webpackChunk||[]).push([["3677"],{38844(e){e.exports=JSON.parse('{"onBoardingInstall":{"title":"Bienvenue sur\\nElementor One !","description":"Nous allons installer toutes les fonctionnalit\xe9s d\u2019Elementor.\\nSi vous ne souhaitez pas les installer, veuillez les d\xe9s\xe9lectionner maintenant.","skip":"Ignorer","continue":"Continuer","installAndContinue":"Installer et continuer","duringInstallation":"Pendant l\u2019installation, nous mettrons \xe0 jour tous les outils qui le n\xe9cessitent.","tools":{"additionalBetaTools":"Outils b\xeata suppl\xe9mentaires","editorCore":{"title":"Noyau de l\u2019\xe9diteur","description":"Cr\xe9ez des sites web au pixel pr\xe8s avec une interface glisser-d\xe9poser"},"editorPro":{"title":"\xc9diteur Pro","description":"Construisez votre site entier avec des outils professionnels"},"imageOptimizer":{"title":"Optimisation d\u2019image","description":"Compressez et optimisez les images pour am\xe9liorer les performances"},"accessibility":{"title":"Accessibilit\xe9","description":"Trouvez et corrigez les probl\xe8mes d\u2019accessibilit\xe9 sur votre site"},"siteMailer":{"title":"Site Mailer","description":"Assurez-vous que les e-mails de votre site arrivent dans la bo\xeete de r\xe9ception \u2013 pas dans les spams"},"ai":{"title":"IA native pour WordPress","description":"Transformez vos id\xe9es en pages, blocs et fonctionnalit\xe9s avec l\u2019IA native "},"installed":"D\xe9j\xe0 install\xe9","singleSub":"Abonnement unique","updateRequired":"Mise \xe0 jour requise","updateRequiredTooltip":"Sera automatiquement mis \xe0 jour vers la derni\xe8re version","beta":"B\xeata","manage":{"title":"Gestion du site","description":"Surveillez, optimisez et g\xe9rez tous vos sites au m\xeame endroit"},"installedTooltip":"Les outils install\xe9s peuvent \xeatre d\xe9sinstall\xe9s depuis le gestionnaire d\u2019outils."},"installedToolTip":"Les outils install\xe9s peuvent \xeatre d\xe9sinstall\xe9s depuis le gestionnaire d\u2019outils.","conflictsDialog":{"update":{"title":"Mises \xe0 jour disponibles","description":"Ces outils utilisent d\u2019anciennes versions. Mettez-les \xe0 jour pour des performances et une s\xe9curit\xe9 optimales.","selectTools":"S\xe9lectionner les outils \xe0 mettre \xe0 jour","action":"{nothingIsSelected, select, true {Continuer} other {Mettre \xe0 jour et continuer}}"},"migrate":{"title":"Migration requise","description":"Ces outils ne sont pas migr\xe9s vers Elementor One. Migrez-les pour des performances et une s\xe9curit\xe9 optimales.","selectTools":"S\xe9lectionner les outils \xe0 migrer","action":"{nothingIsSelected, select, true {Continuer} other {D\xe9placer et continuer}}"},"manageLater":"Vous pourrez g\xe9rer ces mises \xe0 jour plus tard dans le gestionnaire d\u2019outils","step":"\xc9tape {step} sur {total}"}},"siteIdentity":{"activeTheme":"Th\xe8me actif :","getHelloElementor":"Obtenir Hello Elementor","goToDashboard":"Aller au tableau de bord","editSite":"Modifier le site","editSiteMenu":{"addPage":"Ajouter une page","addBlogPost":"Ajouter un article de blog","createHeader":"Cr\xe9er un en-t\xeate","createFooter":"Cr\xe9er un pied de page"},"helloThemeInstalled":"Th\xe8me Hello Elementor install\xe9 avec succ\xe8s","helloThemeInstallationFailed":"L\u2019installation du th\xe8me Hello Elementor a \xe9chou\xe9","helloThemeActivationFailed":"L\u2019activation du th\xe8me Hello Elementor a \xe9chou\xe9","helloThemeActivated":"Le th\xe8me Hello Elementor a \xe9t\xe9 activ\xe9 avec succ\xe8s","goToSiteSetup":"Aller \xe0 la configuration du site"},"capabilities":{"greeting":"Commen\xe7ons \xe0 construire.","filters":{"all":"Tout","discover":"D\xe9couvrir","build":"Construire","optimize":"Optimiser","manage":"G\xe9rer","featured":"\xc0 la une","create":"Cr\xe9er"},"toolManager":"Gestionnaire d\u2019outils","addForFreeButton":"Ajouter gratuitement","openButton":"Ouvrir","goProButton":"Passer \xe0 la version Pro","inProgressButton":"En cours","learnMore":{"upgrade":"Mettre \xe0 niveau","install":"Installer","open":"Ouvrir"},"isNew":"Nouveau"},"toolManager":{"title":"Contr\xf4lez tous vos outils en UN seul endroit."},"welcomeModal":{"letsStart":{"title":"Bienvenue sur le <br />nouvel Elementor !","description":"Cr\xe9ez, optimisez et g\xe9rez votre site web <br />depuis un espace de travail unique et puissant.","button":"C\u2019est parti"}}}')}}]);

View File

@@ -0,0 +1 @@
"use strict";(self.webpackChunk=self.webpackChunk||[]).push([["3840"],{73635(e){e.exports=JSON.parse('{"header":"Incoh\xe9rence d\u2019URL","title":"Comment souhaitez-vous continuer ?","description":"Votre cl\xe9 de licence ne correspond pas \xe0 votre domaine actuel, ce qui provoque une incoh\xe9rence.{br}Cela est tr\xe8s probablement d\xfb \xe0 un changement d\u2019URL de domaine de votre site.","actions":{"updateCurrentSite":{"title":"Mettre \xe0 jour l\u2019URL connect\xe9e","description":"Pour les changements d\u2019URL sur le m\xeame site, comme de la pr\xe9-production \xe0 la production ou de HTTP \xe0 HTTPS.","action":"Mettre \xe0 jour l\u2019URL connect\xe9e"},"connectNewSite":{"title":"Connecter l\u2019URL comme un nouveau site","description":"Pour connecter un site compl\xe8tement diff\xe9rent. L\u2019historique pr\xe9c\xe9dent sera supprim\xe9.","action":"Connecter comme un nouveau site"}}}')}}]);

View File

@@ -0,0 +1 @@
"use strict";(self.webpackChunk=self.webpackChunk||[]).push([["3891"],{15502(e){e.exports=JSON.parse('{"header":"URL incompat\xedvel","title":"Como gostaria de continuar?","description":"A sua chave de licen\xe7a n\xe3o corresponde ao seu dom\xednio atual, causando uma incompatibilidade.{br}Isto deve-se, muito provavelmente, a uma altera\xe7\xe3o no URL de dom\xednio do seu site.","actions":{"updateCurrentSite":{"title":"Atualizar o URL ligado","description":"Para altera\xe7\xf5es de URL no mesmo site, como de teste para produ\xe7\xe3o ou de HTTP para HTTPS.","action":"Atualizar URL ligado"},"connectNewSite":{"title":"Ligar o URL como um novo site","description":"Para ligar um site completamente diferente. O hist\xf3rico anterior ser\xe1 removido.","action":"Ligar como um novo site"}}}')}}]);

View File

@@ -0,0 +1 @@
"use strict";(self.webpackChunk=self.webpackChunk||[]).push([["3906"],{95129(e){e.exports=JSON.parse('{"onBoardingInstall":{"title":"Elementor One\'a ho\u015F geldiniz!","description":"T\xfcm Elementor \xf6zelliklerini y\xfckleyece\u011Fiz.\\nY\xfcklemek istemiyorsan\u0131z \u015Fimdi se\xe7imlerini kald\u0131r\u0131n.","skip":"Atla","continue":"Devam Et","installAndContinue":"Y\xfckle ve devam et","duringInstallation":"Y\xfckleme s\u0131ras\u0131nda, gerekli t\xfcm ara\xe7lar\u0131 g\xfcncelleyece\u011Fiz.","tools":{"additionalBetaTools":"Ek beta ara\xe7lar\u0131","editorCore":{"title":"Edit\xf6r \xe7ekirde\u011Fi","description":"S\xfcr\xfckle ve b\u0131rak aray\xfcz\xfcyle piksel m\xfckemmelli\u011Finde web siteleri olu\u015Fturun"},"editorPro":{"title":"Edit\xf6r pro","description":"Profesyonel ara\xe7larla t\xfcm sitenizi olu\u015Fturun"},"imageOptimizer":{"title":"G\xf6rsel optimizasyonu","description":"Performans\u0131 art\u0131rmak i\xe7in g\xf6rselleri s\u0131k\u0131\u015Ft\u0131r\u0131n ve optimize edin"},"accessibility":{"title":"Eri\u015Filebilirlik","description":"Sitenizdeki eri\u015Filebilirlik sorunlar\u0131n\u0131 bulun ve d\xfczeltin"},"siteMailer":{"title":"Site Mailer","description":"Site e-postalar\u0131n\u0131z\u0131n spam\'e de\u011Fil, gelen kutusuna ula\u015Ft\u0131\u011F\u0131ndan emin olun"},"ai":{"title":"WordPress i\xe7in yerel yapay zeka","description":"Yerel yapay zeka ile fikirleri sayfalara, bloklara ve \xf6zelliklere d\xf6n\xfc\u015Ft\xfcr\xfcn "},"installed":"Zaten y\xfckl\xfc","singleSub":"Tek abonelik","updateRequired":"G\xfcncelleme gerekli","updateRequiredTooltip":"Otomatik olarak en son s\xfcr\xfcme g\xfcncellenecektir","beta":"Beta"}},"siteIdentity":{"activeTheme":"Aktif tema:","getHelloElementor":"Hello Elementor\'u edinin","goToDashboard":"Kontrol paneline git","editSite":"Siteyi d\xfczenle","editSiteMenu":{"addPage":"Sayfa ekle","addBlogPost":"Blog yaz\u0131s\u0131 ekle","createHeader":"Ba\u015Fl\u0131k olu\u015Ftur","createFooter":"Alt bilgi olu\u015Ftur"},"helloThemeInstalled":"Hello Elementor temas\u0131 ba\u015Far\u0131yla y\xfcklendi","helloThemeInstallationFailed":"Hello Elementor temas\u0131 y\xfcklenemedi","helloThemeActivationFailed":"Hello Elementor tema etkinle\u015Ftirilemedi","helloThemeActivated":"Hello Elementor tema ba\u015Far\u0131yla etkinle\u015Ftirildi"},"capabilities":{"greeting":"Olu\u015Fturmaya ba\u015Flayal\u0131m.","filters":{"all":"T\xfcm\xfc","discover":"Ke\u015Ffet","build":"Olu\u015Ftur","optimize":"Optimize et","manage":"Y\xf6net"},"toolManager":"Ara\xe7 y\xf6neticisi","addForFreeButton":"\xdccretsiz ekle","openButton":"A\xe7","goProButton":"Pro\'ya ge\xe7","inProgressButton":"Devam ediyor","learnMore":{"upgrade":"Y\xfckselt","install":"Y\xfckle"}},"toolManager":{"title":"T\xfcm ara\xe7lar\u0131n\u0131z\u0131 TEK bir yerden kontrol edin."}}')}}]);

View File

@@ -0,0 +1 @@
"use strict";(self.webpackChunk=self.webpackChunk||[]).push([["3967"],{56434(e){e.exports=JSON.parse('{"apps":{"HOSTING":"Hospedagem","APP_AI":"Elementor AI","APP_IO":"Otimizador de imagem","APP_MAILER":"Remetente do site","PLUGIN":"Elementor Pro","APP_ACCESS":"Ally","APP_EMPMA":"Enviar","APP_MANAGE":"Gerenciar Elementor"}}')}}]);

View File

@@ -0,0 +1 @@
"use strict";(self.webpackChunk=self.webpackChunk||[]).push([["4058"],{14929(e){e.exports=JSON.parse('{"alertError":{"defaultTitle":"Er is iets misgegaan!","defaultMessage":"Vernieuw deze pagina alstublieft.","refreshBtn":"Vernieuwen","okBtn":"Ok\xe9"},"errorBoundary":{"default":{"title":"Er is iets misgegaan!","message":"Vernieuw deze pagina alstublieft.","btn":"Vernieuwen"},"newVersion":{"title":"Nieuwe versie beschikbaar!","message":"Vernieuw deze pagina alstublieft.","btn":"Vernieuwen"}}}')}}]);

View File

@@ -0,0 +1 @@
"use strict";(self.webpackChunk=self.webpackChunk||[]).push([["4135"],{47146(e){e.exports=JSON.parse('{"example":{"component":"Componente de exemplo"},"header":{"title":"construtor de sites","userInfo":"Minha conta","userProfileMenu":{"connectPreText":"Tem um plano Elementor One?","connect":"Conectar","goToMyAccount":"V\xe1 para Minha conta","disconnect":"Desconectar","elementorOneActive":"Elemento Um","active":"Ativo","urlMismatch":"Incompatibilidade de URL detectada","fixUrlMismatch":"Corrija agora"},"whatsNew":"O que h\xe1 de novo","whatsNewError":"Algo deu errado ao buscar as notifica\xe7\xf5es. Por favor, tente novamente mais tarde."}}')}}]);

View File

@@ -0,0 +1 @@
"use strict";(self.webpackChunk=self.webpackChunk||[]).push([["417"],{47160(e){e.exports=JSON.parse('{"example":{"component":"Komponen Contoh"}}')}}]);

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View File

@@ -0,0 +1 @@
"use strict";(self.webpackChunk=self.webpackChunk||[]).push([["4338"],{37961(e){e.exports=JSON.parse('{"wPLoginAttempts":"Tentativas de autentica\xe7\xe3o no WordPress.","wPLoginAttemptsResetSuccess":"As tentativas de autentica\xe7\xe3o no WordPress foram repostas com sucesso.","errorTryAgain":"Ocorreu um erro. Por favor, tente novamente.","backupCreation":"Cria\xe7\xe3o de c\xf3pia de seguran\xe7a.","backupCreated":"A c\xf3pia de seguran\xe7a do s\xedtio foi criada com sucesso.","backupUpdate":"A c\xf3pia de seguran\xe7a do s\xedtio foi atualizada com sucesso.","backupUpdated":"A c\xf3pia de seguran\xe7a do s\xedtio foi atualizada com sucesso.","backupRestore":"Restaura\xe7\xe3o da c\xf3pia de seguran\xe7a.","backupDelete":"Elimina\xe7\xe3o da c\xf3pia de seguran\xe7a.","backupDeleted":"A c\xf3pia de seguran\xe7a foi eliminada.","backupExport":"Exporta\xe7\xe3o da c\xf3pia de seguran\xe7a.","backupExportSuccessToast":"Em breve receber\xe1 um correio eletr\xf3nico com a hiperliga\xe7\xe3o para descarregar.","debugMode":"Modo de depura\xe7\xe3o.","debugModeSwithFailed":"{value, select, true {A desativa\xe7\xe3o} other {A ativa\xe7\xe3o}} do modo de depura\xe7\xe3o falhou. Por favor, tente novamente.","siteDeletion":"Remo\xe7\xe3o do site.","siteDeleted":"O site foi removido.","setFavoriteSuccess":"{domain} foi adicionado aos seus s\xedtios favoritos.","removeFavoriteSuccess":"{domain} foi removido dos seus s\xedtios favoritos.","maxReachedFavorites":"Atingiste o n\xfamero m\xe1ximo de favoritos.","generalErrorToast":"Ups, isso n\xe3o funcionou. Tenta novamente mais tarde.","websiteDeactivation":"Desativa\xe7\xe3o do s\xedtio web.","setDefaultPaymentFailed":"N\xe3o foi poss\xedvel definir o m\xe9todo de pagamento predefinido.","actionFailedMessage":"Lamentamos, mas isso n\xe3o funcionou.","retryErrorMessage":"Lamentamos, mas isso n\xe3o funcionou. Por favor, tente novamente.","addingDomainFailed":"A adi\xe7\xe3o de um dom\xednio n\xe3o foi bem-sucedida. Por favor, tente novamente.","removingDomainFailed":"A remo\xe7\xe3o de um dom\xednio n\xe3o foi bem-sucedida. Por favor, tente novamente.","settingDomainPrimaryFailed":"A defini\xe7\xe3o do dom\xednio como principal n\xe3o foi bem-sucedida. Por favor, tente novamente.","emailVerification":"Verifica\xe7\xe3o do correio eletr\xf3nico.","emailAlreadyVerified":"O correio eletr\xf3nico j\xe1 se encontra verificado.","emailVerificationSent":"Enviado! Verifique a sua caixa de entrada para encontrar o correio eletr\xf3nico de verifica\xe7\xe3o.","emailVerificationResendDelay":"J\xe1 envi\xe1mos um correio eletr\xf3nico de verifica\xe7\xe3o para a sua caixa de entrada. Caso ainda n\xe3o o tenha localizado, poder\xe1 solicitar o reenvio dentro de 5 minutos.","teamMemberRemoved":"{email} foi removido da sua equipa.","inviteSentTo":"Foi enviado um convite para {email}.","inviteResendDelay":"Por favor, aguarde {cooldown} segundos antes de reenviar o convite.","billingInfoUpdated":"As suas informa\xe7\xf5es de fatura\xe7\xe3o foram atualizadas.","subCanceledConfirmation":"A sua subscri\xe7\xe3o foi cancelada e o seu reembolso est\xe1 a ser processado. Verifique o seu correio eletr\xf3nico para obter mais detalhes.","siteDomainRemoved":"O s\xedtio web {domain} foi removido.","siteLockPassReset":"Reposi\xe7\xe3o da palavra-passe do bloqueio do s\xedtio.","updatedSiteLockCode":"O seu novo c\xf3digo de bloqueio do s\xedtio \xe9: {pass}.","contactSupport":"Contactar o apoio t\xe9cnico.","srySomethingWrong":"Lamentamos, mas ocorreu um erro.","subRefundFailed":"A sua subscri\xe7\xe3o permanece ativa porque n\xe3o foi poss\xedvel processar o reembolso. Estamos \xe0 disposi\xe7\xe3o para o auxiliar.","partialRefundMessage":"O seu reembolso n\xe3o p\xf4de ser totalmente processado, mas a sua subscri\xe7\xe3o j\xe1 n\xe3o est\xe1 ativa. Estamos \xe0 disposi\xe7\xe3o para o auxiliar.","exitMaintenanceModeToastTitle":"Sair do modo de manuten\xe7\xe3o.","exitMaintenanceModeToastText":"O s\xedtio {slug} saiu com sucesso do modo de manuten\xe7\xe3o."}')}}]);

View File

@@ -0,0 +1 @@
"use strict";(self.webpackChunk=self.webpackChunk||[]).push([["4418"],{76729(e){e.exports=JSON.parse('{"wPLoginAttempts":"WP-Anmeldeversuche.","wPLoginAttemptsResetSuccess":"WP-Anmeldeversuche wurden erfolgreich zur\xfcckgesetzt.","errorTryAgain":"Etwas ist schiefgelaufen, bitte versuchen Sie es erneut.","backupCreation":"Backup-Erstellung.","backupCreated":"Website-Backup wurde erfolgreich erstellt.","backupUpdate":"Website-Backup wurde erfolgreich aktualisiert.","backupUpdated":"Website-Backup wurde erfolgreich aktualisiert.","backupRestore":"Backup-Wiederherstellung.","backupDelete":"Backup-L\xf6schung.","backupDeleted":"Backup wurde gel\xf6scht.","backupExport":"Backup-Export.","backupExportSuccessToast":"Sie erhalten in K\xfcrze eine E-Mail mit dem Download-Link.","debugMode":"Debug-Modus.","debugModeSwithFailed":"{value, select, true {Deaktivieren} other {Aktivieren}} des Debug-Modus fehlgeschlagen, bitte versuch es nochmal.","siteDeletion":"Website-Entfernung.","siteDeleted":"Website wurde entfernt.","setFavoriteSuccess":"{domain} wurde zu Ihren Favoriten hinzugef\xfcgt.","removeFavoriteSuccess":"{domain} wurde aus Ihren Favoriten entfernt.","maxReachedFavorites":"Sie haben die maximale Anzahl an Favoriten erreicht.","generalErrorToast":"Hoppla, das hat nicht funktioniert. Versuchen Sie es sp\xe4ter erneut.","websiteDeactivation":"Website-Deaktivierung.","setDefaultPaymentFailed":"Standardzahlungsmethode konnte nicht festgelegt werden.","actionFailedMessage":"Entschuldigung, das hat nicht funktioniert.","retryErrorMessage":"Entschuldigung, das hat nicht funktioniert. Versuchen Sie es erneut.","addingDomainFailed":"Das Hinzuf\xfcgen einer Domain war nicht erfolgreich, bitte versuchen Sie es erneut.","removingDomainFailed":"Das Entfernen einer Domain war nicht erfolgreich, bitte versuchen Sie es erneut.","settingDomainPrimaryFailed":"Das Festlegen der Domain als prim\xe4r war nicht erfolgreich, bitte versuchen Sie es erneut.","emailVerification":"E-Mail-Verifizierung.","emailAlreadyVerified":"Die E-Mail ist bereits verifiziert.","emailVerificationSent":"Gesendet! \xdcberpr\xfcfen Sie Ihren Posteingang auf eine Verifizierungs-E-Mail.","emailVerificationResendDelay":"Wir haben bereits eine Verifizierungs-E-Mail an Ihren Posteingang gesendet. Wenn Sie die E-Mail immer noch nicht finden k\xf6nnen, k\xf6nnen Sie in 5 Minuten um erneute Zusendung bitten.","teamMemberRemoved":"{email} wurde aus Ihrem Team entfernt.","inviteSentTo":"Eine Einladung wurde an {email} gesendet.","inviteResendDelay":"Bitte warten Sie {cooldown} Sekunden, bevor Sie die Einladung erneut senden.","billingInfoUpdated":"Ihre Rechnungsinformationen wurden aktualisiert.","subCanceledConfirmation":"Ihr Abonnement wurde gek\xfcndigt und Ihre R\xfcckerstattung wird bearbeitet. \xdcberpr\xfcfen Sie Ihre E-Mail f\xfcr Details.","siteDomainRemoved":"Website {domain} wurde entfernt.","siteLockPassReset":"Site-Lock-Passwort zur\xfccksetzen.","updatedSiteLockCode":"Ihr neuer Site-Lock-Code lautet: {pass}.","contactSupport":"Support kontaktieren.","srySomethingWrong":"Entschuldigung, etwas ist schiefgelaufen.","subRefundFailed":"Ihr Abonnement ist noch aktiv, da die R\xfcckerstattung nicht verarbeitet werden konnte. Wir sind hier, um zu helfen.","partialRefundMessage":"Ihre R\xfcckerstattung konnte nicht vollst\xe4ndig verarbeitet werden, aber Ihr Abonnement ist nicht mehr aktiv. Wir sind hier, um zu helfen.","exitMaintenanceModeToastTitle":"Wartungsmodus beenden.","exitMaintenanceModeToastText":"Die Seite {slug} wurde erfolgreich aus dem Wartungsmodus beendet."}')}}]);

View File

@@ -0,0 +1 @@
"use strict";(self.webpackChunk=self.webpackChunk||[]).push([["4537"],{24048(e){e.exports={}}}]);

View File

@@ -0,0 +1 @@
"use strict";(self.webpackChunk=self.webpackChunk||[]).push([["4608"],{92307(e){e.exports=JSON.parse('{"apps":{"HOSTING":"H\xe9bergement","APP_AI":"Elementor AI","APP_IO":"Image Optimizer","APP_MAILER":"Site Mailer","PLUGIN":"Elementor Pro","APP_ACCESS":"Ally","APP_EMPMA":"Send","APP_MANAGE":"Elementor Manage"}}')}}]);

View File

@@ -0,0 +1 @@
"use strict";(self.webpackChunk=self.webpackChunk||[]).push([["4631"],{80634(e){e.exports=JSON.parse('{"header":{"title":"construtor de sites","userInfo":"Minha conta","userProfileMenu":{"connectPreText":"Tem um plano Elementor One?","connect":"Conectar","goToMyAccount":"Ir para Minha conta","disconnect":"Desconectar","elementorOneActive":"Elementor One","active":"Ativo","urlMismatch":"Incompatibilidade de URL detectada","fixUrlMismatch":"Corrigir agora"},"whatsNew":"O que h\xe1 de novo","whatsNewError":"Algo deu errado ao buscar as notifica\xe7\xf5es. Tente novamente mais tarde."}}')}}]);

View File

@@ -0,0 +1 @@
"use strict";(self.webpackChunk=self.webpackChunk||[]).push([["4708"],{80031(a){a.exports=JSON.parse('{"hi":"Ol\xe1. Tradu\xe7\xe3o do anfitri\xe3o","alerts":{"connect":{"description":"Tem um plano Elementor One?","action":"Ative-o aqui"},"installing":"A instalar\u2026 por favor, permane\xe7a nesta p\xe1gina ({current} de {total})","urlMismatch":{"title":"A sua licen\xe7a n\xe3o est\xe1 ligada a este dom\xednio","description":"Isto geralmente acontece ap\xf3s uma altera\xe7\xe3o de dom\xednio, como a mudan\xe7a para HTTPS ou a altera\xe7\xe3o de URLs.","action":"Corrigir URL incompat\xedvel"}}}')}}]);

View File

@@ -0,0 +1 @@
"use strict";(self.webpackChunk=self.webpackChunk||[]).push([["4771"],{9342(e){e.exports=JSON.parse('{"downloadInvoice404":{"title":"Su factura est\xe1 siendo procesada","message":"Se la enviaremos por correo electr\xf3nico una vez que est\xe9 lista."},"supportedLanguages":{"en":"Ingl\xe9s","de":"Alem\xe1n","es":"Espa\xf1ol","it":"Italiano","nl":"Neerland\xe9s","pt-PT":"Portugu\xe9s","pt-BR":"Portugu\xe9s (Brasil)","fr":"Franc\xe9s","he-IL":"\u05E2\u05D1\u05E8\u05D9\u05EA"}}')}}]);

File diff suppressed because one or more lines are too long

View File

@@ -0,0 +1 @@
"use strict";(self.webpackChunk=self.webpackChunk||[]).push([["5140"],{68959(e){e.exports=JSON.parse('{"hi":"Hallo. Host-\xdcbersetzung","alerts":{"connect":{"description":"Haben Sie einen Elementor One Plan?","action":"Aktivieren Sie ihn hier"},"installing":"Installation l\xe4uft\u2026 bitte bleiben Sie auf dieser Seite ({current} von {total})","urlMismatch":{"title":"Ihre Lizenz ist nicht mit dieser Domain verbunden","description":"Dies geschieht normalerweise nach einer Domain-\xc4nderung, z. B. der Umstellung auf HTTPS oder dem Wechsel von URLs.","action":"Nicht \xfcbereinstimmende URL korrigieren"}}}')}}]);

View File

@@ -0,0 +1 @@
"use strict";(self.webpackChunk=self.webpackChunk||[]).push([["5192"],{77147(e){e.exports=JSON.parse('{"dialog":{"title":"Compartilhe seu feedback","fieldTitlePlaceholder":"T\xedtulo","fieldDescriptionPlaceholder":"Diga-nos o que voc\xea tem em mente","fieldSubjectPlaceholder":"Selecione o assunto do seu feedback","fieldProductPlaceholder":"Selecionar o produto","note":"Agradecemos seu feedback! Embora revisemos todas as sugest\xf5es, n\xe3o podemos garantir que cada sugest\xe3o resultar\xe1 em uma altera\xe7\xe3o ou atualiza\xe7\xe3o.","subjects":{"leaveFeedback":"Deixar um feedback","reportBug":"Reportar um erro","requestFeature":"Solicitar um recurso","shareThoughts":"Partilhar outras ideias"},"products":{"general":"Geral","editor":"Editor","accessibility":"Acessibilidade","imageOptimization":"Otimiza\xe7\xe3o de imagem","emailDeliverability":"Capacidade de entrega de email","siteManagement":"Site Management"},"cancel":"Cancelar","submit":"Enviar","titleLengthError":"O t\xedtulo deve ter menos de 90 caracteres","descriptionLengthError":"A descri\xe7\xe3o deve ter menos de 1024 caracteres","alert":{"title":"Precisa de ajuda ou encontrou um problema?","button":"Enviar um ticket de suporte"}},"tooltipSuccess":"Feedback enviado. Obrigado por nos ajudar.","tooltipError":"Algo deu errado. Tente enviar seu feedback novamente."}')}}]);

View File

@@ -0,0 +1 @@
"use strict";(self.webpackChunk=self.webpackChunk||[]).push([["5359"],{58658(a){a.exports=JSON.parse('{"header":"URL uyu\u015Fmazl\u0131\u011F\u0131","title":"Nas\u0131l devam etmek istersiniz?","description":"Lisans anahtar\u0131n\u0131z mevcut alan ad\u0131n\u0131zla e\u015Fle\u015Fmiyor ve bu da bir uyu\u015Fmazl\u0131\u011Fa neden oluyor.{br}Bu durum b\xfcy\xfck olas\u0131l\u0131kla sitenizin alan ad\u0131 URL\'sindeki bir de\u011Fi\u015Fiklikten kaynaklanmaktad\u0131r.","actions":{"updateCurrentSite":{"title":"Ba\u011Fl\u0131 URL\'yi g\xfcncelle","description":"Ayn\u0131 sitedeki URL de\u011Fi\u015Fiklikleri i\xe7in (\xf6r. haz\u0131rl\u0131k ortam\u0131ndan \xfcretim ortam\u0131na veya HTTP\'den HTTPS\'ye ge\xe7i\u015F).","action":"Ba\u011Fl\u0131 URL\'yi g\xfcncelle"},"connectNewSite":{"title":"URL\'yi yeni bir site olarak ba\u011Fla","description":"Tamamen farkl\u0131 bir siteyi ba\u011Flamak i\xe7in. \xd6nceki ge\xe7mi\u015F kald\u0131r\u0131lacakt\u0131r.","action":"Yeni bir site olarak ba\u011Fla"}}}')}}]);

View File

@@ -0,0 +1 @@
"use strict";(self.webpackChunk=self.webpackChunk||[]).push([["5366"],{30325(e){e.exports=JSON.parse('{"copyClipboard":"Kopi\xebren naar klembord","copyClipboardSuccess":"Gekopieerd!","noDataToDisplay":"Geen gegevens om weer te geven","search":"Zoeken","sort":"Sorteren","pagination":{"rowsPerPage":"Rijen per pagina:","displayedRows":"{from}-{to} van {count}"},"tablePagination":{"rowsPerPage":"Rijen per pagina:","displayedRows":"{from}-{to} van {count}"},"phoneInput":{"countryCode":"Landcode","phoneNumber":"Telefoonnummer","countryCodeRequired":"Landcode is vereist","phoneNumberRequired":"Telefoonnummer is vereist"}}')}}]);

View File

@@ -0,0 +1 @@
"use strict";(self.webpackChunk=self.webpackChunk||[]).push([["5375"],{14146(e){e.exports=JSON.parse('{"alertError":{"defaultTitle":"Co\u015B posz\u0142o nie tak!","defaultMessage":"Prosz\u0119 od\u015Bwie\u017Cy\u0107 t\u0119 stron\u0119.","refreshBtn":"Od\u015Bwie\u017C","okBtn":"Ok"},"errorBoundary":{"default":{"title":"Co\u015B posz\u0142o nie tak!","message":"Prosz\u0119 od\u015Bwie\u017Cy\u0107 t\u0119 stron\u0119.","btn":"Od\u015Bwie\u017C"},"newVersion":{"title":"Dost\u0119pna nowa wersja!","message":"Prosz\u0119 od\u015Bwie\u017Cy\u0107 t\u0119 stron\u0119.","btn":"Od\u015Bwie\u017C"}}}')}}]);

Some files were not shown because too many files have changed in this diff Show More