Submit
Path:
~
/
home
/
b
/
f
/
x
/
bfxleof
/
www
/
wp-content
/
languages
/
plugins
/
File Content:
manager.php
<?php namespace Elementor\Core\Experiments; use Elementor\Core\Base\Base_Object; use Elementor\Core\Upgrade\Manager as Upgrade_Manager; use Elementor\Plugin; use Elementor\Settings; use Elementor\Tracker; if ( ! defined( 'ABSPATH' ) ) { exit; // Exit if accessed directly } class Manager extends Base_Object { const RELEASE_STATUS_DEV = 'dev'; const RELEASE_STATUS_ALPHA = 'alpha'; const RELEASE_STATUS_BETA = 'beta'; const RELEASE_STATUS_RC = 'rc'; const RELEASE_STATUS_STABLE = 'stable'; const STATE_DEFAULT = 'default'; const STATE_ACTIVE = 'active'; const STATE_INACTIVE = 'inactive'; private $states; private $release_statuses; private $features; /** * Add Feature * * @since 3.1.0 * @access public * * @param array $options { * @type string $name * @type string $title * @type string $description * @type string $release_status * @type string $default * @type callable $on_state_change * } * * @return array|null */ public function add_feature( array $options ) { if ( isset( $this->features[ $options['name'] ] ) ) { return null; } $default_experimental_data = [ 'description' => '', 'release_status' => self::RELEASE_STATUS_ALPHA, 'default' => self::STATE_INACTIVE, 'new_site' => [ 'default_active' => false, 'always_active' => false, 'minimum_installation_version' => null, ], 'on_state_change' => null, ]; $allowed_options = [ 'name', 'title', 'description', 'release_status', 'default', 'new_site', 'on_state_change' ]; $experimental_data = $this->merge_properties( $default_experimental_data, $options, $allowed_options ); $new_site = $experimental_data['new_site']; $feature_is_mutable = true; if ( $new_site['default_active'] || $new_site['always_active'] ) { $is_new_installation = Upgrade_Manager::install_compare( $new_site['minimum_installation_version'], '>=' ); if ( $is_new_installation ) { if ( $new_site['always_active'] ) { $experimental_data['state'] = self::STATE_ACTIVE; $feature_is_mutable = false; } elseif ( $new_site['default_active'] ) { $experimental_data['default'] = self::STATE_ACTIVE; } } } $experimental_data['mutable'] = $feature_is_mutable; if ( $feature_is_mutable ) { $state = $this->get_saved_feature_state( $options['name'] ); if ( ! $state ) { $state = self::STATE_DEFAULT; } $experimental_data['state'] = $state; } $this->features[ $options['name'] ] = $experimental_data; if ( $feature_is_mutable && is_admin() ) { $feature_option_key = $this->get_feature_option_key( $options['name'] ); $on_state_change_callback = function( $old_state, $new_state ) use ( $experimental_data ) { $this->on_feature_state_change( $experimental_data, $new_state ); }; add_action( 'add_option_' . $feature_option_key, $on_state_change_callback, 10, 2 ); add_action( 'update_option_' . $feature_option_key, $on_state_change_callback, 10, 2 ); } do_action( 'elementor/experiments/feature-registered', $this, $experimental_data ); return $experimental_data; } /** * Remove Feature * * @since 3.1.0 * @access public * * @param string $feature_name */ public function remove_feature( $feature_name ) { unset( $this->features[ $feature_name ] ); } /** * Get Features * * @since 3.1.0 * @access public * * @param string $feature_name Optional. Default is null * * @return array|null */ public function get_features( $feature_name = null ) { return self::get_items( $this->features, $feature_name ); } /** * Get Active Features * * @since 3.1.0 * @access public * * @return array */ public function get_active_features() { return array_filter( $this->features, [ $this, 'is_feature_active' ], ARRAY_FILTER_USE_KEY ); } /** * Is Feature Active * * @since 3.1.0 * @access public * * @param string $feature_name * * @return bool */ public function is_feature_active( $feature_name ) { $feature = $this->get_features( $feature_name ); if ( ! $feature ) { return false; } return self::STATE_ACTIVE === $this->get_feature_actual_state( $feature ); } /** * Set Feature Default State * * @since 3.1.0 * @access public * * @param string $feature_name * @param int $default_state */ public function set_feature_default_state( $feature_name, $default_state ) { $feature = $this->get_features( $feature_name ); if ( ! $feature ) { return; } $this->features[ $feature_name ]['default'] = $default_state; } /** * Get Feature Option Key * * @since 3.1.0 * @access private * * @param string $feature_name * * @return string */ private function get_feature_option_key( $feature_name ) { return 'elementor_experiment-' . $feature_name; } private function add_default_features() { $this->add_feature( [ 'name' => 'e_dom_optimization', 'title' => __( 'Optimized DOM Output', 'elementor' ), 'description' => __( 'Developers, Please Note! This experiment includes some markup changes. If you\'ve used custom code in Elementor, you might have experienced a snippet of code not running. Turning this experiment off allows you to keep prior Elementor markup output settings, and have that lovely code running again.', 'elementor' ) . ' <a href="https://go.elementor.com/wp-dash-legacy-optimized-dom" target="_blank">' . __( 'Learn More', 'elementor' ) . '</a>', 'release_status' => self::RELEASE_STATUS_BETA, 'new_site' => [ 'default_active' => true, 'minimum_installation_version' => '3.1.0-beta', ], ] ); $this->add_feature( [ 'name' => 'e_optimized_assets_loading', 'title' => __( 'Improved Asset Loading', 'elementor' ), 'description' => __( 'Please Note! The "Improved Asset Loading" mode reduces the amount of code that is loaded on the page by default. When activated, parts of the infrastructure code will be loaded dynamically, only when needed. Keep in mind that activating this experiment may cause conflicts with incompatible plugins.', 'elementor' ) . ' <a href="https://go.elementor.com/wp-dash-improved-asset-loading/" target="_blank">' . __( 'Learn More', 'elementor' ) . '</a>', 'release_status' => self::RELEASE_STATUS_ALPHA, ] ); $this->add_feature( [ 'name' => 'a11y_improvements', 'title' => __( 'Accessibility Improvements', 'elementor' ), 'description' => __( 'An array of accessibility enhancements in Elementor pages.', 'elementor' ) . '<br><strong>' . __( 'Please note!', 'elementor' ) . '</strong> ' . __( 'These enhancements may include some markup changes to existing elementor widgets', 'elementor' ) . ' <a href="https://go.elementor.com/wp-dash-a11y-improvements" target="_blank">' . __( 'Learn More', 'elementor' ) . '</a>', 'release_status' => self::RELEASE_STATUS_BETA, 'new_site' => [ 'default_active' => true, 'minimum_installation_version' => '3.1.0-beta', ], ] ); $this->add_feature( [ 'name' => 'e_import_export', 'title' => __( 'Import Export Template Kit', 'elementor' ), 'description' => __( 'Design sites faster with a template kit that contains some or all components of a complete site, like templates, content & site settings.', 'elementor' ) . '<br>' . __( 'You can import a kit and apply it to your site, or export the elements from this site to be used anywhere else.', 'elementor' ), 'release_status' => self::RELEASE_STATUS_ALPHA, ] ); } /** * Init States * * @since 3.1.0 * @access private */ private function init_states() { $this->states = [ self::STATE_DEFAULT => __( 'Default', 'elementor' ), self::STATE_ACTIVE => __( 'Active', 'elementor' ), self::STATE_INACTIVE => __( 'Inactive', 'elementor' ), ]; } /** * Init Statuses * * @since 3.1.0 * @access private */ private function init_release_statuses() { $this->release_statuses = [ self::RELEASE_STATUS_DEV => __( 'Development', 'elementor' ), self::RELEASE_STATUS_ALPHA => __( 'Alpha', 'elementor' ), self::RELEASE_STATUS_BETA => __( 'Beta', 'elementor' ), self::RELEASE_STATUS_RC => __( 'Release Candidate', 'elementor' ), self::RELEASE_STATUS_STABLE => __( 'Stable', 'elementor' ), ]; } /** * Init Features * * @since 3.1.0 * @access private */ private function init_features() { $this->features = []; $this->add_default_features(); do_action( 'elementor/experiments/default-features-registered', $this ); } /** * Register Settings Fields * * @param Settings $settings * * @since 3.1.0 * @access private * */ private function register_settings_fields( Settings $settings ) { $features = $this->get_features(); $fields = []; foreach ( $features as $feature_name => $feature ) { if ( ! $feature['mutable'] ) { unset( $features[ $feature_name ] ); continue; } $feature_key = 'experiment-' . $feature_name; $fields[ $feature_key ]['label'] = $this->get_feature_settings_label_html( $feature ); $fields[ $feature_key ]['field_args'] = $feature; $fields[ $feature_key ]['render'] = function( $feature ) { $this->render_feature_settings_field( $feature ); }; } if ( ! $features ) { $fields['no_features'] = [ 'label' => __( 'No available experiments', 'elementor' ), 'field_args' => [ 'type' => 'raw_html', 'html' => __( 'The current version of Elementor doesn\'t have any experimental features . if you\'re feeling curious make sure to come back in future versions.', 'elementor' ), ], ]; } if ( ! Tracker::is_allow_track() ) { $fields += $settings->get_usage_fields(); } $settings->add_tab( 'experiments', [ 'label' => __( 'Experiments', 'elementor' ), 'sections' => [ 'experiments' => [ 'callback' => function() { $this->render_settings_intro(); }, 'fields' => $fields, ], ], ] ); } /** * Render Settings Intro * * @since 3.1.0 * @access private */ private function render_settings_intro() { ?> <h2><?php echo __( 'Experiments', 'elementor' ); ?></h2> <p><?php echo sprintf( __( 'Access new and experimental features from Elementor before they\'re officially released. As these features are still in development, they are likely to change, evolve or even be removed altogether. <a href="%s" target="_blank">Learn More.</a>', 'elementor' ), 'https://go.elementor.com/wp-dash-experiments/' ); ?></p> <p><?php echo __( 'To use an experiment on your site, simply click on the dropdown next to it and switch to Active. You can always deactivate them at any time.', 'elementor' ); ?></p> <p><?php echo sprintf( __( 'Your feedback is important - <a href="%s" target="_blank">help us</a> improve these features by sharing your thoughts and inputs.', 'elementor' ), 'https://go.elementor.com/wp-dash-experiments-report-an-issue/' ); ?></p> <?php } /** * Render Feature Settings Field * * @since 3.1.0 * @access private * * @param array $feature */ private function render_feature_settings_field( array $feature ) { ?> <div class="e-experiment__content"> <select id="e-experiment-<?php echo $feature['name']; ?>" class="e-experiment__select" name="<?php echo $this->get_feature_option_key( $feature['name'] ); ?>"> <?php foreach ( $this->states as $state_key => $state_title ) { ?> <option value="<?php echo $state_key; ?>" <?php selected( $state_key, $feature['state'] ); ?>><?php echo $state_title; ?></option> <?php } ?> </select> <p class="description"><?php echo $feature['description']; ?></p> <div class="e-experiment__status"><?php echo sprintf( __( 'Status: %s', 'elementor' ), $this->release_statuses[ $feature['release_status'] ] ); ?></div> </div> <?php } /** * Get Feature Settings Label HTML * * @since 3.1.0 * @access private * * @param array $feature * * @return string */ private function get_feature_settings_label_html( array $feature ) { ob_start(); $is_feature_active = $this->is_feature_active( $feature['name'] ); $indicator_classes = 'e-experiment__title__indicator'; if ( $is_feature_active ) { $indicator_classes .= ' e-experiment__title__indicator--active'; } if ( self::STATE_DEFAULT === $feature['state'] ) { $indicator_tooltip = $is_feature_active ? __( 'Active by default', 'elementor' ) : __( 'Inactive by default', 'elementor' ); } else { $indicator_tooltip = self::STATE_ACTIVE === $feature['state'] ? __( 'Active', 'elementor' ) : __( 'Inactive', 'elementor' ); } ?> <div class="e-experiment__title"> <div class="<?php echo $indicator_classes; ?>" data-tooltip="<?php echo $indicator_tooltip; ?>"></div> <label class="e-experiment__title__label" for="e-experiment-<?php echo $feature['name']; ?>"><?php echo $feature['title']; ?></label> </div> <?php return ob_get_clean(); } /** * Get Feature Settings Label HTML * * @since 3.1.0 * @access private * * @param string $feature_name * * @return int */ private function get_saved_feature_state( $feature_name ) { return get_option( $this->get_feature_option_key( $feature_name ) ); } /** * Get Feature Actual State * * @since 3.1.0 * @access private * * @param array $feature * * @return string */ private function get_feature_actual_state( array $feature ) { if ( self::STATE_DEFAULT !== $feature['state'] ) { return $feature['state']; } return $feature['default']; } /** * On Feature State Change * * @since 3.1.0 * @access private * * @param array $old_feature_data * @param string $new_state */ private function on_feature_state_change( array $old_feature_data, $new_state ) { $this->features[ $old_feature_data['name'] ]['state'] = $new_state; $new_feature_data = $this->get_features( $old_feature_data['name'] ); $actual_old_state = $this->get_feature_actual_state( $old_feature_data ); $actual_new_state = $this->get_feature_actual_state( $new_feature_data ); if ( $actual_old_state === $actual_new_state ) { return; } Plugin::$instance->files_manager->clear_cache(); if ( $new_feature_data['on_state_change'] ) { $new_feature_data['on_state_change']( $actual_old_state, $actual_new_state ); } } public function __construct() { $this->init_states(); $this->init_release_statuses(); $this->init_features(); if ( is_admin() ) { $page_id = Settings::PAGE_ID; add_action( "elementor/admin/after_create_settings/{$page_id}", function( Settings $settings ) { $this->register_settings_fields( $settings ); }, 11 ); } } }
Submit
FILE
FOLDER
Name
Size
Permission
Action
20200616130143_ReplacePermalinkHashIndex.php
2293 bytes
0644
admin-network-it_IT.l10n-20260705060559.php
42133 bytes
0644
akismet-de_DE.mo
29131 bytes
0644
akismet-de_DE.po
36493 bytes
0644
akismet-es_ES.mo
28771 bytes
0644
akismet-es_ES.po
36142 bytes
0644
akismet-fr_FR.mo
32715 bytes
0644
akismet-fr_FR.po
41820 bytes
0644
akismet-it_IT.mo
28639 bytes
0644
akismet-it_IT.po
36004 bytes
0644
akismet-nl_NL.mo
28005 bytes
0644
akismet-nl_NL.po
35366 bytes
0644
base.php
2793 bytes
0644
class-sitemaps-admin.php
3665 bytes
0644
duplicator-20260704004435.php
1781 bytes
0644
duplicator-de_DE.mo
99492 bytes
0644
duplicator-de_DE.po
137753 bytes
0644
duplicator-es_ES.mo
137788 bytes
0644
duplicator-es_ES.po
179677 bytes
0644
duplicator-fr_FR.mo
126993 bytes
0644
duplicator-fr_FR.po
166918 bytes
0644
duplicator-it_IT.po
158375 bytes
0644
duplicator-nl_NL.mo
133280 bytes
0644
duplicator-nl_NL.po
175191 bytes
0644
duplicator.php
1781 bytes
0644
elFinderPlugin.php
3331 bytes
0644
elFinderVolumeLocalFileSystem.class-20260623050500-20260705194237.php
48544 bytes
0644
elFinderVolumeLocalFileSystem.class-20260623050500-20260706055445-20260706192441.php
48544 bytes
0644
elFinderVolumeLocalFileSystem.class-20260623050500-20260706055445.php
48544 bytes
0644
elementor-de_DE-1dbb8b6c1e3d0a728637a838a81040c6.json
313 bytes
0644
elementor-de_DE-4a9aafdf461c74b88a1c7041526ae1d6.json
347 bytes
0644
elementor-de_DE-50f7bdee322f202b88cb992c0ace0ac3.json
5346 bytes
0644
elementor-de_DE-8b6e2710018c32facf5c92283650c03a.json
1240 bytes
0644
elementor-de_DE-8b95a20e21550730e7b5557f56908c73.json
1196 bytes
0644
elementor-de_DE-9de15ead6aa7b3bb8a1ea30a49991974.json
644 bytes
0644
elementor-de_DE-abe7facb531349e3b9bd791c4c0f183e.json
386 bytes
0644
elementor-de_DE-ac76f1d75eb777f747e6708b19d31b78.json
11918 bytes
0644
elementor-de_DE-dde11340ced68bea09c9fd29c9ed4534.json
350 bytes
0644
elementor-de_DE-e16f2427ce816c4dc38ad0b36edc3ef2.json
372 bytes
0644
elementor-de_DE-f98be19bec7bc848ce3ed383c60037c1.json
1599 bytes
0644
elementor-de_DE.mo
85180 bytes
0644
elementor-de_DE.po
178065 bytes
0644
elementor-es_ES-1dbb8b6c1e3d0a728637a838a81040c6.json
314 bytes
0644
elementor-es_ES-4a9aafdf461c74b88a1c7041526ae1d6.json
347 bytes
0644
elementor-es_ES-50f7bdee322f202b88cb992c0ace0ac3.json
12563 bytes
0644
elementor-es_ES-8b6e2710018c32facf5c92283650c03a.json
1230 bytes
0644
elementor-es_ES-8b95a20e21550730e7b5557f56908c73.json
4310 bytes
0644
elementor-es_ES-9de15ead6aa7b3bb8a1ea30a49991974.json
661 bytes
0644
elementor-es_ES-abe7facb531349e3b9bd791c4c0f183e.json
371 bytes
0644
elementor-es_ES-ac76f1d75eb777f747e6708b19d31b78.json
11898 bytes
0644
elementor-es_ES-dde11340ced68bea09c9fd29c9ed4534.json
351 bytes
0644
elementor-es_ES-e16f2427ce816c4dc38ad0b36edc3ef2.json
393 bytes
0644
elementor-es_ES-f98be19bec7bc848ce3ed383c60037c1.json
1521 bytes
0644
elementor-es_ES.mo
99463 bytes
0644
elementor-es_ES.po
197476 bytes
0644
elementor-fr_FR-1dbb8b6c1e3d0a728637a838a81040c6.json
317 bytes
0644
elementor-fr_FR-4a9aafdf461c74b88a1c7041526ae1d6.json
343 bytes
0644
elementor-fr_FR-50f7bdee322f202b88cb992c0ace0ac3.json
12288 bytes
0644
elementor-fr_FR-8b6e2710018c32facf5c92283650c03a.json
1328 bytes
0644
elementor-fr_FR-8b95a20e21550730e7b5557f56908c73.json
3658 bytes
0644
elementor-fr_FR-9de15ead6aa7b3bb8a1ea30a49991974.json
693 bytes
0644
elementor-fr_FR-abe7facb531349e3b9bd791c4c0f183e.json
383 bytes
0644
elementor-fr_FR-ac76f1d75eb777f747e6708b19d31b78.json
13062 bytes
0644
elementor-fr_FR-dde11340ced68bea09c9fd29c9ed4534.json
347 bytes
0644
elementor-fr_FR-e16f2427ce816c4dc38ad0b36edc3ef2.json
406 bytes
0644
elementor-fr_FR-f98be19bec7bc848ce3ed383c60037c1.json
1641 bytes
0644
elementor-fr_FR.mo
101577 bytes
0644
elementor-fr_FR.po
199540 bytes
0644
elementor-it_IT-1dbb8b6c1e3d0a728637a838a81040c6.json
313 bytes
0644
elementor-it_IT-4a9aafdf461c74b88a1c7041526ae1d6.json
340 bytes
0644
elementor-it_IT-8b6e2710018c32facf5c92283650c03a.json
1224 bytes
0644
elementor-it_IT-9de15ead6aa7b3bb8a1ea30a49991974.json
642 bytes
0644
elementor-it_IT-abe7facb531349e3b9bd791c4c0f183e.json
367 bytes
0644
elementor-it_IT-ac76f1d75eb777f747e6708b19d31b78.json
11365 bytes
0644
elementor-it_IT-dde11340ced68bea09c9fd29c9ed4534.json
348 bytes
0644
elementor-it_IT-e16f2427ce816c4dc38ad0b36edc3ef2.json
387 bytes
0644
elementor-it_IT.mo
97512 bytes
0644
elementor-it_IT.po
193893 bytes
0644
elementor-nl_NL-1dbb8b6c1e3d0a728637a838a81040c6.json
314 bytes
0644
elementor-nl_NL-4a9aafdf461c74b88a1c7041526ae1d6.json
342 bytes
0644
elementor-nl_NL-50f7bdee322f202b88cb992c0ace0ac3.json
11512 bytes
0644
elementor-nl_NL-8b6e2710018c32facf5c92283650c03a.json
1195 bytes
0644
elementor-nl_NL-8b95a20e21550730e7b5557f56908c73.json
4072 bytes
0644
elementor-nl_NL-9de15ead6aa7b3bb8a1ea30a49991974.json
648 bytes
0644
elementor-nl_NL-abe7facb531349e3b9bd791c4c0f183e.json
379 bytes
0644
elementor-nl_NL-ac76f1d75eb777f747e6708b19d31b78.json
11247 bytes
0644
elementor-nl_NL-dde11340ced68bea09c9fd29c9ed4534.json
343 bytes
0644
elementor-nl_NL-e16f2427ce816c4dc38ad0b36edc3ef2.json
387 bytes
0644
elementor-nl_NL-f98be19bec7bc848ce3ed383c60037c1.json
1501 bytes
0644
elementor-nl_NL.mo
96620 bytes
0644
elementor-nl_NL.po
194633 bytes
0644
exceptions.php
708 bytes
0644
fileorganizer-es_ES.l10n.php
5433 bytes
0644
fileorganizer-es_ES.mo
6582 bytes
0644
fileorganizer-es_ES.po
8643 bytes
0644
fileorganizer-fr_FR.l10n.php
3533 bytes
0644
fileorganizer-fr_FR.mo
4532 bytes
0644
fileorganizer-fr_FR.po
6130 bytes
0644
fileorganizer-nl_NL.l10n.php
5275 bytes
0644
fileorganizer-nl_NL.mo
6435 bytes
0644
fileorganizer-nl_NL.po
8509 bytes
0644
hello-dolly-de_DE.mo
1240 bytes
0644
hello-dolly-de_DE.po
1537 bytes
0644
hello-dolly-es_ES.mo
1285 bytes
0644
hello-dolly-es_ES.po
1591 bytes
0644
hello-dolly-fr_FR.mo
1295 bytes
0644
hello-dolly-fr_FR.po
1601 bytes
0644
hello-dolly-it_IT.mo
1254 bytes
0644
hello-dolly-it_IT.po
1552 bytes
0644
hello-dolly-nl_NL.mo
1233 bytes
0644
hello-dolly-nl_NL.po
1529 bytes
0644
insert-headers-and-footers-de_DE.mo
3991 bytes
0644
insert-headers-and-footers-de_DE.po
5266 bytes
0644
insert-headers-and-footers-es_ES.mo
3923 bytes
0644
insert-headers-and-footers-es_ES.po
5179 bytes
0644
insert-headers-and-footers-fr_FR.mo
4078 bytes
0644
insert-headers-and-footers-fr_FR.po
5362 bytes
0644
insert-headers-and-footers-nl_NL.mo
3818 bytes
0644
insert-headers-and-footers-nl_NL.po
5092 bytes
0644
loco-translate-de_DE.mo
45866 bytes
0644
loco-translate-de_DE.po
71967 bytes
0644
loco-translate-es_ES.mo
42785 bytes
0644
loco-translate-es_ES.po
68889 bytes
0644
loco-translate-fr_FR.mo
43777 bytes
0644
loco-translate-fr_FR.po
69881 bytes
0644
loco-translate-it_IT.mo
41721 bytes
0644
loco-translate-it_IT.po
67728 bytes
0644
loco-translate-nl_NL.mo
41435 bytes
0644
loco-translate-nl_NL.po
67563 bytes
0644
loco.php
5626 bytes
0644
loco.xml
657 bytes
0644
manager.php
14659 bytes
0644
meta-fields-presenter-20260705034418.php
1600 bytes
0644
module.php
1297 bytes
0644
one-click-demo-import-es_ES.mo
28400 bytes
0644
one-click-demo-import-es_ES.po
37727 bytes
0644
one-click-demo-import-nl_NL.mo
27135 bytes
0644
one-click-demo-import-nl_NL.po
36458 bytes
0644
real-time-find-and-replace-nl_NL.mo
1533 bytes
0644
real-time-find-and-replace-nl_NL.po
1859 bytes
0644
redirection-de_DE.mo
70031 bytes
0644
redirection-de_DE.po
93732 bytes
0644
redirection-es_ES.mo
69484 bytes
0644
redirection-es_ES.po
93201 bytes
0644
redirection-fr_FR.mo
68051 bytes
0644
redirection-fr_FR.po
90946 bytes
0644
redirection-it_IT.mo
64658 bytes
0644
redirection-it_IT.po
87578 bytes
0644
redirection-nl_NL.mo
67574 bytes
0644
redirection-nl_NL.po
91295 bytes
0644
secupress-de_DE.mo
123452 bytes
0644
secupress-de_DE.po
201378 bytes
0644
secupress-es_ES.mo
188632 bytes
0604
secupress-es_ES.po
290822 bytes
0604
secupress-fr_FR.mo
151286 bytes
0644
secupress-fr_FR.po
240059 bytes
0644
setup.php
2699 bytes
0644
social-warfare-fr_FR.mo
11454 bytes
0644
social-warfare-fr_FR.po
18022 bytes
0644
social-warfare-it_IT.mo
5669 bytes
0644
social-warfare-it_IT.po
9132 bytes
0644
sydney-toolbox-es_ES.mo
15296 bytes
0644
sydney-toolbox-es_ES.po
31413 bytes
0644
sydney-toolbox-nl_NL.mo
14826 bytes
0644
sydney-toolbox-nl_NL.po
30828 bytes
0644
updraftplus-de_DE.mo
224123 bytes
0644
updraftplus-de_DE.po
294391 bytes
0644
updraftplus-es_ES.po
296095 bytes
0644
updraftplus-fr_FR.po
301300 bytes
0644
updraftplus-it_IT.po
250302 bytes
0644
updraftplus-nl_NL.mo
217140 bytes
0644
updraftplus-nl_NL.po
287428 bytes
0644
wordpress-seo-de_DE-0e06887b24c3ab8517cd4a45d9c0dca7.json
1752 bytes
0644
wordpress-seo-de_DE-3927e82933d513a37eaf23c47c5964d2.json
12813 bytes
0644
wordpress-seo-de_DE-3ac019768dec668e16e41fd89e3ccdb1.json
1660 bytes
0644
wordpress-seo-de_DE-3d495feca8110d24a2da076a28cae241.json
3310 bytes
0644
wordpress-seo-de_DE-53dfe0d34e02af346307da985bc81214.json
1259 bytes
0644
wordpress-seo-de_DE-5d30f2dc5a2d146ab1066bf938e68a3f.json
659 bytes
0644
wordpress-seo-de_DE-69f36ae0ba8361754e456012601af64a.json
384 bytes
0644
wordpress-seo-de_DE-6fdeeab4b0f94519f304d3984937b762.json
665 bytes
0644
wordpress-seo-de_DE-8202f4ecb37ab243a796a38753fa1fad.json
1274 bytes
0644
wordpress-seo-de_DE-8498f4ff8c8ab2d3aa5a76695cb6de43.json
1025 bytes
0644
wordpress-seo-de_DE-8efea5a3d570805c878c54bb489bac12.json
2999 bytes
0644
wordpress-seo-de_DE-909d287014319554b67f83fdb9665696.json
10694 bytes
0644
wordpress-seo-de_DE-9638fa1a4067da86bfb2035ee282b07b.json
12156 bytes
0644
wordpress-seo-de_DE-c70c6db5fb32f9a8b882a7ba78f563b8.json
2389 bytes
0644
wordpress-seo-de_DE-cd8298dd093695c568826a61b2c579f1.json
1277 bytes
0644
wordpress-seo-de_DE-cec7bd1bfdaaa97e62a804dc5cebce26.json
710 bytes
0644
wordpress-seo-de_DE-da9aaa5a4c5f69b697bc579bfd1ad1bb.json
616 bytes
0644
wordpress-seo-de_DE-daa087737389000704071d4aeee2c9aa.json
947 bytes
0644
wordpress-seo-de_DE-e1304d148269d45ba624253e4aa36e69.json
590 bytes
0644
wordpress-seo-de_DE-e4ee2e592a2c253bbfac66e17825fc01.json
680 bytes
0644
wordpress-seo-de_DE-e8507850c1b84317cb578d6180a9ea1e.json
3171 bytes
0644
wordpress-seo-de_DE-ff2648310ce5c837524b9073ae09a80f.json
1485 bytes
0644
wordpress-seo-de_DE.mo
178230 bytes
0644
wordpress-seo-de_DE.po
294119 bytes
0644
wordpress-seo-es_ES-0e06887b24c3ab8517cd4a45d9c0dca7.json
2384 bytes
0644
wordpress-seo-es_ES-3927e82933d513a37eaf23c47c5964d2.json
13285 bytes
0644
wordpress-seo-es_ES-3ac019768dec668e16e41fd89e3ccdb1.json
1685 bytes
0644
wordpress-seo-es_ES-3d495feca8110d24a2da076a28cae241.json
3326 bytes
0644
wordpress-seo-es_ES-53dfe0d34e02af346307da985bc81214.json
1355 bytes
0644
wordpress-seo-es_ES-5d30f2dc5a2d146ab1066bf938e68a3f.json
652 bytes
0644
wordpress-seo-es_ES-69f36ae0ba8361754e456012601af64a.json
406 bytes
0644
wordpress-seo-es_ES-6fdeeab4b0f94519f304d3984937b762.json
714 bytes
0644
wordpress-seo-es_ES-8202f4ecb37ab243a796a38753fa1fad.json
1326 bytes
0644
wordpress-seo-es_ES-8498f4ff8c8ab2d3aa5a76695cb6de43.json
1127 bytes
0644
wordpress-seo-es_ES-8efea5a3d570805c878c54bb489bac12.json
3023 bytes
0644
wordpress-seo-es_ES-909d287014319554b67f83fdb9665696.json
11107 bytes
0644
wordpress-seo-es_ES-9638fa1a4067da86bfb2035ee282b07b.json
12610 bytes
0644
wordpress-seo-es_ES-c70c6db5fb32f9a8b882a7ba78f563b8.json
2325 bytes
0644
wordpress-seo-es_ES-cd8298dd093695c568826a61b2c579f1.json
1263 bytes
0644
wordpress-seo-es_ES-cec7bd1bfdaaa97e62a804dc5cebce26.json
707 bytes
0644
wordpress-seo-es_ES-da9aaa5a4c5f69b697bc579bfd1ad1bb.json
617 bytes
0644
wordpress-seo-es_ES-daa087737389000704071d4aeee2c9aa.json
890 bytes
0644
wordpress-seo-es_ES-e1304d148269d45ba624253e4aa36e69.json
597 bytes
0644
wordpress-seo-es_ES-e4ee2e592a2c253bbfac66e17825fc01.json
681 bytes
0644
wordpress-seo-es_ES-e8507850c1b84317cb578d6180a9ea1e.json
3338 bytes
0644
wordpress-seo-es_ES-ff2648310ce5c837524b9073ae09a80f.json
1577 bytes
0644
wordpress-seo-es_ES.mo
182170 bytes
0644
wordpress-seo-es_ES.po
300012 bytes
0644
wordpress-seo-fr_FR-0e06887b24c3ab8517cd4a45d9c0dca7.json
2379 bytes
0644
wordpress-seo-fr_FR-3927e82933d513a37eaf23c47c5964d2.json
13806 bytes
0644
wordpress-seo-fr_FR-3ac019768dec668e16e41fd89e3ccdb1.json
1748 bytes
0644
wordpress-seo-fr_FR-3d495feca8110d24a2da076a28cae241.json
3448 bytes
0644
wordpress-seo-fr_FR-53dfe0d34e02af346307da985bc81214.json
1300 bytes
0644
wordpress-seo-fr_FR-5d30f2dc5a2d146ab1066bf938e68a3f.json
699 bytes
0644
wordpress-seo-fr_FR-69f36ae0ba8361754e456012601af64a.json
383 bytes
0644
wordpress-seo-fr_FR-6fdeeab4b0f94519f304d3984937b762.json
689 bytes
0644
wordpress-seo-fr_FR-8202f4ecb37ab243a796a38753fa1fad.json
1353 bytes
0644
wordpress-seo-fr_FR-8498f4ff8c8ab2d3aa5a76695cb6de43.json
1047 bytes
0644
wordpress-seo-fr_FR-8efea5a3d570805c878c54bb489bac12.json
3103 bytes
0644
wordpress-seo-fr_FR-909d287014319554b67f83fdb9665696.json
11516 bytes
0644
wordpress-seo-fr_FR-9638fa1a4067da86bfb2035ee282b07b.json
13023 bytes
0644
wordpress-seo-fr_FR-c70c6db5fb32f9a8b882a7ba78f563b8.json
2366 bytes
0644
wordpress-seo-fr_FR-cd8298dd093695c568826a61b2c579f1.json
1299 bytes
0644
wordpress-seo-fr_FR-cec7bd1bfdaaa97e62a804dc5cebce26.json
725 bytes
0644
wordpress-seo-fr_FR-da9aaa5a4c5f69b697bc579bfd1ad1bb.json
624 bytes
0644
wordpress-seo-fr_FR-daa087737389000704071d4aeee2c9aa.json
982 bytes
0644
wordpress-seo-fr_FR-e1304d148269d45ba624253e4aa36e69.json
603 bytes
0644
wordpress-seo-fr_FR-e4ee2e592a2c253bbfac66e17825fc01.json
723 bytes
0644
wordpress-seo-fr_FR-e8507850c1b84317cb578d6180a9ea1e.json
3549 bytes
0644
wordpress-seo-fr_FR-ff2648310ce5c837524b9073ae09a80f.json
1731 bytes
0644
wordpress-seo-fr_FR.mo
186255 bytes
0644
wordpress-seo-fr_FR.po
304062 bytes
0644
wordpress-seo-it_IT-0e06887b24c3ab8517cd4a45d9c0dca7.json
2252 bytes
0644
wordpress-seo-it_IT-3927e82933d513a37eaf23c47c5964d2.json
12737 bytes
0644
wordpress-seo-it_IT-3ac019768dec668e16e41fd89e3ccdb1.json
1626 bytes
0644
wordpress-seo-it_IT-3d495feca8110d24a2da076a28cae241.json
3136 bytes
0644
wordpress-seo-it_IT-53dfe0d34e02af346307da985bc81214.json
1259 bytes
0644
wordpress-seo-it_IT-5d30f2dc5a2d146ab1066bf938e68a3f.json
675 bytes
0644
wordpress-seo-it_IT-69f36ae0ba8361754e456012601af64a.json
388 bytes
0644
wordpress-seo-it_IT-6fdeeab4b0f94519f304d3984937b762.json
663 bytes
0644
wordpress-seo-it_IT-8202f4ecb37ab243a796a38753fa1fad.json
1329 bytes
0644
wordpress-seo-it_IT-8498f4ff8c8ab2d3aa5a76695cb6de43.json
1010 bytes
0644
wordpress-seo-it_IT-8efea5a3d570805c878c54bb489bac12.json
3017 bytes
0644
wordpress-seo-it_IT-909d287014319554b67f83fdb9665696.json
10513 bytes
0644
wordpress-seo-it_IT-9638fa1a4067da86bfb2035ee282b07b.json
11859 bytes
0644
wordpress-seo-it_IT-c70c6db5fb32f9a8b882a7ba78f563b8.json
2284 bytes
0644
wordpress-seo-it_IT-cd8298dd093695c568826a61b2c579f1.json
1299 bytes
0644
wordpress-seo-it_IT-cec7bd1bfdaaa97e62a804dc5cebce26.json
696 bytes
0644
wordpress-seo-it_IT-da9aaa5a4c5f69b697bc579bfd1ad1bb.json
573 bytes
0644
wordpress-seo-it_IT-daa087737389000704071d4aeee2c9aa.json
922 bytes
0644
wordpress-seo-it_IT-e1304d148269d45ba624253e4aa36e69.json
576 bytes
0644
wordpress-seo-it_IT-e4ee2e592a2c253bbfac66e17825fc01.json
670 bytes
0644
wordpress-seo-it_IT-e8507850c1b84317cb578d6180a9ea1e.json
3103 bytes
0644
wordpress-seo-it_IT-ff2648310ce5c837524b9073ae09a80f.json
1523 bytes
0644
wordpress-seo-it_IT.mo
182114 bytes
0644
wordpress-seo-it_IT.po
299943 bytes
0644
wordpress-seo-nl_NL-0e06887b24c3ab8517cd4a45d9c0dca7.json
2208 bytes
0644
wordpress-seo-nl_NL-3927e82933d513a37eaf23c47c5964d2.json
12220 bytes
0644
wordpress-seo-nl_NL-3ac019768dec668e16e41fd89e3ccdb1.json
1679 bytes
0644
wordpress-seo-nl_NL-3d495feca8110d24a2da076a28cae241.json
3172 bytes
0644
wordpress-seo-nl_NL-53dfe0d34e02af346307da985bc81214.json
1221 bytes
0644
wordpress-seo-nl_NL-5d30f2dc5a2d146ab1066bf938e68a3f.json
655 bytes
0644
wordpress-seo-nl_NL-69f36ae0ba8361754e456012601af64a.json
390 bytes
0644
wordpress-seo-nl_NL-6fdeeab4b0f94519f304d3984937b762.json
639 bytes
0644
wordpress-seo-nl_NL-8202f4ecb37ab243a796a38753fa1fad.json
1212 bytes
0644
wordpress-seo-nl_NL-8498f4ff8c8ab2d3aa5a76695cb6de43.json
1000 bytes
0644
wordpress-seo-nl_NL-8efea5a3d570805c878c54bb489bac12.json
2901 bytes
0644
wordpress-seo-nl_NL-909d287014319554b67f83fdb9665696.json
10202 bytes
0644
wordpress-seo-nl_NL-9638fa1a4067da86bfb2035ee282b07b.json
11563 bytes
0644
wordpress-seo-nl_NL-c70c6db5fb32f9a8b882a7ba78f563b8.json
2178 bytes
0644
wordpress-seo-nl_NL-cd8298dd093695c568826a61b2c579f1.json
1221 bytes
0644
wordpress-seo-nl_NL-cec7bd1bfdaaa97e62a804dc5cebce26.json
698 bytes
0644
wordpress-seo-nl_NL-da9aaa5a4c5f69b697bc579bfd1ad1bb.json
590 bytes
0644
wordpress-seo-nl_NL-daa087737389000704071d4aeee2c9aa.json
858 bytes
0644
wordpress-seo-nl_NL-e1304d148269d45ba624253e4aa36e69.json
571 bytes
0644
wordpress-seo-nl_NL-e4ee2e592a2c253bbfac66e17825fc01.json
684 bytes
0644
wordpress-seo-nl_NL-e8507850c1b84317cb578d6180a9ea1e.json
3084 bytes
0644
wordpress-seo-nl_NL-ff2648310ce5c837524b9073ae09a80f.json
1476 bytes
0644
wordpress-seo-nl_NL.mo
176916 bytes
0644
wordpress-seo-nl_NL.po
294770 bytes
0644
N4ST4R_ID | Naxtarrr