first commit

This commit is contained in:
User A0264400
2026-04-01 23:20:16 +03:00
commit a766acdc90
23071 changed files with 4933189 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 ComposerAutoloaderInitc322ff6bb86b5e3c1ab0035466940216::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 ComposerAutoloaderInitc322ff6bb86b5e3c1ab0035466940216
{
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('ComposerAutoloaderInitc322ff6bb86b5e3c1ab0035466940216', 'loadClassLoader'), true, true);
self::$loader = $loader = new \Composer\Autoload\ClassLoader(\dirname(__DIR__));
spl_autoload_unregister(array('ComposerAutoloaderInitc322ff6bb86b5e3c1ab0035466940216', 'loadClassLoader'));
require __DIR__ . '/autoload_static.php';
call_user_func(\Composer\Autoload\ComposerStaticInitc322ff6bb86b5e3c1ab0035466940216::getInitializer($loader));
$loader->register(true);
$filesToLoad = \Composer\Autoload\ComposerStaticInitc322ff6bb86b5e3c1ab0035466940216::$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 ComposerStaticInitc322ff6bb86b5e3c1ab0035466940216
{
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 = ComposerStaticInitc322ff6bb86b5e3c1ab0035466940216::$prefixLengthsPsr4;
$loader->prefixDirsPsr4 = ComposerStaticInitc322ff6bb86b5e3c1ab0035466940216::$prefixDirsPsr4;
$loader->classMap = ComposerStaticInitc322ff6bb86b5e3c1ab0035466940216::$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.57",
"version_normalized": "1.0.57.0",
"dist": {
"type": "zip",
"url": "https://composer.elementor.com/download/elementor/wp-one-package/1.0.57"
},
"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-03-17T14:35:00+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' => '3.35.x-dev',
'version' => '3.35.9999999.9999999-dev',
'reference' => '003c93cc1e77fe68001e3ed730b1614658989584',
'type' => 'project',
'install_path' => __DIR__ . '/../../',
'aliases' => array(),
'dev' => false,
),
'versions' => array(
'elementor/elementor' => array(
'pretty_version' => '3.35.x-dev',
'version' => '3.35.9999999.9999999-dev',
'reference' => '003c93cc1e77fe68001e3ed730b1614658989584',
'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.57',
'version' => '1.0.57.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([["1093"],{38520:function(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"}},"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"},"capabilities":{"greeting":"Commen\xe7ons \xe0 construire.","filters":{"all":"Tout","discover":"D\xe9couvrir","build":"Construire","optimize":"Optimiser","manage":"G\xe9rer"},"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"}},"toolManager":{"title":"Contr\xf4lez tous vos outils en UN seul endroit."}}')}}]);

View File

@@ -0,0 +1 @@
"use strict";(self.webpackChunk=self.webpackChunk||[]).push([["1112"],{35129:function(e){e.exports=JSON.parse('{"copyClipboard":"Copier dans le presse-papiers","copyClipboardSuccess":"Copi\xe9!","noDataToDisplay":"Aucune donn\xe9e \xe0 afficher","search":"Rechercher","sort":"Trier","pagination":{"rowsPerPage":"Lignes par page :","displayedRows":"{from}-{to} sur {count}"},"phoneInput":{"countryCode":"Code pays","phoneNumber":"Num\xe9ro de t\xe9l\xe9phone","countryCodeRequired":"Le code pays est obligatoire","phoneNumberRequired":"Le num\xe9ro de t\xe9l\xe9phone est obligatoire"}}')}}]);

View File

@@ -0,0 +1 @@
"use strict";(self.webpackChunk=self.webpackChunk||[]).push([["1184"],{56727:function(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}"},"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([["1251"],{87964:function(e){e.exports={}}}]);

View File

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

View File

@@ -0,0 +1 @@
"use strict";(self.webpackChunk=self.webpackChunk||[]).push([["1274"],{52124:function(e){e.exports=JSON.parse('{"title":"Toolbeheerder","subtitle":"Beheer al uw tools op \xc9\xc9N plek.","filters":{"all":"Alle","active":"Actief","disabled":"Uitgeschakeld","notInstalled":"Niet ge\xefnstalleerd"},"back":"Terug naar tooloverzicht","breadcrumb":{"home":"Startpagina","toolManager":"Toolbeheerder"},"tools":{"build":{"title":"Bouwen","items":{"core":{"title":"Editor kern"},"pro":{"title":"Editor pro","features":{"themeBuilder":"Themabouwer","popups":"Pop-ups","commerce":"Commerce","savedTemplates":"Opgeslagen sjablonen","templateCategories":"Sjablooncategorie\xebn","starterTemplates":"Startersjablonen (websitesjablonen)","customFonts":"Aangepaste lettertypen","customIcons":"Aangepaste pictogrammen","customCode":"Aangepaste code","customCss":"Aangepaste CSS"}},"ai":{"title":"Agentic AI"}}},"optimize":{"title":"Optimaliseren","items":{"accessibility":{"title":"Toegankelijkheid"},"io":{"title":"Afbeeldingsoptimalisatie"}}},"manage":{"title":"Beheren","items":{"email":{"title":"E-mailbezorgbaarheid"}}}},"actions":{"add":"Toevoegen","update":"Bijwerken","activate":"Activeren","deactivate":"Deactiveren","migrateToOne":"Migreren naar \xe9\xe9n","updateRequired":"Update vereist","confirmAdd":{"title":"Tool toevoegen","msg":"Weet u zeker dat u deze tool wilt toevoegen? Dit voegt de tool toe aan uw account en u kunt deze in uw projecten gebruiken.","ok":"Toevoegen","cancel":"Annuleren"},"confirmActivate":{"title":"Weet u zeker dat u {name} wilt activeren? ","msg":"Door te activeren ...","ok":"Activeren","cancel":"Annuleren"},"confirmDeactivate":{"title":"Weet u zeker dat u {name} wilt deactiveren? ","msg":"Door te deactiveren ...","ok":"Deactiveren","cancel":"Niet nu"}},"showMoreFeatures":"Meer functies tonen","hideMoreFeatures":"Meer functies verbergen","noToolsFound":"Geen tools gevonden die overeenkomen met de zoekopdracht","noToolsFoundDescription":"Probeer uw filters aan te passen.","updateRequiredTooltip":"Up-to-date plug-ins hebben nieuwe functies en fixes, zodat uw site veilig en soepel werkt."}')}}]);

View File

@@ -0,0 +1 @@
"use strict";(self.webpackChunk=self.webpackChunk||[]).push([["1285"],{429:function(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([["1372"],{59400:function(e){e.exports=JSON.parse('{"wPLoginAttempts":"WP login attempts.","wPLoginAttemptsResetSuccess":"WP login attempts have been successfully reset.","errorTryAgain":"Something went wrong, please try again.","backupCreation":"Backup creation.","backupCreated":"Site backup has been successfully created.","backupUpdate":"Site backup has been successfully updated.","backupUpdated":"Site backup has been successfully updated.","backupRestore":"Backup restore.","backupDelete":"Backup deletion.","backupDeleted":"Backup has been deleted.","backupExport":"Backup Export.","backupExportSuccessToast":"Soon you will receive an email with the download link.","debugMode":"Debug mode.","debugModeSwithFailed":"{value, select, true {Disabling} other {Enabling}} debug mode failed, please try again.","siteDeletion":"Site removal.","siteDeleted":"Site has been removed.","setFavoriteSuccess":"{domain} was added to your favorite sites.","removeFavoriteSuccess":"{domain} was removed from your favorite sites.","maxReachedFavorites":"You have reached the maximum number of favorites.","generalErrorToast":"Woops, that didn\'t work, Try again later.","websiteDeactivation":"Website deactivation.","setDefaultPaymentFailed":"Failed to set default payment method.","actionFailedMessage":"Sorry, that didn\'t work.","retryErrorMessage":"Sorry, that didn\'t work. Try again.","addingDomainFailed":"Adding a domain was unsuccessful, please try again.","removingDomainFailed":"Removing a domain was unsuccessful, please try again.","settingDomainPrimaryFailed":"Setting domain as primary was unsuccessful please try again.","emailVerification":"Email verification.","emailAlreadyVerified":"The email is already verified.","emailVerificationSent":"Sent! Check your inbox for a verification email.","emailVerificationResendDelay":"We already sent a verification email to your inbox. If you still can\'t find the email, you can ask to resend it in 5 minutes.","teamMemberRemoved":"{email} was removed from your team.","inviteSentTo":"An invite was sent to {email}.","billingInfoUpdated":"Your billing information was updated.","subCanceledConfirmation":"Your subscription has been cancelled and your refund is being processed. Check your email for details.","siteDomainRemoved":"Website {domain} has been removed.","siteLockPassReset":"Site lock password reset.","updatedSiteLockCode":"Your new Site-Lock code is: {pass}.","contactSupport":"Contact support.","srySomethingWrong":"Sorry, something went wrong.","subRefundFailed":"Your subscription is still active because the refund couldn\'t be processed. We\'re here to help.","partialRefundMessage":"Your refund couldn\'t be fully processed, but your subscription is no longer active. We\'re here to help.","exitMaintenanceModeToastTitle":"Exit maintenance mode.","exitMaintenanceModeToastText":"Site {slug} has been successfully exited from maintenance mode."}')}}]);

View File

@@ -0,0 +1 @@
"use strict";(self.webpackChunk=self.webpackChunk||[]).push([["1389"],{68086:function(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([["1413"],{99847:function(e){e.exports=JSON.parse('{"example":{"component":"\xd6rnek Bile\u015Fen"}}')}}]);

View File

@@ -0,0 +1 @@
"use strict";(self.webpackChunk=self.webpackChunk||[]).push([["1446"],{55458:function(e){e.exports=JSON.parse('{"title":"Tool manager","subtitle":"Manage your site\'s tools in one place: enable, install, and update them.","filters":{"all":"All","active":"Active","disabled":"Disabled","notInstalled":"Not Installed"},"back":"Bach to tools overview","breadcrumb":{"home":"Home","toolManager":"Tool Manager"},"tools":{"create":{"title":"Create","items":{"core":{"title":"Editor Core","withAI":"with AI capabilities"},"pro":{"title":"Editor Pro","features":{"themeBuilder":"Theme builder","popups":"Popups","commerce":"Commerce","savedTemplates":"Saved templates","templateCategories":"Template categories","starterTemplates":"Starter templates (website templates)","customFonts":"Custom Fonts","customIcons":"Custom Icons","customCode":"Custom Code","customCss":"Custom CSS"}},"ai":{"title":"Agentic AI"}}},"optimize":{"title":"Optimize","items":{"accessibility":{"title":"Accessibility"},"io":{"title":"Image Optimization"}}},"manage":{"title":"Manage","items":{"manage":{"title":"Site management"},"email":{"title":"Email deliverability"}}}},"actions":{"add":"Add","update":"Update","activate":"Activate","deactivate":"Deactivate","detachAi":"Detach Editor AI from Elementor One","activateCore":"Turn on Editor Core to enable Editor Pro","migrateToOne":"Move to One","updateRequired":"Update required","confirmAdd":{"title":"Add tool","msg":"Are you sure you want to add this tool? This will add the tool to your account and you will be able to use it in your projects.","ok":"Add","cancel":"Cancel"},"confirmActivate":{"title":"Activate {name} ","msg":"Turning this plugin on may affect your site\u2019s look and functionality. You can deactivate it anytime.","ok":"Activate","cancel":"Not now"},"confirmDeactivate":{"title":"Are you sure you want to deactivate {name}? ","msg":"This may impact your site\u2019s appearance or functionality, but your content won\u2019t be removed. You can reactivate it anytime.","ok":"Deactivate","cancel":"Not now"},"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":"Detach","cancel":"Not now"},"confirmDeactivateOrDetach":{"title":"What would you like to do? ","deactivateMsg":"Turn off this capability and its WordPress plugin. You can turn it back on anytime and keep using it with your One plan.","deactivate":"Deactivate","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":"Detach","cancel":"Not now"},"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":"Move","cancel":"Not now"},"failedAction":{"install":"Installation failed. Please try again later.","activate":"Activation failed. Please try again later.","deactivate":"Deactivation failed. Please try again later.","migrate":"Migration failed. Please try again later.","detach":"Detachment failed. Please try again later."}},"showMoreFeatures":"See all features","hideMoreFeatures":"Hide more features","noToolsFound":"No tools matched that search","noToolsFoundDescription":"Try adjusting your filters.","updateRequiredTooltip":"Up-to-date plugins have new features and fixes so your site runs safe and smooth."}')}}]);

View File

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

View File

@@ -0,0 +1 @@
"use strict";(self.webpackChunk=self.webpackChunk||[]).push([["162"],{28922:function(e){e.exports=JSON.parse('{"downloadInvoice404":{"title":"Uw factuur wordt verwerkt","message":"We sturen het per e-mail naar u zodra het klaar is."},"supportedLanguages":{"en":"Engels","de":"Duits","es":"Spaans","it":"Italiaans","nl":"Nederlands","pt-PT":"Portugees","pt-BR":"Portugees (Brazili\xeb)","fr":"Frans","he-IL":"\u05E2\u05D1\u05E8\u05D9\u05EA"}}')}}]);

View File

@@ -0,0 +1 @@
"use strict";(self.webpackChunk=self.webpackChunk||[]).push([["1636"],{11126:function(a){a.exports=JSON.parse('{"wPLoginAttempts":"Tentativi di accesso WP.","wPLoginAttemptsResetSuccess":"I tentativi di accesso WP sono stati resettati con successo.","errorTryAgain":"Qualcosa \xe8 andato storto, per favore riprova.","backupCreation":"Creazione del backup.","backupCreated":"Il backup del sito \xe8 stato creato con successo.","backupUpdate":"Il backup del sito \xe8 stato aggiornato con successo.","backupUpdated":"Il backup del sito \xe8 stato aggiornato con successo.","backupRestore":"Ripristino del backup.","backupDelete":"Eliminazione del backup.","backupDeleted":"Il backup \xe8 stato eliminato.","backupExport":"Esportazione del backup.","backupExportSuccessToast":"Presto riceverai un\'email con il link per il download.","debugMode":"Modalit\xe0 di debug.","debugModeSwithFailed":"{value, select, true {La disattivazione} other {L\'attivazione}} della modalit\xe0 debug \xe8 fallita, per favore riprova.","siteDeletion":"Rimozione del sito.","siteDeleted":"Il sito \xe8 stato rimosso.","setFavoriteSuccess":"{domain} \xe8 stato aggiunto ai tuoi siti preferiti.","removeFavoriteSuccess":"{domain} \xe8 stato rimosso dai tuoi siti preferiti.","maxReachedFavorites":"Hai raggiunto il numero massimo di preferiti.","generalErrorToast":"Ops, qualcosa \xe8 andato storto. Riprova pi\xf9 tardi.","websiteDeactivation":"Disattivazione del sito web.","setDefaultPaymentFailed":"Impossibile impostare il metodo di pagamento predefinito.","actionFailedMessage":"Spiacenti, non ha funzionato.","retryErrorMessage":"Spiacenti, non ha funzionato. Riprova.","addingDomainFailed":"L\'aggiunta di un dominio non \xe8 riuscita, per favore riprova.","removingDomainFailed":"La rimozione di un dominio non \xe8 riuscita, per favore riprova.","settingDomainPrimaryFailed":"L\'impostazione del dominio come primario non \xe8 riuscita, per favore riprova.","emailVerification":"Verifica dell\'email.","emailAlreadyVerified":"L\'email \xe8 gi\xe0 verificata.","emailVerificationSent":"Inviato! Controlla la tua casella di posta per un\'email di verifica.","emailVerificationResendDelay":"Abbiamo gi\xe0 inviato un\'email di verifica alla tua casella di posta. Se non riesci ancora a trovare l\'email, puoi chiedere di inviarla nuovamente tra 5 minuti.","teamMemberRemoved":"{email} \xe8 stato rimosso dal tuo team.","inviteSentTo":"Un invito \xe8 stato inviato a {email}.","billingInfoUpdated":"Le tue informazioni di fatturazione sono state aggiornate.","subCanceledConfirmation":"Il tuo abbonamento \xe8 stato cancellato e il tuo rimborso \xe8 in fase di elaborazione. Controlla la tua email per i dettagli.","siteDomainRemoved":"Il sito web {domain} \xe8 stato rimosso.","siteLockPassReset":"Reset della password del blocco del sito.","updatedSiteLockCode":"Il tuo nuovo codice Site-Lock \xe8: {pass}.","contactSupport":"Contatta il supporto.","srySomethingWrong":"Spiacenti, qualcosa \xe8 andato storto.","subRefundFailed":"Il tuo abbonamento \xe8 ancora attivo perch\xe9 non \xe8 stato possibile elaborare il rimborso. Siamo qui per aiutarti.","partialRefundMessage":"Il tuo rimborso non \xe8 stato completamente elaborato, ma il tuo abbonamento non \xe8 pi\xf9 attivo. Siamo qui per aiutarti.","exitMaintenanceModeToastTitle":"Esci dalla modalit\xe0 di manutenzione.","exitMaintenanceModeToastText":"Il sito {slug} \xe8 uscito con successo dalla modalit\xe0 di manutenzione."}')}}]);

View File

@@ -0,0 +1 @@
"use strict";(self.webpackChunk=self.webpackChunk||[]).push([["1729"],{64166:function(e){e.exports=JSON.parse('{"wPLoginAttempts":"Tentatives de connexion WordPress.","wPLoginAttemptsResetSuccess":"Les tentatives de connexion WordPress ont \xe9t\xe9 r\xe9initialis\xe9es avec succ\xe8s.","errorTryAgain":"Une erreur s\'est produite, veuillez r\xe9essayer.","backupCreation":"Cr\xe9ation de sauvegarde.","backupCreated":"La sauvegarde du site a \xe9t\xe9 cr\xe9\xe9e avec succ\xe8s.","backupUpdate":"La sauvegarde du site a \xe9t\xe9 mise \xe0 jour avec succ\xe8s.","backupUpdated":"La sauvegarde du site a \xe9t\xe9 mise \xe0 jour avec succ\xe8s.","backupRestore":"Restauration de sauvegarde.","backupDelete":"Suppression de sauvegarde.","backupDeleted":"La sauvegarde a \xe9t\xe9 supprim\xe9e.","backupExport":"Exportation de sauvegarde.","backupExportSuccessToast":"Vous recevrez prochainement un courriel contenant le lien de t\xe9l\xe9chargement.","debugMode":"Mode de d\xe9bogage.","debugModeSwithFailed":"{value, select, true {La d\xe9sactivation} other {L\'activation}} du mode de d\xe9bogage a \xe9chou\xe9, veuillez r\xe9essayer.","siteDeletion":"Suppression du site.","siteDeleted":"Le site a \xe9t\xe9 supprim\xe9.","setFavoriteSuccess":"{domain} a \xe9t\xe9 ajout\xe9 \xe0 vos sites favoris.","removeFavoriteSuccess":"{domain} a \xe9t\xe9 retir\xe9 de vos sites favoris.","maxReachedFavorites":"Vous avez atteint le nombre maximum de favoris.","generalErrorToast":"Oups, \xe7a n\'a pas fonctionn\xe9. Veuillez r\xe9essayer plus tard.","websiteDeactivation":"D\xe9sactivation du site web.","setDefaultPaymentFailed":"\xc9chec de la d\xe9finition du mode de paiement par d\xe9faut.","actionFailedMessage":"Nous vous prions de nous excuser, cela n\'a pas fonctionn\xe9.","retryErrorMessage":"Nous vous prions de nous excuser, cela n\'a pas fonctionn\xe9. Veuillez r\xe9essayer.","addingDomainFailed":"L\'ajout d\'un domaine a \xe9chou\xe9, veuillez r\xe9essayer.","removingDomainFailed":"La suppression d\'un domaine a \xe9chou\xe9, veuillez r\xe9essayer.","settingDomainPrimaryFailed":"La d\xe9finition du domaine comme principal a \xe9chou\xe9, veuillez r\xe9essayer.","emailVerification":"V\xe9rification de l\'adresse \xe9lectronique.","emailAlreadyVerified":"L\'adresse \xe9lectronique est d\xe9j\xe0 v\xe9rifi\xe9e.","emailVerificationSent":"Envoy\xe9! Veuillez v\xe9rifier votre bo\xeete de r\xe9ception pour un courriel de v\xe9rification.","emailVerificationResendDelay":"Nous avons d\xe9j\xe0 envoy\xe9 un courriel de v\xe9rification \xe0 votre bo\xeete de r\xe9ception. Si vous ne trouvez toujours pas le courriel, vous pouvez demander un nouvel envoi dans 5 minutes.","teamMemberRemoved":"{email} a \xe9t\xe9 retir\xe9 de votre \xe9quipe.","inviteSentTo":"Une invitation a \xe9t\xe9 envoy\xe9e \xe0 {email}.","billingInfoUpdated":"Vos informations de facturation ont \xe9t\xe9 mises \xe0 jour.","subCanceledConfirmation":"Votre abonnement a \xe9t\xe9 annul\xe9 et votre remboursement est en cours de traitement. Veuillez v\xe9rifier votre courriel pour plus de d\xe9tails.","siteDomainRemoved":"Le site web {domain} a \xe9t\xe9 supprim\xe9.","siteLockPassReset":"R\xe9initialisation du mot de passe de verrouillage du site.","updatedSiteLockCode":"Votre nouveau code de verrouillage du site est : {pass}.","contactSupport":"Contacter le support.","srySomethingWrong":"Nous vous prions de nous excuser, une erreur s\'est produite.","subRefundFailed":"Votre abonnement est toujours actif car le remboursement n\'a pas pu \xeatre trait\xe9. Nous sommes \xe0 votre disposition pour vous aider.","partialRefundMessage":"Votre remboursement n\'a pas pu \xeatre enti\xe8rement trait\xe9, mais votre abonnement n\'est plus actif. Nous sommes \xe0 votre disposition pour vous aider.","exitMaintenanceModeToastTitle":"Quitter le mode de maintenance.","exitMaintenanceModeToastText":"Le site {slug} est sorti avec succ\xe8s du mode de maintenance."}')}}]);

View File

@@ -0,0 +1 @@
"use strict";(self.webpackChunk=self.webpackChunk||[]).push([["1966"],{51601:function(e){e.exports=JSON.parse('{"apps":{"HOSTING":"Alojamiento","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([["2"],{84354:function(e){e.exports=JSON.parse('{"hi":"Hallo. Hostvertaling","alerts":{"connect":{"description":"Heeft u een Elementor One-abonnement?","action":"Activeer het hier"},"installing":"Installeren\u2026 blijf op deze pagina ({current} van {total})","urlMismatch":{"title":"Uw licentie is niet gekoppeld aan dit domein","description":"Dit gebeurt meestal na een domeinwijziging, zoals het overstappen naar HTTPS of het wijzigen van URL\'s.","action":"Niet-overeenkomende URL herstellen"}}}')}}]);

View File

@@ -0,0 +1 @@
"use strict";(self.webpackChunk=self.webpackChunk||[]).push([["201"],{68486:function(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"}}}},"actions":{"add":"Ajouter","update":"Mettre \xe0 jour","activate":"Activer","deactivate":"D\xe9sactiver","migrateToOne":"Migrer vers un","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"}},"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([["2143"],{96955:function(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([["215"],{25805:function(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"}},"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"},"capabilities":{"greeting":"Vamos come\xe7ar a construir.","filters":{"all":"Tudo","discover":"Descobrir","build":"Construir","optimize":"Otimizar","manage":"Gerir"},"toolManager":"Gestor de ferramentas","addForFreeButton":"Adicionar gratuitamente","openButton":"Abrir","goProButton":"Tornar-se Pro","inProgressButton":"Em progresso","learnMore":{"upgrade":"Atualizar","install":"Instalar"}},"toolManager":{"title":"Controle todas as suas ferramentas num S\xd3 lugar."}}')}}]);

View File

@@ -0,0 +1 @@
"use strict";(self.webpackChunk=self.webpackChunk||[]).push([["2189"],{76032:function(e){e.exports=JSON.parse('{"onBoardingInstall":{"title":"Welcome to\\nElementor one!","description":"We will install all of the Elementor capabilities.\\nIf you don\'t want to install now please deselect them.","skip":"Skip","continue":"Continue","installAndContinue":"Install and continue","duringInstallation":"During installation, we\u2019ll update any tools that require it.","installedToolTip":"Installed tools can be uninstalled from the tool manager","tools":{"additionalBetaTools":"Additional beta tools","editorCore":{"title":"Editor Core","description":"Create pixel-perfect websites with a drag & drop interface"},"editorPro":{"title":"Editor Pro","description":"Build your entire site with professional tools"},"imageOptimizer":{"title":"Image optimization","description":"Compress and optimize images to boost performance"},"accessibility":{"title":"Accessibility","description":"Find and fix accessibility issues across your site"},"manage":{"title":"Site management","description":"Monitor, optimize and maintain all of your sites in one place"},"siteMailer":{"title":"Site mailer","description":"Ensure your site emails reach the inbox - not spam"},"ai":{"title":"Angie - Native AI for WordPress","description":"Turn ideas into pages, blocks, and features with native AI "},"installed":"Already installed","installedTooltip":"Installed tools can be uninstalled from the tool manager","singleSub":"Single subscription","updateRequired":"Update required","updateRequiredTooltip":"Will be automatically updated to the latest version","beta":"Beta"},"conflictsDialog":{"update":{"title":"Updates available","description":"These tools are running older versions. Update to ensure the best performance and security.","selectTools":"Select tools to update","action":"{nothingIsSelected, select, true {Continue} other {Update & continue}}"},"migrate":{"title":"Migration required","description":"These tools are not migrated to the new Elementor One. Migrate to ensure the best performance and security.","selectTools":"Select tools to migrate","action":"{nothingIsSelected, select, true {Continue} other {Move & continue}}"},"manageLater":"You can manage these updates later in the Tool manager","step":"Step {step} of {total}"}},"siteIdentity":{"activeTheme":"Active theme:","getHelloElementor":"Get Hello Elementor","goToSiteSetup":"Go to site setup","editSite":"Edit site","editSiteMenu":{"addPage":"Add a page","addBlogPost":"Add a blog post","createHeader":"Create a header","createFooter":"Create a footer"},"helloThemeInstalled":"Hello Elementor theme installed successfully","helloThemeInstallationFailed":"Hello Elementor theme installation failed","helloThemeActivationFailed":"Hello Elementor theme activation failed","helloThemeActivated":"Hello Elementor theme activated successfully"},"capabilities":{"greeting":"Let\'s start building.","isNew":"New","filters":{"all":"All","featured":"Featured","create":"Create","optimize":"Optimize","manage":"Manage"},"toolManager":"Tool manager","addForFreeButton":"Add for free","openButton":"Open","goProButton":"Upgrade","inProgressButton":"In progress","learnMore":{"upgrade":"Upgrade","install":"Install","open":"Open"}},"toolManager":{"title":"Control all your tools in ONE place."},"welcomeModal":{"letsStart":{"title":"Welcome to the <br />new Elementor!","description":"Create, optimize, and manage your entire website <br />from one powerful workspace.","button":"Let\'s start"}}}')}}]);

View File

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

View File

@@ -0,0 +1 @@
"use strict";(self.webpackChunk=self.webpackChunk||[]).push([["2386"],{82587:function(e){e.exports=JSON.parse('{"copyClipboard":"Panoya kopyala","copyClipboardSuccess":"Kopyaland\u0131!","noDataToDisplay":"G\xf6r\xfcnt\xfclenecek veri yok","search":"Ara","sort":"S\u0131rala","pagination":{"rowsPerPage":"Sayfa ba\u015F\u0131na sat\u0131r:","displayedRows":"{from}-{to} / {count}"},"phoneInput":{"countryCode":"\xdclke kodu","phoneNumber":"Telefon numaras\u0131","countryCodeRequired":"\xdclke kodu gerekli","phoneNumberRequired":"Telefon numaras\u0131 gerekli"}}')}}]);

View File

@@ -0,0 +1 @@
"use strict";(self.webpackChunk=self.webpackChunk||[]).push([["2513"],{90328:function(o){o.exports=JSON.parse('{"copyClipboard":"Copia negli appunti","copyClipboardSuccess":"Copiato!","noDataToDisplay":"Nessun dato da visualizzare","search":"Cerca","sort":"Ordina","pagination":{"rowsPerPage":"Righe per pagina:","displayedRows":"{from}-{to} di {count}"},"phoneInput":{"countryCode":"Prefisso internazionale","phoneNumber":"Numero di telefono","countryCodeRequired":"Il prefisso internazionale \xe8 obbligatorio","phoneNumberRequired":"Il numero di telefono \xe8 obbligatorio"}}')}}]);

File diff suppressed because one or more lines are too long

View File

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

View File

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

View File

@@ -0,0 +1 @@
"use strict";(self.webpackChunk=self.webpackChunk||[]).push([["2799"],{69543:function(e){e.exports=JSON.parse('{"onBoardingInstall":{"title":"Bem-vindo ao\\nElementor One!","description":"Instalaremos todos os recursos do Elementor.\\nSe n\xe3o quiser instal\xe1-los, desmarque-os agora.","skip":"Pular","continue":"Continuar","installAndContinue":"Instalar e continuar","duringInstallation":"Durante a instala\xe7\xe3o, atualizaremos todas as ferramentas que exigirem.","tools":{"additionalBetaTools":"Ferramentas beta adicionais","editorCore":{"title":"N\xfacleo do Editor","description":"Crie sites pixel-perfect com uma interface de arrastar e soltar"},"editorPro":{"title":"Editor Pro","description":"Crie seu site inteiro 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 seu site"},"siteMailer":{"title":"Remetente do site","description":"Garanta que os e-mails do seu site cheguem \xe0 caixa de entrada - n\xe3o ao spam"},"ai":{"title":"IA nativa para WordPress","description":"Transforme ideias em p\xe1ginas, blocos e recursos com IA nativa "},"installed":"J\xe1 instalado","singleSub":"Assinatura \xfanica","updateRequired":"Atualiza\xe7\xe3o necess\xe1ria","updateRequiredTooltip":"Ser\xe1 atualizado automaticamente para a vers\xe3o mais recente","beta":"Beta"}},"siteIdentity":{"activeTheme":"Tema ativo:","getHelloElementor":"Obter hello elementor","goToDashboard":"Ir para o painel","editSite":"Editar site","editSiteMenu":{"addPage":"Adicionar uma p\xe1gina","addBlogPost":"Adicionar uma postagem de blog","createHeader":"Criar um cabe\xe7alho","createFooter":"Criar um rodap\xe9"},"helloThemeInstalled":"Tema Hello Elementor instalado com sucesso","helloThemeInstallationFailed":"Falha na instala\xe7\xe3o do tema Hello Elementor","helloThemeActivationFailed":"Falha na ativa\xe7\xe3o do tema Hello Elementor","helloThemeActivated":"Tema Hello Elementor ativado com sucesso"},"capabilities":{"greeting":"Vamos come\xe7ar a construir.","filters":{"all":"Todos","discover":"Descobrir","build":"Construir","optimize":"Otimizar","manage":"Gerenciar"},"toolManager":"Gerenciador de ferramentas","addForFreeButton":"Adicionar gratuitamente","openButton":"Abrir","goProButton":"Tornar-se Pro","inProgressButton":"Em andamento","learnMore":{"upgrade":"Atualizar","install":"Instalar"}},"toolManager":{"title":"Controle todas as suas ferramentas em UM s\xf3 lugar."}}')}}]);

View File

@@ -0,0 +1 @@
"use strict";(self.webpackChunk=self.webpackChunk||[]).push([["2832"],{78886:function(e){e.exports=JSON.parse('{"downloadInvoice404":{"title":"Sua fatura est\xe1 sendo processada","message":"Enviaremos por e-mail assim que estiver pronta."},"supportedLanguages":{"en":"Ingl\xeas","de":"Alem\xe3o","es":"Espanhol","it":"Italiano","nl":"Holand\xeas","pt-PT":"Portugu\xeas","pt-BR":"Portugu\xeas (Brasil)","fr":"Franc\xeas","he-IL":"Hebraico"}}')}}]);

View File

@@ -0,0 +1 @@
"use strict";(self.webpackChunk=self.webpackChunk||[]).push([["2881"],{72676:function(e){e.exports=JSON.parse('{"copyClipboard":"Copy to clipboard","copyClipboardSuccess":"Copied!","noDataToDisplay":"No data to display","search":"Search","sort":"Sort","pagination":{"rowsPerPage":"Rows per page:","displayedRows":"{from}-{to} of {count}"},"phoneInput":{"countryCode":"Country Code","phoneNumber":"Phone Number","countryCodeRequired":"Country code is required","phoneNumberRequired":"Phone number is required"}}')}}]);

View File

@@ -0,0 +1 @@
"use strict";(self.webpackChunk=self.webpackChunk||[]).push([["2953"],{83159:function(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([["2965"],{61583:function(e){e.exports=JSON.parse('{"dialog":{"title":"Condividi il tuo feedback","fieldTitlePlaceholder":"Titolo","fieldDescriptionPlaceholder":"Dicci cosa avevi in mente","fieldSubjectPlaceholder":"Seleziona l\'oggetto del tuo feedback","fieldProductPlaceholder":"Seleziona il prodotto","note":"Apprezziamo il tuo feedback! Anche se esaminiamo tutti i suggerimenti, non possiamo garantire che ogni suggerimento si tradurr\xe0 in una modifica o un aggiornamento.","subjects":{"leaveFeedback":"Lascia un feedback","reportBug":"Segnala un bug","requestFeature":"Richiedi una funzionalit\xe0","shareThoughts":"Condividi altri pensieri"},"products":{"general":"Generale","editor":"Editor","accessibility":"Accessibilit\xe0","imageOptimization":"Ottimizzazione delle immagini","emailDeliverability":"Deliverability delle email"},"cancel":"Annulla","submit":"Invia","titleLengthError":"Il titolo deve contenere meno di 90 caratteri","descriptionLengthError":"La descrizione deve contenere meno di 1024 caratteri","alert":{"title":"Hai bisogno di aiuto o hai riscontrato un problema?","button":"Invia un ticket di supporto"}},"tooltipSuccess":"Feedback inviato. Grazie per il tuo aiuto.","tooltipError":"Qualcosa \xe8 andato storto. Prova a inviare di nuovo il tuo feedback."}')}}]);

View File

@@ -0,0 +1 @@
"use strict";(self.webpackChunk=self.webpackChunk||[]).push([["2993"],{63877:function(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"}}}')}}]);

View File

@@ -0,0 +1 @@
"use strict";(self.webpackChunk=self.webpackChunk||[]).push([["3030"],{6454:function(e){e.exports=JSON.parse('{"header":"URL-Fehler","title":"Wie m\xf6chten Sie fortfahren?","description":"Ihr Lizenzschl\xfcssel stimmt nicht mit Ihrer aktuellen Domain \xfcberein, was zu einem Fehler f\xfchrt.{br}Dies liegt h\xf6chstwahrscheinlich an einer \xc4nderung der Domain-URL Ihrer Website.","actions":{"updateCurrentSite":{"title":"Verbundene URL aktualisieren","description":"F\xfcr URL-\xc4nderungen auf derselben Website, z. B. von Staging zu Produktion oder von HTTP zu HTTPS.","action":"Verbundene URL aktualisieren"},"connectNewSite":{"title":"URL als neue Website verbinden","description":"Zum Verbinden einer komplett anderen Website. Der bisherige Verlauf wird entfernt.","action":"Als neue Website verbinden"}}}')}}]);

View File

@@ -0,0 +1 @@
"use strict";(self.webpackChunk=self.webpackChunk||[]).push([["3191"],{83625:function(e){e.exports=JSON.parse('{"title":"Gerenciador de ferramentas","subtitle":"Controle todas as suas ferramentas em UM s\xf3 lugar.","filters":{"all":"Todas","active":"Ativas","disabled":"Desativadas","notInstalled":"N\xe3o instaladas"},"back":"Voltar para a vis\xe3o geral das ferramentas","breadcrumb":{"home":"In\xedcio","toolManager":"Gerenciador de ferramentas"},"tools":{"build":{"title":"Construir","items":{"core":{"title":"N\xfacleo do editor"},"pro":{"title":"Editor pro","features":{"themeBuilder":"Construtor de temas","popups":"Pop-ups","commerce":"Com\xe9rcio","savedTemplates":"Modelos salvos","templateCategories":"Categorias de modelos","starterTemplates":"Modelos iniciais (modelos de site)","customFonts":"Fontes personalizadas","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":"Gerenciar","items":{"email":{"title":"Entregabilidade de e-mail"}}}},"actions":{"add":"Adicionar","update":"Atualizar","activate":"Ativar","deactivate":"Desativar","migrateToOne":"Migrar para um","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 voc\xea poder\xe1 us\xe1-la em 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"}},"showMoreFeatures":"Mostrar mais recursos","hideMoreFeatures":"Ocultar mais recursos","noToolsFound":"Nenhuma ferramenta correspondeu \xe0 pesquisa","noToolsFoundDescription":"Tente ajustar seus filtros.","updateRequiredTooltip":"Plugins atualizados t\xeam novos recursos e corre\xe7\xf5es para que seu site funcione com seguran\xe7a e sem problemas."}')}}]);

View File

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

View File

@@ -0,0 +1 @@
"use strict";(self.webpackChunk=self.webpackChunk||[]).push([["3246"],{44593:function(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"}},"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"},"capabilities":{"greeting":"Empecemos a construir.","filters":{"all":"Todo","discover":"Descubrir","build":"Construir","optimize":"Optimizar","manage":"Gestionar"},"toolManager":"Administrador de herramientas","addForFreeButton":"A\xf1adir gratis","openButton":"Abrir","goProButton":"Hacerse Pro","inProgressButton":"En curso","learnMore":{"upgrade":"Actualizar","install":"Instalar"}},"toolManager":{"title":"Controle todas sus herramientas en UN solo lugar."}}')}}]);

View File

@@ -0,0 +1 @@
"use strict";(self.webpackChunk=self.webpackChunk||[]).push([["3321"],{81366:function(e){e.exports=JSON.parse('{"header":"URL-mismatch","title":"Hoe wilt u verdergaan?","description":"Uw licentiesleutel komt niet overeen met uw huidige domein, wat een mismatch veroorzaakt.{br}Dit komt waarschijnlijk door een wijziging in de domein-URL van uw site.","actions":{"updateCurrentSite":{"title":"Gekoppelde URL bijwerken","description":"Voor URL-wijzigingen op dezelfde site, zoals van staging naar productie of van HTTP naar HTTPS.","action":"Gekoppelde URL bijwerken"},"connectNewSite":{"title":"De URL als een nieuwe site koppelen","description":"Voor het koppelen van een compleet andere site. Eerdere geschiedenis wordt verwijderd.","action":"Koppelen als een nieuwe site"}}}')}}]);

View File

@@ -0,0 +1 @@
"use strict";(self.webpackChunk=self.webpackChunk||[]).push([["3390"],{30062:function(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([["3426"],{34686:function(e){e.exports=JSON.parse('{"downloadInvoice404":{"title":"La tua fattura \xe8 in fase di elaborazione","message":"Te la invieremo via email una volta pronta."},"supportedLanguages":{"en":"Inglese","de":"Tedesco","es":"Spagnolo","it":"Italiano","nl":"Olandese","pt-PT":"Portoghese","pt-BR":"Portoghese (Brasile)","fr":"Francese","he-IL":"\u05E2\u05D1\u05E8\u05D9\u05EA"}}')}}]);

View File

@@ -0,0 +1 @@
"use strict";(self.webpackChunk=self.webpackChunk||[]).push([["3494"],{24806:function(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([["3607"],{75193:function(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"}}}')}}]);

File diff suppressed because one or more lines are too long

View File

@@ -0,0 +1 @@
"use strict";(self.webpackChunk=self.webpackChunk||[]).push([["3699"],{86363:function(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.","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."}')}}]);

File diff suppressed because one or more lines are too long

View File

@@ -0,0 +1 @@
"use strict";(self.webpackChunk=self.webpackChunk||[]).push([["4031"],{11713:function(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([["4216"],{27785:function(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([["4331"],{69051:function(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"},"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([["434"],{85170:function(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([["4348"],{74603:function(e){e.exports=JSON.parse('{"alertError":{"defaultTitle":"Un probl\xe8me est survenu !","defaultMessage":"Veuillez actualiser cette page.","refreshBtn":"Actualiser","okBtn":"D\'accord"},"errorBoundary":{"default":{"title":"Un probl\xe8me est survenu !","message":"Veuillez actualiser cette page.","btn":"Actualiser"},"newVersion":{"title":"Nouvelle version disponible !","message":"Veuillez actualiser cette page.","btn":"Actualiser"}}}')}}]);

View File

@@ -0,0 +1 @@
"use strict";(self.webpackChunk=self.webpackChunk||[]).push([["441"],{74490:function(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([["4424"],{61735:function(e){e.exports=JSON.parse('{"dialog":{"title":"Teilen Sie Ihr Feedback mit uns","fieldTitlePlaceholder":"Titel","fieldDescriptionPlaceholder":"Sagen Sie uns, was Sie sich vorgestellt haben","fieldSubjectPlaceholder":"W\xe4hlen Sie das Thema Ihres Feedbacks aus","fieldProductPlaceholder":"Produkt ausw\xe4hlen","note":"Wir freuen uns \xfcber Ihr Feedback! Wir pr\xfcfen zwar alle Einsendungen, k\xf6nnen aber nicht garantieren, dass jeder Vorschlag zu einer \xc4nderung oder Aktualisierung f\xfchrt.","subjects":{"leaveFeedback":"Feedback geben","reportBug":"Fehler melden","requestFeature":"Funktion anfragen","shareThoughts":"Sonstige Gedanken teilen"},"products":{"general":"Allgemein","editor":"Editor","accessibility":"Barrierefreiheit","imageOptimization":"Bildoptimierung","emailDeliverability":"E-Mail-Zustellbarkeit"},"cancel":"Abbrechen","submit":"Senden","titleLengthError":"Der Titel muss weniger als 90 Zeichen lang sein","descriptionLengthError":"Die Beschreibung muss weniger als 1024 Zeichen lang sein","alert":{"title":"Ben\xf6tigen Sie Hilfe oder sind Sie auf ein Problem gesto\xdfen?","button":"Ein Support-Ticket einreichen"}},"tooltipSuccess":"Feedback gesendet. Vielen Dank f\xfcr Ihre Hilfe.","tooltipError":"Es ist ein Fehler aufgetreten. Bitte versuchen Sie, Ihr Feedback erneut zu senden."}')}}]);

View File

@@ -0,0 +1 @@
"use strict";(self.webpackChunk=self.webpackChunk||[]).push([["4453"],{58595:function(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([["4483"],{34212:function(e){e.exports=JSON.parse('{"title":"Ara\xe7 y\xf6neticisi","subtitle":"T\xfcm ara\xe7lar\u0131n\u0131z\u0131 TEK bir yerden kontrol edin.","filters":{"all":"T\xfcm\xfc","active":"Aktif","disabled":"Devre d\u0131\u015F\u0131","notInstalled":"Y\xfckl\xfc de\u011Fil"},"back":"Ara\xe7lara genel bak\u0131\u015Fa geri d\xf6n","breadcrumb":{"home":"Ana Sayfa","toolManager":"Ara\xe7 y\xf6neticisi"},"tools":{"build":{"title":"Olu\u015Ftur","items":{"core":{"title":"D\xfczenleyici \xe7ekirde\u011Fi"},"pro":{"title":"D\xfczenleyici pro","features":{"themeBuilder":"Tema olu\u015Fturucu","popups":"Pop-up\'lar","commerce":"Ticaret","savedTemplates":"Kaydedilen \u015Fablonlar","templateCategories":"\u015Eablon kategorileri","starterTemplates":"Ba\u015Flang\u0131\xe7 \u015Fablonlar\u0131 (web sitesi \u015Fablonlar\u0131)","customFonts":"\xd6zel yaz\u0131 tipleri","customIcons":"\xd6zel simgeler","customCode":"\xd6zel kod","customCss":"\xd6zel CSS"}},"ai":{"title":"Agentic AI"}}},"optimize":{"title":"Optimize Et","items":{"accessibility":{"title":"Eri\u015Filebilirlik"},"io":{"title":"G\xf6rsel optimizasyonu"}}},"manage":{"title":"Y\xf6net","items":{"email":{"title":"E-posta teslim edilebilirli\u011Fi"}}}},"actions":{"add":"Ekle","update":"G\xfcncelle","activate":"Etkinle\u015Ftir","deactivate":"Devre d\u0131\u015F\u0131 b\u0131rak","migrateToOne":"Birine ta\u015F\u0131","updateRequired":"G\xfcncelleme gerekli","confirmAdd":{"title":"Ara\xe7 ekle","msg":"Bu arac\u0131 eklemek istedi\u011Finizden emin misiniz? Bu i\u015Flem arac\u0131 hesab\u0131n\u0131za ekleyecek ve projelerinizde kullanabileceksiniz.","ok":"Ekle","cancel":"\u0130ptal"},"confirmActivate":{"title":"{name}\'y\u0131 etkinle\u015Ftirmek istedi\u011Finizden emin misiniz? ","msg":"Etkinle\u015Ftirerek...","ok":"Etkinle\u015Ftir","cancel":"\u0130ptal"},"confirmDeactivate":{"title":"{name}\'y\u0131 devre d\u0131\u015F\u0131 b\u0131rakmak istedi\u011Finizden emin misiniz? ","msg":"Devre d\u0131\u015F\u0131 b\u0131rakarak...","ok":"Devre d\u0131\u015F\u0131 b\u0131rak","cancel":"\u015Eimdi de\u011Fil"}},"showMoreFeatures":"Daha fazla \xf6zellik g\xf6ster","hideMoreFeatures":"Daha fazla \xf6zelli\u011Fi gizle","noToolsFound":"Bu aramaya uyan ara\xe7 bulunamad\u0131","noToolsFoundDescription":"Filtrelerinizi ayarlamay\u0131 deneyin.","updateRequiredTooltip":"G\xfcncel eklentiler yeni \xf6zelliklere ve d\xfczeltmelere sahiptir, b\xf6ylece siteniz g\xfcvenli ve sorunsuz \xe7al\u0131\u015F\u0131r."}')}}]);

View File

@@ -0,0 +1 @@
"use strict";(self.webpackChunk=self.webpackChunk||[]).push([["4625"],{51722:function(e){e.exports=JSON.parse('{"example":{"component":"Composant exemple"}}')}}]);

File diff suppressed because one or more lines are too long

View File

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

View File

@@ -0,0 +1 @@
"use strict";(self.webpackChunk=self.webpackChunk||[]).push([["497"],{41939:function(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}"},"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([["4987"],{84378:function(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([["5092"],{34221:function(e){e.exports=JSON.parse('{"alertError":{"defaultTitle":"Ocorreu um erro!","defaultMessage":"Por favor, atualize esta p\xe1gina.","refreshBtn":"Atualizar","okBtn":"Compreendo"},"errorBoundary":{"default":{"title":"Ocorreu um erro!","message":"Por favor, atualize esta p\xe1gina.","btn":"Atualizar"},"newVersion":{"title":"Nova vers\xe3o dispon\xedvel!","message":"Por favor, atualize esta p\xe1gina.","btn":"Atualizar"}}}')}}]);

View File

@@ -0,0 +1 @@
"use strict";(self.webpackChunk=self.webpackChunk||[]).push([["5097"],{57359:function(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"}},"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"},"capabilities":{"greeting":"Fangen wir an zu bauen.","filters":{"all":"Alle","discover":"Entdecken","build":"Erstellen","optimize":"Optimieren","manage":"Verwalten"},"toolManager":"Tool-Manager","addForFreeButton":"Kostenlos hinzuf\xfcgen","openButton":"\xd6ffnen","goProButton":"Pro werden","inProgressButton":"In Bearbeitung","learnMore":{"upgrade":"Upgrade","install":"Installieren"}},"toolManager":{"title":"Alle Ihre Tools an EINEM Ort steuern."}}')}}]);

View File

@@ -0,0 +1 @@
"use strict";(self.webpackChunk=self.webpackChunk||[]).push([["5155"],{10712:function(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([["5175"],{40617:function(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([["5235"],{16157:function(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}"},"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([["5319"],{98330:function(e){e.exports=JSON.parse('{"wPLoginAttempts":"Intentos de inicio de sesi\xf3n de WP.","wPLoginAttemptsResetSuccess":"Los intentos de inicio de sesi\xf3n de WP se han restablecido correctamente.","errorTryAgain":"Algo sali\xf3 mal, por favor intente de nuevo.","backupCreation":"Creaci\xf3n de copia de seguridad.","backupCreated":"La copia de seguridad del sitio se ha creado correctamente.","backupUpdate":"La copia de seguridad del sitio se ha actualizado correctamente.","backupUpdated":"La copia de seguridad del sitio se ha actualizado correctamente.","backupRestore":"Restauraci\xf3n de copia de seguridad.","backupDelete":"Eliminaci\xf3n de copia de seguridad.","backupDeleted":"La copia de seguridad ha sido eliminada.","backupExport":"Exportaci\xf3n de copia de seguridad.","backupExportSuccessToast":"Pronto recibir\xe1 un correo electr\xf3nico con el enlace de descarga.","debugMode":"Modo de depuraci\xf3n.","debugModeSwithFailed":"{value, select, true {Desactivar} other {Activar}} el modo de depuraci\xf3n fall\xf3, int\xe9ntalo de nuevo.","siteDeletion":"Eliminaci\xf3n del sitio.","siteDeleted":"El sitio ha sido eliminado.","setFavoriteSuccess":"{domain} fue a\xf1adido a sus sitios favoritos.","removeFavoriteSuccess":"{domain} fue eliminado de sus sitios favoritos.","maxReachedFavorites":"Has alcanzado el n\xfamero m\xe1ximo de favoritos.","generalErrorToast":"Vaya, eso no funcion\xf3. Int\xe9ntalo de nuevo m\xe1s tarde.","websiteDeactivation":"Desactivaci\xf3n del sitio web.","setDefaultPaymentFailed":"No se pudo establecer el m\xe9todo de pago predeterminado.","actionFailedMessage":"Lo sentimos, eso no funcion\xf3.","retryErrorMessage":"Lo sentimos, eso no funcion\xf3. Intente de nuevo.","addingDomainFailed":"La adici\xf3n de un dominio no tuvo \xe9xito, por favor intente de nuevo.","removingDomainFailed":"La eliminaci\xf3n de un dominio no tuvo \xe9xito, por favor intente de nuevo.","settingDomainPrimaryFailed":"Establecer el dominio como principal no tuvo \xe9xito, por favor intente de nuevo.","emailVerification":"Verificaci\xf3n de correo electr\xf3nico.","emailAlreadyVerified":"El correo electr\xf3nico ya est\xe1 verificado.","emailVerificationSent":"\xa1Enviado! Revise su bandeja de entrada para un correo electr\xf3nico de verificaci\xf3n.","emailVerificationResendDelay":"Ya hemos enviado un correo electr\xf3nico de verificaci\xf3n a su bandeja de entrada. Si a\xfan no puede encontrar el correo, puede solicitar que se reenv\xede en 5 minutos.","teamMemberRemoved":"{email} fue eliminado de su equipo.","inviteSentTo":"Se envi\xf3 una invitaci\xf3n a {email}.","billingInfoUpdated":"Su informaci\xf3n de facturaci\xf3n fue actualizada.","subCanceledConfirmation":"Su suscripci\xf3n ha sido cancelada y su reembolso est\xe1 siendo procesado. Revise su correo electr\xf3nico para m\xe1s detalles.","siteDomainRemoved":"El sitio web {domain} ha sido eliminado.","siteLockPassReset":"Restablecimiento de contrase\xf1a de bloqueo del sitio.","updatedSiteLockCode":"Su nuevo c\xf3digo de Site-Lock es: {pass}.","contactSupport":"Contactar con soporte.","srySomethingWrong":"Lo sentimos, algo sali\xf3 mal.","subRefundFailed":"Su suscripci\xf3n sigue activa porque el reembolso no pudo ser procesado. Estamos aqu\xed para ayudar.","partialRefundMessage":"Su reembolso no pudo ser procesado completamente, pero su suscripci\xf3n ya no est\xe1 activa. Estamos aqu\xed para ayudar.","exitMaintenanceModeToastTitle":"Salir del modo de mantenimiento.","exitMaintenanceModeToastText":"El sitio {slug} ha salido exitosamente del modo de mantenimiento."}')}}]);

View File

@@ -0,0 +1 @@
"use strict";(self.webpackChunk=self.webpackChunk||[]).push([["5418"],{30291:function(e){e.exports=JSON.parse('{"onBoardingInstall":{"title":"Benvenuto in\\nElementor One!","description":"Installeremo tutte le funzionalit\xe0 di Elementor.\\nSe non desideri installarle, deselezionale ora.","skip":"Salta","continue":"Continua","installAndContinue":"Installa e continua","duringInstallation":"Durante l\'installazione, aggiorneremo tutti gli strumenti che lo richiedono.","tools":{"additionalBetaTools":"Strumenti beta aggiuntivi","editorCore":{"title":"Editor core","description":"Crea siti web pixel-perfect con un\'interfaccia drag & drop"},"editorPro":{"title":"Editor pro","description":"Crea il tuo intero sito con strumenti professionali"},"imageOptimizer":{"title":"Ottimizzazione immagini","description":"Comprimi e ottimizza le immagini per migliorare le prestazioni"},"accessibility":{"title":"Accessibilit\xe0","description":"Trova e risolvi i problemi di accessibilit\xe0 sul tuo sito"},"siteMailer":{"title":"Site Mailer","description":"Assicurati che le email del tuo sito raggiungano la posta in arrivo, non lo spam"},"ai":{"title":"AI nativa per WordPress","description":"Trasforma le idee in pagine, blocchi e funzionalit\xe0 con l\'AI nativa "},"installed":"Gi\xe0 installato","singleSub":"Abbonamento singolo","updateRequired":"Aggiornamento richiesto","updateRequiredTooltip":"Verr\xe0 aggiornato automaticamente all\'ultima versione","beta":"Beta"}},"siteIdentity":{"activeTheme":"Tema attivo:","getHelloElementor":"Ottieni Hello Elementor","goToDashboard":"Vai alla dashboard","editSite":"Modifica sito","editSiteMenu":{"addPage":"Aggiungi una pagina","addBlogPost":"Aggiungi un post del blog","createHeader":"Crea un\'intestazione","createFooter":"Crea un pi\xe8 di pagina"},"helloThemeInstalled":"Tema Hello Elementor installato correttamente","helloThemeInstallationFailed":"Installazione del tema Hello Elementor non riuscita","helloThemeActivationFailed":"Attivazione del tema Hello Elementor non riuscita","helloThemeActivated":"Tema Hello Elementor attivato con successo"},"capabilities":{"greeting":"Iniziamo a costruire.","filters":{"all":"Tutto","discover":"Scopri","build":"Costruisci","optimize":"Ottimizza","manage":"Gestisci"},"toolManager":"Gestore strumenti","addForFreeButton":"Aggiungi gratuitamente","openButton":"Apri","goProButton":"Passa a Pro","inProgressButton":"In corso","learnMore":{"upgrade":"Aggiorna","install":"Installa"}},"toolManager":{"title":"Controlla tutti i tuoi strumenti in UN UNICO posto."}}')}}]);

View File

@@ -0,0 +1 @@
"use strict";(self.webpackChunk=self.webpackChunk||[]).push([["5464"],{95540:function(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}"},"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([["5473"],{40972:function(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([["5484"],{45869:function(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([["5722"],{54319:function(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([["5797"],{59749:function(e){e.exports=JSON.parse('{"hi":"Merhaba. Ana bilgisayar \xe7evirisi","alerts":{"connect":{"description":"Elementor One plan\u0131n\u0131z m\u0131 var?","action":"Buradan etkinle\u015Ftirin"},"installing":"Y\xfckleniyor\u2026 l\xfctfen bu sayfada kal\u0131n ({total} \xfczerinden {current})","urlMismatch":{"title":"Lisans\u0131n\u0131z bu alana ba\u011Fl\u0131 de\u011Fil","description":"Bu genellikle HTTPS\'ye ge\xe7i\u015F veya URL de\u011Fi\u015Ftirme gibi bir alan ad\u0131 de\u011Fi\u015Fikli\u011Finden sonra olur.","action":"E\u015Fle\u015Fmeyen URL\'yi d\xfczeltin"}}}')}}]);

View File

@@ -0,0 +1 @@
"use strict";(self.webpackChunk=self.webpackChunk||[]).push([["581"],{11281:function(e){e.exports=JSON.parse('{"alertError":{"defaultTitle":"Something went wrong!","defaultMessage":"Please refresh this page.","refreshBtn":"Refresh","okBtn":"Ok"},"errorBoundary":{"default":{"title":"Something went wrong!","message":"Please refresh this page.","btn":"Refresh"},"newVersion":{"title":"New version available!","message":"Please refresh this page.","btn":"Refresh"}}}')}}]);

View File

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

View File

@@ -0,0 +1 @@
"use strict";(self.webpackChunk=self.webpackChunk||[]).push([["5973"],{33554:function(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"}}}')}}]);

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