Version Description
Download this release
Release Info
| Developer | creativethemeshq |
| Plugin | |
| Version | 1.8.8 |
| Comparing to | |
| See all releases | |
Code changes from version 1.8.7.5 to 1.8.8
- blocksy-companion.php +1 -1
- framework/cache-reset-manager.php +3 -0
- framework/extensions-manager.php +12 -0
- framework/extensions/cookies-consent/config.php +1 -1
- framework/extensions/cookies-consent/static/bundle/main.min.css +1 -1
- framework/extensions/newsletter-subscribe/config.php +1 -1
- framework/extensions/newsletter-subscribe/static/bundle/main.min.css +1 -1
- framework/extensions/product-reviews/config.php +1 -1
- framework/extensions/product-reviews/static/bundle/main-admin.min.css +1 -1
- framework/extensions/product-reviews/static/bundle/main.min.css +1 -1
- framework/extensions/trending/config.php +1 -1
- framework/extensions/trending/customizer.php +1 -1
- framework/extensions/trending/static/bundle/main.min.css +1 -1
- framework/extensions/widgets/config.php +1 -1
- framework/extensions/widgets/static/bundle/main.min.css +1 -1
- framework/extensions/widgets/widgets/ct-posts/options.php +2 -1
- framework/extensions/widgets/widgets/ct-posts/view.php +9 -3
- framework/features/conditions-manager.php +7 -3
- framework/features/dynamic-css.php +1 -1
- framework/features/google-analytics.php +11 -4
- framework/features/header/items/account/options.php +2 -2
- framework/features/header/items/account/views/login.php +3 -3
- framework/features/header/items/account/views/logout.php +1 -1
- framework/features/opengraph-meta-data.php +2 -2
- framework/theme-integration.php +14 -10
- framework/views/blocksy-posts.php +8 -0
- languages/blocksy-companion.pot +1618 -866
- readme.txt +11 -1
- static/bundle/dashboard.js +1 -1
- static/bundle/dashboard.min.css +2 -2
- static/bundle/main.min.css +1 -1
- static/bundle/options.js +1 -1
- static/bundle/options.min.css +1 -1
- static/bundle/sticky.js +1 -1
- static/js/frontend/sticky/shrink-handle-logo.js +5 -3
- static/js/options/CustomizerOptionsManager.js +2 -2
- static/js/screens/DemoInstall.js +1 -1
- static/sass/beta.scss +1 -1
- static/sass/demo-install/demo-list.scss +1 -1
- static/sass/extensions/main.scss +4 -4
blocksy-companion.php
CHANGED
|
@@ -3,7 +3,7 @@
|
|
| 3 |
/*
|
| 4 |
Plugin Name: Blocksy Companion
|
| 5 |
Description: This plugin is the companion for the Blocksy theme, it runs and adds its enhacements only if the Blocksy theme is installed and active.
|
| 6 |
-
Version: 1.8.
|
| 7 |
Author: CreativeThemes
|
| 8 |
Author URI: https://creativethemes.com
|
| 9 |
Text Domain: blc
|
| 3 |
/*
|
| 4 |
Plugin Name: Blocksy Companion
|
| 5 |
Description: This plugin is the companion for the Blocksy theme, it runs and adds its enhacements only if the Blocksy theme is installed and active.
|
| 6 |
+
Version: 1.8.8
|
| 7 |
Author: CreativeThemes
|
| 8 |
Author URI: https://creativethemes.com
|
| 9 |
Text Domain: blc
|
framework/cache-reset-manager.php
CHANGED
|
@@ -101,6 +101,7 @@ class CacheResetManager {
|
|
| 101 |
}
|
| 102 |
|
| 103 |
if (class_exists('WP_Optimize') && defined('WPO_PLUGIN_MAIN_PATH')) {
|
|
|
|
| 104 |
if (! class_exists('WP_Optimize_Cache_Commands')) include_once(WPO_PLUGIN_MAIN_PATH . 'cache/class-cache-commands.php');
|
| 105 |
if (! class_exists('WP_Optimize_Minify_Commands')) include_once(WPO_PLUGIN_MAIN_PATH . 'minify/class-wp-optimize-minify-commands.php');
|
| 106 |
if (! class_exists('WP_Optimize_Minify_Cache_Functions')) include_once(WPO_PLUGIN_MAIN_PATH . 'minify/class-wp-optimize-minify-cache-functions.php');
|
|
@@ -114,6 +115,8 @@ class CacheResetManager {
|
|
| 114 |
$wpoptimize_minify_commands = new \WP_Optimize_Minify_Commands();
|
| 115 |
$wpoptimize_minify_commands->purge_minify_cache();
|
| 116 |
}
|
|
|
|
|
|
|
| 117 |
}
|
| 118 |
|
| 119 |
if (
|
| 101 |
}
|
| 102 |
|
| 103 |
if (class_exists('WP_Optimize') && defined('WPO_PLUGIN_MAIN_PATH')) {
|
| 104 |
+
ob_start();
|
| 105 |
if (! class_exists('WP_Optimize_Cache_Commands')) include_once(WPO_PLUGIN_MAIN_PATH . 'cache/class-cache-commands.php');
|
| 106 |
if (! class_exists('WP_Optimize_Minify_Commands')) include_once(WPO_PLUGIN_MAIN_PATH . 'minify/class-wp-optimize-minify-commands.php');
|
| 107 |
if (! class_exists('WP_Optimize_Minify_Cache_Functions')) include_once(WPO_PLUGIN_MAIN_PATH . 'minify/class-wp-optimize-minify-cache-functions.php');
|
| 115 |
$wpoptimize_minify_commands = new \WP_Optimize_Minify_Commands();
|
| 116 |
$wpoptimize_minify_commands->purge_minify_cache();
|
| 117 |
}
|
| 118 |
+
|
| 119 |
+
ob_get_clean();
|
| 120 |
}
|
| 121 |
|
| 122 |
if (
|
framework/extensions-manager.php
CHANGED
|
@@ -309,6 +309,12 @@ class ExtensionsManager
|
|
| 309 |
$class_name = array_map( 'ucfirst', $class_name );
|
| 310 |
$class_name = 'BlocksyExtension' . implode( '', $class_name ) . 'PreBoot';
|
| 311 |
$path = $this->extensions[$id]['path'];
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 312 |
if ( !file_exists( $path . '/pre-boot.php' ) ) {
|
| 313 |
return;
|
| 314 |
}
|
|
@@ -340,6 +346,12 @@ class ExtensionsManager
|
|
| 340 |
$class_name = array_map( 'ucfirst', $class_name );
|
| 341 |
$class_name = 'BlocksyExtension' . implode( '', $class_name );
|
| 342 |
$path = $this->extensions[$id]['path'];
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 343 |
if ( !file_exists( $path . '/extension.php' ) ) {
|
| 344 |
return;
|
| 345 |
}
|
| 309 |
$class_name = array_map( 'ucfirst', $class_name );
|
| 310 |
$class_name = 'BlocksyExtension' . implode( '', $class_name ) . 'PreBoot';
|
| 311 |
$path = $this->extensions[$id]['path'];
|
| 312 |
+
if ( !$path ) {
|
| 313 |
+
return;
|
| 314 |
+
}
|
| 315 |
+
if ( !@is_readable( $path . '/pre-boot.php' ) ) {
|
| 316 |
+
return;
|
| 317 |
+
}
|
| 318 |
if ( !file_exists( $path . '/pre-boot.php' ) ) {
|
| 319 |
return;
|
| 320 |
}
|
| 346 |
$class_name = array_map( 'ucfirst', $class_name );
|
| 347 |
$class_name = 'BlocksyExtension' . implode( '', $class_name );
|
| 348 |
$path = $this->extensions[$id]['path'];
|
| 349 |
+
if ( !$path ) {
|
| 350 |
+
return;
|
| 351 |
+
}
|
| 352 |
+
if ( !@is_readable( $path . '/extension.php' ) ) {
|
| 353 |
+
return;
|
| 354 |
+
}
|
| 355 |
if ( !file_exists( $path . '/extension.php' ) ) {
|
| 356 |
return;
|
| 357 |
}
|
framework/extensions/cookies-consent/config.php
CHANGED
|
@@ -2,5 +2,5 @@
|
|
| 2 |
|
| 3 |
$config = [
|
| 4 |
'name' => __('Cookies Consent', 'blc'),
|
| 5 |
-
'description' => __('
|
| 6 |
];
|
| 2 |
|
| 3 |
$config = [
|
| 4 |
'name' => __('Cookies Consent', 'blc'),
|
| 5 |
+
'description' => __('Display a cookie acceptance box in order to comply with the privacy regulations in your country.', 'blc')
|
| 6 |
];
|
framework/extensions/cookies-consent/static/bundle/main.min.css
CHANGED
|
@@ -1,5 +1,5 @@
|
|
| 1 |
/**
|
| 2 |
-
* - v1.8.
|
| 3 |
*
|
| 4 |
* Copyright (c) 2021
|
| 5 |
* Licensed GPLv2+
|
| 1 |
/**
|
| 2 |
+
* - v1.8.8
|
| 3 |
*
|
| 4 |
* Copyright (c) 2021
|
| 5 |
* Licensed GPLv2+
|
framework/extensions/newsletter-subscribe/config.php
CHANGED
|
@@ -2,6 +2,6 @@
|
|
| 2 |
|
| 3 |
$config = [
|
| 4 |
'name' => __('Newsletter Subscribe', 'blc'),
|
| 5 |
-
'description' => __('
|
| 6 |
];
|
| 7 |
|
| 2 |
|
| 3 |
$config = [
|
| 4 |
'name' => __('Newsletter Subscribe', 'blc'),
|
| 5 |
+
'description' => __('Easily capture new leads for your newsletter with the help of a widget, shortcode or even a block inserted on your pages or posts.', 'blc')
|
| 6 |
];
|
| 7 |
|
framework/extensions/newsletter-subscribe/static/bundle/main.min.css
CHANGED
|
@@ -1,5 +1,5 @@
|
|
| 1 |
/**
|
| 2 |
-
* - v1.8.
|
| 3 |
*
|
| 4 |
* Copyright (c) 2021
|
| 5 |
* Licensed GPLv2+
|
| 1 |
/**
|
| 2 |
+
* - v1.8.8
|
| 3 |
*
|
| 4 |
* Copyright (c) 2021
|
| 5 |
* Licensed GPLv2+
|
framework/extensions/product-reviews/config.php
CHANGED
|
@@ -2,7 +2,7 @@
|
|
| 2 |
|
| 3 |
$config = [
|
| 4 |
'name' => __('Product Reviews', 'blc'),
|
| 5 |
-
'description' => __('
|
| 6 |
'require_refresh' => true
|
| 7 |
|
| 8 |
// 'hidden' => true
|
| 2 |
|
| 3 |
$config = [
|
| 4 |
'name' => __('Product Reviews', 'blc'),
|
| 5 |
+
'description' => __('This extension lets you easily create an affiliate marketing type of website by giving you options to create a personalized product review and use your affiliate links to direct your readers to the purchase page.', 'blc'),
|
| 6 |
'require_refresh' => true
|
| 7 |
|
| 8 |
// 'hidden' => true
|
framework/extensions/product-reviews/static/bundle/main-admin.min.css
CHANGED
|
@@ -1,5 +1,5 @@
|
|
| 1 |
/**
|
| 2 |
-
* - v1.8.
|
| 3 |
*
|
| 4 |
* Copyright (c) 2021
|
| 5 |
* Licensed GPLv2+
|
| 1 |
/**
|
| 2 |
+
* - v1.8.8
|
| 3 |
*
|
| 4 |
* Copyright (c) 2021
|
| 5 |
* Licensed GPLv2+
|
framework/extensions/product-reviews/static/bundle/main.min.css
CHANGED
|
@@ -1,5 +1,5 @@
|
|
| 1 |
/**
|
| 2 |
-
* - v1.8.
|
| 3 |
*
|
| 4 |
* Copyright (c) 2021
|
| 5 |
* Licensed GPLv2+
|
| 1 |
/**
|
| 2 |
+
* - v1.8.8
|
| 3 |
*
|
| 4 |
* Copyright (c) 2021
|
| 5 |
* Licensed GPLv2+
|
framework/extensions/trending/config.php
CHANGED
|
@@ -2,5 +2,5 @@
|
|
| 2 |
|
| 3 |
$config = [
|
| 4 |
'name' => __('Trending Posts', 'blc'),
|
| 5 |
-
'description' => __('
|
| 6 |
];
|
| 2 |
|
| 3 |
$config = [
|
| 4 |
'name' => __('Trending Posts', 'blc'),
|
| 5 |
+
'description' => __('Highlight your most popular posts or products based on the number of comments or reviews they have gotten in the specified period of time.', 'blc')
|
| 6 |
];
|
framework/extensions/trending/customizer.php
CHANGED
|
@@ -44,7 +44,7 @@ foreach ($all_post_types as $custom_post_type => $label) {
|
|
| 44 |
$taxonomies = get_object_taxonomies($custom_post_type);
|
| 45 |
|
| 46 |
if (count($taxonomies) > 0) {
|
| 47 |
-
$taxonomy = $taxonomies
|
| 48 |
} else {
|
| 49 |
$taxonomy = 'nonexistent';
|
| 50 |
}
|
| 44 |
$taxonomies = get_object_taxonomies($custom_post_type);
|
| 45 |
|
| 46 |
if (count($taxonomies) > 0) {
|
| 47 |
+
$taxonomy = $taxonomies;
|
| 48 |
} else {
|
| 49 |
$taxonomy = 'nonexistent';
|
| 50 |
}
|
framework/extensions/trending/static/bundle/main.min.css
CHANGED
|
@@ -1,5 +1,5 @@
|
|
| 1 |
/**
|
| 2 |
-
* - v1.8.
|
| 3 |
*
|
| 4 |
* Copyright (c) 2021
|
| 5 |
* Licensed GPLv2+
|
| 1 |
/**
|
| 2 |
+
* - v1.8.8
|
| 3 |
*
|
| 4 |
* Copyright (c) 2021
|
| 5 |
* Licensed GPLv2+
|
framework/extensions/widgets/config.php
CHANGED
|
@@ -1,5 +1,5 @@
|
|
| 1 |
<?php
|
| 2 |
|
| 3 |
$config = [
|
| 4 |
-
'description' => __('
|
| 5 |
];
|
| 1 |
<?php
|
| 2 |
|
| 3 |
$config = [
|
| 4 |
+
'description' => __('Add new handcrafted widgets to your sidebars! Social Network Icons, Newsletter Subscribe, Contact Info, Custom Ads and even a Popular/Recent Posts are the choices available.', 'blc')
|
| 5 |
];
|
framework/extensions/widgets/static/bundle/main.min.css
CHANGED
|
@@ -1,5 +1,5 @@
|
|
| 1 |
/**
|
| 2 |
-
* - v1.8.
|
| 3 |
*
|
| 4 |
* Copyright (c) 2021
|
| 5 |
* Licensed GPLv2+
|
| 1 |
/**
|
| 2 |
+
* - v1.8.8
|
| 3 |
*
|
| 4 |
* Copyright (c) 2021
|
| 5 |
* Licensed GPLv2+
|
framework/extensions/widgets/widgets/ct-posts/options.php
CHANGED
|
@@ -191,13 +191,14 @@ $options = [
|
|
| 191 |
'type' => [
|
| 192 |
'type' => 'ct-select',
|
| 193 |
'label' => __('Sort by', 'blc'),
|
| 194 |
-
'value' => '
|
| 195 |
'design' => 'inline',
|
| 196 |
'choices' => blocksy_ordered_keys(
|
| 197 |
[
|
| 198 |
'default' => __('Default', 'blc'),
|
| 199 |
'recent' => __('Recent', 'blc'),
|
| 200 |
'commented' => __('Most Commented', 'blc'),
|
|
|
|
| 201 |
]
|
| 202 |
),
|
| 203 |
],
|
| 191 |
'type' => [
|
| 192 |
'type' => 'ct-select',
|
| 193 |
'label' => __('Sort by', 'blc'),
|
| 194 |
+
'value' => 'recent',
|
| 195 |
'design' => 'inline',
|
| 196 |
'choices' => blocksy_ordered_keys(
|
| 197 |
[
|
| 198 |
'default' => __('Default', 'blc'),
|
| 199 |
'recent' => __('Recent', 'blc'),
|
| 200 |
'commented' => __('Most Commented', 'blc'),
|
| 201 |
+
'random' => __('Random', 'blc'),
|
| 202 |
]
|
| 203 |
),
|
| 204 |
],
|
framework/extensions/widgets/widgets/ct-posts/view.php
CHANGED
|
@@ -51,9 +51,15 @@ if ($post_type !== 'page') {
|
|
| 51 |
$type = blocksy_default_akg('type', $atts, 'recent');
|
| 52 |
|
| 53 |
if ($type !== 'default') {
|
| 54 |
-
$
|
| 55 |
-
'
|
| 56 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 57 |
}
|
| 58 |
|
| 59 |
$query_args['date_query'] = $date_query;
|
| 51 |
$type = blocksy_default_akg('type', $atts, 'recent');
|
| 52 |
|
| 53 |
if ($type !== 'default') {
|
| 54 |
+
$orderby_map = [
|
| 55 |
+
'random' => 'rand',
|
| 56 |
+
'recent' => 'post_date',
|
| 57 |
+
'commented' => 'comment_count'
|
| 58 |
+
];
|
| 59 |
+
|
| 60 |
+
if (isset($orderby_map[$type])) {
|
| 61 |
+
$query_args['orderby'] = $orderby_map[$type];
|
| 62 |
+
}
|
| 63 |
}
|
| 64 |
|
| 65 |
$query_args['date_query'] = $date_query;
|
framework/features/conditions-manager.php
CHANGED
|
@@ -255,15 +255,18 @@ class ConditionsManager {
|
|
| 255 |
|
| 256 |
if ($rule['rule'] === 'post_with_taxonomy_ids') {
|
| 257 |
$is_blocksy_page = blocksy_is_page();
|
|
|
|
| 258 |
|
| 259 |
-
if (is_singular() || $is_blocksy_page) {
|
| 260 |
$post_id = get_the_ID();
|
| 261 |
|
| 262 |
if ($is_blocksy_page) {
|
| 263 |
$post_id = $is_blocksy_page;
|
| 264 |
}
|
| 265 |
|
| 266 |
-
|
|
|
|
|
|
|
| 267 |
|
| 268 |
if (
|
| 269 |
isset($rule['payload'])
|
|
@@ -274,7 +277,8 @@ class ConditionsManager {
|
|
| 274 |
) {
|
| 275 |
return has_term(
|
| 276 |
$rule['payload']['taxonomy_id'],
|
| 277 |
-
get_term($rule['payload']['taxonomy_id'])->taxonomy
|
|
|
|
| 278 |
);
|
| 279 |
}
|
| 280 |
}
|
| 255 |
|
| 256 |
if ($rule['rule'] === 'post_with_taxonomy_ids') {
|
| 257 |
$is_blocksy_page = blocksy_is_page();
|
| 258 |
+
global $blocksy_is_quick_view;
|
| 259 |
|
| 260 |
+
if (is_singular() || $is_blocksy_page || true) {
|
| 261 |
$post_id = get_the_ID();
|
| 262 |
|
| 263 |
if ($is_blocksy_page) {
|
| 264 |
$post_id = $is_blocksy_page;
|
| 265 |
}
|
| 266 |
|
| 267 |
+
if (wp_doing_ajax() && isset($_GET['product_id'])) {
|
| 268 |
+
$post_id = sanitize_text_field($_GET['product_id']);
|
| 269 |
+
}
|
| 270 |
|
| 271 |
if (
|
| 272 |
isset($rule['payload'])
|
| 277 |
) {
|
| 278 |
return has_term(
|
| 279 |
$rule['payload']['taxonomy_id'],
|
| 280 |
+
get_term($rule['payload']['taxonomy_id'])->taxonomy,
|
| 281 |
+
$post_id
|
| 282 |
);
|
| 283 |
}
|
| 284 |
}
|
framework/features/dynamic-css.php
CHANGED
|
@@ -47,7 +47,7 @@ class DynamicCss {
|
|
| 47 |
'type' => 'ct-radio',
|
| 48 |
'value' => 'file',
|
| 49 |
'view' => 'text',
|
| 50 |
-
'desc' => __( 'The strategy of
|
| 51 |
'choices' => [
|
| 52 |
'file' => __( 'File', 'blc' ),
|
| 53 |
'inline' => __( 'Inline', 'blc' ),
|
| 47 |
'type' => 'ct-radio',
|
| 48 |
'value' => 'file',
|
| 49 |
'view' => 'text',
|
| 50 |
+
'desc' => __( 'The strategy of outputting the dynamic CSS. File - all the CSS code will be placed in a static file, otherwise it will be placed inline in head.', 'blc' ),
|
| 51 |
'choices' => [
|
| 52 |
'file' => __( 'File', 'blc' ),
|
| 53 |
'inline' => __( 'Inline', 'blc' ),
|
framework/features/google-analytics.php
CHANGED
|
@@ -66,12 +66,12 @@ class GoogleAnalytics {
|
|
| 66 |
public function generate_google_analytics_opts($options) {
|
| 67 |
$options[] = [
|
| 68 |
'analytics_id' => [
|
| 69 |
-
'label' => __( 'Google Analytics', 'blc' ),
|
| 70 |
'type' => 'text',
|
| 71 |
'design' => 'block',
|
| 72 |
'divider' => 'bottom',
|
| 73 |
'value' => '',
|
| 74 |
-
'desc' => __( '
|
| 75 |
'disableRevertButton' => true,
|
| 76 |
'setting' => [ 'transport' => 'postMessage' ],
|
| 77 |
],
|
|
@@ -84,7 +84,7 @@ class GoogleAnalytics {
|
|
| 84 |
'value' => '',
|
| 85 |
'desc' => sprintf(
|
| 86 |
__(
|
| 87 |
-
'
|
| 88 |
'blc'
|
| 89 |
),
|
| 90 |
'<a href="https://support.google.com/analytics/answer/9744165?hl=en">',
|
|
@@ -98,7 +98,14 @@ class GoogleAnalytics {
|
|
| 98 |
'label' => __( 'IP Anonymization', 'blc' ),
|
| 99 |
'type' => 'ct-switch',
|
| 100 |
'value' => 'no',
|
| 101 |
-
'desc' =>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 102 |
'setting' => [ 'transport' => 'postMessage' ],
|
| 103 |
],
|
| 104 |
];
|
| 66 |
public function generate_google_analytics_opts($options) {
|
| 67 |
$options[] = [
|
| 68 |
'analytics_id' => [
|
| 69 |
+
'label' => __( 'Google Analytics v3', 'blc' ),
|
| 70 |
'type' => 'text',
|
| 71 |
'design' => 'block',
|
| 72 |
'divider' => 'bottom',
|
| 73 |
'value' => '',
|
| 74 |
+
'desc' => __( 'Link your Google Analytics 3 tracking ID.', 'blc' ),
|
| 75 |
'disableRevertButton' => true,
|
| 76 |
'setting' => [ 'transport' => 'postMessage' ],
|
| 77 |
],
|
| 84 |
'value' => '',
|
| 85 |
'desc' => sprintf(
|
| 86 |
__(
|
| 87 |
+
'Link your Google Analytics 4 tracking ID. More info and instructions can be found %shere%s.',
|
| 88 |
'blc'
|
| 89 |
),
|
| 90 |
'<a href="https://support.google.com/analytics/answer/9744165?hl=en">',
|
| 98 |
'label' => __( 'IP Anonymization', 'blc' ),
|
| 99 |
'type' => 'ct-switch',
|
| 100 |
'value' => 'no',
|
| 101 |
+
'desc' => sprintf(
|
| 102 |
+
__(
|
| 103 |
+
'Enable Google Analytics IP Anonymization for enhanced privacy. More info and instructions can be found %shere%s.',
|
| 104 |
+
'blc'
|
| 105 |
+
),
|
| 106 |
+
'<a href="https://developers.google.com/analytics/devguides/collection/gtagjs/ip-anonymization">',
|
| 107 |
+
'</a>'
|
| 108 |
+
),
|
| 109 |
'setting' => [ 'transport' => 'postMessage' ],
|
| 110 |
],
|
| 111 |
];
|
framework/features/header/items/account/options.php
CHANGED
|
@@ -250,7 +250,7 @@ $options = [
|
|
| 250 |
'loggedin_label_position' => [
|
| 251 |
'type' => 'ct-radio',
|
| 252 |
'label' => __( 'Label Position', 'blc' ),
|
| 253 |
-
'value' => '
|
| 254 |
'view' => 'text',
|
| 255 |
'design' => 'block',
|
| 256 |
'divider' => 'top',
|
|
@@ -456,7 +456,7 @@ $options = [
|
|
| 456 |
'loggedout_label_position' => [
|
| 457 |
'type' => 'ct-radio',
|
| 458 |
'label' => __( 'Label Position', 'blc' ),
|
| 459 |
-
'value' => '
|
| 460 |
'view' => 'text',
|
| 461 |
'design' => 'block',
|
| 462 |
'divider' => 'top',
|
| 250 |
'loggedin_label_position' => [
|
| 251 |
'type' => 'ct-radio',
|
| 252 |
'label' => __( 'Label Position', 'blc' ),
|
| 253 |
+
'value' => 'left',
|
| 254 |
'view' => 'text',
|
| 255 |
'design' => 'block',
|
| 256 |
'divider' => 'top',
|
| 456 |
'loggedout_label_position' => [
|
| 457 |
'type' => 'ct-radio',
|
| 458 |
'label' => __( 'Label Position', 'blc' ),
|
| 459 |
+
'value' => 'left',
|
| 460 |
'view' => 'text',
|
| 461 |
'design' => 'block',
|
| 462 |
'divider' => 'top',
|
framework/features/header/items/account/views/login.php
CHANGED
|
@@ -72,7 +72,7 @@ if (blocksy_akg('loggedin_text', $atts, 'label') === 'username') {
|
|
| 72 |
}
|
| 73 |
|
| 74 |
$loggedin_label_position = blocksy_expand_responsive_value(
|
| 75 |
-
blocksy_akg('loggedin_label_position', $atts, '
|
| 76 |
);
|
| 77 |
|
| 78 |
$attr['data-state'] = 'in';
|
|
@@ -86,9 +86,9 @@ $attr['aria-label'] = $loggedin_label;
|
|
| 86 |
|
| 87 |
echo '<a ' . blocksy_attr_to_html($attr) . '>';
|
| 88 |
|
| 89 |
-
if (! empty($loggedin_label) && blocksy_some_device(
|
| 90 |
$loggedin_account_label_visibility
|
| 91 |
-
)) {
|
| 92 |
echo '<span class="' . trim('ct-label ' . blocksy_visibility_classes(
|
| 93 |
$loggedin_account_label_visibility
|
| 94 |
)) . '">';
|
| 72 |
}
|
| 73 |
|
| 74 |
$loggedin_label_position = blocksy_expand_responsive_value(
|
| 75 |
+
blocksy_akg('loggedin_label_position', $atts, 'left')
|
| 76 |
);
|
| 77 |
|
| 78 |
$attr['data-state'] = 'in';
|
| 86 |
|
| 87 |
echo '<a ' . blocksy_attr_to_html($attr) . '>';
|
| 88 |
|
| 89 |
+
if (! empty($loggedin_label) && (blocksy_some_device(
|
| 90 |
$loggedin_account_label_visibility
|
| 91 |
+
) || is_customize_preview())) {
|
| 92 |
echo '<span class="' . trim('ct-label ' . blocksy_visibility_classes(
|
| 93 |
$loggedin_account_label_visibility
|
| 94 |
)) . '">';
|
framework/features/header/items/account/views/logout.php
CHANGED
|
@@ -23,7 +23,7 @@ if ($login_account_action === 'woocommerce_account') {
|
|
| 23 |
}
|
| 24 |
|
| 25 |
$loggedout_label_position = blocksy_expand_responsive_value(
|
| 26 |
-
blocksy_akg('loggedout_label_position', $atts, '
|
| 27 |
);
|
| 28 |
|
| 29 |
$attr['data-state'] = 'out';
|
| 23 |
}
|
| 24 |
|
| 25 |
$loggedout_label_position = blocksy_expand_responsive_value(
|
| 26 |
+
blocksy_akg('loggedout_label_position', $atts, 'left')
|
| 27 |
);
|
| 28 |
|
| 29 |
$attr['data-state'] = 'out';
|
framework/features/opengraph-meta-data.php
CHANGED
|
@@ -14,10 +14,10 @@ class OpenGraphMetaData {
|
|
| 14 |
],
|
| 15 |
|
| 16 |
'enable_opengraph' => [
|
| 17 |
-
'label' => __( '
|
| 18 |
'type' => 'ct-switch',
|
| 19 |
'value' => 'no',
|
| 20 |
-
'desc' => __( '
|
| 21 |
],
|
| 22 |
|
| 23 |
blocksy_rand_md5() => [
|
| 14 |
],
|
| 15 |
|
| 16 |
'enable_opengraph' => [
|
| 17 |
+
'label' => __( 'OpenGraph Meta Data', 'blc' ),
|
| 18 |
'type' => 'ct-switch',
|
| 19 |
'value' => 'no',
|
| 20 |
+
'desc' => __( 'Enable the OpenGraph rich meta data features for your website.', 'blc' ),
|
| 21 |
],
|
| 22 |
|
| 23 |
blocksy_rand_md5() => [
|
framework/theme-integration.php
CHANGED
|
@@ -85,7 +85,10 @@ class ThemeIntegration {
|
|
| 85 |
'slider_image_ratio' => '2/1',
|
| 86 |
'slider_autoplay' => 'no',
|
| 87 |
|
| 88 |
-
'filtering' => false
|
|
|
|
|
|
|
|
|
|
| 89 |
]
|
| 90 |
);
|
| 91 |
|
|
@@ -95,7 +98,8 @@ class ThemeIntegration {
|
|
| 95 |
['fn' => 'blocksy_render_view'],
|
| 96 |
$file_path,
|
| 97 |
[
|
| 98 |
-
'args' => $args
|
|
|
|
| 99 |
]
|
| 100 |
);
|
| 101 |
});
|
|
@@ -296,30 +300,30 @@ class ThemeIntegration {
|
|
| 296 |
return $mimes;
|
| 297 |
});
|
| 298 |
|
| 299 |
-
add_filter('
|
| 300 |
-
if (! isset($
|
| 301 |
return $attr;
|
| 302 |
}
|
| 303 |
|
| 304 |
-
$mime = get_post_mime_type($
|
| 305 |
|
| 306 |
if ('image/svg+xml' === $mime) {
|
| 307 |
$default_height = 100;
|
| 308 |
$default_width = 100;
|
| 309 |
|
| 310 |
-
$dimensions = $this->svg_dimensions(get_attached_file($
|
| 311 |
|
| 312 |
if ($dimensions) {
|
| 313 |
$default_height = $dimensions['height'];
|
| 314 |
$default_width = $dimensions['width'];
|
| 315 |
}
|
| 316 |
|
| 317 |
-
$
|
| 318 |
-
$
|
| 319 |
}
|
| 320 |
|
| 321 |
-
return $
|
| 322 |
-
}, 10,
|
| 323 |
|
| 324 |
add_filter('blocksy_changelogs_list', function ($changelogs) {
|
| 325 |
$changelog = null;
|
| 85 |
'slider_image_ratio' => '2/1',
|
| 86 |
'slider_autoplay' => 'no',
|
| 87 |
|
| 88 |
+
'filtering' => false,
|
| 89 |
+
|
| 90 |
+
// 404 | skip
|
| 91 |
+
'no_results' => '404'
|
| 92 |
]
|
| 93 |
);
|
| 94 |
|
| 98 |
['fn' => 'blocksy_render_view'],
|
| 99 |
$file_path,
|
| 100 |
[
|
| 101 |
+
'args' => $args,
|
| 102 |
+
'content' => $content
|
| 103 |
]
|
| 104 |
);
|
| 105 |
});
|
| 300 |
return $mimes;
|
| 301 |
});
|
| 302 |
|
| 303 |
+
add_filter('wp_get_attachment_image_src', function ($image, $attachment_id, $size, $icon) {
|
| 304 |
+
if (! isset($attachment_id)) {
|
| 305 |
return $attr;
|
| 306 |
}
|
| 307 |
|
| 308 |
+
$mime = get_post_mime_type($attachment_id);
|
| 309 |
|
| 310 |
if ('image/svg+xml' === $mime) {
|
| 311 |
$default_height = 100;
|
| 312 |
$default_width = 100;
|
| 313 |
|
| 314 |
+
$dimensions = $this->svg_dimensions(get_attached_file($attachment_id));
|
| 315 |
|
| 316 |
if ($dimensions) {
|
| 317 |
$default_height = $dimensions['height'];
|
| 318 |
$default_width = $dimensions['width'];
|
| 319 |
}
|
| 320 |
|
| 321 |
+
$image[2] = $default_height;
|
| 322 |
+
$image[1] = $default_width;
|
| 323 |
}
|
| 324 |
|
| 325 |
+
return $image;
|
| 326 |
+
}, 10, 4);
|
| 327 |
|
| 328 |
add_filter('blocksy_changelogs_list', function ($changelogs) {
|
| 329 |
$changelog = null;
|
framework/views/blocksy-posts.php
CHANGED
|
@@ -109,6 +109,14 @@ $query = new WP_Query(apply_filters(
|
|
| 109 |
$query_args
|
| 110 |
));
|
| 111 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 112 |
if ($args['view'] === 'slider') {
|
| 113 |
$items = '';
|
| 114 |
|
| 109 |
$query_args
|
| 110 |
));
|
| 111 |
|
| 112 |
+
if (! $query->have_posts() && $args['no_results'] === 'skip') {
|
| 113 |
+
return;
|
| 114 |
+
}
|
| 115 |
+
|
| 116 |
+
if (! empty($content)) {
|
| 117 |
+
echo $content;
|
| 118 |
+
}
|
| 119 |
+
|
| 120 |
if ($args['view'] === 'slider') {
|
| 121 |
$items = '';
|
| 122 |
|
languages/blocksy-companion.pot
CHANGED
|
@@ -30,67 +30,141 @@ msgid ""
|
|
| 30 |
"version, the plugin is currently NOT RUNNING."
|
| 31 |
msgstr ""
|
| 32 |
|
| 33 |
-
#: framework/extensions-manager.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 34 |
#: framework/premium/extensions/custom-fonts/extension.php:142
|
| 35 |
msgid "Custom Fonts"
|
| 36 |
msgstr ""
|
| 37 |
|
| 38 |
-
#: framework/extensions-manager.php:
|
| 39 |
-
msgid "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 40 |
msgstr ""
|
| 41 |
|
| 42 |
-
#: framework/extensions-manager.php:
|
| 43 |
-
msgid "
|
| 44 |
msgstr ""
|
| 45 |
|
| 46 |
-
#: framework/extensions-manager.php:
|
| 47 |
-
msgid "
|
| 48 |
msgstr ""
|
| 49 |
|
| 50 |
-
#: framework/extensions-manager.php:
|
| 51 |
-
|
|
|
|
| 52 |
msgstr ""
|
| 53 |
|
| 54 |
-
#: framework/extensions-manager.php:
|
| 55 |
-
msgid "
|
|
|
|
|
|
|
|
|
|
| 56 |
msgstr ""
|
| 57 |
|
| 58 |
-
#: framework/theme-integration.php:
|
| 59 |
#: framework/extensions/widgets/widgets/ct-facebook/options.php:16,
|
| 60 |
#: framework/extensions/widgets/widgets/ct-facebook/view.php:12,
|
| 61 |
#: framework/extensions/widgets/widgets/ct-facebook/widget.php:13
|
| 62 |
msgid "Facebook"
|
| 63 |
msgstr ""
|
| 64 |
|
| 65 |
-
#: framework/theme-integration.php:
|
| 66 |
msgid "Twitter"
|
| 67 |
msgstr ""
|
| 68 |
|
| 69 |
-
#: framework/theme-integration.php:
|
| 70 |
msgid "LinkedIn"
|
| 71 |
msgstr ""
|
| 72 |
|
| 73 |
-
#: framework/theme-integration.php:
|
| 74 |
msgid "Dribbble"
|
| 75 |
msgstr ""
|
| 76 |
|
| 77 |
-
#: framework/theme-integration.php:
|
| 78 |
msgid "Instagram"
|
| 79 |
msgstr ""
|
| 80 |
|
| 81 |
-
#: framework/theme-integration.php:
|
| 82 |
msgid "Pinterest"
|
| 83 |
msgstr ""
|
| 84 |
|
| 85 |
-
#: framework/theme-integration.php:
|
| 86 |
msgid "WordPress"
|
| 87 |
msgstr ""
|
| 88 |
|
| 89 |
-
#: framework/theme-integration.php:
|
| 90 |
msgid "GitHub"
|
| 91 |
msgstr ""
|
| 92 |
|
| 93 |
-
#: framework/theme-integration.php:
|
| 94 |
#: framework/extensions/widgets/widgets/ct-about-me/options.php:114,
|
| 95 |
#: framework/extensions/widgets/widgets/ct-about-me/options.php:195,
|
| 96 |
#: framework/extensions/widgets/widgets/ct-contact-info/options.php:266,
|
|
@@ -98,43 +172,43 @@ msgstr ""
|
|
| 98 |
msgid "Medium"
|
| 99 |
msgstr ""
|
| 100 |
|
| 101 |
-
#: framework/theme-integration.php:
|
| 102 |
msgid "YouTube"
|
| 103 |
msgstr ""
|
| 104 |
|
| 105 |
-
#: framework/theme-integration.php:
|
| 106 |
msgid "Vimeo"
|
| 107 |
msgstr ""
|
| 108 |
|
| 109 |
-
#: framework/theme-integration.php:
|
| 110 |
msgid "VKontakte"
|
| 111 |
msgstr ""
|
| 112 |
|
| 113 |
-
#: framework/theme-integration.php:
|
| 114 |
msgid "Odnoklassniki"
|
| 115 |
msgstr ""
|
| 116 |
|
| 117 |
-
#: framework/theme-integration.php:
|
| 118 |
msgid "TikTok"
|
| 119 |
msgstr ""
|
| 120 |
|
| 121 |
-
#: framework/theme-integration.php:
|
| 122 |
msgid "Companion"
|
| 123 |
msgstr ""
|
| 124 |
|
| 125 |
-
#: framework/theme-integration.php:
|
| 126 |
msgid "PRO"
|
| 127 |
msgstr ""
|
| 128 |
|
| 129 |
-
#: framework/theme-integration.php:
|
| 130 |
msgid "Check your email"
|
| 131 |
msgstr ""
|
| 132 |
|
| 133 |
-
#: framework/theme-integration.php:
|
| 134 |
msgid "Registration Form"
|
| 135 |
msgstr ""
|
| 136 |
|
| 137 |
-
#: framework/theme-integration.php:
|
| 138 |
msgid "Register For This Site"
|
| 139 |
msgstr ""
|
| 140 |
|
|
@@ -150,141 +224,140 @@ msgstr ""
|
|
| 150 |
msgid "Widget Title"
|
| 151 |
msgstr ""
|
| 152 |
|
| 153 |
-
#: framework/features/conditions-manager.php:
|
| 154 |
msgid "%s Single"
|
| 155 |
msgstr ""
|
| 156 |
|
| 157 |
-
#: framework/features/conditions-manager.php:
|
| 158 |
msgid "%s Archive"
|
| 159 |
msgstr ""
|
| 160 |
|
| 161 |
-
#: framework/features/conditions-manager.php:
|
| 162 |
msgid "Entire Website"
|
| 163 |
msgstr ""
|
| 164 |
|
| 165 |
-
#: framework/features/conditions-manager.php:
|
| 166 |
msgid "Basic"
|
| 167 |
msgstr ""
|
| 168 |
|
| 169 |
-
#: framework/features/conditions-manager.php:
|
| 170 |
msgid "Singulars"
|
| 171 |
msgstr ""
|
| 172 |
|
| 173 |
-
#: framework/features/conditions-manager.php:
|
| 174 |
msgid "Archives"
|
| 175 |
msgstr ""
|
| 176 |
|
| 177 |
-
#: framework/features/conditions-manager.php:
|
| 178 |
#: framework/extensions/trending/customizer.php:4,
|
| 179 |
#: framework/extensions/widgets/widgets/ct-posts/options.php:11,
|
| 180 |
#: framework/extensions/widgets/widgets/ct-posts/options.php:98,
|
| 181 |
-
#: framework/extensions/widgets/widgets/ct-posts/view.php:
|
| 182 |
#: framework/extensions/widgets/widgets/ct-posts/widget.php:13,
|
| 183 |
#: framework/premium/features/premium-header/items/search-input/options.php:4
|
| 184 |
msgid "Posts"
|
| 185 |
msgstr ""
|
| 186 |
|
| 187 |
-
#: framework/features/conditions-manager.php:
|
| 188 |
-
#: framework/premium/features/content-blocks/hooks-manager.php:
|
| 189 |
-
#: framework/premium/features/content-blocks/hooks-manager.php:
|
| 190 |
-
#: framework/premium/features/content-blocks/hooks-manager.php:282,
|
| 191 |
-
#: framework/premium/features/content-blocks/hooks-manager.php:289,
|
| 192 |
#: framework/premium/features/content-blocks/hooks-manager.php:296,
|
| 193 |
-
#: framework/premium/features/content-blocks/hooks-manager.php:
|
|
|
|
|
|
|
| 194 |
msgid "Single Post"
|
| 195 |
msgstr ""
|
| 196 |
|
| 197 |
-
#: framework/features/conditions-manager.php:
|
| 198 |
msgid "All Post Archives"
|
| 199 |
msgstr ""
|
| 200 |
|
| 201 |
-
#: framework/features/conditions-manager.php:
|
| 202 |
msgid "Post Categories"
|
| 203 |
msgstr ""
|
| 204 |
|
| 205 |
-
#: framework/features/conditions-manager.php:
|
| 206 |
msgid "Post Tags"
|
| 207 |
msgstr ""
|
| 208 |
|
| 209 |
-
#: framework/features/conditions-manager.php:
|
| 210 |
#: framework/extensions/widgets/widgets/ct-posts/options.php:12,
|
| 211 |
#: framework/premium/features/premium-header/items/search-input/options.php:5
|
| 212 |
msgid "Pages"
|
| 213 |
msgstr ""
|
| 214 |
|
| 215 |
-
#: framework/features/conditions-manager.php:
|
| 216 |
msgid "Single Page"
|
| 217 |
msgstr ""
|
| 218 |
|
| 219 |
-
#: framework/features/conditions-manager.php:
|
| 220 |
msgid "Specific"
|
| 221 |
msgstr ""
|
| 222 |
|
| 223 |
-
#: framework/features/conditions-manager.php:
|
| 224 |
msgid "Post ID"
|
| 225 |
msgstr ""
|
| 226 |
|
| 227 |
-
#: framework/features/conditions-manager.php:
|
| 228 |
msgid "Page ID"
|
| 229 |
msgstr ""
|
| 230 |
|
| 231 |
-
#: framework/features/conditions-manager.php:
|
| 232 |
#: static/js/options/ConditionsManager/PostIdPicker.js:76
|
| 233 |
msgid "Custom Post Type ID"
|
| 234 |
msgstr ""
|
| 235 |
|
| 236 |
-
#: framework/features/conditions-manager.php:
|
| 237 |
msgid "Taxonomy ID"
|
| 238 |
msgstr ""
|
| 239 |
|
| 240 |
-
#: framework/features/conditions-manager.php:
|
| 241 |
msgid "Post with Taxonomy ID"
|
| 242 |
msgstr ""
|
| 243 |
|
| 244 |
-
#: framework/features/conditions-manager.php:
|
| 245 |
msgid "Other Pages"
|
| 246 |
msgstr ""
|
| 247 |
|
| 248 |
-
#: framework/features/conditions-manager.php:
|
| 249 |
msgid "404"
|
| 250 |
msgstr ""
|
| 251 |
|
| 252 |
-
#: framework/features/conditions-manager.php:
|
| 253 |
-
#: framework/premium/
|
| 254 |
-
#: framework/premium/features/premium-header/items/search-input/
|
| 255 |
-
#: framework/premium/features/premium-header/items/search-input/view.php:58
|
| 256 |
msgid "Search"
|
| 257 |
msgstr ""
|
| 258 |
|
| 259 |
-
#: framework/features/conditions-manager.php:
|
| 260 |
msgid "Blog"
|
| 261 |
msgstr ""
|
| 262 |
|
| 263 |
-
#: framework/features/conditions-manager.php:
|
| 264 |
msgid "Front Page"
|
| 265 |
msgstr ""
|
| 266 |
|
| 267 |
-
#: framework/features/conditions-manager.php:
|
| 268 |
msgid "Author"
|
| 269 |
msgstr ""
|
| 270 |
|
| 271 |
-
#: framework/features/conditions-manager.php:
|
| 272 |
msgid "User Auth"
|
| 273 |
msgstr ""
|
| 274 |
|
| 275 |
-
#: framework/features/conditions-manager.php:
|
| 276 |
msgid "User Logged In"
|
| 277 |
msgstr ""
|
| 278 |
|
| 279 |
-
#: framework/features/conditions-manager.php:
|
| 280 |
msgid "User Logged Out"
|
| 281 |
msgstr ""
|
| 282 |
|
| 283 |
-
#: framework/features/conditions-manager.php:
|
| 284 |
msgid "User Roles"
|
| 285 |
msgstr ""
|
| 286 |
|
| 287 |
-
#: framework/features/conditions-manager.php:
|
| 288 |
msgid "Language"
|
| 289 |
msgstr ""
|
| 290 |
|
|
@@ -302,7 +375,7 @@ msgstr ""
|
|
| 302 |
|
| 303 |
#: framework/features/dynamic-css.php:50
|
| 304 |
msgid ""
|
| 305 |
-
"The strategy of
|
| 306 |
"placed in a static file, otherwise it will be placed inline in head."
|
| 307 |
msgstr ""
|
| 308 |
|
|
@@ -315,22 +388,12 @@ msgstr ""
|
|
| 315 |
msgid "Inline"
|
| 316 |
msgstr ""
|
| 317 |
|
| 318 |
-
#: framework/features/dynamic-css.php:63
|
| 319 |
-
msgid "Emojis Script"
|
| 320 |
-
msgstr ""
|
| 321 |
-
|
| 322 |
-
#: framework/features/dynamic-css.php:67
|
| 323 |
-
msgid ""
|
| 324 |
-
"Enable this option if you want to remove WordPress emojis script in order to "
|
| 325 |
-
"improve the performance."
|
| 326 |
-
msgstr ""
|
| 327 |
-
|
| 328 |
#: framework/features/google-analytics.php:69
|
| 329 |
-
msgid "Google Analytics"
|
| 330 |
msgstr ""
|
| 331 |
|
| 332 |
#: framework/features/google-analytics.php:74
|
| 333 |
-
msgid "
|
| 334 |
msgstr ""
|
| 335 |
|
| 336 |
#: framework/features/google-analytics.php:80
|
|
@@ -339,28 +402,26 @@ msgstr ""
|
|
| 339 |
|
| 340 |
#: framework/features/google-analytics.php:86
|
| 341 |
msgid ""
|
| 342 |
-
"
|
| 343 |
-
"%shere%s."
|
| 344 |
msgstr ""
|
| 345 |
|
| 346 |
#: framework/features/google-analytics.php:98
|
| 347 |
msgid "IP Anonymization"
|
| 348 |
msgstr ""
|
| 349 |
|
| 350 |
-
#: framework/features/google-analytics.php:
|
| 351 |
msgid ""
|
| 352 |
-
"Enable Google Analytics IP
|
| 353 |
-
"
|
| 354 |
-
"\">(more info)</a>."
|
| 355 |
msgstr ""
|
| 356 |
|
| 357 |
#: framework/features/opengraph-meta-data.php:17
|
| 358 |
-
msgid "
|
| 359 |
msgstr ""
|
| 360 |
|
| 361 |
#: framework/features/opengraph-meta-data.php:20
|
| 362 |
-
msgid ""
|
| 363 |
-
"Display a preview image and text excerpt when a link to your site is shared."
|
| 364 |
msgstr ""
|
| 365 |
|
| 366 |
#: framework/features/opengraph-meta-data.php:29
|
|
@@ -380,7 +441,9 @@ msgid "Cookies Consent"
|
|
| 380 |
msgstr ""
|
| 381 |
|
| 382 |
#: framework/extensions/cookies-consent/config.php:5
|
| 383 |
-
msgid "
|
|
|
|
|
|
|
| 384 |
msgstr ""
|
| 385 |
|
| 386 |
#: framework/extensions/cookies-consent/customizer.php:4
|
|
@@ -390,33 +453,43 @@ msgstr ""
|
|
| 390 |
#: framework/extensions/cookies-consent/customizer.php:18,
|
| 391 |
#: framework/extensions/newsletter-subscribe/customizer.php:12,
|
| 392 |
#: framework/extensions/product-reviews/metabox.php:6,
|
| 393 |
-
#: framework/extensions/trending/customizer.php:
|
| 394 |
#: framework/premium/extensions/mega-menu/options.php:6,
|
| 395 |
-
#: framework/premium/extensions/shortcuts/customizer.php:
|
| 396 |
#: framework/premium/extensions/woocommerce-extra/floating-cart.php:11,
|
| 397 |
#: framework/premium/extensions/woocommerce-extra/offcanvas-filter.php:164,
|
| 398 |
-
#: framework/
|
|
|
|
|
|
|
|
|
|
|
|
|
| 399 |
#: framework/premium/extensions/woocommerce-extra/header-items/wish-list/options.php:5,
|
| 400 |
#: framework/premium/features/premium-header/items/contacts/options.php:5,
|
| 401 |
#: framework/premium/features/premium-header/items/language-switcher/options.php:21,
|
| 402 |
#: framework/premium/features/premium-header/items/language-switcher/options.php:347,
|
| 403 |
-
#: framework/premium/features/premium-header/items/search-input/options.php:
|
| 404 |
#: framework/premium/extensions/white-label/dashboard-static/js/EditSettings.js:126
|
| 405 |
msgid "General"
|
| 406 |
msgstr ""
|
| 407 |
|
| 408 |
#: framework/extensions/cookies-consent/customizer.php:31,
|
| 409 |
-
#: framework/premium/extensions/shortcuts/customizer.php:
|
| 410 |
-
#: framework/premium/extensions/woocommerce-extra/extension.php:
|
| 411 |
#: framework/premium/extensions/woocommerce-extra/offcanvas-filter.php:186,
|
|
|
|
|
|
|
|
|
|
| 412 |
#: framework/premium/extensions/woocommerce-extra/header-items/wish-list/options.php:23
|
| 413 |
msgid "Type 1"
|
| 414 |
msgstr ""
|
| 415 |
|
| 416 |
#: framework/extensions/cookies-consent/customizer.php:36,
|
| 417 |
-
#: framework/premium/extensions/shortcuts/customizer.php:
|
| 418 |
-
#: framework/premium/extensions/woocommerce-extra/extension.php:
|
| 419 |
#: framework/premium/extensions/woocommerce-extra/offcanvas-filter.php:191,
|
|
|
|
|
|
|
|
|
|
| 420 |
#: framework/premium/extensions/woocommerce-extra/header-items/wish-list/options.php:28
|
| 421 |
msgid "Type 2"
|
| 422 |
msgstr ""
|
|
@@ -496,33 +569,39 @@ msgstr ""
|
|
| 496 |
|
| 497 |
#: framework/extensions/cookies-consent/customizer.php:90,
|
| 498 |
#: framework/extensions/newsletter-subscribe/customizer.php:147,
|
| 499 |
-
#: framework/extensions/trending/customizer.php:
|
| 500 |
-
#: framework/premium/extensions/mega-menu/options.php:
|
| 501 |
-
#: framework/premium/extensions/shortcuts/customizer.php:
|
| 502 |
#: framework/premium/extensions/woocommerce-extra/floating-cart.php:81,
|
| 503 |
#: framework/premium/extensions/woocommerce-extra/offcanvas-filter.php:31,
|
| 504 |
#: framework/premium/extensions/woocommerce-extra/offcanvas-filter.php:279,
|
| 505 |
-
#: framework/
|
|
|
|
|
|
|
|
|
|
|
|
|
| 506 |
#: framework/premium/extensions/woocommerce-extra/header-items/wish-list/options.php:119,
|
| 507 |
-
#: framework/premium/features/premium-header/items/contacts/options.php:
|
| 508 |
#: framework/premium/features/premium-header/items/language-switcher/options.php:186,
|
| 509 |
#: framework/premium/features/premium-header/items/language-switcher/options.php:371,
|
| 510 |
-
#: framework/premium/features/premium-header/items/search-input/options.php:
|
| 511 |
msgid "Design"
|
| 512 |
msgstr ""
|
| 513 |
|
| 514 |
#: framework/extensions/cookies-consent/customizer.php:95,
|
| 515 |
-
#: framework/extensions/trending/customizer.php:
|
| 516 |
-
#: framework/premium/extensions/mega-menu/options.php:
|
| 517 |
-
#: framework/premium/extensions/shortcuts/customizer.php:
|
| 518 |
#: framework/premium/extensions/woocommerce-extra/floating-cart.php:86,
|
|
|
|
|
|
|
| 519 |
#: framework/premium/extensions/woocommerce-extra/header-items/wish-list/options.php:174,
|
| 520 |
#: framework/premium/extensions/woocommerce-extra/header-items/wish-list/options.php:205,
|
| 521 |
#: framework/premium/extensions/woocommerce-extra/header-items/wish-list/options.php:234,
|
| 522 |
-
#: framework/premium/features/premium-header/items/contacts/options.php:
|
| 523 |
-
#: framework/premium/features/premium-header/items/contacts/options.php:
|
| 524 |
-
#: framework/premium/features/premium-header/items/contacts/options.php:
|
| 525 |
-
#: framework/premium/features/premium-header/items/contacts/options.php:
|
| 526 |
#: framework/premium/features/premium-header/items/language-switcher/options.php:203,
|
| 527 |
#: framework/premium/features/premium-header/items/language-switcher/options.php:232,
|
| 528 |
#: framework/premium/features/premium-header/items/language-switcher/options.php:262,
|
|
@@ -537,12 +616,12 @@ msgstr ""
|
|
| 537 |
#: framework/extensions/newsletter-subscribe/customizer.php:169,
|
| 538 |
#: framework/extensions/newsletter-subscribe/customizer.php:200,
|
| 539 |
#: framework/extensions/newsletter-subscribe/customizer.php:225,
|
| 540 |
-
#: framework/extensions/trending/customizer.php:
|
| 541 |
-
#: framework/premium/extensions/mega-menu/options.php:
|
| 542 |
-
#: framework/premium/extensions/mega-menu/options.php:
|
| 543 |
-
#: framework/premium/extensions/mega-menu/options.php:
|
| 544 |
-
#: framework/premium/extensions/shortcuts/customizer.php:
|
| 545 |
-
#: framework/premium/extensions/shortcuts/customizer.php:
|
| 546 |
#: framework/premium/extensions/woocommerce-extra/floating-cart.php:99,
|
| 547 |
#: framework/premium/extensions/woocommerce-extra/offcanvas-filter.php:73,
|
| 548 |
#: framework/premium/extensions/woocommerce-extra/offcanvas-filter.php:352,
|
|
@@ -553,23 +632,32 @@ msgstr ""
|
|
| 553 |
#: framework/features/header/items/account/options.php:705,
|
| 554 |
#: framework/features/header/items/account/options.php:736,
|
| 555 |
#: framework/features/header/items/account/options.php:765,
|
| 556 |
-
#: framework/features/header/items/account/options.php:
|
| 557 |
-
#: framework/features/header/items/account/options.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 558 |
#: framework/premium/extensions/woocommerce-extra/includes/wish-list-options.php:185,
|
| 559 |
-
#: framework/premium/extensions/woocommerce-extra/includes/wish-list-options.php:
|
| 560 |
-
#: framework/premium/extensions/woocommerce-extra/includes/wish-list-options.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
| 561 |
#: framework/premium/extensions/woocommerce-extra/header-items/wish-list/options.php:191,
|
| 562 |
#: framework/premium/extensions/woocommerce-extra/header-items/wish-list/options.php:222,
|
| 563 |
#: framework/premium/extensions/woocommerce-extra/header-items/wish-list/options.php:251,
|
| 564 |
#: framework/premium/extensions/woocommerce-extra/header-items/wish-list/options.php:318,
|
| 565 |
#: framework/premium/extensions/woocommerce-extra/header-items/wish-list/options.php:349,
|
| 566 |
#: framework/premium/extensions/woocommerce-extra/header-items/wish-list/options.php:378,
|
| 567 |
-
#: framework/premium/features/premium-header/items/contacts/options.php:
|
| 568 |
-
#: framework/premium/features/premium-header/items/contacts/options.php:
|
| 569 |
-
#: framework/premium/features/premium-header/items/contacts/options.php:
|
| 570 |
-
#: framework/premium/features/premium-header/items/contacts/options.php:
|
| 571 |
-
#: framework/premium/features/premium-header/items/contacts/options.php:
|
| 572 |
-
#: framework/premium/features/premium-header/items/contacts/options.php:
|
| 573 |
#: framework/premium/features/premium-header/items/dark-mode-switcher/options.php:75,
|
| 574 |
#: framework/premium/features/premium-header/items/dark-mode-switcher/options.php:106,
|
| 575 |
#: framework/premium/features/premium-header/items/dark-mode-switcher/options.php:135,
|
|
@@ -578,20 +666,20 @@ msgstr ""
|
|
| 578 |
#: framework/premium/features/premium-header/items/language-switcher/options.php:308,
|
| 579 |
#: framework/premium/features/premium-header/items/language-switcher/options.php:399,
|
| 580 |
#: framework/premium/features/premium-header/items/language-switcher/options.php:425,
|
| 581 |
-
#: framework/premium/features/premium-header/items/search-input/options.php:
|
| 582 |
-
#: framework/premium/features/premium-header/items/search-input/options.php:
|
| 583 |
-
#: framework/premium/features/premium-header/items/search-input/options.php:
|
| 584 |
-
#: framework/premium/features/premium-header/items/search-input/options.php:
|
| 585 |
-
#: framework/premium/features/premium-header/items/search-input/options.php:
|
| 586 |
-
#: framework/premium/features/premium-header/items/search-input/options.php:
|
| 587 |
-
#: framework/premium/features/premium-header/items/search-input/options.php:
|
| 588 |
-
#: framework/premium/features/premium-header/items/search-input/options.php:
|
| 589 |
-
#: framework/premium/features/premium-header/items/search-input/options.php:
|
| 590 |
-
#: framework/premium/features/premium-header/items/search-input/options.php:
|
| 591 |
-
#: framework/premium/features/premium-header/items/search-input/options.php:
|
| 592 |
-
#: framework/premium/features/premium-header/items/search-input/options.php:
|
| 593 |
-
#: framework/premium/features/premium-header/items/search-input/options.php:
|
| 594 |
-
#: framework/premium/features/premium-header/items/search-input/options.php:
|
| 595 |
msgid "Initial"
|
| 596 |
msgstr ""
|
| 597 |
|
|
@@ -599,9 +687,10 @@ msgstr ""
|
|
| 599 |
#: framework/extensions/cookies-consent/customizer.php:147,
|
| 600 |
#: framework/extensions/newsletter-subscribe/customizer.php:175,
|
| 601 |
#: framework/extensions/newsletter-subscribe/customizer.php:205,
|
| 602 |
-
#: framework/extensions/trending/customizer.php:
|
| 603 |
-
#: framework/premium/extensions/
|
| 604 |
-
#: framework/premium/extensions/shortcuts/customizer.php:
|
|
|
|
| 605 |
#: framework/premium/extensions/woocommerce-extra/offcanvas-filter.php:357,
|
| 606 |
#: framework/premium/extensions/woocommerce-extra/offcanvas-filter.php:386,
|
| 607 |
#: framework/features/header/items/account/options.php:567,
|
|
@@ -610,39 +699,40 @@ msgstr ""
|
|
| 610 |
#: framework/features/header/items/account/options.php:711,
|
| 611 |
#: framework/features/header/items/account/options.php:741,
|
| 612 |
#: framework/features/header/items/account/options.php:770,
|
| 613 |
-
#: framework/features/header/items/account/options.php:
|
| 614 |
-
#: framework/features/header/items/account/options.php:
|
|
|
|
| 615 |
#: framework/premium/extensions/woocommerce-extra/header-items/wish-list/options.php:197,
|
| 616 |
#: framework/premium/extensions/woocommerce-extra/header-items/wish-list/options.php:227,
|
| 617 |
#: framework/premium/extensions/woocommerce-extra/header-items/wish-list/options.php:256,
|
| 618 |
#: framework/premium/extensions/woocommerce-extra/header-items/wish-list/options.php:324,
|
| 619 |
#: framework/premium/extensions/woocommerce-extra/header-items/wish-list/options.php:354,
|
| 620 |
#: framework/premium/extensions/woocommerce-extra/header-items/wish-list/options.php:383,
|
| 621 |
-
#: framework/premium/features/premium-header/items/contacts/options.php:
|
| 622 |
-
#: framework/premium/features/premium-header/items/contacts/options.php:
|
| 623 |
-
#: framework/premium/features/premium-header/items/contacts/options.php:
|
| 624 |
-
#: framework/premium/features/premium-header/items/contacts/options.php:
|
| 625 |
-
#: framework/premium/features/premium-header/items/contacts/options.php:
|
| 626 |
-
#: framework/premium/features/premium-header/items/contacts/options.php:
|
| 627 |
#: framework/premium/features/premium-header/items/dark-mode-switcher/options.php:81,
|
| 628 |
#: framework/premium/features/premium-header/items/dark-mode-switcher/options.php:111,
|
| 629 |
#: framework/premium/features/premium-header/items/dark-mode-switcher/options.php:140,
|
| 630 |
#: framework/premium/features/premium-header/items/language-switcher/options.php:404,
|
| 631 |
-
#: framework/premium/features/premium-header/items/search-input/options.php:
|
| 632 |
msgid "Hover"
|
| 633 |
msgstr ""
|
| 634 |
|
| 635 |
#: framework/extensions/cookies-consent/customizer.php:126,
|
| 636 |
-
#: framework/extensions/newsletter-subscribe/customizer.php:183
|
|
|
|
| 637 |
msgid "Button Color"
|
| 638 |
msgstr ""
|
| 639 |
|
| 640 |
#: framework/extensions/cookies-consent/customizer.php:154,
|
| 641 |
#: framework/extensions/newsletter-subscribe/customizer.php:212,
|
| 642 |
-
#: framework/premium/extensions/mega-menu/options.php:
|
| 643 |
-
#: framework/premium/extensions/woocommerce-extra/includes/wish-list-options.php:
|
| 644 |
-
#: framework/premium/extensions/
|
| 645 |
-
#: framework/premium/extensions/woocommerce-extra/includes/wish-list-options.php:351,
|
| 646 |
#: framework/premium/features/premium-header/items/language-switcher/options.php:412
|
| 647 |
msgid "Background Color"
|
| 648 |
msgstr ""
|
|
@@ -651,18 +741,22 @@ msgstr ""
|
|
| 651 |
msgid "Maximum Width"
|
| 652 |
msgstr ""
|
| 653 |
|
| 654 |
-
#: framework/extensions/cookies-consent/customizer.php:202
|
| 655 |
-
|
| 656 |
-
msgid "I accept the %sPrivacy Policy%s"
|
| 657 |
msgstr ""
|
| 658 |
|
| 659 |
#: framework/extensions/cookies-consent/customizer.php:206
|
| 660 |
msgid "This text will appear under each comment form and subscribe form."
|
| 661 |
msgstr ""
|
| 662 |
|
|
|
|
|
|
|
|
|
|
|
|
|
| 663 |
#: framework/extensions/cookies-consent/readme.php:1,
|
| 664 |
#: framework/extensions/newsletter-subscribe/readme.php:1,
|
| 665 |
#: framework/premium/extensions/code-snippets/readme.php:1,
|
|
|
|
| 666 |
#: framework/premium/extensions/woocommerce-extra/readme.php:1
|
| 667 |
msgid "Instructions"
|
| 668 |
msgstr ""
|
|
@@ -694,7 +788,8 @@ msgstr ""
|
|
| 694 |
|
| 695 |
#: framework/extensions/newsletter-subscribe/config.php:5
|
| 696 |
msgid ""
|
| 697 |
-
"
|
|
|
|
| 698 |
msgstr ""
|
| 699 |
|
| 700 |
#: framework/extensions/newsletter-subscribe/customizer.php:4
|
|
@@ -756,17 +851,17 @@ msgstr ""
|
|
| 756 |
#: framework/extensions/newsletter-subscribe/ct-newsletter-subscribe/options.php:38,
|
| 757 |
#: framework/extensions/newsletter-subscribe/ct-newsletter-subscribe/options.php:105,
|
| 758 |
#: framework/extensions/widgets/widgets/ct-posts/options.php:173,
|
| 759 |
-
#: framework/
|
| 760 |
-
#: framework/premium/
|
| 761 |
-
#: framework/premium/extensions/woocommerce-extra/includes/wish-list-options.php:369
|
| 762 |
msgid "Default"
|
| 763 |
msgstr ""
|
| 764 |
|
| 765 |
#: framework/extensions/newsletter-subscribe/customizer.php:50,
|
| 766 |
#: framework/extensions/newsletter-subscribe/ct-newsletter-subscribe/options.php:39,
|
| 767 |
-
#: framework/premium/extensions/shortcuts/customizer.php:
|
| 768 |
-
#: framework/premium/extensions/shortcuts/customizer.php:
|
| 769 |
#: framework/extensions/widgets/widgets/ct-about-me/options.php:46
|
|
|
|
| 770 |
msgid "Custom"
|
| 771 |
msgstr ""
|
| 772 |
|
|
@@ -787,7 +882,7 @@ msgid "Name Label"
|
|
| 787 |
msgstr ""
|
| 788 |
|
| 789 |
#: framework/extensions/newsletter-subscribe/customizer.php:95,
|
| 790 |
-
#: framework/extensions/newsletter-subscribe/extension.php:
|
| 791 |
#: framework/extensions/newsletter-subscribe/helpers.php:57,
|
| 792 |
#: framework/extensions/newsletter-subscribe/helpers.php:108,
|
| 793 |
#: framework/extensions/newsletter-subscribe/ct-newsletter-subscribe/options.php:75,
|
|
@@ -801,7 +896,7 @@ msgid "Mail Label"
|
|
| 801 |
msgstr ""
|
| 802 |
|
| 803 |
#: framework/extensions/newsletter-subscribe/customizer.php:107,
|
| 804 |
-
#: framework/extensions/newsletter-subscribe/extension.php:
|
| 805 |
#: framework/extensions/newsletter-subscribe/helpers.php:61,
|
| 806 |
#: framework/extensions/newsletter-subscribe/helpers.php:109,
|
| 807 |
#: framework/extensions/newsletter-subscribe/ct-newsletter-subscribe/options.php:86,
|
|
@@ -815,7 +910,7 @@ msgid "Button Label"
|
|
| 815 |
msgstr ""
|
| 816 |
|
| 817 |
#: framework/extensions/newsletter-subscribe/customizer.php:116,
|
| 818 |
-
#: framework/extensions/newsletter-subscribe/extension.php:
|
| 819 |
#: framework/extensions/newsletter-subscribe/helpers.php:52,
|
| 820 |
#: framework/extensions/newsletter-subscribe/helpers.php:101,
|
| 821 |
#: framework/extensions/newsletter-subscribe/ct-newsletter-subscribe/options.php:94,
|
|
@@ -827,73 +922,105 @@ msgstr ""
|
|
| 827 |
#: framework/premium/extensions/shortcuts/customizer.php:42,
|
| 828 |
#: framework/premium/extensions/shortcuts/customizer.php:99,
|
| 829 |
#: framework/premium/extensions/shortcuts/customizer.php:156,
|
| 830 |
-
#: framework/premium/extensions/shortcuts/customizer.php:
|
| 831 |
-
#: framework/premium/extensions/shortcuts/customizer.php:
|
| 832 |
#: framework/premium/extensions/shortcuts/customizer.php:322,
|
| 833 |
#: framework/premium/extensions/shortcuts/customizer.php:373,
|
| 834 |
-
#: framework/premium/extensions/shortcuts/customizer.php:
|
| 835 |
-
#: framework/premium/
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 836 |
msgid "Visibility"
|
| 837 |
msgstr ""
|
| 838 |
|
| 839 |
#: framework/extensions/newsletter-subscribe/customizer.php:137,
|
| 840 |
-
#: framework/extensions/trending/customizer.php:
|
| 841 |
#: framework/features/header/header-options.php:89,
|
| 842 |
#: framework/features/header/header-options.php:171,
|
| 843 |
#: framework/premium/extensions/shortcuts/customizer.php:54,
|
| 844 |
#: framework/premium/extensions/shortcuts/customizer.php:111,
|
| 845 |
#: framework/premium/extensions/shortcuts/customizer.php:168,
|
| 846 |
-
#: framework/premium/extensions/shortcuts/customizer.php:
|
| 847 |
-
#: framework/premium/extensions/shortcuts/customizer.php:
|
| 848 |
#: framework/premium/extensions/shortcuts/customizer.php:334,
|
| 849 |
#: framework/premium/extensions/shortcuts/customizer.php:385,
|
| 850 |
-
#: framework/premium/extensions/shortcuts/customizer.php:
|
| 851 |
-
#: framework/premium/extensions/shortcuts/customizer.php:
|
|
|
|
| 852 |
#: framework/premium/extensions/woocommerce-extra/floating-cart.php:47,
|
| 853 |
#: framework/premium/extensions/woocommerce-extra/floating-cart.php:71,
|
| 854 |
#: framework/premium/extensions/woocommerce-extra/offcanvas-filter.php:219,
|
| 855 |
-
#: framework/
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 856 |
#: framework/premium/extensions/woocommerce-extra/header-items/wish-list/options.php:73
|
| 857 |
msgid "Desktop"
|
| 858 |
msgstr ""
|
| 859 |
|
| 860 |
#: framework/extensions/newsletter-subscribe/customizer.php:138,
|
| 861 |
-
#: framework/extensions/trending/customizer.php:
|
| 862 |
#: framework/premium/extensions/shortcuts/customizer.php:55,
|
| 863 |
#: framework/premium/extensions/shortcuts/customizer.php:112,
|
| 864 |
#: framework/premium/extensions/shortcuts/customizer.php:169,
|
| 865 |
-
#: framework/premium/extensions/shortcuts/customizer.php:
|
| 866 |
-
#: framework/premium/extensions/shortcuts/customizer.php:
|
| 867 |
#: framework/premium/extensions/shortcuts/customizer.php:335,
|
| 868 |
#: framework/premium/extensions/shortcuts/customizer.php:386,
|
| 869 |
-
#: framework/premium/extensions/shortcuts/customizer.php:
|
| 870 |
-
#: framework/premium/extensions/shortcuts/customizer.php:
|
|
|
|
| 871 |
#: framework/premium/extensions/woocommerce-extra/floating-cart.php:48,
|
| 872 |
#: framework/premium/extensions/woocommerce-extra/floating-cart.php:72,
|
| 873 |
#: framework/premium/extensions/woocommerce-extra/offcanvas-filter.php:220,
|
| 874 |
-
#: framework/
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 875 |
#: framework/premium/extensions/woocommerce-extra/header-items/wish-list/options.php:74
|
| 876 |
msgid "Tablet"
|
| 877 |
msgstr ""
|
| 878 |
|
| 879 |
#: framework/extensions/newsletter-subscribe/customizer.php:139,
|
| 880 |
-
#: framework/extensions/trending/customizer.php:
|
| 881 |
#: framework/features/header/header-options.php:91,
|
| 882 |
#: framework/features/header/header-options.php:173,
|
| 883 |
#: framework/premium/extensions/shortcuts/customizer.php:56,
|
| 884 |
#: framework/premium/extensions/shortcuts/customizer.php:113,
|
| 885 |
#: framework/premium/extensions/shortcuts/customizer.php:170,
|
| 886 |
-
#: framework/premium/extensions/shortcuts/customizer.php:
|
| 887 |
-
#: framework/premium/extensions/shortcuts/customizer.php:
|
| 888 |
#: framework/premium/extensions/shortcuts/customizer.php:336,
|
| 889 |
#: framework/premium/extensions/shortcuts/customizer.php:387,
|
| 890 |
-
#: framework/premium/extensions/shortcuts/customizer.php:
|
| 891 |
-
#: framework/premium/extensions/shortcuts/customizer.php:
|
|
|
|
| 892 |
#: framework/premium/extensions/woocommerce-extra/floating-cart.php:49,
|
| 893 |
#: framework/premium/extensions/woocommerce-extra/floating-cart.php:73,
|
| 894 |
#: framework/premium/extensions/woocommerce-extra/offcanvas-filter.php:221,
|
| 895 |
-
#: framework/premium/features/content-blocks/meta-options.php:384,
|
| 896 |
#: framework/extensions/widgets/widgets/ct-contact-info/options.php:117,
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 897 |
#: framework/premium/extensions/woocommerce-extra/header-items/wish-list/options.php:75,
|
| 898 |
#: framework/premium/features/premium-header/items/contacts/options.php:97
|
| 899 |
msgid "Mobile"
|
|
@@ -904,11 +1031,11 @@ msgid "Content Color"
|
|
| 904 |
msgstr ""
|
| 905 |
|
| 906 |
#: framework/extensions/newsletter-subscribe/customizer.php:233,
|
| 907 |
-
#: framework/extensions/trending/customizer.php:
|
| 908 |
msgid "Container Inner Spacing"
|
| 909 |
msgstr ""
|
| 910 |
|
| 911 |
-
#: framework/extensions/newsletter-subscribe/extension.php:
|
| 912 |
msgid "Disable Subscribe Form"
|
| 913 |
msgstr ""
|
| 914 |
|
|
@@ -931,31 +1058,31 @@ msgstr ""
|
|
| 931 |
|
| 932 |
#: framework/extensions/newsletter-subscribe/readme.php:4
|
| 933 |
msgid ""
|
| 934 |
-
"After installing and activating the
|
| 935 |
-
"possibilities to show your subscribe form:"
|
| 936 |
msgstr ""
|
| 937 |
|
| 938 |
-
#: framework/extensions/newsletter-subscribe/readme.php:
|
| 939 |
-
msgid "
|
| 940 |
msgstr ""
|
| 941 |
|
| 942 |
-
#: framework/extensions/newsletter-subscribe/readme.php:
|
| 943 |
msgid "Navigate to %s and place the widget in any widget area you want."
|
| 944 |
msgstr ""
|
| 945 |
|
| 946 |
-
#: framework/extensions/newsletter-subscribe/readme.php:
|
| 947 |
msgid "Appearance ➝ Widgets"
|
| 948 |
msgstr ""
|
| 949 |
|
| 950 |
-
#: framework/extensions/newsletter-subscribe/readme.php:
|
| 951 |
-
msgid "
|
| 952 |
msgstr ""
|
| 953 |
|
| 954 |
-
#: framework/extensions/newsletter-subscribe/readme.php:
|
| 955 |
msgid "Navigate to %s and customize the form and more."
|
| 956 |
msgstr ""
|
| 957 |
|
| 958 |
-
#: framework/extensions/newsletter-subscribe/readme.php:
|
| 959 |
msgid "Customizer ➝ Single Posts"
|
| 960 |
msgstr ""
|
| 961 |
|
|
@@ -968,7 +1095,10 @@ msgid "Product Reviews"
|
|
| 968 |
msgstr ""
|
| 969 |
|
| 970 |
#: framework/extensions/product-reviews/config.php:5
|
| 971 |
-
msgid "
|
|
|
|
|
|
|
|
|
|
| 972 |
msgstr ""
|
| 973 |
|
| 974 |
#: framework/extensions/product-reviews/extension.php:145
|
|
@@ -1021,6 +1151,7 @@ msgid "Categories"
|
|
| 1021 |
msgstr ""
|
| 1022 |
|
| 1023 |
#: framework/extensions/product-reviews/extension.php:191,
|
|
|
|
| 1024 |
#: framework/extensions/widgets/widgets/ct-posts/options.php:37
|
| 1025 |
msgid "Category"
|
| 1026 |
msgstr ""
|
|
@@ -1057,7 +1188,7 @@ msgstr ""
|
|
| 1057 |
msgid "New Category Name"
|
| 1058 |
msgstr ""
|
| 1059 |
|
| 1060 |
-
#: framework/extensions/product-reviews/helpers.php:
|
| 1061 |
#: framework/extensions/product-reviews/metabox.php:89
|
| 1062 |
msgid "Rating"
|
| 1063 |
msgstr ""
|
|
@@ -1071,7 +1202,7 @@ msgid "Affiliate Button Label"
|
|
| 1071 |
msgstr ""
|
| 1072 |
|
| 1073 |
#: framework/extensions/product-reviews/metabox.php:25,
|
| 1074 |
-
#: framework/extensions/product-reviews/views/single-top.php:
|
| 1075 |
msgid "Buy Now"
|
| 1076 |
msgstr ""
|
| 1077 |
|
|
@@ -1088,7 +1219,7 @@ msgid "Read More Button Label"
|
|
| 1088 |
msgstr ""
|
| 1089 |
|
| 1090 |
#: framework/extensions/product-reviews/metabox.php:60,
|
| 1091 |
-
#: framework/extensions/product-reviews/views/single-top.php:
|
| 1092 |
msgid "Read More"
|
| 1093 |
msgstr ""
|
| 1094 |
|
|
@@ -1105,87 +1236,136 @@ msgid "Product specs"
|
|
| 1105 |
msgstr ""
|
| 1106 |
|
| 1107 |
#: framework/extensions/product-reviews/metabox.php:159,
|
| 1108 |
-
#: framework/extensions/product-reviews/views/single-top.php:
|
| 1109 |
msgid "Pros"
|
| 1110 |
msgstr ""
|
| 1111 |
|
| 1112 |
#: framework/extensions/product-reviews/metabox.php:179,
|
| 1113 |
-
#: framework/extensions/product-reviews/views/single-top.php:
|
| 1114 |
msgid "Cons"
|
| 1115 |
msgstr ""
|
| 1116 |
|
| 1117 |
#: framework/extensions/trending/config.php:4,
|
| 1118 |
-
#: framework/extensions/trending/customizer.php:
|
|
|
|
| 1119 |
msgid "Trending Posts"
|
| 1120 |
msgstr ""
|
| 1121 |
|
| 1122 |
#: framework/extensions/trending/config.php:5
|
| 1123 |
msgid ""
|
| 1124 |
-
"
|
| 1125 |
-
"
|
| 1126 |
msgstr ""
|
| 1127 |
|
| 1128 |
#: framework/extensions/trending/customizer.php:8,
|
| 1129 |
-
#: framework/premium/extensions/shortcuts/views/bar.php:
|
| 1130 |
#: framework/premium/features/premium-header/items/search-input/options.php:6
|
| 1131 |
msgid "Products"
|
| 1132 |
msgstr ""
|
| 1133 |
|
| 1134 |
-
#: framework/extensions/trending/customizer.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1135 |
msgid "Trending From"
|
| 1136 |
msgstr ""
|
| 1137 |
|
| 1138 |
-
#: framework/extensions/trending/customizer.php:
|
| 1139 |
-
#: framework/extensions/widgets/widgets/ct-posts/options.php:
|
| 1140 |
msgid "All Time"
|
| 1141 |
msgstr ""
|
| 1142 |
|
| 1143 |
-
#: framework/extensions/trending/customizer.php:
|
| 1144 |
msgid "Last 24 Hours"
|
| 1145 |
msgstr ""
|
| 1146 |
|
| 1147 |
-
#: framework/extensions/trending/customizer.php:
|
| 1148 |
msgid "Last 7 Days"
|
| 1149 |
msgstr ""
|
| 1150 |
|
| 1151 |
-
#: framework/extensions/trending/customizer.php:
|
| 1152 |
msgid "Last Month"
|
| 1153 |
msgstr ""
|
| 1154 |
|
| 1155 |
-
#: framework/extensions/trending/customizer.php:
|
| 1156 |
msgid "Container Visibility"
|
| 1157 |
msgstr ""
|
| 1158 |
|
| 1159 |
-
#: framework/extensions/trending/customizer.php:
|
| 1160 |
msgid "Posts Font"
|
| 1161 |
msgstr ""
|
| 1162 |
|
| 1163 |
-
#: framework/extensions/trending/customizer.php:
|
| 1164 |
-
#: framework/premium/extensions/shortcuts/customizer.php:
|
| 1165 |
msgid "Container Background"
|
| 1166 |
msgstr ""
|
| 1167 |
|
| 1168 |
-
#: framework/extensions/trending/helpers.php:174
|
| 1169 |
-
msgid "Trending now"
|
| 1170 |
-
msgstr ""
|
| 1171 |
-
|
| 1172 |
#: framework/extensions/widgets/config.php:4
|
| 1173 |
msgid ""
|
| 1174 |
-
"
|
| 1175 |
-
"
|
|
|
|
| 1176 |
msgstr ""
|
| 1177 |
|
| 1178 |
-
#: framework/features/header/account-modal.php:
|
| 1179 |
#: framework/features/header/items/account/options.php:481,
|
| 1180 |
#: framework/features/header/items/account/views/logout.php:48
|
| 1181 |
msgid "Login"
|
| 1182 |
msgstr ""
|
| 1183 |
|
| 1184 |
-
#: framework/features/header/account-modal.php:
|
| 1185 |
msgid "Sign Up"
|
| 1186 |
msgstr ""
|
| 1187 |
|
| 1188 |
-
#: framework/features/header/account-modal.php:
|
| 1189 |
msgid "Back to login"
|
| 1190 |
msgstr ""
|
| 1191 |
|
|
@@ -1219,7 +1399,11 @@ msgid "Transparent Functionality"
|
|
| 1219 |
msgstr ""
|
| 1220 |
|
| 1221 |
#: framework/features/header/header-options.php:144,
|
| 1222 |
-
#: framework/premium/extensions/shortcuts/customizer.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1223 |
#: framework/premium/static/js/footer/EditConditions.js:97
|
| 1224 |
#: static/js/header/EditConditions.js:96
|
| 1225 |
msgid "Display Conditions"
|
|
@@ -1229,66 +1413,118 @@ msgstr ""
|
|
| 1229 |
msgid "Hooks Locations"
|
| 1230 |
msgstr ""
|
| 1231 |
|
| 1232 |
-
#: framework/premium/features/content-blocks.php:
|
| 1233 |
-
#: framework/premium/extensions/shortcuts/customizer.php:
|
| 1234 |
#: framework/extensions/widgets/widgets/ct-about-me/options.php:23
|
| 1235 |
msgid "Type"
|
| 1236 |
msgstr ""
|
| 1237 |
|
| 1238 |
-
#: framework/premium/features/content-blocks.php:
|
| 1239 |
-
msgid "Location"
|
| 1240 |
msgstr ""
|
| 1241 |
|
| 1242 |
-
#: framework/premium/features/content-blocks.php:
|
| 1243 |
msgid "Conditions"
|
| 1244 |
msgstr ""
|
| 1245 |
|
| 1246 |
-
#: framework/premium/features/content-blocks.php:
|
| 1247 |
-
msgid "
|
| 1248 |
msgstr ""
|
| 1249 |
|
| 1250 |
-
#: framework/premium/features/content-blocks.php:
|
| 1251 |
msgid "Enable/Disable"
|
| 1252 |
msgstr ""
|
| 1253 |
|
| 1254 |
-
#: framework/premium/features/content-blocks.php:
|
| 1255 |
-
#: framework/premium/
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1256 |
msgid "Content Blocks"
|
| 1257 |
msgstr ""
|
| 1258 |
|
| 1259 |
-
#: framework/premium/features/content-blocks.php:
|
| 1260 |
msgid "Content Block"
|
| 1261 |
msgstr ""
|
| 1262 |
|
| 1263 |
-
#: framework/premium/features/content-blocks.php:
|
| 1264 |
msgid "Add New"
|
| 1265 |
msgstr ""
|
| 1266 |
|
| 1267 |
-
#: framework/premium/features/content-blocks.php:
|
| 1268 |
msgid "Add New Content Block"
|
| 1269 |
msgstr ""
|
| 1270 |
|
| 1271 |
-
#: framework/premium/features/content-blocks.php:
|
| 1272 |
msgid "Edit Content Block"
|
| 1273 |
msgstr ""
|
| 1274 |
|
| 1275 |
-
#: framework/premium/features/content-blocks.php:
|
|
|
|
| 1276 |
msgid "New Content Block"
|
| 1277 |
msgstr ""
|
| 1278 |
|
| 1279 |
-
#: framework/premium/features/content-blocks.php:
|
| 1280 |
msgid "View Content Block"
|
| 1281 |
msgstr ""
|
| 1282 |
|
| 1283 |
-
#: framework/premium/features/content-blocks.php:
|
| 1284 |
msgid "Search Content Blocks"
|
| 1285 |
msgstr ""
|
| 1286 |
|
| 1287 |
-
#: framework/premium/features/content-blocks.php:
|
| 1288 |
msgid "Nothing found"
|
| 1289 |
msgstr ""
|
| 1290 |
|
| 1291 |
-
#: framework/premium/features/content-blocks.php:
|
| 1292 |
msgid "Nothing found in Trash"
|
| 1293 |
msgstr ""
|
| 1294 |
|
|
@@ -1310,6 +1546,46 @@ msgstr ""
|
|
| 1310 |
msgid "Header Widget Area "
|
| 1311 |
msgstr ""
|
| 1312 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1313 |
#: framework/extensions/newsletter-subscribe/ct-newsletter-subscribe/options.php:17,
|
| 1314 |
#: framework/extensions/newsletter-subscribe/ct-newsletter-subscribe/view.php:12
|
| 1315 |
msgid "Newsletter"
|
|
@@ -1336,11 +1612,11 @@ msgstr ""
|
|
| 1336 |
msgid "Thank you for subscribing!"
|
| 1337 |
msgstr ""
|
| 1338 |
|
| 1339 |
-
#: framework/extensions/product-reviews/views/single-top.php:
|
| 1340 |
msgid "Overall Score"
|
| 1341 |
msgstr ""
|
| 1342 |
|
| 1343 |
-
#: framework/extensions/product-reviews/views/single-top.php:
|
| 1344 |
msgid "Specs"
|
| 1345 |
msgstr ""
|
| 1346 |
|
|
@@ -1384,28 +1660,20 @@ msgstr ""
|
|
| 1384 |
msgid "Register"
|
| 1385 |
msgstr ""
|
| 1386 |
|
| 1387 |
-
#: framework/premium/extensions/adobe-typekit/config.php:4
|
| 1388 |
-
|
| 1389 |
-
msgid "Adobe Typekit"
|
| 1390 |
msgstr ""
|
| 1391 |
|
| 1392 |
#: framework/premium/extensions/adobe-typekit/config.php:5
|
| 1393 |
msgid ""
|
| 1394 |
-
"Connect your
|
| 1395 |
-
|
| 1396 |
-
|
| 1397 |
-
#: framework/premium/extensions/code-snippets/config.php:4,
|
| 1398 |
-
#: framework/premium/extensions/code-snippets/extension.php:23,
|
| 1399 |
-
#: framework/premium/extensions/code-snippets/extension.php:63,
|
| 1400 |
-
#: framework/premium/extensions/code-snippets/extension.php:99,
|
| 1401 |
-
#: framework/premium/extensions/code-snippets/readme.php:38
|
| 1402 |
-
msgid "Custom Code Snippets"
|
| 1403 |
msgstr ""
|
| 1404 |
|
| 1405 |
#: framework/premium/extensions/code-snippets/config.php:5
|
| 1406 |
msgid ""
|
| 1407 |
-
"
|
| 1408 |
-
"page
|
| 1409 |
msgstr ""
|
| 1410 |
|
| 1411 |
#: framework/premium/extensions/code-snippets/extension.php:38,
|
|
@@ -1448,24 +1716,22 @@ msgstr ""
|
|
| 1448 |
|
| 1449 |
#: framework/premium/extensions/custom-fonts/config.php:4
|
| 1450 |
msgid ""
|
| 1451 |
-
"Upload unlimited number of custom fonts and use them
|
| 1452 |
-
"
|
| 1453 |
msgstr ""
|
| 1454 |
|
| 1455 |
#: framework/premium/extensions/local-google-fonts/config.php:4
|
| 1456 |
-
msgid "
|
| 1457 |
-
|
| 1458 |
-
|
| 1459 |
-
|
| 1460 |
-
msgid "Local Google Fonts"
|
| 1461 |
-
msgstr ""
|
| 1462 |
-
|
| 1463 |
-
#: framework/premium/extensions/mega-menu/config.php:4
|
| 1464 |
-
msgid "Advanced Menu"
|
| 1465 |
msgstr ""
|
| 1466 |
|
| 1467 |
#: framework/premium/extensions/mega-menu/config.php:5
|
| 1468 |
-
msgid "
|
|
|
|
|
|
|
|
|
|
| 1469 |
msgstr ""
|
| 1470 |
|
| 1471 |
#: framework/premium/extensions/mega-menu/config.php:9
|
|
@@ -1475,16 +1741,16 @@ msgstr ""
|
|
| 1475 |
msgid "Configure"
|
| 1476 |
msgstr ""
|
| 1477 |
|
| 1478 |
-
#: framework/premium/extensions/mega-menu/extension.php:
|
| 1479 |
msgid "Menu Item Settings"
|
| 1480 |
msgstr ""
|
| 1481 |
|
| 1482 |
-
#: framework/premium/extensions/mega-menu/extension.php:
|
| 1483 |
msgid "New"
|
| 1484 |
msgstr ""
|
| 1485 |
|
| 1486 |
#: framework/premium/extensions/mega-menu/options.php:16,
|
| 1487 |
-
#: framework/premium/extensions/mega-menu/options.php:
|
| 1488 |
msgid "Mega Menu Settings"
|
| 1489 |
msgstr ""
|
| 1490 |
|
|
@@ -1492,11 +1758,13 @@ msgstr ""
|
|
| 1492 |
msgid "Dropdown Width"
|
| 1493 |
msgstr ""
|
| 1494 |
|
| 1495 |
-
#: framework/premium/extensions/mega-menu/options.php:35
|
|
|
|
| 1496 |
msgid "Content Width"
|
| 1497 |
msgstr ""
|
| 1498 |
|
| 1499 |
-
#: framework/premium/extensions/mega-menu/options.php:36
|
|
|
|
| 1500 |
msgid "Full Width"
|
| 1501 |
msgstr ""
|
| 1502 |
|
|
@@ -1504,178 +1772,149 @@ msgstr ""
|
|
| 1504 |
msgid "Custom Width"
|
| 1505 |
msgstr ""
|
| 1506 |
|
| 1507 |
-
#: framework/premium/extensions/mega-menu/options.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1508 |
msgid "Columns"
|
| 1509 |
msgstr ""
|
| 1510 |
|
| 1511 |
-
#: framework/premium/extensions/mega-menu/options.php:
|
| 1512 |
msgid "Custom Content"
|
| 1513 |
msgstr ""
|
| 1514 |
|
| 1515 |
-
#: framework/premium/extensions/mega-menu/options.php:
|
| 1516 |
msgid "Content Type"
|
| 1517 |
msgstr ""
|
| 1518 |
|
| 1519 |
-
#: framework/premium/extensions/mega-menu/options.php:
|
| 1520 |
msgid "Default (Menu Item)"
|
| 1521 |
msgstr ""
|
| 1522 |
|
| 1523 |
-
#: framework/premium/extensions/mega-menu/options.php:
|
| 1524 |
msgid "Custom Text"
|
| 1525 |
msgstr ""
|
| 1526 |
|
| 1527 |
-
#: framework/premium/extensions/mega-menu/options.php:
|
| 1528 |
msgid "Content Block/Hook"
|
| 1529 |
msgstr ""
|
| 1530 |
|
| 1531 |
-
#: framework/premium/extensions/mega-menu/options.php:
|
| 1532 |
-
#: framework/premium/extensions/mega-menu/options.php:
|
| 1533 |
msgid "Item Label Settings"
|
| 1534 |
msgstr ""
|
| 1535 |
|
| 1536 |
-
#: framework/premium/extensions/mega-menu/options.php:
|
| 1537 |
msgid "Item Label"
|
| 1538 |
msgstr ""
|
| 1539 |
|
| 1540 |
-
#: framework/premium/extensions/mega-menu/options.php:
|
| 1541 |
msgid "Enabled"
|
| 1542 |
msgstr ""
|
| 1543 |
|
| 1544 |
-
#: framework/premium/extensions/mega-menu/options.php:
|
| 1545 |
-
#: framework/premium/features/content-blocks/
|
|
|
|
|
|
|
| 1546 |
msgid "Disabled"
|
| 1547 |
msgstr ""
|
| 1548 |
|
| 1549 |
-
#: framework/premium/extensions/mega-menu/options.php:
|
| 1550 |
msgid "Heading"
|
| 1551 |
msgstr ""
|
| 1552 |
|
| 1553 |
-
#: framework/premium/extensions/mega-menu/options.php:
|
| 1554 |
msgid "Label Link"
|
| 1555 |
msgstr ""
|
| 1556 |
|
| 1557 |
-
#: framework/premium/extensions/mega-menu/options.php:
|
| 1558 |
-
#: framework/
|
| 1559 |
-
#: framework/features/header/items/account/options.php:348
|
| 1560 |
-
msgid "Icon"
|
| 1561 |
-
msgstr ""
|
| 1562 |
-
|
| 1563 |
-
#: framework/premium/extensions/mega-menu/options.php:411,
|
| 1564 |
-
#: framework/extensions/widgets/widgets/ct-about-me/options.php:187,
|
| 1565 |
-
#: framework/extensions/widgets/widgets/ct-contact-info/options.php:258,
|
| 1566 |
-
#: framework/extensions/widgets/widgets/ct-socials/options.php:65,
|
| 1567 |
-
#: framework/premium/extensions/woocommerce-extra/includes/wish-list-options.php:122,
|
| 1568 |
-
#: framework/premium/features/premium-header/items/contacts/options.php:249
|
| 1569 |
-
msgid "Icons Size"
|
| 1570 |
-
msgstr ""
|
| 1571 |
-
|
| 1572 |
-
#: framework/premium/extensions/mega-menu/options.php:422
|
| 1573 |
-
msgid "Icon Alignment"
|
| 1574 |
-
msgstr ""
|
| 1575 |
-
|
| 1576 |
-
#: framework/premium/extensions/mega-menu/options.php:429,
|
| 1577 |
-
#: framework/premium/extensions/shortcuts/customizer.php:522,
|
| 1578 |
-
#: framework/features/header/items/account/options.php:259,
|
| 1579 |
-
#: framework/features/header/items/account/options.php:465,
|
| 1580 |
-
#: framework/premium/extensions/woocommerce-extra/header-items/wish-list/options.php:98
|
| 1581 |
-
msgid "Left"
|
| 1582 |
-
msgstr ""
|
| 1583 |
-
|
| 1584 |
-
#: framework/premium/extensions/mega-menu/options.php:430,
|
| 1585 |
-
#: framework/premium/extensions/shortcuts/customizer.php:523,
|
| 1586 |
-
#: framework/features/header/items/account/options.php:260,
|
| 1587 |
-
#: framework/features/header/items/account/options.php:466,
|
| 1588 |
-
#: framework/premium/extensions/woocommerce-extra/header-items/wish-list/options.php:99
|
| 1589 |
-
msgid "Right"
|
| 1590 |
-
msgstr ""
|
| 1591 |
-
|
| 1592 |
-
#: framework/premium/extensions/mega-menu/options.php:445,
|
| 1593 |
-
#: framework/premium/extensions/mega-menu/options.php:746
|
| 1594 |
msgid "Menu Badge Settings"
|
| 1595 |
msgstr ""
|
| 1596 |
|
| 1597 |
-
#: framework/premium/extensions/mega-menu/options.php:
|
| 1598 |
#: framework/extensions/widgets/widgets/ct-contact-info/options.php:23,
|
| 1599 |
#: framework/features/header/items/account/options.php:277
|
| 1600 |
msgid "Text"
|
| 1601 |
msgstr ""
|
| 1602 |
|
| 1603 |
-
#: framework/premium/extensions/mega-menu/options.php:
|
| 1604 |
#: framework/premium/extensions/woocommerce-extra/offcanvas-filter.php:260
|
| 1605 |
msgid "Vertical Alignment"
|
| 1606 |
msgstr ""
|
| 1607 |
|
| 1608 |
-
#: framework/premium/extensions/mega-menu/options.php:
|
| 1609 |
msgid "Background"
|
| 1610 |
msgstr ""
|
| 1611 |
|
| 1612 |
-
#: framework/premium/extensions/mega-menu/options.php:
|
| 1613 |
msgid "Link Color"
|
| 1614 |
msgstr ""
|
| 1615 |
|
| 1616 |
-
#: framework/premium/extensions/mega-menu/options.php:
|
| 1617 |
#: framework/premium/extensions/woocommerce-extra/offcanvas-filter.php:144,
|
| 1618 |
-
#: framework/premium/features/premium-header/items/contacts/options.php:
|
| 1619 |
-
#: framework/premium/features/premium-header/items/contacts/options.php:
|
| 1620 |
-
#: framework/premium/features/premium-header/items/contacts/options.php:
|
| 1621 |
msgid "Link Initial"
|
| 1622 |
msgstr ""
|
| 1623 |
|
| 1624 |
-
#: framework/premium/extensions/mega-menu/options.php:
|
| 1625 |
msgid "Link Hover/Active"
|
| 1626 |
msgstr ""
|
| 1627 |
|
| 1628 |
-
#: framework/premium/extensions/mega-menu/options.php:
|
| 1629 |
msgid "Background Hover"
|
| 1630 |
msgstr ""
|
| 1631 |
|
| 1632 |
-
#: framework/premium/extensions/mega-menu/options.php:
|
| 1633 |
-
#: framework/premium/extensions/mega-menu/options.php:
|
| 1634 |
msgid "Heading Color"
|
| 1635 |
msgstr ""
|
| 1636 |
|
| 1637 |
-
#: framework/premium/extensions/mega-menu/options.php:
|
| 1638 |
-
#: framework/premium/extensions/mega-menu/options.php:
|
| 1639 |
-
#: framework/premium/extensions/mega-menu/options.php:
|
| 1640 |
msgid "Initial Color"
|
| 1641 |
msgstr ""
|
| 1642 |
|
| 1643 |
-
#: framework/premium/extensions/mega-menu/options.php:
|
| 1644 |
msgid "Text Color"
|
| 1645 |
msgstr ""
|
| 1646 |
|
| 1647 |
-
#: framework/premium/extensions/mega-menu/options.php:
|
| 1648 |
-
#: framework/premium/extensions/shortcuts/customizer.php:
|
| 1649 |
#: framework/premium/features/premium-header/items/language-switcher/options.php:432,
|
| 1650 |
-
#: framework/premium/features/premium-header/items/search-input/options.php:
|
| 1651 |
msgid "Items Divider"
|
| 1652 |
msgstr ""
|
| 1653 |
|
| 1654 |
-
#: framework/premium/extensions/mega-menu/options.php:
|
| 1655 |
msgid "Columns Divider"
|
| 1656 |
msgstr ""
|
| 1657 |
|
| 1658 |
-
#: framework/premium/extensions/mega-menu/options.php:
|
| 1659 |
-
#: framework/premium/features/premium-header/items/search-input/options.php:
|
| 1660 |
msgid "Dropdown Shadow"
|
| 1661 |
msgstr ""
|
| 1662 |
|
| 1663 |
-
#: framework/premium/extensions/mega-menu/options.php:
|
| 1664 |
msgid "Column Settings"
|
| 1665 |
msgstr ""
|
| 1666 |
|
| 1667 |
-
#: framework/premium/extensions/mega-menu/options.php:
|
| 1668 |
msgid "Column Spacing"
|
| 1669 |
msgstr ""
|
| 1670 |
|
| 1671 |
-
#: framework/premium/extensions/mega-menu/options.php:
|
| 1672 |
#: framework/features/header/items/account/options.php:660,
|
| 1673 |
#: framework/features/header/items/account/options.php:688,
|
| 1674 |
#: framework/features/header/items/account/options.php:719,
|
| 1675 |
#: framework/features/header/items/account/options.php:748,
|
| 1676 |
-
#: framework/premium/extensions/woocommerce-extra/includes/wish-list-options.php:
|
| 1677 |
-
#: framework/premium/extensions/woocommerce-extra/includes/wish-list-options.php:
|
| 1678 |
-
#: framework/premium/extensions/woocommerce-extra/includes/wish-list-options.php:
|
| 1679 |
#: framework/premium/extensions/woocommerce-extra/header-items/wish-list/options.php:273,
|
| 1680 |
#: framework/premium/extensions/woocommerce-extra/header-items/wish-list/options.php:301,
|
| 1681 |
#: framework/premium/extensions/woocommerce-extra/header-items/wish-list/options.php:332,
|
|
@@ -1687,168 +1926,228 @@ msgstr ""
|
|
| 1687 |
msgid "Icon Color"
|
| 1688 |
msgstr ""
|
| 1689 |
|
| 1690 |
-
#: framework/premium/extensions/mega-menu/options.php:
|
| 1691 |
-
|
| 1692 |
-
#: framework/premium/extensions/woocommerce-extra/includes/wish-list-options.php:223,
|
| 1693 |
-
#: framework/premium/extensions/woocommerce-extra/includes/wish-list-options.php:267,
|
| 1694 |
-
#: framework/premium/extensions/woocommerce-extra/includes/wish-list-options.php:299,
|
| 1695 |
-
#: framework/premium/extensions/woocommerce-extra/includes/wish-list-options.php:343,
|
| 1696 |
-
#: framework/premium/extensions/woocommerce-extra/includes/wish-list-options.php:375,
|
| 1697 |
-
#: framework/premium/features/premium-header/items/language-switcher/options.php:254,
|
| 1698 |
-
#: framework/premium/features/premium-header/items/language-switcher/options.php:284,
|
| 1699 |
-
#: framework/premium/features/premium-header/items/language-switcher/options.php:313
|
| 1700 |
-
msgid "Hover/Active"
|
| 1701 |
msgstr ""
|
| 1702 |
|
| 1703 |
-
#: framework/premium/extensions/
|
| 1704 |
-
|
| 1705 |
-
msgid "Shortcuts Bar"
|
| 1706 |
msgstr ""
|
| 1707 |
|
| 1708 |
-
#: framework/premium/extensions/
|
| 1709 |
-
msgid "
|
|
|
|
|
|
|
|
|
|
| 1710 |
msgstr ""
|
| 1711 |
|
| 1712 |
-
#: framework/premium/extensions/
|
| 1713 |
-
|
| 1714 |
-
|
| 1715 |
-
|
| 1716 |
-
|
|
|
|
|
|
|
| 1717 |
msgstr ""
|
| 1718 |
|
| 1719 |
-
#: framework/premium/extensions/
|
| 1720 |
-
|
| 1721 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1722 |
#: framework/extensions/widgets/widgets/ct-contact-info/options.php:88,
|
| 1723 |
#: framework/premium/extensions/shortcuts/views/bar.php:26,
|
| 1724 |
#: framework/premium/features/premium-header/items/contacts/options.php:69
|
| 1725 |
msgid "Phone"
|
| 1726 |
msgstr ""
|
| 1727 |
|
| 1728 |
-
#: framework/premium/extensions/shortcuts/customizer.php:
|
| 1729 |
-
#: framework/premium/extensions/shortcuts/customizer.php:
|
| 1730 |
#: framework/premium/extensions/shortcuts/views/bar.php:28
|
| 1731 |
-
msgid "
|
| 1732 |
msgstr ""
|
| 1733 |
|
| 1734 |
#: framework/premium/extensions/shortcuts/customizer.php:292,
|
| 1735 |
-
#: framework/premium/extensions/shortcuts/customizer.php:315
|
| 1736 |
-
|
|
|
|
| 1737 |
msgstr ""
|
| 1738 |
|
| 1739 |
#: framework/premium/extensions/shortcuts/customizer.php:343,
|
| 1740 |
-
#: framework/premium/extensions/shortcuts/customizer.php:366
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1741 |
#: framework/premium/extensions/woocommerce-extra/header-items/wish-list/config.php:4,
|
| 1742 |
#: framework/premium/extensions/woocommerce-extra/header-items/wish-list/options.php:109,
|
| 1743 |
#: framework/premium/extensions/woocommerce-extra/header-items/wish-list/view.php:88
|
| 1744 |
msgid "Wishlist"
|
| 1745 |
msgstr ""
|
| 1746 |
|
| 1747 |
-
#: framework/premium/extensions/shortcuts/customizer.php:
|
| 1748 |
msgid "Shortcuts"
|
| 1749 |
msgstr ""
|
| 1750 |
|
| 1751 |
-
#: framework/premium/extensions/shortcuts/customizer.php:
|
| 1752 |
#: framework/features/header/items/account/options.php:216,
|
| 1753 |
#: framework/features/header/items/account/options.php:422,
|
| 1754 |
#: framework/premium/extensions/woocommerce-extra/header-items/wish-list/options.php:61
|
| 1755 |
msgid "Label Visibility"
|
| 1756 |
msgstr ""
|
| 1757 |
|
| 1758 |
-
#: framework/premium/extensions/shortcuts/customizer.php:
|
| 1759 |
#: framework/features/header/items/account/options.php:252,
|
| 1760 |
#: framework/features/header/items/account/options.php:458,
|
| 1761 |
#: framework/premium/extensions/woocommerce-extra/header-items/wish-list/options.php:91
|
| 1762 |
msgid "Label Position"
|
| 1763 |
msgstr ""
|
| 1764 |
|
| 1765 |
-
#: framework/premium/extensions/shortcuts/customizer.php:
|
| 1766 |
#: framework/premium/extensions/woocommerce-extra/floating-cart.php:25,
|
| 1767 |
-
#: framework/premium/features/content-blocks/hooks-manager.php:
|
| 1768 |
#: framework/features/header/items/account/options.php:261,
|
| 1769 |
#: framework/features/header/items/account/options.php:467,
|
|
|
|
| 1770 |
#: framework/premium/extensions/woocommerce-extra/header-items/wish-list/options.php:100
|
| 1771 |
msgid "Bottom"
|
| 1772 |
msgstr ""
|
| 1773 |
|
| 1774 |
-
#: framework/premium/extensions/shortcuts/customizer.php:
|
| 1775 |
#: framework/features/header/items/account/options.php:198,
|
| 1776 |
#: framework/features/header/items/account/options.php:404,
|
| 1777 |
#: framework/premium/extensions/woocommerce-extra/header-items/wish-list/options.php:39
|
| 1778 |
msgid "Icon Size"
|
| 1779 |
msgstr ""
|
| 1780 |
|
| 1781 |
-
#: framework/premium/extensions/shortcuts/customizer.php:
|
| 1782 |
msgid "Container Height"
|
| 1783 |
msgstr ""
|
| 1784 |
|
| 1785 |
-
#: framework/premium/extensions/shortcuts/customizer.php:
|
| 1786 |
msgid "Container Max Width"
|
| 1787 |
msgstr ""
|
| 1788 |
|
| 1789 |
-
#: framework/premium/extensions/shortcuts/customizer.php:
|
| 1790 |
msgid "Scroll Interaction"
|
| 1791 |
msgstr ""
|
| 1792 |
|
| 1793 |
-
#: framework/premium/extensions/shortcuts/customizer.php:
|
| 1794 |
-
#: framework/extensions/widgets/widgets/ct-about-me/options.php:208,
|
| 1795 |
-
#: framework/extensions/widgets/widgets/ct-contact-info/options.php:279,
|
| 1796 |
-
#: framework/extensions/widgets/widgets/ct-socials/options.php:86,
|
| 1797 |
-
#: framework/features/header/items/account/options.php:124,
|
| 1798 |
-
#: framework/features/header/items/account/options.php:349,
|
| 1799 |
-
#: framework/premium/features/premium-header/items/contacts/options.php:277
|
| 1800 |
-
msgid "None"
|
| 1801 |
-
msgstr ""
|
| 1802 |
-
|
| 1803 |
-
#: framework/premium/extensions/shortcuts/customizer.php:590
|
| 1804 |
msgid "Hide"
|
| 1805 |
msgstr ""
|
| 1806 |
|
| 1807 |
-
#: framework/premium/extensions/shortcuts/customizer.php:
|
| 1808 |
msgid "Shortcuts Bar Display Conditions"
|
| 1809 |
msgstr ""
|
| 1810 |
|
| 1811 |
-
#: framework/premium/extensions/shortcuts/customizer.php:
|
| 1812 |
msgid "Add one or more conditions to display the shortcuts bar."
|
| 1813 |
msgstr ""
|
| 1814 |
|
| 1815 |
-
#: framework/premium/extensions/shortcuts/customizer.php:
|
| 1816 |
-
#: framework/premium/
|
|
|
|
| 1817 |
#: framework/premium/features/premium-header/items/language-switcher/options.php:192,
|
| 1818 |
#: framework/premium/features/premium-header/items/language-switcher/options.php:376
|
| 1819 |
msgid "Font"
|
| 1820 |
msgstr ""
|
| 1821 |
|
| 1822 |
-
#: framework/premium/extensions/shortcuts/customizer.php:
|
| 1823 |
-
#: framework/premium/features/premium-header/items/contacts/options.php:
|
| 1824 |
-
#: framework/premium/features/premium-header/items/contacts/options.php:
|
| 1825 |
-
#: framework/premium/features/premium-header/items/contacts/options.php:
|
| 1826 |
-
#: framework/premium/features/premium-header/items/contacts/options.php:
|
| 1827 |
msgid "Icons Color"
|
| 1828 |
msgstr ""
|
| 1829 |
|
| 1830 |
-
#: framework/premium/extensions/shortcuts/customizer.php:
|
| 1831 |
msgid "Items Divider Height"
|
| 1832 |
msgstr ""
|
| 1833 |
|
| 1834 |
-
#: framework/premium/extensions/shortcuts/customizer.php:
|
| 1835 |
#: framework/premium/extensions/woocommerce-extra/floating-cart.php:123,
|
|
|
|
| 1836 |
#: framework/premium/features/premium-header/items/language-switcher/options.php:446
|
| 1837 |
msgid "Shadow"
|
| 1838 |
msgstr ""
|
| 1839 |
|
| 1840 |
-
#: framework/premium/extensions/shortcuts/customizer.php:
|
| 1841 |
msgid "Container Border Radius"
|
| 1842 |
msgstr ""
|
| 1843 |
|
| 1844 |
-
#: framework/premium/extensions/sidebars/config.php:4
|
| 1845 |
-
msgid "Multiple Sidebars"
|
| 1846 |
-
msgstr ""
|
| 1847 |
-
|
| 1848 |
#: framework/premium/extensions/sidebars/config.php:5
|
| 1849 |
msgid ""
|
| 1850 |
-
"Create unlimited
|
| 1851 |
-
"page or post."
|
| 1852 |
msgstr ""
|
| 1853 |
|
| 1854 |
#: framework/premium/extensions/sidebars/config.php:9
|
|
@@ -1856,6 +2155,7 @@ msgid "Create New Sidebar"
|
|
| 1856 |
msgstr ""
|
| 1857 |
|
| 1858 |
#: framework/premium/extensions/sidebars/form.php:3
|
|
|
|
| 1859 |
msgid "Create Sidebar/Widget Area"
|
| 1860 |
msgstr ""
|
| 1861 |
|
|
@@ -1866,6 +2166,7 @@ msgid ""
|
|
| 1866 |
msgstr ""
|
| 1867 |
|
| 1868 |
#: framework/premium/extensions/sidebars/form.php:16
|
|
|
|
| 1869 |
msgid "Create Sidebar"
|
| 1870 |
msgstr ""
|
| 1871 |
|
|
@@ -1874,67 +2175,89 @@ msgid "Available Sidebars/Widget Areas"
|
|
| 1874 |
msgstr ""
|
| 1875 |
|
| 1876 |
#: framework/premium/extensions/white-label/config.php:4
|
| 1877 |
-
msgid "
|
| 1878 |
-
|
| 1879 |
-
|
| 1880 |
-
|
| 1881 |
-
msgid "WooCommerce Extra"
|
| 1882 |
msgstr ""
|
| 1883 |
|
| 1884 |
#: framework/premium/extensions/woocommerce-extra/config.php:5
|
| 1885 |
-
msgid "
|
|
|
|
|
|
|
|
|
|
| 1886 |
msgstr ""
|
| 1887 |
|
| 1888 |
#: framework/premium/extensions/woocommerce-extra/customizer.php:5
|
| 1889 |
-
msgid "Quick View"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1890 |
msgstr ""
|
| 1891 |
|
| 1892 |
-
#: framework/premium/extensions/woocommerce-extra/extension.php:
|
| 1893 |
#: framework/premium/extensions/woocommerce-extra/offcanvas-filter.php:196,
|
|
|
|
|
|
|
| 1894 |
#: framework/premium/extensions/woocommerce-extra/header-items/wish-list/options.php:33
|
| 1895 |
msgid "Type 3"
|
| 1896 |
msgstr ""
|
| 1897 |
|
| 1898 |
-
#: framework/premium/extensions/woocommerce-extra/extension.php:
|
| 1899 |
-
#: framework/premium/extensions/woocommerce-extra/offcanvas-filter.php:201
|
|
|
|
|
|
|
| 1900 |
msgid "Type 4"
|
| 1901 |
msgstr ""
|
| 1902 |
|
| 1903 |
-
#: framework/premium/extensions/woocommerce-extra/extension.php:
|
| 1904 |
-
#: framework/premium/extensions/woocommerce-extra/extension.php:
|
| 1905 |
msgid "Number of Columns"
|
| 1906 |
msgstr ""
|
| 1907 |
|
| 1908 |
-
#: framework/premium/extensions/woocommerce-extra/extension.php:
|
| 1909 |
msgid "Available Filters"
|
| 1910 |
msgstr ""
|
| 1911 |
|
| 1912 |
-
#: framework/premium/extensions/woocommerce-extra/extension.php:
|
| 1913 |
msgid "Quick view title before"
|
| 1914 |
msgstr ""
|
| 1915 |
|
| 1916 |
-
#: framework/premium/extensions/woocommerce-extra/extension.php:
|
| 1917 |
msgid "Quick view title after"
|
| 1918 |
msgstr ""
|
| 1919 |
|
| 1920 |
-
#: framework/premium/extensions/woocommerce-extra/extension.php:
|
| 1921 |
msgid "Quick view price before"
|
| 1922 |
msgstr ""
|
| 1923 |
|
| 1924 |
-
#: framework/premium/extensions/woocommerce-extra/extension.php:
|
| 1925 |
msgid "Quick view price after"
|
| 1926 |
msgstr ""
|
| 1927 |
|
| 1928 |
-
#: framework/premium/extensions/woocommerce-extra/extension.php:
|
| 1929 |
msgid "Quick view summary before"
|
| 1930 |
msgstr ""
|
| 1931 |
|
| 1932 |
-
#: framework/premium/extensions/woocommerce-extra/extension.php:
|
| 1933 |
msgid "Quick view summary after"
|
| 1934 |
msgstr ""
|
| 1935 |
|
| 1936 |
#: framework/premium/extensions/woocommerce-extra/floating-cart.php:4,
|
| 1937 |
-
#: framework/premium/extensions/woocommerce-extra/readme.php:
|
| 1938 |
msgid "Floating Cart"
|
| 1939 |
msgstr ""
|
| 1940 |
|
|
@@ -1943,7 +2266,8 @@ msgid "Position"
|
|
| 1943 |
msgstr ""
|
| 1944 |
|
| 1945 |
#: framework/premium/extensions/woocommerce-extra/floating-cart.php:24,
|
| 1946 |
-
#: framework/premium/features/content-blocks/hooks-manager.php:
|
|
|
|
| 1947 |
msgid "Top"
|
| 1948 |
msgstr ""
|
| 1949 |
|
|
@@ -1955,11 +2279,11 @@ msgstr ""
|
|
| 1955 |
msgid "Floating Cart Visibility"
|
| 1956 |
msgstr ""
|
| 1957 |
|
| 1958 |
-
#: framework/premium/extensions/woocommerce-extra/helpers.php:
|
| 1959 |
msgid "Go to product page"
|
| 1960 |
msgstr ""
|
| 1961 |
|
| 1962 |
-
#: framework/premium/extensions/woocommerce-extra/helpers.php:
|
| 1963 |
msgid "Filter"
|
| 1964 |
msgstr ""
|
| 1965 |
|
|
@@ -1996,16 +2320,16 @@ msgid "Widgets Font Color"
|
|
| 1996 |
msgstr ""
|
| 1997 |
|
| 1998 |
#: framework/premium/extensions/woocommerce-extra/offcanvas-filter.php:138,
|
| 1999 |
-
#: framework/premium/features/premium-header/items/contacts/options.php:
|
| 2000 |
-
#: framework/premium/features/premium-header/items/contacts/options.php:
|
| 2001 |
-
#: framework/premium/features/premium-header/items/contacts/options.php:
|
| 2002 |
msgid "Text Initial"
|
| 2003 |
msgstr ""
|
| 2004 |
|
| 2005 |
#: framework/premium/extensions/woocommerce-extra/offcanvas-filter.php:149,
|
| 2006 |
-
#: framework/premium/features/premium-header/items/contacts/options.php:
|
| 2007 |
-
#: framework/premium/features/premium-header/items/contacts/options.php:
|
| 2008 |
-
#: framework/premium/features/premium-header/items/contacts/options.php:
|
| 2009 |
msgid "Link Hover"
|
| 2010 |
msgstr ""
|
| 2011 |
|
|
@@ -2046,12 +2370,12 @@ msgid "Panel Background"
|
|
| 2046 |
msgstr ""
|
| 2047 |
|
| 2048 |
#: framework/premium/extensions/woocommerce-extra/offcanvas-filter.php:334,
|
| 2049 |
-
#: framework/features/header/items/account/options.php:
|
| 2050 |
msgid "Close Icon Color"
|
| 2051 |
msgstr ""
|
| 2052 |
|
| 2053 |
#: framework/premium/extensions/woocommerce-extra/offcanvas-filter.php:364,
|
| 2054 |
-
#: framework/features/header/items/account/options.php:
|
| 2055 |
msgid "Close Icon Background"
|
| 2056 |
msgstr ""
|
| 2057 |
|
|
@@ -2061,23 +2385,46 @@ msgid ""
|
|
| 2061 |
"have these features:"
|
| 2062 |
msgstr ""
|
| 2063 |
|
| 2064 |
-
#: framework/premium/extensions/woocommerce-extra/readme.php:
|
| 2065 |
msgid "Product Quick View"
|
| 2066 |
msgstr ""
|
| 2067 |
|
| 2068 |
-
#: framework/premium/extensions/woocommerce-extra/readme.php:
|
| 2069 |
-
#: framework/premium/extensions/woocommerce-extra/readme.php:
|
| 2070 |
-
|
|
|
|
|
|
|
|
|
|
| 2071 |
msgstr ""
|
| 2072 |
|
| 2073 |
-
#: framework/premium/extensions/woocommerce-extra/readme.php:
|
| 2074 |
msgid "Customizer ➝ WooCommerce ➝ Product Archives ➝ Card Options ➝ Quick View"
|
| 2075 |
msgstr ""
|
| 2076 |
|
| 2077 |
-
#: framework/premium/extensions/woocommerce-extra/readme.php:
|
| 2078 |
msgid "Customizer ➝ WooCommerce ➝ Single Product ➝ Floating Cart"
|
| 2079 |
msgstr ""
|
| 2080 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 2081 |
#: framework/premium/features/content-blocks/hooks-manager.php:11
|
| 2082 |
msgid "WP head"
|
| 2083 |
msgstr ""
|
|
@@ -2133,35 +2480,38 @@ msgid "Mobile bottom"
|
|
| 2133 |
msgstr ""
|
| 2134 |
|
| 2135 |
#: framework/premium/features/content-blocks/hooks-manager.php:93
|
| 2136 |
-
msgid "
|
| 2137 |
msgstr ""
|
| 2138 |
|
| 2139 |
#: framework/premium/features/content-blocks/hooks-manager.php:94,
|
| 2140 |
#: framework/premium/features/content-blocks/hooks-manager.php:101,
|
| 2141 |
#: framework/premium/features/content-blocks/hooks-manager.php:108,
|
| 2142 |
-
#: framework/premium/features/content-blocks/hooks-manager.php:115
|
| 2143 |
-
|
| 2144 |
-
#: framework/premium/features/content-blocks/hooks-manager.php:129,
|
| 2145 |
-
#: framework/premium/features/content-blocks/hooks-manager.php:137
|
| 2146 |
-
msgid "Sidebar"
|
| 2147 |
msgstr ""
|
| 2148 |
|
| 2149 |
#: framework/premium/features/content-blocks/hooks-manager.php:100
|
| 2150 |
-
msgid "
|
| 2151 |
msgstr ""
|
| 2152 |
|
| 2153 |
#: framework/premium/features/content-blocks/hooks-manager.php:107
|
| 2154 |
-
msgid "
|
| 2155 |
msgstr ""
|
| 2156 |
|
| 2157 |
#: framework/premium/features/content-blocks/hooks-manager.php:114
|
| 2158 |
-
msgid "
|
| 2159 |
msgstr ""
|
| 2160 |
|
| 2161 |
#: framework/premium/features/content-blocks/hooks-manager.php:121
|
| 2162 |
msgid "Dynamic sidebar before"
|
| 2163 |
msgstr ""
|
| 2164 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 2165 |
#: framework/premium/features/content-blocks/hooks-manager.php:128
|
| 2166 |
msgid "Dynamic sidebar"
|
| 2167 |
msgstr ""
|
|
@@ -2200,12 +2550,12 @@ msgid "Before content"
|
|
| 2200 |
msgstr ""
|
| 2201 |
|
| 2202 |
#: framework/premium/features/content-blocks/hooks-manager.php:185,
|
| 2203 |
-
#: framework/premium/features/content-blocks/hooks-manager.php:
|
| 2204 |
msgid "Top content"
|
| 2205 |
msgstr ""
|
| 2206 |
|
| 2207 |
#: framework/premium/features/content-blocks/hooks-manager.php:193,
|
| 2208 |
-
#: framework/premium/features/content-blocks/hooks-manager.php:
|
| 2209 |
msgid "Bottom content"
|
| 2210 |
msgstr ""
|
| 2211 |
|
|
@@ -2238,33 +2588,46 @@ msgstr ""
|
|
| 2238 |
msgid "After comments"
|
| 2239 |
msgstr ""
|
| 2240 |
|
| 2241 |
-
#: framework/premium/features/content-blocks/hooks-manager.php:251
|
| 2242 |
-
|
|
|
|
| 2243 |
msgstr ""
|
| 2244 |
|
| 2245 |
#: framework/premium/features/content-blocks/hooks-manager.php:252,
|
| 2246 |
#: framework/premium/features/content-blocks/hooks-manager.php:259
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 2247 |
msgid "Loop card"
|
| 2248 |
msgstr ""
|
| 2249 |
|
| 2250 |
-
#: framework/premium/features/content-blocks/hooks-manager.php:
|
| 2251 |
msgid "End"
|
| 2252 |
msgstr ""
|
| 2253 |
|
| 2254 |
-
#: framework/premium/features/content-blocks/hooks-manager.php:
|
| 2255 |
msgid "After certain number of blocks"
|
| 2256 |
msgstr ""
|
| 2257 |
|
| 2258 |
-
#: framework/premium/features/content-blocks/hooks-manager.php:
|
| 2259 |
msgid "Before certain number of headings"
|
| 2260 |
msgstr ""
|
| 2261 |
|
| 2262 |
-
#: framework/premium/features/content-blocks/hooks-manager.php:
|
| 2263 |
msgid "Login form start"
|
| 2264 |
msgstr ""
|
| 2265 |
|
| 2266 |
-
#: framework/premium/features/content-blocks/hooks-manager.php:312,
|
| 2267 |
-
#: framework/premium/features/content-blocks/hooks-manager.php:319,
|
| 2268 |
#: framework/premium/features/content-blocks/hooks-manager.php:326,
|
| 2269 |
#: framework/premium/features/content-blocks/hooks-manager.php:333,
|
| 2270 |
#: framework/premium/features/content-blocks/hooks-manager.php:340,
|
|
@@ -2272,420 +2635,380 @@ msgstr ""
|
|
| 2272 |
#: framework/premium/features/content-blocks/hooks-manager.php:354,
|
| 2273 |
#: framework/premium/features/content-blocks/hooks-manager.php:361,
|
| 2274 |
#: framework/premium/features/content-blocks/hooks-manager.php:368,
|
| 2275 |
-
#: framework/premium/features/content-blocks/hooks-manager.php:375
|
|
|
|
|
|
|
| 2276 |
msgid "Auth forms"
|
| 2277 |
msgstr ""
|
| 2278 |
|
| 2279 |
-
#: framework/premium/features/content-blocks/hooks-manager.php:
|
| 2280 |
msgid "Login form end"
|
| 2281 |
msgstr ""
|
| 2282 |
|
| 2283 |
-
#: framework/premium/features/content-blocks/hooks-manager.php:
|
| 2284 |
msgid "Login form modal start"
|
| 2285 |
msgstr ""
|
| 2286 |
|
| 2287 |
-
#: framework/premium/features/content-blocks/hooks-manager.php:
|
| 2288 |
msgid "Login form modal end"
|
| 2289 |
msgstr ""
|
| 2290 |
|
| 2291 |
-
#: framework/premium/features/content-blocks/hooks-manager.php:
|
| 2292 |
msgid "Register form start"
|
| 2293 |
msgstr ""
|
| 2294 |
|
| 2295 |
-
#: framework/premium/features/content-blocks/hooks-manager.php:
|
| 2296 |
msgid "Register form end"
|
| 2297 |
msgstr ""
|
| 2298 |
|
| 2299 |
-
#: framework/premium/features/content-blocks/hooks-manager.php:
|
| 2300 |
msgid "Register form modal start"
|
| 2301 |
msgstr ""
|
| 2302 |
|
| 2303 |
-
#: framework/premium/features/content-blocks/hooks-manager.php:
|
| 2304 |
msgid "Register form modal end"
|
| 2305 |
msgstr ""
|
| 2306 |
|
| 2307 |
-
#: framework/premium/features/content-blocks/hooks-manager.php:
|
| 2308 |
msgid "Lost password form modal start"
|
| 2309 |
msgstr ""
|
| 2310 |
|
| 2311 |
-
#: framework/premium/features/content-blocks/hooks-manager.php:
|
| 2312 |
msgid "Lost password form modal end"
|
| 2313 |
msgstr ""
|
| 2314 |
|
| 2315 |
-
#: framework/premium/features/content-blocks/hooks-manager.php:
|
| 2316 |
msgid "Before main content"
|
| 2317 |
msgstr ""
|
| 2318 |
|
| 2319 |
-
#: framework/premium/features/content-blocks/hooks-manager.php:
|
| 2320 |
msgid "After main content"
|
| 2321 |
msgstr ""
|
| 2322 |
|
| 2323 |
-
#: framework/premium/features/content-blocks/hooks-manager.php:
|
| 2324 |
msgid "WooCommerce Global"
|
| 2325 |
msgstr ""
|
| 2326 |
|
| 2327 |
-
#: framework/premium/features/content-blocks/hooks-manager.php:
|
| 2328 |
msgid "Archive description"
|
| 2329 |
msgstr ""
|
| 2330 |
|
| 2331 |
-
#: framework/premium/features/content-blocks/hooks-manager.php:
|
| 2332 |
msgid "Before shop loop"
|
| 2333 |
msgstr ""
|
| 2334 |
|
| 2335 |
-
#: framework/premium/features/content-blocks/hooks-manager.php:
|
| 2336 |
msgid "Before shop loop item title"
|
| 2337 |
msgstr ""
|
| 2338 |
|
| 2339 |
-
#: framework/premium/features/content-blocks/hooks-manager.php:
|
| 2340 |
msgid "After shop loop item title"
|
| 2341 |
msgstr ""
|
| 2342 |
|
| 2343 |
-
#: framework/premium/features/content-blocks/hooks-manager.php:
|
| 2344 |
msgid "Before shop loop item price"
|
| 2345 |
msgstr ""
|
| 2346 |
|
| 2347 |
-
#: framework/premium/features/content-blocks/hooks-manager.php:
|
| 2348 |
msgid "After shop loop item price"
|
| 2349 |
msgstr ""
|
| 2350 |
|
| 2351 |
-
#: framework/premium/features/content-blocks/hooks-manager.php:
|
| 2352 |
msgid "After shop loop"
|
| 2353 |
msgstr ""
|
| 2354 |
|
| 2355 |
-
#: framework/premium/features/content-blocks/hooks-manager.php:
|
| 2356 |
msgid "WooCommerce Archive"
|
| 2357 |
msgstr ""
|
| 2358 |
|
| 2359 |
-
#: framework/premium/features/content-blocks/hooks-manager.php:
|
| 2360 |
msgid "Before single product"
|
| 2361 |
msgstr ""
|
| 2362 |
|
| 2363 |
-
#: framework/premium/features/content-blocks/hooks-manager.php:
|
| 2364 |
msgid "Product meta start"
|
| 2365 |
msgstr ""
|
| 2366 |
|
| 2367 |
-
#: framework/premium/features/content-blocks/hooks-manager.php:
|
| 2368 |
msgid "Product meta end"
|
| 2369 |
msgstr ""
|
| 2370 |
|
| 2371 |
-
#: framework/premium/features/content-blocks/hooks-manager.php:
|
| 2372 |
msgid "Share"
|
| 2373 |
msgstr ""
|
| 2374 |
|
| 2375 |
-
#: framework/premium/features/content-blocks/hooks-manager.php:
|
| 2376 |
msgid "After single product"
|
| 2377 |
msgstr ""
|
| 2378 |
|
| 2379 |
-
#: framework/premium/features/content-blocks/hooks-manager.php:
|
| 2380 |
msgid "Before single product excerpt"
|
| 2381 |
msgstr ""
|
| 2382 |
|
| 2383 |
-
#: framework/premium/features/content-blocks/hooks-manager.php:
|
| 2384 |
msgid "After single product excerpt"
|
| 2385 |
msgstr ""
|
| 2386 |
|
| 2387 |
-
#: framework/premium/features/content-blocks/hooks-manager.php:
|
| 2388 |
-
msgid "Before single product price"
|
| 2389 |
-
msgstr ""
|
| 2390 |
-
|
| 2391 |
-
#: framework/premium/features/content-blocks/hooks-manager.php:496
|
| 2392 |
-
msgid "After single product price"
|
| 2393 |
-
msgstr ""
|
| 2394 |
-
|
| 2395 |
-
#: framework/premium/features/content-blocks/hooks-manager.php:501
|
| 2396 |
msgid "Before single product tabs"
|
| 2397 |
msgstr ""
|
| 2398 |
|
| 2399 |
-
#: framework/premium/features/content-blocks/hooks-manager.php:
|
| 2400 |
msgid "After single product tabs"
|
| 2401 |
msgstr ""
|
| 2402 |
|
| 2403 |
-
#: framework/premium/features/content-blocks/hooks-manager.php:
|
| 2404 |
msgid "WooCommerce Product"
|
| 2405 |
msgstr ""
|
| 2406 |
|
| 2407 |
-
#: framework/premium/features/content-blocks/hooks-manager.php:
|
| 2408 |
msgid "Cart is empty"
|
| 2409 |
msgstr ""
|
| 2410 |
|
| 2411 |
-
#: framework/premium/features/content-blocks/hooks-manager.php:
|
| 2412 |
msgid "Before cart"
|
| 2413 |
msgstr ""
|
| 2414 |
|
| 2415 |
-
#: framework/premium/features/content-blocks/hooks-manager.php:
|
| 2416 |
msgid "Before cart table"
|
| 2417 |
msgstr ""
|
| 2418 |
|
| 2419 |
-
#: framework/premium/features/content-blocks/hooks-manager.php:
|
| 2420 |
msgid "Before cart contents"
|
| 2421 |
msgstr ""
|
| 2422 |
|
| 2423 |
-
#: framework/premium/features/content-blocks/hooks-manager.php:
|
| 2424 |
msgid "Cart contents"
|
| 2425 |
msgstr ""
|
| 2426 |
|
| 2427 |
-
#: framework/premium/features/content-blocks/hooks-manager.php:
|
| 2428 |
msgid "After cart contents"
|
| 2429 |
msgstr ""
|
| 2430 |
|
| 2431 |
-
#: framework/premium/features/content-blocks/hooks-manager.php:
|
| 2432 |
msgid "Cart coupon"
|
| 2433 |
msgstr ""
|
| 2434 |
|
| 2435 |
-
#: framework/premium/features/content-blocks/hooks-manager.php:
|
| 2436 |
msgid "Cart actions"
|
| 2437 |
msgstr ""
|
| 2438 |
|
| 2439 |
-
#: framework/premium/features/content-blocks/hooks-manager.php:
|
| 2440 |
msgid "After cart table"
|
| 2441 |
msgstr ""
|
| 2442 |
|
| 2443 |
-
#: framework/premium/features/content-blocks/hooks-manager.php:
|
| 2444 |
msgid "Cart collaterals"
|
| 2445 |
msgstr ""
|
| 2446 |
|
| 2447 |
-
#: framework/premium/features/content-blocks/hooks-manager.php:
|
| 2448 |
msgid "Before cart totals"
|
| 2449 |
msgstr ""
|
| 2450 |
|
| 2451 |
-
#: framework/premium/features/content-blocks/hooks-manager.php:
|
| 2452 |
msgid "Cart totals before order total"
|
| 2453 |
msgstr ""
|
| 2454 |
|
| 2455 |
-
#: framework/premium/features/content-blocks/hooks-manager.php:
|
| 2456 |
msgid "Cart totals after order total"
|
| 2457 |
msgstr ""
|
| 2458 |
|
| 2459 |
-
#: framework/premium/features/content-blocks/hooks-manager.php:
|
| 2460 |
msgid "Proceed to checkout"
|
| 2461 |
msgstr ""
|
| 2462 |
|
| 2463 |
-
#: framework/premium/features/content-blocks/hooks-manager.php:
|
| 2464 |
msgid "After cart totals"
|
| 2465 |
msgstr ""
|
| 2466 |
|
| 2467 |
-
#: framework/premium/features/content-blocks/hooks-manager.php:
|
| 2468 |
msgid "After cart"
|
| 2469 |
msgstr ""
|
| 2470 |
|
| 2471 |
-
#: framework/premium/features/content-blocks/hooks-manager.php:
|
| 2472 |
msgid "Before Mini Cart"
|
| 2473 |
msgstr ""
|
| 2474 |
|
| 2475 |
-
#: framework/premium/features/content-blocks/hooks-manager.php:
|
| 2476 |
msgid "Before Mini Cart Contents"
|
| 2477 |
msgstr ""
|
| 2478 |
|
| 2479 |
-
#: framework/premium/features/content-blocks/hooks-manager.php:
|
| 2480 |
msgid "Mini Cart Contents"
|
| 2481 |
msgstr ""
|
| 2482 |
|
| 2483 |
-
#: framework/premium/features/content-blocks/hooks-manager.php:
|
| 2484 |
msgid "Widget Shopping Cart Before Buttons"
|
| 2485 |
msgstr ""
|
| 2486 |
|
| 2487 |
-
#: framework/premium/features/content-blocks/hooks-manager.php:
|
| 2488 |
msgid "Widget Shopping Cart After Buttons"
|
| 2489 |
msgstr ""
|
| 2490 |
|
| 2491 |
-
#: framework/premium/features/content-blocks/hooks-manager.php:
|
| 2492 |
msgid "After Mini Cart"
|
| 2493 |
msgstr ""
|
| 2494 |
|
| 2495 |
-
#: framework/premium/features/content-blocks/hooks-manager.php:
|
| 2496 |
msgid "WooCommerce Cart"
|
| 2497 |
msgstr ""
|
| 2498 |
|
| 2499 |
-
#: framework/premium/features/content-blocks/hooks-manager.php:
|
| 2500 |
msgid "Before checkout form"
|
| 2501 |
msgstr ""
|
| 2502 |
|
| 2503 |
-
#: framework/premium/features/content-blocks/hooks-manager.php:
|
| 2504 |
msgid "Before customer details"
|
| 2505 |
msgstr ""
|
| 2506 |
|
| 2507 |
-
#: framework/premium/features/content-blocks/hooks-manager.php:
|
| 2508 |
msgid "After customer details"
|
| 2509 |
msgstr ""
|
| 2510 |
|
| 2511 |
-
#: framework/premium/features/content-blocks/hooks-manager.php:
|
| 2512 |
msgid "Checkout billing"
|
| 2513 |
msgstr ""
|
| 2514 |
|
| 2515 |
-
#: framework/premium/features/content-blocks/hooks-manager.php:
|
| 2516 |
msgid "Before checkout billing form"
|
| 2517 |
msgstr ""
|
| 2518 |
|
| 2519 |
-
#: framework/premium/features/content-blocks/hooks-manager.php:
|
| 2520 |
msgid "After checkout billing form"
|
| 2521 |
msgstr ""
|
| 2522 |
|
| 2523 |
-
#: framework/premium/features/content-blocks/hooks-manager.php:
|
| 2524 |
msgid "Before order notes"
|
| 2525 |
msgstr ""
|
| 2526 |
|
| 2527 |
-
#: framework/premium/features/content-blocks/hooks-manager.php:
|
| 2528 |
msgid "After order notes"
|
| 2529 |
msgstr ""
|
| 2530 |
|
| 2531 |
-
#: framework/premium/features/content-blocks/hooks-manager.php:
|
| 2532 |
msgid "Checkout shipping"
|
| 2533 |
msgstr ""
|
| 2534 |
|
| 2535 |
-
#: framework/premium/features/content-blocks/hooks-manager.php:
|
| 2536 |
msgid "Checkout before order review"
|
| 2537 |
msgstr ""
|
| 2538 |
|
| 2539 |
-
#: framework/premium/features/content-blocks/hooks-manager.php:
|
| 2540 |
msgid "Checkout order review"
|
| 2541 |
msgstr ""
|
| 2542 |
|
| 2543 |
-
#: framework/premium/features/content-blocks/hooks-manager.php:
|
| 2544 |
msgid "Review order before cart contents"
|
| 2545 |
msgstr ""
|
| 2546 |
|
| 2547 |
-
#: framework/premium/features/content-blocks/hooks-manager.php:
|
| 2548 |
msgid "Review order after cart contents"
|
| 2549 |
msgstr ""
|
| 2550 |
|
| 2551 |
-
#: framework/premium/features/content-blocks/hooks-manager.php:
|
| 2552 |
msgid "Review order before order total"
|
| 2553 |
msgstr ""
|
| 2554 |
|
| 2555 |
-
#: framework/premium/features/content-blocks/hooks-manager.php:
|
| 2556 |
msgid "Review order after order total"
|
| 2557 |
msgstr ""
|
| 2558 |
|
| 2559 |
-
#: framework/premium/features/content-blocks/hooks-manager.php:
|
| 2560 |
msgid "Review order before payment"
|
| 2561 |
msgstr ""
|
| 2562 |
|
| 2563 |
-
#: framework/premium/features/content-blocks/hooks-manager.php:
|
| 2564 |
msgid "Review order before submit"
|
| 2565 |
msgstr ""
|
| 2566 |
|
| 2567 |
-
#: framework/premium/features/content-blocks/hooks-manager.php:
|
| 2568 |
msgid "Review order after submit"
|
| 2569 |
msgstr ""
|
| 2570 |
|
| 2571 |
-
#: framework/premium/features/content-blocks/hooks-manager.php:
|
| 2572 |
msgid "Review order after payment"
|
| 2573 |
msgstr ""
|
| 2574 |
|
| 2575 |
-
#: framework/premium/features/content-blocks/hooks-manager.php:
|
| 2576 |
msgid "Checkout after order review"
|
| 2577 |
msgstr ""
|
| 2578 |
|
| 2579 |
-
#: framework/premium/features/content-blocks/hooks-manager.php:
|
| 2580 |
msgid "After checkout form"
|
| 2581 |
msgstr ""
|
| 2582 |
|
| 2583 |
-
#: framework/premium/features/content-blocks/hooks-manager.php:
|
| 2584 |
msgid "WooCommerce Checkout"
|
| 2585 |
msgstr ""
|
| 2586 |
|
| 2587 |
-
#: framework/premium/features/content-blocks/hooks-manager.php:
|
| 2588 |
msgid "Before my account"
|
| 2589 |
msgstr ""
|
| 2590 |
|
| 2591 |
-
#: framework/premium/features/content-blocks/hooks-manager.php:
|
| 2592 |
msgid "Before account navigation"
|
| 2593 |
msgstr ""
|
| 2594 |
|
| 2595 |
-
#: framework/premium/features/content-blocks/hooks-manager.php:
|
| 2596 |
msgid "Account navigation"
|
| 2597 |
msgstr ""
|
| 2598 |
|
| 2599 |
-
#: framework/premium/features/content-blocks/hooks-manager.php:
|
| 2600 |
msgid "After account navigation"
|
| 2601 |
msgstr ""
|
| 2602 |
|
| 2603 |
-
#: framework/premium/features/content-blocks/hooks-manager.php:
|
| 2604 |
msgid "Account content"
|
| 2605 |
msgstr ""
|
| 2606 |
|
| 2607 |
-
#: framework/premium/features/content-blocks/hooks-manager.php:
|
| 2608 |
msgid "Account dashboard"
|
| 2609 |
msgstr ""
|
| 2610 |
|
| 2611 |
-
#: framework/premium/features/content-blocks/hooks-manager.php:
|
| 2612 |
msgid "After my account"
|
| 2613 |
msgstr ""
|
| 2614 |
|
| 2615 |
-
#: framework/premium/features/content-blocks/hooks-manager.php:
|
| 2616 |
#: framework/features/header/items/account/options.php:17,
|
| 2617 |
#: framework/features/header/items/account/options.php:18
|
| 2618 |
msgid "WooCommerce Account"
|
| 2619 |
msgstr ""
|
| 2620 |
|
| 2621 |
-
#: framework/premium/features/content-blocks/hooks-manager.php:
|
| 2622 |
msgid "WP footer"
|
| 2623 |
msgstr ""
|
| 2624 |
|
| 2625 |
-
#: framework/premium/features/content-blocks/hooks-manager.php:
|
| 2626 |
-
#: framework/premium/features/content-blocks/hooks-manager.php:
|
| 2627 |
-
#: framework/premium/features/content-blocks/hooks-manager.php:
|
| 2628 |
msgid "Footer"
|
| 2629 |
msgstr ""
|
| 2630 |
|
| 2631 |
-
#: framework/premium/features/content-blocks/hooks-manager.php:
|
| 2632 |
msgid "Footer before"
|
| 2633 |
msgstr ""
|
| 2634 |
|
| 2635 |
-
#: framework/premium/features/content-blocks/hooks-manager.php:
|
| 2636 |
msgid "Footer after"
|
| 2637 |
msgstr ""
|
| 2638 |
|
| 2639 |
-
#: framework/premium/features/content-blocks/hooks-manager.php:
|
| 2640 |
msgid "Custom Hook (%s)"
|
| 2641 |
msgstr ""
|
| 2642 |
|
| 2643 |
-
#: framework/premium/features/content-blocks/hooks-manager.php:
|
|
|
|
| 2644 |
#: framework/premium/static/js/options/MultipleLocationsSelect.js:87
|
| 2645 |
msgid "After Block Number"
|
| 2646 |
msgstr ""
|
| 2647 |
|
| 2648 |
-
#: framework/premium/features/content-blocks/hooks-manager.php:
|
|
|
|
| 2649 |
#: framework/premium/static/js/options/MultipleLocationsSelect.js:106
|
| 2650 |
msgid "Before Heading Number"
|
| 2651 |
msgstr ""
|
| 2652 |
|
| 2653 |
-
#: framework/premium/features/content-blocks/meta-options.php:25
|
| 2654 |
-
msgid "Other"
|
| 2655 |
-
msgstr ""
|
| 2656 |
-
|
| 2657 |
-
#: framework/premium/features/content-blocks/meta-options.php:41
|
| 2658 |
-
msgid "Container Structure"
|
| 2659 |
-
msgstr ""
|
| 2660 |
-
|
| 2661 |
-
#: framework/premium/features/content-blocks/meta-options.php:69
|
| 2662 |
-
msgid "Narrow Width"
|
| 2663 |
-
msgstr ""
|
| 2664 |
-
|
| 2665 |
-
#: framework/premium/features/content-blocks/meta-options.php:74
|
| 2666 |
-
msgid "Normal Width"
|
| 2667 |
-
msgstr ""
|
| 2668 |
-
|
| 2669 |
-
#: framework/premium/features/content-blocks/meta-options.php:80
|
| 2670 |
-
msgid "Content Area Style"
|
| 2671 |
-
msgstr ""
|
| 2672 |
-
|
| 2673 |
-
#: framework/premium/features/content-blocks/meta-options.php:94
|
| 2674 |
-
msgid "Content Area Vertical Spacing"
|
| 2675 |
-
msgstr ""
|
| 2676 |
-
|
| 2677 |
-
#: framework/premium/features/content-blocks/meta-options.php:105
|
| 2678 |
-
msgid "Top & Bottom"
|
| 2679 |
-
msgstr ""
|
| 2680 |
-
|
| 2681 |
-
#: framework/premium/features/content-blocks/meta-options.php:108
|
| 2682 |
-
msgid "Only Top"
|
| 2683 |
-
msgstr ""
|
| 2684 |
-
|
| 2685 |
-
#: framework/premium/features/content-blocks/meta-options.php:111
|
| 2686 |
-
msgid "Only Bottom"
|
| 2687 |
-
msgstr ""
|
| 2688 |
-
|
| 2689 |
#: framework/extensions/widgets/widgets/ct-about-me/options.php:18,
|
| 2690 |
#: framework/extensions/widgets/widgets/ct-about-me/view.php:12,
|
| 2691 |
#: framework/extensions/widgets/widgets/ct-about-me/widget.php:14
|
|
@@ -2696,13 +3019,6 @@ msgstr ""
|
|
| 2696 |
msgid "Simple"
|
| 2697 |
msgstr ""
|
| 2698 |
|
| 2699 |
-
#: framework/extensions/widgets/widgets/ct-about-me/options.php:37,
|
| 2700 |
-
#: framework/extensions/widgets/widgets/ct-advertisement/options.php:23,
|
| 2701 |
-
#: framework/extensions/widgets/widgets/ct-posts/options.php:149,
|
| 2702 |
-
#: framework/extensions/widgets/widgets/ct-posts/options.php:168
|
| 2703 |
-
msgid "Source"
|
| 2704 |
-
msgstr ""
|
| 2705 |
-
|
| 2706 |
#: framework/extensions/widgets/widgets/ct-about-me/options.php:45
|
| 2707 |
msgid "From WP"
|
| 2708 |
msgstr ""
|
|
@@ -2866,7 +3182,7 @@ msgstr ""
|
|
| 2866 |
#: framework/extensions/widgets/widgets/ct-contact-info/view.php:24,
|
| 2867 |
#: framework/premium/features/premium-header/items/contacts/options.php:20,
|
| 2868 |
#: framework/premium/features/premium-header/items/contacts/options.php:49,
|
| 2869 |
-
#: framework/premium/features/premium-header/items/contacts/view.php:
|
| 2870 |
msgid "Address:"
|
| 2871 |
msgstr ""
|
| 2872 |
|
|
@@ -2875,7 +3191,7 @@ msgstr ""
|
|
| 2875 |
#: framework/extensions/widgets/widgets/ct-contact-info/view.php:31,
|
| 2876 |
#: framework/premium/features/premium-header/items/contacts/options.php:27,
|
| 2877 |
#: framework/premium/features/premium-header/items/contacts/options.php:75,
|
| 2878 |
-
#: framework/premium/features/premium-header/items/contacts/view.php:
|
| 2879 |
msgid "Phone:"
|
| 2880 |
msgstr ""
|
| 2881 |
|
|
@@ -2884,7 +3200,7 @@ msgstr ""
|
|
| 2884 |
#: framework/extensions/widgets/widgets/ct-contact-info/view.php:39,
|
| 2885 |
#: framework/premium/features/premium-header/items/contacts/options.php:35,
|
| 2886 |
#: framework/premium/features/premium-header/items/contacts/options.php:102,
|
| 2887 |
-
#: framework/premium/features/premium-header/items/contacts/view.php:
|
| 2888 |
msgid "Mobile:"
|
| 2889 |
msgstr ""
|
| 2890 |
|
|
@@ -2973,18 +3289,6 @@ msgstr ""
|
|
| 2973 |
msgid "Facebook like box"
|
| 2974 |
msgstr ""
|
| 2975 |
|
| 2976 |
-
#: framework/extensions/widgets/widgets/ct-posts/options.php:38
|
| 2977 |
-
msgid "All categories"
|
| 2978 |
-
msgstr ""
|
| 2979 |
-
|
| 2980 |
-
#: framework/extensions/widgets/widgets/ct-posts/options.php:43
|
| 2981 |
-
msgid "Taxonomy"
|
| 2982 |
-
msgstr ""
|
| 2983 |
-
|
| 2984 |
-
#: framework/extensions/widgets/widgets/ct-posts/options.php:44
|
| 2985 |
-
msgid "All taxonomies"
|
| 2986 |
-
msgstr ""
|
| 2987 |
-
|
| 2988 |
#: framework/extensions/widgets/widgets/ct-posts/options.php:103
|
| 2989 |
msgid "Widget Design"
|
| 2990 |
msgstr ""
|
|
@@ -3017,72 +3321,63 @@ msgstr ""
|
|
| 3017 |
msgid "Post Type"
|
| 3018 |
msgstr ""
|
| 3019 |
|
| 3020 |
-
#: framework/extensions/widgets/widgets/ct-posts/options.php:154
|
| 3021 |
-
msgid "Taxonomies"
|
| 3022 |
-
msgstr ""
|
| 3023 |
-
|
| 3024 |
-
#: framework/extensions/widgets/widgets/ct-posts/options.php:155,
|
| 3025 |
-
#: framework/extensions/widgets/widgets/ct-posts/options.php:174
|
| 3026 |
-
msgid "Custom Query"
|
| 3027 |
-
msgstr ""
|
| 3028 |
-
|
| 3029 |
#: framework/extensions/widgets/widgets/ct-posts/options.php:193
|
| 3030 |
msgid "Sort by"
|
| 3031 |
msgstr ""
|
| 3032 |
|
| 3033 |
-
#: framework/extensions/widgets/widgets/ct-posts/options.php:
|
| 3034 |
msgid "Recent"
|
| 3035 |
msgstr ""
|
| 3036 |
|
| 3037 |
-
#: framework/extensions/widgets/widgets/ct-posts/options.php:
|
| 3038 |
msgid "Most Commented"
|
| 3039 |
msgstr ""
|
| 3040 |
|
| 3041 |
-
#: framework/extensions/widgets/widgets/ct-posts/options.php:
|
| 3042 |
msgid "Order by"
|
| 3043 |
msgstr ""
|
| 3044 |
|
| 3045 |
-
#: framework/extensions/widgets/widgets/ct-posts/options.php:
|
| 3046 |
msgid "1 Week"
|
| 3047 |
msgstr ""
|
| 3048 |
|
| 3049 |
-
#: framework/extensions/widgets/widgets/ct-posts/options.php:
|
| 3050 |
msgid "1 Month"
|
| 3051 |
msgstr ""
|
| 3052 |
|
| 3053 |
-
#: framework/extensions/widgets/widgets/ct-posts/options.php:
|
| 3054 |
msgid "3 Months"
|
| 3055 |
msgstr ""
|
| 3056 |
|
| 3057 |
-
#: framework/extensions/widgets/widgets/ct-posts/options.php:
|
| 3058 |
msgid "6 Months"
|
| 3059 |
msgstr ""
|
| 3060 |
|
| 3061 |
-
#: framework/extensions/widgets/widgets/ct-posts/options.php:
|
| 3062 |
msgid "1 Year"
|
| 3063 |
msgstr ""
|
| 3064 |
|
| 3065 |
-
#: framework/extensions/widgets/widgets/ct-posts/options.php:
|
| 3066 |
msgid "Posts Count"
|
| 3067 |
msgstr ""
|
| 3068 |
|
| 3069 |
-
#: framework/extensions/widgets/widgets/ct-posts/options.php:
|
| 3070 |
msgid "Pages Count"
|
| 3071 |
msgstr ""
|
| 3072 |
|
| 3073 |
-
#: framework/extensions/widgets/widgets/ct-posts/options.php:
|
| 3074 |
msgid "Show Date"
|
| 3075 |
msgstr ""
|
| 3076 |
|
| 3077 |
-
#: framework/extensions/widgets/widgets/ct-posts/options.php:
|
| 3078 |
msgid "Show Comments"
|
| 3079 |
msgstr ""
|
| 3080 |
|
| 3081 |
-
#: framework/extensions/widgets/widgets/ct-posts/options.php:
|
| 3082 |
msgid "Show Excerpt"
|
| 3083 |
msgstr ""
|
| 3084 |
|
| 3085 |
-
#: framework/extensions/widgets/widgets/ct-posts/options.php:
|
| 3086 |
msgid "Excerpt Lenght"
|
| 3087 |
msgstr ""
|
| 3088 |
|
|
@@ -3190,6 +3485,16 @@ msgstr ""
|
|
| 3190 |
msgid "Account Image"
|
| 3191 |
msgstr ""
|
| 3192 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 3193 |
#: framework/features/header/items/account/options.php:269
|
| 3194 |
msgid "Label Type"
|
| 3195 |
msgstr ""
|
|
@@ -3221,15 +3526,15 @@ msgstr ""
|
|
| 3221 |
#: framework/features/header/items/account/options.php:665,
|
| 3222 |
#: framework/premium/extensions/woocommerce-extra/header-items/wish-list/options.php:151,
|
| 3223 |
#: framework/premium/extensions/woocommerce-extra/header-items/wish-list/options.php:278,
|
| 3224 |
-
#: framework/premium/features/premium-header/items/contacts/options.php:
|
| 3225 |
-
#: framework/premium/features/premium-header/items/contacts/options.php:
|
| 3226 |
-
#: framework/premium/features/premium-header/items/contacts/options.php:
|
| 3227 |
#: framework/premium/features/premium-header/items/dark-mode-switcher/options.php:35,
|
| 3228 |
#: framework/premium/features/premium-header/items/language-switcher/options.php:208,
|
| 3229 |
-
#: framework/premium/features/premium-header/items/search-input/options.php:
|
| 3230 |
-
#: framework/premium/features/premium-header/items/search-input/options.php:
|
| 3231 |
-
#: framework/premium/features/premium-header/items/search-input/options.php:
|
| 3232 |
-
#: framework/premium/features/premium-header/items/search-input/options.php:
|
| 3233 |
msgid "Default State"
|
| 3234 |
msgstr ""
|
| 3235 |
|
|
@@ -3237,15 +3542,15 @@ msgstr ""
|
|
| 3237 |
#: framework/features/header/items/account/options.php:670,
|
| 3238 |
#: framework/premium/extensions/woocommerce-extra/header-items/wish-list/options.php:156,
|
| 3239 |
#: framework/premium/extensions/woocommerce-extra/header-items/wish-list/options.php:283,
|
| 3240 |
-
#: framework/premium/features/premium-header/items/contacts/options.php:
|
| 3241 |
-
#: framework/premium/features/premium-header/items/contacts/options.php:
|
| 3242 |
-
#: framework/premium/features/premium-header/items/contacts/options.php:
|
| 3243 |
#: framework/premium/features/premium-header/items/dark-mode-switcher/options.php:40,
|
| 3244 |
#: framework/premium/features/premium-header/items/language-switcher/options.php:213,
|
| 3245 |
-
#: framework/premium/features/premium-header/items/search-input/options.php:
|
| 3246 |
-
#: framework/premium/features/premium-header/items/search-input/options.php:
|
| 3247 |
-
#: framework/premium/features/premium-header/items/search-input/options.php:
|
| 3248 |
-
#: framework/premium/features/premium-header/items/search-input/options.php:
|
| 3249 |
msgid "Transparent State"
|
| 3250 |
msgstr ""
|
| 3251 |
|
|
@@ -3253,15 +3558,15 @@ msgstr ""
|
|
| 3253 |
#: framework/features/header/items/account/options.php:679,
|
| 3254 |
#: framework/premium/extensions/woocommerce-extra/header-items/wish-list/options.php:165,
|
| 3255 |
#: framework/premium/extensions/woocommerce-extra/header-items/wish-list/options.php:292,
|
| 3256 |
-
#: framework/premium/features/premium-header/items/contacts/options.php:
|
| 3257 |
-
#: framework/premium/features/premium-header/items/contacts/options.php:
|
| 3258 |
-
#: framework/premium/features/premium-header/items/contacts/options.php:
|
| 3259 |
#: framework/premium/features/premium-header/items/dark-mode-switcher/options.php:49,
|
| 3260 |
#: framework/premium/features/premium-header/items/language-switcher/options.php:222,
|
| 3261 |
-
#: framework/premium/features/premium-header/items/search-input/options.php:
|
| 3262 |
-
#: framework/premium/features/premium-header/items/search-input/options.php:
|
| 3263 |
-
#: framework/premium/features/premium-header/items/search-input/options.php:
|
| 3264 |
-
#: framework/premium/features/premium-header/items/search-input/options.php:
|
| 3265 |
msgid "Sticky State"
|
| 3266 |
msgstr ""
|
| 3267 |
|
|
@@ -3269,16 +3574,66 @@ msgstr ""
|
|
| 3269 |
msgid "Item Margin"
|
| 3270 |
msgstr ""
|
| 3271 |
|
| 3272 |
-
#: framework/features/header/items/account/options.php:
|
| 3273 |
-
msgid "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 3274 |
msgstr ""
|
| 3275 |
|
| 3276 |
-
#: framework/features/header/items/account/options.php:
|
| 3277 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 3278 |
msgstr ""
|
| 3279 |
|
| 3280 |
-
#: framework/features/header/items/account/options.php:
|
| 3281 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 3282 |
msgstr ""
|
| 3283 |
|
| 3284 |
#: framework/features/header/items/account/view.php:16,
|
|
@@ -3290,82 +3645,147 @@ msgstr ""
|
|
| 3290 |
msgid "Account header icon"
|
| 3291 |
msgstr ""
|
| 3292 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 3293 |
#: framework/premium/extensions/shortcuts/views/bar.php:31,
|
| 3294 |
-
#: framework/premium/extensions/woocommerce-extra/includes/wish-list.php:
|
| 3295 |
msgid "Wish List"
|
| 3296 |
msgstr ""
|
| 3297 |
|
| 3298 |
-
#: framework/premium/extensions/woocommerce-extra/includes/wish-list-helpers.php:
|
| 3299 |
-
|
|
|
|
| 3300 |
msgstr ""
|
| 3301 |
|
| 3302 |
#: framework/premium/extensions/woocommerce-extra/includes/wish-list-options.php:9
|
| 3303 |
msgid "Select a page"
|
| 3304 |
msgstr ""
|
| 3305 |
|
| 3306 |
-
#: framework/premium/extensions/woocommerce-extra/includes/wish-list-options.php:
|
| 3307 |
msgid "Products Wishlist"
|
| 3308 |
msgstr ""
|
| 3309 |
|
| 3310 |
-
#: framework/premium/extensions/woocommerce-extra/includes/wish-list-options.php:
|
| 3311 |
msgid "Show Wishlist For"
|
| 3312 |
msgstr ""
|
| 3313 |
|
| 3314 |
-
#: framework/premium/extensions/woocommerce-extra/includes/wish-list-options.php:
|
| 3315 |
msgid "Logged Users"
|
| 3316 |
msgstr ""
|
| 3317 |
|
| 3318 |
-
#: framework/premium/extensions/woocommerce-extra/includes/wish-list-options.php:
|
| 3319 |
msgid "All Users"
|
| 3320 |
msgstr ""
|
| 3321 |
|
| 3322 |
-
#: framework/premium/extensions/woocommerce-extra/includes/wish-list-options.php:
|
| 3323 |
msgid "Wish List Page"
|
| 3324 |
msgstr ""
|
| 3325 |
|
| 3326 |
-
#: framework/premium/extensions/woocommerce-extra/includes/wish-list-options.php:
|
| 3327 |
msgid ""
|
| 3328 |
"The page you select here will display the wish list for your logged out "
|
| 3329 |
"users."
|
| 3330 |
msgstr ""
|
| 3331 |
|
| 3332 |
-
#: framework/premium/extensions/woocommerce-extra/includes/wish-list-options.php:
|
| 3333 |
msgid "Display Wishlist Button On"
|
| 3334 |
msgstr ""
|
| 3335 |
|
| 3336 |
-
#: framework/premium/extensions/woocommerce-extra/includes/wish-list-options.php:
|
| 3337 |
msgid "Archive Pages"
|
| 3338 |
msgstr ""
|
| 3339 |
|
| 3340 |
-
#: framework/premium/extensions/woocommerce-extra/includes/wish-list-options.php:
|
| 3341 |
msgid "Single Product Pages"
|
| 3342 |
msgstr ""
|
| 3343 |
|
| 3344 |
-
#: framework/premium/extensions/woocommerce-extra/includes/wish-list-options.php:
|
| 3345 |
msgid "Quick View Modal"
|
| 3346 |
msgstr ""
|
| 3347 |
|
| 3348 |
-
#: framework/premium/extensions/woocommerce-extra/includes/wish-list-options.php:
|
| 3349 |
msgid "AJAX Add To Cart"
|
| 3350 |
msgstr ""
|
| 3351 |
|
| 3352 |
-
#: framework/premium/extensions/woocommerce-extra/includes/wish-list-options.php:
|
| 3353 |
-
msgid "
|
| 3354 |
msgstr ""
|
| 3355 |
|
| 3356 |
-
#: framework/premium/extensions/woocommerce-extra/includes/wish-list-options.php:
|
| 3357 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 3358 |
msgstr ""
|
| 3359 |
|
| 3360 |
-
#: framework/premium/extensions/woocommerce-extra/includes/wish-list-options.php:
|
| 3361 |
msgid "Single Product Button"
|
| 3362 |
msgstr ""
|
| 3363 |
|
| 3364 |
-
#: framework/premium/extensions/woocommerce-extra/includes/wish-list-options.php:
|
| 3365 |
msgid "Quick View Modal Button"
|
| 3366 |
msgstr ""
|
| 3367 |
|
| 3368 |
-
#: framework/premium/extensions/woocommerce-extra/includes/wish-list-table.php:
|
| 3369 |
msgid "You don't have any products in your wish list yet."
|
| 3370 |
msgstr ""
|
| 3371 |
|
|
@@ -3377,11 +3797,342 @@ msgstr ""
|
|
| 3377 |
msgid "Add to cart"
|
| 3378 |
msgstr ""
|
| 3379 |
|
| 3380 |
-
#: framework/premium/extensions/woocommerce-extra/includes/wish-list-table.php:
|
| 3381 |
-
#: framework/premium/extensions/woocommerce-extra/includes/wish-list-table.php:
|
| 3382 |
msgid "Remove Product"
|
| 3383 |
msgstr ""
|
| 3384 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 3385 |
#: framework/premium/extensions/woocommerce-extra/header-items/wish-list/options.php:49
|
| 3386 |
msgid "Icon Badge"
|
| 3387 |
msgstr ""
|
|
@@ -3405,11 +4156,11 @@ msgstr ""
|
|
| 3405 |
msgid "Items Spacing"
|
| 3406 |
msgstr ""
|
| 3407 |
|
| 3408 |
-
#: framework/premium/features/premium-header/items/contacts/options.php:
|
| 3409 |
#: framework/premium/features/premium-header/items/divider/options.php:107,
|
| 3410 |
#: framework/premium/features/premium-header/items/divider/options.php:126,
|
| 3411 |
#: framework/premium/features/premium-header/items/language-switcher/options.php:323,
|
| 3412 |
-
#: framework/premium/features/premium-header/items/search-input/options.php:
|
| 3413 |
msgid "Margin"
|
| 3414 |
msgstr ""
|
| 3415 |
|
|
@@ -3445,10 +4196,6 @@ msgstr ""
|
|
| 3445 |
msgid "Flag"
|
| 3446 |
msgstr ""
|
| 3447 |
|
| 3448 |
-
#: framework/premium/features/premium-header/items/language-switcher/options.php:60
|
| 3449 |
-
msgid "Label"
|
| 3450 |
-
msgstr ""
|
| 3451 |
-
|
| 3452 |
#: framework/premium/features/premium-header/items/language-switcher/options.php:73
|
| 3453 |
msgid "Label Style"
|
| 3454 |
msgstr ""
|
|
@@ -3473,94 +4220,50 @@ msgstr ""
|
|
| 3473 |
msgid "Dropdown Top Offset"
|
| 3474 |
msgstr ""
|
| 3475 |
|
| 3476 |
-
#: framework/premium/features/premium-header/items/language-switcher/options.php:360
|
| 3477 |
-
msgid "Items Vertical Spacing"
|
| 3478 |
-
msgstr ""
|
| 3479 |
-
|
| 3480 |
-
#: framework/premium/features/premium-header/items/language-switcher/options.php:465
|
| 3481 |
-
msgid "Border Radius"
|
| 3482 |
-
msgstr ""
|
| 3483 |
-
|
| 3484 |
#: framework/premium/features/premium-header/items/search-input/config.php:4
|
| 3485 |
msgid "Search Box"
|
| 3486 |
msgstr ""
|
| 3487 |
|
| 3488 |
-
#: framework/premium/features/premium-header/items/search-input/options.php:
|
| 3489 |
msgid "Placeholder Text"
|
| 3490 |
msgstr ""
|
| 3491 |
|
| 3492 |
-
#: framework/premium/features/premium-header/items/search-input/options.php:
|
| 3493 |
msgid "Input Maximum Width"
|
| 3494 |
msgstr ""
|
| 3495 |
|
| 3496 |
-
#: framework/premium/features/premium-header/items/search-input/options.php:
|
| 3497 |
msgid "Input Height"
|
| 3498 |
msgstr ""
|
| 3499 |
|
| 3500 |
-
#: framework/premium/features/premium-header/items/search-input/options.php:
|
| 3501 |
msgid "Live Results"
|
| 3502 |
msgstr ""
|
| 3503 |
|
| 3504 |
-
#: framework/premium/features/premium-header/items/search-input/options.php:
|
| 3505 |
msgid "Live Results Images"
|
| 3506 |
msgstr ""
|
| 3507 |
|
| 3508 |
-
#: framework/premium/features/premium-header/items/search-input/options.php:
|
| 3509 |
msgid "Search Through Criteria"
|
| 3510 |
msgstr ""
|
| 3511 |
|
| 3512 |
-
#: framework/premium/features/premium-header/items/search-input/options.php:
|
| 3513 |
msgid "Chose in which post types do you want to perform searches."
|
| 3514 |
msgstr ""
|
| 3515 |
|
| 3516 |
-
#: framework/premium/features/premium-header/items/search-input/options.php:
|
| 3517 |
-
#: framework/premium/features/premium-header/items/search-input/options.php:
|
| 3518 |
-
#: framework/premium/features/premium-header/items/search-input/options.php:
|
| 3519 |
-
#: framework/premium/features/premium-header/items/search-input/options.php:
|
| 3520 |
-
msgid "Input Font Color"
|
| 3521 |
-
msgstr ""
|
| 3522 |
-
|
| 3523 |
-
#: framework/premium/features/premium-header/items/search-input/options.php:229,
|
| 3524 |
-
#: framework/premium/features/premium-header/items/search-input/options.php:260,
|
| 3525 |
-
#: framework/premium/features/premium-header/items/search-input/options.php:290,
|
| 3526 |
-
#: framework/premium/features/premium-header/items/search-input/options.php:359,
|
| 3527 |
-
#: framework/premium/features/premium-header/items/search-input/options.php:390,
|
| 3528 |
-
#: framework/premium/features/premium-header/items/search-input/options.php:420,
|
| 3529 |
-
#: framework/premium/features/premium-header/items/search-input/options.php:489,
|
| 3530 |
-
#: framework/premium/features/premium-header/items/search-input/options.php:520,
|
| 3531 |
-
#: framework/premium/features/premium-header/items/search-input/options.php:550,
|
| 3532 |
-
#: framework/premium/features/premium-header/items/search-input/options.php:623,
|
| 3533 |
-
#: framework/premium/features/premium-header/items/search-input/options.php:653,
|
| 3534 |
-
#: framework/premium/features/premium-header/items/search-input/options.php:683
|
| 3535 |
-
msgid "Focus"
|
| 3536 |
-
msgstr ""
|
| 3537 |
-
|
| 3538 |
-
#: framework/premium/features/premium-header/items/search-input/options.php:306,
|
| 3539 |
-
#: framework/premium/features/premium-header/items/search-input/options.php:335,
|
| 3540 |
-
#: framework/premium/features/premium-header/items/search-input/options.php:367,
|
| 3541 |
-
#: framework/premium/features/premium-header/items/search-input/options.php:397
|
| 3542 |
msgid "Input Icon Color"
|
| 3543 |
msgstr ""
|
| 3544 |
|
| 3545 |
-
#: framework/premium/features/premium-header/items/search-input/options.php:
|
| 3546 |
-
#: framework/premium/features/premium-header/items/search-input/options.php:465,
|
| 3547 |
-
#: framework/premium/features/premium-header/items/search-input/options.php:497,
|
| 3548 |
-
#: framework/premium/features/premium-header/items/search-input/options.php:527
|
| 3549 |
-
msgid "Input Border Color"
|
| 3550 |
-
msgstr ""
|
| 3551 |
-
|
| 3552 |
-
#: framework/premium/features/premium-header/items/search-input/options.php:572,
|
| 3553 |
-
#: framework/premium/features/premium-header/items/search-input/options.php:600,
|
| 3554 |
-
#: framework/premium/features/premium-header/items/search-input/options.php:630,
|
| 3555 |
-
#: framework/premium/features/premium-header/items/search-input/options.php:660
|
| 3556 |
-
msgid "Input Background Color"
|
| 3557 |
-
msgstr ""
|
| 3558 |
-
|
| 3559 |
-
#: framework/premium/features/premium-header/items/search-input/options.php:736
|
| 3560 |
msgid "Dropdown Text Color"
|
| 3561 |
msgstr ""
|
| 3562 |
|
| 3563 |
-
#: framework/premium/features/premium-header/items/search-input/options.php:
|
| 3564 |
msgid "Dropdown Background"
|
| 3565 |
msgstr ""
|
| 3566 |
|
|
@@ -3586,7 +4289,7 @@ msgid "Select list..."
|
|
| 3586 |
msgstr ""
|
| 3587 |
|
| 3588 |
#: framework/extensions/newsletter-subscribe/dashboard-static/js/EditCredentials.js:123
|
| 3589 |
-
msgid "This
|
| 3590 |
msgstr ""
|
| 3591 |
|
| 3592 |
#: framework/extensions/newsletter-subscribe/dashboard-static/js/EditCredentials.js:139
|
|
@@ -3616,8 +4319,8 @@ msgstr ""
|
|
| 3616 |
|
| 3617 |
#: framework/extensions/newsletter-subscribe/dashboard-static/js/EditCredentials.js:208
|
| 3618 |
#: framework/premium/extensions/mega-menu/static/js/SettingsManager.js:221
|
| 3619 |
-
#: framework/premium/extensions/sidebars/static/js/SettingsManager.js:
|
| 3620 |
-
#: framework/premium/extensions/white-label/dashboard-static/js/EditSettings.js:
|
| 3621 |
#: framework/premium/static/js/footer/EditConditions.js:143
|
| 3622 |
msgid "Save Settings"
|
| 3623 |
msgstr ""
|
|
@@ -3675,14 +4378,14 @@ msgid "Category Slug"
|
|
| 3675 |
msgstr ""
|
| 3676 |
|
| 3677 |
#: framework/premium/extensions/adobe-typekit/static/js/EditSettings.js:108
|
| 3678 |
-
msgid "
|
| 3679 |
msgstr ""
|
| 3680 |
|
| 3681 |
#: framework/premium/extensions/adobe-typekit/static/js/EditSettings.js:113
|
| 3682 |
msgid ""
|
| 3683 |
-
"You can find %shere%s your
|
| 3684 |
-
"
|
| 3685 |
-
"
|
| 3686 |
msgstr ""
|
| 3687 |
|
| 3688 |
#: framework/premium/extensions/adobe-typekit/static/js/EditSettings.js:141
|
|
@@ -3813,13 +4516,13 @@ msgstr ""
|
|
| 3813 |
msgid "Add Variation"
|
| 3814 |
msgstr ""
|
| 3815 |
|
| 3816 |
-
#: framework/premium/extensions/local-google-fonts/dashboard-static/js/EditSettings.js:
|
| 3817 |
msgid ""
|
| 3818 |
"By checking this option you will download and replace the existing Google "
|
| 3819 |
"Fonts with the above ones."
|
| 3820 |
msgstr ""
|
| 3821 |
|
| 3822 |
-
#: framework/premium/extensions/local-google-fonts/dashboard-static/js/EditSettings.js:
|
| 3823 |
msgid "Sync Google Fonts"
|
| 3824 |
msgstr ""
|
| 3825 |
|
|
@@ -3841,14 +4544,26 @@ msgstr ""
|
|
| 3841 |
msgid "Item Settings"
|
| 3842 |
msgstr ""
|
| 3843 |
|
| 3844 |
-
#: framework/premium/extensions/sidebars/static/js/
|
|
|
|
|
|
|
|
|
|
|
|
|
| 3845 |
msgid "%s - Sidebar Display Conditions"
|
| 3846 |
msgstr ""
|
| 3847 |
|
| 3848 |
-
#: framework/premium/extensions/sidebars/static/js/SettingsManager.js:
|
| 3849 |
msgid "Add one or more conditions in order to display your sidebar."
|
| 3850 |
msgstr ""
|
| 3851 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 3852 |
#: framework/premium/extensions/white-label/dashboard-static/js/EditSettings.js:105
|
| 3853 |
msgid "White Label Settings"
|
| 3854 |
msgstr ""
|
|
@@ -3938,35 +4653,35 @@ msgid ""
|
|
| 3938 |
"recommended image size is 256px wide by 256px tall."
|
| 3939 |
msgstr ""
|
| 3940 |
|
| 3941 |
-
#: framework/premium/extensions/white-label/dashboard-static/js/EditSettings.js:
|
| 3942 |
msgid "Hide Account Menu Item"
|
| 3943 |
msgstr ""
|
| 3944 |
|
| 3945 |
-
#: framework/premium/extensions/white-label/dashboard-static/js/EditSettings.js:
|
| 3946 |
msgid "Hide Starter Sites Tab"
|
| 3947 |
msgstr ""
|
| 3948 |
|
| 3949 |
-
#: framework/premium/extensions/white-label/dashboard-static/js/EditSettings.js:
|
| 3950 |
msgid "Hide Useful Plugins Tab"
|
| 3951 |
msgstr ""
|
| 3952 |
|
| 3953 |
-
#: framework/premium/extensions/white-label/dashboard-static/js/EditSettings.js:
|
| 3954 |
msgid "Hide Changelog Tab"
|
| 3955 |
msgstr ""
|
| 3956 |
|
| 3957 |
-
#: framework/premium/extensions/white-label/dashboard-static/js/EditSettings.js:
|
| 3958 |
msgid "Hide Support Section"
|
| 3959 |
msgstr ""
|
| 3960 |
|
| 3961 |
-
#: framework/premium/extensions/white-label/dashboard-static/js/EditSettings.js:
|
| 3962 |
msgid "Hide Beta Updates Section"
|
| 3963 |
msgstr ""
|
| 3964 |
|
| 3965 |
-
#: framework/premium/extensions/white-label/dashboard-static/js/EditSettings.js:
|
| 3966 |
msgid "Hide White Label Extension"
|
| 3967 |
msgstr ""
|
| 3968 |
|
| 3969 |
-
#: framework/premium/extensions/white-label/dashboard-static/js/EditSettings.js:
|
| 3970 |
msgid ""
|
| 3971 |
"Please note that the white label extension will be hidden if this option is "
|
| 3972 |
"enabled. In order to bring it back you have to hit the SHIFT key and click "
|
|
@@ -3979,9 +4694,9 @@ msgstr ""
|
|
| 3979 |
|
| 3980 |
#: framework/premium/static/js/components/BetaConsent.js:60
|
| 3981 |
msgid ""
|
| 3982 |
-
"Receive beta updates
|
| 3983 |
-
"
|
| 3984 |
-
"on
|
| 3985 |
msgstr ""
|
| 3986 |
|
| 3987 |
#: framework/premium/static/js/components/BetaConsent.js:73
|
|
@@ -4019,7 +4734,7 @@ msgid "Picker Footer"
|
|
| 4019 |
msgstr ""
|
| 4020 |
|
| 4021 |
#: framework/premium/static/js/footer/CreateFooter.js:133
|
| 4022 |
-
#: framework/premium/static/js/footer/PanelsManager.js:
|
| 4023 |
msgid "Global Footer"
|
| 4024 |
msgstr ""
|
| 4025 |
|
|
@@ -4061,12 +4776,33 @@ msgstr ""
|
|
| 4061 |
msgid "Add/Edit Conditions"
|
| 4062 |
msgstr ""
|
| 4063 |
|
| 4064 |
-
#: framework/premium/static/js/footer/PanelsManager.js:
|
| 4065 |
msgid "Remove footer"
|
| 4066 |
msgstr ""
|
| 4067 |
|
| 4068 |
-
#: framework/premium/static/js/footer/PanelsManager.js:
|
| 4069 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 4070 |
msgid "Edit Conditions"
|
| 4071 |
msgstr ""
|
| 4072 |
|
|
@@ -4075,7 +4811,7 @@ msgid "Picker header"
|
|
| 4075 |
msgstr ""
|
| 4076 |
|
| 4077 |
#: framework/premium/static/js/header/CreateHeader.js:134
|
| 4078 |
-
#: static/js/header/PanelsManager.js:
|
| 4079 |
msgid "Global Header"
|
| 4080 |
msgstr ""
|
| 4081 |
|
|
@@ -4123,16 +4859,11 @@ msgstr ""
|
|
| 4123 |
msgid "Are you sure you want to continue?"
|
| 4124 |
msgstr ""
|
| 4125 |
|
| 4126 |
-
#: framework/premium/static/js/hooks/
|
| 4127 |
-
|
| 4128 |
-
msgid "Cancel"
|
| 4129 |
-
msgstr ""
|
| 4130 |
-
|
| 4131 |
-
#: framework/premium/static/js/hooks/CreateHook.js:124
|
| 4132 |
-
msgid "Create Template"
|
| 4133 |
msgstr ""
|
| 4134 |
|
| 4135 |
-
#: framework/premium/static/js/hooks/CreateHook.js:
|
| 4136 |
msgid "Create Content Block"
|
| 4137 |
msgstr ""
|
| 4138 |
|
|
@@ -4150,48 +4881,52 @@ msgstr ""
|
|
| 4150 |
msgid "Custom Content/Hooks"
|
| 4151 |
msgstr ""
|
| 4152 |
|
| 4153 |
-
#: framework/premium/static/js/hooks/CreateHook.js:
|
|
|
|
|
|
|
|
|
|
|
|
|
| 4154 |
msgid "404 Page Template"
|
| 4155 |
msgstr ""
|
| 4156 |
|
| 4157 |
-
#: framework/premium/static/js/hooks/CreateHook.js:
|
| 4158 |
msgid "Header Template"
|
| 4159 |
msgstr ""
|
| 4160 |
|
| 4161 |
-
#: framework/premium/static/js/hooks/CreateHook.js:
|
| 4162 |
msgid "Footer Template"
|
| 4163 |
msgstr ""
|
| 4164 |
|
| 4165 |
-
#: framework/premium/static/js/
|
| 4166 |
-
msgid "Template Name"
|
| 4167 |
-
msgstr ""
|
| 4168 |
-
|
| 4169 |
-
#: framework/premium/static/js/options/IconPicker.js:121
|
| 4170 |
msgid "Change Icon"
|
| 4171 |
msgstr ""
|
| 4172 |
|
| 4173 |
-
#: framework/premium/static/js/options/IconPicker.js:
|
| 4174 |
msgid "Remove Icon"
|
| 4175 |
msgstr ""
|
| 4176 |
|
| 4177 |
-
#: framework/premium/static/js/options/IconPicker.js:
|
| 4178 |
msgid "Select"
|
| 4179 |
msgstr ""
|
| 4180 |
|
| 4181 |
-
#: framework/premium/static/js/options/IconPicker/
|
| 4182 |
-
msgid "
|
| 4183 |
msgstr ""
|
| 4184 |
|
| 4185 |
-
#: framework/premium/static/js/options/
|
| 4186 |
-
msgid "
|
| 4187 |
msgstr ""
|
| 4188 |
|
| 4189 |
-
#: framework/premium/static/js/options/
|
| 4190 |
-
msgid "
|
| 4191 |
msgstr ""
|
| 4192 |
|
| 4193 |
-
#: framework/premium/static/js/options/
|
| 4194 |
-
msgid "
|
|
|
|
|
|
|
|
|
|
|
|
|
| 4195 |
msgstr ""
|
| 4196 |
|
| 4197 |
#: framework/premium/static/js/typography/kadence.js:41
|
|
@@ -4226,10 +4961,19 @@ msgstr ""
|
|
| 4226 |
msgid "Add one or more conditions in order to display your header."
|
| 4227 |
msgstr ""
|
| 4228 |
|
| 4229 |
-
#: static/js/header/PanelsManager.js:
|
| 4230 |
msgid "Remove header"
|
| 4231 |
msgstr ""
|
| 4232 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 4233 |
#: static/js/helpers/SubmitSupport.js:18
|
| 4234 |
msgid "Need help or advice?"
|
| 4235 |
msgstr ""
|
|
@@ -4248,16 +4992,24 @@ msgstr ""
|
|
| 4248 |
msgid "Join Facebook Community"
|
| 4249 |
msgstr ""
|
| 4250 |
|
| 4251 |
-
#: static/js/helpers/useActivationAction.js:
|
| 4252 |
-
msgid ""
|
| 4253 |
-
"Upgrade to the Pro version and get instant full access to all premium "
|
| 4254 |
-
"extensions and features."
|
| 4255 |
msgstr ""
|
| 4256 |
|
| 4257 |
-
#: static/js/helpers/useActivationAction.js:
|
|
|
|
|
|
|
|
|
|
|
|
|
| 4258 |
msgid "Upgrade Now"
|
| 4259 |
msgstr ""
|
| 4260 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 4261 |
#: static/js/options/ConditionsManager.js:110
|
| 4262 |
msgid "Select rule"
|
| 4263 |
msgstr ""
|
|
@@ -4307,66 +5059,66 @@ msgid "Import Options"
|
|
| 4307 |
msgstr ""
|
| 4308 |
|
| 4309 |
#: static/js/options/CustomizerOptionsManager.js:111
|
| 4310 |
-
msgid "
|
| 4311 |
msgstr ""
|
| 4312 |
|
| 4313 |
#: static/js/options/CustomizerOptionsManager.js:134
|
| 4314 |
msgid "Click or drop to upload a file..."
|
| 4315 |
msgstr ""
|
| 4316 |
|
| 4317 |
-
#: static/js/options/CustomizerOptionsManager.js:
|
| 4318 |
msgid "Import Customizations"
|
| 4319 |
msgstr ""
|
| 4320 |
|
| 4321 |
-
#: static/js/options/CustomizerOptionsManager.js:
|
| 4322 |
msgid "Copy Options"
|
| 4323 |
msgstr ""
|
| 4324 |
|
| 4325 |
-
#: static/js/options/CustomizerOptionsManager.js:
|
| 4326 |
msgid "Copy and import your customizations from parent or child theme."
|
| 4327 |
msgstr ""
|
| 4328 |
|
| 4329 |
-
#: static/js/options/CustomizerOptionsManager.js:
|
| 4330 |
msgid "Copy From Parent Theme"
|
| 4331 |
msgstr ""
|
| 4332 |
|
| 4333 |
-
#: static/js/options/CustomizerOptionsManager.js:
|
| 4334 |
msgid "Copy From Child Theme"
|
| 4335 |
msgstr ""
|
| 4336 |
|
| 4337 |
-
#: static/js/options/CustomizerOptionsManager.js:
|
| 4338 |
msgid ""
|
| 4339 |
"You are about to copy all the settings from your parent theme into the child "
|
| 4340 |
"theme. Are you sure you want to continue?"
|
| 4341 |
msgstr ""
|
| 4342 |
|
| 4343 |
-
#: static/js/options/CustomizerOptionsManager.js:
|
| 4344 |
msgid ""
|
| 4345 |
"You are about to copy all the settings from your child theme into the parent "
|
| 4346 |
"theme. Are you sure you want to continue?"
|
| 4347 |
msgstr ""
|
| 4348 |
|
| 4349 |
-
#: static/js/options/CustomizerOptionsManager.js:
|
| 4350 |
msgid "Yes, I am sure"
|
| 4351 |
msgstr ""
|
| 4352 |
|
| 4353 |
-
#: static/js/options/CustomizerOptionsManager.js:
|
| 4354 |
msgid "Export Settings"
|
| 4355 |
msgstr ""
|
| 4356 |
|
| 4357 |
-
#: static/js/options/CustomizerOptionsManager.js:
|
| 4358 |
msgid "Choose what set of settings you want to export."
|
| 4359 |
msgstr ""
|
| 4360 |
|
| 4361 |
-
#: static/js/options/CustomizerOptionsManager.js:
|
| 4362 |
msgid "Customizer settings"
|
| 4363 |
msgstr ""
|
| 4364 |
|
| 4365 |
-
#: static/js/options/CustomizerOptionsManager.js:
|
| 4366 |
msgid "Widgets settings"
|
| 4367 |
msgstr ""
|
| 4368 |
|
| 4369 |
-
#: static/js/options/CustomizerOptionsManager.js:
|
| 4370 |
msgid "Export"
|
| 4371 |
msgstr ""
|
| 4372 |
|
|
@@ -4375,8 +5127,7 @@ msgid "Export Options"
|
|
| 4375 |
msgstr ""
|
| 4376 |
|
| 4377 |
#: static/js/options/CustomizerOptionsManager.js:85
|
| 4378 |
-
msgid ""
|
| 4379 |
-
"Click the button below to export the customization settings for this theme."
|
| 4380 |
msgstr ""
|
| 4381 |
|
| 4382 |
#: static/js/options/DisplayCondition.js:18
|
|
@@ -4393,9 +5144,10 @@ msgstr ""
|
|
| 4393 |
|
| 4394 |
#: static/js/screens/DemoInstall.js:130
|
| 4395 |
msgid ""
|
| 4396 |
-
"
|
| 4397 |
-
"required for
|
| 4398 |
-
"
|
|
|
|
| 4399 |
msgstr ""
|
| 4400 |
|
| 4401 |
#: static/js/screens/DemoInstall/DemoInstaller.js:66
|
|
@@ -4656,11 +5408,11 @@ msgid ""
|
|
| 4656 |
"Please select your prefered one in order to continue."
|
| 4657 |
msgstr ""
|
| 4658 |
|
| 4659 |
-
#: static/js/screens/DemoInstall/Wizzard/Plugins.js:
|
| 4660 |
msgid "Install & Activate Plugins"
|
| 4661 |
msgstr ""
|
| 4662 |
|
| 4663 |
-
#: static/js/screens/DemoInstall/Wizzard/Plugins.js:
|
| 4664 |
msgid ""
|
| 4665 |
"The following plugins are required for this starter site in order to work "
|
| 4666 |
"properly."
|
| 30 |
"version, the plugin is currently NOT RUNNING."
|
| 31 |
msgstr ""
|
| 32 |
|
| 33 |
+
#: framework/extensions-manager.php:245,
|
| 34 |
+
#: framework/premium/extensions/adobe-typekit/extension.php:46
|
| 35 |
+
msgid "Adobe Typekit"
|
| 36 |
+
msgstr ""
|
| 37 |
+
|
| 38 |
+
#: framework/extensions-manager.php:246
|
| 39 |
+
msgid ""
|
| 40 |
+
"Connect your Typekit account and use your fonts in any typography option."
|
| 41 |
+
msgstr ""
|
| 42 |
+
|
| 43 |
+
#: framework/extensions-manager.php:257,
|
| 44 |
+
#: framework/premium/extensions/code-snippets/config.php:4,
|
| 45 |
+
#: framework/premium/extensions/code-snippets/extension.php:23,
|
| 46 |
+
#: framework/premium/extensions/code-snippets/extension.php:63,
|
| 47 |
+
#: framework/premium/extensions/code-snippets/extension.php:99,
|
| 48 |
+
#: framework/premium/extensions/code-snippets/readme.php:38
|
| 49 |
+
msgid "Custom Code Snippets"
|
| 50 |
+
msgstr ""
|
| 51 |
+
|
| 52 |
+
#: framework/extensions-manager.php:258
|
| 53 |
+
msgid ""
|
| 54 |
+
"Add custom code snippets in your header and footer, globally and per post or "
|
| 55 |
+
"page individually."
|
| 56 |
+
msgstr ""
|
| 57 |
+
|
| 58 |
+
#: framework/extensions-manager.php:269,
|
| 59 |
#: framework/premium/extensions/custom-fonts/extension.php:142
|
| 60 |
msgid "Custom Fonts"
|
| 61 |
msgstr ""
|
| 62 |
|
| 63 |
+
#: framework/extensions-manager.php:270
|
| 64 |
+
msgid ""
|
| 65 |
+
"Upload unlimited number of custom fonts or variable fonts and use them in "
|
| 66 |
+
"any typography option."
|
| 67 |
+
msgstr ""
|
| 68 |
+
|
| 69 |
+
#: framework/extensions-manager.php:281,
|
| 70 |
+
#: framework/premium/extensions/local-google-fonts/extension.php:121
|
| 71 |
+
msgid "Local Google Fonts"
|
| 72 |
+
msgstr ""
|
| 73 |
+
|
| 74 |
+
#: framework/extensions-manager.php:282
|
| 75 |
+
msgid "Serve Google Fonts from your own server for full GDPR compliancy."
|
| 76 |
+
msgstr ""
|
| 77 |
+
|
| 78 |
+
#: framework/extensions-manager.php:293,
|
| 79 |
+
#: framework/premium/extensions/mega-menu/config.php:4
|
| 80 |
+
msgid "Advanced Menu"
|
| 81 |
+
msgstr ""
|
| 82 |
+
|
| 83 |
+
#: framework/extensions-manager.php:294
|
| 84 |
+
msgid ""
|
| 85 |
+
"Create beautiful mega menus, assign icons add badges to menu items, and "
|
| 86 |
+
"content blocks inside menu items."
|
| 87 |
+
msgstr ""
|
| 88 |
+
|
| 89 |
+
#: framework/extensions-manager.php:305,
|
| 90 |
+
#: framework/premium/extensions/shortcuts/config.php:4,
|
| 91 |
+
#: framework/premium/extensions/shortcuts/customizer.php:462
|
| 92 |
+
msgid "Shortcuts Bar"
|
| 93 |
+
msgstr ""
|
| 94 |
+
|
| 95 |
+
#: framework/extensions-manager.php:306
|
| 96 |
+
msgid ""
|
| 97 |
+
"Transform your website into a app like by displaying a neat shortcuts bar at "
|
| 98 |
+
"the bottom of the vieport."
|
| 99 |
+
msgstr ""
|
| 100 |
+
|
| 101 |
+
#: framework/extensions-manager.php:317,
|
| 102 |
+
#: framework/premium/extensions/sidebars/config.php:4
|
| 103 |
+
msgid "Multiple Sidebars"
|
| 104 |
+
msgstr ""
|
| 105 |
+
|
| 106 |
+
#: framework/extensions-manager.php:318
|
| 107 |
+
msgid ""
|
| 108 |
+
"Create unlimited number of sidebars and display them conditionaly on any "
|
| 109 |
+
"page or post."
|
| 110 |
msgstr ""
|
| 111 |
|
| 112 |
+
#: framework/extensions-manager.php:329
|
| 113 |
+
msgid "White Label (Agency Package)"
|
| 114 |
msgstr ""
|
| 115 |
|
| 116 |
+
#: framework/extensions-manager.php:330
|
| 117 |
+
msgid "Change the theme and companion plugin branding to your own custom one."
|
| 118 |
msgstr ""
|
| 119 |
|
| 120 |
+
#: framework/extensions-manager.php:341,
|
| 121 |
+
#: framework/premium/extensions/woocommerce-extra/config.php:4
|
| 122 |
+
msgid "WooCommerce Extra"
|
| 123 |
msgstr ""
|
| 124 |
|
| 125 |
+
#: framework/extensions-manager.php:342
|
| 126 |
+
msgid ""
|
| 127 |
+
"Increase the conversion rate by adding a product quick view modal, a "
|
| 128 |
+
"floating cart. Control the single product gallery/slider and the layout, add "
|
| 129 |
+
"a wishlits page."
|
| 130 |
msgstr ""
|
| 131 |
|
| 132 |
+
#: framework/theme-integration.php:266,
|
| 133 |
#: framework/extensions/widgets/widgets/ct-facebook/options.php:16,
|
| 134 |
#: framework/extensions/widgets/widgets/ct-facebook/view.php:12,
|
| 135 |
#: framework/extensions/widgets/widgets/ct-facebook/widget.php:13
|
| 136 |
msgid "Facebook"
|
| 137 |
msgstr ""
|
| 138 |
|
| 139 |
+
#: framework/theme-integration.php:267
|
| 140 |
msgid "Twitter"
|
| 141 |
msgstr ""
|
| 142 |
|
| 143 |
+
#: framework/theme-integration.php:268
|
| 144 |
msgid "LinkedIn"
|
| 145 |
msgstr ""
|
| 146 |
|
| 147 |
+
#: framework/theme-integration.php:269
|
| 148 |
msgid "Dribbble"
|
| 149 |
msgstr ""
|
| 150 |
|
| 151 |
+
#: framework/theme-integration.php:270
|
| 152 |
msgid "Instagram"
|
| 153 |
msgstr ""
|
| 154 |
|
| 155 |
+
#: framework/theme-integration.php:271
|
| 156 |
msgid "Pinterest"
|
| 157 |
msgstr ""
|
| 158 |
|
| 159 |
+
#: framework/theme-integration.php:272
|
| 160 |
msgid "WordPress"
|
| 161 |
msgstr ""
|
| 162 |
|
| 163 |
+
#: framework/theme-integration.php:273
|
| 164 |
msgid "GitHub"
|
| 165 |
msgstr ""
|
| 166 |
|
| 167 |
+
#: framework/theme-integration.php:274,
|
| 168 |
#: framework/extensions/widgets/widgets/ct-about-me/options.php:114,
|
| 169 |
#: framework/extensions/widgets/widgets/ct-about-me/options.php:195,
|
| 170 |
#: framework/extensions/widgets/widgets/ct-contact-info/options.php:266,
|
| 172 |
msgid "Medium"
|
| 173 |
msgstr ""
|
| 174 |
|
| 175 |
+
#: framework/theme-integration.php:275
|
| 176 |
msgid "YouTube"
|
| 177 |
msgstr ""
|
| 178 |
|
| 179 |
+
#: framework/theme-integration.php:276
|
| 180 |
msgid "Vimeo"
|
| 181 |
msgstr ""
|
| 182 |
|
| 183 |
+
#: framework/theme-integration.php:277
|
| 184 |
msgid "VKontakte"
|
| 185 |
msgstr ""
|
| 186 |
|
| 187 |
+
#: framework/theme-integration.php:278
|
| 188 |
msgid "Odnoklassniki"
|
| 189 |
msgstr ""
|
| 190 |
|
| 191 |
+
#: framework/theme-integration.php:279
|
| 192 |
msgid "TikTok"
|
| 193 |
msgstr ""
|
| 194 |
|
| 195 |
+
#: framework/theme-integration.php:351
|
| 196 |
msgid "Companion"
|
| 197 |
msgstr ""
|
| 198 |
|
| 199 |
+
#: framework/theme-integration.php:367 static/js/screens/SiteExport.js:106
|
| 200 |
msgid "PRO"
|
| 201 |
msgstr ""
|
| 202 |
|
| 203 |
+
#: framework/theme-integration.php:496
|
| 204 |
msgid "Check your email"
|
| 205 |
msgstr ""
|
| 206 |
|
| 207 |
+
#: framework/theme-integration.php:502
|
| 208 |
msgid "Registration Form"
|
| 209 |
msgstr ""
|
| 210 |
|
| 211 |
+
#: framework/theme-integration.php:503
|
| 212 |
msgid "Register For This Site"
|
| 213 |
msgstr ""
|
| 214 |
|
| 224 |
msgid "Widget Title"
|
| 225 |
msgstr ""
|
| 226 |
|
| 227 |
+
#: framework/features/conditions-manager.php:309
|
| 228 |
msgid "%s Single"
|
| 229 |
msgstr ""
|
| 230 |
|
| 231 |
+
#: framework/features/conditions-manager.php:317
|
| 232 |
msgid "%s Archive"
|
| 233 |
msgstr ""
|
| 234 |
|
| 235 |
+
#: framework/features/conditions-manager.php:329
|
| 236 |
msgid "Entire Website"
|
| 237 |
msgstr ""
|
| 238 |
|
| 239 |
+
#: framework/features/conditions-manager.php:335
|
| 240 |
msgid "Basic"
|
| 241 |
msgstr ""
|
| 242 |
|
| 243 |
+
#: framework/features/conditions-manager.php:339
|
| 244 |
msgid "Singulars"
|
| 245 |
msgstr ""
|
| 246 |
|
| 247 |
+
#: framework/features/conditions-manager.php:344
|
| 248 |
msgid "Archives"
|
| 249 |
msgstr ""
|
| 250 |
|
| 251 |
+
#: framework/features/conditions-manager.php:350,
|
| 252 |
#: framework/extensions/trending/customizer.php:4,
|
| 253 |
#: framework/extensions/widgets/widgets/ct-posts/options.php:11,
|
| 254 |
#: framework/extensions/widgets/widgets/ct-posts/options.php:98,
|
| 255 |
+
#: framework/extensions/widgets/widgets/ct-posts/view.php:133,
|
| 256 |
#: framework/extensions/widgets/widgets/ct-posts/widget.php:13,
|
| 257 |
#: framework/premium/features/premium-header/items/search-input/options.php:4
|
| 258 |
msgid "Posts"
|
| 259 |
msgstr ""
|
| 260 |
|
| 261 |
+
#: framework/features/conditions-manager.php:354,
|
| 262 |
+
#: framework/premium/features/content-blocks/hooks-manager.php:280,
|
| 263 |
+
#: framework/premium/features/content-blocks/hooks-manager.php:288,
|
|
|
|
|
|
|
| 264 |
#: framework/premium/features/content-blocks/hooks-manager.php:296,
|
| 265 |
+
#: framework/premium/features/content-blocks/hooks-manager.php:303,
|
| 266 |
+
#: framework/premium/features/content-blocks/hooks-manager.php:310,
|
| 267 |
+
#: framework/premium/features/content-blocks/hooks-manager.php:318
|
| 268 |
msgid "Single Post"
|
| 269 |
msgstr ""
|
| 270 |
|
| 271 |
+
#: framework/features/conditions-manager.php:359
|
| 272 |
msgid "All Post Archives"
|
| 273 |
msgstr ""
|
| 274 |
|
| 275 |
+
#: framework/features/conditions-manager.php:364
|
| 276 |
msgid "Post Categories"
|
| 277 |
msgstr ""
|
| 278 |
|
| 279 |
+
#: framework/features/conditions-manager.php:369
|
| 280 |
msgid "Post Tags"
|
| 281 |
msgstr ""
|
| 282 |
|
| 283 |
+
#: framework/features/conditions-manager.php:375,
|
| 284 |
#: framework/extensions/widgets/widgets/ct-posts/options.php:12,
|
| 285 |
#: framework/premium/features/premium-header/items/search-input/options.php:5
|
| 286 |
msgid "Pages"
|
| 287 |
msgstr ""
|
| 288 |
|
| 289 |
+
#: framework/features/conditions-manager.php:379
|
| 290 |
msgid "Single Page"
|
| 291 |
msgstr ""
|
| 292 |
|
| 293 |
+
#: framework/features/conditions-manager.php:426
|
| 294 |
msgid "Specific"
|
| 295 |
msgstr ""
|
| 296 |
|
| 297 |
+
#: framework/features/conditions-manager.php:430
|
| 298 |
msgid "Post ID"
|
| 299 |
msgstr ""
|
| 300 |
|
| 301 |
+
#: framework/features/conditions-manager.php:435
|
| 302 |
msgid "Page ID"
|
| 303 |
msgstr ""
|
| 304 |
|
| 305 |
+
#: framework/features/conditions-manager.php:440
|
| 306 |
#: static/js/options/ConditionsManager/PostIdPicker.js:76
|
| 307 |
msgid "Custom Post Type ID"
|
| 308 |
msgstr ""
|
| 309 |
|
| 310 |
+
#: framework/features/conditions-manager.php:445
|
| 311 |
msgid "Taxonomy ID"
|
| 312 |
msgstr ""
|
| 313 |
|
| 314 |
+
#: framework/features/conditions-manager.php:450
|
| 315 |
msgid "Post with Taxonomy ID"
|
| 316 |
msgstr ""
|
| 317 |
|
| 318 |
+
#: framework/features/conditions-manager.php:456
|
| 319 |
msgid "Other Pages"
|
| 320 |
msgstr ""
|
| 321 |
|
| 322 |
+
#: framework/features/conditions-manager.php:460
|
| 323 |
msgid "404"
|
| 324 |
msgstr ""
|
| 325 |
|
| 326 |
+
#: framework/features/conditions-manager.php:465,
|
| 327 |
+
#: framework/premium/features/premium-header/items/search-input/options.php:45,
|
| 328 |
+
#: framework/premium/features/premium-header/items/search-input/view.php:66
|
|
|
|
| 329 |
msgid "Search"
|
| 330 |
msgstr ""
|
| 331 |
|
| 332 |
+
#: framework/features/conditions-manager.php:470
|
| 333 |
msgid "Blog"
|
| 334 |
msgstr ""
|
| 335 |
|
| 336 |
+
#: framework/features/conditions-manager.php:475
|
| 337 |
msgid "Front Page"
|
| 338 |
msgstr ""
|
| 339 |
|
| 340 |
+
#: framework/features/conditions-manager.php:487
|
| 341 |
msgid "Author"
|
| 342 |
msgstr ""
|
| 343 |
|
| 344 |
+
#: framework/features/conditions-manager.php:493
|
| 345 |
msgid "User Auth"
|
| 346 |
msgstr ""
|
| 347 |
|
| 348 |
+
#: framework/features/conditions-manager.php:497
|
| 349 |
msgid "User Logged In"
|
| 350 |
msgstr ""
|
| 351 |
|
| 352 |
+
#: framework/features/conditions-manager.php:502
|
| 353 |
msgid "User Logged Out"
|
| 354 |
msgstr ""
|
| 355 |
|
| 356 |
+
#: framework/features/conditions-manager.php:508
|
| 357 |
msgid "User Roles"
|
| 358 |
msgstr ""
|
| 359 |
|
| 360 |
+
#: framework/features/conditions-manager.php:599
|
| 361 |
msgid "Language"
|
| 362 |
msgstr ""
|
| 363 |
|
| 375 |
|
| 376 |
#: framework/features/dynamic-css.php:50
|
| 377 |
msgid ""
|
| 378 |
+
"The strategy of outputting the dynamic CSS. File - all the CSS code will be "
|
| 379 |
"placed in a static file, otherwise it will be placed inline in head."
|
| 380 |
msgstr ""
|
| 381 |
|
| 388 |
msgid "Inline"
|
| 389 |
msgstr ""
|
| 390 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 391 |
#: framework/features/google-analytics.php:69
|
| 392 |
+
msgid "Google Analytics v3"
|
| 393 |
msgstr ""
|
| 394 |
|
| 395 |
#: framework/features/google-analytics.php:74
|
| 396 |
+
msgid "Link your Google Analytics 3 tracking ID."
|
| 397 |
msgstr ""
|
| 398 |
|
| 399 |
#: framework/features/google-analytics.php:80
|
| 402 |
|
| 403 |
#: framework/features/google-analytics.php:86
|
| 404 |
msgid ""
|
| 405 |
+
"Link your Google Analytics 4 tracking ID. More info and instructions can be "
|
| 406 |
+
"found %shere%s."
|
| 407 |
msgstr ""
|
| 408 |
|
| 409 |
#: framework/features/google-analytics.php:98
|
| 410 |
msgid "IP Anonymization"
|
| 411 |
msgstr ""
|
| 412 |
|
| 413 |
+
#: framework/features/google-analytics.php:102
|
| 414 |
msgid ""
|
| 415 |
+
"Enable Google Analytics IP Anonymization for enhanced privacy. More info and "
|
| 416 |
+
"instructions can be found %shere%s."
|
|
|
|
| 417 |
msgstr ""
|
| 418 |
|
| 419 |
#: framework/features/opengraph-meta-data.php:17
|
| 420 |
+
msgid "OpenGraph Meta Data"
|
| 421 |
msgstr ""
|
| 422 |
|
| 423 |
#: framework/features/opengraph-meta-data.php:20
|
| 424 |
+
msgid "Enable the OpenGraph rich meta data features for your website."
|
|
|
|
| 425 |
msgstr ""
|
| 426 |
|
| 427 |
#: framework/features/opengraph-meta-data.php:29
|
| 441 |
msgstr ""
|
| 442 |
|
| 443 |
#: framework/extensions/cookies-consent/config.php:5
|
| 444 |
+
msgid ""
|
| 445 |
+
"Display a cookie acceptance box in order to comply with the privacy "
|
| 446 |
+
"regulations in your country."
|
| 447 |
msgstr ""
|
| 448 |
|
| 449 |
#: framework/extensions/cookies-consent/customizer.php:4
|
| 453 |
#: framework/extensions/cookies-consent/customizer.php:18,
|
| 454 |
#: framework/extensions/newsletter-subscribe/customizer.php:12,
|
| 455 |
#: framework/extensions/product-reviews/metabox.php:6,
|
| 456 |
+
#: framework/extensions/trending/customizer.php:109,
|
| 457 |
#: framework/premium/extensions/mega-menu/options.php:6,
|
| 458 |
+
#: framework/premium/extensions/shortcuts/customizer.php:472,
|
| 459 |
#: framework/premium/extensions/woocommerce-extra/floating-cart.php:11,
|
| 460 |
#: framework/premium/extensions/woocommerce-extra/offcanvas-filter.php:164,
|
| 461 |
+
#: framework/features/header/items/account/options.php:51,
|
| 462 |
+
#: framework/premium/extensions/woocommerce-extra/includes/wish-list-options.php:23,
|
| 463 |
+
#: framework/premium/features/content-blocks/options/popup.php:30,
|
| 464 |
+
#: framework/premium/extensions/post-types-extra/includes/filtering/customizer.php:35,
|
| 465 |
+
#: framework/premium/extensions/post-types-extra/includes/read-progress/customizer.php:19,
|
| 466 |
#: framework/premium/extensions/woocommerce-extra/header-items/wish-list/options.php:5,
|
| 467 |
#: framework/premium/features/premium-header/items/contacts/options.php:5,
|
| 468 |
#: framework/premium/features/premium-header/items/language-switcher/options.php:21,
|
| 469 |
#: framework/premium/features/premium-header/items/language-switcher/options.php:347,
|
| 470 |
+
#: framework/premium/features/premium-header/items/search-input/options.php:37
|
| 471 |
#: framework/premium/extensions/white-label/dashboard-static/js/EditSettings.js:126
|
| 472 |
msgid "General"
|
| 473 |
msgstr ""
|
| 474 |
|
| 475 |
#: framework/extensions/cookies-consent/customizer.php:31,
|
| 476 |
+
#: framework/premium/extensions/shortcuts/customizer.php:484,
|
| 477 |
+
#: framework/premium/extensions/woocommerce-extra/extension.php:72,
|
| 478 |
#: framework/premium/extensions/woocommerce-extra/offcanvas-filter.php:186,
|
| 479 |
+
#: framework/features/header/items/account/options.php:167,
|
| 480 |
+
#: framework/features/header/items/account/options.php:373,
|
| 481 |
+
#: framework/premium/extensions/post-types-extra/includes/filtering/customizer.php:48,
|
| 482 |
#: framework/premium/extensions/woocommerce-extra/header-items/wish-list/options.php:23
|
| 483 |
msgid "Type 1"
|
| 484 |
msgstr ""
|
| 485 |
|
| 486 |
#: framework/extensions/cookies-consent/customizer.php:36,
|
| 487 |
+
#: framework/premium/extensions/shortcuts/customizer.php:489,
|
| 488 |
+
#: framework/premium/extensions/woocommerce-extra/extension.php:77,
|
| 489 |
#: framework/premium/extensions/woocommerce-extra/offcanvas-filter.php:191,
|
| 490 |
+
#: framework/features/header/items/account/options.php:172,
|
| 491 |
+
#: framework/features/header/items/account/options.php:378,
|
| 492 |
+
#: framework/premium/extensions/post-types-extra/includes/filtering/customizer.php:53,
|
| 493 |
#: framework/premium/extensions/woocommerce-extra/header-items/wish-list/options.php:28
|
| 494 |
msgid "Type 2"
|
| 495 |
msgstr ""
|
| 569 |
|
| 570 |
#: framework/extensions/cookies-consent/customizer.php:90,
|
| 571 |
#: framework/extensions/newsletter-subscribe/customizer.php:147,
|
| 572 |
+
#: framework/extensions/trending/customizer.php:290,
|
| 573 |
+
#: framework/premium/extensions/mega-menu/options.php:514,
|
| 574 |
+
#: framework/premium/extensions/shortcuts/customizer.php:702,
|
| 575 |
#: framework/premium/extensions/woocommerce-extra/floating-cart.php:81,
|
| 576 |
#: framework/premium/extensions/woocommerce-extra/offcanvas-filter.php:31,
|
| 577 |
#: framework/premium/extensions/woocommerce-extra/offcanvas-filter.php:279,
|
| 578 |
+
#: framework/features/header/items/account/options.php:497,
|
| 579 |
+
#: framework/premium/extensions/woocommerce-extra/includes/wish-list-options.php:120,
|
| 580 |
+
#: framework/premium/features/content-blocks/options/popup.php:342,
|
| 581 |
+
#: framework/premium/extensions/post-types-extra/includes/filtering/customizer.php:167,
|
| 582 |
+
#: framework/premium/extensions/post-types-extra/includes/read-progress/customizer.php:66,
|
| 583 |
#: framework/premium/extensions/woocommerce-extra/header-items/wish-list/options.php:119,
|
| 584 |
+
#: framework/premium/features/premium-header/items/contacts/options.php:343,
|
| 585 |
#: framework/premium/features/premium-header/items/language-switcher/options.php:186,
|
| 586 |
#: framework/premium/features/premium-header/items/language-switcher/options.php:371,
|
| 587 |
+
#: framework/premium/features/premium-header/items/search-input/options.php:178
|
| 588 |
msgid "Design"
|
| 589 |
msgstr ""
|
| 590 |
|
| 591 |
#: framework/extensions/cookies-consent/customizer.php:95,
|
| 592 |
+
#: framework/extensions/trending/customizer.php:305,
|
| 593 |
+
#: framework/premium/extensions/mega-menu/options.php:794,
|
| 594 |
+
#: framework/premium/extensions/shortcuts/customizer.php:718,
|
| 595 |
#: framework/premium/extensions/woocommerce-extra/floating-cart.php:86,
|
| 596 |
+
#: framework/features/header/items/account/options.php:808,
|
| 597 |
+
#: framework/premium/extensions/post-types-extra/includes/filtering/customizer.php:184,
|
| 598 |
#: framework/premium/extensions/woocommerce-extra/header-items/wish-list/options.php:174,
|
| 599 |
#: framework/premium/extensions/woocommerce-extra/header-items/wish-list/options.php:205,
|
| 600 |
#: framework/premium/extensions/woocommerce-extra/header-items/wish-list/options.php:234,
|
| 601 |
+
#: framework/premium/features/premium-header/items/contacts/options.php:359,
|
| 602 |
+
#: framework/premium/features/premium-header/items/contacts/options.php:388,
|
| 603 |
+
#: framework/premium/features/premium-header/items/contacts/options.php:431,
|
| 604 |
+
#: framework/premium/features/premium-header/items/contacts/options.php:471,
|
| 605 |
#: framework/premium/features/premium-header/items/language-switcher/options.php:203,
|
| 606 |
#: framework/premium/features/premium-header/items/language-switcher/options.php:232,
|
| 607 |
#: framework/premium/features/premium-header/items/language-switcher/options.php:262,
|
| 616 |
#: framework/extensions/newsletter-subscribe/customizer.php:169,
|
| 617 |
#: framework/extensions/newsletter-subscribe/customizer.php:200,
|
| 618 |
#: framework/extensions/newsletter-subscribe/customizer.php:225,
|
| 619 |
+
#: framework/extensions/trending/customizer.php:323,
|
| 620 |
+
#: framework/premium/extensions/mega-menu/options.php:760,
|
| 621 |
+
#: framework/premium/extensions/mega-menu/options.php:807,
|
| 622 |
+
#: framework/premium/extensions/mega-menu/options.php:826,
|
| 623 |
+
#: framework/premium/extensions/shortcuts/customizer.php:736,
|
| 624 |
+
#: framework/premium/extensions/shortcuts/customizer.php:768,
|
| 625 |
#: framework/premium/extensions/woocommerce-extra/floating-cart.php:99,
|
| 626 |
#: framework/premium/extensions/woocommerce-extra/offcanvas-filter.php:73,
|
| 627 |
#: framework/premium/extensions/woocommerce-extra/offcanvas-filter.php:352,
|
| 632 |
#: framework/features/header/items/account/options.php:705,
|
| 633 |
#: framework/features/header/items/account/options.php:736,
|
| 634 |
#: framework/features/header/items/account/options.php:765,
|
| 635 |
+
#: framework/features/header/items/account/options.php:826,
|
| 636 |
+
#: framework/features/header/items/account/options.php:856,
|
| 637 |
+
#: framework/features/header/items/account/options.php:886,
|
| 638 |
+
#: framework/features/header/items/account/options.php:922,
|
| 639 |
+
#: framework/features/header/items/account/options.php:976,
|
| 640 |
+
#: framework/features/header/items/account/options.php:1007,
|
| 641 |
+
#: framework/premium/extensions/woocommerce-extra/includes/wish-list-options.php:153,
|
| 642 |
#: framework/premium/extensions/woocommerce-extra/includes/wish-list-options.php:185,
|
| 643 |
+
#: framework/premium/extensions/woocommerce-extra/includes/wish-list-options.php:229,
|
| 644 |
+
#: framework/premium/extensions/woocommerce-extra/includes/wish-list-options.php:305,
|
| 645 |
+
#: framework/premium/extensions/post-types-extra/includes/filtering/customizer.php:201,
|
| 646 |
+
#: framework/premium/extensions/post-types-extra/includes/filtering/customizer.php:237,
|
| 647 |
+
#: framework/premium/extensions/post-types-extra/includes/read-progress/customizer.php:84,
|
| 648 |
+
#: framework/premium/extensions/post-types-extra/includes/read-progress/customizer.php:105,
|
| 649 |
#: framework/premium/extensions/woocommerce-extra/header-items/wish-list/options.php:191,
|
| 650 |
#: framework/premium/extensions/woocommerce-extra/header-items/wish-list/options.php:222,
|
| 651 |
#: framework/premium/extensions/woocommerce-extra/header-items/wish-list/options.php:251,
|
| 652 |
#: framework/premium/extensions/woocommerce-extra/header-items/wish-list/options.php:318,
|
| 653 |
#: framework/premium/extensions/woocommerce-extra/header-items/wish-list/options.php:349,
|
| 654 |
#: framework/premium/extensions/woocommerce-extra/header-items/wish-list/options.php:378,
|
| 655 |
+
#: framework/premium/features/premium-header/items/contacts/options.php:576,
|
| 656 |
+
#: framework/premium/features/premium-header/items/contacts/options.php:607,
|
| 657 |
+
#: framework/premium/features/premium-header/items/contacts/options.php:637,
|
| 658 |
+
#: framework/premium/features/premium-header/items/contacts/options.php:737,
|
| 659 |
+
#: framework/premium/features/premium-header/items/contacts/options.php:776,
|
| 660 |
+
#: framework/premium/features/premium-header/items/contacts/options.php:815,
|
| 661 |
#: framework/premium/features/premium-header/items/dark-mode-switcher/options.php:75,
|
| 662 |
#: framework/premium/features/premium-header/items/dark-mode-switcher/options.php:106,
|
| 663 |
#: framework/premium/features/premium-header/items/dark-mode-switcher/options.php:135,
|
| 666 |
#: framework/premium/features/premium-header/items/language-switcher/options.php:308,
|
| 667 |
#: framework/premium/features/premium-header/items/language-switcher/options.php:399,
|
| 668 |
#: framework/premium/features/premium-header/items/language-switcher/options.php:425,
|
| 669 |
+
#: framework/premium/features/premium-header/items/search-input/options.php:231,
|
| 670 |
+
#: framework/premium/features/premium-header/items/search-input/options.php:263,
|
| 671 |
+
#: framework/premium/features/premium-header/items/search-input/options.php:293,
|
| 672 |
+
#: framework/premium/features/premium-header/items/search-input/options.php:361,
|
| 673 |
+
#: framework/premium/features/premium-header/items/search-input/options.php:393,
|
| 674 |
+
#: framework/premium/features/premium-header/items/search-input/options.php:423,
|
| 675 |
+
#: framework/premium/features/premium-header/items/search-input/options.php:491,
|
| 676 |
+
#: framework/premium/features/premium-header/items/search-input/options.php:523,
|
| 677 |
+
#: framework/premium/features/premium-header/items/search-input/options.php:553,
|
| 678 |
+
#: framework/premium/features/premium-header/items/search-input/options.php:626,
|
| 679 |
+
#: framework/premium/features/premium-header/items/search-input/options.php:656,
|
| 680 |
+
#: framework/premium/features/premium-header/items/search-input/options.php:686,
|
| 681 |
+
#: framework/premium/features/premium-header/items/search-input/options.php:762,
|
| 682 |
+
#: framework/premium/features/premium-header/items/search-input/options.php:790
|
| 683 |
msgid "Initial"
|
| 684 |
msgstr ""
|
| 685 |
|
| 687 |
#: framework/extensions/cookies-consent/customizer.php:147,
|
| 688 |
#: framework/extensions/newsletter-subscribe/customizer.php:175,
|
| 689 |
#: framework/extensions/newsletter-subscribe/customizer.php:205,
|
| 690 |
+
#: framework/extensions/trending/customizer.php:329,
|
| 691 |
+
#: framework/premium/extensions/mega-menu/options.php:765,
|
| 692 |
+
#: framework/premium/extensions/shortcuts/customizer.php:742,
|
| 693 |
+
#: framework/premium/extensions/shortcuts/customizer.php:774,
|
| 694 |
#: framework/premium/extensions/woocommerce-extra/offcanvas-filter.php:357,
|
| 695 |
#: framework/premium/extensions/woocommerce-extra/offcanvas-filter.php:386,
|
| 696 |
#: framework/features/header/items/account/options.php:567,
|
| 699 |
#: framework/features/header/items/account/options.php:711,
|
| 700 |
#: framework/features/header/items/account/options.php:741,
|
| 701 |
#: framework/features/header/items/account/options.php:770,
|
| 702 |
+
#: framework/features/header/items/account/options.php:832,
|
| 703 |
+
#: framework/features/header/items/account/options.php:982,
|
| 704 |
+
#: framework/features/header/items/account/options.php:1013,
|
| 705 |
#: framework/premium/extensions/woocommerce-extra/header-items/wish-list/options.php:197,
|
| 706 |
#: framework/premium/extensions/woocommerce-extra/header-items/wish-list/options.php:227,
|
| 707 |
#: framework/premium/extensions/woocommerce-extra/header-items/wish-list/options.php:256,
|
| 708 |
#: framework/premium/extensions/woocommerce-extra/header-items/wish-list/options.php:324,
|
| 709 |
#: framework/premium/extensions/woocommerce-extra/header-items/wish-list/options.php:354,
|
| 710 |
#: framework/premium/extensions/woocommerce-extra/header-items/wish-list/options.php:383,
|
| 711 |
+
#: framework/premium/features/premium-header/items/contacts/options.php:581,
|
| 712 |
+
#: framework/premium/features/premium-header/items/contacts/options.php:612,
|
| 713 |
+
#: framework/premium/features/premium-header/items/contacts/options.php:642,
|
| 714 |
+
#: framework/premium/features/premium-header/items/contacts/options.php:742,
|
| 715 |
+
#: framework/premium/features/premium-header/items/contacts/options.php:781,
|
| 716 |
+
#: framework/premium/features/premium-header/items/contacts/options.php:820,
|
| 717 |
#: framework/premium/features/premium-header/items/dark-mode-switcher/options.php:81,
|
| 718 |
#: framework/premium/features/premium-header/items/dark-mode-switcher/options.php:111,
|
| 719 |
#: framework/premium/features/premium-header/items/dark-mode-switcher/options.php:140,
|
| 720 |
#: framework/premium/features/premium-header/items/language-switcher/options.php:404,
|
| 721 |
+
#: framework/premium/features/premium-header/items/search-input/options.php:767
|
| 722 |
msgid "Hover"
|
| 723 |
msgstr ""
|
| 724 |
|
| 725 |
#: framework/extensions/cookies-consent/customizer.php:126,
|
| 726 |
+
#: framework/extensions/newsletter-subscribe/customizer.php:183,
|
| 727 |
+
#: framework/premium/extensions/post-types-extra/includes/filtering/customizer.php:220
|
| 728 |
msgid "Button Color"
|
| 729 |
msgstr ""
|
| 730 |
|
| 731 |
#: framework/extensions/cookies-consent/customizer.php:154,
|
| 732 |
#: framework/extensions/newsletter-subscribe/customizer.php:212,
|
| 733 |
+
#: framework/premium/extensions/mega-menu/options.php:814,
|
| 734 |
+
#: framework/premium/extensions/woocommerce-extra/includes/wish-list-options.php:167,
|
| 735 |
+
#: framework/premium/extensions/post-types-extra/includes/read-progress/customizer.php:92,
|
|
|
|
| 736 |
#: framework/premium/features/premium-header/items/language-switcher/options.php:412
|
| 737 |
msgid "Background Color"
|
| 738 |
msgstr ""
|
| 741 |
msgid "Maximum Width"
|
| 742 |
msgstr ""
|
| 743 |
|
| 744 |
+
#: framework/extensions/cookies-consent/customizer.php:202
|
| 745 |
+
msgid "I accept the %sPrivacy Policy%s*"
|
|
|
|
| 746 |
msgstr ""
|
| 747 |
|
| 748 |
#: framework/extensions/cookies-consent/customizer.php:206
|
| 749 |
msgid "This text will appear under each comment form and subscribe form."
|
| 750 |
msgstr ""
|
| 751 |
|
| 752 |
+
#: framework/extensions/cookies-consent/helpers.php:78
|
| 753 |
+
msgid "I accept the %sPrivacy Policy%s"
|
| 754 |
+
msgstr ""
|
| 755 |
+
|
| 756 |
#: framework/extensions/cookies-consent/readme.php:1,
|
| 757 |
#: framework/extensions/newsletter-subscribe/readme.php:1,
|
| 758 |
#: framework/premium/extensions/code-snippets/readme.php:1,
|
| 759 |
+
#: framework/premium/extensions/post-types-extra/readme.php:1,
|
| 760 |
#: framework/premium/extensions/woocommerce-extra/readme.php:1
|
| 761 |
msgid "Instructions"
|
| 762 |
msgstr ""
|
| 788 |
|
| 789 |
#: framework/extensions/newsletter-subscribe/config.php:5
|
| 790 |
msgid ""
|
| 791 |
+
"Easily capture new leads for your newsletter with the help of a widget, "
|
| 792 |
+
"shortcode or even a block inserted on your pages or posts."
|
| 793 |
msgstr ""
|
| 794 |
|
| 795 |
#: framework/extensions/newsletter-subscribe/customizer.php:4
|
| 851 |
#: framework/extensions/newsletter-subscribe/ct-newsletter-subscribe/options.php:38,
|
| 852 |
#: framework/extensions/newsletter-subscribe/ct-newsletter-subscribe/options.php:105,
|
| 853 |
#: framework/extensions/widgets/widgets/ct-posts/options.php:173,
|
| 854 |
+
#: framework/extensions/widgets/widgets/ct-posts/options.php:198,
|
| 855 |
+
#: framework/premium/features/content-blocks/options/hook.php:284
|
|
|
|
| 856 |
msgid "Default"
|
| 857 |
msgstr ""
|
| 858 |
|
| 859 |
#: framework/extensions/newsletter-subscribe/customizer.php:50,
|
| 860 |
#: framework/extensions/newsletter-subscribe/ct-newsletter-subscribe/options.php:39,
|
| 861 |
+
#: framework/premium/extensions/shortcuts/customizer.php:230,
|
| 862 |
+
#: framework/premium/extensions/shortcuts/customizer.php:256,
|
| 863 |
#: framework/extensions/widgets/widgets/ct-about-me/options.php:46
|
| 864 |
+
#: framework/premium/static/js/options/IconPicker/Modal.js:148
|
| 865 |
msgid "Custom"
|
| 866 |
msgstr ""
|
| 867 |
|
| 882 |
msgstr ""
|
| 883 |
|
| 884 |
#: framework/extensions/newsletter-subscribe/customizer.php:95,
|
| 885 |
+
#: framework/extensions/newsletter-subscribe/extension.php:186,
|
| 886 |
#: framework/extensions/newsletter-subscribe/helpers.php:57,
|
| 887 |
#: framework/extensions/newsletter-subscribe/helpers.php:108,
|
| 888 |
#: framework/extensions/newsletter-subscribe/ct-newsletter-subscribe/options.php:75,
|
| 896 |
msgstr ""
|
| 897 |
|
| 898 |
#: framework/extensions/newsletter-subscribe/customizer.php:107,
|
| 899 |
+
#: framework/extensions/newsletter-subscribe/extension.php:187,
|
| 900 |
#: framework/extensions/newsletter-subscribe/helpers.php:61,
|
| 901 |
#: framework/extensions/newsletter-subscribe/helpers.php:109,
|
| 902 |
#: framework/extensions/newsletter-subscribe/ct-newsletter-subscribe/options.php:86,
|
| 910 |
msgstr ""
|
| 911 |
|
| 912 |
#: framework/extensions/newsletter-subscribe/customizer.php:116,
|
| 913 |
+
#: framework/extensions/newsletter-subscribe/extension.php:181,
|
| 914 |
#: framework/extensions/newsletter-subscribe/helpers.php:52,
|
| 915 |
#: framework/extensions/newsletter-subscribe/helpers.php:101,
|
| 916 |
#: framework/extensions/newsletter-subscribe/ct-newsletter-subscribe/options.php:94,
|
| 922 |
#: framework/premium/extensions/shortcuts/customizer.php:42,
|
| 923 |
#: framework/premium/extensions/shortcuts/customizer.php:99,
|
| 924 |
#: framework/premium/extensions/shortcuts/customizer.php:156,
|
| 925 |
+
#: framework/premium/extensions/shortcuts/customizer.php:207,
|
| 926 |
+
#: framework/premium/extensions/shortcuts/customizer.php:269,
|
| 927 |
#: framework/premium/extensions/shortcuts/customizer.php:322,
|
| 928 |
#: framework/premium/extensions/shortcuts/customizer.php:373,
|
| 929 |
+
#: framework/premium/extensions/shortcuts/customizer.php:424,
|
| 930 |
+
#: framework/premium/extensions/shortcuts/customizer.php:666,
|
| 931 |
+
#: framework/premium/features/content-blocks/options/404.php:140,
|
| 932 |
+
#: framework/premium/features/content-blocks/options/header.php:166,
|
| 933 |
+
#: framework/premium/features/content-blocks/options/hook.php:320,
|
| 934 |
+
#: framework/premium/features/content-blocks/options/popup.php:321,
|
| 935 |
+
#: framework/premium/extensions/post-types-extra/includes/filtering/customizer.php:144,
|
| 936 |
+
#: framework/premium/extensions/post-types-extra/includes/read-progress/customizer.php:43
|
| 937 |
msgid "Visibility"
|
| 938 |
msgstr ""
|
| 939 |
|
| 940 |
#: framework/extensions/newsletter-subscribe/customizer.php:137,
|
| 941 |
+
#: framework/extensions/trending/customizer.php:235,
|
| 942 |
#: framework/features/header/header-options.php:89,
|
| 943 |
#: framework/features/header/header-options.php:171,
|
| 944 |
#: framework/premium/extensions/shortcuts/customizer.php:54,
|
| 945 |
#: framework/premium/extensions/shortcuts/customizer.php:111,
|
| 946 |
#: framework/premium/extensions/shortcuts/customizer.php:168,
|
| 947 |
+
#: framework/premium/extensions/shortcuts/customizer.php:219,
|
| 948 |
+
#: framework/premium/extensions/shortcuts/customizer.php:281,
|
| 949 |
#: framework/premium/extensions/shortcuts/customizer.php:334,
|
| 950 |
#: framework/premium/extensions/shortcuts/customizer.php:385,
|
| 951 |
+
#: framework/premium/extensions/shortcuts/customizer.php:436,
|
| 952 |
+
#: framework/premium/extensions/shortcuts/customizer.php:558,
|
| 953 |
+
#: framework/premium/extensions/shortcuts/customizer.php:680,
|
| 954 |
#: framework/premium/extensions/woocommerce-extra/floating-cart.php:47,
|
| 955 |
#: framework/premium/extensions/woocommerce-extra/floating-cart.php:71,
|
| 956 |
#: framework/premium/extensions/woocommerce-extra/offcanvas-filter.php:219,
|
| 957 |
+
#: framework/features/header/items/account/options.php:228,
|
| 958 |
+
#: framework/features/header/items/account/options.php:434,
|
| 959 |
+
#: framework/premium/features/content-blocks/options/404.php:151,
|
| 960 |
+
#: framework/premium/features/content-blocks/options/header.php:177,
|
| 961 |
+
#: framework/premium/features/content-blocks/options/hook.php:331,
|
| 962 |
+
#: framework/premium/features/content-blocks/options/popup.php:332,
|
| 963 |
+
#: framework/premium/extensions/post-types-extra/includes/filtering/customizer.php:157,
|
| 964 |
+
#: framework/premium/extensions/post-types-extra/includes/read-progress/customizer.php:56,
|
| 965 |
#: framework/premium/extensions/woocommerce-extra/header-items/wish-list/options.php:73
|
| 966 |
msgid "Desktop"
|
| 967 |
msgstr ""
|
| 968 |
|
| 969 |
#: framework/extensions/newsletter-subscribe/customizer.php:138,
|
| 970 |
+
#: framework/extensions/trending/customizer.php:236,
|
| 971 |
#: framework/premium/extensions/shortcuts/customizer.php:55,
|
| 972 |
#: framework/premium/extensions/shortcuts/customizer.php:112,
|
| 973 |
#: framework/premium/extensions/shortcuts/customizer.php:169,
|
| 974 |
+
#: framework/premium/extensions/shortcuts/customizer.php:220,
|
| 975 |
+
#: framework/premium/extensions/shortcuts/customizer.php:282,
|
| 976 |
#: framework/premium/extensions/shortcuts/customizer.php:335,
|
| 977 |
#: framework/premium/extensions/shortcuts/customizer.php:386,
|
| 978 |
+
#: framework/premium/extensions/shortcuts/customizer.php:437,
|
| 979 |
+
#: framework/premium/extensions/shortcuts/customizer.php:559,
|
| 980 |
+
#: framework/premium/extensions/shortcuts/customizer.php:681,
|
| 981 |
#: framework/premium/extensions/woocommerce-extra/floating-cart.php:48,
|
| 982 |
#: framework/premium/extensions/woocommerce-extra/floating-cart.php:72,
|
| 983 |
#: framework/premium/extensions/woocommerce-extra/offcanvas-filter.php:220,
|
| 984 |
+
#: framework/features/header/items/account/options.php:229,
|
| 985 |
+
#: framework/features/header/items/account/options.php:435,
|
| 986 |
+
#: framework/features/header/items/account/options.php:1077,
|
| 987 |
+
#: framework/premium/features/content-blocks/options/404.php:152,
|
| 988 |
+
#: framework/premium/features/content-blocks/options/header.php:178,
|
| 989 |
+
#: framework/premium/features/content-blocks/options/hook.php:332,
|
| 990 |
+
#: framework/premium/features/content-blocks/options/popup.php:333,
|
| 991 |
+
#: framework/premium/extensions/post-types-extra/includes/filtering/customizer.php:158,
|
| 992 |
+
#: framework/premium/extensions/post-types-extra/includes/read-progress/customizer.php:57,
|
| 993 |
#: framework/premium/extensions/woocommerce-extra/header-items/wish-list/options.php:74
|
| 994 |
msgid "Tablet"
|
| 995 |
msgstr ""
|
| 996 |
|
| 997 |
#: framework/extensions/newsletter-subscribe/customizer.php:139,
|
| 998 |
+
#: framework/extensions/trending/customizer.php:237,
|
| 999 |
#: framework/features/header/header-options.php:91,
|
| 1000 |
#: framework/features/header/header-options.php:173,
|
| 1001 |
#: framework/premium/extensions/shortcuts/customizer.php:56,
|
| 1002 |
#: framework/premium/extensions/shortcuts/customizer.php:113,
|
| 1003 |
#: framework/premium/extensions/shortcuts/customizer.php:170,
|
| 1004 |
+
#: framework/premium/extensions/shortcuts/customizer.php:221,
|
| 1005 |
+
#: framework/premium/extensions/shortcuts/customizer.php:283,
|
| 1006 |
#: framework/premium/extensions/shortcuts/customizer.php:336,
|
| 1007 |
#: framework/premium/extensions/shortcuts/customizer.php:387,
|
| 1008 |
+
#: framework/premium/extensions/shortcuts/customizer.php:438,
|
| 1009 |
+
#: framework/premium/extensions/shortcuts/customizer.php:560,
|
| 1010 |
+
#: framework/premium/extensions/shortcuts/customizer.php:682,
|
| 1011 |
#: framework/premium/extensions/woocommerce-extra/floating-cart.php:49,
|
| 1012 |
#: framework/premium/extensions/woocommerce-extra/floating-cart.php:73,
|
| 1013 |
#: framework/premium/extensions/woocommerce-extra/offcanvas-filter.php:221,
|
|
|
|
| 1014 |
#: framework/extensions/widgets/widgets/ct-contact-info/options.php:117,
|
| 1015 |
+
#: framework/features/header/items/account/options.php:230,
|
| 1016 |
+
#: framework/features/header/items/account/options.php:436,
|
| 1017 |
+
#: framework/features/header/items/account/options.php:1078,
|
| 1018 |
+
#: framework/premium/features/content-blocks/options/404.php:153,
|
| 1019 |
+
#: framework/premium/features/content-blocks/options/header.php:179,
|
| 1020 |
+
#: framework/premium/features/content-blocks/options/hook.php:333,
|
| 1021 |
+
#: framework/premium/features/content-blocks/options/popup.php:334,
|
| 1022 |
+
#: framework/premium/extensions/post-types-extra/includes/filtering/customizer.php:159,
|
| 1023 |
+
#: framework/premium/extensions/post-types-extra/includes/read-progress/customizer.php:58,
|
| 1024 |
#: framework/premium/extensions/woocommerce-extra/header-items/wish-list/options.php:75,
|
| 1025 |
#: framework/premium/features/premium-header/items/contacts/options.php:97
|
| 1026 |
msgid "Mobile"
|
| 1031 |
msgstr ""
|
| 1032 |
|
| 1033 |
#: framework/extensions/newsletter-subscribe/customizer.php:233,
|
| 1034 |
+
#: framework/extensions/trending/customizer.php:353
|
| 1035 |
msgid "Container Inner Spacing"
|
| 1036 |
msgstr ""
|
| 1037 |
|
| 1038 |
+
#: framework/extensions/newsletter-subscribe/extension.php:134
|
| 1039 |
msgid "Disable Subscribe Form"
|
| 1040 |
msgstr ""
|
| 1041 |
|
| 1058 |
|
| 1059 |
#: framework/extensions/newsletter-subscribe/readme.php:4
|
| 1060 |
msgid ""
|
| 1061 |
+
"After installing and activating the Newsletter Subscribe\n"
|
| 1062 |
+
" extension you will have two possibilities to show your subscribe form:"
|
| 1063 |
msgstr ""
|
| 1064 |
|
| 1065 |
+
#: framework/extensions/newsletter-subscribe/readme.php:10
|
| 1066 |
+
msgid "Widget"
|
| 1067 |
msgstr ""
|
| 1068 |
|
| 1069 |
+
#: framework/extensions/newsletter-subscribe/readme.php:14
|
| 1070 |
msgid "Navigate to %s and place the widget in any widget area you want."
|
| 1071 |
msgstr ""
|
| 1072 |
|
| 1073 |
+
#: framework/extensions/newsletter-subscribe/readme.php:17
|
| 1074 |
msgid "Appearance ➝ Widgets"
|
| 1075 |
msgstr ""
|
| 1076 |
|
| 1077 |
+
#: framework/extensions/newsletter-subscribe/readme.php:25
|
| 1078 |
+
msgid "Single Page Block"
|
| 1079 |
msgstr ""
|
| 1080 |
|
| 1081 |
+
#: framework/extensions/newsletter-subscribe/readme.php:29
|
| 1082 |
msgid "Navigate to %s and customize the form and more."
|
| 1083 |
msgstr ""
|
| 1084 |
|
| 1085 |
+
#: framework/extensions/newsletter-subscribe/readme.php:32
|
| 1086 |
msgid "Customizer ➝ Single Posts"
|
| 1087 |
msgstr ""
|
| 1088 |
|
| 1095 |
msgstr ""
|
| 1096 |
|
| 1097 |
#: framework/extensions/product-reviews/config.php:5
|
| 1098 |
+
msgid ""
|
| 1099 |
+
"This extension lets you easily create an affiliate marketing type of website "
|
| 1100 |
+
"by giving you options to create a personalized product review and use your "
|
| 1101 |
+
"affiliate links to direct your readers to the purchase page."
|
| 1102 |
msgstr ""
|
| 1103 |
|
| 1104 |
#: framework/extensions/product-reviews/extension.php:145
|
| 1151 |
msgstr ""
|
| 1152 |
|
| 1153 |
#: framework/extensions/product-reviews/extension.php:191,
|
| 1154 |
+
#: framework/extensions/trending/customizer.php:35,
|
| 1155 |
#: framework/extensions/widgets/widgets/ct-posts/options.php:37
|
| 1156 |
msgid "Category"
|
| 1157 |
msgstr ""
|
| 1188 |
msgid "New Category Name"
|
| 1189 |
msgstr ""
|
| 1190 |
|
| 1191 |
+
#: framework/extensions/product-reviews/helpers.php:30,
|
| 1192 |
#: framework/extensions/product-reviews/metabox.php:89
|
| 1193 |
msgid "Rating"
|
| 1194 |
msgstr ""
|
| 1202 |
msgstr ""
|
| 1203 |
|
| 1204 |
#: framework/extensions/product-reviews/metabox.php:25,
|
| 1205 |
+
#: framework/extensions/product-reviews/views/single-top.php:139
|
| 1206 |
msgid "Buy Now"
|
| 1207 |
msgstr ""
|
| 1208 |
|
| 1219 |
msgstr ""
|
| 1220 |
|
| 1221 |
#: framework/extensions/product-reviews/metabox.php:60,
|
| 1222 |
+
#: framework/extensions/product-reviews/views/single-top.php:145
|
| 1223 |
msgid "Read More"
|
| 1224 |
msgstr ""
|
| 1225 |
|
| 1236 |
msgstr ""
|
| 1237 |
|
| 1238 |
#: framework/extensions/product-reviews/metabox.php:159,
|
| 1239 |
+
#: framework/extensions/product-reviews/views/single-top.php:223
|
| 1240 |
msgid "Pros"
|
| 1241 |
msgstr ""
|
| 1242 |
|
| 1243 |
#: framework/extensions/product-reviews/metabox.php:179,
|
| 1244 |
+
#: framework/extensions/product-reviews/views/single-top.php:239
|
| 1245 |
msgid "Cons"
|
| 1246 |
msgstr ""
|
| 1247 |
|
| 1248 |
#: framework/extensions/trending/config.php:4,
|
| 1249 |
+
#: framework/extensions/trending/customizer.php:96,
|
| 1250 |
+
#: framework/extensions/trending/customizer.php:105
|
| 1251 |
msgid "Trending Posts"
|
| 1252 |
msgstr ""
|
| 1253 |
|
| 1254 |
#: framework/extensions/trending/config.php:5
|
| 1255 |
msgid ""
|
| 1256 |
+
"Highlight your most popular posts or products based on the number of "
|
| 1257 |
+
"comments or reviews they have gotten in the specified period of time."
|
| 1258 |
msgstr ""
|
| 1259 |
|
| 1260 |
#: framework/extensions/trending/customizer.php:8,
|
| 1261 |
+
#: framework/premium/extensions/shortcuts/views/bar.php:30,
|
| 1262 |
#: framework/premium/features/premium-header/items/search-input/options.php:6
|
| 1263 |
msgid "Products"
|
| 1264 |
msgstr ""
|
| 1265 |
|
| 1266 |
+
#: framework/extensions/trending/customizer.php:36,
|
| 1267 |
+
#: framework/extensions/widgets/widgets/ct-posts/options.php:38
|
| 1268 |
+
msgid "All categories"
|
| 1269 |
+
msgstr ""
|
| 1270 |
+
|
| 1271 |
+
#: framework/extensions/trending/customizer.php:41,
|
| 1272 |
+
#: framework/extensions/widgets/widgets/ct-posts/options.php:43
|
| 1273 |
+
msgid "Taxonomy"
|
| 1274 |
+
msgstr ""
|
| 1275 |
+
|
| 1276 |
+
#: framework/extensions/trending/customizer.php:42,
|
| 1277 |
+
#: framework/extensions/widgets/widgets/ct-posts/options.php:44
|
| 1278 |
+
msgid "All taxonomies"
|
| 1279 |
+
msgstr ""
|
| 1280 |
+
|
| 1281 |
+
#: framework/extensions/trending/customizer.php:114
|
| 1282 |
+
msgid "Module Title"
|
| 1283 |
+
msgstr ""
|
| 1284 |
+
|
| 1285 |
+
#: framework/extensions/trending/customizer.php:117,
|
| 1286 |
+
#: framework/extensions/trending/helpers.php:216
|
| 1287 |
+
msgid "Trending now"
|
| 1288 |
+
msgstr ""
|
| 1289 |
+
|
| 1290 |
+
#: framework/extensions/trending/customizer.php:145,
|
| 1291 |
+
#: framework/extensions/widgets/widgets/ct-about-me/options.php:37,
|
| 1292 |
+
#: framework/extensions/widgets/widgets/ct-advertisement/options.php:23,
|
| 1293 |
+
#: framework/extensions/widgets/widgets/ct-posts/options.php:149,
|
| 1294 |
+
#: framework/extensions/widgets/widgets/ct-posts/options.php:168
|
| 1295 |
+
msgid "Source"
|
| 1296 |
+
msgstr ""
|
| 1297 |
+
|
| 1298 |
+
#: framework/extensions/trending/customizer.php:150,
|
| 1299 |
+
#: framework/extensions/widgets/widgets/ct-posts/options.php:154
|
| 1300 |
+
msgid "Taxonomies"
|
| 1301 |
+
msgstr ""
|
| 1302 |
+
|
| 1303 |
+
#: framework/extensions/trending/customizer.php:151,
|
| 1304 |
+
#: framework/extensions/widgets/widgets/ct-posts/options.php:155,
|
| 1305 |
+
#: framework/extensions/widgets/widgets/ct-posts/options.php:174
|
| 1306 |
+
msgid "Custom Query"
|
| 1307 |
+
msgstr ""
|
| 1308 |
+
|
| 1309 |
+
#: framework/extensions/trending/customizer.php:174
|
| 1310 |
+
msgid "Posts ID"
|
| 1311 |
+
msgstr ""
|
| 1312 |
+
|
| 1313 |
+
#: framework/extensions/trending/customizer.php:178
|
| 1314 |
+
msgid "Separate posts ID by comma. How to find the %spost ID%s."
|
| 1315 |
+
msgstr ""
|
| 1316 |
+
|
| 1317 |
+
#: framework/extensions/trending/customizer.php:194
|
| 1318 |
msgid "Trending From"
|
| 1319 |
msgstr ""
|
| 1320 |
|
| 1321 |
+
#: framework/extensions/trending/customizer.php:203,
|
| 1322 |
+
#: framework/extensions/widgets/widgets/ct-posts/options.php:212
|
| 1323 |
msgid "All Time"
|
| 1324 |
msgstr ""
|
| 1325 |
|
| 1326 |
+
#: framework/extensions/trending/customizer.php:204
|
| 1327 |
msgid "Last 24 Hours"
|
| 1328 |
msgstr ""
|
| 1329 |
|
| 1330 |
+
#: framework/extensions/trending/customizer.php:205
|
| 1331 |
msgid "Last 7 Days"
|
| 1332 |
msgstr ""
|
| 1333 |
|
| 1334 |
+
#: framework/extensions/trending/customizer.php:206
|
| 1335 |
msgid "Last Month"
|
| 1336 |
msgstr ""
|
| 1337 |
|
| 1338 |
+
#: framework/extensions/trending/customizer.php:223
|
| 1339 |
msgid "Container Visibility"
|
| 1340 |
msgstr ""
|
| 1341 |
|
| 1342 |
+
#: framework/extensions/trending/customizer.php:296
|
| 1343 |
msgid "Posts Font"
|
| 1344 |
msgstr ""
|
| 1345 |
|
| 1346 |
+
#: framework/extensions/trending/customizer.php:337,
|
| 1347 |
+
#: framework/premium/extensions/shortcuts/customizer.php:835
|
| 1348 |
msgid "Container Background"
|
| 1349 |
msgstr ""
|
| 1350 |
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1351 |
#: framework/extensions/widgets/config.php:4
|
| 1352 |
msgid ""
|
| 1353 |
+
"Add new handcrafted widgets to your sidebars! Social Network Icons, "
|
| 1354 |
+
"Newsletter Subscribe, Contact Info, Custom Ads and even a Popular/Recent "
|
| 1355 |
+
"Posts are the choices available."
|
| 1356 |
msgstr ""
|
| 1357 |
|
| 1358 |
+
#: framework/features/header/account-modal.php:47,
|
| 1359 |
#: framework/features/header/items/account/options.php:481,
|
| 1360 |
#: framework/features/header/items/account/views/logout.php:48
|
| 1361 |
msgid "Login"
|
| 1362 |
msgstr ""
|
| 1363 |
|
| 1364 |
+
#: framework/features/header/account-modal.php:51
|
| 1365 |
msgid "Sign Up"
|
| 1366 |
msgstr ""
|
| 1367 |
|
| 1368 |
+
#: framework/features/header/account-modal.php:70
|
| 1369 |
msgid "Back to login"
|
| 1370 |
msgstr ""
|
| 1371 |
|
| 1399 |
msgstr ""
|
| 1400 |
|
| 1401 |
#: framework/features/header/header-options.php:144,
|
| 1402 |
+
#: framework/premium/extensions/shortcuts/customizer.php:687,
|
| 1403 |
+
#: framework/premium/features/content-blocks/options/header.php:142,
|
| 1404 |
+
#: framework/premium/features/content-blocks/options/hook.php:231,
|
| 1405 |
+
#: framework/premium/features/content-blocks/options/popup.php:279
|
| 1406 |
+
#: framework/premium/extensions/sidebars/static/js/SettingsManager.js:44
|
| 1407 |
#: framework/premium/static/js/footer/EditConditions.js:97
|
| 1408 |
#: static/js/header/EditConditions.js:96
|
| 1409 |
msgid "Display Conditions"
|
| 1413 |
msgid "Hooks Locations"
|
| 1414 |
msgstr ""
|
| 1415 |
|
| 1416 |
+
#: framework/premium/features/content-blocks.php:204,
|
| 1417 |
+
#: framework/premium/extensions/shortcuts/customizer.php:476,
|
| 1418 |
#: framework/extensions/widgets/widgets/ct-about-me/options.php:23
|
| 1419 |
msgid "Type"
|
| 1420 |
msgstr ""
|
| 1421 |
|
| 1422 |
+
#: framework/premium/features/content-blocks.php:205
|
| 1423 |
+
msgid "Location/Trigger"
|
| 1424 |
msgstr ""
|
| 1425 |
|
| 1426 |
+
#: framework/premium/features/content-blocks.php:206
|
| 1427 |
msgid "Conditions"
|
| 1428 |
msgstr ""
|
| 1429 |
|
| 1430 |
+
#: framework/premium/features/content-blocks.php:207
|
| 1431 |
+
msgid "Output"
|
| 1432 |
msgstr ""
|
| 1433 |
|
| 1434 |
+
#: framework/premium/features/content-blocks.php:208
|
| 1435 |
msgid "Enable/Disable"
|
| 1436 |
msgstr ""
|
| 1437 |
|
| 1438 |
+
#: framework/premium/features/content-blocks.php:228,
|
| 1439 |
+
#: framework/premium/extensions/shortcuts/customizer.php:650,
|
| 1440 |
+
#: framework/extensions/widgets/widgets/ct-about-me/options.php:208,
|
| 1441 |
+
#: framework/extensions/widgets/widgets/ct-contact-info/options.php:279,
|
| 1442 |
+
#: framework/extensions/widgets/widgets/ct-socials/options.php:86,
|
| 1443 |
+
#: framework/features/header/items/account/options.php:124,
|
| 1444 |
+
#: framework/features/header/items/account/options.php:349,
|
| 1445 |
+
#: framework/premium/features/content-blocks/options/popup.php:162,
|
| 1446 |
+
#: framework/premium/features/content-blocks/options/popup.php:418,
|
| 1447 |
+
#: framework/premium/features/premium-header/items/contacts/options.php:277
|
| 1448 |
+
msgid "None"
|
| 1449 |
+
msgstr ""
|
| 1450 |
+
|
| 1451 |
+
#: framework/premium/features/content-blocks.php:229,
|
| 1452 |
+
#: framework/premium/features/content-blocks/options/popup.php:163
|
| 1453 |
+
msgid "On scroll"
|
| 1454 |
+
msgstr ""
|
| 1455 |
+
|
| 1456 |
+
#: framework/premium/features/content-blocks.php:230,
|
| 1457 |
+
#: framework/premium/features/content-blocks/options/popup.php:164
|
| 1458 |
+
msgid "On scroll to element"
|
| 1459 |
+
msgstr ""
|
| 1460 |
+
|
| 1461 |
+
#: framework/premium/features/content-blocks.php:231,
|
| 1462 |
+
#: framework/premium/features/content-blocks/options/popup.php:165
|
| 1463 |
+
msgid "On page load"
|
| 1464 |
+
msgstr ""
|
| 1465 |
+
|
| 1466 |
+
#: framework/premium/features/content-blocks.php:232,
|
| 1467 |
+
#: framework/premium/features/content-blocks/options/popup.php:166
|
| 1468 |
+
msgid "After inactivity"
|
| 1469 |
+
msgstr ""
|
| 1470 |
+
|
| 1471 |
+
#: framework/premium/features/content-blocks.php:233,
|
| 1472 |
+
#: framework/premium/features/content-blocks/options/popup.php:167
|
| 1473 |
+
msgid "After x time"
|
| 1474 |
+
msgstr ""
|
| 1475 |
+
|
| 1476 |
+
#: framework/premium/features/content-blocks.php:234,
|
| 1477 |
+
#: framework/premium/features/content-blocks/options/popup.php:168
|
| 1478 |
+
msgid "On page exit intent"
|
| 1479 |
+
msgstr ""
|
| 1480 |
+
|
| 1481 |
+
#: framework/premium/features/content-blocks.php:238
|
| 1482 |
+
msgid "Down"
|
| 1483 |
+
msgstr ""
|
| 1484 |
+
|
| 1485 |
+
#: framework/premium/features/content-blocks.php:239
|
| 1486 |
+
msgid "Up"
|
| 1487 |
+
msgstr ""
|
| 1488 |
+
|
| 1489 |
+
#: framework/premium/features/content-blocks.php:607,
|
| 1490 |
+
#: framework/premium/features/content-blocks.php:613
|
| 1491 |
msgid "Content Blocks"
|
| 1492 |
msgstr ""
|
| 1493 |
|
| 1494 |
+
#: framework/premium/features/content-blocks.php:608
|
| 1495 |
msgid "Content Block"
|
| 1496 |
msgstr ""
|
| 1497 |
|
| 1498 |
+
#: framework/premium/features/content-blocks.php:609
|
| 1499 |
msgid "Add New"
|
| 1500 |
msgstr ""
|
| 1501 |
|
| 1502 |
+
#: framework/premium/features/content-blocks.php:610
|
| 1503 |
msgid "Add New Content Block"
|
| 1504 |
msgstr ""
|
| 1505 |
|
| 1506 |
+
#: framework/premium/features/content-blocks.php:611
|
| 1507 |
msgid "Edit Content Block"
|
| 1508 |
msgstr ""
|
| 1509 |
|
| 1510 |
+
#: framework/premium/features/content-blocks.php:612
|
| 1511 |
+
#: framework/premium/static/js/hooks/CreateHook.js:32
|
| 1512 |
msgid "New Content Block"
|
| 1513 |
msgstr ""
|
| 1514 |
|
| 1515 |
+
#: framework/premium/features/content-blocks.php:614
|
| 1516 |
msgid "View Content Block"
|
| 1517 |
msgstr ""
|
| 1518 |
|
| 1519 |
+
#: framework/premium/features/content-blocks.php:615
|
| 1520 |
msgid "Search Content Blocks"
|
| 1521 |
msgstr ""
|
| 1522 |
|
| 1523 |
+
#: framework/premium/features/content-blocks.php:616
|
| 1524 |
msgid "Nothing found"
|
| 1525 |
msgstr ""
|
| 1526 |
|
| 1527 |
+
#: framework/premium/features/content-blocks.php:617
|
| 1528 |
msgid "Nothing found in Trash"
|
| 1529 |
msgstr ""
|
| 1530 |
|
| 1546 |
msgid "Header Widget Area "
|
| 1547 |
msgstr ""
|
| 1548 |
|
| 1549 |
+
#: framework/premium/features/premium-header.php:158,
|
| 1550 |
+
#: framework/premium/extensions/mega-menu/options.php:420,
|
| 1551 |
+
#: framework/features/header/items/account/options.php:123,
|
| 1552 |
+
#: framework/features/header/items/account/options.php:348,
|
| 1553 |
+
#: framework/premium/extensions/post-types-extra/includes/dynamic-data.php:401
|
| 1554 |
+
msgid "Icon"
|
| 1555 |
+
msgstr ""
|
| 1556 |
+
|
| 1557 |
+
#: framework/premium/features/premium-header.php:172,
|
| 1558 |
+
#: framework/premium/extensions/mega-menu/options.php:434,
|
| 1559 |
+
#: framework/extensions/widgets/widgets/ct-about-me/options.php:187,
|
| 1560 |
+
#: framework/extensions/widgets/widgets/ct-contact-info/options.php:258,
|
| 1561 |
+
#: framework/extensions/widgets/widgets/ct-socials/options.php:65,
|
| 1562 |
+
#: framework/premium/features/premium-header/items/contacts/options.php:249
|
| 1563 |
+
msgid "Icons Size"
|
| 1564 |
+
msgstr ""
|
| 1565 |
+
|
| 1566 |
+
#: framework/premium/features/premium-header.php:184,
|
| 1567 |
+
#: framework/premium/extensions/mega-menu/options.php:456
|
| 1568 |
+
msgid "Icon Position"
|
| 1569 |
+
msgstr ""
|
| 1570 |
+
|
| 1571 |
+
#: framework/premium/features/premium-header.php:191,
|
| 1572 |
+
#: framework/premium/extensions/mega-menu/options.php:463,
|
| 1573 |
+
#: framework/premium/extensions/shortcuts/customizer.php:583,
|
| 1574 |
+
#: framework/features/header/items/account/options.php:259,
|
| 1575 |
+
#: framework/features/header/items/account/options.php:465,
|
| 1576 |
+
#: framework/premium/extensions/woocommerce-extra/header-items/wish-list/options.php:98
|
| 1577 |
+
msgid "Left"
|
| 1578 |
+
msgstr ""
|
| 1579 |
+
|
| 1580 |
+
#: framework/premium/features/premium-header.php:192,
|
| 1581 |
+
#: framework/premium/extensions/mega-menu/options.php:464,
|
| 1582 |
+
#: framework/premium/extensions/shortcuts/customizer.php:584,
|
| 1583 |
+
#: framework/features/header/items/account/options.php:260,
|
| 1584 |
+
#: framework/features/header/items/account/options.php:466,
|
| 1585 |
+
#: framework/premium/extensions/woocommerce-extra/header-items/wish-list/options.php:99
|
| 1586 |
+
msgid "Right"
|
| 1587 |
+
msgstr ""
|
| 1588 |
+
|
| 1589 |
#: framework/extensions/newsletter-subscribe/ct-newsletter-subscribe/options.php:17,
|
| 1590 |
#: framework/extensions/newsletter-subscribe/ct-newsletter-subscribe/view.php:12
|
| 1591 |
msgid "Newsletter"
|
| 1612 |
msgid "Thank you for subscribing!"
|
| 1613 |
msgstr ""
|
| 1614 |
|
| 1615 |
+
#: framework/extensions/product-reviews/views/single-top.php:126
|
| 1616 |
msgid "Overall Score"
|
| 1617 |
msgstr ""
|
| 1618 |
|
| 1619 |
+
#: framework/extensions/product-reviews/views/single-top.php:206
|
| 1620 |
msgid "Specs"
|
| 1621 |
msgstr ""
|
| 1622 |
|
| 1660 |
msgid "Register"
|
| 1661 |
msgstr ""
|
| 1662 |
|
| 1663 |
+
#: framework/premium/extensions/adobe-typekit/config.php:4
|
| 1664 |
+
msgid "Adobe Fonts"
|
|
|
|
| 1665 |
msgstr ""
|
| 1666 |
|
| 1667 |
#: framework/premium/extensions/adobe-typekit/config.php:5
|
| 1668 |
msgid ""
|
| 1669 |
+
"Connect your Adobe Fonts project and use the selected fonts throughout "
|
| 1670 |
+
"Blocksy and your favorite page builder."
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1671 |
msgstr ""
|
| 1672 |
|
| 1673 |
#: framework/premium/extensions/code-snippets/config.php:5
|
| 1674 |
msgid ""
|
| 1675 |
+
"Inject custom code snippets throughout your website. The extension works "
|
| 1676 |
+
"globally or on a per post/page basis."
|
| 1677 |
msgstr ""
|
| 1678 |
|
| 1679 |
#: framework/premium/extensions/code-snippets/extension.php:38,
|
| 1716 |
|
| 1717 |
#: framework/premium/extensions/custom-fonts/config.php:4
|
| 1718 |
msgid ""
|
| 1719 |
+
"Upload an unlimited number of custom fonts or variable fonts and use them "
|
| 1720 |
+
"throughout Blocksy and your favorite page builder."
|
| 1721 |
msgstr ""
|
| 1722 |
|
| 1723 |
#: framework/premium/extensions/local-google-fonts/config.php:4
|
| 1724 |
+
msgid ""
|
| 1725 |
+
"Serve your chosen Google Fonts from your own web server. This will increase "
|
| 1726 |
+
"the loading speed and makes sure your website complies with the privacy "
|
| 1727 |
+
"regulations."
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1728 |
msgstr ""
|
| 1729 |
|
| 1730 |
#: framework/premium/extensions/mega-menu/config.php:5
|
| 1731 |
+
msgid ""
|
| 1732 |
+
"Create beautiful personalised menus that set your website apart from the "
|
| 1733 |
+
"others. Add icons and badges to your entries and even add Content Blocks "
|
| 1734 |
+
"inside your dropdowns."
|
| 1735 |
msgstr ""
|
| 1736 |
|
| 1737 |
#: framework/premium/extensions/mega-menu/config.php:9
|
| 1741 |
msgid "Configure"
|
| 1742 |
msgstr ""
|
| 1743 |
|
| 1744 |
+
#: framework/premium/extensions/mega-menu/extension.php:99
|
| 1745 |
msgid "Menu Item Settings"
|
| 1746 |
msgstr ""
|
| 1747 |
|
| 1748 |
+
#: framework/premium/extensions/mega-menu/extension.php:257
|
| 1749 |
msgid "New"
|
| 1750 |
msgstr ""
|
| 1751 |
|
| 1752 |
#: framework/premium/extensions/mega-menu/options.php:16,
|
| 1753 |
+
#: framework/premium/extensions/mega-menu/options.php:528
|
| 1754 |
msgid "Mega Menu Settings"
|
| 1755 |
msgstr ""
|
| 1756 |
|
| 1758 |
msgid "Dropdown Width"
|
| 1759 |
msgstr ""
|
| 1760 |
|
| 1761 |
+
#: framework/premium/extensions/mega-menu/options.php:35,
|
| 1762 |
+
#: framework/premium/extensions/mega-menu/options.php:48
|
| 1763 |
msgid "Content Width"
|
| 1764 |
msgstr ""
|
| 1765 |
|
| 1766 |
+
#: framework/premium/extensions/mega-menu/options.php:36,
|
| 1767 |
+
#: framework/premium/extensions/mega-menu/options.php:57
|
| 1768 |
msgid "Full Width"
|
| 1769 |
msgstr ""
|
| 1770 |
|
| 1772 |
msgid "Custom Width"
|
| 1773 |
msgstr ""
|
| 1774 |
|
| 1775 |
+
#: framework/premium/extensions/mega-menu/options.php:56
|
| 1776 |
+
msgid "Default Width"
|
| 1777 |
+
msgstr ""
|
| 1778 |
+
|
| 1779 |
+
#: framework/premium/extensions/mega-menu/options.php:85
|
| 1780 |
msgid "Columns"
|
| 1781 |
msgstr ""
|
| 1782 |
|
| 1783 |
+
#: framework/premium/extensions/mega-menu/options.php:320
|
| 1784 |
msgid "Custom Content"
|
| 1785 |
msgstr ""
|
| 1786 |
|
| 1787 |
+
#: framework/premium/extensions/mega-menu/options.php:324
|
| 1788 |
msgid "Content Type"
|
| 1789 |
msgstr ""
|
| 1790 |
|
| 1791 |
+
#: framework/premium/extensions/mega-menu/options.php:331
|
| 1792 |
msgid "Default (Menu Item)"
|
| 1793 |
msgstr ""
|
| 1794 |
|
| 1795 |
+
#: framework/premium/extensions/mega-menu/options.php:332
|
| 1796 |
msgid "Custom Text"
|
| 1797 |
msgstr ""
|
| 1798 |
|
| 1799 |
+
#: framework/premium/extensions/mega-menu/options.php:333
|
| 1800 |
msgid "Content Block/Hook"
|
| 1801 |
msgstr ""
|
| 1802 |
|
| 1803 |
+
#: framework/premium/extensions/mega-menu/options.php:392,
|
| 1804 |
+
#: framework/premium/extensions/mega-menu/options.php:708
|
| 1805 |
msgid "Item Label Settings"
|
| 1806 |
msgstr ""
|
| 1807 |
|
| 1808 |
+
#: framework/premium/extensions/mega-menu/options.php:397
|
| 1809 |
msgid "Item Label"
|
| 1810 |
msgstr ""
|
| 1811 |
|
| 1812 |
+
#: framework/premium/extensions/mega-menu/options.php:405
|
| 1813 |
msgid "Enabled"
|
| 1814 |
msgstr ""
|
| 1815 |
|
| 1816 |
+
#: framework/premium/extensions/mega-menu/options.php:406,
|
| 1817 |
+
#: framework/premium/features/content-blocks/options/404.php:104,
|
| 1818 |
+
#: framework/premium/features/content-blocks/options/header.php:108,
|
| 1819 |
+
#: framework/premium/features/content-blocks/options/hook.php:108
|
| 1820 |
msgid "Disabled"
|
| 1821 |
msgstr ""
|
| 1822 |
|
| 1823 |
+
#: framework/premium/extensions/mega-menu/options.php:407
|
| 1824 |
msgid "Heading"
|
| 1825 |
msgstr ""
|
| 1826 |
|
| 1827 |
+
#: framework/premium/extensions/mega-menu/options.php:413
|
| 1828 |
msgid "Label Link"
|
| 1829 |
msgstr ""
|
| 1830 |
|
| 1831 |
+
#: framework/premium/extensions/mega-menu/options.php:479,
|
| 1832 |
+
#: framework/premium/extensions/mega-menu/options.php:790
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1833 |
msgid "Menu Badge Settings"
|
| 1834 |
msgstr ""
|
| 1835 |
|
| 1836 |
+
#: framework/premium/extensions/mega-menu/options.php:491,
|
| 1837 |
#: framework/extensions/widgets/widgets/ct-contact-info/options.php:23,
|
| 1838 |
#: framework/features/header/items/account/options.php:277
|
| 1839 |
msgid "Text"
|
| 1840 |
msgstr ""
|
| 1841 |
|
| 1842 |
+
#: framework/premium/extensions/mega-menu/options.php:497,
|
| 1843 |
#: framework/premium/extensions/woocommerce-extra/offcanvas-filter.php:260
|
| 1844 |
msgid "Vertical Alignment"
|
| 1845 |
msgstr ""
|
| 1846 |
|
| 1847 |
+
#: framework/premium/extensions/mega-menu/options.php:532
|
| 1848 |
msgid "Background"
|
| 1849 |
msgstr ""
|
| 1850 |
|
| 1851 |
+
#: framework/premium/extensions/mega-menu/options.php:546
|
| 1852 |
msgid "Link Color"
|
| 1853 |
msgstr ""
|
| 1854 |
|
| 1855 |
+
#: framework/premium/extensions/mega-menu/options.php:566,
|
| 1856 |
#: framework/premium/extensions/woocommerce-extra/offcanvas-filter.php:144,
|
| 1857 |
+
#: framework/premium/features/premium-header/items/contacts/options.php:417,
|
| 1858 |
+
#: framework/premium/features/premium-header/items/contacts/options.php:459,
|
| 1859 |
+
#: framework/premium/features/premium-header/items/contacts/options.php:499
|
| 1860 |
msgid "Link Initial"
|
| 1861 |
msgstr ""
|
| 1862 |
|
| 1863 |
+
#: framework/premium/extensions/mega-menu/options.php:571
|
| 1864 |
msgid "Link Hover/Active"
|
| 1865 |
msgstr ""
|
| 1866 |
|
| 1867 |
+
#: framework/premium/extensions/mega-menu/options.php:576
|
| 1868 |
msgid "Background Hover"
|
| 1869 |
msgstr ""
|
| 1870 |
|
| 1871 |
+
#: framework/premium/extensions/mega-menu/options.php:583,
|
| 1872 |
+
#: framework/premium/extensions/mega-menu/options.php:717
|
| 1873 |
msgid "Heading Color"
|
| 1874 |
msgstr ""
|
| 1875 |
|
| 1876 |
+
#: framework/premium/extensions/mega-menu/options.php:595,
|
| 1877 |
+
#: framework/premium/extensions/mega-menu/options.php:615,
|
| 1878 |
+
#: framework/premium/extensions/mega-menu/options.php:729
|
| 1879 |
msgid "Initial Color"
|
| 1880 |
msgstr ""
|
| 1881 |
|
| 1882 |
+
#: framework/premium/extensions/mega-menu/options.php:603
|
| 1883 |
msgid "Text Color"
|
| 1884 |
msgstr ""
|
| 1885 |
|
| 1886 |
+
#: framework/premium/extensions/mega-menu/options.php:622,
|
| 1887 |
+
#: framework/premium/extensions/shortcuts/customizer.php:782,
|
| 1888 |
#: framework/premium/features/premium-header/items/language-switcher/options.php:432,
|
| 1889 |
+
#: framework/premium/features/premium-header/items/search-input/options.php:815
|
| 1890 |
msgid "Items Divider"
|
| 1891 |
msgstr ""
|
| 1892 |
|
| 1893 |
+
#: framework/premium/extensions/mega-menu/options.php:637
|
| 1894 |
msgid "Columns Divider"
|
| 1895 |
msgstr ""
|
| 1896 |
|
| 1897 |
+
#: framework/premium/extensions/mega-menu/options.php:652,
|
| 1898 |
+
#: framework/premium/features/premium-header/items/search-input/options.php:797
|
| 1899 |
msgid "Dropdown Shadow"
|
| 1900 |
msgstr ""
|
| 1901 |
|
| 1902 |
+
#: framework/premium/extensions/mega-menu/options.php:684
|
| 1903 |
msgid "Column Settings"
|
| 1904 |
msgstr ""
|
| 1905 |
|
| 1906 |
+
#: framework/premium/extensions/mega-menu/options.php:688
|
| 1907 |
msgid "Column Spacing"
|
| 1908 |
msgstr ""
|
| 1909 |
|
| 1910 |
+
#: framework/premium/extensions/mega-menu/options.php:740,
|
| 1911 |
#: framework/features/header/items/account/options.php:660,
|
| 1912 |
#: framework/features/header/items/account/options.php:688,
|
| 1913 |
#: framework/features/header/items/account/options.php:719,
|
| 1914 |
#: framework/features/header/items/account/options.php:748,
|
| 1915 |
+
#: framework/premium/extensions/woocommerce-extra/includes/wish-list-options.php:135,
|
| 1916 |
+
#: framework/premium/extensions/woocommerce-extra/includes/wish-list-options.php:212,
|
| 1917 |
+
#: framework/premium/extensions/woocommerce-extra/includes/wish-list-options.php:288,
|
| 1918 |
#: framework/premium/extensions/woocommerce-extra/header-items/wish-list/options.php:273,
|
| 1919 |
#: framework/premium/extensions/woocommerce-extra/header-items/wish-list/options.php:301,
|
| 1920 |
#: framework/premium/extensions/woocommerce-extra/header-items/wish-list/options.php:332,
|
| 1926 |
msgid "Icon Color"
|
| 1927 |
msgstr ""
|
| 1928 |
|
| 1929 |
+
#: framework/premium/extensions/mega-menu/options.php:770
|
| 1930 |
+
msgid "Active"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1931 |
msgstr ""
|
| 1932 |
|
| 1933 |
+
#: framework/premium/extensions/post-types-extra/config.php:4
|
| 1934 |
+
msgid "Post Types Extra"
|
|
|
|
| 1935 |
msgstr ""
|
| 1936 |
|
| 1937 |
+
#: framework/premium/extensions/post-types-extra/config.php:5
|
| 1938 |
+
msgid ""
|
| 1939 |
+
"Enables support for Custom Fields inside archive cards and single page post "
|
| 1940 |
+
"title, adds a reading progress bar for your posts and lets you set featured "
|
| 1941 |
+
"images and colors for your categories archives."
|
| 1942 |
msgstr ""
|
| 1943 |
|
| 1944 |
+
#: framework/premium/extensions/post-types-extra/readme.php:4
|
| 1945 |
+
msgid ""
|
| 1946 |
+
"After activating this extension you will be able to enable the read progress "
|
| 1947 |
+
"bar for your single posts, add a featured image and set different colors to "
|
| 1948 |
+
"each taxonomy, add custom fields to your archive cards or page/post title "
|
| 1949 |
+
"section with the help of ACF, MetaBox and Toolset plugins, and also add "
|
| 1950 |
+
"taxonomies archive filters."
|
| 1951 |
msgstr ""
|
| 1952 |
|
| 1953 |
+
#: framework/premium/extensions/post-types-extra/readme.php:10
|
| 1954 |
+
msgid "Custom Fields"
|
| 1955 |
+
msgstr ""
|
| 1956 |
+
|
| 1957 |
+
#: framework/premium/extensions/post-types-extra/readme.php:14
|
| 1958 |
+
msgid ""
|
| 1959 |
+
"After setting up your custom fields you will be able to output them from %s "
|
| 1960 |
+
"or from %2s."
|
| 1961 |
+
msgstr ""
|
| 1962 |
+
|
| 1963 |
+
#: framework/premium/extensions/post-types-extra/readme.php:17
|
| 1964 |
+
msgid "Customizer ➝ Blog Posts ➝ Card Options"
|
| 1965 |
+
msgstr ""
|
| 1966 |
+
|
| 1967 |
+
#: framework/premium/extensions/post-types-extra/readme.php:21
|
| 1968 |
+
msgid "Customizer ➝ Single Posts ➝ Post Title"
|
| 1969 |
+
msgstr ""
|
| 1970 |
+
|
| 1971 |
+
#: framework/premium/extensions/post-types-extra/readme.php:29
|
| 1972 |
+
msgid "Taxonomies Filters"
|
| 1973 |
+
msgstr ""
|
| 1974 |
+
|
| 1975 |
+
#: framework/premium/extensions/post-types-extra/readme.php:33
|
| 1976 |
+
msgid "You can enable the taxonomies filters from %s."
|
| 1977 |
+
msgstr ""
|
| 1978 |
+
|
| 1979 |
+
#: framework/premium/extensions/post-types-extra/readme.php:36
|
| 1980 |
+
msgid "Customizer ➝ Blog Posts ➝ Filters"
|
| 1981 |
+
msgstr ""
|
| 1982 |
+
|
| 1983 |
+
#: framework/premium/extensions/post-types-extra/readme.php:44
|
| 1984 |
+
msgid "Read Progress Bar"
|
| 1985 |
+
msgstr ""
|
| 1986 |
+
|
| 1987 |
+
#: framework/premium/extensions/post-types-extra/readme.php:48
|
| 1988 |
+
msgid "This options could be enabled from %s."
|
| 1989 |
+
msgstr ""
|
| 1990 |
+
|
| 1991 |
+
#: framework/premium/extensions/post-types-extra/readme.php:51
|
| 1992 |
+
msgid "Customizer ➝ Single Posts ➝ Read Progress Bar"
|
| 1993 |
+
msgstr ""
|
| 1994 |
+
|
| 1995 |
+
#: framework/premium/extensions/post-types-extra/readme.php:59
|
| 1996 |
+
msgid "Taxonomy Featured Image & Custom Colors"
|
| 1997 |
+
msgstr ""
|
| 1998 |
+
|
| 1999 |
+
#: framework/premium/extensions/post-types-extra/readme.php:63
|
| 2000 |
+
msgid ""
|
| 2001 |
+
"To customize these options simply navigate to %s and edit one of your "
|
| 2002 |
+
"categories."
|
| 2003 |
+
msgstr ""
|
| 2004 |
+
|
| 2005 |
+
#: framework/premium/extensions/post-types-extra/readme.php:66
|
| 2006 |
+
msgid "Dashboard ➝ Posts ➝ Categories"
|
| 2007 |
+
msgstr ""
|
| 2008 |
+
|
| 2009 |
+
#: framework/premium/extensions/shortcuts/config.php:5
|
| 2010 |
+
msgid ""
|
| 2011 |
+
"Easily turn your websites into mobile first experiences. You can easily add "
|
| 2012 |
+
"the most important actions at the bottom of the screen for easy access."
|
| 2013 |
+
msgstr ""
|
| 2014 |
+
|
| 2015 |
+
#: framework/premium/extensions/shortcuts/customizer.php:12,
|
| 2016 |
+
#: framework/premium/extensions/shortcuts/customizer.php:35,
|
| 2017 |
+
#: framework/premium/extensions/shortcuts/customizer.php:501,
|
| 2018 |
+
#: framework/premium/extensions/shortcuts/views/bar.php:25
|
| 2019 |
+
msgid "Home"
|
| 2020 |
+
msgstr ""
|
| 2021 |
+
|
| 2022 |
+
#: framework/premium/extensions/shortcuts/customizer.php:63,
|
| 2023 |
+
#: framework/premium/extensions/shortcuts/customizer.php:86,
|
| 2024 |
+
#: framework/premium/extensions/shortcuts/customizer.php:510,
|
| 2025 |
#: framework/extensions/widgets/widgets/ct-contact-info/options.php:88,
|
| 2026 |
#: framework/premium/extensions/shortcuts/views/bar.php:26,
|
| 2027 |
#: framework/premium/features/premium-header/items/contacts/options.php:69
|
| 2028 |
msgid "Phone"
|
| 2029 |
msgstr ""
|
| 2030 |
|
| 2031 |
+
#: framework/premium/extensions/shortcuts/customizer.php:177,
|
| 2032 |
+
#: framework/premium/extensions/shortcuts/customizer.php:200,
|
| 2033 |
#: framework/premium/extensions/shortcuts/views/bar.php:28
|
| 2034 |
+
msgid "Scroll Top"
|
| 2035 |
msgstr ""
|
| 2036 |
|
| 2037 |
#: framework/premium/extensions/shortcuts/customizer.php:292,
|
| 2038 |
+
#: framework/premium/extensions/shortcuts/customizer.php:315,
|
| 2039 |
+
#: framework/premium/extensions/shortcuts/views/bar.php:29
|
| 2040 |
+
msgid "Cart"
|
| 2041 |
msgstr ""
|
| 2042 |
|
| 2043 |
#: framework/premium/extensions/shortcuts/customizer.php:343,
|
| 2044 |
+
#: framework/premium/extensions/shortcuts/customizer.php:366
|
| 2045 |
+
msgid "Shop"
|
| 2046 |
+
msgstr ""
|
| 2047 |
+
|
| 2048 |
+
#: framework/premium/extensions/shortcuts/customizer.php:394,
|
| 2049 |
+
#: framework/premium/extensions/shortcuts/customizer.php:417,
|
| 2050 |
+
#: framework/premium/extensions/woocommerce-extra/readme.php:70,
|
| 2051 |
#: framework/premium/extensions/woocommerce-extra/header-items/wish-list/config.php:4,
|
| 2052 |
#: framework/premium/extensions/woocommerce-extra/header-items/wish-list/options.php:109,
|
| 2053 |
#: framework/premium/extensions/woocommerce-extra/header-items/wish-list/view.php:88
|
| 2054 |
msgid "Wishlist"
|
| 2055 |
msgstr ""
|
| 2056 |
|
| 2057 |
+
#: framework/premium/extensions/shortcuts/customizer.php:495
|
| 2058 |
msgid "Shortcuts"
|
| 2059 |
msgstr ""
|
| 2060 |
|
| 2061 |
+
#: framework/premium/extensions/shortcuts/customizer.php:536,
|
| 2062 |
#: framework/features/header/items/account/options.php:216,
|
| 2063 |
#: framework/features/header/items/account/options.php:422,
|
| 2064 |
#: framework/premium/extensions/woocommerce-extra/header-items/wish-list/options.php:61
|
| 2065 |
msgid "Label Visibility"
|
| 2066 |
msgstr ""
|
| 2067 |
|
| 2068 |
+
#: framework/premium/extensions/shortcuts/customizer.php:576,
|
| 2069 |
#: framework/features/header/items/account/options.php:252,
|
| 2070 |
#: framework/features/header/items/account/options.php:458,
|
| 2071 |
#: framework/premium/extensions/woocommerce-extra/header-items/wish-list/options.php:91
|
| 2072 |
msgid "Label Position"
|
| 2073 |
msgstr ""
|
| 2074 |
|
| 2075 |
+
#: framework/premium/extensions/shortcuts/customizer.php:585,
|
| 2076 |
#: framework/premium/extensions/woocommerce-extra/floating-cart.php:25,
|
| 2077 |
+
#: framework/premium/features/content-blocks/hooks-manager.php:317,
|
| 2078 |
#: framework/features/header/items/account/options.php:261,
|
| 2079 |
#: framework/features/header/items/account/options.php:467,
|
| 2080 |
+
#: framework/premium/features/content-blocks/options/hook.php:302,
|
| 2081 |
#: framework/premium/extensions/woocommerce-extra/header-items/wish-list/options.php:100
|
| 2082 |
msgid "Bottom"
|
| 2083 |
msgstr ""
|
| 2084 |
|
| 2085 |
+
#: framework/premium/extensions/shortcuts/customizer.php:596,
|
| 2086 |
#: framework/features/header/items/account/options.php:198,
|
| 2087 |
#: framework/features/header/items/account/options.php:404,
|
| 2088 |
#: framework/premium/extensions/woocommerce-extra/header-items/wish-list/options.php:39
|
| 2089 |
msgid "Icon Size"
|
| 2090 |
msgstr ""
|
| 2091 |
|
| 2092 |
+
#: framework/premium/extensions/shortcuts/customizer.php:606
|
| 2093 |
msgid "Container Height"
|
| 2094 |
msgstr ""
|
| 2095 |
|
| 2096 |
+
#: framework/premium/extensions/shortcuts/customizer.php:621
|
| 2097 |
msgid "Container Max Width"
|
| 2098 |
msgstr ""
|
| 2099 |
|
| 2100 |
+
#: framework/premium/extensions/shortcuts/customizer.php:645
|
| 2101 |
msgid "Scroll Interaction"
|
| 2102 |
msgstr ""
|
| 2103 |
|
| 2104 |
+
#: framework/premium/extensions/shortcuts/customizer.php:651
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 2105 |
msgid "Hide"
|
| 2106 |
msgstr ""
|
| 2107 |
|
| 2108 |
+
#: framework/premium/extensions/shortcuts/customizer.php:693
|
| 2109 |
msgid "Shortcuts Bar Display Conditions"
|
| 2110 |
msgstr ""
|
| 2111 |
|
| 2112 |
+
#: framework/premium/extensions/shortcuts/customizer.php:694
|
| 2113 |
msgid "Add one or more conditions to display the shortcuts bar."
|
| 2114 |
msgstr ""
|
| 2115 |
|
| 2116 |
+
#: framework/premium/extensions/shortcuts/customizer.php:708,
|
| 2117 |
+
#: framework/premium/extensions/post-types-extra/includes/filtering/customizer.php:173,
|
| 2118 |
+
#: framework/premium/features/premium-header/items/contacts/options.php:349,
|
| 2119 |
#: framework/premium/features/premium-header/items/language-switcher/options.php:192,
|
| 2120 |
#: framework/premium/features/premium-header/items/language-switcher/options.php:376
|
| 2121 |
msgid "Font"
|
| 2122 |
msgstr ""
|
| 2123 |
|
| 2124 |
+
#: framework/premium/extensions/shortcuts/customizer.php:750,
|
| 2125 |
+
#: framework/premium/features/premium-header/items/contacts/options.php:529,
|
| 2126 |
+
#: framework/premium/features/premium-header/items/contacts/options.php:558,
|
| 2127 |
+
#: framework/premium/features/premium-header/items/contacts/options.php:589,
|
| 2128 |
+
#: framework/premium/features/premium-header/items/contacts/options.php:619
|
| 2129 |
msgid "Icons Color"
|
| 2130 |
msgstr ""
|
| 2131 |
|
| 2132 |
+
#: framework/premium/extensions/shortcuts/customizer.php:802
|
| 2133 |
msgid "Items Divider Height"
|
| 2134 |
msgstr ""
|
| 2135 |
|
| 2136 |
+
#: framework/premium/extensions/shortcuts/customizer.php:816,
|
| 2137 |
#: framework/premium/extensions/woocommerce-extra/floating-cart.php:123,
|
| 2138 |
+
#: framework/premium/features/content-blocks/options/popup.php:368,
|
| 2139 |
#: framework/premium/features/premium-header/items/language-switcher/options.php:446
|
| 2140 |
msgid "Shadow"
|
| 2141 |
msgstr ""
|
| 2142 |
|
| 2143 |
+
#: framework/premium/extensions/shortcuts/customizer.php:856
|
| 2144 |
msgid "Container Border Radius"
|
| 2145 |
msgstr ""
|
| 2146 |
|
|
|
|
|
|
|
|
|
|
|
|
|
| 2147 |
#: framework/premium/extensions/sidebars/config.php:5
|
| 2148 |
msgid ""
|
| 2149 |
+
"Create unlimited personalized sets of widget areas and display them on any "
|
| 2150 |
+
"page or post using our conditional logic functionality."
|
| 2151 |
msgstr ""
|
| 2152 |
|
| 2153 |
#: framework/premium/extensions/sidebars/config.php:9
|
| 2155 |
msgstr ""
|
| 2156 |
|
| 2157 |
#: framework/premium/extensions/sidebars/form.php:3
|
| 2158 |
+
#: framework/premium/extensions/sidebars/static/js/main.js:42
|
| 2159 |
msgid "Create Sidebar/Widget Area"
|
| 2160 |
msgstr ""
|
| 2161 |
|
| 2166 |
msgstr ""
|
| 2167 |
|
| 2168 |
#: framework/premium/extensions/sidebars/form.php:16
|
| 2169 |
+
#: framework/premium/extensions/sidebars/static/js/main.js:58
|
| 2170 |
msgid "Create Sidebar"
|
| 2171 |
msgstr ""
|
| 2172 |
|
| 2175 |
msgstr ""
|
| 2176 |
|
| 2177 |
#: framework/premium/extensions/white-label/config.php:4
|
| 2178 |
+
msgid ""
|
| 2179 |
+
"Replace Blocksy's branding with your own. Easily hide licensing info and "
|
| 2180 |
+
"other sections of the theme and companion plugin from your clients and make "
|
| 2181 |
+
"your final product look more professional."
|
|
|
|
| 2182 |
msgstr ""
|
| 2183 |
|
| 2184 |
#: framework/premium/extensions/woocommerce-extra/config.php:5
|
| 2185 |
+
msgid ""
|
| 2186 |
+
"Make the shopping experience better for your visitors! Add features such as "
|
| 2187 |
+
"Product Quick View, Wishlist functionality and a Floating Add to Cart "
|
| 2188 |
+
"button. Customize the single product gallery/slider and the layout."
|
| 2189 |
msgstr ""
|
| 2190 |
|
| 2191 |
#: framework/premium/extensions/woocommerce-extra/customizer.php:5
|
| 2192 |
+
msgid "Quick View Button"
|
| 2193 |
+
msgstr ""
|
| 2194 |
+
|
| 2195 |
+
#: framework/premium/extensions/woocommerce-extra/customizer.php:21
|
| 2196 |
+
msgid "Trigger On"
|
| 2197 |
+
msgstr ""
|
| 2198 |
+
|
| 2199 |
+
#: framework/premium/extensions/woocommerce-extra/customizer.php:29
|
| 2200 |
+
msgid "Button click"
|
| 2201 |
+
msgstr ""
|
| 2202 |
+
|
| 2203 |
+
#: framework/premium/extensions/woocommerce-extra/customizer.php:30
|
| 2204 |
+
msgid "Image click"
|
| 2205 |
+
msgstr ""
|
| 2206 |
+
|
| 2207 |
+
#: framework/premium/extensions/woocommerce-extra/customizer.php:31
|
| 2208 |
+
msgid "Card click"
|
| 2209 |
msgstr ""
|
| 2210 |
|
| 2211 |
+
#: framework/premium/extensions/woocommerce-extra/extension.php:82,
|
| 2212 |
#: framework/premium/extensions/woocommerce-extra/offcanvas-filter.php:196,
|
| 2213 |
+
#: framework/features/header/items/account/options.php:177,
|
| 2214 |
+
#: framework/features/header/items/account/options.php:383,
|
| 2215 |
#: framework/premium/extensions/woocommerce-extra/header-items/wish-list/options.php:33
|
| 2216 |
msgid "Type 3"
|
| 2217 |
msgstr ""
|
| 2218 |
|
| 2219 |
+
#: framework/premium/extensions/woocommerce-extra/extension.php:87,
|
| 2220 |
+
#: framework/premium/extensions/woocommerce-extra/offcanvas-filter.php:201,
|
| 2221 |
+
#: framework/features/header/items/account/options.php:182,
|
| 2222 |
+
#: framework/features/header/items/account/options.php:388
|
| 2223 |
msgid "Type 4"
|
| 2224 |
msgstr ""
|
| 2225 |
|
| 2226 |
+
#: framework/premium/extensions/woocommerce-extra/extension.php:110,
|
| 2227 |
+
#: framework/premium/extensions/woocommerce-extra/extension.php:129
|
| 2228 |
msgid "Number of Columns"
|
| 2229 |
msgstr ""
|
| 2230 |
|
| 2231 |
+
#: framework/premium/extensions/woocommerce-extra/extension.php:607
|
| 2232 |
msgid "Available Filters"
|
| 2233 |
msgstr ""
|
| 2234 |
|
| 2235 |
+
#: framework/premium/extensions/woocommerce-extra/extension.php:685
|
| 2236 |
msgid "Quick view title before"
|
| 2237 |
msgstr ""
|
| 2238 |
|
| 2239 |
+
#: framework/premium/extensions/woocommerce-extra/extension.php:690
|
| 2240 |
msgid "Quick view title after"
|
| 2241 |
msgstr ""
|
| 2242 |
|
| 2243 |
+
#: framework/premium/extensions/woocommerce-extra/extension.php:695
|
| 2244 |
msgid "Quick view price before"
|
| 2245 |
msgstr ""
|
| 2246 |
|
| 2247 |
+
#: framework/premium/extensions/woocommerce-extra/extension.php:700
|
| 2248 |
msgid "Quick view price after"
|
| 2249 |
msgstr ""
|
| 2250 |
|
| 2251 |
+
#: framework/premium/extensions/woocommerce-extra/extension.php:705
|
| 2252 |
msgid "Quick view summary before"
|
| 2253 |
msgstr ""
|
| 2254 |
|
| 2255 |
+
#: framework/premium/extensions/woocommerce-extra/extension.php:710
|
| 2256 |
msgid "Quick view summary after"
|
| 2257 |
msgstr ""
|
| 2258 |
|
| 2259 |
#: framework/premium/extensions/woocommerce-extra/floating-cart.php:4,
|
| 2260 |
+
#: framework/premium/extensions/woocommerce-extra/readme.php:25
|
| 2261 |
msgid "Floating Cart"
|
| 2262 |
msgstr ""
|
| 2263 |
|
| 2266 |
msgstr ""
|
| 2267 |
|
| 2268 |
#: framework/premium/extensions/woocommerce-extra/floating-cart.php:24,
|
| 2269 |
+
#: framework/premium/features/content-blocks/hooks-manager.php:279,
|
| 2270 |
+
#: framework/premium/features/content-blocks/options/hook.php:301
|
| 2271 |
msgid "Top"
|
| 2272 |
msgstr ""
|
| 2273 |
|
| 2279 |
msgid "Floating Cart Visibility"
|
| 2280 |
msgstr ""
|
| 2281 |
|
| 2282 |
+
#: framework/premium/extensions/woocommerce-extra/helpers.php:102
|
| 2283 |
msgid "Go to product page"
|
| 2284 |
msgstr ""
|
| 2285 |
|
| 2286 |
+
#: framework/premium/extensions/woocommerce-extra/helpers.php:322
|
| 2287 |
msgid "Filter"
|
| 2288 |
msgstr ""
|
| 2289 |
|
| 2320 |
msgstr ""
|
| 2321 |
|
| 2322 |
#: framework/premium/extensions/woocommerce-extra/offcanvas-filter.php:138,
|
| 2323 |
+
#: framework/premium/features/premium-header/items/contacts/options.php:411,
|
| 2324 |
+
#: framework/premium/features/premium-header/items/contacts/options.php:454,
|
| 2325 |
+
#: framework/premium/features/premium-header/items/contacts/options.php:494
|
| 2326 |
msgid "Text Initial"
|
| 2327 |
msgstr ""
|
| 2328 |
|
| 2329 |
#: framework/premium/extensions/woocommerce-extra/offcanvas-filter.php:149,
|
| 2330 |
+
#: framework/premium/features/premium-header/items/contacts/options.php:423,
|
| 2331 |
+
#: framework/premium/features/premium-header/items/contacts/options.php:464,
|
| 2332 |
+
#: framework/premium/features/premium-header/items/contacts/options.php:504
|
| 2333 |
msgid "Link Hover"
|
| 2334 |
msgstr ""
|
| 2335 |
|
| 2370 |
msgstr ""
|
| 2371 |
|
| 2372 |
#: framework/premium/extensions/woocommerce-extra/offcanvas-filter.php:334,
|
| 2373 |
+
#: framework/features/header/items/account/options.php:958
|
| 2374 |
msgid "Close Icon Color"
|
| 2375 |
msgstr ""
|
| 2376 |
|
| 2377 |
#: framework/premium/extensions/woocommerce-extra/offcanvas-filter.php:364,
|
| 2378 |
+
#: framework/features/header/items/account/options.php:990
|
| 2379 |
msgid "Close Icon Background"
|
| 2380 |
msgstr ""
|
| 2381 |
|
| 2385 |
"have these features:"
|
| 2386 |
msgstr ""
|
| 2387 |
|
| 2388 |
+
#: framework/premium/extensions/woocommerce-extra/readme.php:10
|
| 2389 |
msgid "Product Quick View"
|
| 2390 |
msgstr ""
|
| 2391 |
|
| 2392 |
+
#: framework/premium/extensions/woocommerce-extra/readme.php:14,
|
| 2393 |
+
#: framework/premium/extensions/woocommerce-extra/readme.php:29,
|
| 2394 |
+
#: framework/premium/extensions/woocommerce-extra/readme.php:44,
|
| 2395 |
+
#: framework/premium/extensions/woocommerce-extra/readme.php:59,
|
| 2396 |
+
#: framework/premium/extensions/woocommerce-extra/readme.php:74
|
| 2397 |
+
msgid "Navigate to %s."
|
| 2398 |
msgstr ""
|
| 2399 |
|
| 2400 |
+
#: framework/premium/extensions/woocommerce-extra/readme.php:17
|
| 2401 |
msgid "Customizer ➝ WooCommerce ➝ Product Archives ➝ Card Options ➝ Quick View"
|
| 2402 |
msgstr ""
|
| 2403 |
|
| 2404 |
+
#: framework/premium/extensions/woocommerce-extra/readme.php:32
|
| 2405 |
msgid "Customizer ➝ WooCommerce ➝ Single Product ➝ Floating Cart"
|
| 2406 |
msgstr ""
|
| 2407 |
|
| 2408 |
+
#: framework/premium/extensions/woocommerce-extra/readme.php:40
|
| 2409 |
+
msgid "Advanced Gallery & Slider"
|
| 2410 |
+
msgstr ""
|
| 2411 |
+
|
| 2412 |
+
#: framework/premium/extensions/woocommerce-extra/readme.php:47
|
| 2413 |
+
msgid "Customizer ➝ WooCommerce ➝ Single Product ➝ Gallery Options"
|
| 2414 |
+
msgstr ""
|
| 2415 |
+
|
| 2416 |
+
#: framework/premium/extensions/woocommerce-extra/readme.php:55
|
| 2417 |
+
msgid "Share Box"
|
| 2418 |
+
msgstr ""
|
| 2419 |
+
|
| 2420 |
+
#: framework/premium/extensions/woocommerce-extra/readme.php:62
|
| 2421 |
+
msgid "Customizer ➝ WooCommerce ➝ Single Product ➝ Share Box"
|
| 2422 |
+
msgstr ""
|
| 2423 |
+
|
| 2424 |
+
#: framework/premium/extensions/woocommerce-extra/readme.php:77
|
| 2425 |
+
msgid "Customizer ➝ WooCommerce ➝ General ➝ Products Wishlist"
|
| 2426 |
+
msgstr ""
|
| 2427 |
+
|
| 2428 |
#: framework/premium/features/content-blocks/hooks-manager.php:11
|
| 2429 |
msgid "WP head"
|
| 2430 |
msgstr ""
|
| 2480 |
msgstr ""
|
| 2481 |
|
| 2482 |
#: framework/premium/features/content-blocks/hooks-manager.php:93
|
| 2483 |
+
msgid "Sidebar before"
|
| 2484 |
msgstr ""
|
| 2485 |
|
| 2486 |
#: framework/premium/features/content-blocks/hooks-manager.php:94,
|
| 2487 |
#: framework/premium/features/content-blocks/hooks-manager.php:101,
|
| 2488 |
#: framework/premium/features/content-blocks/hooks-manager.php:108,
|
| 2489 |
+
#: framework/premium/features/content-blocks/hooks-manager.php:115
|
| 2490 |
+
msgid "Left/Right sidebar"
|
|
|
|
|
|
|
|
|
|
| 2491 |
msgstr ""
|
| 2492 |
|
| 2493 |
#: framework/premium/features/content-blocks/hooks-manager.php:100
|
| 2494 |
+
msgid "Sidebar start"
|
| 2495 |
msgstr ""
|
| 2496 |
|
| 2497 |
#: framework/premium/features/content-blocks/hooks-manager.php:107
|
| 2498 |
+
msgid "Sidebar end"
|
| 2499 |
msgstr ""
|
| 2500 |
|
| 2501 |
#: framework/premium/features/content-blocks/hooks-manager.php:114
|
| 2502 |
+
msgid "Sidebar after"
|
| 2503 |
msgstr ""
|
| 2504 |
|
| 2505 |
#: framework/premium/features/content-blocks/hooks-manager.php:121
|
| 2506 |
msgid "Dynamic sidebar before"
|
| 2507 |
msgstr ""
|
| 2508 |
|
| 2509 |
+
#: framework/premium/features/content-blocks/hooks-manager.php:122,
|
| 2510 |
+
#: framework/premium/features/content-blocks/hooks-manager.php:129,
|
| 2511 |
+
#: framework/premium/features/content-blocks/hooks-manager.php:137
|
| 2512 |
+
msgid "All widget areas"
|
| 2513 |
+
msgstr ""
|
| 2514 |
+
|
| 2515 |
#: framework/premium/features/content-blocks/hooks-manager.php:128
|
| 2516 |
msgid "Dynamic sidebar"
|
| 2517 |
msgstr ""
|
| 2550 |
msgstr ""
|
| 2551 |
|
| 2552 |
#: framework/premium/features/content-blocks/hooks-manager.php:185,
|
| 2553 |
+
#: framework/premium/features/content-blocks/hooks-manager.php:287
|
| 2554 |
msgid "Top content"
|
| 2555 |
msgstr ""
|
| 2556 |
|
| 2557 |
#: framework/premium/features/content-blocks/hooks-manager.php:193,
|
| 2558 |
+
#: framework/premium/features/content-blocks/hooks-manager.php:309
|
| 2559 |
msgid "Bottom content"
|
| 2560 |
msgstr ""
|
| 2561 |
|
| 2588 |
msgid "After comments"
|
| 2589 |
msgstr ""
|
| 2590 |
|
| 2591 |
+
#: framework/premium/features/content-blocks/hooks-manager.php:251,
|
| 2592 |
+
#: framework/premium/extensions/post-types-extra/includes/dynamic-data.php:413
|
| 2593 |
+
msgid "Before"
|
| 2594 |
msgstr ""
|
| 2595 |
|
| 2596 |
#: framework/premium/features/content-blocks/hooks-manager.php:252,
|
| 2597 |
#: framework/premium/features/content-blocks/hooks-manager.php:259
|
| 2598 |
+
msgid "Loop"
|
| 2599 |
+
msgstr ""
|
| 2600 |
+
|
| 2601 |
+
#: framework/premium/features/content-blocks/hooks-manager.php:258,
|
| 2602 |
+
#: framework/premium/extensions/post-types-extra/includes/dynamic-data.php:420
|
| 2603 |
+
msgid "After"
|
| 2604 |
+
msgstr ""
|
| 2605 |
+
|
| 2606 |
+
#: framework/premium/features/content-blocks/hooks-manager.php:265
|
| 2607 |
+
msgid "Start"
|
| 2608 |
+
msgstr ""
|
| 2609 |
+
|
| 2610 |
+
#: framework/premium/features/content-blocks/hooks-manager.php:266,
|
| 2611 |
+
#: framework/premium/features/content-blocks/hooks-manager.php:273
|
| 2612 |
msgid "Loop card"
|
| 2613 |
msgstr ""
|
| 2614 |
|
| 2615 |
+
#: framework/premium/features/content-blocks/hooks-manager.php:272
|
| 2616 |
msgid "End"
|
| 2617 |
msgstr ""
|
| 2618 |
|
| 2619 |
+
#: framework/premium/features/content-blocks/hooks-manager.php:295
|
| 2620 |
msgid "After certain number of blocks"
|
| 2621 |
msgstr ""
|
| 2622 |
|
| 2623 |
+
#: framework/premium/features/content-blocks/hooks-manager.php:302
|
| 2624 |
msgid "Before certain number of headings"
|
| 2625 |
msgstr ""
|
| 2626 |
|
| 2627 |
+
#: framework/premium/features/content-blocks/hooks-manager.php:325
|
| 2628 |
msgid "Login form start"
|
| 2629 |
msgstr ""
|
| 2630 |
|
|
|
|
|
|
|
| 2631 |
#: framework/premium/features/content-blocks/hooks-manager.php:326,
|
| 2632 |
#: framework/premium/features/content-blocks/hooks-manager.php:333,
|
| 2633 |
#: framework/premium/features/content-blocks/hooks-manager.php:340,
|
| 2635 |
#: framework/premium/features/content-blocks/hooks-manager.php:354,
|
| 2636 |
#: framework/premium/features/content-blocks/hooks-manager.php:361,
|
| 2637 |
#: framework/premium/features/content-blocks/hooks-manager.php:368,
|
| 2638 |
+
#: framework/premium/features/content-blocks/hooks-manager.php:375,
|
| 2639 |
+
#: framework/premium/features/content-blocks/hooks-manager.php:382,
|
| 2640 |
+
#: framework/premium/features/content-blocks/hooks-manager.php:389
|
| 2641 |
msgid "Auth forms"
|
| 2642 |
msgstr ""
|
| 2643 |
|
| 2644 |
+
#: framework/premium/features/content-blocks/hooks-manager.php:332
|
| 2645 |
msgid "Login form end"
|
| 2646 |
msgstr ""
|
| 2647 |
|
| 2648 |
+
#: framework/premium/features/content-blocks/hooks-manager.php:339
|
| 2649 |
msgid "Login form modal start"
|
| 2650 |
msgstr ""
|
| 2651 |
|
| 2652 |
+
#: framework/premium/features/content-blocks/hooks-manager.php:346
|
| 2653 |
msgid "Login form modal end"
|
| 2654 |
msgstr ""
|
| 2655 |
|
| 2656 |
+
#: framework/premium/features/content-blocks/hooks-manager.php:353
|
| 2657 |
msgid "Register form start"
|
| 2658 |
msgstr ""
|
| 2659 |
|
| 2660 |
+
#: framework/premium/features/content-blocks/hooks-manager.php:360
|
| 2661 |
msgid "Register form end"
|
| 2662 |
msgstr ""
|
| 2663 |
|
| 2664 |
+
#: framework/premium/features/content-blocks/hooks-manager.php:367
|
| 2665 |
msgid "Register form modal start"
|
| 2666 |
msgstr ""
|
| 2667 |
|
| 2668 |
+
#: framework/premium/features/content-blocks/hooks-manager.php:374
|
| 2669 |
msgid "Register form modal end"
|
| 2670 |
msgstr ""
|
| 2671 |
|
| 2672 |
+
#: framework/premium/features/content-blocks/hooks-manager.php:381
|
| 2673 |
msgid "Lost password form modal start"
|
| 2674 |
msgstr ""
|
| 2675 |
|
| 2676 |
+
#: framework/premium/features/content-blocks/hooks-manager.php:388
|
| 2677 |
msgid "Lost password form modal end"
|
| 2678 |
msgstr ""
|
| 2679 |
|
| 2680 |
+
#: framework/premium/features/content-blocks/hooks-manager.php:396
|
| 2681 |
msgid "Before main content"
|
| 2682 |
msgstr ""
|
| 2683 |
|
| 2684 |
+
#: framework/premium/features/content-blocks/hooks-manager.php:402
|
| 2685 |
msgid "After main content"
|
| 2686 |
msgstr ""
|
| 2687 |
|
| 2688 |
+
#: framework/premium/features/content-blocks/hooks-manager.php:405
|
| 2689 |
msgid "WooCommerce Global"
|
| 2690 |
msgstr ""
|
| 2691 |
|
| 2692 |
+
#: framework/premium/features/content-blocks/hooks-manager.php:410
|
| 2693 |
msgid "Archive description"
|
| 2694 |
msgstr ""
|
| 2695 |
|
| 2696 |
+
#: framework/premium/features/content-blocks/hooks-manager.php:415
|
| 2697 |
msgid "Before shop loop"
|
| 2698 |
msgstr ""
|
| 2699 |
|
| 2700 |
+
#: framework/premium/features/content-blocks/hooks-manager.php:432
|
| 2701 |
msgid "Before shop loop item title"
|
| 2702 |
msgstr ""
|
| 2703 |
|
| 2704 |
+
#: framework/premium/features/content-blocks/hooks-manager.php:437
|
| 2705 |
msgid "After shop loop item title"
|
| 2706 |
msgstr ""
|
| 2707 |
|
| 2708 |
+
#: framework/premium/features/content-blocks/hooks-manager.php:442
|
| 2709 |
msgid "Before shop loop item price"
|
| 2710 |
msgstr ""
|
| 2711 |
|
| 2712 |
+
#: framework/premium/features/content-blocks/hooks-manager.php:447
|
| 2713 |
msgid "After shop loop item price"
|
| 2714 |
msgstr ""
|
| 2715 |
|
| 2716 |
+
#: framework/premium/features/content-blocks/hooks-manager.php:452
|
| 2717 |
msgid "After shop loop"
|
| 2718 |
msgstr ""
|
| 2719 |
|
| 2720 |
+
#: framework/premium/features/content-blocks/hooks-manager.php:454
|
| 2721 |
msgid "WooCommerce Archive"
|
| 2722 |
msgstr ""
|
| 2723 |
|
| 2724 |
+
#: framework/premium/features/content-blocks/hooks-manager.php:459
|
| 2725 |
msgid "Before single product"
|
| 2726 |
msgstr ""
|
| 2727 |
|
| 2728 |
+
#: framework/premium/features/content-blocks/hooks-manager.php:477
|
| 2729 |
msgid "Product meta start"
|
| 2730 |
msgstr ""
|
| 2731 |
|
| 2732 |
+
#: framework/premium/features/content-blocks/hooks-manager.php:481
|
| 2733 |
msgid "Product meta end"
|
| 2734 |
msgstr ""
|
| 2735 |
|
| 2736 |
+
#: framework/premium/features/content-blocks/hooks-manager.php:485
|
| 2737 |
msgid "Share"
|
| 2738 |
msgstr ""
|
| 2739 |
|
| 2740 |
+
#: framework/premium/features/content-blocks/hooks-manager.php:489
|
| 2741 |
msgid "After single product"
|
| 2742 |
msgstr ""
|
| 2743 |
|
| 2744 |
+
#: framework/premium/features/content-blocks/hooks-manager.php:495
|
| 2745 |
msgid "Before single product excerpt"
|
| 2746 |
msgstr ""
|
| 2747 |
|
| 2748 |
+
#: framework/premium/features/content-blocks/hooks-manager.php:500
|
| 2749 |
msgid "After single product excerpt"
|
| 2750 |
msgstr ""
|
| 2751 |
|
| 2752 |
+
#: framework/premium/features/content-blocks/hooks-manager.php:505
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 2753 |
msgid "Before single product tabs"
|
| 2754 |
msgstr ""
|
| 2755 |
|
| 2756 |
+
#: framework/premium/features/content-blocks/hooks-manager.php:511
|
| 2757 |
msgid "After single product tabs"
|
| 2758 |
msgstr ""
|
| 2759 |
|
| 2760 |
+
#: framework/premium/features/content-blocks/hooks-manager.php:515
|
| 2761 |
msgid "WooCommerce Product"
|
| 2762 |
msgstr ""
|
| 2763 |
|
| 2764 |
+
#: framework/premium/features/content-blocks/hooks-manager.php:520
|
| 2765 |
msgid "Cart is empty"
|
| 2766 |
msgstr ""
|
| 2767 |
|
| 2768 |
+
#: framework/premium/features/content-blocks/hooks-manager.php:524
|
| 2769 |
msgid "Before cart"
|
| 2770 |
msgstr ""
|
| 2771 |
|
| 2772 |
+
#: framework/premium/features/content-blocks/hooks-manager.php:528
|
| 2773 |
msgid "Before cart table"
|
| 2774 |
msgstr ""
|
| 2775 |
|
| 2776 |
+
#: framework/premium/features/content-blocks/hooks-manager.php:532
|
| 2777 |
msgid "Before cart contents"
|
| 2778 |
msgstr ""
|
| 2779 |
|
| 2780 |
+
#: framework/premium/features/content-blocks/hooks-manager.php:536
|
| 2781 |
msgid "Cart contents"
|
| 2782 |
msgstr ""
|
| 2783 |
|
| 2784 |
+
#: framework/premium/features/content-blocks/hooks-manager.php:540
|
| 2785 |
msgid "After cart contents"
|
| 2786 |
msgstr ""
|
| 2787 |
|
| 2788 |
+
#: framework/premium/features/content-blocks/hooks-manager.php:544
|
| 2789 |
msgid "Cart coupon"
|
| 2790 |
msgstr ""
|
| 2791 |
|
| 2792 |
+
#: framework/premium/features/content-blocks/hooks-manager.php:548
|
| 2793 |
msgid "Cart actions"
|
| 2794 |
msgstr ""
|
| 2795 |
|
| 2796 |
+
#: framework/premium/features/content-blocks/hooks-manager.php:552
|
| 2797 |
msgid "After cart table"
|
| 2798 |
msgstr ""
|
| 2799 |
|
| 2800 |
+
#: framework/premium/features/content-blocks/hooks-manager.php:556
|
| 2801 |
msgid "Cart collaterals"
|
| 2802 |
msgstr ""
|
| 2803 |
|
| 2804 |
+
#: framework/premium/features/content-blocks/hooks-manager.php:560
|
| 2805 |
msgid "Before cart totals"
|
| 2806 |
msgstr ""
|
| 2807 |
|
| 2808 |
+
#: framework/premium/features/content-blocks/hooks-manager.php:564
|
| 2809 |
msgid "Cart totals before order total"
|
| 2810 |
msgstr ""
|
| 2811 |
|
| 2812 |
+
#: framework/premium/features/content-blocks/hooks-manager.php:568
|
| 2813 |
msgid "Cart totals after order total"
|
| 2814 |
msgstr ""
|
| 2815 |
|
| 2816 |
+
#: framework/premium/features/content-blocks/hooks-manager.php:572
|
| 2817 |
msgid "Proceed to checkout"
|
| 2818 |
msgstr ""
|
| 2819 |
|
| 2820 |
+
#: framework/premium/features/content-blocks/hooks-manager.php:576
|
| 2821 |
msgid "After cart totals"
|
| 2822 |
msgstr ""
|
| 2823 |
|
| 2824 |
+
#: framework/premium/features/content-blocks/hooks-manager.php:580
|
| 2825 |
msgid "After cart"
|
| 2826 |
msgstr ""
|
| 2827 |
|
| 2828 |
+
#: framework/premium/features/content-blocks/hooks-manager.php:585
|
| 2829 |
msgid "Before Mini Cart"
|
| 2830 |
msgstr ""
|
| 2831 |
|
| 2832 |
+
#: framework/premium/features/content-blocks/hooks-manager.php:590
|
| 2833 |
msgid "Before Mini Cart Contents"
|
| 2834 |
msgstr ""
|
| 2835 |
|
| 2836 |
+
#: framework/premium/features/content-blocks/hooks-manager.php:595
|
| 2837 |
msgid "Mini Cart Contents"
|
| 2838 |
msgstr ""
|
| 2839 |
|
| 2840 |
+
#: framework/premium/features/content-blocks/hooks-manager.php:600
|
| 2841 |
msgid "Widget Shopping Cart Before Buttons"
|
| 2842 |
msgstr ""
|
| 2843 |
|
| 2844 |
+
#: framework/premium/features/content-blocks/hooks-manager.php:605
|
| 2845 |
msgid "Widget Shopping Cart After Buttons"
|
| 2846 |
msgstr ""
|
| 2847 |
|
| 2848 |
+
#: framework/premium/features/content-blocks/hooks-manager.php:610
|
| 2849 |
msgid "After Mini Cart"
|
| 2850 |
msgstr ""
|
| 2851 |
|
| 2852 |
+
#: framework/premium/features/content-blocks/hooks-manager.php:612
|
| 2853 |
msgid "WooCommerce Cart"
|
| 2854 |
msgstr ""
|
| 2855 |
|
| 2856 |
+
#: framework/premium/features/content-blocks/hooks-manager.php:618
|
| 2857 |
msgid "Before checkout form"
|
| 2858 |
msgstr ""
|
| 2859 |
|
| 2860 |
+
#: framework/premium/features/content-blocks/hooks-manager.php:622
|
| 2861 |
msgid "Before customer details"
|
| 2862 |
msgstr ""
|
| 2863 |
|
| 2864 |
+
#: framework/premium/features/content-blocks/hooks-manager.php:626
|
| 2865 |
msgid "After customer details"
|
| 2866 |
msgstr ""
|
| 2867 |
|
| 2868 |
+
#: framework/premium/features/content-blocks/hooks-manager.php:630
|
| 2869 |
msgid "Checkout billing"
|
| 2870 |
msgstr ""
|
| 2871 |
|
| 2872 |
+
#: framework/premium/features/content-blocks/hooks-manager.php:634
|
| 2873 |
msgid "Before checkout billing form"
|
| 2874 |
msgstr ""
|
| 2875 |
|
| 2876 |
+
#: framework/premium/features/content-blocks/hooks-manager.php:638
|
| 2877 |
msgid "After checkout billing form"
|
| 2878 |
msgstr ""
|
| 2879 |
|
| 2880 |
+
#: framework/premium/features/content-blocks/hooks-manager.php:642
|
| 2881 |
msgid "Before order notes"
|
| 2882 |
msgstr ""
|
| 2883 |
|
| 2884 |
+
#: framework/premium/features/content-blocks/hooks-manager.php:646
|
| 2885 |
msgid "After order notes"
|
| 2886 |
msgstr ""
|
| 2887 |
|
| 2888 |
+
#: framework/premium/features/content-blocks/hooks-manager.php:650
|
| 2889 |
msgid "Checkout shipping"
|
| 2890 |
msgstr ""
|
| 2891 |
|
| 2892 |
+
#: framework/premium/features/content-blocks/hooks-manager.php:654
|
| 2893 |
msgid "Checkout before order review"
|
| 2894 |
msgstr ""
|
| 2895 |
|
| 2896 |
+
#: framework/premium/features/content-blocks/hooks-manager.php:658
|
| 2897 |
msgid "Checkout order review"
|
| 2898 |
msgstr ""
|
| 2899 |
|
| 2900 |
+
#: framework/premium/features/content-blocks/hooks-manager.php:662
|
| 2901 |
msgid "Review order before cart contents"
|
| 2902 |
msgstr ""
|
| 2903 |
|
| 2904 |
+
#: framework/premium/features/content-blocks/hooks-manager.php:666
|
| 2905 |
msgid "Review order after cart contents"
|
| 2906 |
msgstr ""
|
| 2907 |
|
| 2908 |
+
#: framework/premium/features/content-blocks/hooks-manager.php:670
|
| 2909 |
msgid "Review order before order total"
|
| 2910 |
msgstr ""
|
| 2911 |
|
| 2912 |
+
#: framework/premium/features/content-blocks/hooks-manager.php:674
|
| 2913 |
msgid "Review order after order total"
|
| 2914 |
msgstr ""
|
| 2915 |
|
| 2916 |
+
#: framework/premium/features/content-blocks/hooks-manager.php:678
|
| 2917 |
msgid "Review order before payment"
|
| 2918 |
msgstr ""
|
| 2919 |
|
| 2920 |
+
#: framework/premium/features/content-blocks/hooks-manager.php:682
|
| 2921 |
msgid "Review order before submit"
|
| 2922 |
msgstr ""
|
| 2923 |
|
| 2924 |
+
#: framework/premium/features/content-blocks/hooks-manager.php:686
|
| 2925 |
msgid "Review order after submit"
|
| 2926 |
msgstr ""
|
| 2927 |
|
| 2928 |
+
#: framework/premium/features/content-blocks/hooks-manager.php:690
|
| 2929 |
msgid "Review order after payment"
|
| 2930 |
msgstr ""
|
| 2931 |
|
| 2932 |
+
#: framework/premium/features/content-blocks/hooks-manager.php:694
|
| 2933 |
msgid "Checkout after order review"
|
| 2934 |
msgstr ""
|
| 2935 |
|
| 2936 |
+
#: framework/premium/features/content-blocks/hooks-manager.php:698
|
| 2937 |
msgid "After checkout form"
|
| 2938 |
msgstr ""
|
| 2939 |
|
| 2940 |
+
#: framework/premium/features/content-blocks/hooks-manager.php:701
|
| 2941 |
msgid "WooCommerce Checkout"
|
| 2942 |
msgstr ""
|
| 2943 |
|
| 2944 |
+
#: framework/premium/features/content-blocks/hooks-manager.php:707
|
| 2945 |
msgid "Before my account"
|
| 2946 |
msgstr ""
|
| 2947 |
|
| 2948 |
+
#: framework/premium/features/content-blocks/hooks-manager.php:711
|
| 2949 |
msgid "Before account navigation"
|
| 2950 |
msgstr ""
|
| 2951 |
|
| 2952 |
+
#: framework/premium/features/content-blocks/hooks-manager.php:715
|
| 2953 |
msgid "Account navigation"
|
| 2954 |
msgstr ""
|
| 2955 |
|
| 2956 |
+
#: framework/premium/features/content-blocks/hooks-manager.php:719
|
| 2957 |
msgid "After account navigation"
|
| 2958 |
msgstr ""
|
| 2959 |
|
| 2960 |
+
#: framework/premium/features/content-blocks/hooks-manager.php:723
|
| 2961 |
msgid "Account content"
|
| 2962 |
msgstr ""
|
| 2963 |
|
| 2964 |
+
#: framework/premium/features/content-blocks/hooks-manager.php:727
|
| 2965 |
msgid "Account dashboard"
|
| 2966 |
msgstr ""
|
| 2967 |
|
| 2968 |
+
#: framework/premium/features/content-blocks/hooks-manager.php:731
|
| 2969 |
msgid "After my account"
|
| 2970 |
msgstr ""
|
| 2971 |
|
| 2972 |
+
#: framework/premium/features/content-blocks/hooks-manager.php:733,
|
| 2973 |
#: framework/features/header/items/account/options.php:17,
|
| 2974 |
#: framework/features/header/items/account/options.php:18
|
| 2975 |
msgid "WooCommerce Account"
|
| 2976 |
msgstr ""
|
| 2977 |
|
| 2978 |
+
#: framework/premium/features/content-blocks/hooks-manager.php:739
|
| 2979 |
msgid "WP footer"
|
| 2980 |
msgstr ""
|
| 2981 |
|
| 2982 |
+
#: framework/premium/features/content-blocks/hooks-manager.php:740,
|
| 2983 |
+
#: framework/premium/features/content-blocks/hooks-manager.php:748,
|
| 2984 |
+
#: framework/premium/features/content-blocks/hooks-manager.php:756
|
| 2985 |
msgid "Footer"
|
| 2986 |
msgstr ""
|
| 2987 |
|
| 2988 |
+
#: framework/premium/features/content-blocks/hooks-manager.php:747
|
| 2989 |
msgid "Footer before"
|
| 2990 |
msgstr ""
|
| 2991 |
|
| 2992 |
+
#: framework/premium/features/content-blocks/hooks-manager.php:755
|
| 2993 |
msgid "Footer after"
|
| 2994 |
msgstr ""
|
| 2995 |
|
| 2996 |
+
#: framework/premium/features/content-blocks/hooks-manager.php:770
|
| 2997 |
msgid "Custom Hook (%s)"
|
| 2998 |
msgstr ""
|
| 2999 |
|
| 3000 |
+
#: framework/premium/features/content-blocks/hooks-manager.php:776,
|
| 3001 |
+
#: framework/premium/features/content-blocks/options/hook.php:192
|
| 3002 |
#: framework/premium/static/js/options/MultipleLocationsSelect.js:87
|
| 3003 |
msgid "After Block Number"
|
| 3004 |
msgstr ""
|
| 3005 |
|
| 3006 |
+
#: framework/premium/features/content-blocks/hooks-manager.php:782,
|
| 3007 |
+
#: framework/premium/features/content-blocks/options/hook.php:209
|
| 3008 |
#: framework/premium/static/js/options/MultipleLocationsSelect.js:106
|
| 3009 |
msgid "Before Heading Number"
|
| 3010 |
msgstr ""
|
| 3011 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 3012 |
#: framework/extensions/widgets/widgets/ct-about-me/options.php:18,
|
| 3013 |
#: framework/extensions/widgets/widgets/ct-about-me/view.php:12,
|
| 3014 |
#: framework/extensions/widgets/widgets/ct-about-me/widget.php:14
|
| 3019 |
msgid "Simple"
|
| 3020 |
msgstr ""
|
| 3021 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 3022 |
#: framework/extensions/widgets/widgets/ct-about-me/options.php:45
|
| 3023 |
msgid "From WP"
|
| 3024 |
msgstr ""
|
| 3182 |
#: framework/extensions/widgets/widgets/ct-contact-info/view.php:24,
|
| 3183 |
#: framework/premium/features/premium-header/items/contacts/options.php:20,
|
| 3184 |
#: framework/premium/features/premium-header/items/contacts/options.php:49,
|
| 3185 |
+
#: framework/premium/features/premium-header/items/contacts/view.php:22
|
| 3186 |
msgid "Address:"
|
| 3187 |
msgstr ""
|
| 3188 |
|
| 3191 |
#: framework/extensions/widgets/widgets/ct-contact-info/view.php:31,
|
| 3192 |
#: framework/premium/features/premium-header/items/contacts/options.php:27,
|
| 3193 |
#: framework/premium/features/premium-header/items/contacts/options.php:75,
|
| 3194 |
+
#: framework/premium/features/premium-header/items/contacts/view.php:29
|
| 3195 |
msgid "Phone:"
|
| 3196 |
msgstr ""
|
| 3197 |
|
| 3200 |
#: framework/extensions/widgets/widgets/ct-contact-info/view.php:39,
|
| 3201 |
#: framework/premium/features/premium-header/items/contacts/options.php:35,
|
| 3202 |
#: framework/premium/features/premium-header/items/contacts/options.php:102,
|
| 3203 |
+
#: framework/premium/features/premium-header/items/contacts/view.php:37
|
| 3204 |
msgid "Mobile:"
|
| 3205 |
msgstr ""
|
| 3206 |
|
| 3289 |
msgid "Facebook like box"
|
| 3290 |
msgstr ""
|
| 3291 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 3292 |
#: framework/extensions/widgets/widgets/ct-posts/options.php:103
|
| 3293 |
msgid "Widget Design"
|
| 3294 |
msgstr ""
|
| 3321 |
msgid "Post Type"
|
| 3322 |
msgstr ""
|
| 3323 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 3324 |
#: framework/extensions/widgets/widgets/ct-posts/options.php:193
|
| 3325 |
msgid "Sort by"
|
| 3326 |
msgstr ""
|
| 3327 |
|
| 3328 |
+
#: framework/extensions/widgets/widgets/ct-posts/options.php:199
|
| 3329 |
msgid "Recent"
|
| 3330 |
msgstr ""
|
| 3331 |
|
| 3332 |
+
#: framework/extensions/widgets/widgets/ct-posts/options.php:200
|
| 3333 |
msgid "Most Commented"
|
| 3334 |
msgstr ""
|
| 3335 |
|
| 3336 |
+
#: framework/extensions/widgets/widgets/ct-posts/options.php:207
|
| 3337 |
msgid "Order by"
|
| 3338 |
msgstr ""
|
| 3339 |
|
| 3340 |
+
#: framework/extensions/widgets/widgets/ct-posts/options.php:213
|
| 3341 |
msgid "1 Week"
|
| 3342 |
msgstr ""
|
| 3343 |
|
| 3344 |
+
#: framework/extensions/widgets/widgets/ct-posts/options.php:214
|
| 3345 |
msgid "1 Month"
|
| 3346 |
msgstr ""
|
| 3347 |
|
| 3348 |
+
#: framework/extensions/widgets/widgets/ct-posts/options.php:215
|
| 3349 |
msgid "3 Months"
|
| 3350 |
msgstr ""
|
| 3351 |
|
| 3352 |
+
#: framework/extensions/widgets/widgets/ct-posts/options.php:216
|
| 3353 |
msgid "6 Months"
|
| 3354 |
msgstr ""
|
| 3355 |
|
| 3356 |
+
#: framework/extensions/widgets/widgets/ct-posts/options.php:217
|
| 3357 |
msgid "1 Year"
|
| 3358 |
msgstr ""
|
| 3359 |
|
| 3360 |
+
#: framework/extensions/widgets/widgets/ct-posts/options.php:224
|
| 3361 |
msgid "Posts Count"
|
| 3362 |
msgstr ""
|
| 3363 |
|
| 3364 |
+
#: framework/extensions/widgets/widgets/ct-posts/options.php:286
|
| 3365 |
msgid "Pages Count"
|
| 3366 |
msgstr ""
|
| 3367 |
|
| 3368 |
+
#: framework/extensions/widgets/widgets/ct-posts/options.php:297
|
| 3369 |
msgid "Show Date"
|
| 3370 |
msgstr ""
|
| 3371 |
|
| 3372 |
+
#: framework/extensions/widgets/widgets/ct-posts/options.php:303
|
| 3373 |
msgid "Show Comments"
|
| 3374 |
msgstr ""
|
| 3375 |
|
| 3376 |
+
#: framework/extensions/widgets/widgets/ct-posts/options.php:309
|
| 3377 |
msgid "Show Excerpt"
|
| 3378 |
msgstr ""
|
| 3379 |
|
| 3380 |
+
#: framework/extensions/widgets/widgets/ct-posts/options.php:320
|
| 3381 |
msgid "Excerpt Lenght"
|
| 3382 |
msgstr ""
|
| 3383 |
|
| 3485 |
msgid "Account Image"
|
| 3486 |
msgstr ""
|
| 3487 |
|
| 3488 |
+
#: framework/features/header/items/account/options.php:187,
|
| 3489 |
+
#: framework/features/header/items/account/options.php:393
|
| 3490 |
+
msgid "Type 5"
|
| 3491 |
+
msgstr ""
|
| 3492 |
+
|
| 3493 |
+
#: framework/features/header/items/account/options.php:192,
|
| 3494 |
+
#: framework/features/header/items/account/options.php:398
|
| 3495 |
+
msgid "Type 6"
|
| 3496 |
+
msgstr ""
|
| 3497 |
+
|
| 3498 |
#: framework/features/header/items/account/options.php:269
|
| 3499 |
msgid "Label Type"
|
| 3500 |
msgstr ""
|
| 3526 |
#: framework/features/header/items/account/options.php:665,
|
| 3527 |
#: framework/premium/extensions/woocommerce-extra/header-items/wish-list/options.php:151,
|
| 3528 |
#: framework/premium/extensions/woocommerce-extra/header-items/wish-list/options.php:278,
|
| 3529 |
+
#: framework/premium/features/premium-header/items/contacts/options.php:364,
|
| 3530 |
+
#: framework/premium/features/premium-header/items/contacts/options.php:534,
|
| 3531 |
+
#: framework/premium/features/premium-header/items/contacts/options.php:681,
|
| 3532 |
#: framework/premium/features/premium-header/items/dark-mode-switcher/options.php:35,
|
| 3533 |
#: framework/premium/features/premium-header/items/language-switcher/options.php:208,
|
| 3534 |
+
#: framework/premium/features/premium-header/items/search-input/options.php:189,
|
| 3535 |
+
#: framework/premium/features/premium-header/items/search-input/options.php:319,
|
| 3536 |
+
#: framework/premium/features/premium-header/items/search-input/options.php:449,
|
| 3537 |
+
#: framework/premium/features/premium-header/items/search-input/options.php:585
|
| 3538 |
msgid "Default State"
|
| 3539 |
msgstr ""
|
| 3540 |
|
| 3542 |
#: framework/features/header/items/account/options.php:670,
|
| 3543 |
#: framework/premium/extensions/woocommerce-extra/header-items/wish-list/options.php:156,
|
| 3544 |
#: framework/premium/extensions/woocommerce-extra/header-items/wish-list/options.php:283,
|
| 3545 |
+
#: framework/premium/features/premium-header/items/contacts/options.php:369,
|
| 3546 |
+
#: framework/premium/features/premium-header/items/contacts/options.php:539,
|
| 3547 |
+
#: framework/premium/features/premium-header/items/contacts/options.php:689,
|
| 3548 |
#: framework/premium/features/premium-header/items/dark-mode-switcher/options.php:40,
|
| 3549 |
#: framework/premium/features/premium-header/items/language-switcher/options.php:213,
|
| 3550 |
+
#: framework/premium/features/premium-header/items/search-input/options.php:194,
|
| 3551 |
+
#: framework/premium/features/premium-header/items/search-input/options.php:324,
|
| 3552 |
+
#: framework/premium/features/premium-header/items/search-input/options.php:454,
|
| 3553 |
+
#: framework/premium/features/premium-header/items/search-input/options.php:590
|
| 3554 |
msgid "Transparent State"
|
| 3555 |
msgstr ""
|
| 3556 |
|
| 3558 |
#: framework/features/header/items/account/options.php:679,
|
| 3559 |
#: framework/premium/extensions/woocommerce-extra/header-items/wish-list/options.php:165,
|
| 3560 |
#: framework/premium/extensions/woocommerce-extra/header-items/wish-list/options.php:292,
|
| 3561 |
+
#: framework/premium/features/premium-header/items/contacts/options.php:378,
|
| 3562 |
+
#: framework/premium/features/premium-header/items/contacts/options.php:548,
|
| 3563 |
+
#: framework/premium/features/premium-header/items/contacts/options.php:699,
|
| 3564 |
#: framework/premium/features/premium-header/items/dark-mode-switcher/options.php:49,
|
| 3565 |
#: framework/premium/features/premium-header/items/language-switcher/options.php:222,
|
| 3566 |
+
#: framework/premium/features/premium-header/items/search-input/options.php:203,
|
| 3567 |
+
#: framework/premium/features/premium-header/items/search-input/options.php:333,
|
| 3568 |
+
#: framework/premium/features/premium-header/items/search-input/options.php:463,
|
| 3569 |
+
#: framework/premium/features/premium-header/items/search-input/options.php:599
|
| 3570 |
msgid "Sticky State"
|
| 3571 |
msgstr ""
|
| 3572 |
|
| 3574 |
msgid "Item Margin"
|
| 3575 |
msgstr ""
|
| 3576 |
|
| 3577 |
+
#: framework/features/header/items/account/options.php:804
|
| 3578 |
+
msgid "Modal Options"
|
| 3579 |
+
msgstr ""
|
| 3580 |
+
|
| 3581 |
+
#: framework/features/header/items/account/options.php:840,
|
| 3582 |
+
#: framework/premium/features/premium-header/items/search-input/options.php:184,
|
| 3583 |
+
#: framework/premium/features/premium-header/items/search-input/options.php:213,
|
| 3584 |
+
#: framework/premium/features/premium-header/items/search-input/options.php:245,
|
| 3585 |
+
#: framework/premium/features/premium-header/items/search-input/options.php:275
|
| 3586 |
+
msgid "Input Font Color"
|
| 3587 |
msgstr ""
|
| 3588 |
|
| 3589 |
+
#: framework/features/header/items/account/options.php:862,
|
| 3590 |
+
#: framework/features/header/items/account/options.php:892,
|
| 3591 |
+
#: framework/features/header/items/account/options.php:928,
|
| 3592 |
+
#: framework/premium/features/premium-header/items/search-input/options.php:237,
|
| 3593 |
+
#: framework/premium/features/premium-header/items/search-input/options.php:268,
|
| 3594 |
+
#: framework/premium/features/premium-header/items/search-input/options.php:298,
|
| 3595 |
+
#: framework/premium/features/premium-header/items/search-input/options.php:367,
|
| 3596 |
+
#: framework/premium/features/premium-header/items/search-input/options.php:398,
|
| 3597 |
+
#: framework/premium/features/premium-header/items/search-input/options.php:428,
|
| 3598 |
+
#: framework/premium/features/premium-header/items/search-input/options.php:497,
|
| 3599 |
+
#: framework/premium/features/premium-header/items/search-input/options.php:528,
|
| 3600 |
+
#: framework/premium/features/premium-header/items/search-input/options.php:558,
|
| 3601 |
+
#: framework/premium/features/premium-header/items/search-input/options.php:631,
|
| 3602 |
+
#: framework/premium/features/premium-header/items/search-input/options.php:661,
|
| 3603 |
+
#: framework/premium/features/premium-header/items/search-input/options.php:691
|
| 3604 |
+
msgid "Focus"
|
| 3605 |
msgstr ""
|
| 3606 |
|
| 3607 |
+
#: framework/features/header/items/account/options.php:870,
|
| 3608 |
+
#: framework/premium/features/premium-header/items/search-input/options.php:444,
|
| 3609 |
+
#: framework/premium/features/premium-header/items/search-input/options.php:473,
|
| 3610 |
+
#: framework/premium/features/premium-header/items/search-input/options.php:505,
|
| 3611 |
+
#: framework/premium/features/premium-header/items/search-input/options.php:535
|
| 3612 |
+
msgid "Input Border Color"
|
| 3613 |
+
msgstr ""
|
| 3614 |
+
|
| 3615 |
+
#: framework/features/header/items/account/options.php:906,
|
| 3616 |
+
#: framework/premium/features/premium-header/items/search-input/options.php:580,
|
| 3617 |
+
#: framework/premium/features/premium-header/items/search-input/options.php:608,
|
| 3618 |
+
#: framework/premium/features/premium-header/items/search-input/options.php:638,
|
| 3619 |
+
#: framework/premium/features/premium-header/items/search-input/options.php:668
|
| 3620 |
+
msgid "Input Background Color"
|
| 3621 |
+
msgstr ""
|
| 3622 |
+
|
| 3623 |
+
#: framework/features/header/items/account/options.php:939
|
| 3624 |
+
msgid "Modal Shadow"
|
| 3625 |
+
msgstr ""
|
| 3626 |
+
|
| 3627 |
+
#: framework/features/header/items/account/options.php:1021
|
| 3628 |
+
msgid "Modal Background"
|
| 3629 |
+
msgstr ""
|
| 3630 |
+
|
| 3631 |
+
#: framework/features/header/items/account/options.php:1036
|
| 3632 |
+
msgid "Modal Backdrop"
|
| 3633 |
+
msgstr ""
|
| 3634 |
+
|
| 3635 |
+
#: framework/features/header/items/account/options.php:1066
|
| 3636 |
+
msgid "Element Visibility"
|
| 3637 |
msgstr ""
|
| 3638 |
|
| 3639 |
#: framework/features/header/items/account/view.php:16,
|
| 3645 |
msgid "Account header icon"
|
| 3646 |
msgstr ""
|
| 3647 |
|
| 3648 |
+
#: framework/premium/extensions/post-types-extra/includes/dynamic-data.php:363
|
| 3649 |
+
msgid "You have no %s fields declared for this custom post type."
|
| 3650 |
+
msgstr ""
|
| 3651 |
+
|
| 3652 |
+
#: framework/premium/extensions/post-types-extra/includes/dynamic-data.php:375,
|
| 3653 |
+
#: framework/premium/extensions/post-types-extra/includes/dynamic-data.php:764,
|
| 3654 |
+
#: framework/premium/extensions/post-types-extra/includes/dynamic-data.php:775
|
| 3655 |
+
msgid "Field"
|
| 3656 |
+
msgstr ""
|
| 3657 |
+
|
| 3658 |
+
#: framework/premium/extensions/post-types-extra/includes/dynamic-data.php:387,
|
| 3659 |
+
#: framework/premium/features/premium-header/items/language-switcher/options.php:60
|
| 3660 |
+
msgid "Label"
|
| 3661 |
+
msgstr ""
|
| 3662 |
+
|
| 3663 |
+
#: framework/premium/extensions/post-types-extra/includes/dynamic-data.php:427
|
| 3664 |
+
msgid "Fallback"
|
| 3665 |
+
msgstr ""
|
| 3666 |
+
|
| 3667 |
+
#: framework/premium/extensions/post-types-extra/includes/dynamic-data.php:435
|
| 3668 |
+
msgid "%s Field"
|
| 3669 |
+
msgstr ""
|
| 3670 |
+
|
| 3671 |
+
#: framework/premium/extensions/post-types-extra/includes/dynamic-data.php:762
|
| 3672 |
+
msgid "%s %s Font"
|
| 3673 |
+
msgstr ""
|
| 3674 |
+
|
| 3675 |
+
#: framework/premium/extensions/post-types-extra/includes/dynamic-data.php:773
|
| 3676 |
+
msgid "%s %s Color"
|
| 3677 |
+
msgstr ""
|
| 3678 |
+
|
| 3679 |
+
#: framework/premium/extensions/post-types-extra/includes/estimated-read-time.php:9,
|
| 3680 |
+
#: framework/premium/extensions/post-types-extra/includes/estimated-read-time.php:37
|
| 3681 |
+
msgid "Read Time"
|
| 3682 |
+
msgstr ""
|
| 3683 |
+
|
| 3684 |
+
#: framework/premium/extensions/post-types-extra/includes/estimated-read-time.php:75
|
| 3685 |
+
msgid " min"
|
| 3686 |
+
msgstr ""
|
| 3687 |
+
|
| 3688 |
+
#: framework/premium/extensions/post-types-extra/includes/estimated-read-time.php:78
|
| 3689 |
+
msgid " mins"
|
| 3690 |
+
msgstr ""
|
| 3691 |
+
|
| 3692 |
+
#: framework/premium/extensions/post-types-extra/includes/filtering.php:282
|
| 3693 |
+
msgid "All"
|
| 3694 |
+
msgstr ""
|
| 3695 |
+
|
| 3696 |
+
#: framework/premium/extensions/post-types-extra/includes/taxonomies-options.php:129
|
| 3697 |
+
msgid "Featured Image"
|
| 3698 |
+
msgstr ""
|
| 3699 |
+
|
| 3700 |
+
#: framework/premium/extensions/post-types-extra/includes/taxonomies-options.php:134
|
| 3701 |
+
msgid "Accent Color"
|
| 3702 |
+
msgstr ""
|
| 3703 |
+
|
| 3704 |
#: framework/premium/extensions/shortcuts/views/bar.php:31,
|
| 3705 |
+
#: framework/premium/extensions/woocommerce-extra/includes/wish-list.php:137
|
| 3706 |
msgid "Wish List"
|
| 3707 |
msgstr ""
|
| 3708 |
|
| 3709 |
+
#: framework/premium/extensions/woocommerce-extra/includes/wish-list-helpers.php:42,
|
| 3710 |
+
#: framework/premium/extensions/woocommerce-extra/includes/wish-list-helpers.php:50
|
| 3711 |
+
msgid "Add to wishlist"
|
| 3712 |
msgstr ""
|
| 3713 |
|
| 3714 |
#: framework/premium/extensions/woocommerce-extra/includes/wish-list-options.php:9
|
| 3715 |
msgid "Select a page"
|
| 3716 |
msgstr ""
|
| 3717 |
|
| 3718 |
+
#: framework/premium/extensions/woocommerce-extra/includes/wish-list-options.php:18
|
| 3719 |
msgid "Products Wishlist"
|
| 3720 |
msgstr ""
|
| 3721 |
|
| 3722 |
+
#: framework/premium/extensions/woocommerce-extra/includes/wish-list-options.php:28
|
| 3723 |
msgid "Show Wishlist For"
|
| 3724 |
msgstr ""
|
| 3725 |
|
| 3726 |
+
#: framework/premium/extensions/woocommerce-extra/includes/wish-list-options.php:34
|
| 3727 |
msgid "Logged Users"
|
| 3728 |
msgstr ""
|
| 3729 |
|
| 3730 |
+
#: framework/premium/extensions/woocommerce-extra/includes/wish-list-options.php:35
|
| 3731 |
msgid "All Users"
|
| 3732 |
msgstr ""
|
| 3733 |
|
| 3734 |
+
#: framework/premium/extensions/woocommerce-extra/includes/wish-list-options.php:45
|
| 3735 |
msgid "Wish List Page"
|
| 3736 |
msgstr ""
|
| 3737 |
|
| 3738 |
+
#: framework/premium/extensions/woocommerce-extra/includes/wish-list-options.php:51
|
| 3739 |
msgid ""
|
| 3740 |
"The page you select here will display the wish list for your logged out "
|
| 3741 |
"users."
|
| 3742 |
msgstr ""
|
| 3743 |
|
| 3744 |
+
#: framework/premium/extensions/woocommerce-extra/includes/wish-list-options.php:60
|
| 3745 |
msgid "Display Wishlist Button On"
|
| 3746 |
msgstr ""
|
| 3747 |
|
| 3748 |
+
#: framework/premium/extensions/woocommerce-extra/includes/wish-list-options.php:64
|
| 3749 |
msgid "Archive Pages"
|
| 3750 |
msgstr ""
|
| 3751 |
|
| 3752 |
+
#: framework/premium/extensions/woocommerce-extra/includes/wish-list-options.php:73
|
| 3753 |
msgid "Single Product Pages"
|
| 3754 |
msgstr ""
|
| 3755 |
|
| 3756 |
+
#: framework/premium/extensions/woocommerce-extra/includes/wish-list-options.php:82
|
| 3757 |
msgid "Quick View Modal"
|
| 3758 |
msgstr ""
|
| 3759 |
|
| 3760 |
+
#: framework/premium/extensions/woocommerce-extra/includes/wish-list-options.php:95
|
| 3761 |
msgid "AJAX Add To Cart"
|
| 3762 |
msgstr ""
|
| 3763 |
|
| 3764 |
+
#: framework/premium/extensions/woocommerce-extra/includes/wish-list-options.php:131
|
| 3765 |
+
msgid "Archive Button"
|
| 3766 |
msgstr ""
|
| 3767 |
|
| 3768 |
+
#: framework/premium/extensions/woocommerce-extra/includes/wish-list-options.php:159,
|
| 3769 |
+
#: framework/premium/extensions/woocommerce-extra/includes/wish-list-options.php:191,
|
| 3770 |
+
#: framework/premium/extensions/woocommerce-extra/includes/wish-list-options.php:235,
|
| 3771 |
+
#: framework/premium/extensions/woocommerce-extra/includes/wish-list-options.php:311,
|
| 3772 |
+
#: framework/premium/extensions/post-types-extra/includes/filtering/customizer.php:207,
|
| 3773 |
+
#: framework/premium/extensions/post-types-extra/includes/filtering/customizer.php:243,
|
| 3774 |
+
#: framework/premium/features/premium-header/items/language-switcher/options.php:254,
|
| 3775 |
+
#: framework/premium/features/premium-header/items/language-switcher/options.php:284,
|
| 3776 |
+
#: framework/premium/features/premium-header/items/language-switcher/options.php:313
|
| 3777 |
+
msgid "Hover/Active"
|
| 3778 |
msgstr ""
|
| 3779 |
|
| 3780 |
+
#: framework/premium/extensions/woocommerce-extra/includes/wish-list-options.php:208
|
| 3781 |
msgid "Single Product Button"
|
| 3782 |
msgstr ""
|
| 3783 |
|
| 3784 |
+
#: framework/premium/extensions/woocommerce-extra/includes/wish-list-options.php:284
|
| 3785 |
msgid "Quick View Modal Button"
|
| 3786 |
msgstr ""
|
| 3787 |
|
| 3788 |
+
#: framework/premium/extensions/woocommerce-extra/includes/wish-list-table.php:152
|
| 3789 |
msgid "You don't have any products in your wish list yet."
|
| 3790 |
msgstr ""
|
| 3791 |
|
| 3797 |
msgid "Add to cart"
|
| 3798 |
msgstr ""
|
| 3799 |
|
| 3800 |
+
#: framework/premium/extensions/woocommerce-extra/includes/wish-list-table.php:89,
|
| 3801 |
+
#: framework/premium/extensions/woocommerce-extra/includes/wish-list-table.php:113
|
| 3802 |
msgid "Remove Product"
|
| 3803 |
msgstr ""
|
| 3804 |
|
| 3805 |
+
#: framework/premium/extensions/woocommerce-extra/includes/woo-import-export.php:34
|
| 3806 |
+
msgid "Blocksy Variation Images"
|
| 3807 |
+
msgstr ""
|
| 3808 |
+
|
| 3809 |
+
#: framework/premium/features/content-blocks/options/404.php:19,
|
| 3810 |
+
#: framework/premium/features/content-blocks/options/header.php:19,
|
| 3811 |
+
#: framework/premium/features/content-blocks/options/hook.php:19,
|
| 3812 |
+
#: framework/premium/features/content-blocks/options/popup.php:25
|
| 3813 |
+
msgid "Other"
|
| 3814 |
+
msgstr ""
|
| 3815 |
+
|
| 3816 |
+
#: framework/premium/features/content-blocks/options/404.php:33,
|
| 3817 |
+
#: framework/premium/features/content-blocks/options/header.php:35,
|
| 3818 |
+
#: framework/premium/features/content-blocks/options/hook.php:35,
|
| 3819 |
+
#: framework/premium/features/content-blocks/options/popup.php:42
|
| 3820 |
+
msgid "Container Structure"
|
| 3821 |
+
msgstr ""
|
| 3822 |
+
|
| 3823 |
+
#: framework/premium/features/content-blocks/options/404.php:59,
|
| 3824 |
+
#: framework/premium/features/content-blocks/options/header.php:63,
|
| 3825 |
+
#: framework/premium/features/content-blocks/options/hook.php:63
|
| 3826 |
+
msgid "Narrow Width"
|
| 3827 |
+
msgstr ""
|
| 3828 |
+
|
| 3829 |
+
#: framework/premium/features/content-blocks/options/404.php:64,
|
| 3830 |
+
#: framework/premium/features/content-blocks/options/header.php:68,
|
| 3831 |
+
#: framework/premium/features/content-blocks/options/hook.php:68
|
| 3832 |
+
msgid "Normal Width"
|
| 3833 |
+
msgstr ""
|
| 3834 |
+
|
| 3835 |
+
#: framework/premium/features/content-blocks/options/404.php:70,
|
| 3836 |
+
#: framework/premium/features/content-blocks/options/header.php:74,
|
| 3837 |
+
#: framework/premium/features/content-blocks/options/hook.php:74
|
| 3838 |
+
msgid "Content Area Style"
|
| 3839 |
+
msgstr ""
|
| 3840 |
+
|
| 3841 |
+
#: framework/premium/features/content-blocks/options/404.php:84,
|
| 3842 |
+
#: framework/premium/features/content-blocks/options/header.php:88,
|
| 3843 |
+
#: framework/premium/features/content-blocks/options/hook.php:88
|
| 3844 |
+
msgid "Content Area Vertical Spacing"
|
| 3845 |
+
msgstr ""
|
| 3846 |
+
|
| 3847 |
+
#: framework/premium/features/content-blocks/options/404.php:95,
|
| 3848 |
+
#: framework/premium/features/content-blocks/options/header.php:99,
|
| 3849 |
+
#: framework/premium/features/content-blocks/options/hook.php:99
|
| 3850 |
+
msgid "Top & Bottom"
|
| 3851 |
+
msgstr ""
|
| 3852 |
+
|
| 3853 |
+
#: framework/premium/features/content-blocks/options/404.php:98,
|
| 3854 |
+
#: framework/premium/features/content-blocks/options/header.php:102,
|
| 3855 |
+
#: framework/premium/features/content-blocks/options/hook.php:102
|
| 3856 |
+
msgid "Only Top"
|
| 3857 |
+
msgstr ""
|
| 3858 |
+
|
| 3859 |
+
#: framework/premium/features/content-blocks/options/404.php:101,
|
| 3860 |
+
#: framework/premium/features/content-blocks/options/header.php:105,
|
| 3861 |
+
#: framework/premium/features/content-blocks/options/hook.php:105
|
| 3862 |
+
msgid "Only Bottom"
|
| 3863 |
+
msgstr ""
|
| 3864 |
+
|
| 3865 |
+
#: framework/premium/features/content-blocks/options/hook.php:143
|
| 3866 |
+
msgid "Location & Priority"
|
| 3867 |
+
msgstr ""
|
| 3868 |
+
|
| 3869 |
+
#: framework/premium/features/content-blocks/options/hook.php:153
|
| 3870 |
+
#: framework/premium/static/js/options/MultipleLocationsSelect.js:47
|
| 3871 |
+
msgid "Select location"
|
| 3872 |
+
msgstr ""
|
| 3873 |
+
|
| 3874 |
+
#: framework/premium/features/content-blocks/options/hook.php:176
|
| 3875 |
+
#: framework/premium/static/js/options/MultipleLocationsSelect.js:72
|
| 3876 |
+
msgid "Custom Hook"
|
| 3877 |
+
msgstr ""
|
| 3878 |
+
|
| 3879 |
+
#: framework/premium/features/content-blocks/options/hook.php:251,
|
| 3880 |
+
#: framework/premium/features/content-blocks/options/popup.php:296
|
| 3881 |
+
msgid "Expiration Date/Time"
|
| 3882 |
+
msgstr ""
|
| 3883 |
+
|
| 3884 |
+
#: framework/premium/features/content-blocks/options/hook.php:278
|
| 3885 |
+
msgid "Block Position"
|
| 3886 |
+
msgstr ""
|
| 3887 |
+
|
| 3888 |
+
#: framework/premium/features/content-blocks/options/hook.php:285
|
| 3889 |
+
msgid "Fixed"
|
| 3890 |
+
msgstr ""
|
| 3891 |
+
|
| 3892 |
+
#: framework/premium/features/content-blocks/options/hook.php:295
|
| 3893 |
+
msgid "Location"
|
| 3894 |
+
msgstr ""
|
| 3895 |
+
|
| 3896 |
+
#: framework/premium/features/content-blocks/options/popup.php:50
|
| 3897 |
+
msgid "Popup Position"
|
| 3898 |
+
msgstr ""
|
| 3899 |
+
|
| 3900 |
+
#: framework/premium/features/content-blocks/options/popup.php:57
|
| 3901 |
+
msgid "Popup Size"
|
| 3902 |
+
msgstr ""
|
| 3903 |
+
|
| 3904 |
+
#: framework/premium/features/content-blocks/options/popup.php:63
|
| 3905 |
+
msgid "Small Size"
|
| 3906 |
+
msgstr ""
|
| 3907 |
+
|
| 3908 |
+
#: framework/premium/features/content-blocks/options/popup.php:64
|
| 3909 |
+
msgid "Medium Size"
|
| 3910 |
+
msgstr ""
|
| 3911 |
+
|
| 3912 |
+
#: framework/premium/features/content-blocks/options/popup.php:65
|
| 3913 |
+
msgid "Large Size"
|
| 3914 |
+
msgstr ""
|
| 3915 |
+
|
| 3916 |
+
#: framework/premium/features/content-blocks/options/popup.php:66
|
| 3917 |
+
msgid "Custom Size"
|
| 3918 |
+
msgstr ""
|
| 3919 |
+
|
| 3920 |
+
#: framework/premium/features/content-blocks/options/popup.php:76
|
| 3921 |
+
msgid "Max Width"
|
| 3922 |
+
msgstr ""
|
| 3923 |
+
|
| 3924 |
+
#: framework/premium/features/content-blocks/options/popup.php:92
|
| 3925 |
+
msgid "Max Height"
|
| 3926 |
+
msgstr ""
|
| 3927 |
+
|
| 3928 |
+
#: framework/premium/features/content-blocks/options/popup.php:111
|
| 3929 |
+
msgid "Popup Animation"
|
| 3930 |
+
msgstr ""
|
| 3931 |
+
|
| 3932 |
+
#: framework/premium/features/content-blocks/options/popup.php:117
|
| 3933 |
+
msgid "Fade in fade out"
|
| 3934 |
+
msgstr ""
|
| 3935 |
+
|
| 3936 |
+
#: framework/premium/features/content-blocks/options/popup.php:118
|
| 3937 |
+
msgid "Zoom in zoom out"
|
| 3938 |
+
msgstr ""
|
| 3939 |
+
|
| 3940 |
+
#: framework/premium/features/content-blocks/options/popup.php:119
|
| 3941 |
+
msgid "Slide in from left"
|
| 3942 |
+
msgstr ""
|
| 3943 |
+
|
| 3944 |
+
#: framework/premium/features/content-blocks/options/popup.php:120
|
| 3945 |
+
msgid "Slide in from right"
|
| 3946 |
+
msgstr ""
|
| 3947 |
+
|
| 3948 |
+
#: framework/premium/features/content-blocks/options/popup.php:121
|
| 3949 |
+
msgid "Slide in from top"
|
| 3950 |
+
msgstr ""
|
| 3951 |
+
|
| 3952 |
+
#: framework/premium/features/content-blocks/options/popup.php:122
|
| 3953 |
+
msgid "Slide in from bottom"
|
| 3954 |
+
msgstr ""
|
| 3955 |
+
|
| 3956 |
+
#: framework/premium/features/content-blocks/options/popup.php:127
|
| 3957 |
+
msgid "Animation Speed"
|
| 3958 |
+
msgstr ""
|
| 3959 |
+
|
| 3960 |
+
#: framework/premium/features/content-blocks/options/popup.php:144
|
| 3961 |
+
msgid "Entrance Value"
|
| 3962 |
+
msgstr ""
|
| 3963 |
+
|
| 3964 |
+
#: framework/premium/features/content-blocks/options/popup.php:156
|
| 3965 |
+
msgid "Trigger Condition"
|
| 3966 |
+
msgstr ""
|
| 3967 |
+
|
| 3968 |
+
#: framework/premium/features/content-blocks/options/popup.php:181
|
| 3969 |
+
msgid "Element Class"
|
| 3970 |
+
msgstr ""
|
| 3971 |
+
|
| 3972 |
+
#: framework/premium/features/content-blocks/options/popup.php:188
|
| 3973 |
+
msgid "Separate each class by comma if you have multiple elements."
|
| 3974 |
+
msgstr ""
|
| 3975 |
+
|
| 3976 |
+
#: framework/premium/features/content-blocks/options/popup.php:200
|
| 3977 |
+
msgid "Scroll Direction"
|
| 3978 |
+
msgstr ""
|
| 3979 |
+
|
| 3980 |
+
#: framework/premium/features/content-blocks/options/popup.php:205
|
| 3981 |
+
msgid "Scroll Down"
|
| 3982 |
+
msgstr ""
|
| 3983 |
+
|
| 3984 |
+
#: framework/premium/features/content-blocks/options/popup.php:206
|
| 3985 |
+
msgid "Scroll Up"
|
| 3986 |
+
msgstr ""
|
| 3987 |
+
|
| 3988 |
+
#: framework/premium/features/content-blocks/options/popup.php:211
|
| 3989 |
+
msgid "Scroll Distance"
|
| 3990 |
+
msgstr ""
|
| 3991 |
+
|
| 3992 |
+
#: framework/premium/features/content-blocks/options/popup.php:221
|
| 3993 |
+
msgid "Set the scroll distance till the popup block will appear."
|
| 3994 |
+
msgstr ""
|
| 3995 |
+
|
| 3996 |
+
#: framework/premium/features/content-blocks/options/popup.php:233
|
| 3997 |
+
msgid "Inactivity Time"
|
| 3998 |
+
msgstr ""
|
| 3999 |
+
|
| 4000 |
+
#: framework/premium/features/content-blocks/options/popup.php:239
|
| 4001 |
+
msgid "Set the inactivity time (in seconds) till the popup block will appear."
|
| 4002 |
+
msgstr ""
|
| 4003 |
+
|
| 4004 |
+
#: framework/premium/features/content-blocks/options/popup.php:251
|
| 4005 |
+
msgid "After X Time"
|
| 4006 |
+
msgstr ""
|
| 4007 |
+
|
| 4008 |
+
#: framework/premium/features/content-blocks/options/popup.php:257
|
| 4009 |
+
msgid "Set after how much time (in seconds) the popup block will appear."
|
| 4010 |
+
msgstr ""
|
| 4011 |
+
|
| 4012 |
+
#: framework/premium/features/content-blocks/options/popup.php:269
|
| 4013 |
+
msgid "Trigger Popup Only Once"
|
| 4014 |
+
msgstr ""
|
| 4015 |
+
|
| 4016 |
+
#: framework/premium/features/content-blocks/options/popup.php:272
|
| 4017 |
+
msgid ""
|
| 4018 |
+
"If the close button is clicked the popup won't be triggered anymore for the "
|
| 4019 |
+
"current visitor."
|
| 4020 |
+
msgstr ""
|
| 4021 |
+
|
| 4022 |
+
#: framework/premium/features/content-blocks/options/popup.php:347
|
| 4023 |
+
msgid "Padding"
|
| 4024 |
+
msgstr ""
|
| 4025 |
+
|
| 4026 |
+
#: framework/premium/features/content-blocks/options/popup.php:357,
|
| 4027 |
+
#: framework/premium/extensions/post-types-extra/includes/filtering/customizer.php:266,
|
| 4028 |
+
#: framework/premium/features/premium-header/items/language-switcher/options.php:465
|
| 4029 |
+
msgid "Border Radius"
|
| 4030 |
+
msgstr ""
|
| 4031 |
+
|
| 4032 |
+
#: framework/premium/features/content-blocks/options/popup.php:386
|
| 4033 |
+
msgid "Popup Offset"
|
| 4034 |
+
msgstr ""
|
| 4035 |
+
|
| 4036 |
+
#: framework/premium/features/content-blocks/options/popup.php:396
|
| 4037 |
+
msgid "Container Overflow"
|
| 4038 |
+
msgstr ""
|
| 4039 |
+
|
| 4040 |
+
#: framework/premium/features/content-blocks/options/popup.php:403
|
| 4041 |
+
msgid "Hidden"
|
| 4042 |
+
msgstr ""
|
| 4043 |
+
|
| 4044 |
+
#: framework/premium/features/content-blocks/options/popup.php:404
|
| 4045 |
+
msgid "Visible"
|
| 4046 |
+
msgstr ""
|
| 4047 |
+
|
| 4048 |
+
#: framework/premium/features/content-blocks/options/popup.php:405
|
| 4049 |
+
msgid "Scroll"
|
| 4050 |
+
msgstr ""
|
| 4051 |
+
|
| 4052 |
+
#: framework/premium/features/content-blocks/options/popup.php:407
|
| 4053 |
+
msgid ""
|
| 4054 |
+
"Control what happens to the content that is too big to fit into the popup."
|
| 4055 |
+
msgstr ""
|
| 4056 |
+
|
| 4057 |
+
#: framework/premium/features/content-blocks/options/popup.php:411
|
| 4058 |
+
msgid "Close Button"
|
| 4059 |
+
msgstr ""
|
| 4060 |
+
|
| 4061 |
+
#: framework/premium/features/content-blocks/options/popup.php:419
|
| 4062 |
+
msgid "Inside"
|
| 4063 |
+
msgstr ""
|
| 4064 |
+
|
| 4065 |
+
#: framework/premium/features/content-blocks/options/popup.php:420
|
| 4066 |
+
msgid "Outside"
|
| 4067 |
+
msgstr ""
|
| 4068 |
+
|
| 4069 |
+
#: framework/premium/features/content-blocks/options/popup.php:494
|
| 4070 |
+
msgid "Popup Background"
|
| 4071 |
+
msgstr ""
|
| 4072 |
+
|
| 4073 |
+
#: framework/premium/features/content-blocks/options/popup.php:508
|
| 4074 |
+
msgid "Popup Backdrop Background"
|
| 4075 |
+
msgstr ""
|
| 4076 |
+
|
| 4077 |
+
#: framework/premium/extensions/post-types-extra/includes/filtering/customizer.php:25
|
| 4078 |
+
msgid "Posts Filter"
|
| 4079 |
+
msgstr ""
|
| 4080 |
+
|
| 4081 |
+
#: framework/premium/extensions/post-types-extra/includes/filtering/customizer.php:60
|
| 4082 |
+
msgid "Filtering Behavior"
|
| 4083 |
+
msgstr ""
|
| 4084 |
+
|
| 4085 |
+
#: framework/premium/extensions/post-types-extra/includes/filtering/customizer.php:68
|
| 4086 |
+
msgid "Instant Reload"
|
| 4087 |
+
msgstr ""
|
| 4088 |
+
|
| 4089 |
+
#: framework/premium/extensions/post-types-extra/includes/filtering/customizer.php:69
|
| 4090 |
+
msgid "Page Reload"
|
| 4091 |
+
msgstr ""
|
| 4092 |
+
|
| 4093 |
+
#: framework/premium/extensions/post-types-extra/includes/filtering/customizer.php:92
|
| 4094 |
+
msgid "Items Horizontal Spacing"
|
| 4095 |
+
msgstr ""
|
| 4096 |
+
|
| 4097 |
+
#: framework/premium/extensions/post-types-extra/includes/filtering/customizer.php:104,
|
| 4098 |
+
#: framework/premium/features/premium-header/items/language-switcher/options.php:360
|
| 4099 |
+
msgid "Items Vertical Spacing"
|
| 4100 |
+
msgstr ""
|
| 4101 |
+
|
| 4102 |
+
#: framework/premium/extensions/post-types-extra/includes/filtering/customizer.php:116
|
| 4103 |
+
msgid "Container Bottom Spacing"
|
| 4104 |
+
msgstr ""
|
| 4105 |
+
|
| 4106 |
+
#: framework/premium/extensions/post-types-extra/includes/filtering/customizer.php:128
|
| 4107 |
+
msgid "Horizontal Alignment"
|
| 4108 |
+
msgstr ""
|
| 4109 |
+
|
| 4110 |
+
#: framework/premium/extensions/post-types-extra/includes/filtering/customizer.php:251
|
| 4111 |
+
msgid "Button Padding"
|
| 4112 |
+
msgstr ""
|
| 4113 |
+
|
| 4114 |
+
#: framework/premium/extensions/post-types-extra/includes/read-progress/customizer.php:4
|
| 4115 |
+
msgid "Read Progress"
|
| 4116 |
+
msgstr ""
|
| 4117 |
+
|
| 4118 |
+
#: framework/premium/extensions/post-types-extra/includes/read-progress/customizer.php:24
|
| 4119 |
+
msgid "Indicator Height"
|
| 4120 |
+
msgstr ""
|
| 4121 |
+
|
| 4122 |
+
#: framework/premium/extensions/post-types-extra/includes/read-progress/customizer.php:34
|
| 4123 |
+
msgid "Auto Hide"
|
| 4124 |
+
msgstr ""
|
| 4125 |
+
|
| 4126 |
+
#: framework/premium/extensions/post-types-extra/includes/read-progress/customizer.php:38
|
| 4127 |
+
msgid ""
|
| 4128 |
+
"Automatically hide the read progress bar once you arrive at the bottom of "
|
| 4129 |
+
"the article."
|
| 4130 |
+
msgstr ""
|
| 4131 |
+
|
| 4132 |
+
#: framework/premium/extensions/post-types-extra/includes/read-progress/customizer.php:71
|
| 4133 |
+
msgid "Main Color"
|
| 4134 |
+
msgstr ""
|
| 4135 |
+
|
| 4136 |
#: framework/premium/extensions/woocommerce-extra/header-items/wish-list/options.php:49
|
| 4137 |
msgid "Icon Badge"
|
| 4138 |
msgstr ""
|
| 4156 |
msgid "Items Spacing"
|
| 4157 |
msgstr ""
|
| 4158 |
|
| 4159 |
+
#: framework/premium/features/premium-header/items/contacts/options.php:834,
|
| 4160 |
#: framework/premium/features/premium-header/items/divider/options.php:107,
|
| 4161 |
#: framework/premium/features/premium-header/items/divider/options.php:126,
|
| 4162 |
#: framework/premium/features/premium-header/items/language-switcher/options.php:323,
|
| 4163 |
+
#: framework/premium/features/premium-header/items/search-input/options.php:724
|
| 4164 |
msgid "Margin"
|
| 4165 |
msgstr ""
|
| 4166 |
|
| 4196 |
msgid "Flag"
|
| 4197 |
msgstr ""
|
| 4198 |
|
|
|
|
|
|
|
|
|
|
|
|
|
| 4199 |
#: framework/premium/features/premium-header/items/language-switcher/options.php:73
|
| 4200 |
msgid "Label Style"
|
| 4201 |
msgstr ""
|
| 4220 |
msgid "Dropdown Top Offset"
|
| 4221 |
msgstr ""
|
| 4222 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 4223 |
#: framework/premium/features/premium-header/items/search-input/config.php:4
|
| 4224 |
msgid "Search Box"
|
| 4225 |
msgstr ""
|
| 4226 |
|
| 4227 |
+
#: framework/premium/features/premium-header/items/search-input/options.php:42
|
| 4228 |
msgid "Placeholder Text"
|
| 4229 |
msgstr ""
|
| 4230 |
|
| 4231 |
+
#: framework/premium/features/premium-header/items/search-input/options.php:52
|
| 4232 |
msgid "Input Maximum Width"
|
| 4233 |
msgstr ""
|
| 4234 |
|
| 4235 |
+
#: framework/premium/features/premium-header/items/search-input/options.php:64
|
| 4236 |
msgid "Input Height"
|
| 4237 |
msgstr ""
|
| 4238 |
|
| 4239 |
+
#: framework/premium/features/premium-header/items/search-input/options.php:79
|
| 4240 |
msgid "Live Results"
|
| 4241 |
msgstr ""
|
| 4242 |
|
| 4243 |
+
#: framework/premium/features/premium-header/items/search-input/options.php:90
|
| 4244 |
msgid "Live Results Images"
|
| 4245 |
msgstr ""
|
| 4246 |
|
| 4247 |
+
#: framework/premium/features/premium-header/items/search-input/options.php:101
|
| 4248 |
msgid "Search Through Criteria"
|
| 4249 |
msgstr ""
|
| 4250 |
|
| 4251 |
+
#: framework/premium/features/premium-header/items/search-input/options.php:102
|
| 4252 |
msgid "Chose in which post types do you want to perform searches."
|
| 4253 |
msgstr ""
|
| 4254 |
|
| 4255 |
+
#: framework/premium/features/premium-header/items/search-input/options.php:314,
|
| 4256 |
+
#: framework/premium/features/premium-header/items/search-input/options.php:343,
|
| 4257 |
+
#: framework/premium/features/premium-header/items/search-input/options.php:375,
|
| 4258 |
+
#: framework/premium/features/premium-header/items/search-input/options.php:405
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 4259 |
msgid "Input Icon Color"
|
| 4260 |
msgstr ""
|
| 4261 |
|
| 4262 |
+
#: framework/premium/features/premium-header/items/search-input/options.php:744
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 4263 |
msgid "Dropdown Text Color"
|
| 4264 |
msgstr ""
|
| 4265 |
|
| 4266 |
+
#: framework/premium/features/premium-header/items/search-input/options.php:775
|
| 4267 |
msgid "Dropdown Background"
|
| 4268 |
msgstr ""
|
| 4269 |
|
| 4289 |
msgstr ""
|
| 4290 |
|
| 4291 |
#: framework/extensions/newsletter-subscribe/dashboard-static/js/EditCredentials.js:123
|
| 4292 |
+
msgid "This option is available only in Blocksy premium %sversion%s."
|
| 4293 |
msgstr ""
|
| 4294 |
|
| 4295 |
#: framework/extensions/newsletter-subscribe/dashboard-static/js/EditCredentials.js:139
|
| 4319 |
|
| 4320 |
#: framework/extensions/newsletter-subscribe/dashboard-static/js/EditCredentials.js:208
|
| 4321 |
#: framework/premium/extensions/mega-menu/static/js/SettingsManager.js:221
|
| 4322 |
+
#: framework/premium/extensions/sidebars/static/js/SettingsManager.js:101
|
| 4323 |
+
#: framework/premium/extensions/white-label/dashboard-static/js/EditSettings.js:867
|
| 4324 |
#: framework/premium/static/js/footer/EditConditions.js:143
|
| 4325 |
msgid "Save Settings"
|
| 4326 |
msgstr ""
|
| 4378 |
msgstr ""
|
| 4379 |
|
| 4380 |
#: framework/premium/extensions/adobe-typekit/static/js/EditSettings.js:108
|
| 4381 |
+
msgid "Adobe Fonts Settings"
|
| 4382 |
msgstr ""
|
| 4383 |
|
| 4384 |
#: framework/premium/extensions/adobe-typekit/static/js/EditSettings.js:113
|
| 4385 |
msgid ""
|
| 4386 |
+
"You can find %shere%s your Project ID. Once you insert your Project ID and "
|
| 4387 |
+
"click the \"Fetch fonts\" button, your fonts will become available in all "
|
| 4388 |
+
"theme’s typography options."
|
| 4389 |
msgstr ""
|
| 4390 |
|
| 4391 |
#: framework/premium/extensions/adobe-typekit/static/js/EditSettings.js:141
|
| 4516 |
msgid "Add Variation"
|
| 4517 |
msgstr ""
|
| 4518 |
|
| 4519 |
+
#: framework/premium/extensions/local-google-fonts/dashboard-static/js/EditSettings.js:138
|
| 4520 |
msgid ""
|
| 4521 |
"By checking this option you will download and replace the existing Google "
|
| 4522 |
"Fonts with the above ones."
|
| 4523 |
msgstr ""
|
| 4524 |
|
| 4525 |
+
#: framework/premium/extensions/local-google-fonts/dashboard-static/js/EditSettings.js:207
|
| 4526 |
msgid "Sync Google Fonts"
|
| 4527 |
msgstr ""
|
| 4528 |
|
| 4544 |
msgid "Item Settings"
|
| 4545 |
msgstr ""
|
| 4546 |
|
| 4547 |
+
#: framework/premium/extensions/sidebars/static/js/BlockWidgetControls.js:58
|
| 4548 |
+
msgid "Remove Sidebar"
|
| 4549 |
+
msgstr ""
|
| 4550 |
+
|
| 4551 |
+
#: framework/premium/extensions/sidebars/static/js/SettingsManager.js:58
|
| 4552 |
msgid "%s - Sidebar Display Conditions"
|
| 4553 |
msgstr ""
|
| 4554 |
|
| 4555 |
+
#: framework/premium/extensions/sidebars/static/js/SettingsManager.js:63
|
| 4556 |
msgid "Add one or more conditions in order to display your sidebar."
|
| 4557 |
msgstr ""
|
| 4558 |
|
| 4559 |
+
#: framework/premium/extensions/sidebars/static/js/main.js:45
|
| 4560 |
+
msgid "Enter a name in the input below and hit the Create Sidebar button."
|
| 4561 |
+
msgstr ""
|
| 4562 |
+
|
| 4563 |
+
#: framework/premium/extensions/sidebars/static/js/main.js:52
|
| 4564 |
+
msgid "Sidebar name"
|
| 4565 |
+
msgstr ""
|
| 4566 |
+
|
| 4567 |
#: framework/premium/extensions/white-label/dashboard-static/js/EditSettings.js:105
|
| 4568 |
msgid "White Label Settings"
|
| 4569 |
msgstr ""
|
| 4653 |
"recommended image size is 256px wide by 256px tall."
|
| 4654 |
msgstr ""
|
| 4655 |
|
| 4656 |
+
#: framework/premium/extensions/white-label/dashboard-static/js/EditSettings.js:753
|
| 4657 |
msgid "Hide Account Menu Item"
|
| 4658 |
msgstr ""
|
| 4659 |
|
| 4660 |
+
#: framework/premium/extensions/white-label/dashboard-static/js/EditSettings.js:761
|
| 4661 |
msgid "Hide Starter Sites Tab"
|
| 4662 |
msgstr ""
|
| 4663 |
|
| 4664 |
+
#: framework/premium/extensions/white-label/dashboard-static/js/EditSettings.js:768
|
| 4665 |
msgid "Hide Useful Plugins Tab"
|
| 4666 |
msgstr ""
|
| 4667 |
|
| 4668 |
+
#: framework/premium/extensions/white-label/dashboard-static/js/EditSettings.js:776
|
| 4669 |
msgid "Hide Changelog Tab"
|
| 4670 |
msgstr ""
|
| 4671 |
|
| 4672 |
+
#: framework/premium/extensions/white-label/dashboard-static/js/EditSettings.js:784
|
| 4673 |
msgid "Hide Support Section"
|
| 4674 |
msgstr ""
|
| 4675 |
|
| 4676 |
+
#: framework/premium/extensions/white-label/dashboard-static/js/EditSettings.js:792
|
| 4677 |
msgid "Hide Beta Updates Section"
|
| 4678 |
msgstr ""
|
| 4679 |
|
| 4680 |
+
#: framework/premium/extensions/white-label/dashboard-static/js/EditSettings.js:829
|
| 4681 |
msgid "Hide White Label Extension"
|
| 4682 |
msgstr ""
|
| 4683 |
|
| 4684 |
+
#: framework/premium/extensions/white-label/dashboard-static/js/EditSettings.js:846
|
| 4685 |
msgid ""
|
| 4686 |
"Please note that the white label extension will be hidden if this option is "
|
| 4687 |
"enabled. In order to bring it back you have to hit the SHIFT key and click "
|
| 4694 |
|
| 4695 |
#: framework/premium/static/js/components/BetaConsent.js:60
|
| 4696 |
msgid ""
|
| 4697 |
+
"Receive beta updates and help us test the new features and improve them by "
|
| 4698 |
+
"submitting feedback. Please note, installing beta versions on production "
|
| 4699 |
+
"websites is not recommended, test them on staging or localhost environments."
|
| 4700 |
msgstr ""
|
| 4701 |
|
| 4702 |
#: framework/premium/static/js/components/BetaConsent.js:73
|
| 4734 |
msgstr ""
|
| 4735 |
|
| 4736 |
#: framework/premium/static/js/footer/CreateFooter.js:133
|
| 4737 |
+
#: framework/premium/static/js/footer/PanelsManager.js:52
|
| 4738 |
msgid "Global Footer"
|
| 4739 |
msgstr ""
|
| 4740 |
|
| 4776 |
msgid "Add/Edit Conditions"
|
| 4777 |
msgstr ""
|
| 4778 |
|
| 4779 |
+
#: framework/premium/static/js/footer/PanelsManager.js:162
|
| 4780 |
msgid "Remove footer"
|
| 4781 |
msgstr ""
|
| 4782 |
|
| 4783 |
+
#: framework/premium/static/js/footer/PanelsManager.js:192
|
| 4784 |
+
msgid "Remove Footer"
|
| 4785 |
+
msgstr ""
|
| 4786 |
+
|
| 4787 |
+
#: framework/premium/static/js/footer/PanelsManager.js:195
|
| 4788 |
+
msgid ""
|
| 4789 |
+
"You are about to remove a custom footer, are you sure you want to continue?"
|
| 4790 |
+
msgstr ""
|
| 4791 |
+
|
| 4792 |
+
#: framework/premium/static/js/footer/PanelsManager.js:211
|
| 4793 |
+
#: framework/premium/static/js/hooks/CodeEditor.js:60
|
| 4794 |
+
#: static/js/header/PanelsManager.js:215
|
| 4795 |
+
#: static/js/options/CustomizerOptionsManager.js:410
|
| 4796 |
+
msgid "Cancel"
|
| 4797 |
+
msgstr ""
|
| 4798 |
+
|
| 4799 |
+
#: framework/premium/static/js/footer/PanelsManager.js:227
|
| 4800 |
+
#: static/js/header/PanelsManager.js:231
|
| 4801 |
+
msgid "Confirm"
|
| 4802 |
+
msgstr ""
|
| 4803 |
+
|
| 4804 |
+
#: framework/premium/static/js/footer/PanelsManager.js:68
|
| 4805 |
+
#: static/js/header/PanelsManager.js:74
|
| 4806 |
msgid "Edit Conditions"
|
| 4807 |
msgstr ""
|
| 4808 |
|
| 4811 |
msgstr ""
|
| 4812 |
|
| 4813 |
#: framework/premium/static/js/header/CreateHeader.js:134
|
| 4814 |
+
#: static/js/header/PanelsManager.js:58
|
| 4815 |
msgid "Global Header"
|
| 4816 |
msgstr ""
|
| 4817 |
|
| 4859 |
msgid "Are you sure you want to continue?"
|
| 4860 |
msgstr ""
|
| 4861 |
|
| 4862 |
+
#: framework/premium/static/js/hooks/CreateHook.js:105
|
| 4863 |
+
msgid "Content Block Name"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 4864 |
msgstr ""
|
| 4865 |
|
| 4866 |
+
#: framework/premium/static/js/hooks/CreateHook.js:131
|
| 4867 |
msgid "Create Content Block"
|
| 4868 |
msgstr ""
|
| 4869 |
|
| 4881 |
msgid "Custom Content/Hooks"
|
| 4882 |
msgstr ""
|
| 4883 |
|
| 4884 |
+
#: framework/premium/static/js/hooks/CreateHook.js:76
|
| 4885 |
+
msgid "Popup Template"
|
| 4886 |
+
msgstr ""
|
| 4887 |
+
|
| 4888 |
+
#: framework/premium/static/js/hooks/CreateHook.js:82
|
| 4889 |
msgid "404 Page Template"
|
| 4890 |
msgstr ""
|
| 4891 |
|
| 4892 |
+
#: framework/premium/static/js/hooks/CreateHook.js:91
|
| 4893 |
msgid "Header Template"
|
| 4894 |
msgstr ""
|
| 4895 |
|
| 4896 |
+
#: framework/premium/static/js/hooks/CreateHook.js:97
|
| 4897 |
msgid "Footer Template"
|
| 4898 |
msgstr ""
|
| 4899 |
|
| 4900 |
+
#: framework/premium/static/js/options/IconPicker.js:133
|
|
|
|
|
|
|
|
|
|
|
|
|
| 4901 |
msgid "Change Icon"
|
| 4902 |
msgstr ""
|
| 4903 |
|
| 4904 |
+
#: framework/premium/static/js/options/IconPicker.js:150
|
| 4905 |
msgid "Remove Icon"
|
| 4906 |
msgstr ""
|
| 4907 |
|
| 4908 |
+
#: framework/premium/static/js/options/IconPicker.js:156
|
| 4909 |
msgid "Select"
|
| 4910 |
msgstr ""
|
| 4911 |
|
| 4912 |
+
#: framework/premium/static/js/options/IconPicker/CustomIcon.js:22
|
| 4913 |
+
msgid "Upload Icon"
|
| 4914 |
msgstr ""
|
| 4915 |
|
| 4916 |
+
#: framework/premium/static/js/options/IconPicker/CustomIcon.js:34
|
| 4917 |
+
msgid "For performance and customization reasons, only SVG files are allowed."
|
| 4918 |
msgstr ""
|
| 4919 |
|
| 4920 |
+
#: framework/premium/static/js/options/IconPicker/IconsList.js:24
|
| 4921 |
+
msgid "Search icon"
|
| 4922 |
msgstr ""
|
| 4923 |
|
| 4924 |
+
#: framework/premium/static/js/options/IconPicker/Modal.js:135
|
| 4925 |
+
msgid "Predefined"
|
| 4926 |
+
msgstr ""
|
| 4927 |
+
|
| 4928 |
+
#: framework/premium/static/js/options/MultipleLocationsSelect.js:150
|
| 4929 |
+
msgid "Add New Location"
|
| 4930 |
msgstr ""
|
| 4931 |
|
| 4932 |
#: framework/premium/static/js/typography/kadence.js:41
|
| 4961 |
msgid "Add one or more conditions in order to display your header."
|
| 4962 |
msgstr ""
|
| 4963 |
|
| 4964 |
+
#: static/js/header/PanelsManager.js:166
|
| 4965 |
msgid "Remove header"
|
| 4966 |
msgstr ""
|
| 4967 |
|
| 4968 |
+
#: static/js/header/PanelsManager.js:196
|
| 4969 |
+
msgid "Remove Header"
|
| 4970 |
+
msgstr ""
|
| 4971 |
+
|
| 4972 |
+
#: static/js/header/PanelsManager.js:199
|
| 4973 |
+
msgid ""
|
| 4974 |
+
"You are about to remove a custom header, are you sure you want to continue?"
|
| 4975 |
+
msgstr ""
|
| 4976 |
+
|
| 4977 |
#: static/js/helpers/SubmitSupport.js:18
|
| 4978 |
msgid "Need help or advice?"
|
| 4979 |
msgstr ""
|
| 4992 |
msgid "Join Facebook Community"
|
| 4993 |
msgstr ""
|
| 4994 |
|
| 4995 |
+
#: static/js/helpers/useActivationAction.js:101
|
| 4996 |
+
msgid "Hurry up, we have a 10% off discount now 🤩"
|
|
|
|
|
|
|
| 4997 |
msgstr ""
|
| 4998 |
|
| 4999 |
+
#: static/js/helpers/useActivationAction.js:120
|
| 5000 |
+
msgid "Free vs Pro"
|
| 5001 |
+
msgstr ""
|
| 5002 |
+
|
| 5003 |
+
#: static/js/helpers/useActivationAction.js:127
|
| 5004 |
msgid "Upgrade Now"
|
| 5005 |
msgstr ""
|
| 5006 |
|
| 5007 |
+
#: static/js/helpers/useActivationAction.js:94
|
| 5008 |
+
msgid ""
|
| 5009 |
+
"Upgrade to the Pro version and get instant access to all premium extensions, "
|
| 5010 |
+
"features and future updates."
|
| 5011 |
+
msgstr ""
|
| 5012 |
+
|
| 5013 |
#: static/js/options/ConditionsManager.js:110
|
| 5014 |
msgid "Select rule"
|
| 5015 |
msgstr ""
|
| 5059 |
msgstr ""
|
| 5060 |
|
| 5061 |
#: static/js/options/CustomizerOptionsManager.js:111
|
| 5062 |
+
msgid "Easily import the theme customizer settings."
|
| 5063 |
msgstr ""
|
| 5064 |
|
| 5065 |
#: static/js/options/CustomizerOptionsManager.js:134
|
| 5066 |
msgid "Click or drop to upload a file..."
|
| 5067 |
msgstr ""
|
| 5068 |
|
| 5069 |
+
#: static/js/options/CustomizerOptionsManager.js:197
|
| 5070 |
msgid "Import Customizations"
|
| 5071 |
msgstr ""
|
| 5072 |
|
| 5073 |
+
#: static/js/options/CustomizerOptionsManager.js:206
|
| 5074 |
msgid "Copy Options"
|
| 5075 |
msgstr ""
|
| 5076 |
|
| 5077 |
+
#: static/js/options/CustomizerOptionsManager.js:209
|
| 5078 |
msgid "Copy and import your customizations from parent or child theme."
|
| 5079 |
msgstr ""
|
| 5080 |
|
| 5081 |
+
#: static/js/options/CustomizerOptionsManager.js:263
|
| 5082 |
msgid "Copy From Parent Theme"
|
| 5083 |
msgstr ""
|
| 5084 |
|
| 5085 |
+
#: static/js/options/CustomizerOptionsManager.js:266
|
| 5086 |
msgid "Copy From Child Theme"
|
| 5087 |
msgstr ""
|
| 5088 |
|
| 5089 |
+
#: static/js/options/CustomizerOptionsManager.js:270
|
| 5090 |
msgid ""
|
| 5091 |
"You are about to copy all the settings from your parent theme into the child "
|
| 5092 |
"theme. Are you sure you want to continue?"
|
| 5093 |
msgstr ""
|
| 5094 |
|
| 5095 |
+
#: static/js/options/CustomizerOptionsManager.js:276
|
| 5096 |
msgid ""
|
| 5097 |
"You are about to copy all the settings from your child theme into the parent "
|
| 5098 |
"theme. Are you sure you want to continue?"
|
| 5099 |
msgstr ""
|
| 5100 |
|
| 5101 |
+
#: static/js/options/CustomizerOptionsManager.js:325
|
| 5102 |
msgid "Yes, I am sure"
|
| 5103 |
msgstr ""
|
| 5104 |
|
| 5105 |
+
#: static/js/options/CustomizerOptionsManager.js:339
|
| 5106 |
msgid "Export Settings"
|
| 5107 |
msgstr ""
|
| 5108 |
|
| 5109 |
+
#: static/js/options/CustomizerOptionsManager.js:343
|
| 5110 |
msgid "Choose what set of settings you want to export."
|
| 5111 |
msgstr ""
|
| 5112 |
|
| 5113 |
+
#: static/js/options/CustomizerOptionsManager.js:371
|
| 5114 |
msgid "Customizer settings"
|
| 5115 |
msgstr ""
|
| 5116 |
|
| 5117 |
+
#: static/js/options/CustomizerOptionsManager.js:375
|
| 5118 |
msgid "Widgets settings"
|
| 5119 |
msgstr ""
|
| 5120 |
|
| 5121 |
+
#: static/js/options/CustomizerOptionsManager.js:466
|
| 5122 |
msgid "Export"
|
| 5123 |
msgstr ""
|
| 5124 |
|
| 5127 |
msgstr ""
|
| 5128 |
|
| 5129 |
#: static/js/options/CustomizerOptionsManager.js:85
|
| 5130 |
+
msgid "Easily export the theme customizer settings."
|
|
|
|
| 5131 |
msgstr ""
|
| 5132 |
|
| 5133 |
#: static/js/options/DisplayCondition.js:18
|
| 5144 |
|
| 5145 |
#: static/js/screens/DemoInstall.js:130
|
| 5146 |
msgid ""
|
| 5147 |
+
"The connection to our <b>demo.creativethemes.com</b> server didn't worked. "
|
| 5148 |
+
"This connection is required for importing the starter sites from our demo "
|
| 5149 |
+
"content server. All you have to do is to contact your hosting provider and "
|
| 5150 |
+
"ask them to white list our demo server address."
|
| 5151 |
msgstr ""
|
| 5152 |
|
| 5153 |
#: static/js/screens/DemoInstall/DemoInstaller.js:66
|
| 5408 |
"Please select your prefered one in order to continue."
|
| 5409 |
msgstr ""
|
| 5410 |
|
| 5411 |
+
#: static/js/screens/DemoInstall/Wizzard/Plugins.js:64
|
| 5412 |
msgid "Install & Activate Plugins"
|
| 5413 |
msgstr ""
|
| 5414 |
|
| 5415 |
+
#: static/js/screens/DemoInstall/Wizzard/Plugins.js:66
|
| 5416 |
msgid ""
|
| 5417 |
"The following plugins are required for this starter site in order to work "
|
| 5418 |
"properly."
|
readme.txt
CHANGED
|
@@ -5,7 +5,7 @@ Requires PHP: 7.0
|
|
| 5 |
Tested up to: 5.8
|
| 6 |
License: GPLv2 or later
|
| 7 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
| 8 |
-
Stable tag: 1.8.
|
| 9 |
|
| 10 |
== Description ==
|
| 11 |
|
|
@@ -23,6 +23,16 @@ It runs and adds its enhancements only if the Blocksy theme is installed and act
|
|
| 23 |
2. Activate the plugin by going to **Plugins** page in WordPress admin and clicking on **Activate** link.
|
| 24 |
|
| 25 |
== Changelog ==
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 26 |
1.8.7.5: 2021-08-02
|
| 27 |
- Improvement: General fixes and improvements
|
| 28 |
|
| 5 |
Tested up to: 5.8
|
| 6 |
License: GPLv2 or later
|
| 7 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
| 8 |
+
Stable tag: 1.8.8
|
| 9 |
|
| 10 |
== Description ==
|
| 11 |
|
| 23 |
2. Activate the plugin by going to **Plugins** page in WordPress admin and clicking on **Activate** link.
|
| 24 |
|
| 25 |
== Changelog ==
|
| 26 |
+
1.8.8: 2021-08-20
|
| 27 |
+
- New: Random order for posts widget
|
| 28 |
+
- Fix: Trending module products category source
|
| 29 |
+
- Fix: Header account items label position
|
| 30 |
+
- Fix: WP Optimize clean caches correctly
|
| 31 |
+
|
| 32 |
+
1.8.8-beta7: 2021-08-17
|
| 33 |
+
- Fix: Header account items label position
|
| 34 |
+
- Fix: WP Optimize clean caches correctly
|
| 35 |
+
|
| 36 |
1.8.7.5: 2021-08-02
|
| 37 |
- Improvement: General fixes and improvements
|
| 38 |
|
static/bundle/dashboard.js
CHANGED
|
@@ -3,4 +3,4 @@
|
|
| 3 |
Copyright (c) 2017 Jed Watson.
|
| 4 |
Licensed under the MIT License (MIT), see
|
| 5 |
http://jedwatson.github.io/classnames
|
| 6 |
-
*/!function(){"use strict";var n={}.hasOwnProperty;function c(){for(var e=[],t=0;t<arguments.length;t++){var r=arguments[t];if(r){var o=typeof r;if("string"===o||"number"===o)e.push(r);else if(Array.isArray(r)&&r.length){var a=c.apply(null,r);a&&e.push(a)}else if("object"===o)for(var i in r)n.call(r,i)&&r[i]&&e.push(i)}}return e.join(" ")}e.exports?(c.default=c,e.exports=c):void 0===(r=function(){return c}.apply(t,[]))||(e.exports=r)}()},function(e,t){e.exports=window.blocksyOptions},function(e,t){e.exports=window.ctEvents},function(e,t){e.exports=window.React},function(e,t,n){var r,c,o=n(11),a=n(12),i=(c=[],{activateTrap:function(e){if(c.length>0){var t=c[c.length-1];t!==e&&t.pause()}var n=c.indexOf(e);-1===n||c.splice(n,1),c.push(e)},deactivateTrap:function(e){var t=c.indexOf(e);-1!==t&&c.splice(t,1),c.length>0&&c[c.length-1].unpause()}});function l(e){return setTimeout(e,0)}e.exports=function(e,t){var n=document,c="string"==typeof e?n.querySelector(e):e,u=a({returnFocusOnDeactivate:!0,escapeDeactivates:!0},t),s={firstTabbableNode:null,lastTabbableNode:null,nodeFocusedBeforeActivation:null,mostRecentlyFocusedNode:null,active:!1,paused:!1},f={activate:function(e){if(s.active)return;g(),s.active=!0,s.paused=!1,s.nodeFocusedBeforeActivation=n.activeElement;var t=e&&e.onActivate?e.onActivate:u.onActivate;t&&t();return m(),f},deactivate:d,pause:function(){if(s.paused||!s.active)return;s.paused=!0,b()},unpause:function(){if(!s.paused||!s.active)return;s.paused=!1,g(),m()}};return f;function d(e){if(s.active){clearTimeout(r),b(),s.active=!1,s.paused=!1,i.deactivateTrap(f);var t=e&&void 0!==e.onDeactivate?e.onDeactivate:u.onDeactivate;return t&&t(),(e&&void 0!==e.returnFocus?e.returnFocus:u.returnFocusOnDeactivate)&&l((function(){var e;_((e=s.nodeFocusedBeforeActivation,p("setReturnFocus")||e))})),f}}function m(){if(s.active)return i.activateTrap(f),r=l((function(){_(h())})),n.addEventListener("focusin",O,!0),n.addEventListener("mousedown",v,{capture:!0,passive:!1}),n.addEventListener("touchstart",v,{capture:!0,passive:!1}),n.addEventListener("click",j,{capture:!0,passive:!1}),n.addEventListener("keydown",y,{capture:!0,passive:!1}),f}function b(){if(s.active)return n.removeEventListener("focusin",O,!0),n.removeEventListener("mousedown",v,!0),n.removeEventListener("touchstart",v,!0),n.removeEventListener("click",j,!0),n.removeEventListener("keydown",y,!0),f}function p(e){var t=u[e],r=t;if(!t)return null;if("string"==typeof t&&!(r=n.querySelector(t)))throw new Error("`"+e+"` refers to no known node");if("function"==typeof t&&!(r=t()))throw new Error("`"+e+"` did not return a node");return r}function h(){var e;if(!(e=null!==p("initialFocus")?p("initialFocus"):c.contains(n.activeElement)?n.activeElement:s.firstTabbableNode||p("fallbackFocus")))throw new Error("Your focus-trap needs to have at least one focusable element");return e}function v(e){c.contains(e.target)||(u.clickOutsideDeactivates?d({returnFocus:!o.isFocusable(e.target)}):u.allowOutsideClick&&u.allowOutsideClick(e)||e.preventDefault())}function O(e){c.contains(e.target)||e.target instanceof Document||(e.stopImmediatePropagation(),_(s.mostRecentlyFocusedNode||h()))}function y(e){if(!1!==u.escapeDeactivates&&function(e){return"Escape"===e.key||"Esc"===e.key||27===e.keyCode}(e))return e.preventDefault(),void d();(function(e){return"Tab"===e.key||9===e.keyCode})(e)&&function(e){if(g(),e.shiftKey&&e.target===s.firstTabbableNode)return e.preventDefault(),void _(s.lastTabbableNode);if(!e.shiftKey&&e.target===s.lastTabbableNode)e.preventDefault(),_(s.firstTabbableNode)}(e)}function j(e){u.clickOutsideDeactivates||c.contains(e.target)||u.allowOutsideClick&&u.allowOutsideClick(e)||(e.preventDefault(),e.stopImmediatePropagation())}function g(){var e=o(c);s.firstTabbableNode=e[0]||h(),s.lastTabbableNode=e[e.length-1]||h()}function _(e){e!==n.activeElement&&(e&&e.focus?(e.focus(),s.mostRecentlyFocusedNode=e,function(e){return e.tagName&&"input"===e.tagName.toLowerCase()&&"function"==typeof e.select}(e)&&e.select()):_(h()))}}},function(e,t,n){(function(n){var r,c,o;c=[],void 0===(o="function"==typeof(r=function(){"use strict";function t(e,t,n){var r=new XMLHttpRequest;r.open("GET",e),r.responseType="blob",r.onload=function(){a(r.response,t,n)},r.onerror=function(){console.error("could not download file")},r.send()}function r(e){var t=new XMLHttpRequest;t.open("HEAD",e,!1);try{t.send()}catch(e){}return 200<=t.status&&299>=t.status}function c(e){try{e.dispatchEvent(new MouseEvent("click"))}catch(n){var t=document.createEvent("MouseEvents");t.initMouseEvent("click",!0,!0,window,0,0,0,80,20,!1,!1,!1,!1,0,null),e.dispatchEvent(t)}}var o="object"==typeof window&&window.window===window?window:"object"==typeof self&&self.self===self?self:"object"==typeof n&&n.global===n?n:void 0,a=o.saveAs||("object"!=typeof window||window!==o?function(){}:"download"in HTMLAnchorElement.prototype?function(e,n,a){var i=o.URL||o.webkitURL,l=document.createElement("a");n=n||e.name||"download",l.download=n,l.rel="noopener","string"==typeof e?(l.href=e,l.origin===location.origin?c(l):r(l.href)?t(e,n,a):c(l,l.target="_blank")):(l.href=i.createObjectURL(e),setTimeout((function(){i.revokeObjectURL(l.href)}),4e4),setTimeout((function(){c(l)}),0))}:"msSaveOrOpenBlob"in navigator?function(e,n,o){if(n=n||e.name||"download","string"!=typeof e)navigator.msSaveOrOpenBlob(function(e,t){return void 0===t?t={autoBom:!1}:"object"!=typeof t&&(console.warn("Deprecated: Expected third argument to be a object"),t={autoBom:!t}),t.autoBom&&/^\s*(?:text\/\S*|application\/xml|\S*\/\S*\+xml)\s*;.*charset\s*=\s*utf-8/i.test(e.type)?new Blob(["\ufeff",e],{type:e.type}):e}(e,o),n);else if(r(e))t(e,n,o);else{var a=document.createElement("a");a.href=e,a.target="_blank",setTimeout((function(){c(a)}))}}:function(e,n,r,c){if((c=c||open("","_blank"))&&(c.document.title=c.document.body.innerText="downloading..."),"string"==typeof e)return t(e,n,r);var a="application/octet-stream"===e.type,i=/constructor/i.test(o.HTMLElement)||o.safari,l=/CriOS\/[\d]+/.test(navigator.userAgent);if((l||a&&i)&&"object"==typeof FileReader){var u=new FileReader;u.onloadend=function(){var e=u.result;e=l?e:e.replace(/^data:[^;]*;/,"data:attachment/file;"),c?c.location.href=e:location=e,c=null},u.readAsDataURL(e)}else{var s=o.URL||o.webkitURL,f=s.createObjectURL(e);c?c.location=f:location.href=f,c=null,setTimeout((function(){s.revokeObjectURL(f)}),4e4)}});o.saveAs=a.saveAs=a,e.exports=a})?r.apply(t,c):r)||(e.exports=o)}).call(this,n(13))},function(e,t,n){e.exports=n(9)()},function(e,t,n){"use strict";var r=n(10);function c(){}function o(){}o.resetWarningCache=c,e.exports=function(){function e(e,t,n,c,o,a){if(a!==r){var i=new Error("Calling PropTypes validators directly is not supported by the `prop-types` package. Use PropTypes.checkPropTypes() to call them. Read more at http://fb.me/use-check-prop-types");throw i.name="Invariant Violation",i}}function t(){return e}e.isRequired=e;var n={array:e,bool:e,func:e,number:e,object:e,string:e,symbol:e,any:e,arrayOf:t,element:e,elementType:e,instanceOf:t,node:e,objectOf:t,oneOf:t,oneOfType:t,shape:t,exact:t,checkPropTypes:o,resetWarningCache:c};return n.PropTypes=n,n}},function(e,t,n){"use strict";e.exports="SECRET_DO_NOT_PASS_THIS_OR_YOU_WILL_BE_FIRED"},function(e,t){var n=["input","select","textarea","a[href]","button","[tabindex]","audio[controls]","video[controls]",'[contenteditable]:not([contenteditable="false"])'],r=n.join(","),c="undefined"==typeof Element?function(){}:Element.prototype.matches||Element.prototype.msMatchesSelector||Element.prototype.webkitMatchesSelector;function o(e,t){t=t||{};var n,o,i,l=[],f=[],d=e.querySelectorAll(r);for(t.includeContainer&&c.call(e,r)&&(d=Array.prototype.slice.apply(d)).unshift(e),n=0;n<d.length;n++)a(o=d[n])&&(0===(i=u(o))?l.push(o):f.push({documentOrder:n,tabIndex:i,node:o}));return f.sort(s).map((function(e){return e.node})).concat(l)}function a(e){return!(!i(e)||function(e){return function(e){return f(e)&&"radio"===e.type}(e)&&!function(e){if(!e.name)return!0;var t=function(e){for(var t=0;t<e.length;t++)if(e[t].checked)return e[t]}(e.ownerDocument.querySelectorAll('input[type="radio"][name="'+e.name+'"]'));return!t||t===e}(e)}(e)||u(e)<0)}function i(e){return!(e.disabled||function(e){return f(e)&&"hidden"===e.type}(e)||function(e){return null===e.offsetParent||"hidden"===getComputedStyle(e).visibility}(e))}o.isTabbable=function(e){if(!e)throw new Error("No node provided");return!1!==c.call(e,r)&&a(e)},o.isFocusable=function(e){if(!e)throw new Error("No node provided");return!1!==c.call(e,l)&&i(e)};var l=n.concat("iframe").join(",");function u(e){var t=parseInt(e.getAttribute("tabindex"),10);return isNaN(t)?function(e){return"true"===e.contentEditable}(e)?0:e.tabIndex:t}function s(e,t){return e.tabIndex===t.tabIndex?e.documentOrder-t.documentOrder:e.tabIndex-t.tabIndex}function f(e){return"INPUT"===e.tagName}e.exports=o},function(e,t){e.exports=function(){for(var e={},t=0;t<arguments.length;t++){var r=arguments[t];for(var c in r)n.call(r,c)&&(e[c]=r[c])}return e};var n=Object.prototype.hasOwnProperty},function(e,t){var n;n=function(){return this}();try{n=n||new Function("return this")()}catch(e){"object"==typeof window&&(n=window)}e.exports=n},function(e,t,n){"use strict";n.r(t);var r=n(0),c=n(4),o=n.n(c),a=n(1),i=n(2),l=n.n(i),u=n(5),s=n.n(u);n(8);function f(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function d(e,t){if(!e)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return!t||"object"!=typeof t&&"function"!=typeof t?e:t}var m=function(e){e.initialState,e.getInitialState,e.refs,e.getRefs,e.didMount,e.didUpdate,e.willUnmount,e.getSnapshotBeforeUpdate,e.shouldUpdate,e.render;return function(e,t){var n={};for(var r in e)t.indexOf(r)>=0||Object.prototype.hasOwnProperty.call(e,r)&&(n[r]=e[r]);return n}(e,["initialState","getInitialState","refs","getRefs","didMount","didUpdate","willUnmount","getSnapshotBeforeUpdate","shouldUpdate","render"])},b=function(e){function t(){var n,r;f(this,t);for(var c=arguments.length,o=Array(c),a=0;a<c;a++)o[a]=arguments[a];return n=r=d(this,e.call.apply(e,[this].concat(o))),p.call(r),d(r,n)}return function(e,t){if("function"!=typeof t&&null!==t)throw new TypeError("Super expression must either be null or a function, not "+typeof t);e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,enumerable:!1,writable:!0,configurable:!0}}),t&&(Object.setPrototypeOf?Object.setPrototypeOf(e,t):e.__proto__=t)}(t,e),t.prototype.getArgs=function(){var e=this.state,t=this.props,n=this._setState,r=this._forceUpdate,c=this._refs;return{state:e,props:m(t),refs:c,setState:n,forceUpdate:r}},t.prototype.componentDidMount=function(){this.props.didMount&&this.props.didMount(this.getArgs())},t.prototype.shouldComponentUpdate=function(e,t){return!this.props.shouldUpdate||this.props.shouldUpdate({props:this.props,state:this.state,nextProps:m(e),nextState:t})},t.prototype.componentWillUnmount=function(){this.props.willUnmount&&this.props.willUnmount({state:this.state,props:m(this.props),refs:this._refs})},t.prototype.componentDidUpdate=function(e,t,n){this.props.didUpdate&&this.props.didUpdate(Object.assign(this.getArgs(),{prevProps:m(e),prevState:t}),n)},t.prototype.getSnapshotBeforeUpdate=function(e,t){return this.props.getSnapshotBeforeUpdate?this.props.getSnapshotBeforeUpdate(Object.assign(this.getArgs(),{prevProps:m(e),prevState:t})):null},t.prototype.render=function(){var e=this.props,t=e.children,n=e.render;return n?n(this.getArgs()):"function"==typeof t?t(this.getArgs()):t||null},t}(s.a.Component);b.defaultProps={getInitialState:function(){},getRefs:function(){return{}}};var p=function(){var e=this;this.state=this.props.initialState||this.props.getInitialState(this.props),this._refs=this.props.refs||this.props.getRefs(this.getArgs()),this._setState=function(){return e.setState.apply(e,arguments)},this._forceUpdate=function(){return e.forceUpdate.apply(e,arguments)}},h=b,v=function(e){var t=e.children,n=e.container,c=void 0===n?document.body:n,o=e.type,a=void 0===o?"reach-portal":o;return Object(r.createElement)(h,{getRefs:function(){return{node:null}},didMount:function(e){var t=e.refs,n=e.forceUpdate,r=c.hasOwnProperty("current")?c.current:c;t.node=document.createElement(a),r.appendChild(t.node),n()},willUnmount:function(e){var t=e.refs.node,n=c.hasOwnProperty("current")?c.current:c;n&&n.removeChild(t)},render:function(e){var n=e.refs.node;return n?Object(r.createPortal)(t,n):null}})};var O=function(e,t){return function(n){if(e&&e(n),!n.defaultPrevented)return t(n)}},y=n(6),j=n.n(y);function g(){return(g=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var n=arguments[t];for(var r in n)Object.prototype.hasOwnProperty.call(n,r)&&(e[r]=n[r])}return e}).apply(this,arguments)}function _(e,t){if(null==e)return{};var n,r,c=function(e,t){if(null==e)return{};var n,r,c={},o=Object.keys(e);for(r=0;r<o.length;r++)n=o[r],t.indexOf(n)>=0||(c[n]=e[n]);return c}(e,t);if(Object.getOwnPropertySymbols){var o=Object.getOwnPropertySymbols(e);for(r=0;r<o.length;r++)n=o[r],t.indexOf(n)>=0||Object.prototype.propertyIsEnumerable.call(e,n)&&(c[n]=e[n])}return c}var E=function(){},w=function(){},x=function(e,t){var n,r,c;e.disposeAriaHider=(n=e.overlayNode,r=[],c=[],Array.prototype.forEach.call(document.querySelectorAll("body > *"),(function(e){if(e!==n.parentNode){var t=e.getAttribute("aria-hidden");null!==t&&"false"!==t||(r.push(t),c.push(e),e.setAttribute("aria-hidden","true"))}})),function(){c.forEach((function(e,t){var n=r[t];null===n?e.removeAttribute("aria-hidden"):e.setAttribute("aria-hidden",n)}))}),e.trap=j()(e.overlayNode,{initialFocus:t?function(){return t.current}:void 0,fallbackFocus:e.contentNode,escapeDeactivates:!1,clickOutsideDeactivates:!1})},S=function(e){var t=e.refs;t.trap.deactivate(),t.disposeAriaHider()},k=React.createContext(),C=React.forwardRef((function(e,t){var n=e.container,c=e.isOpen,o=void 0===c||c,a=e.onDismiss,i=void 0===a?E:a,l=e.initialFocusRef,u=e.onClick,s=e.onKeyDown,f=_(e,["container","isOpen","onDismiss","initialFocusRef","onClick","onKeyDown"]);return Object(r.createElement)(h,{didMount:w},o?Object(r.createElement)(v,{container:n,"data-reach-dialog-wrapper":!0},Object(r.createElement)(h,{refs:{overlayNode:null,contentNode:null},didMount:function(e){var t=e.refs;x(t,l)},willUnmount:S},(function(e){var n=e.refs;return Object(r.createElement)(k.Provider,{value:function(e){return n.contentNode=e}},Object(r.createElement)("div",g({"data-reach-dialog-overlay":!0,onClick:O(u,(function(e){e.stopPropagation(),i()})),onKeyDown:O(s,(function(e){"Escape"===e.key&&(e.stopPropagation(),i())})),ref:function(e){n.overlayNode=e,t&&t(e)}},f)))}))):null)}));C.propTypes={initialFocusRef:function(){}};var D=function(e){return e.stopPropagation()},P=React.forwardRef((function(e,t){var n=e.onClick,c=(e.onKeyDown,_(e,["onClick","onKeyDown"]));return Object(r.createElement)(k.Consumer,null,(function(e){return Object(r.createElement)("div",g({"aria-modal":"true","data-reach-dialog-content":!0,tabIndex:"-1",onClick:O(n,D),ref:function(n){e(n),t&&t(n)}},c))}))})),A=n(3),N=function(e){return!!e},M=function(e){var t=e.items,n=e.isVisible,c=void 0===n?N:n,o=e.render,a=e.className,i=e.onDismiss;return Object(r.createElement)(A.Transition,{items:t,onStart:function(){return document.body.classList[c(t)?"add":"remove"]("ct-dashboard-overlay-open")},config:{duration:200},from:{opacity:0,y:-10},enter:{opacity:1,y:0},leave:{opacity:0,y:10}},(function(e){return c(e)&&function(t){return Object(r.createElement)(C,{style:{opacity:t.opacity},container:document.querySelector("#wpbody"),onDismiss:function(){return i()}},Object(r.createElement)(P,{className:l()("ct-admin-modal",a),style:{transform:"translate3d(0px, ".concat(t.y,"px, 0px)")}},Object(r.createElement)("button",{className:"close-button",onClick:function(){return i()}},"×"),o(e,t)))}}))};function L(e,t){return function(e){if(Array.isArray(e))return e}(e)||function(e,t){if("undefined"==typeof Symbol||!(Symbol.iterator in Object(e)))return;var n=[],r=!0,c=!1,o=void 0;try{for(var a,i=e[Symbol.iterator]();!(r=(a=i.next()).done)&&(n.push(a.value),!t||n.length!==t);r=!0);}catch(e){c=!0,o=e}finally{try{r||null==i.return||i.return()}finally{if(c)throw o}}return n}(e,t)||function(e,t){if(!e)return;if("string"==typeof e)return z(e,t);var n=Object.prototype.toString.call(e).slice(8,-1);"Object"===n&&e.constructor&&(n=e.constructor.name);if("Map"===n||"Set"===n)return Array.from(e);if("Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n))return z(e,t)}(e,t)||function(){throw new TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}function z(e,t){(null==t||t>e.length)&&(t=e.length);for(var n=0,r=new Array(t);n<t;n++)r[n]=e[n];return r}var T=function(e){var t=L(Object(r.useState)(!1),2),n=t[0],c=t[1];return[function(){return c(!0)},Object(r.createElement)(M,{items:n,onDismiss:function(){return c(!1)},render:function(){return Object(r.createElement)("div",{className:"ct-modal-content",dangerouslySetInnerHTML:{__html:e.readme}})}})]},I=window.ctDashboardLocalizations.DashboardContext,R=(I.Provider,I.Consumer,I);function F(e,t,n,r,c,o,a){try{var i=e[o](a),l=i.value}catch(e){return void n(e)}i.done?t(l):Promise.resolve(l).then(r,c)}function B(e){return function(){var t=this,n=arguments;return new Promise((function(r,c){var o=e.apply(t,n);function a(e){F(o,r,c,a,i,"next",e)}function i(e){F(o,r,c,a,i,"throw",e)}a(void 0)}))}}function U(e,t){return function(e){if(Array.isArray(e))return e}(e)||function(e,t){if("undefined"==typeof Symbol||!(Symbol.iterator in Object(e)))return;var n=[],r=!0,c=!1,o=void 0;try{for(var a,i=e[Symbol.iterator]();!(r=(a=i.next()).done)&&(n.push(a.value),!t||n.length!==t);r=!0);}catch(e){c=!0,o=e}finally{try{r||null==i.return||i.return()}finally{if(c)throw o}}return n}(e,t)||function(e,t){if(!e)return;if("string"==typeof e)return V(e,t);var n=Object.prototype.toString.call(e).slice(8,-1);"Object"===n&&e.constructor&&(n=e.constructor.name);if("Map"===n||"Set"===n)return Array.from(e);if("Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n))return V(e,t)}(e,t)||function(){throw new TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}function V(e,t){(null==t||t>e.length)&&(t=e.length);for(var n=0,r=new Array(t);n<t;n++)r[n]=e[n];return r}var H=function(e){var t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:function(){},n=Object(r.useState)(!1),c=U(n,2),o=c[0],i=c[1],l=Object(r.useState)(!1),u=U(l,2),s=u[0],f=u[1],d=Object(r.useContext)(R),m=(d.Link,d.history),b=ctDashboardLocalizations.plugin_data.is_pro,p=function(){var n=B(regeneratorRuntime.mark((function n(){var r;return regeneratorRuntime.wrap((function(n){for(;;)switch(n.prev=n.next){case 0:if(b||!e.config.pro){n.next=3;break}return f(!0),n.abrupt("return");case 3:return(r=new FormData).append("ext",e.name),r.append("action",e.__object?"blocksy_extension_deactivate":"blocksy_extension_activate"),i(!0),n.prev=7,n.next=10,fetch(ctDashboardLocalizations.ajax_url,{method:"POST",body:r});case 10:e.config.require_refresh&&location.reload(),t(),n.next=16;break;case 14:n.prev=14,n.t0=n.catch(7);case 16:i(!1);case 17:case"end":return n.stop()}}),n,null,[[7,14]])})));return function(){return n.apply(this,arguments)}}();return[o,p,!b&&e.config.pro?Object(r.createElement)(M,{items:s,className:"ct-onboarding-modal",onDismiss:function(){return f(!1)},render:function(){return Object(r.createElement)("div",{className:"ct-modal-content"},Object(r.createElement)("svg",{width:"55",height:"55",viewBox:"0 0 40.5 48.3"},Object(r.createElement)("path",{fill:"#2d82c8",d:"M33.4 29.4l7.1 12.3-7.4.6-4 6-7.3-12.9"}),Object(r.createElement)("path",{d:"M33.5 29.6L26 42.7l-4.2-7.3 11.6-6 .1.2zM0 41.7l7.5.6 3.9 6 7.2-12.4-11-7.3L0 41.7z",fill:"#2271b1"}),Object(r.createElement)("path",{d:"M39.5 18.7c0 1.6-2.4 2.8-2.7 4.3-.4 1.5 1 3.8.2 5.1-.8 1.3-3.4 1.2-4.5 2.3-1.1 1.1-1 3.7-2.3 4.5-1.3.8-3.6-.6-5.1-.2-1.5.4-2.7 2.7-4.3 2.7S18 35 16.5 34.7c-1.5-.4-3.8 1-5.1.2s-1.2-3.4-2.3-4.5-3.7-1-4.5-2.3.6-3.6.2-5.1-2.7-2.7-2.7-4.3 2.4-2.8 2.7-4.3c.4-1.5-1-3.8-.2-5.1C5.4 8 8.1 8.1 9.1 7c1.1-1.1 1-3.7 2.3-4.5s3.6.6 5.1.2C18 2.4 19.2 0 20.8 0c1.6 0 2.8 2.4 4.3 2.7 1.5.4 3.8-1 5.1-.2 1.3.8 1.2 3.4 2.3 4.5 1.1 1.1 3.7 1 4.5 2.3s-.6 3.6-.2 5.1c.3 1.5 2.7 2.7 2.7 4.3z",fill:"#599fd9"}),Object(r.createElement)("path",{d:"M23.6 7c-6.4-1.5-12.9 2.5-14.4 8.9-.7 3.1-.2 6.3 1.5 9.1 1.7 2.7 4.3 4.6 7.4 5.4.9.2 1.9.3 2.8.3 2.2 0 4.4-.6 6.3-1.8 2.7-1.7 4.6-4.3 5.4-7.5C34 15 30 8.5 23.6 7zm7 14c-.6 2.6-2.2 4.8-4.5 6.2-2.3 1.4-5 1.8-7.6 1.2-2.6-.6-4.8-2.2-6.2-4.5-1.4-2.3-1.8-5-1.2-7.6.6-2.6 2.2-4.8 4.5-6.2 1.6-1 3.4-1.5 5.2-1.5.8 0 1.5.1 2.3.3 5.4 1.3 8.7 6.7 7.5 12.1zm-8.2-4.5l3.7.5-2.7 2.7.7 3.7-3.4-1.8-3.3 1.8.6-3.7-2.7-2.7 3.8-.5 1.6-3.4 1.7 3.4z",fill:"#fff"})),Object(r.createElement)("h2",{className:"ct-modal-title"},"This is a Pro extension"),Object(r.createElement)("p",null,Object(a.__)("Upgrade to the Pro version and get instant access to all premium extensions, features and future updates.","blc")),Object(r.createElement)("p",null,Object(a.__)("Hurry up, we have a 10% off discount now 🤩","blc")),Object(r.createElement)("div",{className:"ct-modal-actions has-divider","data-buttons":"2"},Object(r.createElement)("a",{onClick:function(e){e.preventDefault(),f(!1),setTimeout((function(){m.navigate("/pro")}),300)},className:"button"},Object(a.__)("Free vs Pro","blocksy")),Object(r.createElement)("a",{href:"https://creativethemes.com/blocksy/pricing/?coupon=BlocksyLimited10&utm_source=getpro&utm_medium=dashboard&utm_campaign=BlocksyLimited10",target:"_blank",className:"button button-primary"},Object(a.__)("Upgrade Now","blc"))))}}):null]},q=function(){return ctDashboardLocalizations.plugin_data.hide_support_section?null:Object(r.createElement)("div",{className:"ct-support-container"},Object(r.createElement)("h2",null,Object(a.__)("Need help or advice?","blc")),Object(r.createElement)("p",null,Object(a.__)("Got a question or need help with the theme? You can always submit a support ticket or ask for help in our friendly Facebook community.","blc")),Object(r.createElement)("a",{href:ctDashboardLocalizations.support_url,className:"ct-button","data-hover":"blue",target:"_blank"},Object(a.__)("Submit a Support Ticket","blc")),Object(r.createElement)("a",{href:"https://www.facebook.com/groups/blocksy.community",className:"ct-button","data-hover":"blue",target:"_blank"},Object(a.__)("Join Facebook Community","blc")))};function W(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);t&&(r=r.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),n.push.apply(n,r)}return n}function Z(e){for(var t=1;t<arguments.length;t++){var n=null!=arguments[t]?arguments[t]:{};t%2?W(Object(n),!0).forEach((function(t){$(e,t,n[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(n)):W(Object(n)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(n,t))}))}return e}function $(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}function G(e,t,n,r,c,o,a){try{var i=e[o](a),l=i.value}catch(e){return void n(e)}i.done?t(l):Promise.resolve(l).then(r,c)}function K(e,t){return function(e){if(Array.isArray(e))return e}(e)||function(e,t){if("undefined"==typeof Symbol||!(Symbol.iterator in Object(e)))return;var n=[],r=!0,c=!1,o=void 0;try{for(var a,i=e[Symbol.iterator]();!(r=(a=i.next()).done)&&(n.push(a.value),!t||n.length!==t);r=!0);}catch(e){c=!0,o=e}finally{try{r||null==i.return||i.return()}finally{if(c)throw o}}return n}(e,t)||function(e,t){if(!e)return;if("string"==typeof e)return J(e,t);var n=Object.prototype.toString.call(e).slice(8,-1);"Object"===n&&e.constructor&&(n=e.constructor.name);if("Map"===n||"Set"===n)return Array.from(e);if("Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n))return J(e,t)}(e,t)||function(){throw new TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}function J(e,t){(null==t||t>e.length)&&(t=e.length);for(var n=0,r=new Array(t);n<t;n++)r[n]=e[n];return r}var Y=null,X=function(e){var t=e.extension,n=e.onExtsSync,c=K(T(t),2),o=c[0],i=c[1],u=K(H(t,(function(){n()})),3),s=u[0],f=u[1],d=u[2];return Object(r.createElement)("li",{className:l()({active:!!t.__object})},Object(r.createElement)("h4",{className:"ct-extension-title"},t.config.name,s&&Object(r.createElement)("svg",{width:"15",height:"15",viewBox:"0 0 100 100"},Object(r.createElement)("g",{transform:"translate(50,50)"},Object(r.createElement)("g",{transform:"scale(1)"},Object(r.createElement)("circle",{cx:"0",cy:"0",r:"50",fill:"#687c93"}),Object(r.createElement)("circle",{cx:"0",cy:"-26",r:"12",fill:"#ffffff",transform:"rotate(161.634)"},Object(r.createElement)("animateTransform",{attributeName:"transform",type:"rotate",calcMode:"linear",values:"0 0 0;360 0 0",keyTimes:"0;1",dur:"1s",begin:"0s",repeatCount:"indefinite"})))))),t.config.description&&Object(r.createElement)("div",{className:"ct-extension-description"},t.config.description),Object(r.createElement)("div",{className:"ct-extension-actions"},Object(r.createElement)("button",{className:l()(t.__object?"ct-button":"ct-button-primary"),"data-hover":"white",disabled:s,onClick:function(){f()}},t.__object?Object(a.__)("Deactivate","blc"):Object(a.__)("Activate","blc")),t.readme&&Object(r.createElement)("button",{onClick:function(){return o()},className:"ct-minimal-button ct-instruction"},Object(r.createElement)("svg",{width:"16",height:"16",viewBox:"0 0 24 24"},Object(r.createElement)("path",{d:"M12,2C6.477,2,2,6.477,2,12s4.477,10,10,10s10-4.477,10-10S17.523,2,12,2z M12,17L12,17c-0.552,0-1-0.448-1-1v-4 c0-0.552,0.448-1,1-1h0c0.552,0,1,0.448,1,1v4C13,16.552,12.552,17,12,17z M12.5,9h-1C11.224,9,11,8.776,11,8.5v-1 C11,7.224,11.224,7,11.5,7h1C12.776,7,13,7.224,13,7.5v1C13,8.776,12.776,9,12.5,9z"}))),t.__object&&t.config&&t.config.buttons&&t.config.buttons.map((function(e,t){var n=e.text,c=e.url;return Object(r.createElement)("a",{href:c,className:"ct-button ct-config-btn",dataButton:"white"},n)}))),i,d)},Q=function(){var e=K(Object(r.useState)(!Y),2),t=e[0],n=e[1],c=K(Object(r.useState)(Y||[]),2),i=c[0],u=c[1],s=K(Object(r.useState)(!1),2),f=s[0],d=s[1],m=K(Object(r.useState)("free"),2),b=m[0],p=m[1],h=function(){var e,t=(e=regeneratorRuntime.mark((function e(){var t,r,c,o,a,i,l,s,f,m=arguments;return regeneratorRuntime.wrap((function(e){for(;;)switch(e.prev=e.next){case 0:return t=m.length>0&&void 0!==m[0]?m[0]:{},r=Z({verbose:!1,extension:null,extAction:null},t),c=r.verbose,o=r.extension,a=r.extAction,c&&n(!0),d(!0),e.prev=4,e.next=7,fetch("".concat(wp.ajax.settings.url,"?action=blocksy_extensions_status"),Z({method:"POST"},o&&a?{body:JSON.stringify({extension:o,extAction:a})}:{}));case 7:if(200!==(i=e.sent).status){e.next=15;break}return e.next=11,i.json();case 11:l=e.sent,s=l.success,f=l.data,s&&(u(f),Y=f);case 15:e.next=19;break;case 17:e.prev=17,e.t0=e.catch(4);case 19:d(!1),n(!1);case 21:case"end":return e.stop()}}),e,null,[[4,17]])})),function(){var t=this,n=arguments;return new Promise((function(r,c){var o=e.apply(t,n);function a(e){G(o,r,c,a,i,"next",e)}function i(e){G(o,r,c,a,i,"throw",e)}a(void 0)}))});return function(){return t.apply(this,arguments)}}();Object(r.useEffect)((function(){h({verbose:!Y});var e=function(){h()};return o.a.on("blocksy_exts_sync_exts",e),function(){o.a.off("blocksy_exts_sync_exts",e)}}),[]);var v=Object(r.useMemo)((function(){return Object.values(i).map((function(e,t){return Z(Z({},e),{},{name:Object.keys(i)[t]})})).find((function(e){return e.config.pro}))}),[i]),O=Object(r.useMemo)((function(){return Object.values(i).map((function(e,t){return Z(Z({},e),{},{name:Object.keys(i)[t]})})).filter((function(e){return!e.config.hidden})).filter((function(e){var t=e.config;return"free"===b?!t.pro:t.pro}))}),[b,i]);return Object(r.createElement)(r.Fragment,null,Object(r.createElement)("div",{className:"ct-extensions-container"},Object(r.createElement)(A.Transition,{items:t,from:{opacity:0},enter:[{opacity:1}],leave:[{opacity:0}],initial:null,config:function(e,t){return"leave"===t?{duration:300}:{delay:300,duration:300}}},(function(e){return e?function(e){return Object(r.createElement)(A.animated.p,{style:e,className:"ct-loading-text"},Object(r.createElement)("span",null),Object(a.__)("Loading Extensions Status...","blc"))}:function(e){return Object(r.createElement)(A.animated.div,{style:e},Object(r.createElement)(r.Fragment,null,v&&Object(r.createElement)("ul",{className:"ct-extensions-sourse"},["free","pro"].map((function(e){return Object(r.createElement)("li",{key:e,onClick:function(){return p(e)},className:l()({active:e===b})},{free:Object(a.__)("Free Extensions","blc"),pro:Object(a.__)("Pro Extensions","blc")}[e])}))),Object(r.createElement)("ul",{className:l()("ct-extensions-list",{"is-pro":"pro"===b})},O.map((function(e){var t={extension:X};return o.a.trigger("ct:extensions:card",{CustomComponent:t,extension:e}),Object(r.createElement)(t.extension,{key:e.name,extension:e,extsSyncLoading:f,onExtsSync:function(){var t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{};i[e.name].__object=!i[e.name].__object,u(i),h(Z(Z({},t),{},{extension:e.name}))}})}))),Object(r.createElement)(q,null)))}}))))},ee=function(e){var t=e.children,n=e.activated,c=e.checked,o=e.onChange;return Object(r.createElement)("div",{onClick:function(){return o()},className:l()("ct-checkbox-container",{activated:n})},t,Object(r.createElement)("span",{className:l()("ct-checkbox",{active:c})},Object(r.createElement)("svg",{width:"10",height:"8",viewBox:"0 0 11.2 9.1"},Object(r.createElement)("polyline",{class:"check",points:"1.2,4.8 4.4,7.9 9.9,1.2 "}))))};function te(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);t&&(r=r.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),n.push.apply(n,r)}return n}function ne(e){for(var t=1;t<arguments.length;t++){var n=null!=arguments[t]?arguments[t]:{};t%2?te(Object(n),!0).forEach((function(t){re(e,t,n[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(n)):te(Object(n)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(n,t))}))}return e}function re(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}function ce(e,t){return function(e){if(Array.isArray(e))return e}(e)||function(e,t){if("undefined"==typeof Symbol||!(Symbol.iterator in Object(e)))return;var n=[],r=!0,c=!1,o=void 0;try{for(var a,i=e[Symbol.iterator]();!(r=(a=i.next()).done)&&(n.push(a.value),!t||n.length!==t);r=!0);}catch(e){c=!0,o=e}finally{try{r||null==i.return||i.return()}finally{if(c)throw o}}return n}(e,t)||function(e,t){if(!e)return;if("string"==typeof e)return oe(e,t);var n=Object.prototype.toString.call(e).slice(8,-1);"Object"===n&&e.constructor&&(n=e.constructor.name);if("Map"===n||"Set"===n)return Array.from(e);if("Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n))return oe(e,t)}(e,t)||function(){throw new TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}function oe(e,t){(null==t||t>e.length)&&(t=e.length);for(var n=0,r=new Array(t);n<t;n++)r[n]=e[n];return r}var ae=function(e){return({coblocks:"CoBlocks","contact-form-7":"Contact Form 7",woocommerce:"WooCommerce",elementor:"Elementor",brizy:"Brizy",getwid:"Getwid","wpforms-lite":"WPForms - Contact Form","simply-gallery-block":"SimpLy Gallery Block & Lightbox","recipe-card-blocks-by-wpzoom":"Recipe Card Blocks by WPZOOM","stackable-ultimate-gutenberg-blocks":"Stackable – Gutenberg Blocks","mb-custom-post-type":"MB Custom Post Types & Custom Taxonomies"}[e]||e).replace(/\b\w/,(function(e){return e.toUpperCase()}))},ie=function(e){var t=e.demoConfiguration,n=e.setDemoConfiguration,c=e.style,o=Object(r.useContext)(Je),i=o.currentDemo,l=o.demos_list,u=o.pluginsStatus,s=(o.setCurrentDemo,ce((i||"").split(":"),2)),f=s[0];s[1],l.filter((function(e){return e.name===f||""}));return Object(r.createElement)("div",{style:c},Object(r.createElement)("div",{className:"ct-demo-plugins"},Object(r.createElement)("i",{className:"ct-demo-icon"},Object(r.createElement)("svg",{width:"40",height:"40",viewBox:"0 0 40 40"},Object(r.createElement)("path",{fill:"#0C7AB3",d:"M20,0v7.6c0,0.3-0.2,0.5-0.5,0.5h-1.5c0,0,0,0,0,0c0,0,0,0-0.1,0c0,0,0,0-0.1,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c-0.5-0.7-1.3-1.1-2.1-1.1c-1.5,0-2.6,1.2-2.6,2.6c0,1.5,1.2,2.6,2.6,2.6c0.8,0,1.6-0.4,2.1-1.1c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0.1,0c0,0,0,0,0.1,0c0,0,0,0,0,0h1.5c0,0,0,0,0,0c0.3,0,0.5,0.2,0.5,0.5V20h8.1v-0.8c-0.8-0.7-1.3-1.7-1.3-2.8c0-2,1.7-3.7,3.7-3.7c2,0,3.7,1.7,3.7,3.7c0,1.1-0.5,2.1-1.3,2.8V20H40C40,9,31,0,20,0z"}),Object(r.createElement)("path",{fill:"#3497D3",d:"M20,40v-7.6c0-0.3,0.2-0.5,0.5-0.5h1.5c0,0,0,0,0,0c0,0,0,0,0.1,0c0,0,0,0,0.1,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0.5,0.7,1.3,1.1,2.1,1.1c1.5,0,2.6-1.2,2.6-2.6c0-1.5-1.2-2.6-2.6-2.6c-0.8,0-1.6,0.4-2.1,1.1c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0-0.1,0c0,0,0,0-0.1,0c0,0,0,0,0,0h-1.5c0,0,0,0,0,0c-0.3,0-0.5-0.2-0.5-0.5V20h-8.1v0.8c0.8,0.7,1.3,1.7,1.3,2.8c0,2-1.7,3.7-3.7,3.7c-2,0-3.7-1.7-3.7-3.7c0-1.1,0.5-2.1,1.3-2.8V20H0C0,31,9,40,20,40z"}))),Object(r.createElement)("h2",null,Object(a.__)("Install & Activate Plugins","blc")),Object(r.createElement)("p",null,Object(a.__)("The following plugins are required for this starter site in order to work properly.","blc")),t.plugins.map((function(e){var c=e.plugin,o=e.enabled;return Object(r.createElement)(r.Fragment,{key:c},!u[c]&&Object(r.createElement)(ee,{key:c,checked:o,onChange:function(){return n(ne(ne({},t),{},{plugins:t.plugins.map((function(e){return e.plugin===c?ne(ne({},e),{},{enabled:!o}):e}))}))}},ae(c)),u[c]&&Object(r.createElement)(ee,{activated:!0,checked:!0,onChange:function(){}},ae(c)))}))))},le=function(){var e=Object(r.useContext)(Je),t=e.currentlyInstalledDemo,n=e.demos_list,c=e.setCurrentDemo,o=e.demo_error,i=e.setInstallerBlockingReleased;Object(r.useContext)(R).Link;return Object(r.createElement)("ul",null,n.filter((function(e,t){return n.map((function(e){return e.name})).indexOf(e.name)===t})).map((function(e){return Object(r.createElement)("li",{key:e.name,className:l()("ct-single-demo",{"ct-is-pro":e.is_pro})},Object(r.createElement)("figure",null,Object(r.createElement)("img",{src:e.screenshot}),Object(r.createElement)("section",null,Object(r.createElement)("h3",null,Object(a.__)("Available for","blc")),Object(r.createElement)("div",null,n.filter((function(t){return t.name===e.name||""})).sort((function(e,t){return e.builder<t.builder?-1:e.builder>t.builder?1:0})).map((function(e){var t=e.builder;return Object(r.createElement)("span",{key:t},ae(t)||"Gutenberg")})))),e.is_pro&&Object(r.createElement)("a",{onClick:function(e){return e.preventDefault()},href:"#"},"PRO")),Object(r.createElement)("div",{className:"ct-demo-actions"},Object(r.createElement)("h4",null,e.name),Object(r.createElement)("div",null,Object(r.createElement)("a",{className:"ct-button",target:"_blank",href:e.url},Object(a.__)("Preview","blc")),Object(r.createElement)("button",{className:"ct-button-primary",onClick:function(){i(!1),c(e.name)},disabled:!!o},t&&t.demo.indexOf(e.name)>-1?Object(a.__)("Modify","blc"):Object(a.__)("Import","blc")))))})))};function ue(e,t){return function(e){if(Array.isArray(e))return e}(e)||function(e,t){if("undefined"==typeof Symbol||!(Symbol.iterator in Object(e)))return;var n=[],r=!0,c=!1,o=void 0;try{for(var a,i=e[Symbol.iterator]();!(r=(a=i.next()).done)&&(n.push(a.value),!t||n.length!==t);r=!0);}catch(e){c=!0,o=e}finally{try{r||null==i.return||i.return()}finally{if(c)throw o}}return n}(e,t)||function(e,t){if(!e)return;if("string"==typeof e)return se(e,t);var n=Object.prototype.toString.call(e).slice(8,-1);"Object"===n&&e.constructor&&(n=e.constructor.name);if("Map"===n||"Set"===n)return Array.from(e);if("Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n))return se(e,t)}(e,t)||function(){throw new TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}function se(e,t){(null==t||t>e.length)&&(t=e.length);for(var n=0,r=new Array(t);n<t;n++)r[n]=e[n];return r}var fe=function(e){var t=e.style,n=e.nextStep,c=(Object(r.useContext)(R).is_child_theme,Object(r.useContext)(Je)),o=c.setCurrentlyInstalledDemo,i=c.setCurrentDemo,l=c.currentDemo,u=c.demos_list,s=ue(Object(r.useState)(0),2),f=s[0],d=s[1],m=ue(Object(r.useState)("idle"),2),b=m[0],p=m[1],h=ue((l||"").split(":"),2),v=h[0],O=(h[1],u.filter((function(e){return e.name===v}))),y={erase_content:{title:Object(a.__)("Erase content","blc"),query_string:"action=blocksy_demo_erase_content&wp_customize=on"},deactivate_demo_plugins:{title:Object(a.__)("Deactivate demo plugins","blc"),query_string:"action=blocksy_demo_deactivate_plugins&plugins=".concat(O[0].plugins.join(":"))},deregister_current_demo:{title:Object(a.__)("Erase content","blc"),query_string:"action=blocksy_demo_deregister_current_demo"}},j=["erase_content","deactivate_demo_plugins","deregister_current_demo"],g=j[f],_=function(){var e=y[g],t=new EventSource("".concat(ctDashboardLocalizations.ajax_url,"?").concat(e.query_string));t.onmessage=function(e){if("complete"===JSON.parse(e.data).action){if(t&&t.close&&t.close(),f===j.length-1)return void p("done");d(Math.min(j.length-1,f+1))}}};return Object(r.useEffect)((function(){0!==f&&"done"!==b&&_()}),[g]),Object(r.createElement)("div",{className:"ct-modify-demo",style:t},Object(r.createElement)("i",{className:"ct-demo-icon"},Object(r.createElement)("svg",{width:"36",height:"36",viewBox:"0 0 40 40"},Object(r.createElement)("path",{d:"M5.71,40a1,1,0,0,1-1-1V21.59a1,1,0,0,1,1.91,0V39.05A1,1,0,0,1,5.71,40Zm1-31.83V1.07A1,1,0,0,0,5.71,0a1,1,0,0,0-1,1.07v7.1a1,1,0,0,0,1,1.07A1,1,0,0,0,6.67,8.17ZM21,39.05V34.29a1,1,0,1,0-1.9,0v4.76a1,1,0,1,0,1.9,0Zm0-18.14V1a1,1,0,1,0-1.9,0V20.91a1,1,0,1,0,1.9,0ZM35.24,39.05V26.35a1,1,0,0,0-1.91,0v12.7a1,1,0,0,0,1.91,0Zm0-26.25V1a1,1,0,1,0-1.91,0V12.8a1,1,0,1,0,1.91,0Z",transform:"translate(-0.71)",fill:"#dae3e8"}),Object(r.createElement)("path",{d:"M5.71,18.06a5,5,0,1,1,5-5A5,5,0,0,1,5.71,18.06ZM20,30.76a5,5,0,1,1,5-5A5,5,0,0,1,20,30.76Zm14.29-7.93a5,5,0,1,1,5-5A5,5,0,0,1,34.29,22.83Z",transform:"translate(-0.71)",fill:"#0c7ab3"}))),"idle"===b&&Object(r.createElement)("h2",null,Object(a.__)("This starter site is already installed","blc")),"loading"===b&&Object(r.createElement)("h2",null,"Removing starter site..."),"done"===b&&Object(r.createElement)(r.Fragment,null,Object(r.createElement)("h2",null,Object(a.__)("Starter Site Removed","blc")),Object(r.createElement)("div",{className:"ct-modify-actions"},Object(r.createElement)("button",{className:"ct-demo-btn ct-dismiss",onClick:function(e){e.preventDefault(),i("".concat(v,":hide"))}},Object(a.__)("Dismiss","blc")))),"idle"===b&&Object(r.createElement)(r.Fragment,null,Object(r.createElement)("p",null,Object(a.__)("What steps do you want to perform next?","blc")),Object(r.createElement)("div",{className:"ct-modify-actions"},Object(r.createElement)("button",{className:"ct-demo-btn demo-remove",onClick:function(e){p("loading"),e.preventDefault(),_(),o()}},Object(a.__)("Remove","blc")),Object(r.createElement)("button",{className:"ct-demo-btn",onClick:function(e){e.preventDefault(),n()}},Object(a.__)("Reinstall","blc")))))};function de(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);t&&(r=r.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),n.push.apply(n,r)}return n}function me(e){for(var t=1;t<arguments.length;t++){var n=null!=arguments[t]?arguments[t]:{};t%2?de(Object(n),!0).forEach((function(t){be(e,t,n[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(n)):de(Object(n)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(n,t))}))}return e}function be(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}var pe=function(e){var t=e.demoConfiguration,n=e.setDemoConfiguration,c=e.style,o=Object(r.useContext)(R),i=o.is_child_theme,l=o.child_theme_exists;return Object(r.createElement)("div",{className:"ct-demo-child",style:c},Object(r.createElement)("i",{className:"ct-demo-icon"},Object(r.createElement)("svg",{width:"40",height:"40",viewBox:"0 0 43 41.1"},Object(r.createElement)("path",{fill:"#DBE7EE",d:"M0,39.5c0,0.9,0.7,1.6,1.5,1.6h32.3c0.9,0,1.5-0.7,1.5-1.6V14H0V39.5z"}),Object(r.createElement)("path",{fill:"#BDC8D7",d:"M18.2,41.1h15.6c0.9,0,1.5-0.7,1.5-1.6V14H7.6L8,32.4L18.2,41.1z"}),Object(r.createElement)("path",{fill:"#BDC8D7",d:"M0,15.6V9.8c0-0.9,0.7-1.6,1.5-1.6h32.3c0.9,0,1.5,0.7,1.5,1.6v5.8H0z"}),Object(r.createElement)("path",{fill:"#3497D3",d:"M7.6,31.3c0,0.9,0.7,1.6,1.5,1.6h32.4c0.9,0,1.5-0.7,1.5-1.6V5.8H7.6V31.3z"}),Object(r.createElement)("path",{fill:"#0C7AB3",d:"M7.6,7.4V1.6C7.6,0.7,8.3,0,9.1,0h32.4C42.4,0,43,0.7,43,1.6v5.8H7.6z"}),Object(r.createElement)("rect",{x:"11.2",y:"11",fill:"#44ACDF",width:"16.8",height:"17.9"}),Object(r.createElement)("rect",{x:"31.5",y:"11",fill:"#44ACDF",width:"7.9",height:"17.9"}))),l?Object(r.createElement)("h2",null,Object(a.__)("Activate Child Theme","blc")):Object(r.createElement)("h2",null,Object(a.__)("Install Child Theme","blc")),!i&&Object(r.createElement)(r.Fragment,null,l?Object(r.createElement)("p",null,Object(a.__)("We strongly recommend to activate the child theme, this way you will have freedom to make changes without breaking the parent theme.","blc")):Object(r.createElement)("p",null,Object(a.__)("We strongly recommend to install the child theme, this way you will have freedom to make changes without breaking the parent theme.","blc")),Object(r.createElement)(ee,{checked:t.child_theme,onChange:function(){return n(me(me({},t),{},{child_theme:!t.child_theme}))}},l?Object(a.__)("Activate Child Theme","blc"):Object(a.__)("Install Child Theme","blc"))),i&&Object(a.__)("You already have a child theme properly installed and activated. Move on.","blc"),Object(r.createElement)("a",{href:"https://developer.wordpress.org/themes/advanced-topics/child-themes/",target:"_blank"},Object(a.__)("Learn more about child themes","blc")))};function he(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);t&&(r=r.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),n.push.apply(n,r)}return n}function ve(e){for(var t=1;t<arguments.length;t++){var n=null!=arguments[t]?arguments[t]:{};t%2?he(Object(n),!0).forEach((function(t){Oe(e,t,n[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(n)):he(Object(n)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(n,t))}))}return e}function Oe(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}function ye(e,t){return function(e){if(Array.isArray(e))return e}(e)||function(e,t){if("undefined"==typeof Symbol||!(Symbol.iterator in Object(e)))return;var n=[],r=!0,c=!1,o=void 0;try{for(var a,i=e[Symbol.iterator]();!(r=(a=i.next()).done)&&(n.push(a.value),!t||n.length!==t);r=!0);}catch(e){c=!0,o=e}finally{try{r||null==i.return||i.return()}finally{if(c)throw o}}return n}(e,t)||function(e,t){if(!e)return;if("string"==typeof e)return je(e,t);var n=Object.prototype.toString.call(e).slice(8,-1);"Object"===n&&e.constructor&&(n=e.constructor.name);if("Map"===n||"Set"===n)return Array.from(e);if("Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n))return je(e,t)}(e,t)||function(){throw new TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}function je(e,t){(null==t||t>e.length)&&(t=e.length);for(var n=0,r=new Array(t);n<t;n++)r[n]=e[n];return r}var ge=function(e){var t=e.demoConfiguration,n=e.setDemoConfiguration,c=e.style,o=Object(r.useContext)(Je),i=o.currentDemo,u=o.demos_list,s=(o.pluginsStatus,o.setCurrentDemo,ye((i||"").split(":"),2)),f=s[0],d=(s[1],u.filter((function(e){return e.name===f||""})));return Object(r.createElement)("div",{style:c},d.length>1&&Object(r.createElement)("div",{className:"ct-demo-builder"},Object(r.createElement)("i",{className:"ct-demo-icon"},Object(r.createElement)("svg",{width:"52",height:"40",viewBox:"0 0 52 40"},Object(r.createElement)("path",{fill:"#DBE7EE",d:"M0,38.1C0,39.1,0.9,40,1.8,40h39.3c1.1,0,1.8-0.9,1.8-1.9v-31H0V38.1z"}),Object(r.createElement)("path",{fill:"#CFDBE4",d:"M13.8,14.6v18.8h22.6V14.6H13.8zM34.8,31.9H15.4V16.1h19.4V31.9z"}),Object(r.createElement)("path",{fill:"#BDC8D7",d:"M13.1,15.3L13.1,15.3c0-0.8,0.6-1.4,1.4-1.4l0,0c0.8,0,1.4,0.6,1.4,1.4l0,0c0,0.8-0.6,1.4-1.4,1.4l0,0C13.7,16.8,13.1,16.1,13.1,15.3z M34.1,15.3L34.1,15.3c0-0.8,0.6-1.4,1.4-1.4l0,0c0.8,0,1.4,0.6,1.4,1.4l0,0c0,0.8-0.6,1.4-1.4,1.4l0,0C34.8,16.8,34.1,16.1,34.1,15.3z M13.1,32.7L13.1,32.7c0-0.8,0.6-1.4,1.4-1.4l0,0c0.8,0,1.4,0.6,1.4,1.4l0,0c0,0.8-0.6,1.4-1.4,1.4l0,0C13.7,34.1,13.1,33.5,13.1,32.7z M34.1,32.7L34.1,32.7c0-0.8,0.6-1.4,1.4-1.4l0,0c0.8,0,1.4,0.6,1.4,1.4l0,0c0,0.8-0.6,1.4-1.4,1.4l0,0C34.8,34.1,34.1,33.5,34.1,32.7z M23.3,15.3L23.3,15.3c0-0.8,0.6-1.4,1.4-1.4l0,0c0.8,0,1.4,0.6,1.4,1.4l0,0c0,0.8-0.6,1.4-1.4,1.4l0,0C24,16.8,23.3,16.1,23.3,15.3z M4.2,13.9h5.9v7.9H4.2V13.9zM4.2,23.3h5.9v2.9H4.2V23.3zM0,9V1.9C0,0.9,0.9,0,1.8,0h39.3c1.1,0,1.8,0.9,1.8,1.9V9H0z M42.9,35.4V10.9h-9.3v15.2L42.9,35.4zM7.2,27.6c-1.6,0-3,1.3-3,3c0,1.6,1.3,3,3,3s3-1.3,3-3C10.2,28.9,8.8,27.6,7.2,27.6z"}),Object(r.createElement)("path",{fill:"#0C7AB3",d:"M50,27.8H35.6c-1.1,0-2-0.9-2-2v-18c0-1.1,0.9-2,2-2H50c1.1,0,2,0.9,2,2v18C52,26.9,51.1,27.8,50,27.8z"}),Object(r.createElement)("path",{fill:"#44ACDF",d:"M49,17.5H36.8c-0.7,0-1.2-0.5-1.2-1.2V9.1c0-0.7,0.5-1.2,1.2-1.2H49c0.7,0,1.2,0.5,1.2,1.2v7.3C50.2,17,49.6,17.5,49,17.5z M50.2,20.4v-0.1c0-0.5-0.4-1-1-1H36.5c-0.5,0-1,0.4-1,1v0.1c0,0.5,0.4,1,1,1h12.7C49.7,21.4,50.2,20.9,50.2,20.4z M40.8,25.2h-4.3c-0.5,0-1-0.4-1-1v-0.1c0-0.5,0.4-1,1-1h4.3c0.5,0,1,0.4,1,1v0.1C41.7,24.8,41.3,25.2,40.8,25.2z M49.2,25.2h-4.3c-0.5,0-1-0.4-1-1v-0.1c0-0.5,0.4-1,1-1h4.3c0.5,0,1,0.4,1,1v0.1C50.2,24.8,49.7,25.2,49.2,25.2z"}),Object(r.createElement)("path",{fill:"#C8E6F4",d:"M47.4,11.2h-9.1c-0.2,0-0.5-0.2-0.5-0.4v0c0-0.2,0.2-0.4,0.5-0.4h9.1c0.2,0,0.5,0.2,0.5,0.4v0C47.8,11,47.6,11.2,47.4,11.2z M47.9,14.7L47.9,14.7c0-0.2-0.2-0.5-0.5-0.5h-9.1c-0.2,0-0.4,0.2-0.4,0.4v0c0,0.2,0.2,0.4,0.4,0.4h9.1C47.7,15.1,47.9,14.9,47.9,14.7z"}),Object(r.createElement)("path",{fill:"#FFFFFF",d:"M26.3,20.8h-2.9l-2.9,7.9H23l0.3-0.7h2.8l0.3,0.7h2.7L26.3,20.8z M23.9,25.8l0.8-2.2h0l0.8,2.2H23.9zM46.5,10.7c0,0.8-0.7,1.5-1.5,1.5s-1.5-0.7-1.5-1.5c0-0.8,0.7-1.5,1.5-1.5S46.5,9.9,46.5,10.7zM42.1,14.7c0,0.8-0.7,1.5-1.5,1.5s-1.5-0.7-1.5-1.5s0.7-1.5,1.5-1.5S42.1,13.9,42.1,14.7z"}))),Object(r.createElement)("h2",null,Object(a.__)("Choose Page Builder","blc")),Object(r.createElement)("p",null,Object(a.__)("This starter site can be imported and used with one of these page builders. Please select your prefered one in order to continue.","blc")),Object(r.createElement)("ul",{"data-count":d.length},d.sort((function(e,t){return e.builder<t.builder?-1:e.builder>t.builder?1:0})).map((function(e){var c=e.builder,o=e.plugins;return Object(r.createElement)("li",{className:l()({active:c===(null===t.builder?d[0].builder:t.builder)}),onClick:function(){return n(ve(ve({},t),{},{builder:c,plugins:o.map((function(e){return{plugin:e,enabled:!0}}))}))}},Object(r.createElement)("figure",null,Object(r.createElement)("span",{className:l()("ct-checkbox",{active:c===(null===t.builder?d[0].builder:t.builder)})},Object(r.createElement)("svg",{width:"10",height:"8",viewBox:"0 0 11.2 9.1"},Object(r.createElement)("polyline",{className:"check",points:"1.2,4.8 4.4,7.9 9.9,1.2 "}))),""===c&&Object(r.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 150 100"},Object(r.createElement)("path",{d:"M122.5 35.5c-1.7-1.1-4-.7-5.1 1C110.8 46.4 96.8 47 96 47h-.3c-17.4 0-24 14.8-24.3 15.4-.8 1.9.1 4 1.9 4.8.5.2 1 .3 1.5.3 1.4 0 2.7-.8 3.4-2.2.1-.1 4.6-10.3 16.3-11v19c-.5 4.1-2.4 7.3-5.8 9.7-3.6 2.5-8.3 3.8-14.1 3.8-7 0-12.7-2.4-16.9-7.2-4.3-4.8-6.4-11.5-6.4-20.2l.1-20.9c.3-7.7 2.4-13.8 6.4-18.2 4.3-4.8 9.9-7.2 16.9-7.2 5.8 0 10.6 1.3 14.1 3.8 3.6 2.5 5.6 5.9 5.9 10.3v.5c0 2.5 2.1 4.6 4.6 4.6 2.5 0 4.6-2.1 4.6-4.6v-.5c-.7-6.6-3.7-11.9-9.1-15.8-5.4-4-12.2-5.9-20.4-5.9-9.7 0-17.6 3.2-23.5 9.6-5.6 6-8.6 13.8-8.9 23.5 0 .7-.1 1.3-.1 2l.1 18.8h-.1c0 10.7 3 19.2 9 25.5 6 6.4 13.8 9.6 23.5 9.6 8.2 0 14.9-1.9 20.4-5.9 5-3.6 7.9-8.4 8.9-14.3l.2-21c6.1-1.5 14.4-4.8 19.6-12.7 1.3-1.7.8-4-1-5.1z"})),"brizy"===c&&Object(r.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 150 100"},Object(r.createElement)("path",{d:"M14.6 36.7L75 0l60.4 36.7L75 73.4 14.6 36.7zm21.7.9L75 61.2l38.8-23.6L75 14 36.3 37.6z",fill:"#181c25"}),Object(r.createElement)("path",{fill:"#a7b2dd",d:"M14.6 63.2l10.8-6.5L75 86.8l49.9-30 10.5 6.4L75 100z"})),"elementor"===c&&Object(r.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 150 100"},Object(r.createElement)("path",{d:"M32.5 7.6h17v84.9h-17V7.6zm34 84.9h51v-17h-51v17zm0-34h51v-17h-51v17zm0-51v17h51v-17h-51z"}))),Object(r.createElement)("div",{className:"builder-name"},ae(c)||"Gutenberg"))})))))};function _e(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);t&&(r=r.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),n.push.apply(n,r)}return n}function Ee(e){for(var t=1;t<arguments.length;t++){var n=null!=arguments[t]?arguments[t]:{};t%2?_e(Object(n),!0).forEach((function(t){we(e,t,n[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(n)):_e(Object(n)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(n,t))}))}return e}function we(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}var xe=function(e){var t=e.demoConfiguration,n=e.setDemoConfiguration,c=(e.currentDemo,e.style);return Object(r.createElement)("div",{style:c},Object(r.createElement)("i",{className:"ct-demo-icon"},Object(r.createElement)("svg",{width:"40",height:"40",viewBox:"0 0 40 40"},Object(r.createElement)("path",{d:"M25,22.67a5,5,0,0,1-10,0H0V36a3.33,3.33,0,0,0,3.33,3.33H36.67A3.33,3.33,0,0,0,40,36V22.67Z",transform:"translate(0 -0.67)",fill:"#bdc8d7"}),Object(r.createElement)("rect",{x:"2.5",y:"14",width:"35",height:"3",rx:"1.5",fill:"#0c7ab3"}),Object(r.createElement)("rect",{x:"5",y:"7",width:"30",height:"3",rx:"1.5",fill:"#3497d3"}),Object(r.createElement)("rect",{x:"7.5",width:"25",height:"3",rx:"1.5",fill:"#44acdf"}))),Object(r.createElement)("h2",null,Object(a.__)("Import Content","blc")),Object(r.createElement)("p",null,Object(a.__)("This will import posts, pages, comments, navigation menus, custom fields, terms and custom posts","blc")),["options","widgets","content"].map((function(e){return Object(r.createElement)(ee,{checked:t.content[e],onChange:function(){return n(Ee(Ee({},t),{},{content:Ee(Ee({},t.content),{},we({},e,!t.content[e]))}))},key:e},e.split("_").map((function(e){return e.replace(/^\w/,(function(e){return e.toUpperCase()}))})).join(" "))})),Object(r.createElement)("div",{className:"ct-demo-erase"},Object(r.createElement)(ee,{checked:t.content.erase_content,onChange:function(){return n(Ee(Ee({},t),{},{content:Ee(Ee({},t.content),{},{erase_content:!t.content.erase_content})}))}},Object(r.createElement)("div",null,Object(a.__)("Clean Install","blc"),Object(r.createElement)("i",null,Object(a.__)("This option will remove the previous imported content and will perform a fresh and clean install.","blc"))))))},Se=function(){var e=Object(r.useContext)(R),t=e.home_url,n=e.customizer_url;return Object(r.createElement)("div",{className:"ct-install-success"},Object(r.createElement)("h2",null,Object(a.__)("Starter Site Imported Successfully","blc")),Object(r.createElement)("p",null,Object(a.__)("Now you can view your website or start customizing it","blc")),Object(r.createElement)("div",null,Object(r.createElement)("a",{href:n,className:"ct-button"},Object(a.__)("Customize","blc")),Object(r.createElement)("a",{href:t,target:"_blank",className:"ct-button-primary"},Object(a.__)("View site","blc"))))},ke=function(e,t){var n=e.action;if("complete"===n)return"";if("import_install_child"===n)return Object(a.__)("copying child theme sources","blc");if("import_activate_child"===n)return Object(a.__)("activating child theme","blc");if("install_plugin"===n)return Object(a.sprintf)(Object(a.__)("installing plugin %s","blc"),ae(e.name)||e.name);if("activate_plugin"===n)return Object(a.sprintf)(Object(a.__)("activating plugin %s","blc"),ae(e.name)||e.name);if("download_demo_widgets"===n)return Object(a.__)("downloading demo widgets","blc");if("apply_demo_widgets"===n)return Object(a.__)("installing demo widgets","blc");if("download_demo_options"===n)return Object(a.__)("downloading demo options","blc");if("import_mods_images"===n)return Object(a.__)("importing images from customizer","blc");if("import_customizer_options"===n)return Object(a.__)("import customizer options","blc");if("activate_required_extensions"===n)return Object(a.__)("activating required extensions","blc");if("erase_previous_posts"===n)return Object(a.__)("removing previously installed posts","blc");if("erase_previous_terms"===n)return Object(a.__)("removing previously installed taxonomies","blc");if("erase_default_pages"===n)return Object(a.__)("removing default WordPress pages","blc");if("erase_customizer_settings"===n)return Object(a.__)("resetting customizer options","blc");if("erase_widgets_data"===n)return Object(a.__)("resetting widgets","blc");if("content_installer_progress"===n){if(!e.kind)return"";var r=t.content.preliminary_data["".concat(e.kind,"_count")],c=t.content["".concat(e.kind,"_count")];return"".concat(Math.min(c,r)," of ").concat(r," ").concat({users:Object(a.__)("users","blc"),term:Object(a.__)("terms","blc"),media:Object(a.__)("images","blc"),post:Object(a.__)("posts","blc"),comment:Object(a.__)("comments","blc")}[e.kind])}return""};function Ce(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);t&&(r=r.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),n.push.apply(n,r)}return n}function De(e){for(var t=1;t<arguments.length;t++){var n=null!=arguments[t]?arguments[t]:{};t%2?Ce(Object(n),!0).forEach((function(t){Pe(e,t,n[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(n)):Ce(Object(n)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(n,t))}))}return e}function Pe(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}function Ae(e,t){return function(e){if(Array.isArray(e))return e}(e)||function(e,t){if("undefined"==typeof Symbol||!(Symbol.iterator in Object(e)))return;var n=[],r=!0,c=!1,o=void 0;try{for(var a,i=e[Symbol.iterator]();!(r=(a=i.next()).done)&&(n.push(a.value),!t||n.length!==t);r=!0);}catch(e){c=!0,o=e}finally{try{r||null==i.return||i.return()}finally{if(c)throw o}}return n}(e,t)||function(e,t){if(!e)return;if("string"==typeof e)return Ne(e,t);var n=Object.prototype.toString.call(e).slice(8,-1);"Object"===n&&e.constructor&&(n=e.constructor.name);if("Map"===n||"Set"===n)return Array.from(e);if("Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n))return Ne(e,t)}(e,t)||function(){throw new TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}function Ne(e,t){(null==t||t>e.length)&&(t=e.length);for(var n=0,r=new Array(t);n<t;n++)r[n]=e[n];return r}var Me=function(e){e.preventDefault(),e.returnValue=""},Le=function(e){var t=e.demoConfiguration,n=e.pluginsStatus,r=e.is_child_theme,c=e.includeMetaSteps,o=[];return void 0!==c&&c&&o.push("register_current_demo"),t.child_theme&&(r||o.push("child_theme")),t.plugins.filter((function(e){var t=e.enabled,r=e.plugin;return!!t&&!n[r]})).length>0&&o.push("plugins"),t.content.erase_content&&o.push("erase_content"),t.content.options&&o.push("options"),t.content.widgets&&o.push("widgets"),t.content.content&&o.push("content"),o.push("install_finish"),o},ze=function(e){var t=e.demoConfiguration,n=e.style,c=function(e){var t=Object(r.useContext)(Je),n=t.demos_list,c=t.currentDemo,o=(t.setCurrentDemo,t.setInstallerBlockingReleased),i=t.setCurrentlyInstalledDemo,l=t.pluginsStatus,u=Object(r.useContext)(R),s=(u.home_url,u.customizer_url,u.is_child_theme),f=(u.Link,Ae(Object(r.useState)(!1),2)),d=f[0],m=f[1],b=Ae(Object(r.useState)(0),2),p=b[0],h=b[1],v=Ae((c||"").split(":"),2),O=v[0],y=(v[1],n.filter((function(e){return e.name===O})).sort((function(e,t){return e.builder<t.builder?-1:e.builder>t.builder?1:0}))),j=e.plugins.filter((function(e){var t=e.enabled,n=e.plugin;return t&&!l[n]})).map((function(e){return e.plugin})),g=Ae(Object(r.useState)({register_current_demo:{title:Object(a.__)("Register demo","blc"),query_string:"action=blocksy_demo_register_current_demo&wp_customize=on&demo_name=".concat(c,":").concat(null===e.builder?y[0].builder:e.builder),expected_signals:1},child_theme:{title:Object(a.__)("Child theme","blc"),query_string:"action=blocksy_demo_install_child_theme",expected_signals:3},plugins:{title:Object(a.__)("Required plugins","blc"),query_string:"action=blocksy_demo_activate_plugins&plugins=".concat(j.join(":")),expected_signals:2*j.length+1},fake_step:{title:Object(a.__)("Fake Required plugins","blc"),query_string:"action=blocksy_demo_fake_step",expected_signals:6},erase_content:{title:Object(a.__)("Erase content","blc"),query_string:"action=blocksy_demo_erase_content&wp_customize=on",expected_signals:6},install_finish:{title:Object(a.__)("Final touches","blc"),query_string:"action=blocksy_demo_install_finish&wp_customize=on",expected_signals:1},options:{title:Object(a.__)("Import options","blc"),query_string:"action=blocksy_demo_install_options&wp_customize=on&demo_name=".concat(c,":").concat(null===e.builder?y[0].builder:e.builder),expected_signals:5},widgets:{title:Object(a.__)("Import widgets","blc"),query_string:"action=blocksy_demo_install_widgets&wp_customize=on&demo_name=".concat(c,":").concat(null===e.builder?y[0].builder:e.builder),expected_signals:3},content:{title:Object(a.__)("Import content","blc"),query_string:"action=blocksy_demo_install_content&wp_customize=on&demo_name=".concat(c,":").concat(null===e.builder?y[0].builder:e.builder),expected_signals:50}}),2),_=g[0],E=g[1],w=Le({demoConfiguration:e,pluginsStatus:l,is_child_theme:s,includeMetaSteps:!0}),x=w[p],S=Ae(Object(r.useState)(0),2),k=S[0],C=S[1],D=Ae(Object(r.useState)(null),2),P=D[0],A=D[1],N=Object(r.useRef)(k),M=Object(r.useRef)(_);Object(r.useEffect)((function(){N.current=k,M.current=_}));var L=function(e){return"content"===e?1===w.length?100:50:w.indexOf("content")>-1?50/(w.length-1):100/w.length},z=w.reduce((function(e,t,n){return n>=p?e:e+L(t)}),0)+100*k/_[x].expected_signals*(L(x)/100),T=function(){var e=_[x],t=new EventSource("".concat(ctDashboardLocalizations.ajax_url,"?").concat(e.query_string));t.onmessage=function(e){var n=JSON.parse(e.data);if(C(N.current+1),"content_installer_progress"===n.action){var r=n.kind;r&&(A(n),E(De(De({},M.current),{},{content:De(De({},M.current.content),{},Pe({},"".concat(r,"_count"),M.current.content["".concat(r,"_count")]+1))})))}else A(n);if("get_content_preliminary_data"===n.action){var c=n.data,a=(c.comment_count,c.media_count,c.post_count,c.term_count,c.users,De(De({},n.data),{},{term_count:n.data.terms.length,post_count:n.data.posts.filter((function(e){return"attachment"!==e.post_type})).length,media_count:n.data.posts.filter((function(e){return"attachment"===e.post_type})).length,comment_count:n.data.posts.reduce((function(e,t){return e+(t.comments||[]).length}),0),users_count:Object.keys(n.data.authors).length}));E(De(De({},M.current),{},{content:De(De({},M.current.content),{},{preliminary_data:a,comment_count:0,media_count:0,post_count:0,term_count:0,users_count:0,expected_signals:a.comment_count+a.media_count+a.post_count+a.term_count+a.users_count+3})}))}if("complete"===n.action){if(t&&t.close&&t.close(),p===w.length-1)return m(!0),o(!0),void window.removeEventListener("beforeunload",Me);A(null),C(0),h(Math.min(w.length-1,p+1))}}};return Object(r.useEffect)((function(){d||(A(null),C(0),"fake_step"===x?(console.log("here we go delay before fake_step"),setTimeout((function(){T()}),2e3)):T())}),[x]),Object(r.useEffect)((function(){return window.addEventListener("beforeunload",Me),i({demo:"".concat(c,":").concat(e.builder)}),function(){window.removeEventListener("beforeunload",Me)}}),[]),{isCompleted:d,stepName:x,stepsDescriptors:_,lastMessage:P,progress:z}}(t),o=c.isCompleted,i=c.stepName,l=c.stepsDescriptors,u=c.lastMessage,s=c.progress;return Object(r.createElement)("div",{className:"ct-demo-install",style:n},Object(r.createElement)(A.Transition,{initial:!0,items:o,from:{opacity:0},enter:[{opacity:1}],leave:[{opacity:0}],config:function(e,t){return"leave"===t?{duration:300}:{delay:300,duration:300}}},(function(e){return function(t){return Object(r.createElement)("div",{style:t},e?Object(r.createElement)(Se,null):Object(r.createElement)(r.Fragment,null,Object(r.createElement)("i",{className:"ct-demo-icon"},Object(r.createElement)("svg",{width:"40",height:"40",viewBox:"0 0 50 50"},Object(r.createElement)("path",{class:"g1",d:"M47,38.8c0.3-1,0.5-2,0.5-3.1c0-1.1-0.2-2.1-0.5-3.1l0.2-0.1l1.8-1.7l-1.8-3.1l-2.3,0.7l-0.2,0.1c-1.4-1.5-3.3-2.7-5.4-3.1V25l-0.6-2.4h-3.5L34.5,25v0.3c-2.1,0.5-4,1.6-5.4,3.1l-0.2-0.1l-2.3-0.7l-1.8,3.1l1.7,1.7l0.2,0.1c-0.3,1-0.5,2-0.5,3.1c0,1.1,0.2,2.1,0.5,3.1l-0.2,0.1l-1.8,1.7l1.8,3.1l2.3-0.7l0.2-0.1c1.4,1.5,3.3,2.7,5.4,3.1v0.3l0.6,2.4h3.5l0.6-2.4V46c2.1-0.5,4-1.6,5.4-3.1l0.2,0.1l2.3,0.7l1.8-3.1l-1.7-1.7L47,38.8z M36.9,41.5c-3.3,0-5.9-2.6-5.9-5.9s2.6-5.9,5.9-5.9s5.9,2.6,5.9,5.9S40.1,41.5,36.9,41.5z"}),Object(r.createElement)("path",{class:"g2",d:"M21.2,32.2c0.2-0.8,0.4-1.7,0.4-2.5c0-0.9-0.1-1.7-0.4-2.5l0.3-0.2l1.7-1.7l-1.8-3.1L19.1,23l-0.3,0.2c-1.2-1.2-2.7-2.1-4.4-2.5v-0.3l-0.6-2.4h-3.5l-0.6,2.4v0.3c-1.7,0.4-3.2,1.3-4.4,2.5L5.1,23l-2.3-0.7L1,25.4L2.7,27L3,27.2c-0.2,0.8-0.4,1.7-0.4,2.5c0,0.9,0.1,1.7,0.4,2.5l-0.3,0.1L1,34.1l1.8,3.1l2.3-0.7l0.3-0.1c1.2,1.2,2.7,2.1,4.4,2.5v0.3l0.6,2.4h3.5l0.6-2.4v-0.3c1.7-0.4,3.2-1.3,4.4-2.5l0.3,0.1l2.3,0.7l1.8-3.1l-1.7-1.7L21.2,32.2z M12.1,34.4c-2.6,0-4.7-2.1-4.7-4.7S9.5,25,12.1,25s4.7,2.1,4.7,4.7S14.7,34.4,12.1,34.4z"}),Object(r.createElement)("path",{class:"g3",d:"M37.7,15.7c0.2-0.8,0.4-1.7,0.4-2.5c0-0.9-0.1-1.7-0.4-2.5l0.3-0.2l1.7-1.7l-1.8-3.1l-2.3,0.7l-0.3,0.2c-1.2-1.2-2.7-2.1-4.4-2.5V3.8l-0.6-2.4h-3.5l-0.6,2.4v0.3c-1.7,0.4-3.2,1.3-4.4,2.5l-0.3-0.2l-2.3-0.7l-1.8,3.1l1.7,1.7l0.3,0.2c-0.2,0.8-0.4,1.7-0.4,2.5c0,0.9,0.1,1.7,0.4,2.5l-0.3,0.1l-1.7,1.7l1.8,3.1l2.3-0.7l0.3-0.1c1.2,1.2,2.7,2.1,4.4,2.5v0.3l0.6,2.4h3.5l0.6-2.4v-0.3c1.7-0.4,3.2-1.3,4.4-2.5l0.3,0.1l2.3,0.7l1.8-3.1L38,15.9L37.7,15.7z M28.6,17.9c-2.6,0-4.7-2.1-4.7-4.7s2.1-4.7,4.7-4.7s4.7,2.1,4.7,4.7S31.2,17.9,28.6,17.9z"}))),Object(r.createElement)("h2",null,Object(a.__)("Installing","blc"),"..."),Object(r.createElement)("p",null,Object(a.__)("Please be patient and don't refresh this page, the import process may take a while, this also depends on your server.","blc")),Object(r.createElement)("div",{className:"ct-progress-info"},l[i].title,u&&ke(u,l)?": ".concat(ke(u,l)):"",Object(r.createElement)("span",null,Math.round(s),"%")),Object(r.createElement)("div",{style:{"--progress":"".concat(s,"%")},className:"ct-installer-progress"},Object(r.createElement)("div",null))))}})))};function Te(e){return function(e){if(Array.isArray(e))return Fe(e)}(e)||function(e){if("undefined"!=typeof Symbol&&Symbol.iterator in Object(e))return Array.from(e)}(e)||Re(e)||function(){throw new TypeError("Invalid attempt to spread non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}function Ie(e,t){return function(e){if(Array.isArray(e))return e}(e)||function(e,t){if("undefined"==typeof Symbol||!(Symbol.iterator in Object(e)))return;var n=[],r=!0,c=!1,o=void 0;try{for(var a,i=e[Symbol.iterator]();!(r=(a=i.next()).done)&&(n.push(a.value),!t||n.length!==t);r=!0);}catch(e){c=!0,o=e}finally{try{r||null==i.return||i.return()}finally{if(c)throw o}}return n}(e,t)||Re(e,t)||function(){throw new TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}function Re(e,t){if(e){if("string"==typeof e)return Fe(e,t);var n=Object.prototype.toString.call(e).slice(8,-1);return"Object"===n&&e.constructor&&(n=e.constructor.name),"Map"===n||"Set"===n?Array.from(e):"Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)?Fe(e,t):void 0}}function Fe(e,t){(null==t||t>e.length)&&(t=e.length);for(var n=0,r=new Array(t);n<t;n++)r[n]=e[n];return r}var Be=function(e){e.location,e.navigate;var t=Ie(Object(r.useState)(!0),2),n=(t[0],t[1],Object(r.useContext)(Je)),c=n.installerBlockingReleased,o=n.demos_list,i=n.currentDemo,u=n.pluginsStatus,s=n.currentlyInstalledDemo,f=n.setCurrentDemo,d=Object(r.useContext)(R).is_child_theme,m=Ie(Object(r.useState)(s),2),b=m[0],p=m[1],h=Ie(Object(r.useState)({builder:"",child_theme:!1,plugins:[],content:{options:!0,widgets:!0,content:!0,erase_content:!0}}),2),v=h[0],O=h[1],y=Ie(Object(r.useState)(0),2),j=y[0],g=y[1],_=Ie((i||"").split(":"),2),E=_[0],w=(_[1],["modify_demo","child_theme","builder","plugins","content","installer"].filter((function(e){if(!i)return!1;if("modify_demo"===e){if(!b)return!1;if(-1===b.demo.indexOf(E))return!1}if("child_theme"===e&&d)return!1;var t=o.filter((function(e){return e.name===E})).sort((function(e,t){return e.builder<t.builder?-1:e.builder>t.builder?1:0}));return("plugins"!==e||0!==t.reduce((function(e,t){return[].concat(Te(e),Te(t.plugins||[]))}),[]).filter((function(e){return!u[e]})).length)&&("builder"!==e||t.length>1)}))),x=w[j];return Object(r.useEffect)((function(){if(E&&!(i.indexOf(":hide")>-1)){var e=o.filter((function(e){return e.name===E})).sort((function(e,t){return e.builder<t.builder?-1:e.builder>t.builder?1:0}));g(0),p(s),O({builder:1===e.length?e[0].builder:null,child_theme:!0,plugins:e[0].plugins.map((function(e){return{plugin:e,enabled:!0}})),content:{options:!0,widgets:!0,content:!0,erase_content:!0}})}}),[i]),Object(r.createElement)(M,{items:i,isVisible:function(e){return e&&-1===e.indexOf(":hide")},className:l()("ct-demo-modal",{"ct-demo-installer":"installer"===x||"modify_demo"===x}),onDismiss:function(){("installer"!==x||c)&&f("".concat(E,":hide"))},render:function(){return Object(r.createElement)("div",{className:"ct-modal-content ct-demo-step-container"},Object(r.createElement)("div",{className:"ct-current-step"},Object(r.createElement)(A.Transition,{items:x,from:{opacity:0},enter:{opacity:1},leave:{opacity:0},initial:!1,config:function(e,t){return"leave"===t?{duration:150}:{delay:150,duration:150}}},(function(e){return function(t){return Object(r.createElement)(r.Fragment,null,"modify_demo"===e&&Object(r.createElement)(fe,{demoConfiguration:v,nextStep:function(){g(Math.min(j+1,w.length-1))},style:t}),"child_theme"===e&&Object(r.createElement)(pe,{style:t,demoConfiguration:v,setDemoConfiguration:O}),"plugins"===e&&Object(r.createElement)(ie,{demoConfiguration:v,style:t,setDemoConfiguration:O}),"builder"===e&&Object(r.createElement)(ge,{style:t,demoConfiguration:v,setDemoConfiguration:O}),"content"===e&&Object(r.createElement)(xe,{style:t,demoConfiguration:v,setDemoConfiguration:O}),"installer"===e&&Object(r.createElement)(ze,{style:t,demoConfiguration:v}))}}))),"installer"!==x&&"modify_demo"!==x&&Object(r.createElement)("div",{className:"ct-demo-step-controls"},j>0&&Object(r.createElement)("button",{className:"ct-demo-btn demo-back-btn",onClick:function(){g(Math.max(j-1,0))}},Object(a.__)("Back","blc")),w.length>2&&Object(r.createElement)("ul",{className:"ct-steps-pills"},w.map((function(e,t){return t===w.length-1?null:Object(r.createElement)("li",{className:l()({active:e===x}),key:e},t+1)}))),Object(r.createElement)("button",{className:"ct-demo-btn demo-main-btn",disabled:"content"===x&&0===Le({demoConfiguration:v,pluginsStatus:u,is_child_theme:d}).length,onClick:function(){g(Math.min(j+1,w.length-1))}},"content"===x?Object(a.__)("Install","blc"):Object(a.__)("Next","blc"))))}})},Ue=n(7),Ve=n.n(Ue);function He(e,t,n,r,c,o,a){try{var i=e[o](a),l=i.value}catch(e){return void n(e)}i.done?t(l):Promise.resolve(l).then(r,c)}function qe(e,t){return function(e){if(Array.isArray(e))return e}(e)||function(e,t){if("undefined"==typeof Symbol||!(Symbol.iterator in Object(e)))return;var n=[],r=!0,c=!1,o=void 0;try{for(var a,i=e[Symbol.iterator]();!(r=(a=i.next()).done)&&(n.push(a.value),!t||n.length!==t);r=!0);}catch(e){c=!0,o=e}finally{try{r||null==i.return||i.return()}finally{if(c)throw o}}return n}(e,t)||function(e,t){if(!e)return;if("string"==typeof e)return We(e,t);var n=Object.prototype.toString.call(e).slice(8,-1);"Object"===n&&e.constructor&&(n=e.constructor.name);if("Map"===n||"Set"===n)return Array.from(e);if("Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n))return We(e,t)}(e,t)||function(){throw new TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}function We(e,t){(null==t||t>e.length)&&(t=e.length);for(var n=0,r=new Array(t);n<t;n++)r[n]=e[n];return r}var Ze=function(){var e=qe(Object(r.useState)(!1),2),t=e[0],n=e[1],c=qe(Object(r.useState)(!1),2),o=c[0],i=c[1],l=qe(Object(r.useState)(""),2),u=l[0],s=l[1],f=qe(Object(r.useState)(""),2),d=f[0],m=f[1],b=qe(Object(r.useState)("coblocks,elementor,contact-form-7"),2),p=b[0],h=b[1],v=qe(Object(r.useState)(""),2),O=v[0],y=v[1],j=qe(Object(r.useState)(!1),2),g=j[0],_=j[1],E=function(){var e,t=(e=regeneratorRuntime.mark((function e(){var t,r,c,o,a,i;return regeneratorRuntime.wrap((function(e){for(;;)switch(e.prev=e.next){case 0:return n(!0),(t=new FormData).append("action","blocksy_demo_export"),t.append("name",u),t.append("is_pro",g),t.append("url",O),t.append("builder",d),t.append("plugins",p),t.append("wp_customize","on"),e.prev=9,e.next=12,fetch(ctDashboardLocalizations.ajax_url,{method:"POST",body:t});case 12:if(200!==(r=e.sent).status){e.next=20;break}return e.next=16,r.json();case 16:c=e.sent,o=c.success,a=c.data,o&&(i=new Blob([JSON.stringify(a.demo)],{type:"text/plain;charset=utf-8"}),Ve.a.saveAs(i,"".concat(u,".json")));case 20:e.next=24;break;case 22:e.prev=22,e.t0=e.catch(9);case 24:n(!1);case 25:case"end":return e.stop()}}),e,null,[[9,22]])})),function(){var t=this,n=arguments;return new Promise((function(r,c){var o=e.apply(t,n);function a(e){He(o,r,c,a,i,"next",e)}function i(e){He(o,r,c,a,i,"throw",e)}a(void 0)}))});return function(){return t.apply(this,arguments)}}();return ct_localizations.is_dev_mode?Object(r.createElement)("div",{className:"ct-export"},Object(r.createElement)("button",{className:"ct-button",onClick:function(e){i(!0)}},Object(a.__)("Site export")),Object(r.createElement)(M,{items:o,className:"ct-site-export-modal",onDismiss:function(){return i(!1)},render:function(){return Object(r.createElement)("div",{className:"ct-site-export"},Object(r.createElement)("label",null,Object(a.__)("Name","blc"),Object(r.createElement)("input",{type:"text",placeholder:Object(a.__)("Name","blc"),value:u,onChange:function(e){var t=e.target.value;return s(t)}})),Object(r.createElement)("label",null,Object(a.__)("Preview URL","blc"),Object(r.createElement)("input",{type:"text",placeholder:Object(a.__)("Preview URL","blc"),value:O,onChange:function(e){var t=e.target.value;return y(t)}})),Object(r.createElement)("label",null,Object(a.__)("PRO","blc"),Object(r.createElement)("input",{type:"checkbox",value:g,onChange:function(e){e.target.value;return _(!g)}})),Object(r.createElement)("label",null,Object(a.__)("Builder","blc"),Object(r.createElement)("input",{type:"text",placeholder:Object(a.__)("Builder","blc"),value:d,onChange:function(e){var t=e.target.value;return m(t)}})),Object(r.createElement)("label",null,Object(a.__)("Plugins","blc"),Object(r.createElement)("textarea",{placeholder:Object(a.__)("Plugins","blc"),value:p,onChange:function(e){var t=e.target.value;return h(t)}})),Object(r.createElement)("button",{className:"ct-button",disabled:t,onClick:function(){return E()}},t?Object(a.__)("Loading...","blc"):Object(a.__)("Export site","blc")))}})):null};function $e(e,t,n,r,c,o,a){try{var i=e[o](a),l=i.value}catch(e){return void n(e)}i.done?t(l):Promise.resolve(l).then(r,c)}function Ge(e,t){return function(e){if(Array.isArray(e))return e}(e)||function(e,t){if("undefined"==typeof Symbol||!(Symbol.iterator in Object(e)))return;var n=[],r=!0,c=!1,o=void 0;try{for(var a,i=e[Symbol.iterator]();!(r=(a=i.next()).done)&&(n.push(a.value),!t||n.length!==t);r=!0);}catch(e){c=!0,o=e}finally{try{r||null==i.return||i.return()}finally{if(c)throw o}}return n}(e,t)||function(e,t){if(!e)return;if("string"==typeof e)return Ke(e,t);var n=Object.prototype.toString.call(e).slice(8,-1);"Object"===n&&e.constructor&&(n=e.constructor.name);if("Map"===n||"Set"===n)return Array.from(e);if("Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n))return Ke(e,t)}(e,t)||function(){throw new TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}function Ke(e,t){(null==t||t>e.length)&&(t=e.length);for(var n=0,r=new Array(t);n<t;n++)r[n]=e[n];return r}var Je=Object(r.createContext)({demos:[]}),Ye=null,Xe=null,Qe=function(e){e.children,e.path,e.location;var t=Ge(Object(r.useState)(!Ye),2),n=t[0],c=t[1],o=Ge(Object(r.useState)(Ye||[]),2),i=o[0],l=o[1],u=Ge(Object(r.useState)(Xe||{}),2),s=u[0],f=u[1],d=Ge(Object(r.useState)(null),2),m=d[0],b=d[1],p=Ge(Object(r.useState)(null),2),h=p[0],v=p[1],O=Ge(Object(r.useState)(!1),2),y=O[0],j=O[1],g=Ge(Object(r.useState)({builder:""}),2),_=(g[0],g[1],Ge(Object(r.useState)(!1),2)),E=_[0],w=_[1],x=function(){var e,t=(e=regeneratorRuntime.mark((function e(){var t,n,r,o,a,i=arguments;return regeneratorRuntime.wrap((function(e){for(;;)switch(e.prev=e.next){case 0:return i.length>0&&void 0!==i[0]&&i[0]&&c(!0),(t=new FormData).append("action","blocksy_demo_list"),e.prev=4,e.next=7,fetch(ctDashboardLocalizations.ajax_url,{method:"POST",body:t});case 7:if(200!==(n=e.sent).status){e.next=15;break}return e.next=11,n.json();case 11:r=e.sent,o=r.success,a=r.data,o&&(l(a.demos),f(a.active_plugins),v(a.current_installed_demo),j(a.demo_error),Xe=a.active_plugins,Ye=a.demos,a.demo_error);case 15:e.next=19;break;case 17:e.prev=17,e.t0=e.catch(4);case 19:c(!1);case 20:case"end":return e.stop()}}),e,null,[[4,17]])})),function(){var t=this,n=arguments;return new Promise((function(r,c){var o=e.apply(t,n);function a(e){$e(o,r,c,a,i,"next",e)}function i(e){$e(o,r,c,a,i,"throw",e)}a(void 0)}))});return function(){return t.apply(this,arguments)}}();return Object(r.useEffect)((function(){x(!Ye)}),[]),Object(r.createElement)("div",{className:"ct-demos-list-container"},y&&Object(r.createElement)("div",{className:"ct-demo-notification",dangerouslySetInnerHTML:{__html:y}}),Object(r.createElement)(A.Transition,{items:n,from:{opacity:0},enter:[{opacity:1}],leave:[{opacity:0}],config:function(e,t){return"leave"===t?{duration:300}:{delay:300,duration:300}}},(function(e){return e?function(e){return Object(r.createElement)(A.animated.p,{style:e,className:"ct-loading-text"},Object(r.createElement)("span",null),Object(a.__)("Loading Starter Sites...","blc"))}:0===i.length?function(e){return Object(r.createElement)(A.animated.div,{style:e},Object(r.createElement)("div",{className:"ct-demo-notification",dangerouslySetInnerHTML:{__html:Object(a.__)("Connection to <b>demo.creativethemes.com</b> server didn't worked -- this is required for downloading the starter sites. You need to contact your hosting provider to figure out why your server can't reach to our server.")}}),Object(r.createElement)(q,null))}:function(e){return Object(r.createElement)(A.animated.div,{style:e},Object(r.createElement)(r.Fragment,null,Object(r.createElement)(Je.Provider,{value:{demo_error:y,demos_list:i.filter((function(e){return!e.dev||ct_localizations.is_dev_mode})),currentDemo:m,pluginsStatus:s,installerBlockingReleased:E,setInstallerBlockingReleased:w,setCurrentDemo:b,currentlyInstalledDemo:h,setCurrentlyInstalledDemo:v}},Object(r.createElement)(le,null),Object(r.createElement)(Be,null),Object(r.createElement)(Ze,null)),Object(r.createElement)(q,null)))}})))};function et(e,t,n,r,c,o,a){try{var i=e[o](a),l=i.value}catch(e){return void n(e)}i.done?t(l):Promise.resolve(l).then(r,c)}var tt=function(){var e=function(){var e,t=(e=regeneratorRuntime.mark((function e(){var t,n,r,c,o,a;return regeneratorRuntime.wrap((function(e){for(;;)switch(e.prev=e.next){case 0:return(t=new FormData).append("action","blocksy_fs_connect_again"),e.prev=2,e.next=5,fetch(ctDashboardLocalizations.ajax_url,{method:"POST",body:t});case 5:if(200!==(n=e.sent).status){e.next=13;break}return e.next=9,n.json();case 9:r=e.sent,c=r.success,r.data,c&&((o=document.createElement("div")).innerHTML=ctDashboardLocalizations.plugin_data.connect_template,a=o.querySelector("form"),document.body.appendChild(a),a.submit());case 13:e.next=17;break;case 15:e.prev=15,e.t0=e.catch(2);case 17:case"end":return e.stop()}}),e,null,[[2,15]])})),function(){var t=this,n=arguments;return new Promise((function(r,c){var o=e.apply(t,n);function a(e){et(o,r,c,a,i,"next",e)}function i(e){et(o,r,c,a,i,"throw",e)}a(void 0)}))});return function(){return t.apply(this,arguments)}}();return Object(r.createElement)("div",{className:"ct-freemius-optin-message"},Object(r.createElement)("i",null,Object(r.createElement)("svg",{width:"20",height:"20",viewBox:"0 0 24 24",fill:"currentColor",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"},Object(r.createElement)("path",{d:"M18 8A6 6 0 0 0 6 8c0 7-3 9-3 9h18s-3-2-3-9"}),Object(r.createElement)("path",{d:"M13.73 21a2 2 0 0 1-3.46 0"}))),Object(r.createElement)("h2",null,Object(a.__)("Stay Updated","blc")),Object(r.createElement)("p",null,Object(a.__)("Never miss an important update - opt in to our security & feature updates notifications, and non-sensitive diagnostic tracking.","blc")),Object(r.createElement)("button",{className:"ct-button-primary",onClick:function(t){t.preventDefault(),e()}},Object(a.__)("Allow & Continue","blc")))};o.a.on("ct:dashboard:routes",(function(e){e.push({Component:function(){return Object(r.createElement)(Q,null)},path:"/extensions"}),"yes"===ctDashboardLocalizations.plugin_data.has_demo_install&&e.push({Component:function(e){return Object(r.createElement)(Qe,e)},path:"/demos"})})),o.a.on("ct:dashboard:navigation-links",(function(e){"yes"===ctDashboardLocalizations.plugin_data.has_demo_install&&e.push({text:Object(a.__)("Starter Sites","blc"),path:"demos",getProps:function(e){var t=e.isPartiallyCurrent;e.isCurrent;return t?{"aria-current":"page"}:{}}}),e.push({text:Object(a.__)("Extensions","blc"),path:"/extensions"})})),o.a.on("ct:dashboard:home:before",(function(e){ctDashboardLocalizations.plugin_data.is_anonymous&&(e.content=Object(r.createElement)(tt,null))})),o.a.on("ct:dashboard:heading:after",(function(e){ctDashboardLocalizations.plugin_data.is_pro&&(e.content=Object(r.createElement)("span",null,"PRO"))}))}]);
|
| 3 |
Copyright (c) 2017 Jed Watson.
|
| 4 |
Licensed under the MIT License (MIT), see
|
| 5 |
http://jedwatson.github.io/classnames
|
| 6 |
+
*/!function(){"use strict";var n={}.hasOwnProperty;function c(){for(var e=[],t=0;t<arguments.length;t++){var r=arguments[t];if(r){var o=typeof r;if("string"===o||"number"===o)e.push(r);else if(Array.isArray(r)&&r.length){var a=c.apply(null,r);a&&e.push(a)}else if("object"===o)for(var i in r)n.call(r,i)&&r[i]&&e.push(i)}}return e.join(" ")}e.exports?(c.default=c,e.exports=c):void 0===(r=function(){return c}.apply(t,[]))||(e.exports=r)}()},function(e,t){e.exports=window.blocksyOptions},function(e,t){e.exports=window.ctEvents},function(e,t){e.exports=window.React},function(e,t,n){var r,c,o=n(11),a=n(12),i=(c=[],{activateTrap:function(e){if(c.length>0){var t=c[c.length-1];t!==e&&t.pause()}var n=c.indexOf(e);-1===n||c.splice(n,1),c.push(e)},deactivateTrap:function(e){var t=c.indexOf(e);-1!==t&&c.splice(t,1),c.length>0&&c[c.length-1].unpause()}});function l(e){return setTimeout(e,0)}e.exports=function(e,t){var n=document,c="string"==typeof e?n.querySelector(e):e,u=a({returnFocusOnDeactivate:!0,escapeDeactivates:!0},t),s={firstTabbableNode:null,lastTabbableNode:null,nodeFocusedBeforeActivation:null,mostRecentlyFocusedNode:null,active:!1,paused:!1},f={activate:function(e){if(s.active)return;g(),s.active=!0,s.paused=!1,s.nodeFocusedBeforeActivation=n.activeElement;var t=e&&e.onActivate?e.onActivate:u.onActivate;t&&t();return m(),f},deactivate:d,pause:function(){if(s.paused||!s.active)return;s.paused=!0,b()},unpause:function(){if(!s.paused||!s.active)return;s.paused=!1,g(),m()}};return f;function d(e){if(s.active){clearTimeout(r),b(),s.active=!1,s.paused=!1,i.deactivateTrap(f);var t=e&&void 0!==e.onDeactivate?e.onDeactivate:u.onDeactivate;return t&&t(),(e&&void 0!==e.returnFocus?e.returnFocus:u.returnFocusOnDeactivate)&&l((function(){var e;_((e=s.nodeFocusedBeforeActivation,p("setReturnFocus")||e))})),f}}function m(){if(s.active)return i.activateTrap(f),r=l((function(){_(h())})),n.addEventListener("focusin",O,!0),n.addEventListener("mousedown",v,{capture:!0,passive:!1}),n.addEventListener("touchstart",v,{capture:!0,passive:!1}),n.addEventListener("click",j,{capture:!0,passive:!1}),n.addEventListener("keydown",y,{capture:!0,passive:!1}),f}function b(){if(s.active)return n.removeEventListener("focusin",O,!0),n.removeEventListener("mousedown",v,!0),n.removeEventListener("touchstart",v,!0),n.removeEventListener("click",j,!0),n.removeEventListener("keydown",y,!0),f}function p(e){var t=u[e],r=t;if(!t)return null;if("string"==typeof t&&!(r=n.querySelector(t)))throw new Error("`"+e+"` refers to no known node");if("function"==typeof t&&!(r=t()))throw new Error("`"+e+"` did not return a node");return r}function h(){var e;if(!(e=null!==p("initialFocus")?p("initialFocus"):c.contains(n.activeElement)?n.activeElement:s.firstTabbableNode||p("fallbackFocus")))throw new Error("Your focus-trap needs to have at least one focusable element");return e}function v(e){c.contains(e.target)||(u.clickOutsideDeactivates?d({returnFocus:!o.isFocusable(e.target)}):u.allowOutsideClick&&u.allowOutsideClick(e)||e.preventDefault())}function O(e){c.contains(e.target)||e.target instanceof Document||(e.stopImmediatePropagation(),_(s.mostRecentlyFocusedNode||h()))}function y(e){if(!1!==u.escapeDeactivates&&function(e){return"Escape"===e.key||"Esc"===e.key||27===e.keyCode}(e))return e.preventDefault(),void d();(function(e){return"Tab"===e.key||9===e.keyCode})(e)&&function(e){if(g(),e.shiftKey&&e.target===s.firstTabbableNode)return e.preventDefault(),void _(s.lastTabbableNode);if(!e.shiftKey&&e.target===s.lastTabbableNode)e.preventDefault(),_(s.firstTabbableNode)}(e)}function j(e){u.clickOutsideDeactivates||c.contains(e.target)||u.allowOutsideClick&&u.allowOutsideClick(e)||(e.preventDefault(),e.stopImmediatePropagation())}function g(){var e=o(c);s.firstTabbableNode=e[0]||h(),s.lastTabbableNode=e[e.length-1]||h()}function _(e){e!==n.activeElement&&(e&&e.focus?(e.focus(),s.mostRecentlyFocusedNode=e,function(e){return e.tagName&&"input"===e.tagName.toLowerCase()&&"function"==typeof e.select}(e)&&e.select()):_(h()))}}},function(e,t,n){(function(n){var r,c,o;c=[],void 0===(o="function"==typeof(r=function(){"use strict";function t(e,t,n){var r=new XMLHttpRequest;r.open("GET",e),r.responseType="blob",r.onload=function(){a(r.response,t,n)},r.onerror=function(){console.error("could not download file")},r.send()}function r(e){var t=new XMLHttpRequest;t.open("HEAD",e,!1);try{t.send()}catch(e){}return 200<=t.status&&299>=t.status}function c(e){try{e.dispatchEvent(new MouseEvent("click"))}catch(n){var t=document.createEvent("MouseEvents");t.initMouseEvent("click",!0,!0,window,0,0,0,80,20,!1,!1,!1,!1,0,null),e.dispatchEvent(t)}}var o="object"==typeof window&&window.window===window?window:"object"==typeof self&&self.self===self?self:"object"==typeof n&&n.global===n?n:void 0,a=o.saveAs||("object"!=typeof window||window!==o?function(){}:"download"in HTMLAnchorElement.prototype?function(e,n,a){var i=o.URL||o.webkitURL,l=document.createElement("a");n=n||e.name||"download",l.download=n,l.rel="noopener","string"==typeof e?(l.href=e,l.origin===location.origin?c(l):r(l.href)?t(e,n,a):c(l,l.target="_blank")):(l.href=i.createObjectURL(e),setTimeout((function(){i.revokeObjectURL(l.href)}),4e4),setTimeout((function(){c(l)}),0))}:"msSaveOrOpenBlob"in navigator?function(e,n,o){if(n=n||e.name||"download","string"!=typeof e)navigator.msSaveOrOpenBlob(function(e,t){return void 0===t?t={autoBom:!1}:"object"!=typeof t&&(console.warn("Deprecated: Expected third argument to be a object"),t={autoBom:!t}),t.autoBom&&/^\s*(?:text\/\S*|application\/xml|\S*\/\S*\+xml)\s*;.*charset\s*=\s*utf-8/i.test(e.type)?new Blob(["\ufeff",e],{type:e.type}):e}(e,o),n);else if(r(e))t(e,n,o);else{var a=document.createElement("a");a.href=e,a.target="_blank",setTimeout((function(){c(a)}))}}:function(e,n,r,c){if((c=c||open("","_blank"))&&(c.document.title=c.document.body.innerText="downloading..."),"string"==typeof e)return t(e,n,r);var a="application/octet-stream"===e.type,i=/constructor/i.test(o.HTMLElement)||o.safari,l=/CriOS\/[\d]+/.test(navigator.userAgent);if((l||a&&i)&&"object"==typeof FileReader){var u=new FileReader;u.onloadend=function(){var e=u.result;e=l?e:e.replace(/^data:[^;]*;/,"data:attachment/file;"),c?c.location.href=e:location=e,c=null},u.readAsDataURL(e)}else{var s=o.URL||o.webkitURL,f=s.createObjectURL(e);c?c.location=f:location.href=f,c=null,setTimeout((function(){s.revokeObjectURL(f)}),4e4)}});o.saveAs=a.saveAs=a,e.exports=a})?r.apply(t,c):r)||(e.exports=o)}).call(this,n(13))},function(e,t,n){e.exports=n(9)()},function(e,t,n){"use strict";var r=n(10);function c(){}function o(){}o.resetWarningCache=c,e.exports=function(){function e(e,t,n,c,o,a){if(a!==r){var i=new Error("Calling PropTypes validators directly is not supported by the `prop-types` package. Use PropTypes.checkPropTypes() to call them. Read more at http://fb.me/use-check-prop-types");throw i.name="Invariant Violation",i}}function t(){return e}e.isRequired=e;var n={array:e,bool:e,func:e,number:e,object:e,string:e,symbol:e,any:e,arrayOf:t,element:e,elementType:e,instanceOf:t,node:e,objectOf:t,oneOf:t,oneOfType:t,shape:t,exact:t,checkPropTypes:o,resetWarningCache:c};return n.PropTypes=n,n}},function(e,t,n){"use strict";e.exports="SECRET_DO_NOT_PASS_THIS_OR_YOU_WILL_BE_FIRED"},function(e,t){var n=["input","select","textarea","a[href]","button","[tabindex]","audio[controls]","video[controls]",'[contenteditable]:not([contenteditable="false"])'],r=n.join(","),c="undefined"==typeof Element?function(){}:Element.prototype.matches||Element.prototype.msMatchesSelector||Element.prototype.webkitMatchesSelector;function o(e,t){t=t||{};var n,o,i,l=[],f=[],d=e.querySelectorAll(r);for(t.includeContainer&&c.call(e,r)&&(d=Array.prototype.slice.apply(d)).unshift(e),n=0;n<d.length;n++)a(o=d[n])&&(0===(i=u(o))?l.push(o):f.push({documentOrder:n,tabIndex:i,node:o}));return f.sort(s).map((function(e){return e.node})).concat(l)}function a(e){return!(!i(e)||function(e){return function(e){return f(e)&&"radio"===e.type}(e)&&!function(e){if(!e.name)return!0;var t=function(e){for(var t=0;t<e.length;t++)if(e[t].checked)return e[t]}(e.ownerDocument.querySelectorAll('input[type="radio"][name="'+e.name+'"]'));return!t||t===e}(e)}(e)||u(e)<0)}function i(e){return!(e.disabled||function(e){return f(e)&&"hidden"===e.type}(e)||function(e){return null===e.offsetParent||"hidden"===getComputedStyle(e).visibility}(e))}o.isTabbable=function(e){if(!e)throw new Error("No node provided");return!1!==c.call(e,r)&&a(e)},o.isFocusable=function(e){if(!e)throw new Error("No node provided");return!1!==c.call(e,l)&&i(e)};var l=n.concat("iframe").join(",");function u(e){var t=parseInt(e.getAttribute("tabindex"),10);return isNaN(t)?function(e){return"true"===e.contentEditable}(e)?0:e.tabIndex:t}function s(e,t){return e.tabIndex===t.tabIndex?e.documentOrder-t.documentOrder:e.tabIndex-t.tabIndex}function f(e){return"INPUT"===e.tagName}e.exports=o},function(e,t){e.exports=function(){for(var e={},t=0;t<arguments.length;t++){var r=arguments[t];for(var c in r)n.call(r,c)&&(e[c]=r[c])}return e};var n=Object.prototype.hasOwnProperty},function(e,t){var n;n=function(){return this}();try{n=n||new Function("return this")()}catch(e){"object"==typeof window&&(n=window)}e.exports=n},function(e,t,n){"use strict";n.r(t);var r=n(0),c=n(4),o=n.n(c),a=n(1),i=n(2),l=n.n(i),u=n(5),s=n.n(u);n(8);function f(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function d(e,t){if(!e)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return!t||"object"!=typeof t&&"function"!=typeof t?e:t}var m=function(e){e.initialState,e.getInitialState,e.refs,e.getRefs,e.didMount,e.didUpdate,e.willUnmount,e.getSnapshotBeforeUpdate,e.shouldUpdate,e.render;return function(e,t){var n={};for(var r in e)t.indexOf(r)>=0||Object.prototype.hasOwnProperty.call(e,r)&&(n[r]=e[r]);return n}(e,["initialState","getInitialState","refs","getRefs","didMount","didUpdate","willUnmount","getSnapshotBeforeUpdate","shouldUpdate","render"])},b=function(e){function t(){var n,r;f(this,t);for(var c=arguments.length,o=Array(c),a=0;a<c;a++)o[a]=arguments[a];return n=r=d(this,e.call.apply(e,[this].concat(o))),p.call(r),d(r,n)}return function(e,t){if("function"!=typeof t&&null!==t)throw new TypeError("Super expression must either be null or a function, not "+typeof t);e.prototype=Object.create(t&&t.prototype,{constructor:{value:e,enumerable:!1,writable:!0,configurable:!0}}),t&&(Object.setPrototypeOf?Object.setPrototypeOf(e,t):e.__proto__=t)}(t,e),t.prototype.getArgs=function(){var e=this.state,t=this.props,n=this._setState,r=this._forceUpdate,c=this._refs;return{state:e,props:m(t),refs:c,setState:n,forceUpdate:r}},t.prototype.componentDidMount=function(){this.props.didMount&&this.props.didMount(this.getArgs())},t.prototype.shouldComponentUpdate=function(e,t){return!this.props.shouldUpdate||this.props.shouldUpdate({props:this.props,state:this.state,nextProps:m(e),nextState:t})},t.prototype.componentWillUnmount=function(){this.props.willUnmount&&this.props.willUnmount({state:this.state,props:m(this.props),refs:this._refs})},t.prototype.componentDidUpdate=function(e,t,n){this.props.didUpdate&&this.props.didUpdate(Object.assign(this.getArgs(),{prevProps:m(e),prevState:t}),n)},t.prototype.getSnapshotBeforeUpdate=function(e,t){return this.props.getSnapshotBeforeUpdate?this.props.getSnapshotBeforeUpdate(Object.assign(this.getArgs(),{prevProps:m(e),prevState:t})):null},t.prototype.render=function(){var e=this.props,t=e.children,n=e.render;return n?n(this.getArgs()):"function"==typeof t?t(this.getArgs()):t||null},t}(s.a.Component);b.defaultProps={getInitialState:function(){},getRefs:function(){return{}}};var p=function(){var e=this;this.state=this.props.initialState||this.props.getInitialState(this.props),this._refs=this.props.refs||this.props.getRefs(this.getArgs()),this._setState=function(){return e.setState.apply(e,arguments)},this._forceUpdate=function(){return e.forceUpdate.apply(e,arguments)}},h=b,v=function(e){var t=e.children,n=e.container,c=void 0===n?document.body:n,o=e.type,a=void 0===o?"reach-portal":o;return Object(r.createElement)(h,{getRefs:function(){return{node:null}},didMount:function(e){var t=e.refs,n=e.forceUpdate,r=c.hasOwnProperty("current")?c.current:c;t.node=document.createElement(a),r.appendChild(t.node),n()},willUnmount:function(e){var t=e.refs.node,n=c.hasOwnProperty("current")?c.current:c;n&&n.removeChild(t)},render:function(e){var n=e.refs.node;return n?Object(r.createPortal)(t,n):null}})};var O=function(e,t){return function(n){if(e&&e(n),!n.defaultPrevented)return t(n)}},y=n(6),j=n.n(y);function g(){return(g=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var n=arguments[t];for(var r in n)Object.prototype.hasOwnProperty.call(n,r)&&(e[r]=n[r])}return e}).apply(this,arguments)}function _(e,t){if(null==e)return{};var n,r,c=function(e,t){if(null==e)return{};var n,r,c={},o=Object.keys(e);for(r=0;r<o.length;r++)n=o[r],t.indexOf(n)>=0||(c[n]=e[n]);return c}(e,t);if(Object.getOwnPropertySymbols){var o=Object.getOwnPropertySymbols(e);for(r=0;r<o.length;r++)n=o[r],t.indexOf(n)>=0||Object.prototype.propertyIsEnumerable.call(e,n)&&(c[n]=e[n])}return c}var E=function(){},w=function(){},x=function(e,t){var n,r,c;e.disposeAriaHider=(n=e.overlayNode,r=[],c=[],Array.prototype.forEach.call(document.querySelectorAll("body > *"),(function(e){if(e!==n.parentNode){var t=e.getAttribute("aria-hidden");null!==t&&"false"!==t||(r.push(t),c.push(e),e.setAttribute("aria-hidden","true"))}})),function(){c.forEach((function(e,t){var n=r[t];null===n?e.removeAttribute("aria-hidden"):e.setAttribute("aria-hidden",n)}))}),e.trap=j()(e.overlayNode,{initialFocus:t?function(){return t.current}:void 0,fallbackFocus:e.contentNode,escapeDeactivates:!1,clickOutsideDeactivates:!1})},S=function(e){var t=e.refs;t.trap.deactivate(),t.disposeAriaHider()},k=React.createContext(),C=React.forwardRef((function(e,t){var n=e.container,c=e.isOpen,o=void 0===c||c,a=e.onDismiss,i=void 0===a?E:a,l=e.initialFocusRef,u=e.onClick,s=e.onKeyDown,f=_(e,["container","isOpen","onDismiss","initialFocusRef","onClick","onKeyDown"]);return Object(r.createElement)(h,{didMount:w},o?Object(r.createElement)(v,{container:n,"data-reach-dialog-wrapper":!0},Object(r.createElement)(h,{refs:{overlayNode:null,contentNode:null},didMount:function(e){var t=e.refs;x(t,l)},willUnmount:S},(function(e){var n=e.refs;return Object(r.createElement)(k.Provider,{value:function(e){return n.contentNode=e}},Object(r.createElement)("div",g({"data-reach-dialog-overlay":!0,onClick:O(u,(function(e){e.stopPropagation(),i()})),onKeyDown:O(s,(function(e){"Escape"===e.key&&(e.stopPropagation(),i())})),ref:function(e){n.overlayNode=e,t&&t(e)}},f)))}))):null)}));C.propTypes={initialFocusRef:function(){}};var D=function(e){return e.stopPropagation()},P=React.forwardRef((function(e,t){var n=e.onClick,c=(e.onKeyDown,_(e,["onClick","onKeyDown"]));return Object(r.createElement)(k.Consumer,null,(function(e){return Object(r.createElement)("div",g({"aria-modal":"true","data-reach-dialog-content":!0,tabIndex:"-1",onClick:O(n,D),ref:function(n){e(n),t&&t(n)}},c))}))})),A=n(3),N=function(e){return!!e},M=function(e){var t=e.items,n=e.isVisible,c=void 0===n?N:n,o=e.render,a=e.className,i=e.onDismiss;return Object(r.createElement)(A.Transition,{items:t,onStart:function(){return document.body.classList[c(t)?"add":"remove"]("ct-dashboard-overlay-open")},config:{duration:200},from:{opacity:0,y:-10},enter:{opacity:1,y:0},leave:{opacity:0,y:10}},(function(e){return c(e)&&function(t){return Object(r.createElement)(C,{style:{opacity:t.opacity},container:document.querySelector("#wpbody"),onDismiss:function(){return i()}},Object(r.createElement)(P,{className:l()("ct-admin-modal",a),style:{transform:"translate3d(0px, ".concat(t.y,"px, 0px)")}},Object(r.createElement)("button",{className:"close-button",onClick:function(){return i()}},"×"),o(e,t)))}}))};function L(e,t){return function(e){if(Array.isArray(e))return e}(e)||function(e,t){if("undefined"==typeof Symbol||!(Symbol.iterator in Object(e)))return;var n=[],r=!0,c=!1,o=void 0;try{for(var a,i=e[Symbol.iterator]();!(r=(a=i.next()).done)&&(n.push(a.value),!t||n.length!==t);r=!0);}catch(e){c=!0,o=e}finally{try{r||null==i.return||i.return()}finally{if(c)throw o}}return n}(e,t)||function(e,t){if(!e)return;if("string"==typeof e)return z(e,t);var n=Object.prototype.toString.call(e).slice(8,-1);"Object"===n&&e.constructor&&(n=e.constructor.name);if("Map"===n||"Set"===n)return Array.from(e);if("Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n))return z(e,t)}(e,t)||function(){throw new TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}function z(e,t){(null==t||t>e.length)&&(t=e.length);for(var n=0,r=new Array(t);n<t;n++)r[n]=e[n];return r}var T=function(e){var t=L(Object(r.useState)(!1),2),n=t[0],c=t[1];return[function(){return c(!0)},Object(r.createElement)(M,{items:n,onDismiss:function(){return c(!1)},render:function(){return Object(r.createElement)("div",{className:"ct-modal-content",dangerouslySetInnerHTML:{__html:e.readme}})}})]},I=window.ctDashboardLocalizations.DashboardContext,R=(I.Provider,I.Consumer,I);function F(e,t,n,r,c,o,a){try{var i=e[o](a),l=i.value}catch(e){return void n(e)}i.done?t(l):Promise.resolve(l).then(r,c)}function B(e){return function(){var t=this,n=arguments;return new Promise((function(r,c){var o=e.apply(t,n);function a(e){F(o,r,c,a,i,"next",e)}function i(e){F(o,r,c,a,i,"throw",e)}a(void 0)}))}}function U(e,t){return function(e){if(Array.isArray(e))return e}(e)||function(e,t){if("undefined"==typeof Symbol||!(Symbol.iterator in Object(e)))return;var n=[],r=!0,c=!1,o=void 0;try{for(var a,i=e[Symbol.iterator]();!(r=(a=i.next()).done)&&(n.push(a.value),!t||n.length!==t);r=!0);}catch(e){c=!0,o=e}finally{try{r||null==i.return||i.return()}finally{if(c)throw o}}return n}(e,t)||function(e,t){if(!e)return;if("string"==typeof e)return V(e,t);var n=Object.prototype.toString.call(e).slice(8,-1);"Object"===n&&e.constructor&&(n=e.constructor.name);if("Map"===n||"Set"===n)return Array.from(e);if("Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n))return V(e,t)}(e,t)||function(){throw new TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}function V(e,t){(null==t||t>e.length)&&(t=e.length);for(var n=0,r=new Array(t);n<t;n++)r[n]=e[n];return r}var H=function(e){var t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:function(){},n=Object(r.useState)(!1),c=U(n,2),o=c[0],i=c[1],l=Object(r.useState)(!1),u=U(l,2),s=u[0],f=u[1],d=Object(r.useContext)(R),m=(d.Link,d.history),b=ctDashboardLocalizations.plugin_data.is_pro,p=function(){var n=B(regeneratorRuntime.mark((function n(){var r;return regeneratorRuntime.wrap((function(n){for(;;)switch(n.prev=n.next){case 0:if(b||!e.config.pro){n.next=3;break}return f(!0),n.abrupt("return");case 3:return(r=new FormData).append("ext",e.name),r.append("action",e.__object?"blocksy_extension_deactivate":"blocksy_extension_activate"),i(!0),n.prev=7,n.next=10,fetch(ctDashboardLocalizations.ajax_url,{method:"POST",body:r});case 10:e.config.require_refresh&&location.reload(),t(),n.next=16;break;case 14:n.prev=14,n.t0=n.catch(7);case 16:i(!1);case 17:case"end":return n.stop()}}),n,null,[[7,14]])})));return function(){return n.apply(this,arguments)}}();return[o,p,!b&&e.config.pro?Object(r.createElement)(M,{items:s,className:"ct-onboarding-modal",onDismiss:function(){return f(!1)},render:function(){return Object(r.createElement)("div",{className:"ct-modal-content"},Object(r.createElement)("svg",{width:"55",height:"55",viewBox:"0 0 40.5 48.3"},Object(r.createElement)("path",{fill:"#2d82c8",d:"M33.4 29.4l7.1 12.3-7.4.6-4 6-7.3-12.9"}),Object(r.createElement)("path",{d:"M33.5 29.6L26 42.7l-4.2-7.3 11.6-6 .1.2zM0 41.7l7.5.6 3.9 6 7.2-12.4-11-7.3L0 41.7z",fill:"#2271b1"}),Object(r.createElement)("path",{d:"M39.5 18.7c0 1.6-2.4 2.8-2.7 4.3-.4 1.5 1 3.8.2 5.1-.8 1.3-3.4 1.2-4.5 2.3-1.1 1.1-1 3.7-2.3 4.5-1.3.8-3.6-.6-5.1-.2-1.5.4-2.7 2.7-4.3 2.7S18 35 16.5 34.7c-1.5-.4-3.8 1-5.1.2s-1.2-3.4-2.3-4.5-3.7-1-4.5-2.3.6-3.6.2-5.1-2.7-2.7-2.7-4.3 2.4-2.8 2.7-4.3c.4-1.5-1-3.8-.2-5.1C5.4 8 8.1 8.1 9.1 7c1.1-1.1 1-3.7 2.3-4.5s3.6.6 5.1.2C18 2.4 19.2 0 20.8 0c1.6 0 2.8 2.4 4.3 2.7 1.5.4 3.8-1 5.1-.2 1.3.8 1.2 3.4 2.3 4.5 1.1 1.1 3.7 1 4.5 2.3s-.6 3.6-.2 5.1c.3 1.5 2.7 2.7 2.7 4.3z",fill:"#599fd9"}),Object(r.createElement)("path",{d:"M23.6 7c-6.4-1.5-12.9 2.5-14.4 8.9-.7 3.1-.2 6.3 1.5 9.1 1.7 2.7 4.3 4.6 7.4 5.4.9.2 1.9.3 2.8.3 2.2 0 4.4-.6 6.3-1.8 2.7-1.7 4.6-4.3 5.4-7.5C34 15 30 8.5 23.6 7zm7 14c-.6 2.6-2.2 4.8-4.5 6.2-2.3 1.4-5 1.8-7.6 1.2-2.6-.6-4.8-2.2-6.2-4.5-1.4-2.3-1.8-5-1.2-7.6.6-2.6 2.2-4.8 4.5-6.2 1.6-1 3.4-1.5 5.2-1.5.8 0 1.5.1 2.3.3 5.4 1.3 8.7 6.7 7.5 12.1zm-8.2-4.5l3.7.5-2.7 2.7.7 3.7-3.4-1.8-3.3 1.8.6-3.7-2.7-2.7 3.8-.5 1.6-3.4 1.7 3.4z",fill:"#fff"})),Object(r.createElement)("h2",{className:"ct-modal-title"},"This is a Pro extension"),Object(r.createElement)("p",null,Object(a.__)("Upgrade to the Pro version and get instant access to all premium extensions, features and future updates.","blc")),Object(r.createElement)("p",null,Object(a.__)("Hurry up, we have a 10% off discount now 🤩","blc")),Object(r.createElement)("div",{className:"ct-modal-actions has-divider","data-buttons":"2"},Object(r.createElement)("a",{onClick:function(e){e.preventDefault(),f(!1),setTimeout((function(){m.navigate("/pro")}),300)},className:"button"},Object(a.__)("Free vs Pro","blocksy")),Object(r.createElement)("a",{href:"https://creativethemes.com/blocksy/pricing/?coupon=BlocksyLimited10&utm_source=getpro&utm_medium=dashboard&utm_campaign=BlocksyLimited10",target:"_blank",className:"button button-primary"},Object(a.__)("Upgrade Now","blc"))))}}):null]},q=function(){return ctDashboardLocalizations.plugin_data.hide_support_section?null:Object(r.createElement)("div",{className:"ct-support-container"},Object(r.createElement)("h2",null,Object(a.__)("Need help or advice?","blc")),Object(r.createElement)("p",null,Object(a.__)("Got a question or need help with the theme? You can always submit a support ticket or ask for help in our friendly Facebook community.","blc")),Object(r.createElement)("a",{href:ctDashboardLocalizations.support_url,className:"ct-button","data-hover":"blue",target:"_blank"},Object(a.__)("Submit a Support Ticket","blc")),Object(r.createElement)("a",{href:"https://www.facebook.com/groups/blocksy.community",className:"ct-button","data-hover":"blue",target:"_blank"},Object(a.__)("Join Facebook Community","blc")))};function W(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);t&&(r=r.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),n.push.apply(n,r)}return n}function Z(e){for(var t=1;t<arguments.length;t++){var n=null!=arguments[t]?arguments[t]:{};t%2?W(Object(n),!0).forEach((function(t){$(e,t,n[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(n)):W(Object(n)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(n,t))}))}return e}function $(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}function G(e,t,n,r,c,o,a){try{var i=e[o](a),l=i.value}catch(e){return void n(e)}i.done?t(l):Promise.resolve(l).then(r,c)}function K(e,t){return function(e){if(Array.isArray(e))return e}(e)||function(e,t){if("undefined"==typeof Symbol||!(Symbol.iterator in Object(e)))return;var n=[],r=!0,c=!1,o=void 0;try{for(var a,i=e[Symbol.iterator]();!(r=(a=i.next()).done)&&(n.push(a.value),!t||n.length!==t);r=!0);}catch(e){c=!0,o=e}finally{try{r||null==i.return||i.return()}finally{if(c)throw o}}return n}(e,t)||function(e,t){if(!e)return;if("string"==typeof e)return J(e,t);var n=Object.prototype.toString.call(e).slice(8,-1);"Object"===n&&e.constructor&&(n=e.constructor.name);if("Map"===n||"Set"===n)return Array.from(e);if("Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n))return J(e,t)}(e,t)||function(){throw new TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}function J(e,t){(null==t||t>e.length)&&(t=e.length);for(var n=0,r=new Array(t);n<t;n++)r[n]=e[n];return r}var Y=null,X=function(e){var t=e.extension,n=e.onExtsSync,c=K(T(t),2),o=c[0],i=c[1],u=K(H(t,(function(){n()})),3),s=u[0],f=u[1],d=u[2];return Object(r.createElement)("li",{className:l()({active:!!t.__object})},Object(r.createElement)("h4",{className:"ct-extension-title"},t.config.name,s&&Object(r.createElement)("svg",{width:"15",height:"15",viewBox:"0 0 100 100"},Object(r.createElement)("g",{transform:"translate(50,50)"},Object(r.createElement)("g",{transform:"scale(1)"},Object(r.createElement)("circle",{cx:"0",cy:"0",r:"50",fill:"#687c93"}),Object(r.createElement)("circle",{cx:"0",cy:"-26",r:"12",fill:"#ffffff",transform:"rotate(161.634)"},Object(r.createElement)("animateTransform",{attributeName:"transform",type:"rotate",calcMode:"linear",values:"0 0 0;360 0 0",keyTimes:"0;1",dur:"1s",begin:"0s",repeatCount:"indefinite"})))))),t.config.description&&Object(r.createElement)("div",{className:"ct-extension-description"},t.config.description),Object(r.createElement)("div",{className:"ct-extension-actions"},Object(r.createElement)("button",{className:l()(t.__object?"ct-button":"ct-button-primary"),"data-hover":"white",disabled:s,onClick:function(){f()}},t.__object?Object(a.__)("Deactivate","blc"):Object(a.__)("Activate","blc")),t.readme&&Object(r.createElement)("button",{onClick:function(){return o()},className:"ct-minimal-button ct-instruction"},Object(r.createElement)("svg",{width:"16",height:"16",viewBox:"0 0 24 24"},Object(r.createElement)("path",{d:"M12,2C6.477,2,2,6.477,2,12s4.477,10,10,10s10-4.477,10-10S17.523,2,12,2z M12,17L12,17c-0.552,0-1-0.448-1-1v-4 c0-0.552,0.448-1,1-1h0c0.552,0,1,0.448,1,1v4C13,16.552,12.552,17,12,17z M12.5,9h-1C11.224,9,11,8.776,11,8.5v-1 C11,7.224,11.224,7,11.5,7h1C12.776,7,13,7.224,13,7.5v1C13,8.776,12.776,9,12.5,9z"}))),t.__object&&t.config&&t.config.buttons&&t.config.buttons.map((function(e,t){var n=e.text,c=e.url;return Object(r.createElement)("a",{href:c,className:"ct-button ct-config-btn",dataButton:"white"},n)}))),i,d)},Q=function(){var e=K(Object(r.useState)(!Y),2),t=e[0],n=e[1],c=K(Object(r.useState)(Y||[]),2),i=c[0],u=c[1],s=K(Object(r.useState)(!1),2),f=s[0],d=s[1],m=K(Object(r.useState)("free"),2),b=m[0],p=m[1],h=function(){var e,t=(e=regeneratorRuntime.mark((function e(){var t,r,c,o,a,i,l,s,f,m=arguments;return regeneratorRuntime.wrap((function(e){for(;;)switch(e.prev=e.next){case 0:return t=m.length>0&&void 0!==m[0]?m[0]:{},r=Z({verbose:!1,extension:null,extAction:null},t),c=r.verbose,o=r.extension,a=r.extAction,c&&n(!0),d(!0),e.prev=4,e.next=7,fetch("".concat(wp.ajax.settings.url,"?action=blocksy_extensions_status"),Z({method:"POST"},o&&a?{body:JSON.stringify({extension:o,extAction:a})}:{}));case 7:if(200!==(i=e.sent).status){e.next=15;break}return e.next=11,i.json();case 11:l=e.sent,s=l.success,f=l.data,s&&(u(f),Y=f);case 15:e.next=19;break;case 17:e.prev=17,e.t0=e.catch(4);case 19:d(!1),n(!1);case 21:case"end":return e.stop()}}),e,null,[[4,17]])})),function(){var t=this,n=arguments;return new Promise((function(r,c){var o=e.apply(t,n);function a(e){G(o,r,c,a,i,"next",e)}function i(e){G(o,r,c,a,i,"throw",e)}a(void 0)}))});return function(){return t.apply(this,arguments)}}();Object(r.useEffect)((function(){h({verbose:!Y});var e=function(){h()};return o.a.on("blocksy_exts_sync_exts",e),function(){o.a.off("blocksy_exts_sync_exts",e)}}),[]);var v=Object(r.useMemo)((function(){return Object.values(i).map((function(e,t){return Z(Z({},e),{},{name:Object.keys(i)[t]})})).find((function(e){return e.config.pro}))}),[i]),O=Object(r.useMemo)((function(){return Object.values(i).map((function(e,t){return Z(Z({},e),{},{name:Object.keys(i)[t]})})).filter((function(e){return!e.config.hidden})).filter((function(e){var t=e.config;return"free"===b?!t.pro:t.pro}))}),[b,i]);return Object(r.createElement)(r.Fragment,null,Object(r.createElement)("div",{className:"ct-extensions-container"},Object(r.createElement)(A.Transition,{items:t,from:{opacity:0},enter:[{opacity:1}],leave:[{opacity:0}],initial:null,config:function(e,t){return"leave"===t?{duration:300}:{delay:300,duration:300}}},(function(e){return e?function(e){return Object(r.createElement)(A.animated.p,{style:e,className:"ct-loading-text"},Object(r.createElement)("span",null),Object(a.__)("Loading Extensions Status...","blc"))}:function(e){return Object(r.createElement)(A.animated.div,{style:e},Object(r.createElement)(r.Fragment,null,v&&Object(r.createElement)("ul",{className:"ct-extensions-sourse"},["free","pro"].map((function(e){return Object(r.createElement)("li",{key:e,onClick:function(){return p(e)},className:l()({active:e===b})},{free:Object(a.__)("Free Extensions","blc"),pro:Object(a.__)("Pro Extensions","blc")}[e])}))),Object(r.createElement)("ul",{className:l()("ct-extensions-list",{"is-pro":"pro"===b})},O.map((function(e){var t={extension:X};return o.a.trigger("ct:extensions:card",{CustomComponent:t,extension:e}),Object(r.createElement)(t.extension,{key:e.name,extension:e,extsSyncLoading:f,onExtsSync:function(){var t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{};i[e.name].__object=!i[e.name].__object,u(i),h(Z(Z({},t),{},{extension:e.name}))}})}))),Object(r.createElement)(q,null)))}}))))},ee=function(e){var t=e.children,n=e.activated,c=e.checked,o=e.onChange;return Object(r.createElement)("div",{onClick:function(){return o()},className:l()("ct-checkbox-container",{activated:n})},t,Object(r.createElement)("span",{className:l()("ct-checkbox",{active:c})},Object(r.createElement)("svg",{width:"10",height:"8",viewBox:"0 0 11.2 9.1"},Object(r.createElement)("polyline",{class:"check",points:"1.2,4.8 4.4,7.9 9.9,1.2 "}))))};function te(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);t&&(r=r.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),n.push.apply(n,r)}return n}function ne(e){for(var t=1;t<arguments.length;t++){var n=null!=arguments[t]?arguments[t]:{};t%2?te(Object(n),!0).forEach((function(t){re(e,t,n[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(n)):te(Object(n)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(n,t))}))}return e}function re(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}function ce(e,t){return function(e){if(Array.isArray(e))return e}(e)||function(e,t){if("undefined"==typeof Symbol||!(Symbol.iterator in Object(e)))return;var n=[],r=!0,c=!1,o=void 0;try{for(var a,i=e[Symbol.iterator]();!(r=(a=i.next()).done)&&(n.push(a.value),!t||n.length!==t);r=!0);}catch(e){c=!0,o=e}finally{try{r||null==i.return||i.return()}finally{if(c)throw o}}return n}(e,t)||function(e,t){if(!e)return;if("string"==typeof e)return oe(e,t);var n=Object.prototype.toString.call(e).slice(8,-1);"Object"===n&&e.constructor&&(n=e.constructor.name);if("Map"===n||"Set"===n)return Array.from(e);if("Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n))return oe(e,t)}(e,t)||function(){throw new TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}function oe(e,t){(null==t||t>e.length)&&(t=e.length);for(var n=0,r=new Array(t);n<t;n++)r[n]=e[n];return r}var ae=function(e){return({coblocks:"CoBlocks","contact-form-7":"Contact Form 7",woocommerce:"WooCommerce",elementor:"Elementor",brizy:"Brizy",getwid:"Getwid","wpforms-lite":"WPForms - Contact Form","simply-gallery-block":"SimpLy Gallery Block & Lightbox","recipe-card-blocks-by-wpzoom":"Recipe Card Blocks by WPZOOM","stackable-ultimate-gutenberg-blocks":"Stackable – Gutenberg Blocks","mb-custom-post-type":"MB Custom Post Types & Custom Taxonomies"}[e]||e).replace(/\b\w/,(function(e){return e.toUpperCase()}))},ie=function(e){var t=e.demoConfiguration,n=e.setDemoConfiguration,c=e.style,o=Object(r.useContext)(Je),i=o.currentDemo,l=o.demos_list,u=o.pluginsStatus,s=(o.setCurrentDemo,ce((i||"").split(":"),2)),f=s[0];s[1],l.filter((function(e){return e.name===f||""}));return Object(r.createElement)("div",{style:c},Object(r.createElement)("div",{className:"ct-demo-plugins"},Object(r.createElement)("i",{className:"ct-demo-icon"},Object(r.createElement)("svg",{width:"40",height:"40",viewBox:"0 0 40 40"},Object(r.createElement)("path",{fill:"#0C7AB3",d:"M20,0v7.6c0,0.3-0.2,0.5-0.5,0.5h-1.5c0,0,0,0,0,0c0,0,0,0-0.1,0c0,0,0,0-0.1,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c-0.5-0.7-1.3-1.1-2.1-1.1c-1.5,0-2.6,1.2-2.6,2.6c0,1.5,1.2,2.6,2.6,2.6c0.8,0,1.6-0.4,2.1-1.1c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0.1,0c0,0,0,0,0.1,0c0,0,0,0,0,0h1.5c0,0,0,0,0,0c0.3,0,0.5,0.2,0.5,0.5V20h8.1v-0.8c-0.8-0.7-1.3-1.7-1.3-2.8c0-2,1.7-3.7,3.7-3.7c2,0,3.7,1.7,3.7,3.7c0,1.1-0.5,2.1-1.3,2.8V20H40C40,9,31,0,20,0z"}),Object(r.createElement)("path",{fill:"#3497D3",d:"M20,40v-7.6c0-0.3,0.2-0.5,0.5-0.5h1.5c0,0,0,0,0,0c0,0,0,0,0.1,0c0,0,0,0,0.1,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0.5,0.7,1.3,1.1,2.1,1.1c1.5,0,2.6-1.2,2.6-2.6c0-1.5-1.2-2.6-2.6-2.6c-0.8,0-1.6,0.4-2.1,1.1c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0,0,0c0,0,0,0-0.1,0c0,0,0,0-0.1,0c0,0,0,0,0,0h-1.5c0,0,0,0,0,0c-0.3,0-0.5-0.2-0.5-0.5V20h-8.1v0.8c0.8,0.7,1.3,1.7,1.3,2.8c0,2-1.7,3.7-3.7,3.7c-2,0-3.7-1.7-3.7-3.7c0-1.1,0.5-2.1,1.3-2.8V20H0C0,31,9,40,20,40z"}))),Object(r.createElement)("h2",null,Object(a.__)("Install & Activate Plugins","blc")),Object(r.createElement)("p",null,Object(a.__)("The following plugins are required for this starter site in order to work properly.","blc")),t.plugins.map((function(e){var c=e.plugin,o=e.enabled;return Object(r.createElement)(r.Fragment,{key:c},!u[c]&&Object(r.createElement)(ee,{key:c,checked:o,onChange:function(){return n(ne(ne({},t),{},{plugins:t.plugins.map((function(e){return e.plugin===c?ne(ne({},e),{},{enabled:!o}):e}))}))}},ae(c)),u[c]&&Object(r.createElement)(ee,{activated:!0,checked:!0,onChange:function(){}},ae(c)))}))))},le=function(){var e=Object(r.useContext)(Je),t=e.currentlyInstalledDemo,n=e.demos_list,c=e.setCurrentDemo,o=e.demo_error,i=e.setInstallerBlockingReleased;Object(r.useContext)(R).Link;return Object(r.createElement)("ul",null,n.filter((function(e,t){return n.map((function(e){return e.name})).indexOf(e.name)===t})).map((function(e){return Object(r.createElement)("li",{key:e.name,className:l()("ct-single-demo",{"ct-is-pro":e.is_pro})},Object(r.createElement)("figure",null,Object(r.createElement)("img",{src:e.screenshot}),Object(r.createElement)("section",null,Object(r.createElement)("h3",null,Object(a.__)("Available for","blc")),Object(r.createElement)("div",null,n.filter((function(t){return t.name===e.name||""})).sort((function(e,t){return e.builder<t.builder?-1:e.builder>t.builder?1:0})).map((function(e){var t=e.builder;return Object(r.createElement)("span",{key:t},ae(t)||"Gutenberg")})))),e.is_pro&&Object(r.createElement)("a",{onClick:function(e){return e.preventDefault()},href:"#"},"PRO")),Object(r.createElement)("div",{className:"ct-demo-actions"},Object(r.createElement)("h4",null,e.name),Object(r.createElement)("div",null,Object(r.createElement)("a",{className:"ct-button",target:"_blank",href:e.url},Object(a.__)("Preview","blc")),Object(r.createElement)("button",{className:"ct-button-primary",onClick:function(){i(!1),c(e.name)},disabled:!!o},t&&t.demo.indexOf(e.name)>-1?Object(a.__)("Modify","blc"):Object(a.__)("Import","blc")))))})))};function ue(e,t){return function(e){if(Array.isArray(e))return e}(e)||function(e,t){if("undefined"==typeof Symbol||!(Symbol.iterator in Object(e)))return;var n=[],r=!0,c=!1,o=void 0;try{for(var a,i=e[Symbol.iterator]();!(r=(a=i.next()).done)&&(n.push(a.value),!t||n.length!==t);r=!0);}catch(e){c=!0,o=e}finally{try{r||null==i.return||i.return()}finally{if(c)throw o}}return n}(e,t)||function(e,t){if(!e)return;if("string"==typeof e)return se(e,t);var n=Object.prototype.toString.call(e).slice(8,-1);"Object"===n&&e.constructor&&(n=e.constructor.name);if("Map"===n||"Set"===n)return Array.from(e);if("Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n))return se(e,t)}(e,t)||function(){throw new TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}function se(e,t){(null==t||t>e.length)&&(t=e.length);for(var n=0,r=new Array(t);n<t;n++)r[n]=e[n];return r}var fe=function(e){var t=e.style,n=e.nextStep,c=(Object(r.useContext)(R).is_child_theme,Object(r.useContext)(Je)),o=c.setCurrentlyInstalledDemo,i=c.setCurrentDemo,l=c.currentDemo,u=c.demos_list,s=ue(Object(r.useState)(0),2),f=s[0],d=s[1],m=ue(Object(r.useState)("idle"),2),b=m[0],p=m[1],h=ue((l||"").split(":"),2),v=h[0],O=(h[1],u.filter((function(e){return e.name===v}))),y={erase_content:{title:Object(a.__)("Erase content","blc"),query_string:"action=blocksy_demo_erase_content&wp_customize=on"},deactivate_demo_plugins:{title:Object(a.__)("Deactivate demo plugins","blc"),query_string:"action=blocksy_demo_deactivate_plugins&plugins=".concat(O[0].plugins.join(":"))},deregister_current_demo:{title:Object(a.__)("Erase content","blc"),query_string:"action=blocksy_demo_deregister_current_demo"}},j=["erase_content","deactivate_demo_plugins","deregister_current_demo"],g=j[f],_=function(){var e=y[g],t=new EventSource("".concat(ctDashboardLocalizations.ajax_url,"?").concat(e.query_string));t.onmessage=function(e){if("complete"===JSON.parse(e.data).action){if(t&&t.close&&t.close(),f===j.length-1)return void p("done");d(Math.min(j.length-1,f+1))}}};return Object(r.useEffect)((function(){0!==f&&"done"!==b&&_()}),[g]),Object(r.createElement)("div",{className:"ct-modify-demo",style:t},Object(r.createElement)("i",{className:"ct-demo-icon"},Object(r.createElement)("svg",{width:"36",height:"36",viewBox:"0 0 40 40"},Object(r.createElement)("path",{d:"M5.71,40a1,1,0,0,1-1-1V21.59a1,1,0,0,1,1.91,0V39.05A1,1,0,0,1,5.71,40Zm1-31.83V1.07A1,1,0,0,0,5.71,0a1,1,0,0,0-1,1.07v7.1a1,1,0,0,0,1,1.07A1,1,0,0,0,6.67,8.17ZM21,39.05V34.29a1,1,0,1,0-1.9,0v4.76a1,1,0,1,0,1.9,0Zm0-18.14V1a1,1,0,1,0-1.9,0V20.91a1,1,0,1,0,1.9,0ZM35.24,39.05V26.35a1,1,0,0,0-1.91,0v12.7a1,1,0,0,0,1.91,0Zm0-26.25V1a1,1,0,1,0-1.91,0V12.8a1,1,0,1,0,1.91,0Z",transform:"translate(-0.71)",fill:"#dae3e8"}),Object(r.createElement)("path",{d:"M5.71,18.06a5,5,0,1,1,5-5A5,5,0,0,1,5.71,18.06ZM20,30.76a5,5,0,1,1,5-5A5,5,0,0,1,20,30.76Zm14.29-7.93a5,5,0,1,1,5-5A5,5,0,0,1,34.29,22.83Z",transform:"translate(-0.71)",fill:"#0c7ab3"}))),"idle"===b&&Object(r.createElement)("h2",null,Object(a.__)("This starter site is already installed","blc")),"loading"===b&&Object(r.createElement)("h2",null,"Removing starter site..."),"done"===b&&Object(r.createElement)(r.Fragment,null,Object(r.createElement)("h2",null,Object(a.__)("Starter Site Removed","blc")),Object(r.createElement)("div",{className:"ct-modify-actions"},Object(r.createElement)("button",{className:"ct-demo-btn ct-dismiss",onClick:function(e){e.preventDefault(),i("".concat(v,":hide"))}},Object(a.__)("Dismiss","blc")))),"idle"===b&&Object(r.createElement)(r.Fragment,null,Object(r.createElement)("p",null,Object(a.__)("What steps do you want to perform next?","blc")),Object(r.createElement)("div",{className:"ct-modify-actions"},Object(r.createElement)("button",{className:"ct-demo-btn demo-remove",onClick:function(e){p("loading"),e.preventDefault(),_(),o()}},Object(a.__)("Remove","blc")),Object(r.createElement)("button",{className:"ct-demo-btn",onClick:function(e){e.preventDefault(),n()}},Object(a.__)("Reinstall","blc")))))};function de(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);t&&(r=r.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),n.push.apply(n,r)}return n}function me(e){for(var t=1;t<arguments.length;t++){var n=null!=arguments[t]?arguments[t]:{};t%2?de(Object(n),!0).forEach((function(t){be(e,t,n[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(n)):de(Object(n)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(n,t))}))}return e}function be(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}var pe=function(e){var t=e.demoConfiguration,n=e.setDemoConfiguration,c=e.style,o=Object(r.useContext)(R),i=o.is_child_theme,l=o.child_theme_exists;return Object(r.createElement)("div",{className:"ct-demo-child",style:c},Object(r.createElement)("i",{className:"ct-demo-icon"},Object(r.createElement)("svg",{width:"40",height:"40",viewBox:"0 0 43 41.1"},Object(r.createElement)("path",{fill:"#DBE7EE",d:"M0,39.5c0,0.9,0.7,1.6,1.5,1.6h32.3c0.9,0,1.5-0.7,1.5-1.6V14H0V39.5z"}),Object(r.createElement)("path",{fill:"#BDC8D7",d:"M18.2,41.1h15.6c0.9,0,1.5-0.7,1.5-1.6V14H7.6L8,32.4L18.2,41.1z"}),Object(r.createElement)("path",{fill:"#BDC8D7",d:"M0,15.6V9.8c0-0.9,0.7-1.6,1.5-1.6h32.3c0.9,0,1.5,0.7,1.5,1.6v5.8H0z"}),Object(r.createElement)("path",{fill:"#3497D3",d:"M7.6,31.3c0,0.9,0.7,1.6,1.5,1.6h32.4c0.9,0,1.5-0.7,1.5-1.6V5.8H7.6V31.3z"}),Object(r.createElement)("path",{fill:"#0C7AB3",d:"M7.6,7.4V1.6C7.6,0.7,8.3,0,9.1,0h32.4C42.4,0,43,0.7,43,1.6v5.8H7.6z"}),Object(r.createElement)("rect",{x:"11.2",y:"11",fill:"#44ACDF",width:"16.8",height:"17.9"}),Object(r.createElement)("rect",{x:"31.5",y:"11",fill:"#44ACDF",width:"7.9",height:"17.9"}))),l?Object(r.createElement)("h2",null,Object(a.__)("Activate Child Theme","blc")):Object(r.createElement)("h2",null,Object(a.__)("Install Child Theme","blc")),!i&&Object(r.createElement)(r.Fragment,null,l?Object(r.createElement)("p",null,Object(a.__)("We strongly recommend to activate the child theme, this way you will have freedom to make changes without breaking the parent theme.","blc")):Object(r.createElement)("p",null,Object(a.__)("We strongly recommend to install the child theme, this way you will have freedom to make changes without breaking the parent theme.","blc")),Object(r.createElement)(ee,{checked:t.child_theme,onChange:function(){return n(me(me({},t),{},{child_theme:!t.child_theme}))}},l?Object(a.__)("Activate Child Theme","blc"):Object(a.__)("Install Child Theme","blc"))),i&&Object(a.__)("You already have a child theme properly installed and activated. Move on.","blc"),Object(r.createElement)("a",{href:"https://developer.wordpress.org/themes/advanced-topics/child-themes/",target:"_blank"},Object(a.__)("Learn more about child themes","blc")))};function he(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);t&&(r=r.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),n.push.apply(n,r)}return n}function ve(e){for(var t=1;t<arguments.length;t++){var n=null!=arguments[t]?arguments[t]:{};t%2?he(Object(n),!0).forEach((function(t){Oe(e,t,n[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(n)):he(Object(n)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(n,t))}))}return e}function Oe(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}function ye(e,t){return function(e){if(Array.isArray(e))return e}(e)||function(e,t){if("undefined"==typeof Symbol||!(Symbol.iterator in Object(e)))return;var n=[],r=!0,c=!1,o=void 0;try{for(var a,i=e[Symbol.iterator]();!(r=(a=i.next()).done)&&(n.push(a.value),!t||n.length!==t);r=!0);}catch(e){c=!0,o=e}finally{try{r||null==i.return||i.return()}finally{if(c)throw o}}return n}(e,t)||function(e,t){if(!e)return;if("string"==typeof e)return je(e,t);var n=Object.prototype.toString.call(e).slice(8,-1);"Object"===n&&e.constructor&&(n=e.constructor.name);if("Map"===n||"Set"===n)return Array.from(e);if("Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n))return je(e,t)}(e,t)||function(){throw new TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}function je(e,t){(null==t||t>e.length)&&(t=e.length);for(var n=0,r=new Array(t);n<t;n++)r[n]=e[n];return r}var ge=function(e){var t=e.demoConfiguration,n=e.setDemoConfiguration,c=e.style,o=Object(r.useContext)(Je),i=o.currentDemo,u=o.demos_list,s=(o.pluginsStatus,o.setCurrentDemo,ye((i||"").split(":"),2)),f=s[0],d=(s[1],u.filter((function(e){return e.name===f||""})));return Object(r.createElement)("div",{style:c},d.length>1&&Object(r.createElement)("div",{className:"ct-demo-builder"},Object(r.createElement)("i",{className:"ct-demo-icon"},Object(r.createElement)("svg",{width:"52",height:"40",viewBox:"0 0 52 40"},Object(r.createElement)("path",{fill:"#DBE7EE",d:"M0,38.1C0,39.1,0.9,40,1.8,40h39.3c1.1,0,1.8-0.9,1.8-1.9v-31H0V38.1z"}),Object(r.createElement)("path",{fill:"#CFDBE4",d:"M13.8,14.6v18.8h22.6V14.6H13.8zM34.8,31.9H15.4V16.1h19.4V31.9z"}),Object(r.createElement)("path",{fill:"#BDC8D7",d:"M13.1,15.3L13.1,15.3c0-0.8,0.6-1.4,1.4-1.4l0,0c0.8,0,1.4,0.6,1.4,1.4l0,0c0,0.8-0.6,1.4-1.4,1.4l0,0C13.7,16.8,13.1,16.1,13.1,15.3z M34.1,15.3L34.1,15.3c0-0.8,0.6-1.4,1.4-1.4l0,0c0.8,0,1.4,0.6,1.4,1.4l0,0c0,0.8-0.6,1.4-1.4,1.4l0,0C34.8,16.8,34.1,16.1,34.1,15.3z M13.1,32.7L13.1,32.7c0-0.8,0.6-1.4,1.4-1.4l0,0c0.8,0,1.4,0.6,1.4,1.4l0,0c0,0.8-0.6,1.4-1.4,1.4l0,0C13.7,34.1,13.1,33.5,13.1,32.7z M34.1,32.7L34.1,32.7c0-0.8,0.6-1.4,1.4-1.4l0,0c0.8,0,1.4,0.6,1.4,1.4l0,0c0,0.8-0.6,1.4-1.4,1.4l0,0C34.8,34.1,34.1,33.5,34.1,32.7z M23.3,15.3L23.3,15.3c0-0.8,0.6-1.4,1.4-1.4l0,0c0.8,0,1.4,0.6,1.4,1.4l0,0c0,0.8-0.6,1.4-1.4,1.4l0,0C24,16.8,23.3,16.1,23.3,15.3z M4.2,13.9h5.9v7.9H4.2V13.9zM4.2,23.3h5.9v2.9H4.2V23.3zM0,9V1.9C0,0.9,0.9,0,1.8,0h39.3c1.1,0,1.8,0.9,1.8,1.9V9H0z M42.9,35.4V10.9h-9.3v15.2L42.9,35.4zM7.2,27.6c-1.6,0-3,1.3-3,3c0,1.6,1.3,3,3,3s3-1.3,3-3C10.2,28.9,8.8,27.6,7.2,27.6z"}),Object(r.createElement)("path",{fill:"#0C7AB3",d:"M50,27.8H35.6c-1.1,0-2-0.9-2-2v-18c0-1.1,0.9-2,2-2H50c1.1,0,2,0.9,2,2v18C52,26.9,51.1,27.8,50,27.8z"}),Object(r.createElement)("path",{fill:"#44ACDF",d:"M49,17.5H36.8c-0.7,0-1.2-0.5-1.2-1.2V9.1c0-0.7,0.5-1.2,1.2-1.2H49c0.7,0,1.2,0.5,1.2,1.2v7.3C50.2,17,49.6,17.5,49,17.5z M50.2,20.4v-0.1c0-0.5-0.4-1-1-1H36.5c-0.5,0-1,0.4-1,1v0.1c0,0.5,0.4,1,1,1h12.7C49.7,21.4,50.2,20.9,50.2,20.4z M40.8,25.2h-4.3c-0.5,0-1-0.4-1-1v-0.1c0-0.5,0.4-1,1-1h4.3c0.5,0,1,0.4,1,1v0.1C41.7,24.8,41.3,25.2,40.8,25.2z M49.2,25.2h-4.3c-0.5,0-1-0.4-1-1v-0.1c0-0.5,0.4-1,1-1h4.3c0.5,0,1,0.4,1,1v0.1C50.2,24.8,49.7,25.2,49.2,25.2z"}),Object(r.createElement)("path",{fill:"#C8E6F4",d:"M47.4,11.2h-9.1c-0.2,0-0.5-0.2-0.5-0.4v0c0-0.2,0.2-0.4,0.5-0.4h9.1c0.2,0,0.5,0.2,0.5,0.4v0C47.8,11,47.6,11.2,47.4,11.2z M47.9,14.7L47.9,14.7c0-0.2-0.2-0.5-0.5-0.5h-9.1c-0.2,0-0.4,0.2-0.4,0.4v0c0,0.2,0.2,0.4,0.4,0.4h9.1C47.7,15.1,47.9,14.9,47.9,14.7z"}),Object(r.createElement)("path",{fill:"#FFFFFF",d:"M26.3,20.8h-2.9l-2.9,7.9H23l0.3-0.7h2.8l0.3,0.7h2.7L26.3,20.8z M23.9,25.8l0.8-2.2h0l0.8,2.2H23.9zM46.5,10.7c0,0.8-0.7,1.5-1.5,1.5s-1.5-0.7-1.5-1.5c0-0.8,0.7-1.5,1.5-1.5S46.5,9.9,46.5,10.7zM42.1,14.7c0,0.8-0.7,1.5-1.5,1.5s-1.5-0.7-1.5-1.5s0.7-1.5,1.5-1.5S42.1,13.9,42.1,14.7z"}))),Object(r.createElement)("h2",null,Object(a.__)("Choose Page Builder","blc")),Object(r.createElement)("p",null,Object(a.__)("This starter site can be imported and used with one of these page builders. Please select your prefered one in order to continue.","blc")),Object(r.createElement)("ul",{"data-count":d.length},d.sort((function(e,t){return e.builder<t.builder?-1:e.builder>t.builder?1:0})).map((function(e){var c=e.builder,o=e.plugins;return Object(r.createElement)("li",{className:l()({active:c===(null===t.builder?d[0].builder:t.builder)}),onClick:function(){return n(ve(ve({},t),{},{builder:c,plugins:o.map((function(e){return{plugin:e,enabled:!0}}))}))}},Object(r.createElement)("figure",null,Object(r.createElement)("span",{className:l()("ct-checkbox",{active:c===(null===t.builder?d[0].builder:t.builder)})},Object(r.createElement)("svg",{width:"10",height:"8",viewBox:"0 0 11.2 9.1"},Object(r.createElement)("polyline",{className:"check",points:"1.2,4.8 4.4,7.9 9.9,1.2 "}))),""===c&&Object(r.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 150 100"},Object(r.createElement)("path",{d:"M122.5 35.5c-1.7-1.1-4-.7-5.1 1C110.8 46.4 96.8 47 96 47h-.3c-17.4 0-24 14.8-24.3 15.4-.8 1.9.1 4 1.9 4.8.5.2 1 .3 1.5.3 1.4 0 2.7-.8 3.4-2.2.1-.1 4.6-10.3 16.3-11v19c-.5 4.1-2.4 7.3-5.8 9.7-3.6 2.5-8.3 3.8-14.1 3.8-7 0-12.7-2.4-16.9-7.2-4.3-4.8-6.4-11.5-6.4-20.2l.1-20.9c.3-7.7 2.4-13.8 6.4-18.2 4.3-4.8 9.9-7.2 16.9-7.2 5.8 0 10.6 1.3 14.1 3.8 3.6 2.5 5.6 5.9 5.9 10.3v.5c0 2.5 2.1 4.6 4.6 4.6 2.5 0 4.6-2.1 4.6-4.6v-.5c-.7-6.6-3.7-11.9-9.1-15.8-5.4-4-12.2-5.9-20.4-5.9-9.7 0-17.6 3.2-23.5 9.6-5.6 6-8.6 13.8-8.9 23.5 0 .7-.1 1.3-.1 2l.1 18.8h-.1c0 10.7 3 19.2 9 25.5 6 6.4 13.8 9.6 23.5 9.6 8.2 0 14.9-1.9 20.4-5.9 5-3.6 7.9-8.4 8.9-14.3l.2-21c6.1-1.5 14.4-4.8 19.6-12.7 1.3-1.7.8-4-1-5.1z"})),"brizy"===c&&Object(r.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 150 100"},Object(r.createElement)("path",{d:"M14.6 36.7L75 0l60.4 36.7L75 73.4 14.6 36.7zm21.7.9L75 61.2l38.8-23.6L75 14 36.3 37.6z",fill:"#181c25"}),Object(r.createElement)("path",{fill:"#a7b2dd",d:"M14.6 63.2l10.8-6.5L75 86.8l49.9-30 10.5 6.4L75 100z"})),"elementor"===c&&Object(r.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 150 100"},Object(r.createElement)("path",{d:"M32.5 7.6h17v84.9h-17V7.6zm34 84.9h51v-17h-51v17zm0-34h51v-17h-51v17zm0-51v17h51v-17h-51z"}))),Object(r.createElement)("div",{className:"builder-name"},ae(c)||"Gutenberg"))})))))};function _e(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);t&&(r=r.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),n.push.apply(n,r)}return n}function Ee(e){for(var t=1;t<arguments.length;t++){var n=null!=arguments[t]?arguments[t]:{};t%2?_e(Object(n),!0).forEach((function(t){we(e,t,n[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(n)):_e(Object(n)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(n,t))}))}return e}function we(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}var xe=function(e){var t=e.demoConfiguration,n=e.setDemoConfiguration,c=(e.currentDemo,e.style);return Object(r.createElement)("div",{style:c},Object(r.createElement)("i",{className:"ct-demo-icon"},Object(r.createElement)("svg",{width:"40",height:"40",viewBox:"0 0 40 40"},Object(r.createElement)("path",{d:"M25,22.67a5,5,0,0,1-10,0H0V36a3.33,3.33,0,0,0,3.33,3.33H36.67A3.33,3.33,0,0,0,40,36V22.67Z",transform:"translate(0 -0.67)",fill:"#bdc8d7"}),Object(r.createElement)("rect",{x:"2.5",y:"14",width:"35",height:"3",rx:"1.5",fill:"#0c7ab3"}),Object(r.createElement)("rect",{x:"5",y:"7",width:"30",height:"3",rx:"1.5",fill:"#3497d3"}),Object(r.createElement)("rect",{x:"7.5",width:"25",height:"3",rx:"1.5",fill:"#44acdf"}))),Object(r.createElement)("h2",null,Object(a.__)("Import Content","blc")),Object(r.createElement)("p",null,Object(a.__)("This will import posts, pages, comments, navigation menus, custom fields, terms and custom posts","blc")),["options","widgets","content"].map((function(e){return Object(r.createElement)(ee,{checked:t.content[e],onChange:function(){return n(Ee(Ee({},t),{},{content:Ee(Ee({},t.content),{},we({},e,!t.content[e]))}))},key:e},e.split("_").map((function(e){return e.replace(/^\w/,(function(e){return e.toUpperCase()}))})).join(" "))})),Object(r.createElement)("div",{className:"ct-demo-erase"},Object(r.createElement)(ee,{checked:t.content.erase_content,onChange:function(){return n(Ee(Ee({},t),{},{content:Ee(Ee({},t.content),{},{erase_content:!t.content.erase_content})}))}},Object(r.createElement)("div",null,Object(a.__)("Clean Install","blc"),Object(r.createElement)("i",null,Object(a.__)("This option will remove the previous imported content and will perform a fresh and clean install.","blc"))))))},Se=function(){var e=Object(r.useContext)(R),t=e.home_url,n=e.customizer_url;return Object(r.createElement)("div",{className:"ct-install-success"},Object(r.createElement)("h2",null,Object(a.__)("Starter Site Imported Successfully","blc")),Object(r.createElement)("p",null,Object(a.__)("Now you can view your website or start customizing it","blc")),Object(r.createElement)("div",null,Object(r.createElement)("a",{href:n,className:"ct-button"},Object(a.__)("Customize","blc")),Object(r.createElement)("a",{href:t,target:"_blank",className:"ct-button-primary"},Object(a.__)("View site","blc"))))},ke=function(e,t){var n=e.action;if("complete"===n)return"";if("import_install_child"===n)return Object(a.__)("copying child theme sources","blc");if("import_activate_child"===n)return Object(a.__)("activating child theme","blc");if("install_plugin"===n)return Object(a.sprintf)(Object(a.__)("installing plugin %s","blc"),ae(e.name)||e.name);if("activate_plugin"===n)return Object(a.sprintf)(Object(a.__)("activating plugin %s","blc"),ae(e.name)||e.name);if("download_demo_widgets"===n)return Object(a.__)("downloading demo widgets","blc");if("apply_demo_widgets"===n)return Object(a.__)("installing demo widgets","blc");if("download_demo_options"===n)return Object(a.__)("downloading demo options","blc");if("import_mods_images"===n)return Object(a.__)("importing images from customizer","blc");if("import_customizer_options"===n)return Object(a.__)("import customizer options","blc");if("activate_required_extensions"===n)return Object(a.__)("activating required extensions","blc");if("erase_previous_posts"===n)return Object(a.__)("removing previously installed posts","blc");if("erase_previous_terms"===n)return Object(a.__)("removing previously installed taxonomies","blc");if("erase_default_pages"===n)return Object(a.__)("removing default WordPress pages","blc");if("erase_customizer_settings"===n)return Object(a.__)("resetting customizer options","blc");if("erase_widgets_data"===n)return Object(a.__)("resetting widgets","blc");if("content_installer_progress"===n){if(!e.kind)return"";var r=t.content.preliminary_data["".concat(e.kind,"_count")],c=t.content["".concat(e.kind,"_count")];return"".concat(Math.min(c,r)," of ").concat(r," ").concat({users:Object(a.__)("users","blc"),term:Object(a.__)("terms","blc"),media:Object(a.__)("images","blc"),post:Object(a.__)("posts","blc"),comment:Object(a.__)("comments","blc")}[e.kind])}return""};function Ce(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);t&&(r=r.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),n.push.apply(n,r)}return n}function De(e){for(var t=1;t<arguments.length;t++){var n=null!=arguments[t]?arguments[t]:{};t%2?Ce(Object(n),!0).forEach((function(t){Pe(e,t,n[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(n)):Ce(Object(n)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(n,t))}))}return e}function Pe(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}function Ae(e,t){return function(e){if(Array.isArray(e))return e}(e)||function(e,t){if("undefined"==typeof Symbol||!(Symbol.iterator in Object(e)))return;var n=[],r=!0,c=!1,o=void 0;try{for(var a,i=e[Symbol.iterator]();!(r=(a=i.next()).done)&&(n.push(a.value),!t||n.length!==t);r=!0);}catch(e){c=!0,o=e}finally{try{r||null==i.return||i.return()}finally{if(c)throw o}}return n}(e,t)||function(e,t){if(!e)return;if("string"==typeof e)return Ne(e,t);var n=Object.prototype.toString.call(e).slice(8,-1);"Object"===n&&e.constructor&&(n=e.constructor.name);if("Map"===n||"Set"===n)return Array.from(e);if("Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n))return Ne(e,t)}(e,t)||function(){throw new TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}function Ne(e,t){(null==t||t>e.length)&&(t=e.length);for(var n=0,r=new Array(t);n<t;n++)r[n]=e[n];return r}var Me=function(e){e.preventDefault(),e.returnValue=""},Le=function(e){var t=e.demoConfiguration,n=e.pluginsStatus,r=e.is_child_theme,c=e.includeMetaSteps,o=[];return void 0!==c&&c&&o.push("register_current_demo"),t.child_theme&&(r||o.push("child_theme")),t.plugins.filter((function(e){var t=e.enabled,r=e.plugin;return!!t&&!n[r]})).length>0&&o.push("plugins"),t.content.erase_content&&o.push("erase_content"),t.content.options&&o.push("options"),t.content.widgets&&o.push("widgets"),t.content.content&&o.push("content"),o.push("install_finish"),o},ze=function(e){var t=e.demoConfiguration,n=e.style,c=function(e){var t=Object(r.useContext)(Je),n=t.demos_list,c=t.currentDemo,o=(t.setCurrentDemo,t.setInstallerBlockingReleased),i=t.setCurrentlyInstalledDemo,l=t.pluginsStatus,u=Object(r.useContext)(R),s=(u.home_url,u.customizer_url,u.is_child_theme),f=(u.Link,Ae(Object(r.useState)(!1),2)),d=f[0],m=f[1],b=Ae(Object(r.useState)(0),2),p=b[0],h=b[1],v=Ae((c||"").split(":"),2),O=v[0],y=(v[1],n.filter((function(e){return e.name===O})).sort((function(e,t){return e.builder<t.builder?-1:e.builder>t.builder?1:0}))),j=e.plugins.filter((function(e){var t=e.enabled,n=e.plugin;return t&&!l[n]})).map((function(e){return e.plugin})),g=Ae(Object(r.useState)({register_current_demo:{title:Object(a.__)("Register demo","blc"),query_string:"action=blocksy_demo_register_current_demo&wp_customize=on&demo_name=".concat(c,":").concat(null===e.builder?y[0].builder:e.builder),expected_signals:1},child_theme:{title:Object(a.__)("Child theme","blc"),query_string:"action=blocksy_demo_install_child_theme",expected_signals:3},plugins:{title:Object(a.__)("Required plugins","blc"),query_string:"action=blocksy_demo_activate_plugins&plugins=".concat(j.join(":")),expected_signals:2*j.length+1},fake_step:{title:Object(a.__)("Fake Required plugins","blc"),query_string:"action=blocksy_demo_fake_step",expected_signals:6},erase_content:{title:Object(a.__)("Erase content","blc"),query_string:"action=blocksy_demo_erase_content&wp_customize=on",expected_signals:6},install_finish:{title:Object(a.__)("Final touches","blc"),query_string:"action=blocksy_demo_install_finish&wp_customize=on",expected_signals:1},options:{title:Object(a.__)("Import options","blc"),query_string:"action=blocksy_demo_install_options&wp_customize=on&demo_name=".concat(c,":").concat(null===e.builder?y[0].builder:e.builder),expected_signals:5},widgets:{title:Object(a.__)("Import widgets","blc"),query_string:"action=blocksy_demo_install_widgets&wp_customize=on&demo_name=".concat(c,":").concat(null===e.builder?y[0].builder:e.builder),expected_signals:3},content:{title:Object(a.__)("Import content","blc"),query_string:"action=blocksy_demo_install_content&wp_customize=on&demo_name=".concat(c,":").concat(null===e.builder?y[0].builder:e.builder),expected_signals:50}}),2),_=g[0],E=g[1],w=Le({demoConfiguration:e,pluginsStatus:l,is_child_theme:s,includeMetaSteps:!0}),x=w[p],S=Ae(Object(r.useState)(0),2),k=S[0],C=S[1],D=Ae(Object(r.useState)(null),2),P=D[0],A=D[1],N=Object(r.useRef)(k),M=Object(r.useRef)(_);Object(r.useEffect)((function(){N.current=k,M.current=_}));var L=function(e){return"content"===e?1===w.length?100:50:w.indexOf("content")>-1?50/(w.length-1):100/w.length},z=w.reduce((function(e,t,n){return n>=p?e:e+L(t)}),0)+100*k/_[x].expected_signals*(L(x)/100),T=function(){var e=_[x],t=new EventSource("".concat(ctDashboardLocalizations.ajax_url,"?").concat(e.query_string));t.onmessage=function(e){var n=JSON.parse(e.data);if(C(N.current+1),"content_installer_progress"===n.action){var r=n.kind;r&&(A(n),E(De(De({},M.current),{},{content:De(De({},M.current.content),{},Pe({},"".concat(r,"_count"),M.current.content["".concat(r,"_count")]+1))})))}else A(n);if("get_content_preliminary_data"===n.action){var c=n.data,a=(c.comment_count,c.media_count,c.post_count,c.term_count,c.users,De(De({},n.data),{},{term_count:n.data.terms.length,post_count:n.data.posts.filter((function(e){return"attachment"!==e.post_type})).length,media_count:n.data.posts.filter((function(e){return"attachment"===e.post_type})).length,comment_count:n.data.posts.reduce((function(e,t){return e+(t.comments||[]).length}),0),users_count:Object.keys(n.data.authors).length}));E(De(De({},M.current),{},{content:De(De({},M.current.content),{},{preliminary_data:a,comment_count:0,media_count:0,post_count:0,term_count:0,users_count:0,expected_signals:a.comment_count+a.media_count+a.post_count+a.term_count+a.users_count+3})}))}if("complete"===n.action){if(t&&t.close&&t.close(),p===w.length-1)return m(!0),o(!0),void window.removeEventListener("beforeunload",Me);A(null),C(0),h(Math.min(w.length-1,p+1))}}};return Object(r.useEffect)((function(){d||(A(null),C(0),"fake_step"===x?(console.log("here we go delay before fake_step"),setTimeout((function(){T()}),2e3)):T())}),[x]),Object(r.useEffect)((function(){return window.addEventListener("beforeunload",Me),i({demo:"".concat(c,":").concat(e.builder)}),function(){window.removeEventListener("beforeunload",Me)}}),[]),{isCompleted:d,stepName:x,stepsDescriptors:_,lastMessage:P,progress:z}}(t),o=c.isCompleted,i=c.stepName,l=c.stepsDescriptors,u=c.lastMessage,s=c.progress;return Object(r.createElement)("div",{className:"ct-demo-install",style:n},Object(r.createElement)(A.Transition,{initial:!0,items:o,from:{opacity:0},enter:[{opacity:1}],leave:[{opacity:0}],config:function(e,t){return"leave"===t?{duration:300}:{delay:300,duration:300}}},(function(e){return function(t){return Object(r.createElement)("div",{style:t},e?Object(r.createElement)(Se,null):Object(r.createElement)(r.Fragment,null,Object(r.createElement)("i",{className:"ct-demo-icon"},Object(r.createElement)("svg",{width:"40",height:"40",viewBox:"0 0 50 50"},Object(r.createElement)("path",{class:"g1",d:"M47,38.8c0.3-1,0.5-2,0.5-3.1c0-1.1-0.2-2.1-0.5-3.1l0.2-0.1l1.8-1.7l-1.8-3.1l-2.3,0.7l-0.2,0.1c-1.4-1.5-3.3-2.7-5.4-3.1V25l-0.6-2.4h-3.5L34.5,25v0.3c-2.1,0.5-4,1.6-5.4,3.1l-0.2-0.1l-2.3-0.7l-1.8,3.1l1.7,1.7l0.2,0.1c-0.3,1-0.5,2-0.5,3.1c0,1.1,0.2,2.1,0.5,3.1l-0.2,0.1l-1.8,1.7l1.8,3.1l2.3-0.7l0.2-0.1c1.4,1.5,3.3,2.7,5.4,3.1v0.3l0.6,2.4h3.5l0.6-2.4V46c2.1-0.5,4-1.6,5.4-3.1l0.2,0.1l2.3,0.7l1.8-3.1l-1.7-1.7L47,38.8z M36.9,41.5c-3.3,0-5.9-2.6-5.9-5.9s2.6-5.9,5.9-5.9s5.9,2.6,5.9,5.9S40.1,41.5,36.9,41.5z"}),Object(r.createElement)("path",{class:"g2",d:"M21.2,32.2c0.2-0.8,0.4-1.7,0.4-2.5c0-0.9-0.1-1.7-0.4-2.5l0.3-0.2l1.7-1.7l-1.8-3.1L19.1,23l-0.3,0.2c-1.2-1.2-2.7-2.1-4.4-2.5v-0.3l-0.6-2.4h-3.5l-0.6,2.4v0.3c-1.7,0.4-3.2,1.3-4.4,2.5L5.1,23l-2.3-0.7L1,25.4L2.7,27L3,27.2c-0.2,0.8-0.4,1.7-0.4,2.5c0,0.9,0.1,1.7,0.4,2.5l-0.3,0.1L1,34.1l1.8,3.1l2.3-0.7l0.3-0.1c1.2,1.2,2.7,2.1,4.4,2.5v0.3l0.6,2.4h3.5l0.6-2.4v-0.3c1.7-0.4,3.2-1.3,4.4-2.5l0.3,0.1l2.3,0.7l1.8-3.1l-1.7-1.7L21.2,32.2z M12.1,34.4c-2.6,0-4.7-2.1-4.7-4.7S9.5,25,12.1,25s4.7,2.1,4.7,4.7S14.7,34.4,12.1,34.4z"}),Object(r.createElement)("path",{class:"g3",d:"M37.7,15.7c0.2-0.8,0.4-1.7,0.4-2.5c0-0.9-0.1-1.7-0.4-2.5l0.3-0.2l1.7-1.7l-1.8-3.1l-2.3,0.7l-0.3,0.2c-1.2-1.2-2.7-2.1-4.4-2.5V3.8l-0.6-2.4h-3.5l-0.6,2.4v0.3c-1.7,0.4-3.2,1.3-4.4,2.5l-0.3-0.2l-2.3-0.7l-1.8,3.1l1.7,1.7l0.3,0.2c-0.2,0.8-0.4,1.7-0.4,2.5c0,0.9,0.1,1.7,0.4,2.5l-0.3,0.1l-1.7,1.7l1.8,3.1l2.3-0.7l0.3-0.1c1.2,1.2,2.7,2.1,4.4,2.5v0.3l0.6,2.4h3.5l0.6-2.4v-0.3c1.7-0.4,3.2-1.3,4.4-2.5l0.3,0.1l2.3,0.7l1.8-3.1L38,15.9L37.7,15.7z M28.6,17.9c-2.6,0-4.7-2.1-4.7-4.7s2.1-4.7,4.7-4.7s4.7,2.1,4.7,4.7S31.2,17.9,28.6,17.9z"}))),Object(r.createElement)("h2",null,Object(a.__)("Installing","blc"),"..."),Object(r.createElement)("p",null,Object(a.__)("Please be patient and don't refresh this page, the import process may take a while, this also depends on your server.","blc")),Object(r.createElement)("div",{className:"ct-progress-info"},l[i].title,u&&ke(u,l)?": ".concat(ke(u,l)):"",Object(r.createElement)("span",null,Math.round(s),"%")),Object(r.createElement)("div",{style:{"--progress":"".concat(s,"%")},className:"ct-installer-progress"},Object(r.createElement)("div",null))))}})))};function Te(e){return function(e){if(Array.isArray(e))return Fe(e)}(e)||function(e){if("undefined"!=typeof Symbol&&Symbol.iterator in Object(e))return Array.from(e)}(e)||Re(e)||function(){throw new TypeError("Invalid attempt to spread non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}function Ie(e,t){return function(e){if(Array.isArray(e))return e}(e)||function(e,t){if("undefined"==typeof Symbol||!(Symbol.iterator in Object(e)))return;var n=[],r=!0,c=!1,o=void 0;try{for(var a,i=e[Symbol.iterator]();!(r=(a=i.next()).done)&&(n.push(a.value),!t||n.length!==t);r=!0);}catch(e){c=!0,o=e}finally{try{r||null==i.return||i.return()}finally{if(c)throw o}}return n}(e,t)||Re(e,t)||function(){throw new TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}function Re(e,t){if(e){if("string"==typeof e)return Fe(e,t);var n=Object.prototype.toString.call(e).slice(8,-1);return"Object"===n&&e.constructor&&(n=e.constructor.name),"Map"===n||"Set"===n?Array.from(e):"Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)?Fe(e,t):void 0}}function Fe(e,t){(null==t||t>e.length)&&(t=e.length);for(var n=0,r=new Array(t);n<t;n++)r[n]=e[n];return r}var Be=function(e){e.location,e.navigate;var t=Ie(Object(r.useState)(!0),2),n=(t[0],t[1],Object(r.useContext)(Je)),c=n.installerBlockingReleased,o=n.demos_list,i=n.currentDemo,u=n.pluginsStatus,s=n.currentlyInstalledDemo,f=n.setCurrentDemo,d=Object(r.useContext)(R).is_child_theme,m=Ie(Object(r.useState)(s),2),b=m[0],p=m[1],h=Ie(Object(r.useState)({builder:"",child_theme:!1,plugins:[],content:{options:!0,widgets:!0,content:!0,erase_content:!0}}),2),v=h[0],O=h[1],y=Ie(Object(r.useState)(0),2),j=y[0],g=y[1],_=Ie((i||"").split(":"),2),E=_[0],w=(_[1],["modify_demo","child_theme","builder","plugins","content","installer"].filter((function(e){if(!i)return!1;if("modify_demo"===e){if(!b)return!1;if(-1===b.demo.indexOf(E))return!1}if("child_theme"===e&&d)return!1;var t=o.filter((function(e){return e.name===E})).sort((function(e,t){return e.builder<t.builder?-1:e.builder>t.builder?1:0}));return("plugins"!==e||0!==t.reduce((function(e,t){return[].concat(Te(e),Te(t.plugins||[]))}),[]).filter((function(e){return!u[e]})).length)&&("builder"!==e||t.length>1)}))),x=w[j];return Object(r.useEffect)((function(){if(E&&!(i.indexOf(":hide")>-1)){var e=o.filter((function(e){return e.name===E})).sort((function(e,t){return e.builder<t.builder?-1:e.builder>t.builder?1:0}));g(0),p(s),O({builder:1===e.length?e[0].builder:null,child_theme:!0,plugins:e[0].plugins.map((function(e){return{plugin:e,enabled:!0}})),content:{options:!0,widgets:!0,content:!0,erase_content:!0}})}}),[i]),Object(r.createElement)(M,{items:i,isVisible:function(e){return e&&-1===e.indexOf(":hide")},className:l()("ct-demo-modal",{"ct-demo-installer":"installer"===x||"modify_demo"===x}),onDismiss:function(){("installer"!==x||c)&&f("".concat(E,":hide"))},render:function(){return Object(r.createElement)("div",{className:"ct-modal-content ct-demo-step-container"},Object(r.createElement)("div",{className:"ct-current-step"},Object(r.createElement)(A.Transition,{items:x,from:{opacity:0},enter:{opacity:1},leave:{opacity:0},initial:!1,config:function(e,t){return"leave"===t?{duration:150}:{delay:150,duration:150}}},(function(e){return function(t){return Object(r.createElement)(r.Fragment,null,"modify_demo"===e&&Object(r.createElement)(fe,{demoConfiguration:v,nextStep:function(){g(Math.min(j+1,w.length-1))},style:t}),"child_theme"===e&&Object(r.createElement)(pe,{style:t,demoConfiguration:v,setDemoConfiguration:O}),"plugins"===e&&Object(r.createElement)(ie,{demoConfiguration:v,style:t,setDemoConfiguration:O}),"builder"===e&&Object(r.createElement)(ge,{style:t,demoConfiguration:v,setDemoConfiguration:O}),"content"===e&&Object(r.createElement)(xe,{style:t,demoConfiguration:v,setDemoConfiguration:O}),"installer"===e&&Object(r.createElement)(ze,{style:t,demoConfiguration:v}))}}))),"installer"!==x&&"modify_demo"!==x&&Object(r.createElement)("div",{className:"ct-demo-step-controls"},j>0&&Object(r.createElement)("button",{className:"ct-demo-btn demo-back-btn",onClick:function(){g(Math.max(j-1,0))}},Object(a.__)("Back","blc")),w.length>2&&Object(r.createElement)("ul",{className:"ct-steps-pills"},w.map((function(e,t){return t===w.length-1?null:Object(r.createElement)("li",{className:l()({active:e===x}),key:e},t+1)}))),Object(r.createElement)("button",{className:"ct-demo-btn demo-main-btn",disabled:"content"===x&&0===Le({demoConfiguration:v,pluginsStatus:u,is_child_theme:d}).length,onClick:function(){g(Math.min(j+1,w.length-1))}},"content"===x?Object(a.__)("Install","blc"):Object(a.__)("Next","blc"))))}})},Ue=n(7),Ve=n.n(Ue);function He(e,t,n,r,c,o,a){try{var i=e[o](a),l=i.value}catch(e){return void n(e)}i.done?t(l):Promise.resolve(l).then(r,c)}function qe(e,t){return function(e){if(Array.isArray(e))return e}(e)||function(e,t){if("undefined"==typeof Symbol||!(Symbol.iterator in Object(e)))return;var n=[],r=!0,c=!1,o=void 0;try{for(var a,i=e[Symbol.iterator]();!(r=(a=i.next()).done)&&(n.push(a.value),!t||n.length!==t);r=!0);}catch(e){c=!0,o=e}finally{try{r||null==i.return||i.return()}finally{if(c)throw o}}return n}(e,t)||function(e,t){if(!e)return;if("string"==typeof e)return We(e,t);var n=Object.prototype.toString.call(e).slice(8,-1);"Object"===n&&e.constructor&&(n=e.constructor.name);if("Map"===n||"Set"===n)return Array.from(e);if("Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n))return We(e,t)}(e,t)||function(){throw new TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}function We(e,t){(null==t||t>e.length)&&(t=e.length);for(var n=0,r=new Array(t);n<t;n++)r[n]=e[n];return r}var Ze=function(){var e=qe(Object(r.useState)(!1),2),t=e[0],n=e[1],c=qe(Object(r.useState)(!1),2),o=c[0],i=c[1],l=qe(Object(r.useState)(""),2),u=l[0],s=l[1],f=qe(Object(r.useState)(""),2),d=f[0],m=f[1],b=qe(Object(r.useState)("coblocks,elementor,contact-form-7"),2),p=b[0],h=b[1],v=qe(Object(r.useState)(""),2),O=v[0],y=v[1],j=qe(Object(r.useState)(!1),2),g=j[0],_=j[1],E=function(){var e,t=(e=regeneratorRuntime.mark((function e(){var t,r,c,o,a,i;return regeneratorRuntime.wrap((function(e){for(;;)switch(e.prev=e.next){case 0:return n(!0),(t=new FormData).append("action","blocksy_demo_export"),t.append("name",u),t.append("is_pro",g),t.append("url",O),t.append("builder",d),t.append("plugins",p),t.append("wp_customize","on"),e.prev=9,e.next=12,fetch(ctDashboardLocalizations.ajax_url,{method:"POST",body:t});case 12:if(200!==(r=e.sent).status){e.next=20;break}return e.next=16,r.json();case 16:c=e.sent,o=c.success,a=c.data,o&&(i=new Blob([JSON.stringify(a.demo)],{type:"text/plain;charset=utf-8"}),Ve.a.saveAs(i,"".concat(u,".json")));case 20:e.next=24;break;case 22:e.prev=22,e.t0=e.catch(9);case 24:n(!1);case 25:case"end":return e.stop()}}),e,null,[[9,22]])})),function(){var t=this,n=arguments;return new Promise((function(r,c){var o=e.apply(t,n);function a(e){He(o,r,c,a,i,"next",e)}function i(e){He(o,r,c,a,i,"throw",e)}a(void 0)}))});return function(){return t.apply(this,arguments)}}();return ct_localizations.is_dev_mode?Object(r.createElement)("div",{className:"ct-export"},Object(r.createElement)("button",{className:"ct-button",onClick:function(e){i(!0)}},Object(a.__)("Site export")),Object(r.createElement)(M,{items:o,className:"ct-site-export-modal",onDismiss:function(){return i(!1)},render:function(){return Object(r.createElement)("div",{className:"ct-site-export"},Object(r.createElement)("label",null,Object(a.__)("Name","blc"),Object(r.createElement)("input",{type:"text",placeholder:Object(a.__)("Name","blc"),value:u,onChange:function(e){var t=e.target.value;return s(t)}})),Object(r.createElement)("label",null,Object(a.__)("Preview URL","blc"),Object(r.createElement)("input",{type:"text",placeholder:Object(a.__)("Preview URL","blc"),value:O,onChange:function(e){var t=e.target.value;return y(t)}})),Object(r.createElement)("label",null,Object(a.__)("PRO","blc"),Object(r.createElement)("input",{type:"checkbox",value:g,onChange:function(e){e.target.value;return _(!g)}})),Object(r.createElement)("label",null,Object(a.__)("Builder","blc"),Object(r.createElement)("input",{type:"text",placeholder:Object(a.__)("Builder","blc"),value:d,onChange:function(e){var t=e.target.value;return m(t)}})),Object(r.createElement)("label",null,Object(a.__)("Plugins","blc"),Object(r.createElement)("textarea",{placeholder:Object(a.__)("Plugins","blc"),value:p,onChange:function(e){var t=e.target.value;return h(t)}})),Object(r.createElement)("button",{className:"ct-button",disabled:t,onClick:function(){return E()}},t?Object(a.__)("Loading...","blc"):Object(a.__)("Export site","blc")))}})):null};function $e(e,t,n,r,c,o,a){try{var i=e[o](a),l=i.value}catch(e){return void n(e)}i.done?t(l):Promise.resolve(l).then(r,c)}function Ge(e,t){return function(e){if(Array.isArray(e))return e}(e)||function(e,t){if("undefined"==typeof Symbol||!(Symbol.iterator in Object(e)))return;var n=[],r=!0,c=!1,o=void 0;try{for(var a,i=e[Symbol.iterator]();!(r=(a=i.next()).done)&&(n.push(a.value),!t||n.length!==t);r=!0);}catch(e){c=!0,o=e}finally{try{r||null==i.return||i.return()}finally{if(c)throw o}}return n}(e,t)||function(e,t){if(!e)return;if("string"==typeof e)return Ke(e,t);var n=Object.prototype.toString.call(e).slice(8,-1);"Object"===n&&e.constructor&&(n=e.constructor.name);if("Map"===n||"Set"===n)return Array.from(e);if("Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n))return Ke(e,t)}(e,t)||function(){throw new TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}function Ke(e,t){(null==t||t>e.length)&&(t=e.length);for(var n=0,r=new Array(t);n<t;n++)r[n]=e[n];return r}var Je=Object(r.createContext)({demos:[]}),Ye=null,Xe=null,Qe=function(e){e.children,e.path,e.location;var t=Ge(Object(r.useState)(!Ye),2),n=t[0],c=t[1],o=Ge(Object(r.useState)(Ye||[]),2),i=o[0],l=o[1],u=Ge(Object(r.useState)(Xe||{}),2),s=u[0],f=u[1],d=Ge(Object(r.useState)(null),2),m=d[0],b=d[1],p=Ge(Object(r.useState)(null),2),h=p[0],v=p[1],O=Ge(Object(r.useState)(!1),2),y=O[0],j=O[1],g=Ge(Object(r.useState)({builder:""}),2),_=(g[0],g[1],Ge(Object(r.useState)(!1),2)),E=_[0],w=_[1],x=function(){var e,t=(e=regeneratorRuntime.mark((function e(){var t,n,r,o,a,i=arguments;return regeneratorRuntime.wrap((function(e){for(;;)switch(e.prev=e.next){case 0:return i.length>0&&void 0!==i[0]&&i[0]&&c(!0),(t=new FormData).append("action","blocksy_demo_list"),e.prev=4,e.next=7,fetch(ctDashboardLocalizations.ajax_url,{method:"POST",body:t});case 7:if(200!==(n=e.sent).status){e.next=15;break}return e.next=11,n.json();case 11:r=e.sent,o=r.success,a=r.data,o&&(l(a.demos),f(a.active_plugins),v(a.current_installed_demo),j(a.demo_error),Xe=a.active_plugins,Ye=a.demos,a.demo_error);case 15:e.next=19;break;case 17:e.prev=17,e.t0=e.catch(4);case 19:c(!1);case 20:case"end":return e.stop()}}),e,null,[[4,17]])})),function(){var t=this,n=arguments;return new Promise((function(r,c){var o=e.apply(t,n);function a(e){$e(o,r,c,a,i,"next",e)}function i(e){$e(o,r,c,a,i,"throw",e)}a(void 0)}))});return function(){return t.apply(this,arguments)}}();return Object(r.useEffect)((function(){x(!Ye)}),[]),Object(r.createElement)("div",{className:"ct-demos-list-container"},y&&Object(r.createElement)("div",{className:"ct-demo-notification",dangerouslySetInnerHTML:{__html:y}}),Object(r.createElement)(A.Transition,{items:n,from:{opacity:0},enter:[{opacity:1}],leave:[{opacity:0}],config:function(e,t){return"leave"===t?{duration:300}:{delay:300,duration:300}}},(function(e){return e?function(e){return Object(r.createElement)(A.animated.p,{style:e,className:"ct-loading-text"},Object(r.createElement)("span",null),Object(a.__)("Loading Starter Sites...","blc"))}:0===i.length?function(e){return Object(r.createElement)(A.animated.div,{style:e},Object(r.createElement)("div",{className:"ct-demo-notification",dangerouslySetInnerHTML:{__html:Object(a.__)("The connection to our <b>demo.creativethemes.com</b> server didn't worked. This connection is required for importing the starter sites from our demo content server. All you have to do is to contact your hosting provider and ask them to white list our demo server address.")}}),Object(r.createElement)(q,null))}:function(e){return Object(r.createElement)(A.animated.div,{style:e},Object(r.createElement)(r.Fragment,null,Object(r.createElement)(Je.Provider,{value:{demo_error:y,demos_list:i.filter((function(e){return!e.dev||ct_localizations.is_dev_mode})),currentDemo:m,pluginsStatus:s,installerBlockingReleased:E,setInstallerBlockingReleased:w,setCurrentDemo:b,currentlyInstalledDemo:h,setCurrentlyInstalledDemo:v}},Object(r.createElement)(le,null),Object(r.createElement)(Be,null),Object(r.createElement)(Ze,null)),Object(r.createElement)(q,null)))}})))};function et(e,t,n,r,c,o,a){try{var i=e[o](a),l=i.value}catch(e){return void n(e)}i.done?t(l):Promise.resolve(l).then(r,c)}var tt=function(){var e=function(){var e,t=(e=regeneratorRuntime.mark((function e(){var t,n,r,c,o,a;return regeneratorRuntime.wrap((function(e){for(;;)switch(e.prev=e.next){case 0:return(t=new FormData).append("action","blocksy_fs_connect_again"),e.prev=2,e.next=5,fetch(ctDashboardLocalizations.ajax_url,{method:"POST",body:t});case 5:if(200!==(n=e.sent).status){e.next=13;break}return e.next=9,n.json();case 9:r=e.sent,c=r.success,r.data,c&&((o=document.createElement("div")).innerHTML=ctDashboardLocalizations.plugin_data.connect_template,a=o.querySelector("form"),document.body.appendChild(a),a.submit());case 13:e.next=17;break;case 15:e.prev=15,e.t0=e.catch(2);case 17:case"end":return e.stop()}}),e,null,[[2,15]])})),function(){var t=this,n=arguments;return new Promise((function(r,c){var o=e.apply(t,n);function a(e){et(o,r,c,a,i,"next",e)}function i(e){et(o,r,c,a,i,"throw",e)}a(void 0)}))});return function(){return t.apply(this,arguments)}}();return Object(r.createElement)("div",{className:"ct-freemius-optin-message"},Object(r.createElement)("i",null,Object(r.createElement)("svg",{width:"20",height:"20",viewBox:"0 0 24 24",fill:"currentColor",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"},Object(r.createElement)("path",{d:"M18 8A6 6 0 0 0 6 8c0 7-3 9-3 9h18s-3-2-3-9"}),Object(r.createElement)("path",{d:"M13.73 21a2 2 0 0 1-3.46 0"}))),Object(r.createElement)("h2",null,Object(a.__)("Stay Updated","blc")),Object(r.createElement)("p",null,Object(a.__)("Never miss an important update - opt in to our security & feature updates notifications, and non-sensitive diagnostic tracking.","blc")),Object(r.createElement)("button",{className:"ct-button-primary",onClick:function(t){t.preventDefault(),e()}},Object(a.__)("Allow & Continue","blc")))};o.a.on("ct:dashboard:routes",(function(e){e.push({Component:function(){return Object(r.createElement)(Q,null)},path:"/extensions"}),"yes"===ctDashboardLocalizations.plugin_data.has_demo_install&&e.push({Component:function(e){return Object(r.createElement)(Qe,e)},path:"/demos"})})),o.a.on("ct:dashboard:navigation-links",(function(e){"yes"===ctDashboardLocalizations.plugin_data.has_demo_install&&e.push({text:Object(a.__)("Starter Sites","blc"),path:"demos",getProps:function(e){var t=e.isPartiallyCurrent;e.isCurrent;return t?{"aria-current":"page"}:{}}}),e.push({text:Object(a.__)("Extensions","blc"),path:"/extensions"})})),o.a.on("ct:dashboard:home:before",(function(e){ctDashboardLocalizations.plugin_data.is_anonymous&&(e.content=Object(r.createElement)(tt,null))})),o.a.on("ct:dashboard:heading:after",(function(e){ctDashboardLocalizations.plugin_data.is_pro&&(e.content=Object(r.createElement)("span",null,"PRO"))}))}]);
|
static/bundle/dashboard.min.css
CHANGED
|
@@ -1,8 +1,8 @@
|
|
| 1 |
/**
|
| 2 |
-
* - v1.8.
|
| 3 |
*
|
| 4 |
* Copyright (c) 2021
|
| 5 |
* Licensed GPLv2+
|
| 6 |
*/
|
| 7 |
|
| 8 |
-
.ct-mailchimp-modal{--modal-min-height: 300px}.ct-newsletter-select-provider{padding-top:1.5em;border-top:1px dashed #eee}.ct-newsletter-select-provider p{margin-top:1em;font-style:italic}.mailchimp-credentials{display:grid;grid-template-columns:1fr 1fr 1fr;grid-column-gap:10px;margin-top:1.5em;padding-top:1.5em;border-top:1px dashed #eee}.mailchimp-credentials section{display:flex;flex-direction:column;min-width:0}.mailchimp-credentials label{display:block;font-size:12px;margin-bottom:3px;opacity:0.7}.mailchimp-credentials input{--height: 35px}.ct-extensions-sourse{display:flex;justify-content:center;margin:0 0 40px 0}.ct-extensions-sourse li{display:flex;align-items:center;height:38px;font-weight:500;padding:0 30px;margin:0;cursor:pointer;border:1px solid rgba(226,230,235,0.7)}.ct-extensions-sourse li.active{color:#fff;background:var(--accentColor);border-color:var(--accentColor)}.ct-extensions-sourse li:hover:not(.active){color:var(--accentColor)}.ct-extensions-sourse li:first-child{border-right:0;border-radius:4px 0 0 4px}.ct-extensions-sourse li:last-child{border-left:0;border-radius:0 4px 4px 0}.ct-config-btn{margin-right:auto;margin-left:10px}.ct-config-btn:before{font-family:dashicons;content:"\f111";font-size:14px;margin-right:5px;opacity:0.9}.ct-minimal-button{display:flex;align-items:center;justify-content:center;width:32px;height:32px;-webkit-appearance:none;-moz-appearance:none;appearance:none;border:none;padding:0;color:inherit;cursor:pointer;color:#c9cfd6;background:transparent;transition:color 0.2s ease}.ct-minimal-button:hover{color:#9ca9b9}.ct-minimal-button:focus{outline:none}.ct-minimal-button svg{fill:currentColor}.ct-option-info{display:flex;align-items:center;justify-content:center;font-style:normal;line-height:normal;margin-left:auto}.ct-option-info:before{font-family:dashicons;content:"\f348";font-size:16px;line-height:16px}.ct-demos-list-container ul{display:grid;grid-column-gap:30px;grid-row-gap:30px;margin:0;padding:0;list-style:none}@media (min-width: 783px){.ct-demos-list-container ul{grid-template-columns:repeat(2, 1fr)}}.ct-demos-list-container ul li{margin:0;box-sizing:border-box;box-shadow:0 2px 5px rgba(143,163,184,0.12)}.ct-demos-list-container ul li figure{position:relative;margin:0;overflow:hidden;border-radius:3px 3px 0 0}.ct-demos-list-container ul li figure:before{content:'';display:block;width:100%;padding-bottom:75%}.ct-demos-list-container ul li figure img{position:absolute;top:0;left:0;width:100%;height:100%}.ct-demos-list-container ul li figure section{position:absolute;display:flex;flex-direction:column;align-items:center;justify-content:center;top:0;left:0;right:0;bottom:0;opacity:0;background:rgba(36,41,45,0.9);transition:opacity 0.2s ease}.ct-demos-list-container ul li figure section h3{font-size:15px;color:#fff !important;margin:0 0 25px 0}.ct-demos-list-container ul li figure section div{display:flex}.ct-demos-list-container ul li figure section span{padding:8px 12px;display:block;font-size:17px;font-weight:500;color:#fff;border-radius:3px;border:2px solid rgba(255,255,255,0.5);background:rgba(36,41,45,0.4)}.ct-demos-list-container ul li figure section span:not(:last-child){margin-right:15px}.ct-demos-list-container ul li:hover figure>section{opacity:1}.ct-demos-list-container ul li.ct-is-pro figure{position:relative}.ct-demos-list-container ul li.ct-is-pro figure a{position:absolute;z-index:1;content:'PRO';top:0;right:0;font-size:13px;font-weight:700;letter-spacing:.03em;color:#a1680d;text-decoration:none;padding:5px 15px;margin:25px;background:#ffc568;border-radius:3px;box-shadow:0 5px 8px 0 rgba(234,157,33,0.3)}.ct-demo-actions{display:flex;align-items:center;padding:20px 25px;border-radius:0 0 3px 3px;border:1px solid rgba(226,230,235,0.7);background:rgba(235,237,241,0.2)}@media (max-width: 549px){.ct-demo-actions{flex-direction:column}}@media (min-width: 550px){.ct-demo-actions{justify-content:space-between}}.ct-demo-actions h4{margin:0}@media (max-width: 549px){.ct-demo-actions h4{margin-bottom:20px}}.ct-demo-actions .ct-button{margin-right:15px}.ct-demo-actions button[disabled]{opacity:0.3;-webkit-user-select:none;-ms-user-select:none;user-select:none;pointer-events:none}.ct-demo-modal{--modal-width: 500px;height:100%;transition:max-height 0.2s ease}.ct-demo-modal:not(.ct-demo-installer){--modal-max-height: 620px}.ct-demo-modal.ct-demo-installer{--modal-max-height: 380px}.ct-demo-step-container{height:100%;display:flex;flex-direction:column;color:#687c93;text-align:center}.ct-demo-step-container>*:first-child{flex:1;position:relative}.ct-demo-step-container>*:first-child>*{position:absolute;top:0;left:0;right:0;bottom:0}.ct-demo-step-container .ct-demo-icon{display:flex;align-items:center;justify-content:center;width:85px;height:85px;margin:10px auto 20px auto;background:#f3f6f8;border-radius:100%}.ct-demo-step-container h2{text-align:center;font-size:17px;font-weight:600;color:#3e5667;margin-top:0}.ct-demo-step-controls{position:relative;width:100%;height:40px}.ct-demo-step-controls button{position:absolute;z-index:2;top:0}.ct-demo-step-controls button.demo-back-btn{left:0}.ct-demo-step-controls button.demo-main-btn{right:0}.ct-steps-pills{display:flex;align-items:center;justify-content:center;position:absolute;z-index:1;top:0;left:0;right:0;bottom:0;width:200px;margin:0;padding:0;list-style:none;margin:0 auto}.ct-steps-pills li{display:flex;align-items:center;justify-content:center;width:30px;height:30px;margin:0;font-size:0}.ct-steps-pills li:before{content:'';width:12px;height:12px;border-radius:100%;box-shadow:inset 0 0 0 2px rgba(104,124,147,0.8);transition:box-shadow 0.2s ease, transform 0.2s ease}.ct-steps-pills li:not(.active):before{transform:scale3d(0.5, 0.5, 1);box-shadow:inset 0 0 0 10px rgba(104,124,147,0.8)}.ct-demo-child .ct-checkbox-container{max-width:250px;margin:25px auto 0 auto;padding-left:15px;padding-right:15px;border-radius:4px;border:1px solid rgba(179,189,201,0.3)}.ct-demo-child a{display:block;color:#687c93;font-weight:500;text-decoration:none;margin-top:25px}.ct-demo-child a:hover{color:#0073aa}.ct-demo-builder .ct-demo-icon svg{margin-left:10px}.ct-demo-builder ul{display:grid;margin:0;padding:0;list-style:none;margin:40px auto 0 auto}.ct-demo-builder ul[data-count="2"]{max-width:70%;grid-template-columns:repeat(2, 1fr);grid-column-gap:30px}.ct-demo-builder ul[data-count="3"]{grid-template-columns:repeat(3, 1fr);grid-column-gap:20px}.ct-demo-builder ul li{margin-bottom:0;cursor:pointer}.ct-demo-builder ul li figure{position:relative;display:flex;align-items:center;justify-content:center;min-height:100px;border:2px solid #e9ecee;border-radius:5px;margin:0;font-weight:500;transition:border-color 0.12s cubic-bezier(0.455, 0.03, 0.515, 0.955),box-shadow 0.12s cubic-bezier(0.455, 0.03, 0.515, 0.955)}.ct-demo-builder ul li figure>svg{width:47%}.ct-demo-builder ul li .builder-name{font-weight:500;color:#3e5667;margin-top:15px}.ct-demo-builder ul li:hover figure{border-color:var(--accentColor)}.ct-demo-builder ul li.active figure{border-color:var(--accentColor);box-shadow:0 0 0 1px var(--accentColor)}.ct-demo-builder ul li .ct-checkbox{--checkMarkColor: #fff;--background: rgba(179, 189, 201, 0.8);--backgroundActive: var(--accentColor);position:absolute;top:0px;right:0px}.ct-demo-builder ul li .ct-checkbox:before{width:22px !important;height:22px !important;border-radius:0px 3px 0px 5px}.ct-demo-builder ul li .ct-checkbox:not(.active):before{opacity:0}.ct-demo-plugins label{margin:0 auto}.ct-active-plugin{display:flex;align-items:center;position:relative;text-align:left;padding:10px 0}.ct-active-plugin span{display:flex;align-items:center;justify-content:center;position:absolute;right:-2px;width:22px;height:22px;border-radius:100%;box-sizing:border-box;background:rgba(179,189,201,0.3)}.ct-active-plugin span:before,.ct-active-plugin span:after{position:absolute;content:'';width:2px;border-radius:2px;background:rgba(104,124,147,0.6)}.ct-active-plugin span:before{top:10px;left:10px;height:5px;transform:rotate(-45deg);transform-origin:bottom center}.ct-active-plugin span:after{height:9px;left:9px;transform:rotate(40deg);transform-origin:bottom center}.ct-demo-erase{margin-top:10px;padding-top:10px;padding-bottom:20px;text-align:left;font-weight:600;border-top:1px dashed rgba(179,189,201,0.5);border-bottom:1px dashed rgba(179,189,201,0.5)}.ct-demo-erase .ct-checkbox-container{align-items:flex-start;padding-bottom:0}.ct-demo-erase i{display:block;width:90%;font-size:13px;margin-top:8px;opacity:0.8;font-weight:400;font-style:normal}.ct-export{text-align:center;margin-top:50px}.ct-site-export{display:flex;flex-direction:column;padding:30px}.ct-site-export label{display:flex;justify-content:space-between;padding:10px 0}.ct-site-export input[type="checkbox"]{margin:0}.ct-site-export textarea,.ct-site-export input[type="text"]{width:60%}.ct-site-export textarea{min-height:80px}.ct-site-export button{margin-top:20px}.ct-demo-installer .close-button{opacity:0 !important}.ct-demo-install{position:relative}.ct-demo-install>*{position:absolute;top:0;left:0;right:0;bottom:0}.ct-demo-install svg path{transform-origin:50% 50%;transform-box:fill-box;animation-name:spin;animation-iteration-count:infinite;animation-timing-function:linear}.ct-demo-install .g1{fill:#44ACDF;animation-duration:5.5s;animation-direction:reverse}.ct-demo-install .g2{fill:#3497D3;animation-duration:4.5s}.ct-demo-install .g3{fill:#0C7AB3;animation-duration:4s}.ct-installer-progress{width:100%;border-radius:5px;background:#f3f6f8;box-sizing:border-box}.ct-installer-progress div{width:var(--progress);height:4px;border-radius:inherit;background:var(--accentColor);transition:width 0.3s ease}.ct-progress-info{display:flex;justify-content:space-between;margin-top:30px;margin-bottom:15px;font-size:13px;opacity:0.8}@keyframes spin{from{transform:rotate(0deg)}to{transform:rotate(360deg)}}.ct-install-success{display:flex;flex-direction:column;align-items:center;justify-content:center;height:100%}.ct-install-success div{margin-top:10px}.ct-install-success a:first-child{margin-right:15px}.ct-modify-actions{margin-top:50px}.ct-modify-actions>*:not(:last-child){margin-right:15px}.ct-modify-actions .demo-remove{--ct-buttonHoverColor: #e04f4f}#ct-dashboard .ct-demo-notification{position:relative;padding:15px 20px 15px 55px;margin-bottom:40px;color:#0072aa;line-height:1.5;border:2px solid rgba(0,114,170,0.3);background:rgba(0,114,170,0.1);border-radius:5px}#ct-dashboard .ct-demo-notification:before{font-family:dashicons;content:"\f534";font-size:20px;position:absolute;top:13px;left:20px;color:rgba(0,114,170,0.8)}#ct-dashboard .ct-demo-notification b{font-weight:700}.ct-demos-list{display:flex;flex-direction:column}.ct-demos-list .ct-single-demo img{max-width:100px}.ct-demo-btn{font-size:15px;font-weight:600;letter-spacing:0.03em;color:#687c93;height:40px;border:none;cursor:pointer;padding:0 18px;border-radius:4px;background:#f3f6f8;transition:background 0.2s ease color 0.2s ease}.ct-demo-btn:focus{outline:none}.ct-demo-btn:hover{color:#fff;background:var(--ct-buttonHoverColor, var(--accentColor))}.ct-onboarding-modal{--modal-width: 500px;--modal-min-height: 360px;text-align:center}.ct-onboarding-modal .close-button{display:none}.ct-onboarding-modal svg{width:55px;height:55px;margin:0 auto 25px auto}.ct-onboarding-modal h2{color:#3e5667}.ct-onboarding-modal button{--buttonHeight: 42px;--buttonPadding: 20px;--buttonFontSize: 14px}.ct-beta-consent{margin-top:60px;border-radius:3px;text-align:center;color:#fff}@media (max-width: 782px){.ct-beta-consent{padding:10%}}@media (min-width: 783px){.ct-beta-consent{padding:50px}}.ct-beta-consent h2{display:flex;align-items:center;justify-content:center;color:#fff !important;margin-top:0;cursor:pointer}.ct-beta-consent h2 span{display:flex;font-size:15px;font-weight:500;cursor:pointer}.ct-beta-consent h2 .ct-option-switch{margin-left:15px}.ct-beta-consent h2 .ct-option-switch:not(.ct-active){border-color:#fff}.ct-beta-consent h2 .ct-option-switch:not(.ct-active)>span{background:#fff}.ct-beta-consent h2 .ct-option-switch:not(.ct-active):after{border-color:#fff}.ct-beta-consent+.ct-support-container{margin-top:50px !important}.ct-beta-consent{background-color:#32373c;background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 304 304' width='304' height='304'%3E%3Cpath fill='%234f5660' fill-opacity='0.2' d='M44.1 224a5 5 0 1 1 0 2H0v-2h44.1zm160 48a5 5 0 1 1 0 2H82v-2h122.1zm57.8-46a5 5 0 1 1 0-2H304v2h-42.1zm0 16a5 5 0 1 1 0-2H304v2h-42.1zm6.2-114a5 5 0 1 1 0 2h-86.2a5 5 0 1 1 0-2h86.2zm-256-48a5 5 0 1 1 0 2H0v-2h12.1zm185.8 34a5 5 0 1 1 0-2h86.2a5 5 0 1 1 0 2h-86.2zM258 12.1a5 5 0 1 1-2 0V0h2v12.1zm-64 208a5 5 0 1 1-2 0v-54.2a5 5 0 1 1 2 0v54.2zm48-198.2V80h62v2h-64V21.9a5 5 0 1 1 2 0zm16 16V64h46v2h-48V37.9a5 5 0 1 1 2 0zm-128 96V208h16v12.1a5 5 0 1 1-2 0V210h-16v-76.1a5 5 0 1 1 2 0zm-5.9-21.9a5 5 0 1 1 0 2H114v48H85.9a5 5 0 1 1 0-2H112v-48h12.1zm-6.2 130a5 5 0 1 1 0-2H176v-74.1a5 5 0 1 1 2 0V242h-60.1zm-16-64a5 5 0 1 1 0-2H114v48h10.1a5 5 0 1 1 0 2H112v-48h-10.1zM66 284.1a5 5 0 1 1-2 0V274H50v30h-2v-32h18v12.1zM236.1 176a5 5 0 1 1 0 2H226v94h48v32h-2v-30h-48v-98h12.1zm25.8-30a5 5 0 1 1 0-2H274v44.1a5 5 0 1 1-2 0V146h-10.1zm-64 96a5 5 0 1 1 0-2H208v-80h16v-14h-42.1a5 5 0 1 1 0-2H226v18h-16v80h-12.1zm86.2-210a5 5 0 1 1 0 2H272V0h2v32h10.1zM98 101.9V146H53.9a5 5 0 1 1 0-2H96v-42.1a5 5 0 1 1 2 0zM53.9 34a5 5 0 1 1 0-2H80V0h2v34H53.9zm60.1 3.9V66H82v64H69.9a5 5 0 1 1 0-2H80V64h32V37.9a5 5 0 1 1 2 0zM101.9 82a5 5 0 1 1 0-2H128V37.9a5 5 0 1 1 2 0V82h-28.1zm16-64a5 5 0 1 1 0-2H146v44.1a5 5 0 1 1-2 0V18h-26.1zm102.2 270a5 5 0 1 1 0 2H98v14h-2v-16h124.1zM242 149.9V160h16v34h-16v62h48v48h-2v-46h-48v-66h16v-30h-16v-12.1a5 5 0 1 1 2 0zM53.9 18a5 5 0 1 1 0-2H64V2H48V0h18v18H53.9zm112 32a5 5 0 1 1 0-2H192V0h50v2h-48v48h-28.1zm-48-48a5 5 0 0 1-9.8-2h2.07a3 3 0 1 0 5.66 0H178v34h-18V21.9a5 5 0 1 1 2 0V32h14V2h-58.1zm0 96a5 5 0 1 1 0-2H137l32-32h39V21.9a5 5 0 1 1 2 0V66h-40.17l-32 32H117.9zm28.1 90.1a5 5 0 1 1-2 0v-76.51L175.59 80H224V21.9a5 5 0 1 1 2 0V82h-49.59L146 112.41v75.69zm16 32a5 5 0 1 1-2 0v-99.51L184.59 96H300.1a5 5 0 0 1 3.9-3.9v2.07a3 3 0 0 0 0 5.66v2.07a5 5 0 0 1-3.9-3.9H185.41L162 121.41v98.69zm-144-64a5 5 0 1 1-2 0v-3.51l48-48V48h32V0h2v50H66v55.41l-48 48v2.69zM50 53.9v43.51l-48 48V208h26.1a5 5 0 1 1 0 2H0v-65.41l48-48V53.9a5 5 0 1 1 2 0zm-16 16V89.41l-34 34v-2.82l32-32V69.9a5 5 0 1 1 2 0zM12.1 32a5 5 0 1 1 0 2H9.41L0 43.41V40.6L8.59 32h3.51zm265.8 18a5 5 0 1 1 0-2h18.69l7.41-7.41v2.82L297.41 50H277.9zm-16 160a5 5 0 1 1 0-2H288v-71.41l16-16v2.82l-14 14V210h-28.1zm-208 32a5 5 0 1 1 0-2H64v-22.59L40.59 194H21.9a5 5 0 1 1 0-2H41.41L66 216.59V242H53.9zm150.2 14a5 5 0 1 1 0 2H96v-56.6L56.6 162H37.9a5 5 0 1 1 0-2h19.5L98 200.6V256h106.1zm-150.2 2a5 5 0 1 1 0-2H80v-46.59L48.59 178H21.9a5 5 0 1 1 0-2H49.41L82 208.59V258H53.9zM34 39.8v1.61L9.41 66H0v-2h8.59L32 40.59V0h2v39.8zM2 300.1a5 5 0 0 1 3.9 3.9H3.83A3 3 0 0 0 0 302.17V256h18v48h-2v-46H2v42.1zM34 241v63h-2v-62H0v-2h34v1zM17 18H0v-2h16V0h2v18h-1zm273-2h14v2h-16V0h2v16zm-32 273v15h-2v-14h-14v14h-2v-16h18v1zM0 92.1A5.02 5.02 0 0 1 6 97a5 5 0 0 1-6 4.9v-2.07a3 3 0 1 0 0-5.66V92.1zM80 272h2v32h-2v-32zm37.9 32h-2.07a3 3 0 0 0-5.66 0h-2.07a5 5 0 0 1 9.8 0zM5.9 0A5.02 5.02 0 0 1 0 5.9V3.83A3 3 0 0 0 3.83 0H5.9zm294.2 0h2.07A3 3 0 0 0 304 3.83V5.9a5 5 0 0 1-3.9-5.9zm3.9 300.1v2.07a3 3 0 0 0-1.83 1.83h-2.07a5 5 0 0 1 3.9-3.9zM97 100a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm0-16a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm16 16a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm16 16a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm0 16a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm-48 32a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm16 16a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm32 48a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm-16 16a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm32-16a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm0-32a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm16 32a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm32 16a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm0-16a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm-16-64a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm16 0a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm16 96a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm0 16a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm16 16a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm16-144a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm0 32a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm16-32a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm16-16a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm-96 0a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm0 16a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm16-32a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm96 0a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm-16-64a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm16-16a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm-32 0a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm0-16a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm-16 0a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm-16 0a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm-16 0a3 3 0 1 0 0-6 3 3 0 0 0 0 6zM49 36a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm-32 0a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm32 16a3 3 0 1 0 0-6 3 3 0 0 0 0 6zM33 68a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm16-48a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm0 240a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm16 32a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm-16-64a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm0 16a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm-16-32a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm80-176a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm16 0a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm-16-16a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm32 48a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm16-16a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm0-32a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm112 176a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm-16 16a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm0 16a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm0 16a3 3 0 1 0 0-6 3 3 0 0 0 0 6zM17 180a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm0 16a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm0-32a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm16 0a3 3 0 1 0 0-6 3 3 0 0 0 0 6zM17 84a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm32 64a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm16-16a3 3 0 1 0 0-6 3 3 0 0 0 0 6z'%3E%3C/path%3E%3C/svg%3E");background-size:250px;background-position:0 5px}.ct-beta-updates-consent{--modal-width: 450px;--modal-min-height: 330px;--modal-padding: 45px;text-align:center}.ct-beta-updates-consent .ct-modal-content p{margin-bottom:1.2em}.ct-freemius-optin-message{position:relative;text-align:center;border-radius:3px;background:#f5f7f9}@media (max-width: 782px){.ct-freemius-optin-message{padding:50px 10% 10% 10%}}@media (min-width: 783px){.ct-freemius-optin-message{padding:60px 50px 50px 50px}}.ct-freemius-optin-message h2{margin-top:0}.ct-freemius-optin-message i{display:flex;align-items:center;justify-content:center;position:absolute;top:-25px;left:0;right:0;margin:0 auto;width:50px;height:50px;background:#fff;border-radius:100%;color:#0591c9;border:2px solid #DEECF3}.ct-freemius-optin-message i svg{animation:ring-shake 5s ease-in-out infinite;transform-origin:50% 0%}.ct-freemius-optin-message p{max-width:600px;margin:0 auto 20px auto !important}.ct-freemius-optin-message .ct-button-primary{--buttonHeight: 42px;--buttonPadding: 20px;--buttonFontSize: 14px}.ct-freemius-optin-message+.ct-first-steps-container{margin-top:55px;padding-top:50px;border-top:1px solid rgba(143,163,184,0.15)}@keyframes ring-shake{0%{transform:rotate(-15deg)}2%{transform:rotate(15deg)}4%{transform:rotate(-18deg)}6%{transform:rotate(18deg)}8%{transform:rotate(-22deg)}10%{transform:rotate(22deg)}12%{transform:rotate(-18deg)}14%{transform:rotate(18deg)}16%{transform:rotate(-12deg)}18%{transform:rotate(12deg)}20%{transform:rotate(0deg)}100%{transform:rotate(0deg)}}.blocksy-fs-optin-dashboard #wpwrap,.blocksy-fs-optin-dashboard #wpcontent,.blocksy-fs-optin-dashboard #wpbody{height:100%;min-height:100%}.blocksy-fs-optin-dashboard #wpbody-content{height:100%;padding-bottom:0}.blocksy-fs-optin-dashboard #wpbody-content #screen-meta,.blocksy-fs-optin-dashboard #wpbody-content .clear{display:none}.blocksy-fs-optin-dashboard .toplevel_page_ct-dashboard.current:after{border-right-color:#f2cf88 !important}.blocksy-fs-optin-wrapper{display:grid;grid-template-columns:repeat(2, 1fr);height:100%}.blocksy-fs-optin-wrapper>*{display:flex;flex-direction:column;justify-content:center;padding:9%;box-sizing:border-box}.blocksy-fs-optin-wrapper .ct-optin-svg{background:#F2CF88}.blocksy-fs-optin-wrapper .ct-optin-svg svg{max-width:750px;margin:0 auto}.blocksy-fs-optin-wrapper #fs_connect{width:100%;max-width:900px;margin:0;box-shadow:none}.blocksy-fs-optin-wrapper #fs_connect .fs-visual{display:none}.blocksy-fs-optin-wrapper #fs_connect .fs-content{padding:0;margin-bottom:30px}.blocksy-fs-optin-wrapper #fs_connect .fs-content>p span{display:block;font-size:25px;font-weight:700;color:#23282d;margin-bottom:20px}.blocksy-fs-optin-wrapper #fs_connect .fs-actions{display:flex;padding:0;margin-bottom:20px;background:transparent}.blocksy-fs-optin-wrapper #fs_connect .fs-actions .button{height:49px;line-height:49px;padding:0 20px !important}.blocksy-fs-optin-wrapper #fs_connect .fs-actions .button-primary{margin-right:15px}.blocksy-fs-optin-wrapper #fs_connect .fs-actions #skip_activation{order:2;float:none;background:transparent;border-color:transparent}.blocksy-fs-optin-wrapper #fs_connect .fs-actions #skip_activation:hover{border-color:#0071a1}.blocksy-fs-optin-wrapper #fs_connect .fs-permissions{padding:0 0 30px 0}.blocksy-fs-optin-wrapper #fs_connect .fs-permissions .fs-trigger{text-align:left;text-decoration:underline}.blocksy-fs-optin-wrapper #fs_connect .fs-permissions .fs-trigger:focus{outline:none;box-shadow:none}.blocksy-fs-optin-wrapper #fs_connect .fs-permissions ul{display:none}.blocksy-fs-optin-wrapper #fs_connect .fs-permissions ul li{margin-bottom:0}.blocksy-fs-optin-wrapper #fs_connect .fs-permissions ul li i.dashicons{font-size:18px;width:18px;height:18px;margin-right:8px;color:#23282d}.blocksy-fs-optin-wrapper #fs_connect .fs-permissions ul li div{margin-left:0}.blocksy-fs-optin-wrapper #fs_connect .fs-permissions ul li div span{text-transform:capitalize}.blocksy-fs-optin-wrapper #fs_connect .fs-permissions ul li div p{margin-top:8px;font-size:12px;opacity:0.7}.blocksy-fs-optin-wrapper #fs_connect .fs-permissions ul li:nth-child(1){order:1}.blocksy-fs-optin-wrapper #fs_connect .fs-permissions ul li:nth-child(2){order:4}.blocksy-fs-optin-wrapper #fs_connect .fs-permissions ul li:nth-child(3){order:3}.blocksy-fs-optin-wrapper #fs_connect .fs-permissions ul li:nth-child(4){order:2}.blocksy-fs-optin-wrapper #fs_connect .fs-permissions.fs-open ul{display:grid;grid-template-columns:repeat(2, minmax(auto, 280px));grid-column-gap:30px;grid-row-gap:30px;margin:20px 0 0 0;padding-top:30px;border-top:1px dashed #ddd}.blocksy-fs-optin-wrapper #fs_connect .fs-permissions .fs-switch{width:25px;height:16px;top:1px;right:20px;padding:0;box-shadow:none;box-sizing:border-box;transition:all 0.1s linear;border:2px solid #555d66}.blocksy-fs-optin-wrapper #fs_connect .fs-permissions .fs-switch .fs-toggle{box-sizing:border-box;border:none;top:1px;width:10px;height:10px;box-shadow:none;transition:all 0.1s linear}.blocksy-fs-optin-wrapper #fs_connect .fs-permissions .fs-switch.fs-off{background:transparent}.blocksy-fs-optin-wrapper #fs_connect .fs-permissions .fs-switch.fs-off .fs-toggle{left:1px;background:#555d66}.blocksy-fs-optin-wrapper #fs_connect .fs-permissions .fs-switch.fs-on{border-color:#0085ba}.blocksy-fs-optin-wrapper #fs_connect .fs-permissions .fs-switch.fs-on .fs-toggle{left:10px}.blocksy-fs-optin-wrapper #fs_connect .fs-terms{display:none}.blocksy-fs-optin-dashboard #fs_connect.require-license-key .fs-license-key-container{width:100%;margin:30px 0 0 0}.blocksy-fs-optin-dashboard #fs_connect.require-license-key .fs-license-key-container input[type=text]{min-height:49px;padding:0 12px;line-height:initial}.blocksy-fs-optin-dashboard #fs_connect.require-license-key .fs-license-key-container .dashicons{top:17px;right:10px;font-size:16px;height:16px;width:16px}.blocksy-fs-optin-dashboard #fs_connect.require-license-key .fs-license-key-container .show-license-resend-modal{font-size:0.9em;margin-top:10px}.blocksy-fs-optin-dashboard #fs_connect.require-license-key .fs-actions{flex-wrap:wrap}.blocksy-fs-optin-dashboard #fs_connect.require-license-key .fs-actions form{width:100%}.blocksy-fs-optin-dashboard #fs_connect.require-license-key .fs-actions #license_issues_link{flex:1 1 auto;text-align:left}.blocksy-fs-optin-dashboard #fs_connect.require-license-key .fs-permissions p{text-align:left}.blocksy-fs-optin-dashboard #fs_connect.require-license-key .fs-permissions p:last-of-type{margin-bottom:0}.blocksy-fs-optin-dashboard #fs_connect #fs_marketing_optin{border:none;padding:30px 0;margin:30px 0 0 0;box-shadow:none;border-top:1px dashed #ddd;border-bottom:1px dashed #ddd}.blocksy-fs-optin-dashboard #fs_connect #fs_marketing_optin.error{background:transparent}.blocksy-fs-optin-dashboard #fs_connect #fs_marketing_optin .fs-input-label{margin-left:22px}.blocksy-fs-optin-dashboard #fs_connect .fs-freemium-licensing{border-top:1px dashed #ddd;padding:30px 0;background:transparent}.blocksy-fs-optin-dashboard #fs_connect .fs-freemium-licensing p{text-align:left;color:#444}.blocksy-fs-optin-dashboard #fs_connect .fs-freemium-licensing p a{color:#0073aa}
|
| 1 |
/**
|
| 2 |
+
* - v1.8.8
|
| 3 |
*
|
| 4 |
* Copyright (c) 2021
|
| 5 |
* Licensed GPLv2+
|
| 6 |
*/
|
| 7 |
|
| 8 |
+
.ct-mailchimp-modal{--modal-min-height: 300px}.ct-newsletter-select-provider{padding-top:1.5em;border-top:1px dashed #eee}.ct-newsletter-select-provider p{margin-top:1em;font-style:italic}.mailchimp-credentials{display:grid;grid-template-columns:1fr 1fr 1fr;grid-column-gap:10px;margin-top:1.5em;padding-top:1.5em;border-top:1px dashed #eee}.mailchimp-credentials section{display:flex;flex-direction:column;min-width:0}.mailchimp-credentials label{display:block;font-size:12px;margin-bottom:3px;opacity:0.7}.mailchimp-credentials input{--height: 35px}.ct-extensions-sourse{display:flex;justify-content:center;margin:0 0 40px 0}.ct-extensions-sourse li{display:flex;align-items:center;height:38px;font-weight:500;padding:0 30px;margin:0;cursor:pointer;border:1px solid rgba(226,230,235,0.7)}.ct-extensions-sourse li.active{color:#fff;background:var(--accentColor);border-color:var(--accentColor)}.ct-extensions-sourse li:hover:not(.active){color:var(--accentColor)}.ct-extensions-sourse li:first-child{-webkit-border-end:0;border-inline-end:0;border-radius:4px 0 0 4px}.ct-extensions-sourse li:last-child{-webkit-border-start:0;border-inline-start:0;border-radius:0 4px 4px 0}.ct-config-btn{-webkit-margin-end:auto;margin-inline-end:auto;-webkit-margin-start:10px;margin-inline-start:10px}.ct-config-btn:before{font-family:dashicons;content:"\f111";font-size:14px;margin-right:5px;opacity:0.9}.ct-minimal-button{display:flex;align-items:center;justify-content:center;width:32px;height:32px;-webkit-appearance:none;-moz-appearance:none;appearance:none;border:none;padding:0;color:inherit;cursor:pointer;color:#c9cfd6;background:transparent;transition:color 0.2s ease}.ct-minimal-button:hover{color:#9ca9b9}.ct-minimal-button:focus{outline:none}.ct-minimal-button svg{fill:currentColor}.ct-option-info{display:flex;align-items:center;justify-content:center;font-style:normal;line-height:normal;margin-left:auto}.ct-option-info:before{font-family:dashicons;content:"\f348";font-size:16px;line-height:16px}.ct-demos-list-container ul{display:grid;grid-column-gap:30px;grid-row-gap:30px;margin:0;padding:0;list-style:none}@media (min-width: 783px){.ct-demos-list-container ul{grid-template-columns:repeat(3, 1fr)}}.ct-demos-list-container ul li{margin:0;box-sizing:border-box;box-shadow:0 2px 5px rgba(143,163,184,0.12)}.ct-demos-list-container ul li figure{position:relative;margin:0;overflow:hidden;border-radius:3px 3px 0 0}.ct-demos-list-container ul li figure:before{content:'';display:block;width:100%;padding-bottom:75%}.ct-demos-list-container ul li figure img{position:absolute;top:0;left:0;width:100%;height:100%}.ct-demos-list-container ul li figure section{position:absolute;display:flex;flex-direction:column;align-items:center;justify-content:center;top:0;left:0;right:0;bottom:0;opacity:0;background:rgba(36,41,45,0.9);transition:opacity 0.2s ease}.ct-demos-list-container ul li figure section h3{font-size:15px;color:#fff !important;margin:0 0 25px 0}.ct-demos-list-container ul li figure section div{display:flex}.ct-demos-list-container ul li figure section span{padding:8px 12px;display:block;font-size:17px;font-weight:500;color:#fff;border-radius:3px;border:2px solid rgba(255,255,255,0.5);background:rgba(36,41,45,0.4)}.ct-demos-list-container ul li figure section span:not(:last-child){margin-right:15px}.ct-demos-list-container ul li:hover figure>section{opacity:1}.ct-demos-list-container ul li.ct-is-pro figure{position:relative}.ct-demos-list-container ul li.ct-is-pro figure a{position:absolute;z-index:1;content:'PRO';top:0;right:0;font-size:13px;font-weight:700;letter-spacing:.03em;color:#a1680d;text-decoration:none;padding:5px 15px;margin:25px;background:#ffc568;border-radius:3px;box-shadow:0 5px 8px 0 rgba(234,157,33,0.3)}.ct-demo-actions{display:flex;align-items:center;padding:20px 25px;border-radius:0 0 3px 3px;border:1px solid rgba(226,230,235,0.7);background:rgba(235,237,241,0.2)}@media (max-width: 549px){.ct-demo-actions{flex-direction:column}}@media (min-width: 550px){.ct-demo-actions{justify-content:space-between}}.ct-demo-actions h4{margin:0}@media (max-width: 549px){.ct-demo-actions h4{margin-bottom:20px}}.ct-demo-actions .ct-button{margin-right:15px}.ct-demo-actions button[disabled]{opacity:0.3;-webkit-user-select:none;-ms-user-select:none;user-select:none;pointer-events:none}.ct-demo-modal{--modal-width: 500px;height:100%;transition:max-height 0.2s ease}.ct-demo-modal:not(.ct-demo-installer){--modal-max-height: 620px}.ct-demo-modal.ct-demo-installer{--modal-max-height: 380px}.ct-demo-step-container{height:100%;display:flex;flex-direction:column;color:#687c93;text-align:center}.ct-demo-step-container>*:first-child{flex:1;position:relative}.ct-demo-step-container>*:first-child>*{position:absolute;top:0;left:0;right:0;bottom:0}.ct-demo-step-container .ct-demo-icon{display:flex;align-items:center;justify-content:center;width:85px;height:85px;margin:10px auto 20px auto;background:#f3f6f8;border-radius:100%}.ct-demo-step-container h2{text-align:center;font-size:17px;font-weight:600;color:#3e5667;margin-top:0}.ct-demo-step-controls{position:relative;width:100%;height:40px}.ct-demo-step-controls button{position:absolute;z-index:2;top:0}.ct-demo-step-controls button.demo-back-btn{left:0}.ct-demo-step-controls button.demo-main-btn{right:0}.ct-steps-pills{display:flex;align-items:center;justify-content:center;position:absolute;z-index:1;top:0;left:0;right:0;bottom:0;width:200px;margin:0;padding:0;list-style:none;margin:0 auto}.ct-steps-pills li{display:flex;align-items:center;justify-content:center;width:30px;height:30px;margin:0;font-size:0}.ct-steps-pills li:before{content:'';width:12px;height:12px;border-radius:100%;box-shadow:inset 0 0 0 2px rgba(104,124,147,0.8);transition:box-shadow 0.2s ease, transform 0.2s ease}.ct-steps-pills li:not(.active):before{transform:scale3d(0.5, 0.5, 1);box-shadow:inset 0 0 0 10px rgba(104,124,147,0.8)}.ct-demo-child .ct-checkbox-container{max-width:250px;margin:25px auto 0 auto;padding-left:15px;padding-right:15px;border-radius:4px;border:1px solid rgba(179,189,201,0.3)}.ct-demo-child a{display:block;color:#687c93;font-weight:500;text-decoration:none;margin-top:25px}.ct-demo-child a:hover{color:#0073aa}.ct-demo-builder .ct-demo-icon svg{margin-left:10px}.ct-demo-builder ul{display:grid;margin:0;padding:0;list-style:none;margin:40px auto 0 auto}.ct-demo-builder ul[data-count="2"]{max-width:70%;grid-template-columns:repeat(2, 1fr);grid-column-gap:30px}.ct-demo-builder ul[data-count="3"]{grid-template-columns:repeat(3, 1fr);grid-column-gap:20px}.ct-demo-builder ul li{margin-bottom:0;cursor:pointer}.ct-demo-builder ul li figure{position:relative;display:flex;align-items:center;justify-content:center;min-height:100px;border:2px solid #e9ecee;border-radius:5px;margin:0;font-weight:500;transition:border-color 0.12s cubic-bezier(0.455, 0.03, 0.515, 0.955),box-shadow 0.12s cubic-bezier(0.455, 0.03, 0.515, 0.955)}.ct-demo-builder ul li figure>svg{width:47%}.ct-demo-builder ul li .builder-name{font-weight:500;color:#3e5667;margin-top:15px}.ct-demo-builder ul li:hover figure{border-color:var(--accentColor)}.ct-demo-builder ul li.active figure{border-color:var(--accentColor);box-shadow:0 0 0 1px var(--accentColor)}.ct-demo-builder ul li .ct-checkbox{--checkMarkColor: #fff;--background: rgba(179, 189, 201, 0.8);--backgroundActive: var(--accentColor);position:absolute;top:0px;right:0px}.ct-demo-builder ul li .ct-checkbox:before{width:22px !important;height:22px !important;border-radius:0px 3px 0px 5px}.ct-demo-builder ul li .ct-checkbox:not(.active):before{opacity:0}.ct-demo-plugins label{margin:0 auto}.ct-active-plugin{display:flex;align-items:center;position:relative;text-align:left;padding:10px 0}.ct-active-plugin span{display:flex;align-items:center;justify-content:center;position:absolute;right:-2px;width:22px;height:22px;border-radius:100%;box-sizing:border-box;background:rgba(179,189,201,0.3)}.ct-active-plugin span:before,.ct-active-plugin span:after{position:absolute;content:'';width:2px;border-radius:2px;background:rgba(104,124,147,0.6)}.ct-active-plugin span:before{top:10px;left:10px;height:5px;transform:rotate(-45deg);transform-origin:bottom center}.ct-active-plugin span:after{height:9px;left:9px;transform:rotate(40deg);transform-origin:bottom center}.ct-demo-erase{margin-top:10px;padding-top:10px;padding-bottom:20px;text-align:left;font-weight:600;border-top:1px dashed rgba(179,189,201,0.5);border-bottom:1px dashed rgba(179,189,201,0.5)}.ct-demo-erase .ct-checkbox-container{align-items:flex-start;padding-bottom:0}.ct-demo-erase i{display:block;width:90%;font-size:13px;margin-top:8px;opacity:0.8;font-weight:400;font-style:normal}.ct-export{text-align:center;margin-top:50px}.ct-site-export{display:flex;flex-direction:column;padding:30px}.ct-site-export label{display:flex;justify-content:space-between;padding:10px 0}.ct-site-export input[type="checkbox"]{margin:0}.ct-site-export textarea,.ct-site-export input[type="text"]{width:60%}.ct-site-export textarea{min-height:80px}.ct-site-export button{margin-top:20px}.ct-demo-installer .close-button{opacity:0 !important}.ct-demo-install{position:relative}.ct-demo-install>*{position:absolute;top:0;left:0;right:0;bottom:0}.ct-demo-install svg path{transform-origin:50% 50%;transform-box:fill-box;animation-name:spin;animation-iteration-count:infinite;animation-timing-function:linear}.ct-demo-install .g1{fill:#44ACDF;animation-duration:5.5s;animation-direction:reverse}.ct-demo-install .g2{fill:#3497D3;animation-duration:4.5s}.ct-demo-install .g3{fill:#0C7AB3;animation-duration:4s}.ct-installer-progress{width:100%;border-radius:5px;background:#f3f6f8;box-sizing:border-box}.ct-installer-progress div{width:var(--progress);height:4px;border-radius:inherit;background:var(--accentColor);transition:width 0.3s ease}.ct-progress-info{display:flex;justify-content:space-between;margin-top:30px;margin-bottom:15px;font-size:13px;opacity:0.8}@keyframes spin{from{transform:rotate(0deg)}to{transform:rotate(360deg)}}.ct-install-success{display:flex;flex-direction:column;align-items:center;justify-content:center;height:100%}.ct-install-success div{margin-top:10px}.ct-install-success a:first-child{margin-right:15px}.ct-modify-actions{margin-top:50px}.ct-modify-actions>*:not(:last-child){margin-right:15px}.ct-modify-actions .demo-remove{--ct-buttonHoverColor: #e04f4f}#ct-dashboard .ct-demo-notification{position:relative;padding:15px 20px 15px 55px;margin-bottom:40px;color:#0072aa;line-height:1.5;border:2px solid rgba(0,114,170,0.3);background:rgba(0,114,170,0.1);border-radius:5px}#ct-dashboard .ct-demo-notification:before{font-family:dashicons;content:"\f534";font-size:20px;position:absolute;top:13px;left:20px;color:rgba(0,114,170,0.8)}#ct-dashboard .ct-demo-notification b{font-weight:700}.ct-demos-list{display:flex;flex-direction:column}.ct-demos-list .ct-single-demo img{max-width:100px}.ct-demo-btn{font-size:15px;font-weight:600;letter-spacing:0.03em;color:#687c93;height:40px;border:none;cursor:pointer;padding:0 18px;border-radius:4px;background:#f3f6f8;transition:background 0.2s ease color 0.2s ease}.ct-demo-btn:focus{outline:none}.ct-demo-btn:hover{color:#fff;background:var(--ct-buttonHoverColor, var(--accentColor))}.ct-onboarding-modal{--modal-width: 500px;--modal-min-height: 360px;text-align:center}.ct-onboarding-modal .close-button{display:none}.ct-onboarding-modal svg{width:55px;height:55px;margin:0 auto 25px auto}.ct-onboarding-modal h2{color:#3e5667}.ct-onboarding-modal button{--buttonHeight: 42px;--buttonPadding: 20px;--buttonFontSize: 14px}.ct-beta-consent{margin-top:60px;border-radius:3px;text-align:center;color:#fff}@media (max-width: 782px){.ct-beta-consent{padding:10%}}@media (min-width: 783px){.ct-beta-consent{padding:50px}}.ct-beta-consent h2{display:flex;align-items:center;justify-content:center;color:#fff !important;margin-top:0;cursor:pointer}.ct-beta-consent h2 span{display:flex;font-size:15px;font-weight:500;cursor:pointer}.ct-beta-consent h2 .ct-option-switch{-webkit-margin-start:15px;margin-inline-start:15px}.ct-beta-consent h2 .ct-option-switch:not(.ct-active){border-color:#fff}.ct-beta-consent h2 .ct-option-switch:not(.ct-active)>span{background:#fff}.ct-beta-consent h2 .ct-option-switch:not(.ct-active):after{border-color:#fff}.ct-beta-consent+.ct-support-container{margin-top:50px !important}.ct-beta-consent{background-color:#32373c;background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 304 304' width='304' height='304'%3E%3Cpath fill='%234f5660' fill-opacity='0.2' d='M44.1 224a5 5 0 1 1 0 2H0v-2h44.1zm160 48a5 5 0 1 1 0 2H82v-2h122.1zm57.8-46a5 5 0 1 1 0-2H304v2h-42.1zm0 16a5 5 0 1 1 0-2H304v2h-42.1zm6.2-114a5 5 0 1 1 0 2h-86.2a5 5 0 1 1 0-2h86.2zm-256-48a5 5 0 1 1 0 2H0v-2h12.1zm185.8 34a5 5 0 1 1 0-2h86.2a5 5 0 1 1 0 2h-86.2zM258 12.1a5 5 0 1 1-2 0V0h2v12.1zm-64 208a5 5 0 1 1-2 0v-54.2a5 5 0 1 1 2 0v54.2zm48-198.2V80h62v2h-64V21.9a5 5 0 1 1 2 0zm16 16V64h46v2h-48V37.9a5 5 0 1 1 2 0zm-128 96V208h16v12.1a5 5 0 1 1-2 0V210h-16v-76.1a5 5 0 1 1 2 0zm-5.9-21.9a5 5 0 1 1 0 2H114v48H85.9a5 5 0 1 1 0-2H112v-48h12.1zm-6.2 130a5 5 0 1 1 0-2H176v-74.1a5 5 0 1 1 2 0V242h-60.1zm-16-64a5 5 0 1 1 0-2H114v48h10.1a5 5 0 1 1 0 2H112v-48h-10.1zM66 284.1a5 5 0 1 1-2 0V274H50v30h-2v-32h18v12.1zM236.1 176a5 5 0 1 1 0 2H226v94h48v32h-2v-30h-48v-98h12.1zm25.8-30a5 5 0 1 1 0-2H274v44.1a5 5 0 1 1-2 0V146h-10.1zm-64 96a5 5 0 1 1 0-2H208v-80h16v-14h-42.1a5 5 0 1 1 0-2H226v18h-16v80h-12.1zm86.2-210a5 5 0 1 1 0 2H272V0h2v32h10.1zM98 101.9V146H53.9a5 5 0 1 1 0-2H96v-42.1a5 5 0 1 1 2 0zM53.9 34a5 5 0 1 1 0-2H80V0h2v34H53.9zm60.1 3.9V66H82v64H69.9a5 5 0 1 1 0-2H80V64h32V37.9a5 5 0 1 1 2 0zM101.9 82a5 5 0 1 1 0-2H128V37.9a5 5 0 1 1 2 0V82h-28.1zm16-64a5 5 0 1 1 0-2H146v44.1a5 5 0 1 1-2 0V18h-26.1zm102.2 270a5 5 0 1 1 0 2H98v14h-2v-16h124.1zM242 149.9V160h16v34h-16v62h48v48h-2v-46h-48v-66h16v-30h-16v-12.1a5 5 0 1 1 2 0zM53.9 18a5 5 0 1 1 0-2H64V2H48V0h18v18H53.9zm112 32a5 5 0 1 1 0-2H192V0h50v2h-48v48h-28.1zm-48-48a5 5 0 0 1-9.8-2h2.07a3 3 0 1 0 5.66 0H178v34h-18V21.9a5 5 0 1 1 2 0V32h14V2h-58.1zm0 96a5 5 0 1 1 0-2H137l32-32h39V21.9a5 5 0 1 1 2 0V66h-40.17l-32 32H117.9zm28.1 90.1a5 5 0 1 1-2 0v-76.51L175.59 80H224V21.9a5 5 0 1 1 2 0V82h-49.59L146 112.41v75.69zm16 32a5 5 0 1 1-2 0v-99.51L184.59 96H300.1a5 5 0 0 1 3.9-3.9v2.07a3 3 0 0 0 0 5.66v2.07a5 5 0 0 1-3.9-3.9H185.41L162 121.41v98.69zm-144-64a5 5 0 1 1-2 0v-3.51l48-48V48h32V0h2v50H66v55.41l-48 48v2.69zM50 53.9v43.51l-48 48V208h26.1a5 5 0 1 1 0 2H0v-65.41l48-48V53.9a5 5 0 1 1 2 0zm-16 16V89.41l-34 34v-2.82l32-32V69.9a5 5 0 1 1 2 0zM12.1 32a5 5 0 1 1 0 2H9.41L0 43.41V40.6L8.59 32h3.51zm265.8 18a5 5 0 1 1 0-2h18.69l7.41-7.41v2.82L297.41 50H277.9zm-16 160a5 5 0 1 1 0-2H288v-71.41l16-16v2.82l-14 14V210h-28.1zm-208 32a5 5 0 1 1 0-2H64v-22.59L40.59 194H21.9a5 5 0 1 1 0-2H41.41L66 216.59V242H53.9zm150.2 14a5 5 0 1 1 0 2H96v-56.6L56.6 162H37.9a5 5 0 1 1 0-2h19.5L98 200.6V256h106.1zm-150.2 2a5 5 0 1 1 0-2H80v-46.59L48.59 178H21.9a5 5 0 1 1 0-2H49.41L82 208.59V258H53.9zM34 39.8v1.61L9.41 66H0v-2h8.59L32 40.59V0h2v39.8zM2 300.1a5 5 0 0 1 3.9 3.9H3.83A3 3 0 0 0 0 302.17V256h18v48h-2v-46H2v42.1zM34 241v63h-2v-62H0v-2h34v1zM17 18H0v-2h16V0h2v18h-1zm273-2h14v2h-16V0h2v16zm-32 273v15h-2v-14h-14v14h-2v-16h18v1zM0 92.1A5.02 5.02 0 0 1 6 97a5 5 0 0 1-6 4.9v-2.07a3 3 0 1 0 0-5.66V92.1zM80 272h2v32h-2v-32zm37.9 32h-2.07a3 3 0 0 0-5.66 0h-2.07a5 5 0 0 1 9.8 0zM5.9 0A5.02 5.02 0 0 1 0 5.9V3.83A3 3 0 0 0 3.83 0H5.9zm294.2 0h2.07A3 3 0 0 0 304 3.83V5.9a5 5 0 0 1-3.9-5.9zm3.9 300.1v2.07a3 3 0 0 0-1.83 1.83h-2.07a5 5 0 0 1 3.9-3.9zM97 100a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm0-16a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm16 16a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm16 16a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm0 16a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm-48 32a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm16 16a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm32 48a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm-16 16a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm32-16a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm0-32a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm16 32a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm32 16a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm0-16a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm-16-64a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm16 0a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm16 96a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm0 16a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm16 16a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm16-144a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm0 32a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm16-32a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm16-16a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm-96 0a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm0 16a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm16-32a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm96 0a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm-16-64a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm16-16a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm-32 0a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm0-16a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm-16 0a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm-16 0a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm-16 0a3 3 0 1 0 0-6 3 3 0 0 0 0 6zM49 36a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm-32 0a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm32 16a3 3 0 1 0 0-6 3 3 0 0 0 0 6zM33 68a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm16-48a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm0 240a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm16 32a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm-16-64a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm0 16a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm-16-32a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm80-176a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm16 0a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm-16-16a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm32 48a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm16-16a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm0-32a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm112 176a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm-16 16a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm0 16a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm0 16a3 3 0 1 0 0-6 3 3 0 0 0 0 6zM17 180a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm0 16a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm0-32a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm16 0a3 3 0 1 0 0-6 3 3 0 0 0 0 6zM17 84a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm32 64a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm16-16a3 3 0 1 0 0-6 3 3 0 0 0 0 6z'%3E%3C/path%3E%3C/svg%3E");background-size:250px;background-position:0 5px}.ct-beta-updates-consent{--modal-width: 450px;--modal-min-height: 330px;--modal-padding: 45px;text-align:center}.ct-beta-updates-consent .ct-modal-content p{margin-bottom:1.2em}.ct-freemius-optin-message{position:relative;text-align:center;border-radius:3px;background:#f5f7f9}@media (max-width: 782px){.ct-freemius-optin-message{padding:50px 10% 10% 10%}}@media (min-width: 783px){.ct-freemius-optin-message{padding:60px 50px 50px 50px}}.ct-freemius-optin-message h2{margin-top:0}.ct-freemius-optin-message i{display:flex;align-items:center;justify-content:center;position:absolute;top:-25px;left:0;right:0;margin:0 auto;width:50px;height:50px;background:#fff;border-radius:100%;color:#0591c9;border:2px solid #DEECF3}.ct-freemius-optin-message i svg{animation:ring-shake 5s ease-in-out infinite;transform-origin:50% 0%}.ct-freemius-optin-message p{max-width:600px;margin:0 auto 20px auto !important}.ct-freemius-optin-message .ct-button-primary{--buttonHeight: 42px;--buttonPadding: 20px;--buttonFontSize: 14px}.ct-freemius-optin-message+.ct-first-steps-container{margin-top:55px;padding-top:50px;border-top:1px solid rgba(143,163,184,0.15)}@keyframes ring-shake{0%{transform:rotate(-15deg)}2%{transform:rotate(15deg)}4%{transform:rotate(-18deg)}6%{transform:rotate(18deg)}8%{transform:rotate(-22deg)}10%{transform:rotate(22deg)}12%{transform:rotate(-18deg)}14%{transform:rotate(18deg)}16%{transform:rotate(-12deg)}18%{transform:rotate(12deg)}20%{transform:rotate(0deg)}100%{transform:rotate(0deg)}}.blocksy-fs-optin-dashboard #wpwrap,.blocksy-fs-optin-dashboard #wpcontent,.blocksy-fs-optin-dashboard #wpbody{height:100%;min-height:100%}.blocksy-fs-optin-dashboard #wpbody-content{height:100%;padding-bottom:0}.blocksy-fs-optin-dashboard #wpbody-content #screen-meta,.blocksy-fs-optin-dashboard #wpbody-content .clear{display:none}.blocksy-fs-optin-dashboard .toplevel_page_ct-dashboard.current:after{border-right-color:#f2cf88 !important}.blocksy-fs-optin-wrapper{display:grid;grid-template-columns:repeat(2, 1fr);height:100%}.blocksy-fs-optin-wrapper>*{display:flex;flex-direction:column;justify-content:center;padding:9%;box-sizing:border-box}.blocksy-fs-optin-wrapper .ct-optin-svg{background:#F2CF88}.blocksy-fs-optin-wrapper .ct-optin-svg svg{max-width:750px;margin:0 auto}.blocksy-fs-optin-wrapper #fs_connect{width:100%;max-width:900px;margin:0;box-shadow:none}.blocksy-fs-optin-wrapper #fs_connect .fs-visual{display:none}.blocksy-fs-optin-wrapper #fs_connect .fs-content{padding:0;margin-bottom:30px}.blocksy-fs-optin-wrapper #fs_connect .fs-content>p span{display:block;font-size:25px;font-weight:700;color:#23282d;margin-bottom:20px}.blocksy-fs-optin-wrapper #fs_connect .fs-actions{display:flex;padding:0;margin-bottom:20px;background:transparent}.blocksy-fs-optin-wrapper #fs_connect .fs-actions .button{height:49px;line-height:49px;padding:0 20px !important}.blocksy-fs-optin-wrapper #fs_connect .fs-actions .button-primary{margin-right:15px}.blocksy-fs-optin-wrapper #fs_connect .fs-actions #skip_activation{order:2;float:none;background:transparent;border-color:transparent}.blocksy-fs-optin-wrapper #fs_connect .fs-actions #skip_activation:hover{border-color:#0071a1}.blocksy-fs-optin-wrapper #fs_connect .fs-permissions{padding:0 0 30px 0}.blocksy-fs-optin-wrapper #fs_connect .fs-permissions .fs-trigger{text-align:left;text-decoration:underline}.blocksy-fs-optin-wrapper #fs_connect .fs-permissions .fs-trigger:focus{outline:none;box-shadow:none}.blocksy-fs-optin-wrapper #fs_connect .fs-permissions ul{display:none}.blocksy-fs-optin-wrapper #fs_connect .fs-permissions ul li{margin-bottom:0}.blocksy-fs-optin-wrapper #fs_connect .fs-permissions ul li i.dashicons{font-size:18px;width:18px;height:18px;margin-right:8px;color:#23282d}.blocksy-fs-optin-wrapper #fs_connect .fs-permissions ul li div{margin-left:0}.blocksy-fs-optin-wrapper #fs_connect .fs-permissions ul li div span{text-transform:capitalize}.blocksy-fs-optin-wrapper #fs_connect .fs-permissions ul li div p{margin-top:8px;font-size:12px;opacity:0.7}.blocksy-fs-optin-wrapper #fs_connect .fs-permissions ul li:nth-child(1){order:1}.blocksy-fs-optin-wrapper #fs_connect .fs-permissions ul li:nth-child(2){order:4}.blocksy-fs-optin-wrapper #fs_connect .fs-permissions ul li:nth-child(3){order:3}.blocksy-fs-optin-wrapper #fs_connect .fs-permissions ul li:nth-child(4){order:2}.blocksy-fs-optin-wrapper #fs_connect .fs-permissions.fs-open ul{display:grid;grid-template-columns:repeat(2, minmax(auto, 280px));grid-column-gap:30px;grid-row-gap:30px;margin:20px 0 0 0;padding-top:30px;border-top:1px dashed #ddd}.blocksy-fs-optin-wrapper #fs_connect .fs-permissions .fs-switch{width:25px;height:16px;top:1px;right:20px;padding:0;box-shadow:none;box-sizing:border-box;transition:all 0.1s linear;border:2px solid #555d66}.blocksy-fs-optin-wrapper #fs_connect .fs-permissions .fs-switch .fs-toggle{box-sizing:border-box;border:none;top:1px;width:10px;height:10px;box-shadow:none;transition:all 0.1s linear}.blocksy-fs-optin-wrapper #fs_connect .fs-permissions .fs-switch.fs-off{background:transparent}.blocksy-fs-optin-wrapper #fs_connect .fs-permissions .fs-switch.fs-off .fs-toggle{left:1px;background:#555d66}.blocksy-fs-optin-wrapper #fs_connect .fs-permissions .fs-switch.fs-on{border-color:#0085ba}.blocksy-fs-optin-wrapper #fs_connect .fs-permissions .fs-switch.fs-on .fs-toggle{left:10px}.blocksy-fs-optin-wrapper #fs_connect .fs-terms{display:none}.blocksy-fs-optin-dashboard #fs_connect.require-license-key .fs-license-key-container{width:100%;margin:30px 0 0 0}.blocksy-fs-optin-dashboard #fs_connect.require-license-key .fs-license-key-container input[type=text]{min-height:49px;padding:0 12px;line-height:initial}.blocksy-fs-optin-dashboard #fs_connect.require-license-key .fs-license-key-container .dashicons{top:17px;right:10px;font-size:16px;height:16px;width:16px}.blocksy-fs-optin-dashboard #fs_connect.require-license-key .fs-license-key-container .show-license-resend-modal{font-size:0.9em;margin-top:10px}.blocksy-fs-optin-dashboard #fs_connect.require-license-key .fs-actions{flex-wrap:wrap}.blocksy-fs-optin-dashboard #fs_connect.require-license-key .fs-actions form{width:100%}.blocksy-fs-optin-dashboard #fs_connect.require-license-key .fs-actions #license_issues_link{flex:1 1 auto;text-align:left}.blocksy-fs-optin-dashboard #fs_connect.require-license-key .fs-permissions p{text-align:left}.blocksy-fs-optin-dashboard #fs_connect.require-license-key .fs-permissions p:last-of-type{margin-bottom:0}.blocksy-fs-optin-dashboard #fs_connect #fs_marketing_optin{border:none;padding:30px 0;margin:30px 0 0 0;box-shadow:none;border-top:1px dashed #ddd;border-bottom:1px dashed #ddd}.blocksy-fs-optin-dashboard #fs_connect #fs_marketing_optin.error{background:transparent}.blocksy-fs-optin-dashboard #fs_connect #fs_marketing_optin .fs-input-label{margin-left:22px}.blocksy-fs-optin-dashboard #fs_connect .fs-freemium-licensing{border-top:1px dashed #ddd;padding:30px 0;background:transparent}.blocksy-fs-optin-dashboard #fs_connect .fs-freemium-licensing p{text-align:left;color:#444}.blocksy-fs-optin-dashboard #fs_connect .fs-freemium-licensing p a{color:#0073aa}
|
static/bundle/main.min.css
CHANGED
|
@@ -1,5 +1,5 @@
|
|
| 1 |
/**
|
| 2 |
-
* - v1.8.
|
| 3 |
*
|
| 4 |
* Copyright (c) 2021
|
| 5 |
* Licensed GPLv2+
|
| 1 |
/**
|
| 2 |
+
* - v1.8.8
|
| 3 |
*
|
| 4 |
* Copyright (c) 2021
|
| 5 |
* Licensed GPLv2+
|
static/bundle/options.js
CHANGED
|
@@ -3,4 +3,4 @@
|
|
| 3 |
Copyright (c) 2017 Jed Watson.
|
| 4 |
Licensed under the MIT License (MIT), see
|
| 5 |
http://jedwatson.github.io/classnames
|
| 6 |
-
*/!function(){"use strict";var n={}.hasOwnProperty;function o(){for(var e=[],t=0;t<arguments.length;t++){var r=arguments[t];if(r){var c=typeof r;if("string"===c||"number"===c)e.push(r);else if(Array.isArray(r)&&r.length){var a=o.apply(null,r);a&&e.push(a)}else if("object"===c)for(var i in r)n.call(r,i)&&r[i]&&e.push(i)}}return e.join(" ")}e.exports?(o.default=o,e.exports=o):void 0===(r=function(){return o}.apply(t,[]))||(e.exports=r)}()},function(e,t){e.exports=window.wp.components},function(e,t){e.exports=window.ctEvents},function(e,t){e.exports=window.React},function(e,t,n){(function(t){function n(e){return(n="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e})(e)}var r="object"===("undefined"==typeof window?"undefined":n(window))&&window.window===window?window:"object"===("undefined"==typeof self?"undefined":n(self))&&self.self===self?self:"object"===(void 0===t?"undefined":n(t))&&t.global===t?t:this;function o(e,t,n){var r=new XMLHttpRequest;r.open("GET",e),r.responseType="blob",r.onload=function(){i(r.response,t,n)},r.onerror=function(){console.error("could not download file")},r.send()}function c(e){var t=new XMLHttpRequest;t.open("HEAD",e,!1);try{t.send()}catch(e){}return t.status>=200&&t.status<=299}function a(e){try{e.dispatchEvent(new MouseEvent("click"))}catch(n){var t=document.createEvent("MouseEvents");t.initMouseEvent("click",!0,!0,window,0,0,0,80,20,!1,!1,!1,!1,0,null),e.dispatchEvent(t)}}var i="object"!==("undefined"==typeof window?"undefined":n(window))||window!==r?function(){}:"download"in HTMLAnchorElement.prototype?function(e,t,n){var i=r.URL||r.webkitURL,l=document.createElement("a");t=t||e.name||"download",l.download=t,l.rel="noopener","string"==typeof e?(l.href=e,l.origin!==location.origin?c(l.href)?o(e,t,n):a(l,l.target="_blank"):a(l)):(l.href=i.createObjectURL(e),setTimeout((function(){i.revokeObjectURL(l.href)}),4e4),setTimeout((function(){a(l)}),0))}:"msSaveOrOpenBlob"in navigator?function(e,t,r){if(t=t||e.name||"download","string"==typeof e)if(c(e))o(e,t,r);else{var i=document.createElement("a");i.href=e,i.target="_blank",setTimeout((function(){a(i)}))}else navigator.msSaveOrOpenBlob(function(e,t){return void 0===t?t={autoBom:!1}:"object"!==n(t)&&(console.warn("Deprecated: Expected third argument to be a object"),t={autoBom:!t}),t.autoBom&&/^\s*(?:text\/\S*|application\/xml|\S*\/\S*\+xml)\s*;.*charset\s*=\s*utf-8/i.test(e.type)?new Blob([String.fromCharCode(65279),e],{type:e.type}):e}(e,r),t)}:function(e,t,c,a){if((a=a||open("","_blank"))&&(a.document.title=a.document.body.innerText="downloading..."),"string"==typeof e)return o(e,t,c);var i="application/octet-stream"===e.type,l=/constructor/i.test(r.HTMLElement)||r.safari,u=/CriOS\/[\d]+/.test(navigator.userAgent);if((u||i&&l)&&"object"===("undefined"==typeof FileReader?"undefined":n(FileReader))){var s=new FileReader;s.onloadend=function(){var e=s.result;e=u?e:e.replace(/^data:[^;]*;/,"data:attachment/file;"),a?a.location.href=e:location=e,a=null},s.readAsDataURL(e)}else{var d=r.URL||r.webkitURL,f=d.createObjectURL(e);a?a.location=f:location.href=f,a=null,setTimeout((function(){d.revokeObjectURL(f)}),4e4)}};e.exports=i}).call(this,n(12))},function(e,t){e.exports=window.wp.hooks},function(e,t,n){var r=n(13);function o(e,t,n,r,c){var a=new Error(n,r,c);return a.name="UseFetchError",a.status=e,a.statusText=t,Object.setPrototypeOf(a,Object.getPrototypeOf(this)),Error.captureStackTrace&&Error.captureStackTrace(a,o),a}o.prototype=Object.create(Error.prototype,{constructor:{value:Error,enumerable:!1,writable:!0,configurable:!0}}),Object.setPrototypeOf(o,Error),e.exports=function(e,t,n){var c=(n&&n.depends||t&&t.depends||[]).reduce((function(e,t){return e||!t}),!1);return r(!c&&function(e,t,n){return fetch(e,t).then(n&&n.formatter||t&&t.formatter||function(e){if(!e.ok)throw new o(e.status,e.statusText,"Fetch error");return e.json()})},e,t||{},n||{})}},function(e,t,n){var r=n(15);e.exports=function(){var e=function(){e.id=r(),e.subscribers.forEach((function(e){e()}))};return e.id=r(),e.subscribers=[],e.subscribe=function(t){e.subscribers.push(t)},e.unsubscribe=function(t){e.subscribers.indexOf(t)>=0&&e.subscribers.splice(e.subscribers.indexOf(t),1)},e}},function(e,t,n){var r=n(6);e.exports=function(e){var t=r.useState(e.id),n=function(){return t[1](e.id)};return r.useEffect((function(){return e.subscribe(n),function(){return e.unsubscribe(n)}}),[]),t[0]}},function(e,t){var n;n=function(){return this}();try{n=n||new Function("return this")()}catch(e){"object"==typeof window&&(n=window)}e.exports=n},function(e,t,n){var r=n(6),o=n(14);e.exports=function(e){var t=Array.prototype.slice.call(arguments,[1]),n=r.useState({isLoading:!!e});return r.useEffect((function(){e&&(!n[0].isLoading&&n[1]({data:n[0].data,isLoading:!0}),e.apply(null,t).then((function(e){n[1]({data:e,isLoading:!1})})).catch((function(e){n[1]({error:e,isLoading:!1})})))}),o(t)),n[0]}},function(e,t){e.exports=function e(){for(var t=[],n=0;n<arguments.length;n++){var r=arguments[n];if(r instanceof Array)for(var o=0;o<r.length;o++)t=t.concat(e(r[o]));else if("undefined"!=typeof URL&&r instanceof URL)t=t.concat(r.toJSON());else if(r instanceof Object)for(var c=Object.keys(r),a=0;a<c.length;a++){var i=c[a];t=t.concat([i]).concat(e(r[i]))}else t=t.concat(r)}return t}},function(e,t,n){for(var r=self.crypto||self.msCrypto,o="-_",c=36;c--;)o+=c.toString(36);for(c=36;c---10;)o+=c.toString(36).toUpperCase();e.exports=function(e){var t="",n=r.getRandomValues(new Uint8Array(e||21));for(c=e||21;c--;)t+=o[63&n[c]];return t}},function(e,t,n){"use strict";n.r(t);var r=n(0),o=n(4),c=n(1),a=n(2),i=n(3),l=n.n(i);function u(e){return function(e){if(Array.isArray(e))return m(e)}(e)||function(e){if("undefined"!=typeof Symbol&&Symbol.iterator in Object(e))return Array.from(e)}(e)||b(e)||function(){throw new TypeError("Invalid attempt to spread non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}function s(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);t&&(r=r.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),n.push.apply(n,r)}return n}function d(e){for(var t=1;t<arguments.length;t++){var n=null!=arguments[t]?arguments[t]:{};t%2?s(Object(n),!0).forEach((function(t){f(e,t,n[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(n)):s(Object(n)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(n,t))}))}return e}function f(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}function p(e,t){return function(e){if(Array.isArray(e))return e}(e)||function(e,t){if("undefined"==typeof Symbol||!(Symbol.iterator in Object(e)))return;var n=[],r=!0,o=!1,c=void 0;try{for(var a,i=e[Symbol.iterator]();!(r=(a=i.next()).done)&&(n.push(a.value),!t||n.length!==t);r=!0);}catch(e){o=!0,c=e}finally{try{r||null==i.return||i.return()}finally{if(o)throw c}}return n}(e,t)||b(e,t)||function(){throw new TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}function b(e,t){if(e){if("string"==typeof e)return m(e,t);var n=Object.prototype.toString.call(e).slice(8,-1);return"Object"===n&&e.constructor&&(n=e.constructor.name),"Map"===n||"Set"===n?Array.from(e):"Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)?m(e,t):void 0}}function m(e,t){(null==t||t>e.length)&&(t=e.length);for(var n=0,r=new Array(t);n<t;n++)r[n]=e[n];return r}var y=function(e){return e.filter((function(e,t,n){return n.findIndex((function(t){return t.ID===e.ID}))===t}))},O=[],j=function(e){var t=e.condition,n=e.onChange,o=p(Object(r.useState)(O),2),i=o[0],l=o[1],s=Object(r.useMemo)((function(){return{post_ids:"post",page_ids:"page",custom_post_type_ids:"ct_cpt"}[t.rule]}),[t.rule]),f=Object(r.useMemo)((function(){return(t.payload||{}).post_id||""}),[t.payload&&t.payload.post_id]),b=function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:"";fetch("".concat(wp.ajax.settings.url,"?action=blocksy_conditions_get_all_posts"),{headers:{Accept:"application/json","Content-Type":"application/json"},body:JSON.stringify(d(d({post_type:s},e?{search_query:e}:{}),f?{alsoInclude:f}:{})),method:"POST"}).then((function(e){return e.json()})).then((function(e){var t=e.data.posts;l((function(e){return y([].concat(u(e),u(t)))})),O=y([].concat(u(O),u(t)))}))};return Object(r.useEffect)((function(){b()}),[s]),Object(r.createElement)(a.Select,{option:{appendToBody:!0,defaultToFirstItem:!1,searchPlaceholder:Object(c.__)("Type to search by ID or title...","blc"),placeholder:"post_ids"===t.rule?Object(c.__)("Select post","blc"):"page_ids"===t.rule?Object(c.__)("Select page","blc"):Object(c.__)("Custom Post Type ID","blc"),choices:i.filter((function(e){var t=e.post_type;return"ct_cpt"===s?"post"!==t&&"page"!==t:s===t})).map((function(e){return{key:e.ID,value:e.post_title}})),search:!0},value:f,onChange:function(e){return n(e)},onInputValueChange:function(e){i.find((function(t){return t.post_title===e}))||b(e)}})};function h(e,t){return function(e){if(Array.isArray(e))return e}(e)||function(e,t){if("undefined"==typeof Symbol||!(Symbol.iterator in Object(e)))return;var n=[],r=!0,o=!1,c=void 0;try{for(var a,i=e[Symbol.iterator]();!(r=(a=i.next()).done)&&(n.push(a.value),!t||n.length!==t);r=!0);}catch(e){o=!0,c=e}finally{try{r||null==i.return||i.return()}finally{if(o)throw c}}return n}(e,t)||S(e,t)||function(){throw new TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}function v(e,t){if(null==e)return{};var n,r,o=function(e,t){if(null==e)return{};var n,r,o={},c=Object.keys(e);for(r=0;r<c.length;r++)n=c[r],t.indexOf(n)>=0||(o[n]=e[n]);return o}(e,t);if(Object.getOwnPropertySymbols){var c=Object.getOwnPropertySymbols(e);for(r=0;r<c.length;r++)n=c[r],t.indexOf(n)>=0||Object.prototype.propertyIsEnumerable.call(e,n)&&(o[n]=e[n])}return o}function _(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);t&&(r=r.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),n.push.apply(n,r)}return n}function g(e){for(var t=1;t<arguments.length;t++){var n=null!=arguments[t]?arguments[t]:{};t%2?_(Object(n),!0).forEach((function(t){E(e,t,n[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(n)):_(Object(n)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(n,t))}))}return e}function E(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}function w(e){return function(e){if(Array.isArray(e))return x(e)}(e)||function(e){if("undefined"!=typeof Symbol&&Symbol.iterator in Object(e))return Array.from(e)}(e)||S(e)||function(){throw new TypeError("Invalid attempt to spread non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}function S(e,t){if(e){if("string"==typeof e)return x(e,t);var n=Object.prototype.toString.call(e).slice(8,-1);return"Object"===n&&e.constructor&&(n=e.constructor.name),"Map"===n||"Set"===n?Array.from(e):"Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)?x(e,t):void 0}}function x(e,t){(null==t||t>e.length)&&(t=e.length);for(var n=0,r=new Array(t);n<t;n++)r[n]=e[n];return r}var C=[],k=[],A=[],N=function(e){var t=e.value,n=e.onChange,o=blocksy_admin.all_condition_rules.reduce((function(e,t){var n=t.rules,r=t.title;return[].concat(w(e),w(n.map((function(e){return g(g({},e),{},{group:r})}))))}),[]).reduce((function(e,t){var n=t.title,r=t.id,o=v(t,["title","id"]);return[].concat(w(e),[g({key:r,value:n},o)])}),[]),i=h(Object(r.useState)(C),2),u=(i[0],i[1],h(Object(r.useState)(k),2)),s=u[0],d=u[1],f=h(Object(r.useState)(A),2),p=f[0],b=f[1],m=function(e){return"post_ids"===e.rule||"page_ids"===e.rule||"custom_post_type_ids"===e.rule||"taxonomy_ids"===e.rule||"post_with_taxonomy_ids"===e.rule||"current_language"===e.rule};return Object(r.useEffect)((function(){fetch("".concat(wp.ajax.settings.url,"?action=blocksy_conditions_get_all_taxonomies"),{headers:{Accept:"application/json","Content-Type":"application/json"},method:"POST"}).then((function(e){return e.json()})).then((function(e){var t=e.data,n=t.taxonomies,r=t.languages;d(n),k=n,b(r),A=r}))}),[]),Object(r.createElement)("div",{className:"ct-display-conditions"},t.map((function(e,i){return Object(r.createElement)("div",{className:l()("ct-condition-group",{"ct-cols-3":m(e),"ct-cols-2":!m(e)}),key:i},Object(r.createElement)(a.Select,{key:"first",option:{inputClassName:"ct-condition-type",selectInputStart:function(){return Object(r.createElement)("span",{className:"ct-".concat(e.type)})},placeholder:Object(c.__)("Select variation","blc"),choices:{include:Object(c.__)("Include","blc"),exclude:Object(c.__)("Exclude","blc")}},value:e.type,onChange:function(r){n(t.map((function(t,n){return g({},n===i?g(g({},e),{},{type:r}):t)})))}}),Object(r.createElement)(a.Select,{key:"second",option:{appendToBody:!0,placeholder:Object(c.__)("Select rule","blc"),choices:"user"===e.category?o.filter((function(e){return 0===e.key.indexOf("user_")})):o.filter((function(e){return-1===e.key.indexOf("user_")})),search:!0},value:e.rule,onChange:function(r){n(t.map((function(t,n){return g({},n===i?g(g({},e),{},{rule:r}):t)})))}}),("post_ids"===e.rule||"custom_post_type_ids"===e.rule||"page_ids"===e.rule)&&Object(r.createElement)(j,{condition:e,onChange:function(r){n(t.map((function(t,n){return g({},n===i?g(g({},e),{},{payload:g(g({},e.payload),{},{post_id:r})}):t)})))}}),("taxonomy_ids"===e.rule||"post_with_taxonomy_ids"===e.rule)&&Object(r.createElement)(a.Select,{option:{appendToBody:!0,defaultToFirstItem:!1,placeholder:Object(c.__)("Select taxonomy","blc"),choices:s.map((function(e){return g({key:e.id,value:e.name},e.group?{group:e.group}:{})})),search:!0},value:(e.payload||{}).taxonomy_id||"",onChange:function(r){n(t.map((function(t,n){return g({},n===i?g(g({},e),{},{payload:g(g({},e.payload),{},{taxonomy_id:r})}):t)})))}}),"current_language"===e.rule&&Object(r.createElement)(a.Select,{option:{appendToBody:!0,defaultToFirstItem:!1,placeholder:Object(c.__)("Select language","blc"),choices:p.map((function(e){return{key:e.id,value:e.name}})),search:!0},value:(e.payload||{}).language||"",onChange:function(r){n(t.map((function(t,n){return g({},n===i?g(g({},e),{},{payload:g(g({},e.payload),{},{language:r})}):t)})))}}),Object(r.createElement)("button",{type:"button",onClick:function(e){e.preventDefault();var r=w(t);r.splice(i,1),n(r)}},"×"))})),Object(r.createElement)("div",{className:"ct-conditions-actions"},Object(r.createElement)("button",{type:"button",className:"button add-condition",onClick:function(e){e.preventDefault(),n([].concat(w(t),[{type:"include",rule:"everywhere",payload:{}}]))}},Object(c.__)("Add Display Condition","blc")),Object(r.createElement)("button",{type:"button",className:"button add-condition",onClick:function(e){e.preventDefault(),n([].concat(w(t),[{type:"include",rule:"user_logged_in",payload:{},category:"user"}]))}},Object(c.__)("Add User Condition","blc"))))};function P(e,t){return function(e){if(Array.isArray(e))return e}(e)||function(e,t){if("undefined"==typeof Symbol||!(Symbol.iterator in Object(e)))return;var n=[],r=!0,o=!1,c=void 0;try{for(var a,i=e[Symbol.iterator]();!(r=(a=i.next()).done)&&(n.push(a.value),!t||n.length!==t);r=!0);}catch(e){o=!0,c=e}finally{try{r||null==i.return||i.return()}finally{if(o)throw c}}return n}(e,t)||function(e,t){if(!e)return;if("string"==typeof e)return D(e,t);var n=Object.prototype.toString.call(e).slice(8,-1);"Object"===n&&e.constructor&&(n=e.constructor.name);if("Map"===n||"Set"===n)return Array.from(e);if("Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n))return D(e,t)}(e,t)||function(){throw new TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}function D(e,t){(null==t||t>e.length)&&(t=e.length);for(var n=0,r=new Array(t);n<t;n++)r[n]=e[n];return r}var T=function(e){var t=e.option,n=t.display,o=void 0===n?"inline":n,i=t.modalTitle,l=void 0===i?Object(c.__)("Transparent Header Display Conditions","blc"):i,u=t.modalDescription,s=void 0===u?Object(c.__)("Add one or more conditions to display the transparent header.","blc"):u,d=e.value,f=e.onChange,p=P(Object(r.useState)(!1),2),b=p[0],m=p[1],y=P(Object(r.useState)(null),2),O=y[0],j=y[1];return"inline"===o?Object(r.createElement)(N,{value:d,onChange:f}):Object(r.createElement)(r.Fragment,null,Object(r.createElement)("button",{className:"button-primary",style:{width:"100%"},onClick:function(e){e.preventDefault(),m(!0),j(null)}},Object(c.__)("Add/Edit Conditions","blc")),Object(r.createElement)(a.Overlay,{items:b,className:"ct-admin-modal ct-builder-conditions-modal",onDismiss:function(){m(!1),j(null)},render:function(){return Object(r.createElement)("div",{className:"ct-modal-content"},Object(r.createElement)("h2",null,l),Object(r.createElement)("p",null,s),Object(r.createElement)("div",{className:"ct-modal-scroll"},Object(r.createElement)(N,{value:O||d,onChange:function(e){j(e)}})),Object(r.createElement)("div",{className:"ct-modal-actions has-divider"},Object(r.createElement)("button",{className:"button-primary",disabled:!O,onClick:function(){f(O),m(!1)}},Object(c.__)("Save Conditions","blc"))))}}))},I=n(7),z=n.n(I);function L(e){return function(e){if(Array.isArray(e))return M(e)}(e)||function(e){if("undefined"!=typeof Symbol&&Symbol.iterator in Object(e))return Array.from(e)}(e)||F(e)||function(){throw new TypeError("Invalid attempt to spread non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}function R(e,t){return function(e){if(Array.isArray(e))return e}(e)||function(e,t){if("undefined"==typeof Symbol||!(Symbol.iterator in Object(e)))return;var n=[],r=!0,o=!1,c=void 0;try{for(var a,i=e[Symbol.iterator]();!(r=(a=i.next()).done)&&(n.push(a.value),!t||n.length!==t);r=!0);}catch(e){o=!0,c=e}finally{try{r||null==i.return||i.return()}finally{if(o)throw c}}return n}(e,t)||F(e,t)||function(){throw new TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}function F(e,t){if(e){if("string"==typeof e)return M(e,t);var n=Object.prototype.toString.call(e).slice(8,-1);return"Object"===n&&e.constructor&&(n=e.constructor.name),"Map"===n||"Set"===n?Array.from(e):"Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)?M(e,t):void 0}}function M(e,t){(null==t||t>e.length)&&(t=e.length);for(var n=0,r=new Array(t);n<t;n++)r[n]=e[n];return r}var U=function(){var e=R(Object(r.useState)(null),2),t=e[0],n=e[1],o=R(Object(r.useState)(null),2),i=o[0],u=o[1],s=R(Object(r.useState)(!1),2),d=s[0],f=s[1],p=R(Object(r.useState)(!1),2),b=p[0],m=p[1],y=R(Object(r.useState)(["options"]),2),O=y[0],j=y[1],h=Object(r.useRef)(),v=Object(r.useRef)();return Object(r.useEffect)((function(){var e=function(e){e.stopPropagation(),e.preventDefault(),e.dataTransfer.dropEffect="copy",f(!0)},t=function(e){e.stopPropagation(),e.preventDefault(),f(!1)},r=function(e){e.stopPropagation(),e.preventDefault(),f(!1);var t=Array.from(e.dataTransfer.files||[]);if(Array.from(e.dataTransfer.items||[]).length>0){var r=e.dataTransfer.items[0].getAsFile();n(r)}else t.length>0&&n(t[0])};return v.current.addEventListener("dragover",e,!1),v.current.addEventListener("dragleave",t,!1),v.current.addEventListener("drop",r,!1),function(){v.current.removeEventListener("dragover",e,!1),v.current.removeEventListener("dragleave",t,!1),v.current.removeEventListener("drop",r,!1)}}),[]),Object(r.createElement)("div",{className:"ct-import-export"},Object(r.createElement)("div",{className:"ct-title","data-type":"simple"},Object(r.createElement)("h3",null,Object(c.__)("Export Options","blc")),Object(r.createElement)("div",{className:"ct-option-description"},Object(c.__)("Click the button below to export the customization settings for this theme.","blc"))),Object(r.createElement)("div",{className:"ct-control","data-design":"block"},Object(r.createElement)("header",null),Object(r.createElement)("section",null,Object(r.createElement)("button",{className:"button",onClick:function(e){e.preventDefault(),m(!0)}},Object(c.__)("Export Customizations","blc")))),Object(r.createElement)("div",{className:"ct-title","data-type":"simple"},Object(r.createElement)("h3",null,Object(c.__)("Import Options","blc")),Object(r.createElement)("div",{className:"ct-option-description"},Object(c.__)("Upload a file to import customization settings for this theme.","blc"))),Object(r.createElement)("div",{className:"ct-control","data-design":"block"},Object(r.createElement)("header",null),Object(r.createElement)("section",null,Object(r.createElement)("div",{className:"ct-file-upload"},Object(r.createElement)("button",{type:"button",className:l()("button ct-upload-button",{active:d}),ref:v,onClick:function(){h.current.click()}},t?t.name:Object(c.__)("Click or drop to upload a file...","blc")),Object(r.createElement)("input",{ref:h,type:"file",onChange:function(e){var t=R(e.target.files,1)[0];n(t)}}),Object(r.createElement)("button",{className:"button",onClick:function(e){if(e.preventDefault(),t){var n=new FileReader;n.readAsText(t,"UTF-8"),n.onload=function(e){var t=new FormData;t.append("action","blocksy_customizer_import"),t.append("nonce",ct_customizer_localizations.customizer_reset_none),t.append("wp_customize","on"),t.append("data",e.target.result);try{fetch(window.ajaxurl,{method:"POST",body:t}).then((function(e){200===e.status&&e.json().then((function(e){e.success,e.data;location.reload()}))}))}catch(e){}}}}},Object(c.__)("Import Customizations","blc"))))),ct_customizer_localizations.has_child_theme&&Object(r.createElement)(r.Fragment,null,Object(r.createElement)("div",{className:"ct-title","data-type":"simple"},Object(r.createElement)("h3",null,Object(c.__)("Copy Options","blc")),Object(r.createElement)("div",{className:"ct-option-description"},Object(c.__)("Copy and import your customizations from parent or child theme.","blc"))),ct_customizer_localizations.is_parent_theme&&Object(r.createElement)("div",{className:"ct-control","data-design":"block"},Object(r.createElement)("header",null),Object(r.createElement)("section",null,Object(r.createElement)("button",{className:"button",onClick:function(e){e.preventDefault(),u("child")}},Object(c.__)("Copy From Child Theme","blc")))),!ct_customizer_localizations.is_parent_theme&&Object(r.createElement)("div",{className:"ct-control","data-design":"block"},Object(r.createElement)("header",null),Object(r.createElement)("section",null,Object(r.createElement)("button",{className:"button",onClick:function(e){e.preventDefault(),u("parent")}},Object(c.__)("Copy From Parent Theme","blc"))))),Object(r.createElement)(a.Overlay,{items:i,className:"ct-admin-modal ct-import-export-modal",onDismiss:function(){return u(!1)},render:function(){return Object(r.createElement)("div",{className:"ct-modal-content"},Object(r.createElement)("svg",{width:"35",height:"35",viewBox:"0 0 66 66"},Object(r.createElement)("path",{d:"M66 33.1c0 2.8-.4 5.5-1.1 8.2 0 0-1.7-.6-1.9-.6 3.4-13.1-2.2-27.4-14.5-34.5C41.3 2 33 .9 25 3.1c-3.5.9-6.7 2.4-9.5 4.4L20 12 6 15 9 1l5 5c3.1-2.2 6.6-3.9 10.5-4.9 2.7-.7 5.4-1.1 8-1.1 5.9-.1 11.7 1.4 17 4.4C60.1 10.5 66 21.7 66 33.1zm-49 6.3l2.4-3c-.3-1.2-.4-2.3-.4-3.4s.1-2.2.4-3.3l-2.4-3 2.5-4.3 3.8.5c1.6-1.6 3.6-2.7 5.8-3.3l1.4-3.6h5l1.4 3.6c2.2.6 4.2 1.8 5.8 3.3l3.8-.5 2.5 4.3-2.4 3c.3 1.1.4 2.2.4 3.3s-.1 2.2-.4 3.3l2.4 3-2.5 4.3-3.8-.5c-1.6 1.6-3.6 2.7-5.8 3.3L35.4 50h-5L29 46.4c-2.2-.6-4.2-1.8-5.8-3.3l-3.8.5-2.4-4.2zm8-6.4c0 4.4 3.6 8 8 8s8-3.6 8-8-3.6-8-8-8-8 3.6-8 8zm25.9 25.3c-3 2.1-6.3 3.7-9.9 4.7-8 2.1-16.4 1-23.5-3.1C5.2 52.8-.4 38.5 3 25.4c-.7-.1-1.3-.3-2-.5-.7 2.7-1 5.3-1 8 0 11.4 5.9 22.5 16.5 28.6 7.6 4.4 16.5 5.6 25 3.3 4-1.1 7.6-2.8 10.8-5.2l4.6 4.6 3-14-14 3 5 5.1z"})),Object(r.createElement)("h2",{className:"ct-modal-title"},!ct_customizer_localizations.is_parent_theme&&Object(c.__)("Copy From Parent Theme","blc"),ct_customizer_localizations.is_parent_theme&&Object(c.__)("Copy From Child Theme","blc")),Object(r.createElement)("p",null,!ct_customizer_localizations.is_parent_theme&&Object(c.__)("You are about to copy all the settings from your parent theme into the child theme. Are you sure you want to continue?","blc"),ct_customizer_localizations.is_parent_theme&&Object(c.__)("You are about to copy all the settings from your child theme into the parent theme. Are you sure you want to continue?","blc")),Object(r.createElement)("div",{className:"ct-modal-actions has-divider","data-buttons":"2"},Object(r.createElement)("button",{onClick:function(e){e.preventDefault(),e.stopPropagation(),u(!1)},className:"button"},Object(c.__)("Cancel","blc")),Object(r.createElement)("button",{className:"button button-primary",onClick:function(e){e.preventDefault();var t=new FormData;t.append("action","blocksy_customizer_copy_options"),t.append("wp_customize","on"),t.append("strategy",i);try{fetch(window.ajaxurl,{method:"POST",body:t}).then((function(e){200===e.status&&e.json().then((function(e){e.success,e.data;location.reload()}))}))}catch(e){}}},Object(c.__)("Yes, I am sure","blc"))))}}),Object(r.createElement)(a.Overlay,{items:b,className:"ct-admin-modal ct-export-modal",onDismiss:function(){return m(!1)},render:function(){return Object(r.createElement)("div",{className:"ct-modal-content"},Object(r.createElement)("h2",{className:"ct-modal-title"},Object(c.__)("Export Settings","blc")),Object(r.createElement)("p",null,Object(c.__)("Choose what set of settings you want to export.","blc")),Object(r.createElement)("div",{className:"ct-export-options"},["options","widgets"].map((function(e){return Object(r.createElement)("div",{className:"ct-checkbox-container",onClick:function(){1===O.length&&O[0]===e||j((function(t){return t.includes(e)?t.filter((function(t){return t!==e})):[].concat(L(t),[e])}))}},{options:Object(c.__)("Customizer settings","blc"),widgets:Object(c.__)("Widgets settings","blc")}[e],Object(r.createElement)("span",{className:l()("ct-checkbox",{active:O.includes(e)})},Object(r.createElement)("svg",{width:"10",height:"8",viewBox:"0 0 11.2 9.1"},Object(r.createElement)("polyline",{className:"check",points:"1.2,4.8 4.4,7.9 9.9,1.2 "}))))}))),Object(r.createElement)("div",{className:"ct-modal-actions has-divider","data-buttons":"2"},Object(r.createElement)("button",{onClick:function(e){e.preventDefault(),e.stopPropagation(),m(!1)},className:"button"},Object(c.__)("Cancel","blc")),Object(r.createElement)("button",{className:"button button-primary",onClick:function(e){e.preventDefault();var t=new FormData;t.append("action","blocksy_customizer_export"),t.append("strategy",O.join(":")),t.append("wp_customize","on");try{fetch(window.ajaxurl,{method:"POST",body:t}).then((function(e){200===e.status&&e.json().then((function(e){var t=e.success,n=e.data;if(t){var r=new Blob([n.data],{type:"application/octet-stream;charset=utf-8"});z()(r,"blocksy-export.dat"),m(!1)}}))}))}catch(e){}}},Object(c.__)("Export","blc"))))}}))},B=n(5),H=n.n(B),V=n(8),$=n(9),G=n.n($),Y=n(10),q=n.n(Y),J=n(11),W=n.n(J);function X(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}function K(e){return function(e){if(Array.isArray(e))return te(e)}(e)||function(e){if("undefined"!=typeof Symbol&&Symbol.iterator in Object(e))return Array.from(e)}(e)||ee(e)||function(){throw new TypeError("Invalid attempt to spread non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}function Q(e,t,n,r,o,c,a){try{var i=e[c](a),l=i.value}catch(e){return void n(e)}i.done?t(l):Promise.resolve(l).then(r,o)}function Z(e,t){return function(e){if(Array.isArray(e))return e}(e)||function(e,t){if("undefined"==typeof Symbol||!(Symbol.iterator in Object(e)))return;var n=[],r=!0,o=!1,c=void 0;try{for(var a,i=e[Symbol.iterator]();!(r=(a=i.next()).done)&&(n.push(a.value),!t||n.length!==t);r=!0);}catch(e){o=!0,c=e}finally{try{r||null==i.return||i.return()}finally{if(o)throw c}}return n}(e,t)||ee(e,t)||function(){throw new TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}function ee(e,t){if(e){if("string"==typeof e)return te(e,t);var n=Object.prototype.toString.call(e).slice(8,-1);return"Object"===n&&e.constructor&&(n=e.constructor.name),"Map"===n||"Set"===n?Array.from(e):"Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)?te(e,t):void 0}}function te(e,t){(null==t||t>e.length)&&(t=e.length);for(var n=0,r=new Array(t);n<t;n++)r[n]=e[n];return r}var ne=q()(),re=function(e){e.forcedEdit;var t,n,o=e.headerId,i=Z(Object(r.useState)(!1),2),l=i[0],u=i[1],s=Z(Object(r.useState)(null),2),d=s[0],f=s[1],p=Object(r.useContext)(a.PlacementsDragDropContext),b=(p.builderValueCollection,p.builderValueDispatch,Object(r.useRef)()),m=W()(ne),y=G()("".concat(blocksy_admin.ajax_url,"?action=blocksy_header_get_all_conditions"),{method:"POST",formatter:(t=regeneratorRuntime.mark((function e(t){var n,r,o;return regeneratorRuntime.wrap((function(e){for(;;)switch(e.prev=e.next){case 0:return e.next=2,t.json();case 2:if(n=e.sent,r=n.success,o=n.data,r&&o.conditions){e.next=7;break}throw new Error;case 7:return e.abrupt("return",o.conditions);case 8:case"end":return e.stop()}}),e)})),n=function(){var e=this,n=arguments;return new Promise((function(r,o){var c=t.apply(e,n);function a(e){Q(c,r,o,a,i,"next",e)}function i(e){Q(c,r,o,a,i,"throw",e)}a(void 0)}))},function(e){return n.apply(this,arguments)}),depends:[m]}),O=y.data,j=y.isLoading;y.error;return Object(r.createElement)(r.Fragment,null,Object(r.createElement)("button",{className:"button-primary",style:{width:"100%"},onClick:function(e){j||(e.preventDefault(),e.stopPropagation(),u(!0))}},Object(c.__)("Add/Edit Conditions","blc")),Object(r.createElement)(a.Overlay,{items:l,initialFocusRef:b,className:"ct-admin-modal ct-builder-conditions-modal",onDismiss:function(){u(!1),f(null)},render:function(){var e;return Object(r.createElement)("div",{className:"ct-modal-content",ref:b},Object(r.createElement)("h2",null,sprintf(Object(c.__)("Display Conditions","blc"))),Object(r.createElement)("p",null,Object(c.__)("Add one or more conditions in order to display your header.","blc")),Object(r.createElement)("div",{className:"ct-modal-scroll"},Object(r.createElement)(a.OptionsPanel,{onChange:function(e,t){f((function(e){return[].concat(K((e||O).filter((function(e){return e.id!==o}))),[{id:o,conditions:t}])}))},options:{conditions:(e={type:"blocksy-display-condition",design:"none",value:[]},X(e,"design","none"),X(e,"label",!1),e)},value:{conditions:((d||O).find((function(e){return e.id===o}))||{conditions:[]}).conditions},hasRevertButton:!1})),Object(r.createElement)("div",{className:"ct-modal-actions has-divider"},Object(r.createElement)("button",{className:"button-primary",disabled:!d,onClick:function(){fetch("".concat(wp.ajax.settings.url,"?action=blocksy_header_update_all_conditions"),{headers:{Accept:"application/json","Content-Type":"application/json"},method:"POST",body:JSON.stringify(d)}).then((function(e){return e.json()})).then((function(){ne(),u(!1)}))}},Object(c.__)("Save Conditions","blc"))))}}))};function oe(){return(oe=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var n=arguments[t];for(var r in n)Object.prototype.hasOwnProperty.call(n,r)&&(e[r]=n[r])}return e}).apply(this,arguments)}function ce(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);t&&(r=r.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),n.push.apply(n,r)}return n}function ae(e){for(var t=1;t<arguments.length;t++){var n=null!=arguments[t]?arguments[t]:{};t%2?ce(Object(n),!0).forEach((function(t){ie(e,t,n[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(n)):ce(Object(n)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(n,t))}))}return e}function ie(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}function le(e,t){return function(e){if(Array.isArray(e))return e}(e)||function(e,t){if("undefined"==typeof Symbol||!(Symbol.iterator in Object(e)))return;var n=[],r=!0,o=!1,c=void 0;try{for(var a,i=e[Symbol.iterator]();!(r=(a=i.next()).done)&&(n.push(a.value),!t||n.length!==t);r=!0);}catch(e){o=!0,c=e}finally{try{r||null==i.return||i.return()}finally{if(o)throw c}}return n}(e,t)||function(e,t){if(!e)return;if("string"==typeof e)return ue(e,t);var n=Object.prototype.toString.call(e).slice(8,-1);"Object"===n&&e.constructor&&(n=e.constructor.name);if("Map"===n||"Set"===n)return Array.from(e);if("Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n))return ue(e,t)}(e,t)||function(){throw new TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}function ue(e,t){(null==t||t>e.length)&&(t=e.length);for(var n=0,r=new Array(t);n<t;n++)r[n]=e[n];return r}var se=function(){var e=le(Object(r.useState)(!1),2),t=e[0],n=e[1],i=(ct_customizer_localizations.header_builder_data.secondary_items.header,ct_customizer_localizations.header_builder_data.header,Object(r.useContext)(a.PlacementsDragDropContext)),u=i.builderValueDispatch,s=i.builderValue,d=(i.option,i.builderValueCollection),f=i.panelsActions,p=Object(V.applyFilters)("blocksy.header.available-sections",null,d.sections)||d.sections.filter((function(e){var t=e.id;return"type-2"!==t&&"type-3"!==t&&-1===t.indexOf("ct-custom")}));return Object(r.createElement)(r.Fragment,null,Object(r.createElement)("ul",{className:l()("ct-panels-manager")},p.map((function(e){var t=e.name,o=e.id,i=t||{"type-1":Object(c.__)("Global Header","blocksy")}[o]||o,d="builder_header_panel_".concat(o),p=ct_customizer_localizations.header_builder_data.header_data.header_options,b={label:i,"inner-options":ae(ae({},o.indexOf("ct-custom")>-1?{conditions_button:{label:Object(c.__)("Edit Conditions","blc"),type:"jsx",design:"block",render:function(){return Object(r.createElement)(re,{headerId:o})}},divider:{type:"ct-divider"}}:{}),p)};return Object(r.createElement)(a.PanelMetaWrapper,oe({id:d,key:o,option:b},f,{getActualOption:function(e){var t=e.open;return Object(r.createElement)(r.Fragment,null,o===s.id&&Object(r.createElement)(a.Panel,{id:d,getValues:function(){return ae({id:o},s.settings||{})},option:b,onChangeFor:function(e,t){u({type:"BUILDER_GLOBAL_SETTING_ON_CHANGE",payload:{optionId:e,optionValue:t,values:Object(a.getValueFromInput)(p,Array.isArray(s.settings)?{}:s.settings||{})}})},view:"simple"}),Object(r.createElement)("li",{className:l()({active:o===s.id,"ct-global":"type-1"===o}),onClick:function(){o===s.id?t():u({type:"PICK_BUILDER_SECTION",payload:{id:o}})}},Object(r.createElement)("span",{className:"ct-panel-name"},i),o.indexOf("ct-custom")>-1&&o!==s.id&&Object(r.createElement)("span",{className:"ct-remove-instance",onClick:function(e){e.preventDefault(),e.stopPropagation(),n(o)}},Object(r.createElement)("i",{className:"ct-tooltip-top"},Object(c.__)("Remove header","blc")),Object(r.createElement)("svg",{width:"11px",height:"11px",viewBox:"0 0 24 24"},Object(r.createElement)("path",{d:"M9.6,0l0,1.2H1.2v2.4h21.6V1.2h-8.4l0-1.2H9.6z M2.8,6l1.8,15.9C4.8,23.1,5.9,24,7.1,24h9.9c1.2,0,2.2-0.9,2.4-2.1L21.2,6H2.8z"})))))}}))}))),Object(r.createElement)(o.Slot,{name:"PlacementsBuilderPanelsManagerAfter"},(function(e){return 0===e.length?null:e})),Object(r.createElement)(a.Overlay,{items:t,className:"ct-admin-modal ct-reset-options",onDismiss:function(){return n(!1)},render:function(){return Object(r.createElement)("div",{className:"ct-modal-content"},Object(r.createElement)("h2",{className:"ct-modal-title"},Object(c.__)("Remove Header","blc")),Object(r.createElement)("p",null,Object(c.__)("You are about to remove a custom header, are you sure you want to continue?","blc")),Object(r.createElement)("div",{className:"ct-modal-actions has-divider","data-buttons":"2"},Object(r.createElement)("button",{onClick:function(e){e.preventDefault(),e.stopPropagation(),n(!1)},className:"button"},Object(c.__)("Cancel","blc")),Object(r.createElement)("button",{className:"button button-primary",onClick:function(e){e.preventDefault(),u({type:"REMOVE_BUILDER_SECTION",payload:{id:t}}),n(!1)}},Object(c.__)("Confirm","blc"))))}}))};H.a.on("blocksy:options:before-option",(function(e){if(e.option&&"ct-header-builder"===e.option.type){var t=e.content;e.content=Object(r.createElement)(r.Fragment,null,t,Object(r.createElement)(o.Fill,{name:"PlacementsBuilderPanelsManager"},Object(r.createElement)(se,null)))}})),H.a.on("blocksy:options:register",(function(e){e["blocksy-display-condition"]=T,e["blocksy-customizer-options-manager"]=U}))}]);
|
| 3 |
Copyright (c) 2017 Jed Watson.
|
| 4 |
Licensed under the MIT License (MIT), see
|
| 5 |
http://jedwatson.github.io/classnames
|
| 6 |
+
*/!function(){"use strict";var n={}.hasOwnProperty;function o(){for(var e=[],t=0;t<arguments.length;t++){var r=arguments[t];if(r){var c=typeof r;if("string"===c||"number"===c)e.push(r);else if(Array.isArray(r)&&r.length){var a=o.apply(null,r);a&&e.push(a)}else if("object"===c)for(var i in r)n.call(r,i)&&r[i]&&e.push(i)}}return e.join(" ")}e.exports?(o.default=o,e.exports=o):void 0===(r=function(){return o}.apply(t,[]))||(e.exports=r)}()},function(e,t){e.exports=window.wp.components},function(e,t){e.exports=window.ctEvents},function(e,t){e.exports=window.React},function(e,t,n){(function(t){function n(e){return(n="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e})(e)}var r="object"===("undefined"==typeof window?"undefined":n(window))&&window.window===window?window:"object"===("undefined"==typeof self?"undefined":n(self))&&self.self===self?self:"object"===(void 0===t?"undefined":n(t))&&t.global===t?t:this;function o(e,t,n){var r=new XMLHttpRequest;r.open("GET",e),r.responseType="blob",r.onload=function(){i(r.response,t,n)},r.onerror=function(){console.error("could not download file")},r.send()}function c(e){var t=new XMLHttpRequest;t.open("HEAD",e,!1);try{t.send()}catch(e){}return t.status>=200&&t.status<=299}function a(e){try{e.dispatchEvent(new MouseEvent("click"))}catch(n){var t=document.createEvent("MouseEvents");t.initMouseEvent("click",!0,!0,window,0,0,0,80,20,!1,!1,!1,!1,0,null),e.dispatchEvent(t)}}var i="object"!==("undefined"==typeof window?"undefined":n(window))||window!==r?function(){}:"download"in HTMLAnchorElement.prototype?function(e,t,n){var i=r.URL||r.webkitURL,l=document.createElement("a");t=t||e.name||"download",l.download=t,l.rel="noopener","string"==typeof e?(l.href=e,l.origin!==location.origin?c(l.href)?o(e,t,n):a(l,l.target="_blank"):a(l)):(l.href=i.createObjectURL(e),setTimeout((function(){i.revokeObjectURL(l.href)}),4e4),setTimeout((function(){a(l)}),0))}:"msSaveOrOpenBlob"in navigator?function(e,t,r){if(t=t||e.name||"download","string"==typeof e)if(c(e))o(e,t,r);else{var i=document.createElement("a");i.href=e,i.target="_blank",setTimeout((function(){a(i)}))}else navigator.msSaveOrOpenBlob(function(e,t){return void 0===t?t={autoBom:!1}:"object"!==n(t)&&(console.warn("Deprecated: Expected third argument to be a object"),t={autoBom:!t}),t.autoBom&&/^\s*(?:text\/\S*|application\/xml|\S*\/\S*\+xml)\s*;.*charset\s*=\s*utf-8/i.test(e.type)?new Blob([String.fromCharCode(65279),e],{type:e.type}):e}(e,r),t)}:function(e,t,c,a){if((a=a||open("","_blank"))&&(a.document.title=a.document.body.innerText="downloading..."),"string"==typeof e)return o(e,t,c);var i="application/octet-stream"===e.type,l=/constructor/i.test(r.HTMLElement)||r.safari,u=/CriOS\/[\d]+/.test(navigator.userAgent);if((u||i&&l)&&"object"===("undefined"==typeof FileReader?"undefined":n(FileReader))){var s=new FileReader;s.onloadend=function(){var e=s.result;e=u?e:e.replace(/^data:[^;]*;/,"data:attachment/file;"),a?a.location.href=e:location=e,a=null},s.readAsDataURL(e)}else{var d=r.URL||r.webkitURL,f=d.createObjectURL(e);a?a.location=f:location.href=f,a=null,setTimeout((function(){d.revokeObjectURL(f)}),4e4)}};e.exports=i}).call(this,n(12))},function(e,t){e.exports=window.wp.hooks},function(e,t,n){var r=n(13);function o(e,t,n,r,c){var a=new Error(n,r,c);return a.name="UseFetchError",a.status=e,a.statusText=t,Object.setPrototypeOf(a,Object.getPrototypeOf(this)),Error.captureStackTrace&&Error.captureStackTrace(a,o),a}o.prototype=Object.create(Error.prototype,{constructor:{value:Error,enumerable:!1,writable:!0,configurable:!0}}),Object.setPrototypeOf(o,Error),e.exports=function(e,t,n){var c=(n&&n.depends||t&&t.depends||[]).reduce((function(e,t){return e||!t}),!1);return r(!c&&function(e,t,n){return fetch(e,t).then(n&&n.formatter||t&&t.formatter||function(e){if(!e.ok)throw new o(e.status,e.statusText,"Fetch error");return e.json()})},e,t||{},n||{})}},function(e,t,n){var r=n(15);e.exports=function(){var e=function(){e.id=r(),e.subscribers.forEach((function(e){e()}))};return e.id=r(),e.subscribers=[],e.subscribe=function(t){e.subscribers.push(t)},e.unsubscribe=function(t){e.subscribers.indexOf(t)>=0&&e.subscribers.splice(e.subscribers.indexOf(t),1)},e}},function(e,t,n){var r=n(6);e.exports=function(e){var t=r.useState(e.id),n=function(){return t[1](e.id)};return r.useEffect((function(){return e.subscribe(n),function(){return e.unsubscribe(n)}}),[]),t[0]}},function(e,t){var n;n=function(){return this}();try{n=n||new Function("return this")()}catch(e){"object"==typeof window&&(n=window)}e.exports=n},function(e,t,n){var r=n(6),o=n(14);e.exports=function(e){var t=Array.prototype.slice.call(arguments,[1]),n=r.useState({isLoading:!!e});return r.useEffect((function(){e&&(!n[0].isLoading&&n[1]({data:n[0].data,isLoading:!0}),e.apply(null,t).then((function(e){n[1]({data:e,isLoading:!1})})).catch((function(e){n[1]({error:e,isLoading:!1})})))}),o(t)),n[0]}},function(e,t){e.exports=function e(){for(var t=[],n=0;n<arguments.length;n++){var r=arguments[n];if(r instanceof Array)for(var o=0;o<r.length;o++)t=t.concat(e(r[o]));else if("undefined"!=typeof URL&&r instanceof URL)t=t.concat(r.toJSON());else if(r instanceof Object)for(var c=Object.keys(r),a=0;a<c.length;a++){var i=c[a];t=t.concat([i]).concat(e(r[i]))}else t=t.concat(r)}return t}},function(e,t,n){for(var r=self.crypto||self.msCrypto,o="-_",c=36;c--;)o+=c.toString(36);for(c=36;c---10;)o+=c.toString(36).toUpperCase();e.exports=function(e){var t="",n=r.getRandomValues(new Uint8Array(e||21));for(c=e||21;c--;)t+=o[63&n[c]];return t}},function(e,t,n){"use strict";n.r(t);var r=n(0),o=n(4),c=n(1),a=n(2),i=n(3),l=n.n(i);function u(e){return function(e){if(Array.isArray(e))return m(e)}(e)||function(e){if("undefined"!=typeof Symbol&&Symbol.iterator in Object(e))return Array.from(e)}(e)||b(e)||function(){throw new TypeError("Invalid attempt to spread non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}function s(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);t&&(r=r.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),n.push.apply(n,r)}return n}function d(e){for(var t=1;t<arguments.length;t++){var n=null!=arguments[t]?arguments[t]:{};t%2?s(Object(n),!0).forEach((function(t){f(e,t,n[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(n)):s(Object(n)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(n,t))}))}return e}function f(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}function p(e,t){return function(e){if(Array.isArray(e))return e}(e)||function(e,t){if("undefined"==typeof Symbol||!(Symbol.iterator in Object(e)))return;var n=[],r=!0,o=!1,c=void 0;try{for(var a,i=e[Symbol.iterator]();!(r=(a=i.next()).done)&&(n.push(a.value),!t||n.length!==t);r=!0);}catch(e){o=!0,c=e}finally{try{r||null==i.return||i.return()}finally{if(o)throw c}}return n}(e,t)||b(e,t)||function(){throw new TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}function b(e,t){if(e){if("string"==typeof e)return m(e,t);var n=Object.prototype.toString.call(e).slice(8,-1);return"Object"===n&&e.constructor&&(n=e.constructor.name),"Map"===n||"Set"===n?Array.from(e):"Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)?m(e,t):void 0}}function m(e,t){(null==t||t>e.length)&&(t=e.length);for(var n=0,r=new Array(t);n<t;n++)r[n]=e[n];return r}var y=function(e){return e.filter((function(e,t,n){return n.findIndex((function(t){return t.ID===e.ID}))===t}))},O=[],j=function(e){var t=e.condition,n=e.onChange,o=p(Object(r.useState)(O),2),i=o[0],l=o[1],s=Object(r.useMemo)((function(){return{post_ids:"post",page_ids:"page",custom_post_type_ids:"ct_cpt"}[t.rule]}),[t.rule]),f=Object(r.useMemo)((function(){return(t.payload||{}).post_id||""}),[t.payload&&t.payload.post_id]),b=function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:"";fetch("".concat(wp.ajax.settings.url,"?action=blocksy_conditions_get_all_posts"),{headers:{Accept:"application/json","Content-Type":"application/json"},body:JSON.stringify(d(d({post_type:s},e?{search_query:e}:{}),f?{alsoInclude:f}:{})),method:"POST"}).then((function(e){return e.json()})).then((function(e){var t=e.data.posts;l((function(e){return y([].concat(u(e),u(t)))})),O=y([].concat(u(O),u(t)))}))};return Object(r.useEffect)((function(){b()}),[s]),Object(r.createElement)(a.Select,{option:{appendToBody:!0,defaultToFirstItem:!1,searchPlaceholder:Object(c.__)("Type to search by ID or title...","blc"),placeholder:"post_ids"===t.rule?Object(c.__)("Select post","blc"):"page_ids"===t.rule?Object(c.__)("Select page","blc"):Object(c.__)("Custom Post Type ID","blc"),choices:i.filter((function(e){var t=e.post_type;return"ct_cpt"===s?"post"!==t&&"page"!==t:s===t})).map((function(e){return{key:e.ID,value:e.post_title}})),search:!0},value:f,onChange:function(e){return n(e)},onInputValueChange:function(e){i.find((function(t){return t.post_title===e}))||b(e)}})};function v(e,t){return function(e){if(Array.isArray(e))return e}(e)||function(e,t){if("undefined"==typeof Symbol||!(Symbol.iterator in Object(e)))return;var n=[],r=!0,o=!1,c=void 0;try{for(var a,i=e[Symbol.iterator]();!(r=(a=i.next()).done)&&(n.push(a.value),!t||n.length!==t);r=!0);}catch(e){o=!0,c=e}finally{try{r||null==i.return||i.return()}finally{if(o)throw c}}return n}(e,t)||S(e,t)||function(){throw new TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}function h(e,t){if(null==e)return{};var n,r,o=function(e,t){if(null==e)return{};var n,r,o={},c=Object.keys(e);for(r=0;r<c.length;r++)n=c[r],t.indexOf(n)>=0||(o[n]=e[n]);return o}(e,t);if(Object.getOwnPropertySymbols){var c=Object.getOwnPropertySymbols(e);for(r=0;r<c.length;r++)n=c[r],t.indexOf(n)>=0||Object.prototype.propertyIsEnumerable.call(e,n)&&(o[n]=e[n])}return o}function _(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);t&&(r=r.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),n.push.apply(n,r)}return n}function g(e){for(var t=1;t<arguments.length;t++){var n=null!=arguments[t]?arguments[t]:{};t%2?_(Object(n),!0).forEach((function(t){E(e,t,n[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(n)):_(Object(n)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(n,t))}))}return e}function E(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}function w(e){return function(e){if(Array.isArray(e))return x(e)}(e)||function(e){if("undefined"!=typeof Symbol&&Symbol.iterator in Object(e))return Array.from(e)}(e)||S(e)||function(){throw new TypeError("Invalid attempt to spread non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}function S(e,t){if(e){if("string"==typeof e)return x(e,t);var n=Object.prototype.toString.call(e).slice(8,-1);return"Object"===n&&e.constructor&&(n=e.constructor.name),"Map"===n||"Set"===n?Array.from(e):"Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)?x(e,t):void 0}}function x(e,t){(null==t||t>e.length)&&(t=e.length);for(var n=0,r=new Array(t);n<t;n++)r[n]=e[n];return r}var C=[],k=[],A=[],N=function(e){var t=e.value,n=e.onChange,o=blocksy_admin.all_condition_rules.reduce((function(e,t){var n=t.rules,r=t.title;return[].concat(w(e),w(n.map((function(e){return g(g({},e),{},{group:r})}))))}),[]).reduce((function(e,t){var n=t.title,r=t.id,o=h(t,["title","id"]);return[].concat(w(e),[g({key:r,value:n},o)])}),[]),i=v(Object(r.useState)(C),2),u=(i[0],i[1],v(Object(r.useState)(k),2)),s=u[0],d=u[1],f=v(Object(r.useState)(A),2),p=f[0],b=f[1],m=function(e){return"post_ids"===e.rule||"page_ids"===e.rule||"custom_post_type_ids"===e.rule||"taxonomy_ids"===e.rule||"post_with_taxonomy_ids"===e.rule||"current_language"===e.rule};return Object(r.useEffect)((function(){fetch("".concat(wp.ajax.settings.url,"?action=blocksy_conditions_get_all_taxonomies"),{headers:{Accept:"application/json","Content-Type":"application/json"},method:"POST"}).then((function(e){return e.json()})).then((function(e){var t=e.data,n=t.taxonomies,r=t.languages;d(n),k=n,b(r),A=r}))}),[]),Object(r.createElement)("div",{className:"ct-display-conditions"},t.map((function(e,i){return Object(r.createElement)("div",{className:l()("ct-condition-group",{"ct-cols-3":m(e),"ct-cols-2":!m(e)}),key:i},Object(r.createElement)(a.Select,{key:"first",option:{inputClassName:"ct-condition-type",selectInputStart:function(){return Object(r.createElement)("span",{className:"ct-".concat(e.type)})},placeholder:Object(c.__)("Select variation","blc"),choices:{include:Object(c.__)("Include","blc"),exclude:Object(c.__)("Exclude","blc")}},value:e.type,onChange:function(r){n(t.map((function(t,n){return g({},n===i?g(g({},e),{},{type:r}):t)})))}}),Object(r.createElement)(a.Select,{key:"second",option:{appendToBody:!0,placeholder:Object(c.__)("Select rule","blc"),choices:"user"===e.category?o.filter((function(e){return 0===e.key.indexOf("user_")})):o.filter((function(e){return-1===e.key.indexOf("user_")})),search:!0},value:e.rule,onChange:function(r){n(t.map((function(t,n){return g({},n===i?g(g({},e),{},{rule:r}):t)})))}}),("post_ids"===e.rule||"custom_post_type_ids"===e.rule||"page_ids"===e.rule)&&Object(r.createElement)(j,{condition:e,onChange:function(r){n(t.map((function(t,n){return g({},n===i?g(g({},e),{},{payload:g(g({},e.payload),{},{post_id:r})}):t)})))}}),("taxonomy_ids"===e.rule||"post_with_taxonomy_ids"===e.rule)&&Object(r.createElement)(a.Select,{option:{appendToBody:!0,defaultToFirstItem:!1,placeholder:Object(c.__)("Select taxonomy","blc"),choices:s.map((function(e){return g({key:e.id,value:e.name},e.group?{group:e.group}:{})})),search:!0},value:(e.payload||{}).taxonomy_id||"",onChange:function(r){n(t.map((function(t,n){return g({},n===i?g(g({},e),{},{payload:g(g({},e.payload),{},{taxonomy_id:r})}):t)})))}}),"current_language"===e.rule&&Object(r.createElement)(a.Select,{option:{appendToBody:!0,defaultToFirstItem:!1,placeholder:Object(c.__)("Select language","blc"),choices:p.map((function(e){return{key:e.id,value:e.name}})),search:!0},value:(e.payload||{}).language||"",onChange:function(r){n(t.map((function(t,n){return g({},n===i?g(g({},e),{},{payload:g(g({},e.payload),{},{language:r})}):t)})))}}),Object(r.createElement)("button",{type:"button",onClick:function(e){e.preventDefault();var r=w(t);r.splice(i,1),n(r)}},"×"))})),Object(r.createElement)("div",{className:"ct-conditions-actions"},Object(r.createElement)("button",{type:"button",className:"button add-condition",onClick:function(e){e.preventDefault(),n([].concat(w(t),[{type:"include",rule:"everywhere",payload:{}}]))}},Object(c.__)("Add Display Condition","blc")),Object(r.createElement)("button",{type:"button",className:"button add-condition",onClick:function(e){e.preventDefault(),n([].concat(w(t),[{type:"include",rule:"user_logged_in",payload:{},category:"user"}]))}},Object(c.__)("Add User Condition","blc"))))};function P(e,t){return function(e){if(Array.isArray(e))return e}(e)||function(e,t){if("undefined"==typeof Symbol||!(Symbol.iterator in Object(e)))return;var n=[],r=!0,o=!1,c=void 0;try{for(var a,i=e[Symbol.iterator]();!(r=(a=i.next()).done)&&(n.push(a.value),!t||n.length!==t);r=!0);}catch(e){o=!0,c=e}finally{try{r||null==i.return||i.return()}finally{if(o)throw c}}return n}(e,t)||function(e,t){if(!e)return;if("string"==typeof e)return D(e,t);var n=Object.prototype.toString.call(e).slice(8,-1);"Object"===n&&e.constructor&&(n=e.constructor.name);if("Map"===n||"Set"===n)return Array.from(e);if("Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n))return D(e,t)}(e,t)||function(){throw new TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}function D(e,t){(null==t||t>e.length)&&(t=e.length);for(var n=0,r=new Array(t);n<t;n++)r[n]=e[n];return r}var T=function(e){var t=e.option,n=t.display,o=void 0===n?"inline":n,i=t.modalTitle,l=void 0===i?Object(c.__)("Transparent Header Display Conditions","blc"):i,u=t.modalDescription,s=void 0===u?Object(c.__)("Add one or more conditions to display the transparent header.","blc"):u,d=e.value,f=e.onChange,p=P(Object(r.useState)(!1),2),b=p[0],m=p[1],y=P(Object(r.useState)(null),2),O=y[0],j=y[1];return"inline"===o?Object(r.createElement)(N,{value:d,onChange:f}):Object(r.createElement)(r.Fragment,null,Object(r.createElement)("button",{className:"button-primary",style:{width:"100%"},onClick:function(e){e.preventDefault(),m(!0),j(null)}},Object(c.__)("Add/Edit Conditions","blc")),Object(r.createElement)(a.Overlay,{items:b,className:"ct-admin-modal ct-builder-conditions-modal",onDismiss:function(){m(!1),j(null)},render:function(){return Object(r.createElement)("div",{className:"ct-modal-content"},Object(r.createElement)("h2",null,l),Object(r.createElement)("p",null,s),Object(r.createElement)("div",{className:"ct-modal-scroll"},Object(r.createElement)(N,{value:O||d,onChange:function(e){j(e)}})),Object(r.createElement)("div",{className:"ct-modal-actions has-divider"},Object(r.createElement)("button",{className:"button-primary",disabled:!O,onClick:function(){f(O),m(!1)}},Object(c.__)("Save Conditions","blc"))))}}))},I=n(7),z=n.n(I);function L(e){return function(e){if(Array.isArray(e))return M(e)}(e)||function(e){if("undefined"!=typeof Symbol&&Symbol.iterator in Object(e))return Array.from(e)}(e)||F(e)||function(){throw new TypeError("Invalid attempt to spread non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}function R(e,t){return function(e){if(Array.isArray(e))return e}(e)||function(e,t){if("undefined"==typeof Symbol||!(Symbol.iterator in Object(e)))return;var n=[],r=!0,o=!1,c=void 0;try{for(var a,i=e[Symbol.iterator]();!(r=(a=i.next()).done)&&(n.push(a.value),!t||n.length!==t);r=!0);}catch(e){o=!0,c=e}finally{try{r||null==i.return||i.return()}finally{if(o)throw c}}return n}(e,t)||F(e,t)||function(){throw new TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}function F(e,t){if(e){if("string"==typeof e)return M(e,t);var n=Object.prototype.toString.call(e).slice(8,-1);return"Object"===n&&e.constructor&&(n=e.constructor.name),"Map"===n||"Set"===n?Array.from(e):"Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)?M(e,t):void 0}}function M(e,t){(null==t||t>e.length)&&(t=e.length);for(var n=0,r=new Array(t);n<t;n++)r[n]=e[n];return r}var U=function(){var e=R(Object(r.useState)(null),2),t=e[0],n=e[1],o=R(Object(r.useState)(null),2),i=o[0],u=o[1],s=R(Object(r.useState)(!1),2),d=s[0],f=s[1],p=R(Object(r.useState)(!1),2),b=p[0],m=p[1],y=R(Object(r.useState)(["options"]),2),O=y[0],j=y[1],v=Object(r.useRef)(),h=Object(r.useRef)();return Object(r.useEffect)((function(){var e=function(e){e.stopPropagation(),e.preventDefault(),e.dataTransfer.dropEffect="copy",f(!0)},t=function(e){e.stopPropagation(),e.preventDefault(),f(!1)},r=function(e){e.stopPropagation(),e.preventDefault(),f(!1);var t=Array.from(e.dataTransfer.files||[]);if(Array.from(e.dataTransfer.items||[]).length>0){var r=e.dataTransfer.items[0].getAsFile();n(r)}else t.length>0&&n(t[0])};return h.current.addEventListener("dragover",e,!1),h.current.addEventListener("dragleave",t,!1),h.current.addEventListener("drop",r,!1),function(){h.current.removeEventListener("dragover",e,!1),h.current.removeEventListener("dragleave",t,!1),h.current.removeEventListener("drop",r,!1)}}),[]),Object(r.createElement)("div",{className:"ct-import-export"},Object(r.createElement)("div",{className:"ct-title","data-type":"simple"},Object(r.createElement)("h3",null,Object(c.__)("Export Options","blc")),Object(r.createElement)("div",{className:"ct-option-description"},Object(c.__)("Easily export the theme customizer settings.","blc"))),Object(r.createElement)("div",{className:"ct-control","data-design":"block"},Object(r.createElement)("header",null),Object(r.createElement)("section",null,Object(r.createElement)("button",{className:"button",onClick:function(e){e.preventDefault(),m(!0)}},Object(c.__)("Export Customizations","blc")))),Object(r.createElement)("div",{className:"ct-title","data-type":"simple"},Object(r.createElement)("h3",null,Object(c.__)("Import Options","blc")),Object(r.createElement)("div",{className:"ct-option-description"},Object(c.__)("Easily import the theme customizer settings.","blc"))),Object(r.createElement)("div",{className:"ct-control","data-design":"block"},Object(r.createElement)("header",null),Object(r.createElement)("section",null,Object(r.createElement)("div",{className:"ct-file-upload"},Object(r.createElement)("button",{type:"button",className:l()("button ct-upload-button",{active:d}),ref:h,onClick:function(){v.current.click()}},t?t.name:Object(c.__)("Click or drop to upload a file...","blc")),Object(r.createElement)("input",{ref:v,type:"file",onChange:function(e){var t=R(e.target.files,1)[0];n(t)}}),Object(r.createElement)("button",{className:"button",onClick:function(e){if(e.preventDefault(),t){var n=new FileReader;n.readAsText(t,"UTF-8"),n.onload=function(e){var t=new FormData;t.append("action","blocksy_customizer_import"),t.append("nonce",ct_customizer_localizations.customizer_reset_none),t.append("wp_customize","on"),t.append("data",e.target.result);try{fetch(window.ajaxurl,{method:"POST",body:t}).then((function(e){200===e.status&&e.json().then((function(e){e.success,e.data;location.reload()}))}))}catch(e){}}}}},Object(c.__)("Import Customizations","blc"))))),ct_customizer_localizations.has_child_theme&&Object(r.createElement)(r.Fragment,null,Object(r.createElement)("div",{className:"ct-title","data-type":"simple"},Object(r.createElement)("h3",null,Object(c.__)("Copy Options","blc")),Object(r.createElement)("div",{className:"ct-option-description"},Object(c.__)("Copy and import your customizations from parent or child theme.","blc"))),ct_customizer_localizations.is_parent_theme&&Object(r.createElement)("div",{className:"ct-control","data-design":"block"},Object(r.createElement)("header",null),Object(r.createElement)("section",null,Object(r.createElement)("button",{className:"button",onClick:function(e){e.preventDefault(),u("child")}},Object(c.__)("Copy From Child Theme","blc")))),!ct_customizer_localizations.is_parent_theme&&Object(r.createElement)("div",{className:"ct-control","data-design":"block"},Object(r.createElement)("header",null),Object(r.createElement)("section",null,Object(r.createElement)("button",{className:"button",onClick:function(e){e.preventDefault(),u("parent")}},Object(c.__)("Copy From Parent Theme","blc"))))),Object(r.createElement)(a.Overlay,{items:i,className:"ct-admin-modal ct-import-export-modal",onDismiss:function(){return u(!1)},render:function(){return Object(r.createElement)("div",{className:"ct-modal-content"},Object(r.createElement)("svg",{width:"35",height:"35",viewBox:"0 0 66 66"},Object(r.createElement)("path",{d:"M66 33.1c0 2.8-.4 5.5-1.1 8.2 0 0-1.7-.6-1.9-.6 3.4-13.1-2.2-27.4-14.5-34.5C41.3 2 33 .9 25 3.1c-3.5.9-6.7 2.4-9.5 4.4L20 12 6 15 9 1l5 5c3.1-2.2 6.6-3.9 10.5-4.9 2.7-.7 5.4-1.1 8-1.1 5.9-.1 11.7 1.4 17 4.4C60.1 10.5 66 21.7 66 33.1zm-49 6.3l2.4-3c-.3-1.2-.4-2.3-.4-3.4s.1-2.2.4-3.3l-2.4-3 2.5-4.3 3.8.5c1.6-1.6 3.6-2.7 5.8-3.3l1.4-3.6h5l1.4 3.6c2.2.6 4.2 1.8 5.8 3.3l3.8-.5 2.5 4.3-2.4 3c.3 1.1.4 2.2.4 3.3s-.1 2.2-.4 3.3l2.4 3-2.5 4.3-3.8-.5c-1.6 1.6-3.6 2.7-5.8 3.3L35.4 50h-5L29 46.4c-2.2-.6-4.2-1.8-5.8-3.3l-3.8.5-2.4-4.2zm8-6.4c0 4.4 3.6 8 8 8s8-3.6 8-8-3.6-8-8-8-8 3.6-8 8zm25.9 25.3c-3 2.1-6.3 3.7-9.9 4.7-8 2.1-16.4 1-23.5-3.1C5.2 52.8-.4 38.5 3 25.4c-.7-.1-1.3-.3-2-.5-.7 2.7-1 5.3-1 8 0 11.4 5.9 22.5 16.5 28.6 7.6 4.4 16.5 5.6 25 3.3 4-1.1 7.6-2.8 10.8-5.2l4.6 4.6 3-14-14 3 5 5.1z"})),Object(r.createElement)("h2",{className:"ct-modal-title"},!ct_customizer_localizations.is_parent_theme&&Object(c.__)("Copy From Parent Theme","blc"),ct_customizer_localizations.is_parent_theme&&Object(c.__)("Copy From Child Theme","blc")),Object(r.createElement)("p",null,!ct_customizer_localizations.is_parent_theme&&Object(c.__)("You are about to copy all the settings from your parent theme into the child theme. Are you sure you want to continue?","blc"),ct_customizer_localizations.is_parent_theme&&Object(c.__)("You are about to copy all the settings from your child theme into the parent theme. Are you sure you want to continue?","blc")),Object(r.createElement)("div",{className:"ct-modal-actions has-divider","data-buttons":"2"},Object(r.createElement)("button",{onClick:function(e){e.preventDefault(),e.stopPropagation(),u(!1)},className:"button"},Object(c.__)("Cancel","blc")),Object(r.createElement)("button",{className:"button button-primary",onClick:function(e){e.preventDefault();var t=new FormData;t.append("action","blocksy_customizer_copy_options"),t.append("wp_customize","on"),t.append("strategy",i);try{fetch(window.ajaxurl,{method:"POST",body:t}).then((function(e){200===e.status&&e.json().then((function(e){e.success,e.data;location.reload()}))}))}catch(e){}}},Object(c.__)("Yes, I am sure","blc"))))}}),Object(r.createElement)(a.Overlay,{items:b,className:"ct-admin-modal ct-export-modal",onDismiss:function(){return m(!1)},render:function(){return Object(r.createElement)("div",{className:"ct-modal-content"},Object(r.createElement)("h2",{className:"ct-modal-title"},Object(c.__)("Export Settings","blc")),Object(r.createElement)("p",null,Object(c.__)("Choose what set of settings you want to export.","blc")),Object(r.createElement)("div",{className:"ct-export-options"},["options","widgets"].map((function(e){return Object(r.createElement)("div",{className:"ct-checkbox-container",onClick:function(){1===O.length&&O[0]===e||j((function(t){return t.includes(e)?t.filter((function(t){return t!==e})):[].concat(L(t),[e])}))}},{options:Object(c.__)("Customizer settings","blc"),widgets:Object(c.__)("Widgets settings","blc")}[e],Object(r.createElement)("span",{className:l()("ct-checkbox",{active:O.includes(e)})},Object(r.createElement)("svg",{width:"10",height:"8",viewBox:"0 0 11.2 9.1"},Object(r.createElement)("polyline",{className:"check",points:"1.2,4.8 4.4,7.9 9.9,1.2 "}))))}))),Object(r.createElement)("div",{className:"ct-modal-actions has-divider","data-buttons":"2"},Object(r.createElement)("button",{onClick:function(e){e.preventDefault(),e.stopPropagation(),m(!1)},className:"button"},Object(c.__)("Cancel","blc")),Object(r.createElement)("button",{className:"button button-primary",onClick:function(e){e.preventDefault();var t=new FormData;t.append("action","blocksy_customizer_export"),t.append("strategy",O.join(":")),t.append("wp_customize","on");try{fetch(window.ajaxurl,{method:"POST",body:t}).then((function(e){200===e.status&&e.json().then((function(e){var t=e.success,n=e.data;if(t){var r=new Blob([n.data],{type:"application/octet-stream;charset=utf-8"});z()(r,"blocksy-export.dat"),m(!1)}}))}))}catch(e){}}},Object(c.__)("Export","blc"))))}}))},B=n(5),H=n.n(B),V=n(8),$=n(9),G=n.n($),Y=n(10),q=n.n(Y),J=n(11),W=n.n(J);function X(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}function K(e){return function(e){if(Array.isArray(e))return te(e)}(e)||function(e){if("undefined"!=typeof Symbol&&Symbol.iterator in Object(e))return Array.from(e)}(e)||ee(e)||function(){throw new TypeError("Invalid attempt to spread non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}function Q(e,t,n,r,o,c,a){try{var i=e[c](a),l=i.value}catch(e){return void n(e)}i.done?t(l):Promise.resolve(l).then(r,o)}function Z(e,t){return function(e){if(Array.isArray(e))return e}(e)||function(e,t){if("undefined"==typeof Symbol||!(Symbol.iterator in Object(e)))return;var n=[],r=!0,o=!1,c=void 0;try{for(var a,i=e[Symbol.iterator]();!(r=(a=i.next()).done)&&(n.push(a.value),!t||n.length!==t);r=!0);}catch(e){o=!0,c=e}finally{try{r||null==i.return||i.return()}finally{if(o)throw c}}return n}(e,t)||ee(e,t)||function(){throw new TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}function ee(e,t){if(e){if("string"==typeof e)return te(e,t);var n=Object.prototype.toString.call(e).slice(8,-1);return"Object"===n&&e.constructor&&(n=e.constructor.name),"Map"===n||"Set"===n?Array.from(e):"Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)?te(e,t):void 0}}function te(e,t){(null==t||t>e.length)&&(t=e.length);for(var n=0,r=new Array(t);n<t;n++)r[n]=e[n];return r}var ne=q()(),re=function(e){e.forcedEdit;var t,n,o=e.headerId,i=Z(Object(r.useState)(!1),2),l=i[0],u=i[1],s=Z(Object(r.useState)(null),2),d=s[0],f=s[1],p=Object(r.useContext)(a.PlacementsDragDropContext),b=(p.builderValueCollection,p.builderValueDispatch,Object(r.useRef)()),m=W()(ne),y=G()("".concat(blocksy_admin.ajax_url,"?action=blocksy_header_get_all_conditions"),{method:"POST",formatter:(t=regeneratorRuntime.mark((function e(t){var n,r,o;return regeneratorRuntime.wrap((function(e){for(;;)switch(e.prev=e.next){case 0:return e.next=2,t.json();case 2:if(n=e.sent,r=n.success,o=n.data,r&&o.conditions){e.next=7;break}throw new Error;case 7:return e.abrupt("return",o.conditions);case 8:case"end":return e.stop()}}),e)})),n=function(){var e=this,n=arguments;return new Promise((function(r,o){var c=t.apply(e,n);function a(e){Q(c,r,o,a,i,"next",e)}function i(e){Q(c,r,o,a,i,"throw",e)}a(void 0)}))},function(e){return n.apply(this,arguments)}),depends:[m]}),O=y.data,j=y.isLoading;y.error;return Object(r.createElement)(r.Fragment,null,Object(r.createElement)("button",{className:"button-primary",style:{width:"100%"},onClick:function(e){j||(e.preventDefault(),e.stopPropagation(),u(!0))}},Object(c.__)("Add/Edit Conditions","blc")),Object(r.createElement)(a.Overlay,{items:l,initialFocusRef:b,className:"ct-admin-modal ct-builder-conditions-modal",onDismiss:function(){u(!1),f(null)},render:function(){var e;return Object(r.createElement)("div",{className:"ct-modal-content",ref:b},Object(r.createElement)("h2",null,sprintf(Object(c.__)("Display Conditions","blc"))),Object(r.createElement)("p",null,Object(c.__)("Add one or more conditions in order to display your header.","blc")),Object(r.createElement)("div",{className:"ct-modal-scroll"},Object(r.createElement)(a.OptionsPanel,{onChange:function(e,t){f((function(e){return[].concat(K((e||O).filter((function(e){return e.id!==o}))),[{id:o,conditions:t}])}))},options:{conditions:(e={type:"blocksy-display-condition",design:"none",value:[]},X(e,"design","none"),X(e,"label",!1),e)},value:{conditions:((d||O).find((function(e){return e.id===o}))||{conditions:[]}).conditions},hasRevertButton:!1})),Object(r.createElement)("div",{className:"ct-modal-actions has-divider"},Object(r.createElement)("button",{className:"button-primary",disabled:!d,onClick:function(){fetch("".concat(wp.ajax.settings.url,"?action=blocksy_header_update_all_conditions"),{headers:{Accept:"application/json","Content-Type":"application/json"},method:"POST",body:JSON.stringify(d)}).then((function(e){return e.json()})).then((function(){ne(),u(!1)}))}},Object(c.__)("Save Conditions","blc"))))}}))};function oe(){return(oe=Object.assign||function(e){for(var t=1;t<arguments.length;t++){var n=arguments[t];for(var r in n)Object.prototype.hasOwnProperty.call(n,r)&&(e[r]=n[r])}return e}).apply(this,arguments)}function ce(e,t){var n=Object.keys(e);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(e);t&&(r=r.filter((function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}))),n.push.apply(n,r)}return n}function ae(e){for(var t=1;t<arguments.length;t++){var n=null!=arguments[t]?arguments[t]:{};t%2?ce(Object(n),!0).forEach((function(t){ie(e,t,n[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(n)):ce(Object(n)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(n,t))}))}return e}function ie(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}function le(e,t){return function(e){if(Array.isArray(e))return e}(e)||function(e,t){if("undefined"==typeof Symbol||!(Symbol.iterator in Object(e)))return;var n=[],r=!0,o=!1,c=void 0;try{for(var a,i=e[Symbol.iterator]();!(r=(a=i.next()).done)&&(n.push(a.value),!t||n.length!==t);r=!0);}catch(e){o=!0,c=e}finally{try{r||null==i.return||i.return()}finally{if(o)throw c}}return n}(e,t)||function(e,t){if(!e)return;if("string"==typeof e)return ue(e,t);var n=Object.prototype.toString.call(e).slice(8,-1);"Object"===n&&e.constructor&&(n=e.constructor.name);if("Map"===n||"Set"===n)return Array.from(e);if("Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n))return ue(e,t)}(e,t)||function(){throw new TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}function ue(e,t){(null==t||t>e.length)&&(t=e.length);for(var n=0,r=new Array(t);n<t;n++)r[n]=e[n];return r}var se=function(){var e=le(Object(r.useState)(!1),2),t=e[0],n=e[1],i=(ct_customizer_localizations.header_builder_data.secondary_items.header,ct_customizer_localizations.header_builder_data.header,Object(r.useContext)(a.PlacementsDragDropContext)),u=i.builderValueDispatch,s=i.builderValue,d=(i.option,i.builderValueCollection),f=i.panelsActions,p=Object(V.applyFilters)("blocksy.header.available-sections",null,d.sections)||d.sections.filter((function(e){var t=e.id;return"type-2"!==t&&"type-3"!==t&&-1===t.indexOf("ct-custom")}));return Object(r.createElement)(r.Fragment,null,Object(r.createElement)("ul",{className:l()("ct-panels-manager")},p.map((function(e){var t=e.name,o=e.id,i=t||{"type-1":Object(c.__)("Global Header","blocksy")}[o]||o,d="builder_header_panel_".concat(o),p=ct_customizer_localizations.header_builder_data.header_data.header_options,b={label:i,"inner-options":ae(ae({},o.indexOf("ct-custom")>-1?{conditions_button:{label:Object(c.__)("Edit Conditions","blc"),type:"jsx",design:"block",render:function(){return Object(r.createElement)(re,{headerId:o})}},divider:{type:"ct-divider"}}:{}),p)};return Object(r.createElement)(a.PanelMetaWrapper,oe({id:d,key:o,option:b},f,{getActualOption:function(e){var t=e.open;return Object(r.createElement)(r.Fragment,null,o===s.id&&Object(r.createElement)(a.Panel,{id:d,getValues:function(){return ae({id:o},s.settings||{})},option:b,onChangeFor:function(e,t){u({type:"BUILDER_GLOBAL_SETTING_ON_CHANGE",payload:{optionId:e,optionValue:t,values:Object(a.getValueFromInput)(p,Array.isArray(s.settings)?{}:s.settings||{})}})},view:"simple"}),Object(r.createElement)("li",{className:l()({active:o===s.id,"ct-global":"type-1"===o}),onClick:function(){o===s.id?t():u({type:"PICK_BUILDER_SECTION",payload:{id:o}})}},Object(r.createElement)("span",{className:"ct-panel-name"},i),o.indexOf("ct-custom")>-1&&o!==s.id&&Object(r.createElement)("span",{className:"ct-remove-instance",onClick:function(e){e.preventDefault(),e.stopPropagation(),n(o)}},Object(r.createElement)("i",{className:"ct-tooltip-top"},Object(c.__)("Remove header","blc")),Object(r.createElement)("svg",{width:"11px",height:"11px",viewBox:"0 0 24 24"},Object(r.createElement)("path",{d:"M9.6,0l0,1.2H1.2v2.4h21.6V1.2h-8.4l0-1.2H9.6z M2.8,6l1.8,15.9C4.8,23.1,5.9,24,7.1,24h9.9c1.2,0,2.2-0.9,2.4-2.1L21.2,6H2.8z"})))))}}))}))),Object(r.createElement)(o.Slot,{name:"PlacementsBuilderPanelsManagerAfter"},(function(e){return 0===e.length?null:e})),Object(r.createElement)(a.Overlay,{items:t,className:"ct-admin-modal ct-reset-options",onDismiss:function(){return n(!1)},render:function(){return Object(r.createElement)("div",{className:"ct-modal-content"},Object(r.createElement)("h2",{className:"ct-modal-title"},Object(c.__)("Remove Header","blc")),Object(r.createElement)("p",null,Object(c.__)("You are about to remove a custom header, are you sure you want to continue?","blc")),Object(r.createElement)("div",{className:"ct-modal-actions has-divider","data-buttons":"2"},Object(r.createElement)("button",{onClick:function(e){e.preventDefault(),e.stopPropagation(),n(!1)},className:"button"},Object(c.__)("Cancel","blc")),Object(r.createElement)("button",{className:"button button-primary",onClick:function(e){e.preventDefault(),u({type:"REMOVE_BUILDER_SECTION",payload:{id:t}}),n(!1)}},Object(c.__)("Confirm","blc"))))}}))};H.a.on("blocksy:options:before-option",(function(e){if(e.option&&"ct-header-builder"===e.option.type){var t=e.content;e.content=Object(r.createElement)(r.Fragment,null,t,Object(r.createElement)(o.Fill,{name:"PlacementsBuilderPanelsManager"},Object(r.createElement)(se,null)))}})),H.a.on("blocksy:options:register",(function(e){e["blocksy-display-condition"]=T,e["blocksy-customizer-options-manager"]=U}))}]);
|
static/bundle/options.min.css
CHANGED
|
@@ -1,5 +1,5 @@
|
|
| 1 |
/**
|
| 2 |
-
* - v1.8.
|
| 3 |
*
|
| 4 |
* Copyright (c) 2021
|
| 5 |
* Licensed GPLv2+
|
| 1 |
/**
|
| 2 |
+
* - v1.8.8
|
| 3 |
*
|
| 4 |
* Copyright (c) 2021
|
| 5 |
* Licensed GPLv2+
|
static/bundle/sticky.js
CHANGED
|
@@ -1 +1 @@
|
|
| 1 |
-
!function(t){var e={};function r(n){if(e[n])return e[n].exports;var o=e[n]={i:n,l:!1,exports:{}};return t[n].call(o.exports,o,o.exports,r),o.l=!0,o.exports}r.m=t,r.c=e,r.d=function(t,e,n){r.o(t,e)||Object.defineProperty(t,e,{enumerable:!0,get:n})},r.r=function(t){"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(t,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(t,"__esModule",{value:!0})},r.t=function(t,e){if(1&e&&(t=r(t)),8&e)return t;if(4&e&&"object"==typeof t&&t&&t.__esModule)return t;var n=Object.create(null);if(r.r(n),Object.defineProperty(n,"default",{enumerable:!0,value:t}),2&e&&"string"!=typeof t)for(var o in t)r.d(n,o,function(e){return t[e]}.bind(null,o));return n},r.n=function(t){var e=t&&t.__esModule?function(){return t.default}:function(){return t};return r.d(e,"a",e),e},r.o=function(t,e){return Object.prototype.hasOwnProperty.call(t,e)},r.p="",r(r.s=2)}([function(t,e){t.exports=window.ctFrontend},function(t,e){t.exports=window.ctEvents},function(t,e,r){"use strict";r.r(e);r(1);var n=r(0),o=function(t,e,r){return Math.max(t,Math.min(e,r))},i=function(t,e,r){return e[0]+(e[1]-e[0])/(t[1]-t[0])*(r-t[0])},a=function(t){if(t.blcInitialHeight)return t.blcInitialHeight;var e=getComputedStyle(t),r=getComputedStyle(t.firstElementChild),n=0;n+=parseFloat(e.borderTopWidth),n+=parseFloat(e.borderBottomWidth),n+=parseFloat(r.borderTopWidth),n+=parseFloat(r.borderBottomWidth);var o=parseFloat(e.getPropertyValue("--height"))+n;return t.blcInitialHeight=o,o},c=function(t){var e=getComputedStyle(t).getPropertyValue("--stickyShrink");return e?parseFloat(e)/100*a(t):a(t)};function s(t){return function(t){if(Array.isArray(t))return u(t)}(t)||function(t){if("undefined"!=typeof Symbol&&Symbol.iterator in Object(t))return Array.from(t)}(t)||function(t,e){if(!t)return;if("string"==typeof t)return u(t,e);var r=Object.prototype.toString.call(t).slice(8,-1);"Object"===r&&t.constructor&&(r=t.constructor.name);if("Map"===r||"Set"===r)return Array.from(t);if("Arguments"===r||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(r))return u(t,e)}(t)||function(){throw new TypeError("Invalid attempt to spread non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}function u(t,e){(null==e||e>t.length)&&(e=t.length);for(var r=0,n=new Array(e);r<e;r++)n[r]=t[r];return n}function y(t){return function(t){if(Array.isArray(t))return l(t)}(t)||function(t){if("undefined"!=typeof Symbol&&Symbol.iterator in Object(t))return Array.from(t)}(t)||function(t,e){if(!t)return;if("string"==typeof t)return l(t,e);var r=Object.prototype.toString.call(t).slice(8,-1);"Object"===r&&t.constructor&&(r=t.constructor.name);if("Map"===r||"Set"===r)return Array.from(t);if("Arguments"===r||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(r))return l(t,e)}(t)||function(){throw new TypeError("Invalid attempt to spread non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}function l(t,e){(null==e||e>t.length)&&(e=t.length);for(var r=0,n=new Array(e);r<e;r++)n[r]=t[r];return n}var d=function(t){var e=t.stickyContainer,r=t.isSticky,n=t.startPosition,u=t.stickyComponents,l=Array.from(e.querySelectorAll("[data-row]")).reduce((function(t,e){return t+e.getBoundingClientRect().height}),0);if(0===n&&0===window.scrollY&&(e.dataset.sticky=["fixed"].concat(y(u)).join(":"),e.parentNode.style.setProperty("--minHeight","".concat(l,"px"))),r){if(u.indexOf("yes")>-1)return;k(e,"no"),e.parentNode.style.setProperty("--minHeight","".concat(l,"px")),e.dataset.sticky=["yes"].concat(y(u)).join(":"),function(t){var e=t.stickyContainer,r=t.startPosition;s(e.querySelectorAll('[data-row*="middle"]')).map((function(t){if(t.querySelector('[data-id="logo"] .site-logo-container')){var e=t.querySelector('[data-id="logo"] .site-logo-container'),n=parseFloat(getComputedStyle(e).getPropertyValue("--maxHeight")||50),s=parseFloat(getComputedStyle(e).getPropertyValue("--logoStickyShrink")||1),u=n*s;if(1!==s){var y=a(t),l=c(t);e.style.setProperty("--logo-shrink-height",i([r,r+Math.abs(y===l?n-u:y-l)],[1,s],o(r,r+Math.abs(y===l?n-u:y-l),scrollY)))}}}))}({stickyContainer:e,startPosition:n}),function(t){var e=t.stickyContainer,r=t.containerInitialHeight,n=t.startPosition;Array.from(e.querySelectorAll("[data-row]")).reduce((function(t,e,r){return t+c(e)}),0)!==r&&e.querySelector('[data-row*="middle"]')&&[e.querySelector('[data-row*="middle"]')].map((function(t){var e=a(t),r=c(t);e!==r&&t.style.setProperty("--shrinkHeight","".concat(i([n,n+Math.abs(e-r)],[e,r],o(n,n+Math.abs(e-r),scrollY)),"px"))}))}({stickyContainer:e,containerInitialHeight:l,startPosition:n})}else{var d=Array.from(e.querySelectorAll("[data-row]")).reduce((function(t,e){return t+a(e)}),0);Array.from(e.querySelectorAll("[data-row]")).map((function(t){return t.removeAttribute("style")})),Array.from(e.querySelectorAll('[data-row*="middle"] .site-logo-container')).map((function(t){return t.removeAttribute("style")})),k(e,"yes"),e.parentNode.style.setProperty("--minHeight","".concat(d,"px")),0===n&&0===window.scrollY?e.dataset.sticky=["fixed"].concat(y(u)).join(":"):(e.parentNode.removeAttribute("style"),e.dataset.sticky=u.join(":"))}};function f(t){return function(t){if(Array.isArray(t))return m(t)}(t)||function(t){if("undefined"!=typeof Symbol&&Symbol.iterator in Object(t))return Array.from(t)}(t)||function(t,e){if(!t)return;if("string"==typeof t)return m(t,e);var r=Object.prototype.toString.call(t).slice(8,-1);"Object"===r&&t.constructor&&(r=t.constructor.name);if("Map"===r||"Set"===r)return Array.from(t);if("Arguments"===r||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(r))return m(t,e)}(t)||function(){throw new TypeError("Invalid attempt to spread non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}function m(t,e){(null==e||e>t.length)&&(e=t.length);for(var r=0,n=new Array(e);r<e;r++)n[r]=t[r];return n}var p=window.scrollY;function h(t){return function(t){if(Array.isArray(t))return b(t)}(t)||function(t){if("undefined"!=typeof Symbol&&Symbol.iterator in Object(t))return Array.from(t)}(t)||function(t,e){if(!t)return;if("string"==typeof t)return b(t,e);var r=Object.prototype.toString.call(t).slice(8,-1);"Object"===r&&t.constructor&&(r=t.constructor.name);if("Map"===r||"Set"===r)return Array.from(t);if("Arguments"===r||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(r))return b(t,e)}(t)||function(){throw new TypeError("Invalid attempt to spread non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}function b(t,e){(null==e||e>t.length)&&(e=t.length);for(var r=0,n=new Array(e);r<e;r++)n[r]=t[r];return n}function g(t){return function(t){if(Array.isArray(t))return A(t)}(t)||function(t){if("undefined"!=typeof Symbol&&Symbol.iterator in Object(t))return Array.from(t)}(t)||function(t,e){if(!t)return;if("string"==typeof t)return A(t,e);var r=Object.prototype.toString.call(t).slice(8,-1);"Object"===r&&t.constructor&&(r=t.constructor.name);if("Map"===r||"Set"===r)return Array.from(t);if("Arguments"===r||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(r))return A(t,e)}(t)||function(){throw new TypeError("Invalid attempt to spread non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}function A(t,e){(null==e||e>t.length)&&(e=t.length);for(var r=0,n=new Array(e);r<e;r++)n[r]=t[r];return n}var k=function(t){var e=arguments.length>1&&void 0!==arguments[1]?arguments[1]:"yes";Array.from(t.querySelectorAll("[data-row][data-transparent-row]")).map((function(t){t.dataset.transparentRow=e}))},S=null,v=function t(){if(S!==scrollY){S=scrollY;var e=document.querySelector('[data-device="'.concat(Object(n.getCurrentScreen)(),'"] [data-sticky]'));if(e){var r=function(t){if(-1===t.dataset.sticky.indexOf("shrink")&&-1===t.dataset.sticky.indexOf("auto-hide"))return t.parentNode.getBoundingClientRect().height+200;var e=t.parentNode;return 1===e.parentNode.children.length||e.parentNode.children[0].classList.contains("ct-sticky-container")?0:Array.from(e.parentNode.children).reduce((function(t,e,r){return t.indexOf(0)>-1||!e.dataset.row?[].concat(g(t),[0]):[].concat(g(t),[e.classList.contains("ct-sticky-container")?0:e.getBoundingClientRect().height])}),[]).reduce((function(t,e){return t+e}),0)}(e),o=r>0&&Math.abs(window.scrollY-r)<5||window.scrollY>r;o&&-1===document.body.dataset.header.indexOf("shrink")&&(document.body.dataset.header="".concat(document.body.dataset.header,":shrink")),!o&&document.body.dataset.header.indexOf("shrink")>-1&&(document.body.dataset.header=document.body.dataset.header.replace(":shrink",""));var i=e.dataset.sticky.split(":").filter((function(t){return"yes"!==t&&"no"!==t&&"fixed"!==t}));i.indexOf("shrink")>-1&&d({stickyContainer:e,isSticky:o,startPosition:r,stickyComponents:i}),i.indexOf("auto-hide")>-1&&function(t){var e=t.startPosition,r=t.stickyContainer,n=t.isSticky,o=t.stickyComponents,i=Array.from(r.querySelectorAll("[data-row]")).reduce((function(t,e){return t+e.getBoundingClientRect().height}),0);if(window.scrollY<e&&(p=window.scrollY),n&&window.scrollY-p==0&&document.body.style.setProperty("--headerStickyHeightAnimated","0px"),n&&window.scrollY-p<-5)-1===r.dataset.sticky.indexOf("yes")&&(r.dataset.sticky=["yes-start"].concat(f(o)).join(":"),requestAnimationFrame((function(){r.dataset.sticky=r.dataset.sticky.replace("yes-start","yes-end"),setTimeout((function(){r.dataset.sticky=r.dataset.sticky.replace("yes-end","yes")}),200)}))),k(r,"no"),document.body.removeAttribute("style"),r.parentNode.style.setProperty("--minHeight","".concat(i,"px"));else{if(!n)return r.dataset.sticky=o.filter((function(t){return"yes-end"!==t})).join(":"),r.parentNode.removeAttribute("style"),Array.from(r.querySelectorAll("[data-row]")).map((function(t){return t.removeAttribute("style")})),k(r,"yes"),document.body.style.setProperty("--headerStickyHeightAnimated","0px"),void(p=window.scrollY);-1===r.dataset.sticky.indexOf("yes-hide")&&r.dataset.sticky.indexOf("yes:")>-1&&window.scrollY-p>5&&(r.dataset.sticky=["yes-hide-start"].concat(f(o)).join(":"),document.body.style.setProperty("--headerStickyHeightAnimated","0px"),requestAnimationFrame((function(){r.dataset.sticky=r.dataset.sticky.replace("yes-hide-start","yes-hide-end"),setTimeout((function(){r.dataset.sticky=o.join(":"),r.parentNode.removeAttribute("style"),Array.from(r.querySelectorAll("[data-row]")).map((function(t){return t.removeAttribute("style")})),k(r,"yes")}),200)})))}p=window.scrollY}({stickyContainer:e,isSticky:o,startPosition:r,stickyComponents:i}),(i.indexOf("slide")>-1||i.indexOf("fade")>-1)&&function(t){var e=t.stickyContainer,r=t.isSticky,n=t.startPosition,o=t.stickyComponents,i=Array.from(e.querySelectorAll("[data-row]")).reduce((function(t,e){return t+e.getBoundingClientRect().height}),0);r?(-1===e.dataset.sticky.indexOf("yes")&&(e.dataset.sticky=["yes-start"].concat(h(o)).join(":"),requestAnimationFrame((function(){e.dataset.sticky=e.dataset.sticky.replace("yes-start","yes-end"),setTimeout((function(){e.dataset.sticky=e.dataset.sticky.replace("yes-end","yes")}),200)}))),k(e,"no"),e.parentNode.style.setProperty("--minHeight","".concat(i,"px"))):-1===e.dataset.sticky.indexOf("yes-hide")&&e.dataset.sticky.indexOf("yes:")>-1&&(Math.abs(window.scrollY-n)>10?(e.dataset.sticky=o.join(":"),setTimeout((function(){e.parentNode.removeAttribute("style"),Array.from(e.querySelectorAll("[data-row]")).map((function(t){return t.removeAttribute("style")}))}),300),k(e,"yes")):(e.dataset.sticky=["yes-hide-start"].concat(h(o)).join(":"),requestAnimationFrame((function(){e.dataset.sticky=e.dataset.sticky.replace("yes-hide-start","yes-hide-end"),setTimeout((function(){e.dataset.sticky=o.join(":"),setTimeout((function(){e.parentNode.removeAttribute("style"),Array.from(e.querySelectorAll("[data-row]")).map((function(t){return t.removeAttribute("style")}))}),300),k(e,"yes")}),200)}))))}({stickyContainer:e,isSticky:o,startPosition:r,stickyComponents:i}),requestAnimationFrame((function(){t()}))}}else requestAnimationFrame((function(){t()}))};document.querySelector("header [data-sticky]")&&v(),Object(n.registerDynamicChunk)("blocksy_sticky_header",{mount:function(t){}})}]);
|
| 1 |
+
!function(t){var e={};function r(n){if(e[n])return e[n].exports;var o=e[n]={i:n,l:!1,exports:{}};return t[n].call(o.exports,o,o.exports,r),o.l=!0,o.exports}r.m=t,r.c=e,r.d=function(t,e,n){r.o(t,e)||Object.defineProperty(t,e,{enumerable:!0,get:n})},r.r=function(t){"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(t,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(t,"__esModule",{value:!0})},r.t=function(t,e){if(1&e&&(t=r(t)),8&e)return t;if(4&e&&"object"==typeof t&&t&&t.__esModule)return t;var n=Object.create(null);if(r.r(n),Object.defineProperty(n,"default",{enumerable:!0,value:t}),2&e&&"string"!=typeof t)for(var o in t)r.d(n,o,function(e){return t[e]}.bind(null,o));return n},r.n=function(t){var e=t&&t.__esModule?function(){return t.default}:function(){return t};return r.d(e,"a",e),e},r.o=function(t,e){return Object.prototype.hasOwnProperty.call(t,e)},r.p="",r(r.s=2)}([function(t,e){t.exports=window.ctFrontend},function(t,e){t.exports=window.ctEvents},function(t,e,r){"use strict";r.r(e);r(1);var n=r(0),o=function(t,e,r){return Math.max(t,Math.min(e,r))},i=function(t,e,r){return e[0]+(e[1]-e[0])/(t[1]-t[0])*(r-t[0])},a=function(t){if(t.blcInitialHeight)return t.blcInitialHeight;var e=getComputedStyle(t),r=getComputedStyle(t.firstElementChild),n=0;n+=parseFloat(e.borderTopWidth),n+=parseFloat(e.borderBottomWidth),n+=parseFloat(r.borderTopWidth),n+=parseFloat(r.borderBottomWidth);var o=parseFloat(e.getPropertyValue("--height"))+n;return t.blcInitialHeight=o,o},c=function(t){var e=getComputedStyle(t).getPropertyValue("--stickyShrink");return e?parseFloat(e)/100*a(t):a(t)};function s(t){return function(t){if(Array.isArray(t))return u(t)}(t)||function(t){if("undefined"!=typeof Symbol&&Symbol.iterator in Object(t))return Array.from(t)}(t)||function(t,e){if(!t)return;if("string"==typeof t)return u(t,e);var r=Object.prototype.toString.call(t).slice(8,-1);"Object"===r&&t.constructor&&(r=t.constructor.name);if("Map"===r||"Set"===r)return Array.from(t);if("Arguments"===r||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(r))return u(t,e)}(t)||function(){throw new TypeError("Invalid attempt to spread non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}function u(t,e){(null==e||e>t.length)&&(e=t.length);for(var r=0,n=new Array(e);r<e;r++)n[r]=t[r];return n}function y(t){return function(t){if(Array.isArray(t))return l(t)}(t)||function(t){if("undefined"!=typeof Symbol&&Symbol.iterator in Object(t))return Array.from(t)}(t)||function(t,e){if(!t)return;if("string"==typeof t)return l(t,e);var r=Object.prototype.toString.call(t).slice(8,-1);"Object"===r&&t.constructor&&(r=t.constructor.name);if("Map"===r||"Set"===r)return Array.from(t);if("Arguments"===r||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(r))return l(t,e)}(t)||function(){throw new TypeError("Invalid attempt to spread non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}function l(t,e){(null==e||e>t.length)&&(e=t.length);for(var r=0,n=new Array(e);r<e;r++)n[r]=t[r];return n}var d=function(t){var e=t.stickyContainer,r=t.isSticky,n=t.startPosition,u=t.stickyComponents,l=Array.from(e.querySelectorAll("[data-row]")).reduce((function(t,e){return t+e.getBoundingClientRect().height}),0);if(0===n&&0===window.scrollY&&(e.dataset.sticky=["fixed"].concat(y(u)).join(":"),e.parentNode.style.setProperty("--minHeight","".concat(l,"px"))),r){if(u.indexOf("yes")>-1)return;k(e,"no"),e.parentNode.style.setProperty("--minHeight","".concat(l,"px")),e.dataset.sticky=["yes"].concat(y(u)).join(":"),function(t){var e=t.stickyContainer,r=t.startPosition;s(e.querySelectorAll('[data-row*="middle"]')).map((function(t){if(t.querySelector('[data-id="logo"] .site-logo-container')){var e=t.querySelector('[data-id="logo"] .site-logo-container'),n=parseFloat(getComputedStyle(e).getPropertyValue("--maxHeight")||50),s=parseFloat(getComputedStyle(e).getPropertyValue("--logoStickyShrink").toString().replace(",",".")||1),u=n*s;if(1!==s){var y=a(t),l=c(t);e.style.setProperty("--logo-shrink-height",i([r,r+Math.abs(y===l?n-u:y-l)],[1,s],o(r,r+Math.abs(y===l?n-u:y-l),scrollY)))}}}))}({stickyContainer:e,startPosition:n}),function(t){var e=t.stickyContainer,r=t.containerInitialHeight,n=t.startPosition;Array.from(e.querySelectorAll("[data-row]")).reduce((function(t,e,r){return t+c(e)}),0)!==r&&e.querySelector('[data-row*="middle"]')&&[e.querySelector('[data-row*="middle"]')].map((function(t){var e=a(t),r=c(t);e!==r&&t.style.setProperty("--shrinkHeight","".concat(i([n,n+Math.abs(e-r)],[e,r],o(n,n+Math.abs(e-r),scrollY)),"px"))}))}({stickyContainer:e,containerInitialHeight:l,startPosition:n})}else{var d=Array.from(e.querySelectorAll("[data-row]")).reduce((function(t,e){return t+a(e)}),0);Array.from(e.querySelectorAll("[data-row]")).map((function(t){return t.removeAttribute("style")})),Array.from(e.querySelectorAll('[data-row*="middle"] .site-logo-container')).map((function(t){return t.removeAttribute("style")})),k(e,"yes"),e.parentNode.style.setProperty("--minHeight","".concat(d,"px")),0===n&&0===window.scrollY?e.dataset.sticky=["fixed"].concat(y(u)).join(":"):(e.parentNode.removeAttribute("style"),e.dataset.sticky=u.join(":"))}};function f(t){return function(t){if(Array.isArray(t))return m(t)}(t)||function(t){if("undefined"!=typeof Symbol&&Symbol.iterator in Object(t))return Array.from(t)}(t)||function(t,e){if(!t)return;if("string"==typeof t)return m(t,e);var r=Object.prototype.toString.call(t).slice(8,-1);"Object"===r&&t.constructor&&(r=t.constructor.name);if("Map"===r||"Set"===r)return Array.from(t);if("Arguments"===r||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(r))return m(t,e)}(t)||function(){throw new TypeError("Invalid attempt to spread non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}function m(t,e){(null==e||e>t.length)&&(e=t.length);for(var r=0,n=new Array(e);r<e;r++)n[r]=t[r];return n}var p=window.scrollY;function h(t){return function(t){if(Array.isArray(t))return b(t)}(t)||function(t){if("undefined"!=typeof Symbol&&Symbol.iterator in Object(t))return Array.from(t)}(t)||function(t,e){if(!t)return;if("string"==typeof t)return b(t,e);var r=Object.prototype.toString.call(t).slice(8,-1);"Object"===r&&t.constructor&&(r=t.constructor.name);if("Map"===r||"Set"===r)return Array.from(t);if("Arguments"===r||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(r))return b(t,e)}(t)||function(){throw new TypeError("Invalid attempt to spread non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}function b(t,e){(null==e||e>t.length)&&(e=t.length);for(var r=0,n=new Array(e);r<e;r++)n[r]=t[r];return n}function g(t){return function(t){if(Array.isArray(t))return A(t)}(t)||function(t){if("undefined"!=typeof Symbol&&Symbol.iterator in Object(t))return Array.from(t)}(t)||function(t,e){if(!t)return;if("string"==typeof t)return A(t,e);var r=Object.prototype.toString.call(t).slice(8,-1);"Object"===r&&t.constructor&&(r=t.constructor.name);if("Map"===r||"Set"===r)return Array.from(t);if("Arguments"===r||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(r))return A(t,e)}(t)||function(){throw new TypeError("Invalid attempt to spread non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}function A(t,e){(null==e||e>t.length)&&(e=t.length);for(var r=0,n=new Array(e);r<e;r++)n[r]=t[r];return n}var k=function(t){var e=arguments.length>1&&void 0!==arguments[1]?arguments[1]:"yes";Array.from(t.querySelectorAll("[data-row][data-transparent-row]")).map((function(t){t.dataset.transparentRow=e}))},S=null,v=function t(){if(S!==scrollY){S=scrollY;var e=document.querySelector('[data-device="'.concat(Object(n.getCurrentScreen)(),'"] [data-sticky]'));if(e){var r=function(t){if(-1===t.dataset.sticky.indexOf("shrink")&&-1===t.dataset.sticky.indexOf("auto-hide"))return t.parentNode.getBoundingClientRect().height+200;var e=t.parentNode;return 1===e.parentNode.children.length||e.parentNode.children[0].classList.contains("ct-sticky-container")?0:Array.from(e.parentNode.children).reduce((function(t,e,r){return t.indexOf(0)>-1||!e.dataset.row?[].concat(g(t),[0]):[].concat(g(t),[e.classList.contains("ct-sticky-container")?0:e.getBoundingClientRect().height])}),[]).reduce((function(t,e){return t+e}),0)}(e),o=r>0&&Math.abs(window.scrollY-r)<5||window.scrollY>r;o&&-1===document.body.dataset.header.indexOf("shrink")&&(document.body.dataset.header="".concat(document.body.dataset.header,":shrink")),!o&&document.body.dataset.header.indexOf("shrink")>-1&&(document.body.dataset.header=document.body.dataset.header.replace(":shrink",""));var i=e.dataset.sticky.split(":").filter((function(t){return"yes"!==t&&"no"!==t&&"fixed"!==t}));i.indexOf("shrink")>-1&&d({stickyContainer:e,isSticky:o,startPosition:r,stickyComponents:i}),i.indexOf("auto-hide")>-1&&function(t){var e=t.startPosition,r=t.stickyContainer,n=t.isSticky,o=t.stickyComponents,i=Array.from(r.querySelectorAll("[data-row]")).reduce((function(t,e){return t+e.getBoundingClientRect().height}),0);if(window.scrollY<e&&(p=window.scrollY),n&&window.scrollY-p==0&&document.body.style.setProperty("--headerStickyHeightAnimated","0px"),n&&window.scrollY-p<-5)-1===r.dataset.sticky.indexOf("yes")&&(r.dataset.sticky=["yes-start"].concat(f(o)).join(":"),requestAnimationFrame((function(){r.dataset.sticky=r.dataset.sticky.replace("yes-start","yes-end"),setTimeout((function(){r.dataset.sticky=r.dataset.sticky.replace("yes-end","yes")}),200)}))),k(r,"no"),document.body.removeAttribute("style"),r.parentNode.style.setProperty("--minHeight","".concat(i,"px"));else{if(!n)return r.dataset.sticky=o.filter((function(t){return"yes-end"!==t})).join(":"),r.parentNode.removeAttribute("style"),Array.from(r.querySelectorAll("[data-row]")).map((function(t){return t.removeAttribute("style")})),k(r,"yes"),document.body.style.setProperty("--headerStickyHeightAnimated","0px"),void(p=window.scrollY);-1===r.dataset.sticky.indexOf("yes-hide")&&r.dataset.sticky.indexOf("yes:")>-1&&window.scrollY-p>5&&(r.dataset.sticky=["yes-hide-start"].concat(f(o)).join(":"),document.body.style.setProperty("--headerStickyHeightAnimated","0px"),requestAnimationFrame((function(){r.dataset.sticky=r.dataset.sticky.replace("yes-hide-start","yes-hide-end"),setTimeout((function(){r.dataset.sticky=o.join(":"),r.parentNode.removeAttribute("style"),Array.from(r.querySelectorAll("[data-row]")).map((function(t){return t.removeAttribute("style")})),k(r,"yes")}),200)})))}p=window.scrollY}({stickyContainer:e,isSticky:o,startPosition:r,stickyComponents:i}),(i.indexOf("slide")>-1||i.indexOf("fade")>-1)&&function(t){var e=t.stickyContainer,r=t.isSticky,n=t.startPosition,o=t.stickyComponents,i=Array.from(e.querySelectorAll("[data-row]")).reduce((function(t,e){return t+e.getBoundingClientRect().height}),0);r?(-1===e.dataset.sticky.indexOf("yes")&&(e.dataset.sticky=["yes-start"].concat(h(o)).join(":"),requestAnimationFrame((function(){e.dataset.sticky=e.dataset.sticky.replace("yes-start","yes-end"),setTimeout((function(){e.dataset.sticky=e.dataset.sticky.replace("yes-end","yes")}),200)}))),k(e,"no"),e.parentNode.style.setProperty("--minHeight","".concat(i,"px"))):-1===e.dataset.sticky.indexOf("yes-hide")&&e.dataset.sticky.indexOf("yes:")>-1&&(Math.abs(window.scrollY-n)>10?(e.dataset.sticky=o.join(":"),setTimeout((function(){e.parentNode.removeAttribute("style"),Array.from(e.querySelectorAll("[data-row]")).map((function(t){return t.removeAttribute("style")}))}),300),k(e,"yes")):(e.dataset.sticky=["yes-hide-start"].concat(h(o)).join(":"),requestAnimationFrame((function(){e.dataset.sticky=e.dataset.sticky.replace("yes-hide-start","yes-hide-end"),setTimeout((function(){e.dataset.sticky=o.join(":"),setTimeout((function(){e.parentNode.removeAttribute("style"),Array.from(e.querySelectorAll("[data-row]")).map((function(t){return t.removeAttribute("style")}))}),300),k(e,"yes")}),200)}))))}({stickyContainer:e,isSticky:o,startPosition:r,stickyComponents:i}),requestAnimationFrame((function(){t()}))}}else requestAnimationFrame((function(){t()}))};document.querySelector("header [data-sticky]")&&v(),Object(n.registerDynamicChunk)("blocksy_sticky_header",{mount:function(t){}})}]);
|
static/js/frontend/sticky/shrink-handle-logo.js
CHANGED
|
@@ -5,7 +5,7 @@ import {
|
|
| 5 |
clamp,
|
| 6 |
} from './shrink-utils'
|
| 7 |
|
| 8 |
-
export const shrinkHandleLogo = ({ stickyContainer
|
| 9 |
;[...stickyContainer.querySelectorAll('[data-row*="middle"]')].map(
|
| 10 |
(row) => {
|
| 11 |
if (!row.querySelector('[data-id="logo"] .site-logo-container')) {
|
|
@@ -21,8 +21,10 @@ export const shrinkHandleLogo = ({ stickyContainer , startPosition}) => {
|
|
| 21 |
)
|
| 22 |
|
| 23 |
const stickyShrink = parseFloat(
|
| 24 |
-
getComputedStyle(logo)
|
| 25 |
-
|
|
|
|
|
|
|
| 26 |
)
|
| 27 |
|
| 28 |
const stickyHeight = initialHeight * stickyShrink
|
| 5 |
clamp,
|
| 6 |
} from './shrink-utils'
|
| 7 |
|
| 8 |
+
export const shrinkHandleLogo = ({ stickyContainer, startPosition }) => {
|
| 9 |
;[...stickyContainer.querySelectorAll('[data-row*="middle"]')].map(
|
| 10 |
(row) => {
|
| 11 |
if (!row.querySelector('[data-id="logo"] .site-logo-container')) {
|
| 21 |
)
|
| 22 |
|
| 23 |
const stickyShrink = parseFloat(
|
| 24 |
+
getComputedStyle(logo)
|
| 25 |
+
.getPropertyValue('--logoStickyShrink')
|
| 26 |
+
.toString()
|
| 27 |
+
.replace(',', '.') || 1
|
| 28 |
)
|
| 29 |
|
| 30 |
const stickyHeight = initialHeight * stickyShrink
|
static/js/options/CustomizerOptionsManager.js
CHANGED
|
@@ -83,7 +83,7 @@ const CustomizerOptionsManager = () => {
|
|
| 83 |
|
| 84 |
<div className="ct-option-description">
|
| 85 |
{__(
|
| 86 |
-
'
|
| 87 |
'blc'
|
| 88 |
)}
|
| 89 |
</div>
|
|
@@ -109,7 +109,7 @@ const CustomizerOptionsManager = () => {
|
|
| 109 |
|
| 110 |
<div className="ct-option-description">
|
| 111 |
{__(
|
| 112 |
-
'
|
| 113 |
'blc'
|
| 114 |
)}
|
| 115 |
</div>
|
| 83 |
|
| 84 |
<div className="ct-option-description">
|
| 85 |
{__(
|
| 86 |
+
'Easily export the theme customizer settings.',
|
| 87 |
'blc'
|
| 88 |
)}
|
| 89 |
</div>
|
| 109 |
|
| 110 |
<div className="ct-option-description">
|
| 111 |
{__(
|
| 112 |
+
'Easily import the theme customizer settings.',
|
| 113 |
'blc'
|
| 114 |
)}
|
| 115 |
</div>
|
static/js/screens/DemoInstall.js
CHANGED
|
@@ -128,7 +128,7 @@ const DemoInstall = ({ children, path, location }) => {
|
|
| 128 |
className="ct-demo-notification"
|
| 129 |
dangerouslySetInnerHTML={{
|
| 130 |
__html: __(
|
| 131 |
-
"
|
| 132 |
),
|
| 133 |
}}
|
| 134 |
/>
|
| 128 |
className="ct-demo-notification"
|
| 129 |
dangerouslySetInnerHTML={{
|
| 130 |
__html: __(
|
| 131 |
+
"The connection to our <b>demo.creativethemes.com</b> server didn't worked. This connection is required for importing the starter sites from our demo content server. All you have to do is to contact your hosting provider and ask them to white list our demo server address."
|
| 132 |
),
|
| 133 |
}}
|
| 134 |
/>
|
static/sass/beta.scss
CHANGED
|
@@ -28,7 +28,7 @@
|
|
| 28 |
}
|
| 29 |
|
| 30 |
.ct-option-switch {
|
| 31 |
-
margin-
|
| 32 |
|
| 33 |
&:not(.ct-active) {
|
| 34 |
border-color: #fff;
|
| 28 |
}
|
| 29 |
|
| 30 |
.ct-option-switch {
|
| 31 |
+
margin-inline-start: 15px;
|
| 32 |
|
| 33 |
&:not(.ct-active) {
|
| 34 |
border-color: #fff;
|
static/sass/demo-install/demo-list.scss
CHANGED
|
@@ -6,7 +6,7 @@
|
|
| 6 |
@include list-normalize;
|
| 7 |
|
| 8 |
@media (min-width: 783px) {
|
| 9 |
-
grid-template-columns: repeat(
|
| 10 |
// grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
|
| 11 |
}
|
| 12 |
|
| 6 |
@include list-normalize;
|
| 7 |
|
| 8 |
@media (min-width: 783px) {
|
| 9 |
+
grid-template-columns: repeat(3, 1fr);
|
| 10 |
// grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
|
| 11 |
}
|
| 12 |
|
static/sass/extensions/main.scss
CHANGED
|
@@ -26,12 +26,12 @@
|
|
| 26 |
}
|
| 27 |
|
| 28 |
&:first-child {
|
| 29 |
-
border-
|
| 30 |
border-radius: 4px 0 0 4px;
|
| 31 |
}
|
| 32 |
|
| 33 |
&:last-child {
|
| 34 |
-
border-
|
| 35 |
border-radius: 0 4px 4px 0;
|
| 36 |
}
|
| 37 |
}
|
|
@@ -40,8 +40,8 @@
|
|
| 40 |
|
| 41 |
|
| 42 |
.ct-config-btn {
|
| 43 |
-
margin-
|
| 44 |
-
margin-
|
| 45 |
|
| 46 |
&:before {
|
| 47 |
font-family: dashicons;
|
| 26 |
}
|
| 27 |
|
| 28 |
&:first-child {
|
| 29 |
+
border-inline-end: 0;
|
| 30 |
border-radius: 4px 0 0 4px;
|
| 31 |
}
|
| 32 |
|
| 33 |
&:last-child {
|
| 34 |
+
border-inline-start: 0;
|
| 35 |
border-radius: 0 4px 4px 0;
|
| 36 |
}
|
| 37 |
}
|
| 40 |
|
| 41 |
|
| 42 |
.ct-config-btn {
|
| 43 |
+
margin-inline-end: auto;
|
| 44 |
+
margin-inline-start: 10px;
|
| 45 |
|
| 46 |
&:before {
|
| 47 |
font-family: dashicons;
|
