Blocksy Companion - Version 1.8.42

Version Description

Download this release

Release Info

Developer creativethemeshq
Plugin Icon wp plugin Blocksy Companion
Version 1.8.42
Comparing to
See all releases

Code changes from version 1.8.41 to 1.8.42

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.41
7
  Author: CreativeThemes
8
  Author URI: https://creativethemes.com
9
  Text Domain: blocksy-companion
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.42
7
  Author: CreativeThemes
8
  Author URI: https://creativethemes.com
9
  Text Domain: blocksy-companion
framework/extensions/cookies-consent/static/bundle/main.min.css CHANGED
@@ -1,5 +1,5 @@
1
  /**
2
- * - v1.8.41
3
  *
4
  * Copyright (c) 2022
5
  * Licensed GPLv2+
1
  /**
2
+ * - v1.8.42
3
  *
4
  * Copyright (c) 2022
5
  * Licensed GPLv2+
framework/extensions/newsletter-subscribe/static/bundle/main.min.css CHANGED
@@ -1,5 +1,5 @@
1
  /**
2
- * - v1.8.41
3
  *
4
  * Copyright (c) 2022
5
  * Licensed GPLv2+
1
  /**
2
+ * - v1.8.42
3
  *
4
  * Copyright (c) 2022
5
  * Licensed GPLv2+
framework/extensions/product-reviews/static/bundle/main-admin.min.css CHANGED
@@ -1,5 +1,5 @@
1
  /**
2
- * - v1.8.41
3
  *
4
  * Copyright (c) 2022
5
  * Licensed GPLv2+
1
  /**
2
+ * - v1.8.42
3
  *
4
  * Copyright (c) 2022
5
  * Licensed GPLv2+
framework/extensions/product-reviews/static/bundle/main.min.css CHANGED
@@ -1,5 +1,5 @@
1
  /**
2
- * - v1.8.41
3
  *
4
  * Copyright (c) 2022
5
  * Licensed GPLv2+
1
  /**
2
+ * - v1.8.42
3
  *
4
  * Copyright (c) 2022
5
  * Licensed GPLv2+
framework/extensions/trending/static/bundle/main.min.css CHANGED
@@ -1,5 +1,5 @@
1
  /**
2
- * - v1.8.41
3
  *
4
  * Copyright (c) 2022
5
  * Licensed GPLv2+
1
  /**
2
+ * - v1.8.42
3
  *
4
  * Copyright (c) 2022
5
  * Licensed GPLv2+
framework/extensions/widgets/static/bundle/main.min.css CHANGED
@@ -1,5 +1,5 @@
1
  /**
2
- * - v1.8.41
3
  *
4
  * Copyright (c) 2022
5
  * Licensed GPLv2+
1
  /**
2
+ * - v1.8.42
3
  *
4
  * Copyright (c) 2022
5
  * Licensed GPLv2+
framework/features/conditions-manager.php CHANGED
@@ -339,6 +339,13 @@ class ConditionsManager {
339
  isset($rule['payload']['taxonomy_id'])
340
  &&
341
  $post_id
 
 
 
 
 
 
 
342
  ) {
343
  return has_term(
344
  $rule['payload']['taxonomy_id'],
339
  isset($rule['payload']['taxonomy_id'])
340
  &&
341
  $post_id
342
+ &&
343
+ in_array(
344
+ get_term($rule['payload']['taxonomy_id'])->taxonomy,
345
+ get_object_taxonomies([
346
+ 'post_type' => get_post_type($post_id)
347
+ ])
348
+ )
349
  ) {
350
  return has_term(
351
  $rule['payload']['taxonomy_id'],
framework/features/google-analytics.php CHANGED
@@ -65,29 +65,36 @@ class GoogleAnalytics {
65
 
66
  public function generate_google_analytics_opts($options) {
67
  $options[] = [
68
- 'analytics_id' => [
69
- 'label' => __( 'Google Analytics v3', 'blocksy-companion' ),
70
  'type' => 'text',
71
  'design' => 'block',
72
  'divider' => 'bottom',
73
  'value' => '',
74
- 'desc' => __( 'Link your Google Analytics 3 tracking ID.', 'blocksy-companion' ),
 
 
 
 
 
 
 
75
  'disableRevertButton' => true,
76
  'setting' => [ 'transport' => 'postMessage' ],
77
  ],
78
 
79
- 'analytics_v4_id' => [
80
- 'label' => __( 'Google Analytics v4', 'blocksy-companion' ),
81
  'type' => 'text',
82
  'design' => 'block',
83
  'divider' => 'bottom',
84
  'value' => '',
85
  'desc' => sprintf(
86
  __(
87
- 'Link your Google Analytics 4 tracking ID. More info and instructions can be found %shere%s.',
88
  'blocksy-companion'
89
  ),
90
- '<a href="https://support.google.com/analytics/answer/9744165?hl=en">',
91
  '</a>'
92
  ),
93
  'disableRevertButton' => true,
65
 
66
  public function generate_google_analytics_opts($options) {
67
  $options[] = [
68
+ 'analytics_v4_id' => [
69
+ 'label' => __( 'Google Analytics v4', 'blocksy-companion' ),
70
  'type' => 'text',
71
  'design' => 'block',
72
  'divider' => 'bottom',
73
  'value' => '',
74
+ 'desc' => sprintf(
75
+ __(
76
+ 'Link your Google Analytics 4 tracking ID. More info and instructions can be found %shere%s.',
77
+ 'blocksy-companion'
78
+ ),
79
+ '<a href="https://support.google.com/analytics/answer/9744165?hl=en" target="_blank">',
80
+ '</a>'
81
+ ),
82
  'disableRevertButton' => true,
83
  'setting' => [ 'transport' => 'postMessage' ],
84
  ],
85
 
86
+ 'analytics_id' => [
87
+ 'label' => __( 'Google Analytics v3 (Legacy)', 'blocksy-companion' ),
88
  'type' => 'text',
89
  'design' => 'block',
90
  'divider' => 'bottom',
91
  'value' => '',
92
  'desc' => sprintf(
93
  __(
94
+ 'Please note: this option will be deprecated soon and we strongly reccommend switching to GA4, more info can be fount %shere%s.',
95
  'blocksy-companion'
96
  ),
97
+ '<a href="https://support.google.com/analytics/answer/11583528?hl=en" target="_blank">',
98
  '</a>'
99
  ),
100
  'disableRevertButton' => true,
framework/features/header/items/account/options.php CHANGED
@@ -18,6 +18,8 @@ if (class_exists('WooCommerce')) {
18
  $logout_link_options['woocommerce_account'] = __('WooCommerce Account', 'blocksy-companion');
19
  }
20
 
 
 
21
  $options = [
22
  blocksy_rand_md5() => [
23
  'type' => 'ct-condition',
@@ -166,39 +168,45 @@ $options = [
166
  'type' => 'ct-condition',
167
  'condition' => [ 'loggedin_media' => 'icon' ],
168
  'options' => [
169
- 'loggedin_icon_source' => [
170
- 'label' => __( 'Icon Source', 'blocksy' ),
171
- 'type' => 'ct-radio',
172
- 'value' => 'default',
173
- 'view' => 'text',
174
- 'design' => 'block',
175
- 'divider' => 'top',
176
- 'setting' => [ 'transport' => 'postMessage' ],
177
- 'choices' => [
178
- 'default' => __( 'Default', 'blocksy' ),
179
- 'custom' => __( 'Custom', 'blocksy' ),
 
 
180
  ],
181
- ],
182
-
183
- blocksy_rand_md5() => [
184
- 'type' => 'ct-condition',
185
- 'condition' => ['loggedin_icon_source' => 'custom'],
186
- 'options' => [
187
- 'loggedin_custom_icon' => [
188
- 'type' => 'icon-picker',
189
- 'label' => __('Icon', 'blocksy-companion'),
190
- 'design' => 'inline',
191
- 'divider' => 'top',
192
- 'value' => [
193
- 'icon' => 'blc blc-user'
194
  ]
195
  ]
196
- ]
197
- ],
198
 
199
  blocksy_rand_md5() => [
200
  'type' => 'ct-condition',
201
- 'condition' => ['loggedin_icon_source' => 'default'],
 
 
 
 
202
  'options' => [
203
  'account_loggedin_icon' => [
204
  'label' => false,
@@ -211,32 +219,32 @@ $options = [
211
  'divider' => 'top',
212
  'setting' => [ 'transport' => 'postMessage' ],
213
  'choices' => [
214
-
215
  'type-1' => [
216
  'src' => blocksy_image_picker_file( 'account-1' ),
217
  'title' => __( 'Type 1', 'blocksy-companion' ),
218
  ],
219
-
220
  'type-2' => [
221
  'src' => blocksy_image_picker_file( 'account-2' ),
222
  'title' => __( 'Type 2', 'blocksy-companion' ),
223
  ],
224
-
225
  'type-3' => [
226
  'src' => blocksy_image_picker_file( 'account-3' ),
227
  'title' => __( 'Type 3', 'blocksy-companion' ),
228
  ],
229
-
230
  'type-4' => [
231
  'src' => blocksy_image_picker_file( 'account-4' ),
232
  'title' => __( 'Type 4', 'blocksy-companion' ),
233
  ],
234
-
235
  'type-5' => [
236
  'src' => blocksy_image_picker_file( 'account-5' ),
237
  'title' => __( 'Type 5', 'blocksy-companion' ),
238
  ],
239
-
240
  'type-6' => [
241
  'src' => blocksy_image_picker_file( 'account-6' ),
242
  'title' => __( 'Type 6', 'blocksy-companion' ),
@@ -256,8 +264,7 @@ $options = [
256
  'divider' => 'top',
257
  'setting' => [ 'transport' => 'postMessage' ],
258
  ],
259
-
260
- ],
261
  ],
262
 
263
  blocksy_rand_md5() => [
@@ -406,7 +413,7 @@ $options = [
406
  blocksy_rand_md5() => [
407
  'type' => 'ct-condition',
408
  'condition' => [ 'logged_out_style' => 'icon' ],
409
- 'options' => [
410
 
411
  'logged_out_icon_source' => [
412
  'label' => __( 'Icon Source', 'blocksy' ),
@@ -421,7 +428,7 @@ $options = [
421
  'custom' => __( 'Custom', 'blocksy' ),
422
  ],
423
  ],
424
-
425
  blocksy_rand_md5() => [
426
  'type' => 'ct-condition',
427
  'condition' => ['logged_out_icon_source' => 'custom'],
@@ -453,32 +460,32 @@ $options = [
453
  'divider' => 'top',
454
  'setting' => [ 'transport' => 'postMessage' ],
455
  'choices' => [
456
-
457
  'type-1' => [
458
  'src' => blocksy_image_picker_file( 'account-1' ),
459
  'title' => __( 'Type 1', 'blocksy-companion' ),
460
  ],
461
-
462
  'type-2' => [
463
  'src' => blocksy_image_picker_file( 'account-2' ),
464
  'title' => __( 'Type 2', 'blocksy-companion' ),
465
  ],
466
-
467
  'type-3' => [
468
  'src' => blocksy_image_picker_file( 'account-3' ),
469
  'title' => __( 'Type 3', 'blocksy-companion' ),
470
  ],
471
-
472
  'type-4' => [
473
  'src' => blocksy_image_picker_file( 'account-4' ),
474
  'title' => __( 'Type 4', 'blocksy-companion' ),
475
  ],
476
-
477
  'type-5' => [
478
  'src' => blocksy_image_picker_file( 'account-5' ),
479
  'title' => __( 'Type 5', 'blocksy-companion' ),
480
  ],
481
-
482
  'type-6' => [
483
  'src' => blocksy_image_picker_file( 'account-6' ),
484
  'title' => __( 'Type 6', 'blocksy-companion' ),
@@ -499,6 +506,61 @@ $options = [
499
  'setting' => [ 'transport' => 'postMessage' ],
500
  ],
501
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
502
  ],
503
  ],
504
 
18
  $logout_link_options['woocommerce_account'] = __('WooCommerce Account', 'blocksy-companion');
19
  }
20
 
21
+ $is_pro = blc_fs()->can_use_premium_code();
22
+
23
  $options = [
24
  blocksy_rand_md5() => [
25
  'type' => 'ct-condition',
168
  'type' => 'ct-condition',
169
  'condition' => [ 'loggedin_media' => 'icon' ],
170
  'options' => [
171
+ $is_pro ? [
172
+ 'loggedin_icon_source' => [
173
+ 'label' => __( 'Icon Source', 'blocksy' ),
174
+ 'type' => 'ct-radio',
175
+ 'value' => 'default',
176
+ 'view' => 'text',
177
+ 'design' => 'block',
178
+ 'divider' => 'top',
179
+ 'setting' => [ 'transport' => 'postMessage' ],
180
+ 'choices' => [
181
+ 'default' => __( 'Default', 'blocksy' ),
182
+ 'custom' => __( 'Custom', 'blocksy' ),
183
+ ],
184
  ],
185
+
186
+ blocksy_rand_md5() => [
187
+ 'type' => 'ct-condition',
188
+ 'condition' => ['loggedin_icon_source' => 'custom'],
189
+ 'options' => [
190
+ 'loggedin_custom_icon' => [
191
+ 'type' => 'icon-picker',
192
+ 'label' => __('Icon', 'blocksy-companion'),
193
+ 'design' => 'inline',
194
+ 'divider' => 'top',
195
+ 'value' => [
196
+ 'icon' => 'blc blc-user'
197
+ ]
198
  ]
199
  ]
200
+ ],
201
+ ] : [],
202
 
203
  blocksy_rand_md5() => [
204
  'type' => 'ct-condition',
205
+ 'condition' => $is_pro ? [
206
+ 'loggedin_icon_source' => 'default'
207
+ ] : [
208
+ 'loggedin_icon_source' => '! not_existing'
209
+ ],
210
  'options' => [
211
  'account_loggedin_icon' => [
212
  'label' => false,
219
  'divider' => 'top',
220
  'setting' => [ 'transport' => 'postMessage' ],
221
  'choices' => [
222
+
223
  'type-1' => [
224
  'src' => blocksy_image_picker_file( 'account-1' ),
225
  'title' => __( 'Type 1', 'blocksy-companion' ),
226
  ],
227
+
228
  'type-2' => [
229
  'src' => blocksy_image_picker_file( 'account-2' ),
230
  'title' => __( 'Type 2', 'blocksy-companion' ),
231
  ],
232
+
233
  'type-3' => [
234
  'src' => blocksy_image_picker_file( 'account-3' ),
235
  'title' => __( 'Type 3', 'blocksy-companion' ),
236
  ],
237
+
238
  'type-4' => [
239
  'src' => blocksy_image_picker_file( 'account-4' ),
240
  'title' => __( 'Type 4', 'blocksy-companion' ),
241
  ],
242
+
243
  'type-5' => [
244
  'src' => blocksy_image_picker_file( 'account-5' ),
245
  'title' => __( 'Type 5', 'blocksy-companion' ),
246
  ],
247
+
248
  'type-6' => [
249
  'src' => blocksy_image_picker_file( 'account-6' ),
250
  'title' => __( 'Type 6', 'blocksy-companion' ),
264
  'divider' => 'top',
265
  'setting' => [ 'transport' => 'postMessage' ],
266
  ],
267
+ ]
 
268
  ],
269
 
270
  blocksy_rand_md5() => [
413
  blocksy_rand_md5() => [
414
  'type' => 'ct-condition',
415
  'condition' => [ 'logged_out_style' => 'icon' ],
416
+ 'options' => $is_pro ? [
417
 
418
  'logged_out_icon_source' => [
419
  'label' => __( 'Icon Source', 'blocksy' ),
428
  'custom' => __( 'Custom', 'blocksy' ),
429
  ],
430
  ],
431
+
432
  blocksy_rand_md5() => [
433
  'type' => 'ct-condition',
434
  'condition' => ['logged_out_icon_source' => 'custom'],
460
  'divider' => 'top',
461
  'setting' => [ 'transport' => 'postMessage' ],
462
  'choices' => [
463
+
464
  'type-1' => [
465
  'src' => blocksy_image_picker_file( 'account-1' ),
466
  'title' => __( 'Type 1', 'blocksy-companion' ),
467
  ],
468
+
469
  'type-2' => [
470
  'src' => blocksy_image_picker_file( 'account-2' ),
471
  'title' => __( 'Type 2', 'blocksy-companion' ),
472
  ],
473
+
474
  'type-3' => [
475
  'src' => blocksy_image_picker_file( 'account-3' ),
476
  'title' => __( 'Type 3', 'blocksy-companion' ),
477
  ],
478
+
479
  'type-4' => [
480
  'src' => blocksy_image_picker_file( 'account-4' ),
481
  'title' => __( 'Type 4', 'blocksy-companion' ),
482
  ],
483
+
484
  'type-5' => [
485
  'src' => blocksy_image_picker_file( 'account-5' ),
486
  'title' => __( 'Type 5', 'blocksy-companion' ),
487
  ],
488
+
489
  'type-6' => [
490
  'src' => blocksy_image_picker_file( 'account-6' ),
491
  'title' => __( 'Type 6', 'blocksy-companion' ),
506
  'setting' => [ 'transport' => 'postMessage' ],
507
  ],
508
 
509
+ ] : [
510
+ 'accountHeaderIcon' => [
511
+ 'label' => false,
512
+ 'type' => 'ct-image-picker',
513
+ 'value' => 'type-1',
514
+ 'attr' => [
515
+ 'data-type' => 'background',
516
+ 'data-columns' => '3',
517
+ ],
518
+ 'divider' => 'top',
519
+ 'setting' => [ 'transport' => 'postMessage' ],
520
+ 'choices' => [
521
+
522
+ 'type-1' => [
523
+ 'src' => blocksy_image_picker_file( 'account-1' ),
524
+ 'title' => __( 'Type 1', 'blocksy-companion' ),
525
+ ],
526
+
527
+ 'type-2' => [
528
+ 'src' => blocksy_image_picker_file( 'account-2' ),
529
+ 'title' => __( 'Type 2', 'blocksy-companion' ),
530
+ ],
531
+
532
+ 'type-3' => [
533
+ 'src' => blocksy_image_picker_file( 'account-3' ),
534
+ 'title' => __( 'Type 3', 'blocksy-companion' ),
535
+ ],
536
+
537
+ 'type-4' => [
538
+ 'src' => blocksy_image_picker_file( 'account-4' ),
539
+ 'title' => __( 'Type 4', 'blocksy-companion' ),
540
+ ],
541
+
542
+ 'type-5' => [
543
+ 'src' => blocksy_image_picker_file( 'account-5' ),
544
+ 'title' => __( 'Type 5', 'blocksy-companion' ),
545
+ ],
546
+
547
+ 'type-6' => [
548
+ 'src' => blocksy_image_picker_file( 'account-6' ),
549
+ 'title' => __( 'Type 6', 'blocksy-companion' ),
550
+ ],
551
+ ],
552
+ ],
553
+
554
+ 'accountHeaderIconSize' => [
555
+ 'label' => __( 'Icon Size', 'blocksy-companion' ),
556
+ 'type' => 'ct-slider',
557
+ 'min' => 5,
558
+ 'max' => 50,
559
+ 'value' => 15,
560
+ 'responsive' => true,
561
+ 'divider' => 'top',
562
+ 'setting' => [ 'transport' => 'postMessage' ],
563
+ ],
564
  ],
565
  ],
566
 
framework/features/header/modal/login.php CHANGED
@@ -52,6 +52,8 @@ if (! $forgot_password_inline) {
52
  }
53
  }
54
 
 
 
55
  do_action('login_form')
56
  ?>
57
 
52
  }
53
  }
54
 
55
+ remove_action("login_form", "wp_login_attempt_focus_start");
56
+
57
  do_action('login_form')
58
  ?>
59
 
freemius/includes/class-freemius.php CHANGED
@@ -3650,17 +3650,26 @@
3650
  static function get_site_url( $blog_id = null ) {
3651
  global $wp_filter;
3652
 
3653
- $site_url_filters = null;
 
 
 
 
 
3654
 
3655
- if ( ! empty( $wp_filter['site_url'] ) ) {
3656
- $site_url_filters = $wp_filter['site_url'];
3657
- unset( $wp_filter['site_url'] );
 
 
3658
  }
3659
 
3660
  $url = get_site_url( $blog_id );
3661
 
3662
- if ( ! empty( $site_url_filters ) ) {
3663
- $wp_filter['site_url'] = $site_url_filters;
 
 
3664
  }
3665
 
3666
  return $url;
3650
  static function get_site_url( $blog_id = null ) {
3651
  global $wp_filter;
3652
 
3653
+ $site_url_filters = array(
3654
+ 'site_url' => null,
3655
+ 'pre_option_siteurl' => null,
3656
+ 'default_option_siteurl' => null,
3657
+ 'option_siteurl' => null,
3658
+ );
3659
 
3660
+ foreach ( $site_url_filters as $hook_name => $site_url_filter ) {
3661
+ if ( ! empty( $wp_filter[ $hook_name ] ) ) {
3662
+ $site_url_filters[ $hook_name ] = $wp_filter[ $hook_name ];
3663
+ unset( $wp_filter[ $hook_name ] );
3664
+ }
3665
  }
3666
 
3667
  $url = get_site_url( $blog_id );
3668
 
3669
+ foreach ( $site_url_filters as $hook_name => $site_url_filter ) {
3670
+ if ( ! empty( $site_url_filter ) ) {
3671
+ $wp_filter[ $hook_name ] = $site_url_filter;
3672
+ }
3673
  }
3674
 
3675
  return $url;
languages/blocksy-companion.pot CHANGED
@@ -7,7 +7,7 @@ msgstr ""
7
  "MIME-Version: 1.0\n"
8
  "Content-Type: text/plain; charset=UTF-8\n"
9
  "Content-Transfer-Encoding: 8bit\n"
10
- "POT-Creation-Date: 2022-07-08 09:10+0000\n"
11
  "Project-Id-Version: undefined\n"
12
  "X-Poedit-Basepath: ..\n"
13
  "X-Poedit-KeywordsList: __;_e;_ex:1,2c;_n:1,2;_n_noop:1,2;_nx:1,2,4c;"
@@ -21,123 +21,101 @@ msgstr ""
21
  "x-generator: babel-plugin-wp-i18n\n"
22
 
23
  #. translators: %s: PHP version
24
- #: blocksy-companion.php:128, build_tmp/build/blocksy-companion.php:128
25
  msgid "Blocksy requires PHP version %s+, plugin is currently NOT RUNNING."
26
  msgstr ""
27
 
28
  #. translators: %s: WordPress version
29
- #: blocksy-companion.php:139, build_tmp/build/blocksy-companion.php:139
30
  msgid ""
31
  "Blocksy requires WordPress version %s+. Because you are using an earlier "
32
  "version, the plugin is currently NOT RUNNING."
33
  msgstr ""
34
 
35
  #: framework/extensions-manager.php:245,
36
- #: build_tmp/build/framework/extensions-manager.php:245,
37
- #: framework/premium/extensions/adobe-typekit/extension.php:46,
38
- #: build_tmp/build/framework/premium/extensions/adobe-typekit/extension.php:46
39
  msgid "Adobe Typekit"
40
  msgstr ""
41
 
42
- #: framework/extensions-manager.php:246,
43
- #: build_tmp/build/framework/extensions-manager.php:246
44
  msgid ""
45
  "Connect your Typekit account and use your fonts in any typography option."
46
  msgstr ""
47
 
48
  #: framework/extensions-manager.php:257,
49
- #: build_tmp/build/framework/extensions-manager.php:257,
50
- #: framework/premium/extensions/code-snippets/readme.php:38,
51
- #: build_tmp/build/framework/premium/extensions/code-snippets/readme.php:38
52
  msgid "Custom Code Snippets"
53
  msgstr ""
54
 
55
- #: framework/extensions-manager.php:258,
56
- #: build_tmp/build/framework/extensions-manager.php:258
57
  msgid ""
58
  "Add custom code snippets in your header and footer, globally and per post or "
59
  "page individually."
60
  msgstr ""
61
 
62
  #: framework/extensions-manager.php:269,
63
- #: build_tmp/build/framework/extensions-manager.php:269,
64
- #: framework/premium/extensions/custom-fonts/extension.php:145,
65
- #: build_tmp/build/framework/premium/extensions/custom-fonts/extension.php:145
66
  msgid "Custom Fonts"
67
  msgstr ""
68
 
69
- #: framework/extensions-manager.php:270,
70
- #: build_tmp/build/framework/extensions-manager.php:270
71
  msgid ""
72
  "Upload unlimited number of custom fonts or variable fonts and use them in "
73
  "any typography option."
74
  msgstr ""
75
 
76
  #: framework/extensions-manager.php:281,
77
- #: build_tmp/build/framework/extensions-manager.php:281,
78
- #: framework/premium/extensions/local-google-fonts/extension.php:188,
79
- #: build_tmp/build/framework/premium/extensions/local-google-fonts/extension.php:188
80
  msgid "Local Google Fonts"
81
  msgstr ""
82
 
83
- #: framework/extensions-manager.php:282,
84
- #: build_tmp/build/framework/extensions-manager.php:282
85
  msgid "Serve Google Fonts from your own server for full GDPR compliancy."
86
  msgstr ""
87
 
88
- #: framework/extensions-manager.php:293,
89
- #: build_tmp/build/framework/extensions-manager.php:293
90
  msgid "Advanced Menu"
91
  msgstr ""
92
 
93
- #: framework/extensions-manager.php:294,
94
- #: build_tmp/build/framework/extensions-manager.php:294
95
  msgid ""
96
  "Create beautiful mega menus, assign icons add badges to menu items, and "
97
  "content blocks inside menu items."
98
  msgstr ""
99
 
100
- #: framework/extensions-manager.php:305,
101
- #: build_tmp/build/framework/extensions-manager.php:305
102
  msgid "Shortcuts Bar"
103
  msgstr ""
104
 
105
- #: framework/extensions-manager.php:306,
106
- #: build_tmp/build/framework/extensions-manager.php:306
107
  msgid ""
108
  "Transform your website into a app like by displaying a neat shortcuts bar at "
109
  "the bottom of the vieport."
110
  msgstr ""
111
 
112
- #: framework/extensions-manager.php:317,
113
- #: build_tmp/build/framework/extensions-manager.php:317
114
  msgid "Multiple Sidebars"
115
  msgstr ""
116
 
117
- #: framework/extensions-manager.php:318,
118
- #: build_tmp/build/framework/extensions-manager.php:318
119
  msgid ""
120
  "Create unlimited number of sidebars and display them conditionaly on any "
121
  "page or post."
122
  msgstr ""
123
 
124
- #: framework/extensions-manager.php:329,
125
- #: build_tmp/build/framework/extensions-manager.php:329
126
  msgid "White Label (Agency Package)"
127
  msgstr ""
128
 
129
- #: framework/extensions-manager.php:330,
130
- #: build_tmp/build/framework/extensions-manager.php:330
131
  msgid "Change the theme and companion plugin branding to your own custom one."
132
  msgstr ""
133
 
134
- #: framework/extensions-manager.php:341,
135
- #: build_tmp/build/framework/extensions-manager.php:341
136
  msgid "WooCommerce Extra"
137
  msgstr ""
138
 
139
- #: framework/extensions-manager.php:342,
140
- #: build_tmp/build/framework/extensions-manager.php:342
141
  msgid ""
142
  "Increase the conversion rate by adding a product quick view modal, a "
143
  "floating cart. Control the single product gallery/slider and the layout, add "
@@ -145,454 +123,342 @@ msgid ""
145
  msgstr ""
146
 
147
  #: framework/theme-integration.php:310,
148
- #: build_tmp/build/framework/theme-integration.php:310,
149
  #: framework/extensions/widgets/widgets/ct-facebook/options.php:16,
150
  #: framework/extensions/widgets/widgets/ct-facebook/view.php:12,
151
- #: framework/extensions/widgets/widgets/ct-facebook/widget.php:13,
152
- #: build_tmp/build/framework/extensions/widgets/widgets/ct-facebook/options.php:16,
153
- #: build_tmp/build/framework/extensions/widgets/widgets/ct-facebook/view.php:12,
154
- #: build_tmp/build/framework/extensions/widgets/widgets/ct-facebook/widget.php:13
155
  msgid "Facebook"
156
  msgstr ""
157
 
158
- #: framework/theme-integration.php:311,
159
- #: build_tmp/build/framework/theme-integration.php:311
160
  msgid "Twitter"
161
  msgstr ""
162
 
163
- #: framework/theme-integration.php:312,
164
- #: build_tmp/build/framework/theme-integration.php:312
165
  msgid "LinkedIn"
166
  msgstr ""
167
 
168
- #: framework/theme-integration.php:313,
169
- #: build_tmp/build/framework/theme-integration.php:313
170
  msgid "Dribbble"
171
  msgstr ""
172
 
173
- #: framework/theme-integration.php:314,
174
- #: build_tmp/build/framework/theme-integration.php:314
175
  msgid "Instagram"
176
  msgstr ""
177
 
178
- #: framework/theme-integration.php:315,
179
- #: build_tmp/build/framework/theme-integration.php:315
180
  msgid "Pinterest"
181
  msgstr ""
182
 
183
- #: framework/theme-integration.php:316,
184
- #: build_tmp/build/framework/theme-integration.php:316
185
  msgid "WordPress"
186
  msgstr ""
187
 
188
- #: framework/theme-integration.php:317,
189
- #: build_tmp/build/framework/theme-integration.php:317
190
  msgid "GitHub"
191
  msgstr ""
192
 
193
  #: framework/theme-integration.php:318,
194
- #: build_tmp/build/framework/theme-integration.php:318,
195
  #: framework/extensions/widgets/widgets/ct-contact-info/options.php:497,
196
  #: framework/extensions/widgets/widgets/ct-socials/options.php:100,
197
- #: framework/premium/features/content-blocks/options/archive.php:47,
198
- #: build_tmp/build/framework/extensions/widgets/widgets/ct-contact-info/options.php:497,
199
- #: build_tmp/build/framework/extensions/widgets/widgets/ct-socials/options.php:100,
200
- #: build_tmp/build/framework/premium/features/content-blocks/options/archive.php:47
201
  msgid "Medium"
202
  msgstr ""
203
 
204
- #: framework/theme-integration.php:319,
205
- #: build_tmp/build/framework/theme-integration.php:319
206
  msgid "YouTube"
207
  msgstr ""
208
 
209
- #: framework/theme-integration.php:320,
210
- #: build_tmp/build/framework/theme-integration.php:320
211
  msgid "Vimeo"
212
  msgstr ""
213
 
214
- #: framework/theme-integration.php:321,
215
- #: build_tmp/build/framework/theme-integration.php:321
216
  msgid "VKontakte"
217
  msgstr ""
218
 
219
- #: framework/theme-integration.php:322,
220
- #: build_tmp/build/framework/theme-integration.php:322
221
  msgid "Odnoklassniki"
222
  msgstr ""
223
 
224
- #: framework/theme-integration.php:323,
225
- #: build_tmp/build/framework/theme-integration.php:323
226
  msgid "TikTok"
227
  msgstr ""
228
 
229
- #: framework/theme-integration.php:395,
230
- #: build_tmp/build/framework/theme-integration.php:395
231
  msgid "Companion"
232
  msgstr ""
233
 
234
- #: framework/theme-integration.php:411,
235
- #: build_tmp/build/framework/theme-integration.php:411
236
- #: static/js/screens/SiteExport.js:106
237
  msgid "PRO"
238
  msgstr ""
239
 
240
- #: framework/widgets-manager.php:75,
241
- #: build_tmp/build/framework/widgets-manager.php:75
242
  msgid "Default widget name"
243
  msgstr ""
244
 
245
- #: framework/widgets-manager.php:81,
246
- #: build_tmp/build/framework/widgets-manager.php:81
247
  msgid "Display online support infomation"
248
  msgstr ""
249
 
250
- #: framework/widgets-manager.php:144,
251
- #: build_tmp/build/framework/widgets-manager.php:144
252
  msgid "Widget Title"
253
  msgstr ""
254
 
255
  #. translators: %s: Link to the login page.
256
- #: framework/features/account-auth.php:92,
257
- #: build_tmp/build/framework/features/account-auth.php:92
258
  msgid ""
259
  "Check your email for the confirmation link, then visit the <a href=\"%s"
260
  "\">login page</a>."
261
  msgstr ""
262
 
263
  #: framework/features/account-auth.php:104,
264
- #: framework/features/account-auth.php:232,
265
- #: build_tmp/build/framework/features/account-auth.php:104,
266
- #: build_tmp/build/framework/features/account-auth.php:232
267
  msgid "Check your email"
268
  msgstr ""
269
 
270
- #: framework/features/account-auth.php:199,
271
- #: build_tmp/build/framework/features/account-auth.php:199
272
  msgid ""
273
  "Your account was created successfully. Your login details have been sent to "
274
  "your email address. Please visit the <a href=\"%s\">login page</a>."
275
  msgstr ""
276
 
277
- #: framework/features/account-auth.php:208,
278
- #: build_tmp/build/framework/features/account-auth.php:208
279
  msgid ""
280
  "Your account was created successfully and a password has been sent to your "
281
  "email address. Please visit the <a href=\"%s\">login page</a>."
282
  msgstr ""
283
 
284
- #: framework/features/account-auth.php:238,
285
- #: build_tmp/build/framework/features/account-auth.php:238
286
  msgid "Registration Form"
287
  msgstr ""
288
 
289
- #: framework/features/account-auth.php:239,
290
- #: build_tmp/build/framework/features/account-auth.php:239
291
  msgid "Register For This Site"
292
  msgstr ""
293
 
294
- #: framework/features/conditions-manager.php:479,
295
- #: build_tmp/build/framework/features/conditions-manager.php:479
296
  msgid "Entire Website"
297
  msgstr ""
298
 
299
- #: framework/features/conditions-manager.php:487,
300
- #: framework/features/conditions-manager.php:529,
301
- #: framework/features/conditions-manager.php:561,
302
- #: build_tmp/build/framework/features/conditions-manager.php:487,
303
- #: build_tmp/build/framework/features/conditions-manager.php:529,
304
- #: build_tmp/build/framework/features/conditions-manager.php:561
305
  msgid "Basic"
306
  msgstr ""
307
 
308
- #: framework/features/conditions-manager.php:491,
309
- #: framework/features/conditions-manager.php:565,
310
- #: build_tmp/build/framework/features/conditions-manager.php:491,
311
- #: build_tmp/build/framework/features/conditions-manager.php:565
312
  msgid "Singulars"
313
  msgstr ""
314
 
315
- #: framework/features/conditions-manager.php:496,
316
- #: framework/features/conditions-manager.php:533,
317
- #: build_tmp/build/framework/features/conditions-manager.php:496,
318
- #: build_tmp/build/framework/features/conditions-manager.php:533
319
  msgid "Archives"
320
  msgstr ""
321
 
322
- #: framework/features/conditions-manager.php:502,
323
- #: framework/features/conditions-manager.php:539,
324
- #: framework/features/conditions-manager.php:571,
325
  #: framework/extensions/trending/customizer.php:4,
326
- #: build_tmp/build/framework/features/conditions-manager.php:502,
327
- #: build_tmp/build/framework/features/conditions-manager.php:539,
328
- #: build_tmp/build/framework/features/conditions-manager.php:571,
329
- #: build_tmp/build/framework/extensions/trending/customizer.php:4,
330
  #: framework/extensions/widgets/widgets/ct-posts/options.php:11,
331
  #: framework/extensions/widgets/widgets/ct-posts/options.php:98,
332
  #: framework/extensions/widgets/widgets/ct-posts/view.php:139,
333
  #: framework/extensions/widgets/widgets/ct-posts/widget.php:13,
334
- #: framework/premium/features/premium-header/items/search-input/options.php:4,
335
- #: build_tmp/build/framework/extensions/widgets/widgets/ct-posts/options.php:11,
336
- #: build_tmp/build/framework/extensions/widgets/widgets/ct-posts/options.php:98,
337
- #: build_tmp/build/framework/extensions/widgets/widgets/ct-posts/view.php:139,
338
- #: build_tmp/build/framework/extensions/widgets/widgets/ct-posts/widget.php:13,
339
- #: build_tmp/build/framework/premium/features/premium-header/items/search-input/options.php:4
340
  msgid "Posts"
341
  msgstr ""
342
 
343
- #: framework/features/conditions-manager.php:506,
344
- #: framework/features/conditions-manager.php:575,
345
- #: build_tmp/build/framework/features/conditions-manager.php:506,
346
- #: build_tmp/build/framework/features/conditions-manager.php:575,
347
  #: framework/premium/features/content-blocks/hooks-manager.php:408,
348
  #: framework/premium/features/content-blocks/hooks-manager.php:416,
349
  #: framework/premium/features/content-blocks/hooks-manager.php:424,
350
  #: framework/premium/features/content-blocks/hooks-manager.php:431,
351
  #: framework/premium/features/content-blocks/hooks-manager.php:438,
352
- #: framework/premium/features/content-blocks/hooks-manager.php:446,
353
- #: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:408,
354
- #: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:416,
355
- #: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:424,
356
- #: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:431,
357
- #: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:438,
358
- #: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:446
359
  msgid "Single Post"
360
  msgstr ""
361
 
362
- #: framework/features/conditions-manager.php:511,
363
- #: framework/features/conditions-manager.php:543,
364
- #: build_tmp/build/framework/features/conditions-manager.php:511,
365
- #: build_tmp/build/framework/features/conditions-manager.php:543
366
  msgid "All Post Archives"
367
  msgstr ""
368
 
369
- #: framework/features/conditions-manager.php:516,
370
- #: framework/features/conditions-manager.php:548,
371
- #: build_tmp/build/framework/features/conditions-manager.php:516,
372
- #: build_tmp/build/framework/features/conditions-manager.php:548
373
  msgid "Post Categories"
374
  msgstr ""
375
 
376
- #: framework/features/conditions-manager.php:521,
377
- #: framework/features/conditions-manager.php:553,
378
- #: build_tmp/build/framework/features/conditions-manager.php:521,
379
- #: build_tmp/build/framework/features/conditions-manager.php:553
380
  msgid "Post Tags"
381
  msgstr ""
382
 
383
- #: framework/features/conditions-manager.php:583,
384
- #: build_tmp/build/framework/features/conditions-manager.php:583,
385
  #: framework/extensions/widgets/widgets/ct-posts/options.php:12,
386
- #: framework/premium/features/premium-header/items/search-input/options.php:5,
387
- #: build_tmp/build/framework/extensions/widgets/widgets/ct-posts/options.php:12,
388
- #: build_tmp/build/framework/premium/features/premium-header/items/search-input/options.php:5
389
  msgid "Pages"
390
  msgstr ""
391
 
392
- #: framework/features/conditions-manager.php:587,
393
- #: build_tmp/build/framework/features/conditions-manager.php:587
394
  msgid "Single Page"
395
  msgstr ""
396
 
397
- #: framework/features/conditions-manager.php:614,
398
- #: build_tmp/build/framework/features/conditions-manager.php:614
399
  msgid "%s Single"
400
  msgstr ""
401
 
402
- #: framework/features/conditions-manager.php:624,
403
- #: build_tmp/build/framework/features/conditions-manager.php:624
404
  msgid "%s Archive"
405
  msgstr ""
406
 
407
- #: framework/features/conditions-manager.php:637,
408
- #: build_tmp/build/framework/features/conditions-manager.php:637
409
  msgid "%s %s Taxonomy"
410
  msgstr ""
411
 
412
- #: framework/features/conditions-manager.php:652,
413
- #: build_tmp/build/framework/features/conditions-manager.php:652
414
  msgid "Post ID"
415
  msgstr ""
416
 
417
- #: framework/features/conditions-manager.php:657,
418
- #: build_tmp/build/framework/features/conditions-manager.php:657
419
  msgid "Page ID"
420
  msgstr ""
421
 
422
- #: framework/features/conditions-manager.php:662,
423
- #: build_tmp/build/framework/features/conditions-manager.php:662
424
  #: static/js/options/ConditionsManager/PostIdPicker.js:76
425
  msgid "Custom Post Type ID"
426
  msgstr ""
427
 
428
- #: framework/features/conditions-manager.php:667,
429
- #: build_tmp/build/framework/features/conditions-manager.php:667
430
  msgid "Post with Taxonomy ID"
431
  msgstr ""
432
 
433
- #: framework/features/conditions-manager.php:672,
434
- #: build_tmp/build/framework/features/conditions-manager.php:672
435
  msgid "Taxonomy ID"
436
  msgstr ""
437
 
438
- #: framework/features/conditions-manager.php:676,
439
- #: build_tmp/build/framework/features/conditions-manager.php:676
440
  msgid "Specific"
441
  msgstr ""
442
 
443
- #: framework/features/conditions-manager.php:682,
444
- #: build_tmp/build/framework/features/conditions-manager.php:682
445
  msgid "Other Pages"
446
  msgstr ""
447
 
448
- #: framework/features/conditions-manager.php:686,
449
- #: build_tmp/build/framework/features/conditions-manager.php:686
450
  msgid "404"
451
  msgstr ""
452
 
453
- #: framework/features/conditions-manager.php:691,
454
- #: build_tmp/build/framework/features/conditions-manager.php:691,
455
  #: framework/premium/features/premium-header/items/search-input/options.php:45,
456
- #: framework/premium/features/premium-header/items/search-input/view.php:95,
457
- #: build_tmp/build/framework/premium/features/premium-header/items/search-input/options.php:45,
458
- #: build_tmp/build/framework/premium/features/premium-header/items/search-input/view.php:95
459
  msgid "Search"
460
  msgstr ""
461
 
462
- #: framework/features/conditions-manager.php:696,
463
- #: build_tmp/build/framework/features/conditions-manager.php:696
464
  msgid "Blog"
465
  msgstr ""
466
 
467
- #: framework/features/conditions-manager.php:701,
468
- #: build_tmp/build/framework/features/conditions-manager.php:701
469
  msgid "Front Page"
470
  msgstr ""
471
 
472
- #: framework/features/conditions-manager.php:706,
473
- #: build_tmp/build/framework/features/conditions-manager.php:706
474
  msgid "Privacy Policy Page"
475
  msgstr ""
476
 
477
- #: framework/features/conditions-manager.php:718,
478
- #: build_tmp/build/framework/features/conditions-manager.php:718
479
  msgid "Author"
480
  msgstr ""
481
 
482
- #: framework/features/conditions-manager.php:728,
483
- #: build_tmp/build/framework/features/conditions-manager.php:728
484
  msgid "WooCommerce"
485
  msgstr ""
486
 
487
- #: framework/features/conditions-manager.php:732,
488
- #: build_tmp/build/framework/features/conditions-manager.php:732
489
  msgid "Shop Home"
490
  msgstr ""
491
 
492
- #: framework/features/conditions-manager.php:737,
493
- #: build_tmp/build/framework/features/conditions-manager.php:737
494
  msgid "Single Product"
495
  msgstr ""
496
 
497
- #: framework/features/conditions-manager.php:742,
498
- #: build_tmp/build/framework/features/conditions-manager.php:742
499
  msgid "Product Archives"
500
  msgstr ""
501
 
502
- #: framework/features/conditions-manager.php:747,
503
- #: build_tmp/build/framework/features/conditions-manager.php:747
504
  msgid "Product Categories"
505
  msgstr ""
506
 
507
- #: framework/features/conditions-manager.php:752,
508
- #: build_tmp/build/framework/features/conditions-manager.php:752
509
  msgid "Product Tags"
510
  msgstr ""
511
 
512
- #: framework/features/conditions-manager.php:760,
513
- #: build_tmp/build/framework/features/conditions-manager.php:760
514
  msgid "Custom Post Types"
515
  msgstr ""
516
 
517
- #: framework/features/conditions-manager.php:769,
518
- #: build_tmp/build/framework/features/conditions-manager.php:769
519
  msgid "User Auth"
520
  msgstr ""
521
 
522
- #: framework/features/conditions-manager.php:773,
523
- #: build_tmp/build/framework/features/conditions-manager.php:773
524
  msgid "User Logged In"
525
  msgstr ""
526
 
527
- #: framework/features/conditions-manager.php:778,
528
- #: build_tmp/build/framework/features/conditions-manager.php:778
529
  msgid "User Logged Out"
530
  msgstr ""
531
 
532
- #: framework/features/conditions-manager.php:784,
533
- #: build_tmp/build/framework/features/conditions-manager.php:784
534
  msgid "User Roles"
535
  msgstr ""
536
 
537
- #: framework/features/conditions-manager.php:789,
538
- #: build_tmp/build/framework/features/conditions-manager.php:789,
539
  #: framework/premium/features/content-blocks/options/404.php:19,
540
  #: framework/premium/features/content-blocks/options/header.php:19,
541
  #: framework/premium/features/content-blocks/options/hook.php:24,
542
- #: framework/premium/features/content-blocks/options/popup.php:25,
543
- #: build_tmp/build/framework/premium/features/content-blocks/options/404.php:19,
544
- #: build_tmp/build/framework/premium/features/content-blocks/options/header.php:19,
545
- #: build_tmp/build/framework/premium/features/content-blocks/options/hook.php:24,
546
- #: build_tmp/build/framework/premium/features/content-blocks/options/popup.php:25
547
  msgid "Other"
548
  msgstr ""
549
 
550
- #: framework/features/conditions-manager.php:793,
551
- #: build_tmp/build/framework/features/conditions-manager.php:793
552
  msgid "Post Author"
553
  msgstr ""
554
 
555
- #: framework/features/conditions-manager.php:805,
556
- #: build_tmp/build/framework/features/conditions-manager.php:805,
557
- #: framework/premium/features/premium-header/items/language-switcher/config.php:14,
558
- #: build_tmp/build/framework/premium/features/premium-header/items/language-switcher/config.php:14
559
  msgid "Languages"
560
  msgstr ""
561
 
562
- #: framework/features/conditions-manager.php:809,
563
- #: build_tmp/build/framework/features/conditions-manager.php:809
564
  msgid "Current Language"
565
  msgstr ""
566
 
567
- #: framework/features/conditions-manager.php:817,
568
- #: build_tmp/build/framework/features/conditions-manager.php:817
569
  msgid "bbPress"
570
  msgstr ""
571
 
572
- #: framework/features/conditions-manager.php:821,
573
- #: build_tmp/build/framework/features/conditions-manager.php:821
574
  msgid "Profile"
575
  msgstr ""
576
 
577
- #: framework/features/conditions-manager.php:833,
578
- #: build_tmp/build/framework/features/conditions-manager.php:833
579
  #: static/js/options/ConditionsManager.js:104
580
  msgid "Include"
581
  msgstr ""
582
 
583
- #: framework/features/conditions-manager.php:833,
584
- #: build_tmp/build/framework/features/conditions-manager.php:833
585
  #: static/js/options/ConditionsManager.js:105
586
  msgid "Exclude"
587
  msgstr ""
588
 
589
- #: framework/features/conditions-manager.php:886,
590
- #: build_tmp/build/framework/features/conditions-manager.php:886
591
  msgid "Language"
592
  msgstr ""
593
 
594
- #: framework/features/demo-install.php:233,
595
- #: build_tmp/build/framework/features/demo-install.php:233
596
  msgid ""
597
  "Your PHP installation doesn't have support for XML. Please install the "
598
  "<i>xml</i> or <i>simplexml</i> PHP extension in order to be able to install "
@@ -600,100 +466,83 @@ msgid ""
600
  "in doing so."
601
  msgstr ""
602
 
603
- #: framework/features/dynamic-css.php:46,
604
- #: build_tmp/build/framework/features/dynamic-css.php:46
605
  msgid "Dynamic CSS Output"
606
  msgstr ""
607
 
608
- #: framework/features/dynamic-css.php:50,
609
- #: build_tmp/build/framework/features/dynamic-css.php:50
610
  msgid ""
611
  "The strategy of outputting the dynamic CSS. File - all the CSS code will be "
612
  "placed in a static file, otherwise it will be placed inline in head."
613
  msgstr ""
614
 
615
- #: framework/features/dynamic-css.php:52,
616
- #: build_tmp/build/framework/features/dynamic-css.php:52
617
  msgid "File"
618
  msgstr ""
619
 
620
  #: framework/features/dynamic-css.php:53,
621
- #: build_tmp/build/framework/features/dynamic-css.php:53,
622
- #: framework/premium/features/premium-header/items/language-switcher/options.php:32,
623
- #: build_tmp/build/framework/premium/features/premium-header/items/language-switcher/options.php:32
624
  msgid "Inline"
625
  msgstr ""
626
 
627
- #: framework/features/google-analytics.php:69,
628
- #: build_tmp/build/framework/features/google-analytics.php:69
629
- msgid "Google Analytics v3"
630
  msgstr ""
631
 
632
- #: framework/features/google-analytics.php:74,
633
- #: build_tmp/build/framework/features/google-analytics.php:74
634
- msgid "Link your Google Analytics 3 tracking ID."
 
635
  msgstr ""
636
 
637
- #: framework/features/google-analytics.php:80,
638
- #: build_tmp/build/framework/features/google-analytics.php:80
639
- msgid "Google Analytics v4"
640
  msgstr ""
641
 
642
- #: framework/features/google-analytics.php:86,
643
- #: build_tmp/build/framework/features/google-analytics.php:86
644
  msgid ""
645
- "Link your Google Analytics 4 tracking ID. More info and instructions can be "
646
- "found %shere%s."
647
  msgstr ""
648
 
649
- #: framework/features/google-analytics.php:98,
650
- #: build_tmp/build/framework/features/google-analytics.php:98
651
  msgid "IP Anonymization"
652
  msgstr ""
653
 
654
- #: framework/features/google-analytics.php:102,
655
- #: build_tmp/build/framework/features/google-analytics.php:102
656
  msgid ""
657
  "Enable Google Analytics IP Anonymization for enhanced privacy. More info and "
658
  "instructions can be found %shere%s."
659
  msgstr ""
660
 
661
- #: framework/features/opengraph-meta-data.php:17,
662
- #: build_tmp/build/framework/features/opengraph-meta-data.php:17
663
  msgid "OpenGraph Meta Data"
664
  msgstr ""
665
 
666
- #: framework/features/opengraph-meta-data.php:20,
667
- #: build_tmp/build/framework/features/opengraph-meta-data.php:20
668
  msgid "Enable the OpenGraph rich meta data features for your website."
669
  msgstr ""
670
 
671
- #: framework/features/opengraph-meta-data.php:29,
672
- #: build_tmp/build/framework/features/opengraph-meta-data.php:29
673
  msgid "Facebook Page URL"
674
  msgstr ""
675
 
676
- #: framework/features/opengraph-meta-data.php:36,
677
- #: build_tmp/build/framework/features/opengraph-meta-data.php:36
678
  msgid "Facebook App ID"
679
  msgstr ""
680
 
681
- #: framework/features/opengraph-meta-data.php:43,
682
- #: build_tmp/build/framework/features/opengraph-meta-data.php:43
683
  msgid "Twitter Username"
684
  msgstr ""
685
 
686
  #. translators: This is a brand name. Preferably to not be translated
687
  #: framework/extensions/cookies-consent/config.php:5,
688
- #: framework/extensions/cookies-consent/customizer.php:5,
689
- #: build_tmp/build/framework/extensions/cookies-consent/config.php:5,
690
- #: build_tmp/build/framework/extensions/cookies-consent/customizer.php:5
691
  msgctxt "Extension Brand Name"
692
  msgid "Cookies Consent"
693
  msgstr ""
694
 
695
- #: framework/extensions/cookies-consent/config.php:6,
696
- #: build_tmp/build/framework/extensions/cookies-consent/config.php:6
697
  msgid ""
698
  "Display a cookie acceptance box in order to comply with the privacy "
699
  "regulations in your country."
@@ -708,35 +557,16 @@ msgstr ""
708
  #: framework/premium/extensions/shortcuts/customizer.php:534,
709
  #: framework/premium/extensions/woocommerce-extra/floating-cart.php:11,
710
  #: framework/premium/extensions/woocommerce-extra/offcanvas-filter.php:164,
711
- #: build_tmp/build/framework/extensions/cookies-consent/customizer.php:15,
712
- #: build_tmp/build/framework/extensions/newsletter-subscribe/customizer.php:12,
713
- #: build_tmp/build/framework/extensions/product-reviews/extension.php:343,
714
- #: build_tmp/build/framework/extensions/product-reviews/metabox.php:6,
715
- #: build_tmp/build/framework/extensions/trending/customizer.php:110,
716
- #: framework/features/header/items/account/options.php:68,
717
  #: framework/premium/extensions/woocommerce-extra/includes/wish-list-options.php:23,
718
  #: framework/premium/features/content-blocks/options/popup.php:30,
719
- #: build_tmp/build/framework/premium/extensions/mega-menu/options.php:6,
720
- #: build_tmp/build/framework/premium/extensions/shortcuts/customizer.php:534,
721
- #: build_tmp/build/framework/premium/extensions/woocommerce-extra/floating-cart.php:11,
722
- #: build_tmp/build/framework/premium/extensions/woocommerce-extra/offcanvas-filter.php:164,
723
  #: framework/premium/extensions/post-types-extra/includes/filtering/customizer.php:35,
724
  #: framework/premium/extensions/post-types-extra/includes/read-progress/customizer.php:19,
725
  #: framework/premium/extensions/woocommerce-extra/header-items/wish-list/options.php:5,
726
  #: framework/premium/features/premium-header/items/contacts/options.php:5,
727
  #: framework/premium/features/premium-header/items/language-switcher/options.php:21,
728
  #: framework/premium/features/premium-header/items/language-switcher/options.php:347,
729
- #: framework/premium/features/premium-header/items/search-input/options.php:37,
730
- #: build_tmp/build/framework/features/header/items/account/options.php:68,
731
- #: build_tmp/build/framework/premium/extensions/woocommerce-extra/includes/wish-list-options.php:23,
732
- #: build_tmp/build/framework/premium/features/content-blocks/options/popup.php:30,
733
- #: build_tmp/build/framework/premium/extensions/post-types-extra/includes/filtering/customizer.php:35,
734
- #: build_tmp/build/framework/premium/extensions/post-types-extra/includes/read-progress/customizer.php:19,
735
- #: build_tmp/build/framework/premium/extensions/woocommerce-extra/header-items/wish-list/options.php:5,
736
- #: build_tmp/build/framework/premium/features/premium-header/items/contacts/options.php:5,
737
- #: build_tmp/build/framework/premium/features/premium-header/items/language-switcher/options.php:21,
738
- #: build_tmp/build/framework/premium/features/premium-header/items/language-switcher/options.php:347,
739
- #: build_tmp/build/framework/premium/features/premium-header/items/search-input/options.php:37
740
  #: framework/premium/extensions/white-label/dashboard-static/js/EditSettings.js:128
741
  msgid "General"
742
  msgstr ""
@@ -745,18 +575,11 @@ msgstr ""
745
  #: framework/premium/extensions/shortcuts/customizer.php:546,
746
  #: framework/premium/extensions/woocommerce-extra/extension.php:81,
747
  #: framework/premium/extensions/woocommerce-extra/offcanvas-filter.php:186,
748
- #: build_tmp/build/framework/extensions/cookies-consent/customizer.php:28,
749
- #: framework/features/header/items/account/options.php:217,
750
- #: framework/features/header/items/account/options.php:459,
751
- #: build_tmp/build/framework/premium/extensions/shortcuts/customizer.php:546,
752
- #: build_tmp/build/framework/premium/extensions/woocommerce-extra/extension.php:73,
753
- #: build_tmp/build/framework/premium/extensions/woocommerce-extra/offcanvas-filter.php:186,
754
  #: framework/premium/extensions/post-types-extra/includes/filtering/customizer.php:48,
755
- #: framework/premium/extensions/woocommerce-extra/header-items/wish-list/options.php:56,
756
- #: build_tmp/build/framework/features/header/items/account/options.php:217,
757
- #: build_tmp/build/framework/features/header/items/account/options.php:459,
758
- #: build_tmp/build/framework/premium/extensions/post-types-extra/includes/filtering/customizer.php:48,
759
- #: build_tmp/build/framework/premium/extensions/woocommerce-extra/header-items/wish-list/options.php:56
760
  msgid "Type 1"
761
  msgstr ""
762
 
@@ -764,63 +587,47 @@ msgstr ""
764
  #: framework/premium/extensions/shortcuts/customizer.php:551,
765
  #: framework/premium/extensions/woocommerce-extra/extension.php:86,
766
  #: framework/premium/extensions/woocommerce-extra/offcanvas-filter.php:191,
767
- #: build_tmp/build/framework/extensions/cookies-consent/customizer.php:33,
768
- #: framework/features/header/items/account/options.php:222,
769
- #: framework/features/header/items/account/options.php:464,
770
- #: build_tmp/build/framework/premium/extensions/shortcuts/customizer.php:551,
771
- #: build_tmp/build/framework/premium/extensions/woocommerce-extra/extension.php:78,
772
- #: build_tmp/build/framework/premium/extensions/woocommerce-extra/offcanvas-filter.php:191,
773
  #: framework/premium/extensions/post-types-extra/includes/filtering/customizer.php:53,
774
- #: framework/premium/extensions/woocommerce-extra/header-items/wish-list/options.php:61,
775
- #: build_tmp/build/framework/features/header/items/account/options.php:222,
776
- #: build_tmp/build/framework/features/header/items/account/options.php:464,
777
- #: build_tmp/build/framework/premium/extensions/post-types-extra/includes/filtering/customizer.php:53,
778
- #: build_tmp/build/framework/premium/extensions/woocommerce-extra/header-items/wish-list/options.php:61
779
  msgid "Type 2"
780
  msgstr ""
781
 
782
- #: framework/extensions/cookies-consent/customizer.php:40,
783
- #: build_tmp/build/framework/extensions/cookies-consent/customizer.php:40
784
  msgid "Cookie period"
785
  msgstr ""
786
 
787
- #: framework/extensions/cookies-consent/customizer.php:48,
788
- #: build_tmp/build/framework/extensions/cookies-consent/customizer.php:48
789
  msgid "One hour"
790
  msgstr ""
791
 
792
- #: framework/extensions/cookies-consent/customizer.php:49,
793
- #: build_tmp/build/framework/extensions/cookies-consent/customizer.php:49
794
  msgid "One day"
795
  msgstr ""
796
 
797
- #: framework/extensions/cookies-consent/customizer.php:50,
798
- #: build_tmp/build/framework/extensions/cookies-consent/customizer.php:50
799
  msgid "One week"
800
  msgstr ""
801
 
802
- #: framework/extensions/cookies-consent/customizer.php:51,
803
- #: build_tmp/build/framework/extensions/cookies-consent/customizer.php:51
804
  msgid "One month"
805
  msgstr ""
806
 
807
- #: framework/extensions/cookies-consent/customizer.php:52,
808
- #: build_tmp/build/framework/extensions/cookies-consent/customizer.php:52
809
  msgid "Three months"
810
  msgstr ""
811
 
812
- #: framework/extensions/cookies-consent/customizer.php:53,
813
- #: build_tmp/build/framework/extensions/cookies-consent/customizer.php:53
814
  msgid "Six months"
815
  msgstr ""
816
 
817
- #: framework/extensions/cookies-consent/customizer.php:54,
818
- #: build_tmp/build/framework/extensions/cookies-consent/customizer.php:54
819
  msgid "One year"
820
  msgstr ""
821
 
822
- #: framework/extensions/cookies-consent/customizer.php:55,
823
- #: build_tmp/build/framework/extensions/cookies-consent/customizer.php:55
824
  msgid "Forever"
825
  msgstr ""
826
 
@@ -829,7 +636,6 @@ msgstr ""
829
  #: framework/premium/features/content-blocks/hooks-manager.php:243,
830
  #: framework/premium/features/content-blocks/hooks-manager.php:251,
831
  #: framework/premium/features/content-blocks/hooks-manager.php:259,
832
- #: build_tmp/build/framework/extensions/cookies-consent/customizer.php:62,
833
  #: framework/extensions/widgets/widgets/ct-contact-info/options.php:80,
834
  #: framework/extensions/widgets/widgets/ct-contact-info/options.php:141,
835
  #: framework/extensions/widgets/widgets/ct-contact-info/options.php:201,
@@ -837,78 +643,49 @@ msgstr ""
837
  #: framework/extensions/widgets/widgets/ct-contact-info/options.php:321,
838
  #: framework/extensions/widgets/widgets/ct-contact-info/options.php:381,
839
  #: framework/extensions/widgets/widgets/ct-contact-info/options.php:441,
840
- #: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:235,
841
- #: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:243,
842
- #: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:251,
843
- #: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:259,
844
  #: framework/premium/features/premium-header/items/contacts/options.php:52,
845
  #: framework/premium/features/premium-header/items/contacts/options.php:88,
846
  #: framework/premium/features/premium-header/items/contacts/options.php:124,
847
  #: framework/premium/features/premium-header/items/contacts/options.php:160,
848
  #: framework/premium/features/premium-header/items/contacts/options.php:196,
849
  #: framework/premium/features/premium-header/items/contacts/options.php:232,
850
- #: framework/premium/features/premium-header/items/contacts/options.php:268,
851
- #: build_tmp/build/framework/extensions/widgets/widgets/ct-contact-info/options.php:80,
852
- #: build_tmp/build/framework/extensions/widgets/widgets/ct-contact-info/options.php:141,
853
- #: build_tmp/build/framework/extensions/widgets/widgets/ct-contact-info/options.php:201,
854
- #: build_tmp/build/framework/extensions/widgets/widgets/ct-contact-info/options.php:261,
855
- #: build_tmp/build/framework/extensions/widgets/widgets/ct-contact-info/options.php:321,
856
- #: build_tmp/build/framework/extensions/widgets/widgets/ct-contact-info/options.php:381,
857
- #: build_tmp/build/framework/extensions/widgets/widgets/ct-contact-info/options.php:441,
858
- #: build_tmp/build/framework/premium/features/premium-header/items/contacts/options.php:52,
859
- #: build_tmp/build/framework/premium/features/premium-header/items/contacts/options.php:88,
860
- #: build_tmp/build/framework/premium/features/premium-header/items/contacts/options.php:124,
861
- #: build_tmp/build/framework/premium/features/premium-header/items/contacts/options.php:160,
862
- #: build_tmp/build/framework/premium/features/premium-header/items/contacts/options.php:196,
863
- #: build_tmp/build/framework/premium/features/premium-header/items/contacts/options.php:232,
864
- #: build_tmp/build/framework/premium/features/premium-header/items/contacts/options.php:268
865
  msgid "Content"
866
  msgstr ""
867
 
868
  #: framework/extensions/cookies-consent/customizer.php:64,
869
- #: framework/extensions/cookies-consent/helpers.php:30,
870
- #: build_tmp/build/framework/extensions/cookies-consent/customizer.php:64,
871
- #: build_tmp/build/framework/extensions/cookies-consent/helpers.php:30
872
  msgid ""
873
  "We use cookies to ensure that we give you the best experience on our website."
874
  msgstr ""
875
 
876
- #: framework/extensions/cookies-consent/customizer.php:76,
877
- #: build_tmp/build/framework/extensions/cookies-consent/customizer.php:76
878
  msgid "Accept Button text"
879
  msgstr ""
880
 
881
  #: framework/extensions/cookies-consent/customizer.php:80,
882
- #: framework/extensions/cookies-consent/helpers.php:33,
883
- #: build_tmp/build/framework/extensions/cookies-consent/customizer.php:80,
884
- #: build_tmp/build/framework/extensions/cookies-consent/helpers.php:33
885
  msgid "Accept"
886
  msgstr ""
887
 
888
- #: framework/extensions/cookies-consent/customizer.php:85,
889
- #: build_tmp/build/framework/extensions/cookies-consent/customizer.php:85
890
  msgid "Decline Button text"
891
  msgstr ""
892
 
893
  #: framework/extensions/cookies-consent/customizer.php:88,
894
- #: framework/extensions/cookies-consent/helpers.php:34,
895
- #: build_tmp/build/framework/extensions/cookies-consent/customizer.php:88,
896
- #: build_tmp/build/framework/extensions/cookies-consent/helpers.php:34
897
  msgid "Decline"
898
  msgstr ""
899
 
900
- #: framework/extensions/cookies-consent/customizer.php:98,
901
- #: build_tmp/build/framework/extensions/cookies-consent/customizer.php:98
902
  msgid "Maximum Width"
903
  msgstr ""
904
 
905
- #: framework/extensions/cookies-consent/customizer.php:119,
906
- #: build_tmp/build/framework/extensions/cookies-consent/customizer.php:119
907
  msgid "I accept the %sPrivacy Policy%s*"
908
  msgstr ""
909
 
910
- #: framework/extensions/cookies-consent/customizer.php:123,
911
- #: build_tmp/build/framework/extensions/cookies-consent/customizer.php:123
912
  msgid "This text will appear under each comment form and subscribe form."
913
  msgstr ""
914
 
@@ -921,42 +698,21 @@ msgstr ""
921
  #: framework/premium/extensions/woocommerce-extra/floating-cart.php:81,
922
  #: framework/premium/extensions/woocommerce-extra/offcanvas-filter.php:31,
923
  #: framework/premium/extensions/woocommerce-extra/offcanvas-filter.php:279,
924
- #: build_tmp/build/framework/extensions/cookies-consent/customizer.php:142,
925
- #: build_tmp/build/framework/extensions/newsletter-subscribe/customizer.php:147,
926
- #: build_tmp/build/framework/extensions/product-reviews/extension.php:383,
927
- #: build_tmp/build/framework/extensions/trending/customizer.php:333,
928
- #: framework/features/header/items/account/options.php:602,
929
  #: framework/premium/extensions/woocommerce-extra/includes/wish-list-options.php:126,
930
  #: framework/premium/features/content-blocks/options/popup.php:361,
931
- #: build_tmp/build/framework/premium/extensions/mega-menu/options.php:516,
932
- #: build_tmp/build/framework/premium/extensions/shortcuts/customizer.php:778,
933
- #: build_tmp/build/framework/premium/extensions/woocommerce-extra/floating-cart.php:81,
934
- #: build_tmp/build/framework/premium/extensions/woocommerce-extra/offcanvas-filter.php:31,
935
- #: build_tmp/build/framework/premium/extensions/woocommerce-extra/offcanvas-filter.php:279,
936
  #: framework/premium/extensions/post-types-extra/includes/filtering/customizer.php:167,
937
  #: framework/premium/extensions/post-types-extra/includes/read-progress/customizer.php:66,
938
  #: framework/premium/extensions/woocommerce-extra/header-items/wish-list/options.php:151,
939
  #: framework/premium/features/premium-header/items/contacts/options.php:404,
940
  #: framework/premium/features/premium-header/items/language-switcher/options.php:186,
941
  #: framework/premium/features/premium-header/items/language-switcher/options.php:371,
942
- #: framework/premium/features/premium-header/items/search-input/options.php:188,
943
- #: build_tmp/build/framework/features/header/items/account/options.php:602,
944
- #: build_tmp/build/framework/premium/extensions/woocommerce-extra/includes/wish-list-options.php:126,
945
- #: build_tmp/build/framework/premium/features/content-blocks/options/popup.php:361,
946
- #: build_tmp/build/framework/premium/extensions/post-types-extra/includes/filtering/customizer.php:167,
947
- #: build_tmp/build/framework/premium/extensions/post-types-extra/includes/read-progress/customizer.php:66,
948
- #: build_tmp/build/framework/premium/extensions/woocommerce-extra/header-items/wish-list/options.php:151,
949
- #: build_tmp/build/framework/premium/features/premium-header/items/contacts/options.php:404,
950
- #: build_tmp/build/framework/premium/features/premium-header/items/language-switcher/options.php:186,
951
- #: build_tmp/build/framework/premium/features/premium-header/items/language-switcher/options.php:371,
952
- #: build_tmp/build/framework/premium/features/premium-header/items/search-input/options.php:188
953
  msgid "Design"
954
  msgstr ""
955
 
956
  #: framework/extensions/cookies-consent/customizer.php:147,
957
- #: framework/premium/extensions/mega-menu/options.php:605,
958
- #: build_tmp/build/framework/extensions/cookies-consent/customizer.php:147,
959
- #: build_tmp/build/framework/premium/extensions/mega-menu/options.php:605
960
  msgid "Text Color"
961
  msgstr ""
962
 
@@ -973,9 +729,9 @@ msgstr ""
973
  #: framework/extensions/newsletter-subscribe/customizer.php:290,
974
  #: framework/extensions/newsletter-subscribe/customizer.php:322,
975
  #: framework/extensions/trending/customizer.php:366,
976
- #: framework/premium/extensions/mega-menu/options.php:762,
977
- #: framework/premium/extensions/mega-menu/options.php:809,
978
- #: framework/premium/extensions/mega-menu/options.php:828,
979
  #: framework/premium/extensions/shortcuts/customizer.php:812,
980
  #: framework/premium/extensions/shortcuts/customizer.php:844,
981
  #: framework/premium/extensions/woocommerce-extra/floating-cart.php:99,
@@ -983,46 +739,23 @@ msgstr ""
983
  #: framework/premium/extensions/woocommerce-extra/offcanvas-filter.php:369,
984
  #: framework/premium/extensions/woocommerce-extra/offcanvas-filter.php:403,
985
  #: framework/premium/extensions/woocommerce-extra/offcanvas-filter.php:442,
986
- #: build_tmp/build/framework/extensions/cookies-consent/customizer.php:164,
987
- #: build_tmp/build/framework/extensions/cookies-consent/customizer.php:191,
988
- #: build_tmp/build/framework/extensions/cookies-consent/customizer.php:220,
989
- #: build_tmp/build/framework/extensions/cookies-consent/customizer.php:251,
990
- #: build_tmp/build/framework/extensions/cookies-consent/customizer.php:287,
991
- #: build_tmp/build/framework/extensions/cookies-consent/customizer.php:316,
992
- #: build_tmp/build/framework/extensions/newsletter-subscribe/customizer.php:165,
993
- #: build_tmp/build/framework/extensions/newsletter-subscribe/customizer.php:190,
994
- #: build_tmp/build/framework/extensions/newsletter-subscribe/customizer.php:222,
995
- #: build_tmp/build/framework/extensions/newsletter-subscribe/customizer.php:253,
996
- #: build_tmp/build/framework/extensions/newsletter-subscribe/customizer.php:290,
997
- #: build_tmp/build/framework/extensions/newsletter-subscribe/customizer.php:322,
998
- #: build_tmp/build/framework/extensions/trending/customizer.php:366,
999
- #: framework/features/header/items/account/options.php:666,
1000
- #: framework/features/header/items/account/options.php:698,
1001
  #: framework/features/header/items/account/options.php:728,
1002
- #: framework/features/header/items/account/options.php:810,
1003
- #: framework/features/header/items/account/options.php:841,
1004
- #: framework/features/header/items/account/options.php:870,
1005
- #: framework/features/header/items/account/options.php:931,
1006
- #: framework/features/header/items/account/options.php:961,
1007
- #: framework/features/header/items/account/options.php:991,
1008
- #: framework/features/header/items/account/options.php:1027,
1009
- #: framework/features/header/items/account/options.php:1127,
1010
- #: framework/features/header/items/account/options.php:1163,
1011
- #: framework/features/header/items/account/options.php:1202,
 
 
1012
  #: framework/premium/extensions/woocommerce-extra/includes/wish-list-options.php:159,
1013
  #: framework/premium/extensions/woocommerce-extra/includes/wish-list-options.php:191,
1014
  #: framework/premium/extensions/woocommerce-extra/includes/wish-list-options.php:235,
1015
  #: framework/premium/extensions/woocommerce-extra/includes/wish-list-options.php:311,
1016
- #: build_tmp/build/framework/premium/extensions/mega-menu/options.php:762,
1017
- #: build_tmp/build/framework/premium/extensions/mega-menu/options.php:809,
1018
- #: build_tmp/build/framework/premium/extensions/mega-menu/options.php:828,
1019
- #: build_tmp/build/framework/premium/extensions/shortcuts/customizer.php:812,
1020
- #: build_tmp/build/framework/premium/extensions/shortcuts/customizer.php:844,
1021
- #: build_tmp/build/framework/premium/extensions/woocommerce-extra/floating-cart.php:99,
1022
- #: build_tmp/build/framework/premium/extensions/woocommerce-extra/offcanvas-filter.php:73,
1023
- #: build_tmp/build/framework/premium/extensions/woocommerce-extra/offcanvas-filter.php:369,
1024
- #: build_tmp/build/framework/premium/extensions/woocommerce-extra/offcanvas-filter.php:403,
1025
- #: build_tmp/build/framework/premium/extensions/woocommerce-extra/offcanvas-filter.php:442,
1026
  #: framework/premium/extensions/post-types-extra/includes/filtering/customizer.php:201,
1027
  #: framework/premium/extensions/post-types-extra/includes/filtering/customizer.php:237,
1028
  #: framework/premium/extensions/post-types-extra/includes/read-progress/customizer.php:84,
@@ -1060,62 +793,7 @@ msgstr ""
1060
  #: framework/premium/features/premium-header/items/search-input/options.php:666,
1061
  #: framework/premium/features/premium-header/items/search-input/options.php:696,
1062
  #: framework/premium/features/premium-header/items/search-input/options.php:783,
1063
- #: framework/premium/features/premium-header/items/search-input/options.php:811,
1064
- #: build_tmp/build/framework/features/header/items/account/options.php:666,
1065
- #: build_tmp/build/framework/features/header/items/account/options.php:698,
1066
- #: build_tmp/build/framework/features/header/items/account/options.php:728,
1067
- #: build_tmp/build/framework/features/header/items/account/options.php:810,
1068
- #: build_tmp/build/framework/features/header/items/account/options.php:841,
1069
- #: build_tmp/build/framework/features/header/items/account/options.php:870,
1070
- #: build_tmp/build/framework/features/header/items/account/options.php:931,
1071
- #: build_tmp/build/framework/features/header/items/account/options.php:961,
1072
- #: build_tmp/build/framework/features/header/items/account/options.php:991,
1073
- #: build_tmp/build/framework/features/header/items/account/options.php:1027,
1074
- #: build_tmp/build/framework/features/header/items/account/options.php:1127,
1075
- #: build_tmp/build/framework/features/header/items/account/options.php:1163,
1076
- #: build_tmp/build/framework/features/header/items/account/options.php:1202,
1077
- #: build_tmp/build/framework/premium/extensions/woocommerce-extra/includes/wish-list-options.php:159,
1078
- #: build_tmp/build/framework/premium/extensions/woocommerce-extra/includes/wish-list-options.php:191,
1079
- #: build_tmp/build/framework/premium/extensions/woocommerce-extra/includes/wish-list-options.php:235,
1080
- #: build_tmp/build/framework/premium/extensions/woocommerce-extra/includes/wish-list-options.php:311,
1081
- #: build_tmp/build/framework/premium/extensions/post-types-extra/includes/filtering/customizer.php:201,
1082
- #: build_tmp/build/framework/premium/extensions/post-types-extra/includes/filtering/customizer.php:237,
1083
- #: build_tmp/build/framework/premium/extensions/post-types-extra/includes/read-progress/customizer.php:84,
1084
- #: build_tmp/build/framework/premium/extensions/post-types-extra/includes/read-progress/customizer.php:105,
1085
- #: build_tmp/build/framework/premium/extensions/woocommerce-extra/header-items/wish-list/options.php:223,
1086
- #: build_tmp/build/framework/premium/extensions/woocommerce-extra/header-items/wish-list/options.php:254,
1087
- #: build_tmp/build/framework/premium/extensions/woocommerce-extra/header-items/wish-list/options.php:283,
1088
- #: build_tmp/build/framework/premium/extensions/woocommerce-extra/header-items/wish-list/options.php:350,
1089
- #: build_tmp/build/framework/premium/extensions/woocommerce-extra/header-items/wish-list/options.php:381,
1090
- #: build_tmp/build/framework/premium/extensions/woocommerce-extra/header-items/wish-list/options.php:410,
1091
- #: build_tmp/build/framework/premium/features/premium-header/items/contacts/options.php:637,
1092
- #: build_tmp/build/framework/premium/features/premium-header/items/contacts/options.php:668,
1093
- #: build_tmp/build/framework/premium/features/premium-header/items/contacts/options.php:698,
1094
- #: build_tmp/build/framework/premium/features/premium-header/items/contacts/options.php:798,
1095
- #: build_tmp/build/framework/premium/features/premium-header/items/contacts/options.php:837,
1096
- #: build_tmp/build/framework/premium/features/premium-header/items/contacts/options.php:876,
1097
- #: build_tmp/build/framework/premium/features/premium-header/items/dark-mode-switcher/options.php:75,
1098
- #: build_tmp/build/framework/premium/features/premium-header/items/dark-mode-switcher/options.php:106,
1099
- #: build_tmp/build/framework/premium/features/premium-header/items/dark-mode-switcher/options.php:135,
1100
- #: build_tmp/build/framework/premium/features/premium-header/items/language-switcher/options.php:249,
1101
- #: build_tmp/build/framework/premium/features/premium-header/items/language-switcher/options.php:279,
1102
- #: build_tmp/build/framework/premium/features/premium-header/items/language-switcher/options.php:308,
1103
- #: build_tmp/build/framework/premium/features/premium-header/items/language-switcher/options.php:399,
1104
- #: build_tmp/build/framework/premium/features/premium-header/items/language-switcher/options.php:425,
1105
- #: build_tmp/build/framework/premium/features/premium-header/items/search-input/options.php:241,
1106
- #: build_tmp/build/framework/premium/features/premium-header/items/search-input/options.php:273,
1107
- #: build_tmp/build/framework/premium/features/premium-header/items/search-input/options.php:303,
1108
- #: build_tmp/build/framework/premium/features/premium-header/items/search-input/options.php:371,
1109
- #: build_tmp/build/framework/premium/features/premium-header/items/search-input/options.php:403,
1110
- #: build_tmp/build/framework/premium/features/premium-header/items/search-input/options.php:433,
1111
- #: build_tmp/build/framework/premium/features/premium-header/items/search-input/options.php:501,
1112
- #: build_tmp/build/framework/premium/features/premium-header/items/search-input/options.php:533,
1113
- #: build_tmp/build/framework/premium/features/premium-header/items/search-input/options.php:563,
1114
- #: build_tmp/build/framework/premium/features/premium-header/items/search-input/options.php:636,
1115
- #: build_tmp/build/framework/premium/features/premium-header/items/search-input/options.php:666,
1116
- #: build_tmp/build/framework/premium/features/premium-header/items/search-input/options.php:696,
1117
- #: build_tmp/build/framework/premium/features/premium-header/items/search-input/options.php:783,
1118
- #: build_tmp/build/framework/premium/features/premium-header/items/search-input/options.php:811
1119
  msgid "Initial"
1120
  msgstr ""
1121
 
@@ -1127,36 +805,22 @@ msgstr ""
1127
  #: framework/extensions/newsletter-subscribe/customizer.php:196,
1128
  #: framework/extensions/newsletter-subscribe/customizer.php:327,
1129
  #: framework/extensions/trending/customizer.php:372,
1130
- #: framework/premium/extensions/mega-menu/options.php:767,
1131
  #: framework/premium/extensions/shortcuts/customizer.php:818,
1132
  #: framework/premium/extensions/shortcuts/customizer.php:850,
1133
  #: framework/premium/extensions/woocommerce-extra/offcanvas-filter.php:374,
1134
  #: framework/premium/extensions/woocommerce-extra/offcanvas-filter.php:409,
1135
  #: framework/premium/extensions/woocommerce-extra/offcanvas-filter.php:448,
1136
- #: build_tmp/build/framework/extensions/cookies-consent/customizer.php:170,
1137
- #: build_tmp/build/framework/extensions/cookies-consent/customizer.php:226,
1138
- #: build_tmp/build/framework/extensions/cookies-consent/customizer.php:257,
1139
- #: build_tmp/build/framework/extensions/cookies-consent/customizer.php:292,
1140
- #: build_tmp/build/framework/extensions/cookies-consent/customizer.php:321,
1141
- #: build_tmp/build/framework/extensions/newsletter-subscribe/customizer.php:196,
1142
- #: build_tmp/build/framework/extensions/newsletter-subscribe/customizer.php:327,
1143
- #: build_tmp/build/framework/extensions/trending/customizer.php:372,
1144
- #: framework/features/header/items/account/options.php:672,
1145
- #: framework/features/header/items/account/options.php:703,
1146
- #: framework/features/header/items/account/options.php:733,
1147
- #: framework/features/header/items/account/options.php:816,
1148
- #: framework/features/header/items/account/options.php:846,
1149
- #: framework/features/header/items/account/options.php:875,
1150
  #: framework/features/header/items/account/options.php:937,
1151
- #: framework/features/header/items/account/options.php:1133,
1152
- #: framework/features/header/items/account/options.php:1169,
1153
- #: framework/features/header/items/account/options.php:1208,
1154
- #: build_tmp/build/framework/premium/extensions/mega-menu/options.php:767,
1155
- #: build_tmp/build/framework/premium/extensions/shortcuts/customizer.php:818,
1156
- #: build_tmp/build/framework/premium/extensions/shortcuts/customizer.php:850,
1157
- #: build_tmp/build/framework/premium/extensions/woocommerce-extra/offcanvas-filter.php:374,
1158
- #: build_tmp/build/framework/premium/extensions/woocommerce-extra/offcanvas-filter.php:409,
1159
- #: build_tmp/build/framework/premium/extensions/woocommerce-extra/offcanvas-filter.php:448,
1160
  #: framework/premium/extensions/woocommerce-extra/header-items/wish-list/options.php:229,
1161
  #: framework/premium/extensions/woocommerce-extra/header-items/wish-list/options.php:259,
1162
  #: framework/premium/extensions/woocommerce-extra/header-items/wish-list/options.php:288,
@@ -1173,71 +837,29 @@ msgstr ""
1173
  #: framework/premium/features/premium-header/items/dark-mode-switcher/options.php:111,
1174
  #: framework/premium/features/premium-header/items/dark-mode-switcher/options.php:140,
1175
  #: framework/premium/features/premium-header/items/language-switcher/options.php:404,
1176
- #: framework/premium/features/premium-header/items/search-input/options.php:788,
1177
- #: build_tmp/build/framework/features/header/items/account/options.php:672,
1178
- #: build_tmp/build/framework/features/header/items/account/options.php:703,
1179
- #: build_tmp/build/framework/features/header/items/account/options.php:733,
1180
- #: build_tmp/build/framework/features/header/items/account/options.php:816,
1181
- #: build_tmp/build/framework/features/header/items/account/options.php:846,
1182
- #: build_tmp/build/framework/features/header/items/account/options.php:875,
1183
- #: build_tmp/build/framework/features/header/items/account/options.php:937,
1184
- #: build_tmp/build/framework/features/header/items/account/options.php:1133,
1185
- #: build_tmp/build/framework/features/header/items/account/options.php:1169,
1186
- #: build_tmp/build/framework/features/header/items/account/options.php:1208,
1187
- #: build_tmp/build/framework/premium/extensions/woocommerce-extra/header-items/wish-list/options.php:229,
1188
- #: build_tmp/build/framework/premium/extensions/woocommerce-extra/header-items/wish-list/options.php:259,
1189
- #: build_tmp/build/framework/premium/extensions/woocommerce-extra/header-items/wish-list/options.php:288,
1190
- #: build_tmp/build/framework/premium/extensions/woocommerce-extra/header-items/wish-list/options.php:356,
1191
- #: build_tmp/build/framework/premium/extensions/woocommerce-extra/header-items/wish-list/options.php:386,
1192
- #: build_tmp/build/framework/premium/extensions/woocommerce-extra/header-items/wish-list/options.php:415,
1193
- #: build_tmp/build/framework/premium/features/premium-header/items/contacts/options.php:642,
1194
- #: build_tmp/build/framework/premium/features/premium-header/items/contacts/options.php:673,
1195
- #: build_tmp/build/framework/premium/features/premium-header/items/contacts/options.php:703,
1196
- #: build_tmp/build/framework/premium/features/premium-header/items/contacts/options.php:803,
1197
- #: build_tmp/build/framework/premium/features/premium-header/items/contacts/options.php:842,
1198
- #: build_tmp/build/framework/premium/features/premium-header/items/contacts/options.php:881,
1199
- #: build_tmp/build/framework/premium/features/premium-header/items/dark-mode-switcher/options.php:81,
1200
- #: build_tmp/build/framework/premium/features/premium-header/items/dark-mode-switcher/options.php:111,
1201
- #: build_tmp/build/framework/premium/features/premium-header/items/dark-mode-switcher/options.php:140,
1202
- #: build_tmp/build/framework/premium/features/premium-header/items/language-switcher/options.php:404,
1203
- #: build_tmp/build/framework/premium/features/premium-header/items/search-input/options.php:788
1204
  msgid "Hover"
1205
  msgstr ""
1206
 
1207
  #: framework/extensions/cookies-consent/customizer.php:178,
1208
  #: framework/extensions/cookies-consent/customizer.php:234,
1209
  #: framework/extensions/cookies-consent/customizer.php:299,
1210
- #: framework/premium/extensions/mega-menu/options.php:816,
1211
  #: framework/premium/extensions/woocommerce-extra/offcanvas-filter.php:425,
1212
- #: build_tmp/build/framework/extensions/cookies-consent/customizer.php:178,
1213
- #: build_tmp/build/framework/extensions/cookies-consent/customizer.php:234,
1214
- #: build_tmp/build/framework/extensions/cookies-consent/customizer.php:299,
1215
- #: framework/features/header/items/account/options.php:1185,
1216
  #: framework/premium/extensions/woocommerce-extra/includes/wish-list-options.php:173,
1217
- #: build_tmp/build/framework/premium/extensions/mega-menu/options.php:816,
1218
- #: build_tmp/build/framework/premium/extensions/woocommerce-extra/offcanvas-filter.php:425,
1219
  #: framework/premium/extensions/post-types-extra/includes/read-progress/customizer.php:92,
1220
- #: framework/premium/features/premium-header/items/language-switcher/options.php:412,
1221
- #: build_tmp/build/framework/features/header/items/account/options.php:1185,
1222
- #: build_tmp/build/framework/premium/extensions/woocommerce-extra/includes/wish-list-options.php:173,
1223
- #: build_tmp/build/framework/premium/extensions/post-types-extra/includes/read-progress/customizer.php:92,
1224
- #: build_tmp/build/framework/premium/features/premium-header/items/language-switcher/options.php:412
1225
  msgid "Background Color"
1226
  msgstr ""
1227
 
1228
  #: framework/extensions/cookies-consent/customizer.php:203,
1229
  #: framework/extensions/cookies-consent/customizer.php:270,
1230
  #: framework/extensions/trending/customizer.php:348,
1231
- #: framework/premium/extensions/mega-menu/options.php:796,
1232
  #: framework/premium/extensions/shortcuts/customizer.php:794,
1233
  #: framework/premium/extensions/woocommerce-extra/floating-cart.php:86,
1234
- #: build_tmp/build/framework/extensions/cookies-consent/customizer.php:203,
1235
- #: build_tmp/build/framework/extensions/cookies-consent/customizer.php:270,
1236
- #: build_tmp/build/framework/extensions/trending/customizer.php:348,
1237
- #: framework/features/header/items/account/options.php:913,
1238
- #: build_tmp/build/framework/premium/extensions/mega-menu/options.php:796,
1239
- #: build_tmp/build/framework/premium/extensions/shortcuts/customizer.php:794,
1240
- #: build_tmp/build/framework/premium/extensions/woocommerce-extra/floating-cart.php:86,
1241
  #: framework/premium/extensions/post-types-extra/includes/filtering/customizer.php:184,
1242
  #: framework/premium/extensions/woocommerce-extra/header-items/wish-list/options.php:206,
1243
  #: framework/premium/extensions/woocommerce-extra/header-items/wish-list/options.php:237,
@@ -1250,26 +872,11 @@ msgstr ""
1250
  #: framework/premium/features/premium-header/items/language-switcher/options.php:232,
1251
  #: framework/premium/features/premium-header/items/language-switcher/options.php:262,
1252
  #: framework/premium/features/premium-header/items/language-switcher/options.php:291,
1253
- #: framework/premium/features/premium-header/items/language-switcher/options.php:382,
1254
- #: build_tmp/build/framework/features/header/items/account/options.php:913,
1255
- #: build_tmp/build/framework/premium/extensions/post-types-extra/includes/filtering/customizer.php:184,
1256
- #: build_tmp/build/framework/premium/extensions/woocommerce-extra/header-items/wish-list/options.php:206,
1257
- #: build_tmp/build/framework/premium/extensions/woocommerce-extra/header-items/wish-list/options.php:237,
1258
- #: build_tmp/build/framework/premium/extensions/woocommerce-extra/header-items/wish-list/options.php:266,
1259
- #: build_tmp/build/framework/premium/features/premium-header/items/contacts/options.php:420,
1260
- #: build_tmp/build/framework/premium/features/premium-header/items/contacts/options.php:449,
1261
- #: build_tmp/build/framework/premium/features/premium-header/items/contacts/options.php:492,
1262
- #: build_tmp/build/framework/premium/features/premium-header/items/contacts/options.php:532,
1263
- #: build_tmp/build/framework/premium/features/premium-header/items/language-switcher/options.php:203,
1264
- #: build_tmp/build/framework/premium/features/premium-header/items/language-switcher/options.php:232,
1265
- #: build_tmp/build/framework/premium/features/premium-header/items/language-switcher/options.php:262,
1266
- #: build_tmp/build/framework/premium/features/premium-header/items/language-switcher/options.php:291,
1267
- #: build_tmp/build/framework/premium/features/premium-header/items/language-switcher/options.php:382
1268
  msgid "Font Color"
1269
  msgstr ""
1270
 
1271
- #: framework/extensions/cookies-consent/helpers.php:79,
1272
- #: build_tmp/build/framework/extensions/cookies-consent/helpers.php:79
1273
  msgid "I accept the %sPrivacy Policy%s"
1274
  msgstr ""
1275
 
@@ -1277,59 +884,46 @@ msgstr ""
1277
  #: framework/extensions/newsletter-subscribe/readme.php:1,
1278
  #: framework/premium/extensions/code-snippets/readme.php:1,
1279
  #: framework/premium/extensions/post-types-extra/readme.php:1,
1280
- #: framework/premium/extensions/woocommerce-extra/readme.php:1,
1281
- #: build_tmp/build/framework/extensions/cookies-consent/readme.php:1,
1282
- #: build_tmp/build/framework/extensions/newsletter-subscribe/readme.php:1,
1283
- #: build_tmp/build/framework/premium/extensions/code-snippets/readme.php:1,
1284
- #: build_tmp/build/framework/premium/extensions/post-types-extra/readme.php:1,
1285
- #: build_tmp/build/framework/premium/extensions/woocommerce-extra/readme.php:1
1286
  msgid "Instructions"
1287
  msgstr ""
1288
 
1289
- #: framework/extensions/cookies-consent/readme.php:4,
1290
- #: build_tmp/build/framework/extensions/cookies-consent/readme.php:4
1291
  msgid ""
1292
  "After installing and activating the Cookies Consent extension you will be "
1293
  "able to configure it from this location:"
1294
  msgstr ""
1295
 
1296
- #: framework/extensions/cookies-consent/readme.php:9,
1297
- #: build_tmp/build/framework/extensions/cookies-consent/readme.php:9
1298
  msgid "Customizer"
1299
  msgstr ""
1300
 
1301
- #: framework/extensions/cookies-consent/readme.php:13,
1302
- #: build_tmp/build/framework/extensions/cookies-consent/readme.php:13
1303
  msgid "Navigate to %s and customize the notification to meet your needs."
1304
  msgstr ""
1305
 
1306
- #: framework/extensions/cookies-consent/readme.php:16,
1307
- #: build_tmp/build/framework/extensions/cookies-consent/readme.php:16
1308
  msgid "Customizer ➝ Cookie Consent"
1309
  msgstr ""
1310
 
1311
  #. translators: This is a brand name. Preferably to not be translated
1312
- #: framework/extensions/newsletter-subscribe/config.php:5,
1313
- #: build_tmp/build/framework/extensions/newsletter-subscribe/config.php:5
1314
  msgctxt "Extension Brand Name"
1315
  msgid "Newsletter Subscribe"
1316
  msgstr ""
1317
 
1318
- #: framework/extensions/newsletter-subscribe/config.php:6,
1319
- #: build_tmp/build/framework/extensions/newsletter-subscribe/config.php:6
1320
  msgid ""
1321
  "Easily capture new leads for your newsletter with the help of a widget, "
1322
  "shortcode or even a block inserted on your pages or posts."
1323
  msgstr ""
1324
 
1325
- #: framework/extensions/newsletter-subscribe/customizer.php:4,
1326
- #: build_tmp/build/framework/extensions/newsletter-subscribe/customizer.php:4
1327
  msgid "Subscribe Form"
1328
  msgstr ""
1329
 
1330
  #: framework/extensions/newsletter-subscribe/customizer.php:18,
1331
  #: framework/extensions/newsletter-subscribe/ct-newsletter-subscribe/options.php:14,
1332
- #: build_tmp/build/framework/extensions/newsletter-subscribe/customizer.php:18,
1333
  #: framework/extensions/widgets/widgets/ct-advertisement/options.php:15,
1334
  #: framework/extensions/widgets/widgets/ct-contact-info/options.php:16,
1335
  #: framework/extensions/widgets/widgets/ct-contact-info/options.php:73,
@@ -1343,50 +937,24 @@ msgstr ""
1343
  #: framework/extensions/widgets/widgets/ct-posts/options.php:95,
1344
  #: framework/extensions/widgets/widgets/ct-quote/options.php:15,
1345
  #: framework/extensions/widgets/widgets/ct-socials/options.php:15,
1346
- #: build_tmp/build/framework/extensions/newsletter-subscribe/ct-newsletter-subscribe/options.php:14,
1347
  #: framework/premium/features/premium-header/items/contacts/options.php:45,
1348
  #: framework/premium/features/premium-header/items/contacts/options.php:81,
1349
  #: framework/premium/features/premium-header/items/contacts/options.php:117,
1350
  #: framework/premium/features/premium-header/items/contacts/options.php:153,
1351
  #: framework/premium/features/premium-header/items/contacts/options.php:189,
1352
  #: framework/premium/features/premium-header/items/contacts/options.php:225,
1353
- #: framework/premium/features/premium-header/items/contacts/options.php:261,
1354
- #: build_tmp/build/framework/extensions/widgets/widgets/ct-advertisement/options.php:15,
1355
- #: build_tmp/build/framework/extensions/widgets/widgets/ct-contact-info/options.php:16,
1356
- #: build_tmp/build/framework/extensions/widgets/widgets/ct-contact-info/options.php:73,
1357
- #: build_tmp/build/framework/extensions/widgets/widgets/ct-contact-info/options.php:134,
1358
- #: build_tmp/build/framework/extensions/widgets/widgets/ct-contact-info/options.php:194,
1359
- #: build_tmp/build/framework/extensions/widgets/widgets/ct-contact-info/options.php:254,
1360
- #: build_tmp/build/framework/extensions/widgets/widgets/ct-contact-info/options.php:314,
1361
- #: build_tmp/build/framework/extensions/widgets/widgets/ct-contact-info/options.php:374,
1362
- #: build_tmp/build/framework/extensions/widgets/widgets/ct-contact-info/options.php:434,
1363
- #: build_tmp/build/framework/extensions/widgets/widgets/ct-facebook/options.php:13,
1364
- #: build_tmp/build/framework/extensions/widgets/widgets/ct-posts/options.php:95,
1365
- #: build_tmp/build/framework/extensions/widgets/widgets/ct-quote/options.php:15,
1366
- #: build_tmp/build/framework/extensions/widgets/widgets/ct-socials/options.php:15,
1367
- #: build_tmp/build/framework/premium/features/premium-header/items/contacts/options.php:45,
1368
- #: build_tmp/build/framework/premium/features/premium-header/items/contacts/options.php:81,
1369
- #: build_tmp/build/framework/premium/features/premium-header/items/contacts/options.php:117,
1370
- #: build_tmp/build/framework/premium/features/premium-header/items/contacts/options.php:153,
1371
- #: build_tmp/build/framework/premium/features/premium-header/items/contacts/options.php:189,
1372
- #: build_tmp/build/framework/premium/features/premium-header/items/contacts/options.php:225,
1373
- #: build_tmp/build/framework/premium/features/premium-header/items/contacts/options.php:261
1374
  msgid "Title"
1375
  msgstr ""
1376
 
1377
  #: framework/extensions/newsletter-subscribe/customizer.php:21,
1378
  #: framework/extensions/newsletter-subscribe/helpers.php:42,
1379
- #: framework/extensions/newsletter-subscribe/helpers.php:96,
1380
- #: build_tmp/build/framework/extensions/newsletter-subscribe/customizer.php:21,
1381
- #: build_tmp/build/framework/extensions/newsletter-subscribe/helpers.php:42,
1382
- #: build_tmp/build/framework/extensions/newsletter-subscribe/helpers.php:96
1383
  msgid "Newsletter Updates"
1384
  msgstr ""
1385
 
1386
  #: framework/extensions/newsletter-subscribe/customizer.php:27,
1387
- #: build_tmp/build/framework/extensions/newsletter-subscribe/customizer.php:27,
1388
- #: framework/extensions/widgets/widgets/ct-posts/widget.php:14,
1389
- #: build_tmp/build/framework/extensions/widgets/widgets/ct-posts/widget.php:14
1390
  msgid "Description"
1391
  msgstr ""
1392
 
@@ -1394,19 +962,12 @@ msgstr ""
1394
  #: framework/extensions/newsletter-subscribe/helpers.php:45,
1395
  #: framework/extensions/newsletter-subscribe/helpers.php:97,
1396
  #: framework/extensions/newsletter-subscribe/ct-newsletter-subscribe/options.php:33,
1397
- #: framework/extensions/newsletter-subscribe/ct-newsletter-subscribe/view.php:16,
1398
- #: build_tmp/build/framework/extensions/newsletter-subscribe/customizer.php:29,
1399
- #: build_tmp/build/framework/extensions/newsletter-subscribe/helpers.php:45,
1400
- #: build_tmp/build/framework/extensions/newsletter-subscribe/helpers.php:97,
1401
- #: build_tmp/build/framework/extensions/newsletter-subscribe/ct-newsletter-subscribe/options.php:33,
1402
- #: build_tmp/build/framework/extensions/newsletter-subscribe/ct-newsletter-subscribe/view.php:16
1403
  msgid "Enter your email address below to subscribe to our newsletter"
1404
  msgstr ""
1405
 
1406
  #: framework/extensions/newsletter-subscribe/customizer.php:42,
1407
- #: framework/extensions/newsletter-subscribe/ct-newsletter-subscribe/options.php:46,
1408
- #: build_tmp/build/framework/extensions/newsletter-subscribe/customizer.php:42,
1409
- #: build_tmp/build/framework/extensions/newsletter-subscribe/ct-newsletter-subscribe/options.php:46
1410
  msgid "List Source"
1411
  msgstr ""
1412
 
@@ -1415,17 +976,9 @@ msgstr ""
1415
  #: framework/features/header/header-options.php:71,
1416
  #: framework/extensions/newsletter-subscribe/ct-newsletter-subscribe/options.php:53,
1417
  #: framework/extensions/newsletter-subscribe/ct-newsletter-subscribe/options.php:120,
1418
- #: build_tmp/build/framework/extensions/newsletter-subscribe/customizer.php:49,
1419
- #: build_tmp/build/framework/extensions/product-reviews/metabox.php:17,
1420
- #: build_tmp/build/framework/features/header/header-options.php:71,
1421
  #: framework/extensions/widgets/widgets/ct-posts/options.php:173,
1422
  #: framework/extensions/widgets/widgets/ct-posts/options.php:198,
1423
- #: framework/premium/features/content-blocks/options/hook.php:289,
1424
- #: build_tmp/build/framework/extensions/newsletter-subscribe/ct-newsletter-subscribe/options.php:53,
1425
- #: build_tmp/build/framework/extensions/newsletter-subscribe/ct-newsletter-subscribe/options.php:120,
1426
- #: build_tmp/build/framework/extensions/widgets/widgets/ct-posts/options.php:173,
1427
- #: build_tmp/build/framework/extensions/widgets/widgets/ct-posts/options.php:198,
1428
- #: build_tmp/build/framework/premium/features/content-blocks/options/hook.php:289
1429
  msgid "Default"
1430
  msgstr ""
1431
 
@@ -1433,36 +986,24 @@ msgstr ""
1433
  #: framework/extensions/newsletter-subscribe/ct-newsletter-subscribe/options.php:54,
1434
  #: framework/premium/extensions/shortcuts/customizer.php:250,
1435
  #: framework/premium/extensions/shortcuts/customizer.php:276,
1436
- #: build_tmp/build/framework/extensions/newsletter-subscribe/customizer.php:50,
1437
  #: framework/premium/extensions/post-types-extra/includes/dynamic-data.php:371,
1438
- #: framework/premium/features/content-blocks/options/archive.php:48,
1439
- #: build_tmp/build/framework/extensions/newsletter-subscribe/ct-newsletter-subscribe/options.php:54,
1440
- #: build_tmp/build/framework/premium/extensions/shortcuts/customizer.php:250,
1441
- #: build_tmp/build/framework/premium/extensions/shortcuts/customizer.php:276,
1442
- #: build_tmp/build/framework/premium/extensions/post-types-extra/includes/dynamic-data.php:371,
1443
- #: build_tmp/build/framework/premium/features/content-blocks/options/archive.php:48
1444
  msgid "Custom"
1445
  msgstr ""
1446
 
1447
  #: framework/extensions/newsletter-subscribe/customizer.php:62,
1448
- #: framework/extensions/newsletter-subscribe/ct-newsletter-subscribe/options.php:64,
1449
- #: build_tmp/build/framework/extensions/newsletter-subscribe/customizer.php:62,
1450
- #: build_tmp/build/framework/extensions/newsletter-subscribe/ct-newsletter-subscribe/options.php:64
1451
  #: framework/extensions/newsletter-subscribe/dashboard-static/js/EditCredentials.js:194
1452
  msgid "List ID"
1453
  msgstr ""
1454
 
1455
  #: framework/extensions/newsletter-subscribe/customizer.php:80,
1456
- #: framework/extensions/newsletter-subscribe/ct-newsletter-subscribe/options.php:76,
1457
- #: build_tmp/build/framework/extensions/newsletter-subscribe/customizer.php:80,
1458
- #: build_tmp/build/framework/extensions/newsletter-subscribe/ct-newsletter-subscribe/options.php:76
1459
  msgid "Name Field"
1460
  msgstr ""
1461
 
1462
  #: framework/extensions/newsletter-subscribe/customizer.php:93,
1463
- #: framework/extensions/newsletter-subscribe/ct-newsletter-subscribe/options.php:88,
1464
- #: build_tmp/build/framework/extensions/newsletter-subscribe/customizer.php:93,
1465
- #: build_tmp/build/framework/extensions/newsletter-subscribe/ct-newsletter-subscribe/options.php:88
1466
  msgid "Name Label"
1467
  msgstr ""
1468
 
@@ -1471,20 +1012,12 @@ msgstr ""
1471
  #: framework/extensions/newsletter-subscribe/helpers.php:57,
1472
  #: framework/extensions/newsletter-subscribe/helpers.php:108,
1473
  #: framework/extensions/newsletter-subscribe/ct-newsletter-subscribe/options.php:90,
1474
- #: framework/extensions/newsletter-subscribe/ct-newsletter-subscribe/view.php:69,
1475
- #: build_tmp/build/framework/extensions/newsletter-subscribe/customizer.php:95,
1476
- #: build_tmp/build/framework/extensions/newsletter-subscribe/extension.php:180,
1477
- #: build_tmp/build/framework/extensions/newsletter-subscribe/helpers.php:57,
1478
- #: build_tmp/build/framework/extensions/newsletter-subscribe/helpers.php:108,
1479
- #: build_tmp/build/framework/extensions/newsletter-subscribe/ct-newsletter-subscribe/options.php:90,
1480
- #: build_tmp/build/framework/extensions/newsletter-subscribe/ct-newsletter-subscribe/view.php:69
1481
  msgid "Your name"
1482
  msgstr ""
1483
 
1484
  #: framework/extensions/newsletter-subscribe/customizer.php:105,
1485
- #: framework/extensions/newsletter-subscribe/ct-newsletter-subscribe/options.php:99,
1486
- #: build_tmp/build/framework/extensions/newsletter-subscribe/customizer.php:105,
1487
- #: build_tmp/build/framework/extensions/newsletter-subscribe/ct-newsletter-subscribe/options.php:99
1488
  msgid "Mail Label"
1489
  msgstr ""
1490
 
@@ -1493,20 +1026,12 @@ msgstr ""
1493
  #: framework/extensions/newsletter-subscribe/helpers.php:61,
1494
  #: framework/extensions/newsletter-subscribe/helpers.php:109,
1495
  #: framework/extensions/newsletter-subscribe/ct-newsletter-subscribe/options.php:101,
1496
- #: framework/extensions/newsletter-subscribe/ct-newsletter-subscribe/view.php:70,
1497
- #: build_tmp/build/framework/extensions/newsletter-subscribe/customizer.php:107,
1498
- #: build_tmp/build/framework/extensions/newsletter-subscribe/extension.php:181,
1499
- #: build_tmp/build/framework/extensions/newsletter-subscribe/helpers.php:61,
1500
- #: build_tmp/build/framework/extensions/newsletter-subscribe/helpers.php:109,
1501
- #: build_tmp/build/framework/extensions/newsletter-subscribe/ct-newsletter-subscribe/options.php:101,
1502
- #: build_tmp/build/framework/extensions/newsletter-subscribe/ct-newsletter-subscribe/view.php:70
1503
  msgid "Your email"
1504
  msgstr ""
1505
 
1506
  #: framework/extensions/newsletter-subscribe/customizer.php:114,
1507
- #: framework/extensions/newsletter-subscribe/ct-newsletter-subscribe/options.php:107,
1508
- #: build_tmp/build/framework/extensions/newsletter-subscribe/customizer.php:114,
1509
- #: build_tmp/build/framework/extensions/newsletter-subscribe/ct-newsletter-subscribe/options.php:107
1510
  msgid "Button Label"
1511
  msgstr ""
1512
 
@@ -1515,13 +1040,7 @@ msgstr ""
1515
  #: framework/extensions/newsletter-subscribe/helpers.php:52,
1516
  #: framework/extensions/newsletter-subscribe/helpers.php:101,
1517
  #: framework/extensions/newsletter-subscribe/ct-newsletter-subscribe/options.php:109,
1518
- #: framework/extensions/newsletter-subscribe/ct-newsletter-subscribe/view.php:19,
1519
- #: build_tmp/build/framework/extensions/newsletter-subscribe/customizer.php:116,
1520
- #: build_tmp/build/framework/extensions/newsletter-subscribe/extension.php:175,
1521
- #: build_tmp/build/framework/extensions/newsletter-subscribe/helpers.php:52,
1522
- #: build_tmp/build/framework/extensions/newsletter-subscribe/helpers.php:101,
1523
- #: build_tmp/build/framework/extensions/newsletter-subscribe/ct-newsletter-subscribe/options.php:109,
1524
- #: build_tmp/build/framework/extensions/newsletter-subscribe/ct-newsletter-subscribe/view.php:19
1525
  msgid "Subscribe"
1526
  msgstr ""
1527
 
@@ -1535,28 +1054,12 @@ msgstr ""
1535
  #: framework/premium/extensions/shortcuts/customizer.php:427,
1536
  #: framework/premium/extensions/shortcuts/customizer.php:483,
1537
  #: framework/premium/extensions/shortcuts/customizer.php:742,
1538
- #: build_tmp/build/framework/extensions/newsletter-subscribe/customizer.php:126,
1539
  #: framework/premium/features/content-blocks/options/404.php:146,
1540
  #: framework/premium/features/content-blocks/options/header.php:166,
1541
  #: framework/premium/features/content-blocks/options/hook.php:343,
1542
  #: framework/premium/features/content-blocks/options/popup.php:339,
1543
- #: build_tmp/build/framework/premium/extensions/shortcuts/customizer.php:45,
1544
- #: build_tmp/build/framework/premium/extensions/shortcuts/customizer.php:107,
1545
- #: build_tmp/build/framework/premium/extensions/shortcuts/customizer.php:169,
1546
- #: build_tmp/build/framework/premium/extensions/shortcuts/customizer.php:225,
1547
- #: build_tmp/build/framework/premium/extensions/shortcuts/customizer.php:312,
1548
- #: build_tmp/build/framework/premium/extensions/shortcuts/customizer.php:371,
1549
- #: build_tmp/build/framework/premium/extensions/shortcuts/customizer.php:427,
1550
- #: build_tmp/build/framework/premium/extensions/shortcuts/customizer.php:483,
1551
- #: build_tmp/build/framework/premium/extensions/shortcuts/customizer.php:742,
1552
  #: framework/premium/extensions/post-types-extra/includes/filtering/customizer.php:144,
1553
- #: framework/premium/extensions/post-types-extra/includes/read-progress/customizer.php:43,
1554
- #: build_tmp/build/framework/premium/features/content-blocks/options/404.php:146,
1555
- #: build_tmp/build/framework/premium/features/content-blocks/options/header.php:166,
1556
- #: build_tmp/build/framework/premium/features/content-blocks/options/hook.php:343,
1557
- #: build_tmp/build/framework/premium/features/content-blocks/options/popup.php:339,
1558
- #: build_tmp/build/framework/premium/extensions/post-types-extra/includes/filtering/customizer.php:144,
1559
- #: build_tmp/build/framework/premium/extensions/post-types-extra/includes/read-progress/customizer.php:43
1560
  msgid "Visibility"
1561
  msgstr ""
1562
 
@@ -1579,43 +1082,15 @@ msgstr ""
1579
  #: framework/premium/extensions/woocommerce-extra/floating-cart.php:47,
1580
  #: framework/premium/extensions/woocommerce-extra/floating-cart.php:71,
1581
  #: framework/premium/extensions/woocommerce-extra/offcanvas-filter.php:219,
1582
- #: build_tmp/build/framework/extensions/newsletter-subscribe/customizer.php:137,
1583
- #: build_tmp/build/framework/extensions/trending/customizer.php:279,
1584
- #: build_tmp/build/framework/features/header/header-options.php:103,
1585
- #: build_tmp/build/framework/features/header/header-options.php:185,
1586
- #: framework/features/header/items/account/options.php:280,
1587
- #: framework/features/header/items/account/options.php:522,
1588
  #: framework/premium/features/content-blocks/options/404.php:157,
1589
  #: framework/premium/features/content-blocks/options/header.php:177,
1590
  #: framework/premium/features/content-blocks/options/hook.php:354,
1591
  #: framework/premium/features/content-blocks/options/popup.php:350,
1592
- #: build_tmp/build/framework/premium/extensions/shortcuts/customizer.php:59,
1593
- #: build_tmp/build/framework/premium/extensions/shortcuts/customizer.php:121,
1594
- #: build_tmp/build/framework/premium/extensions/shortcuts/customizer.php:183,
1595
- #: build_tmp/build/framework/premium/extensions/shortcuts/customizer.php:239,
1596
- #: build_tmp/build/framework/premium/extensions/shortcuts/customizer.php:327,
1597
- #: build_tmp/build/framework/premium/extensions/shortcuts/customizer.php:385,
1598
- #: build_tmp/build/framework/premium/extensions/shortcuts/customizer.php:441,
1599
- #: build_tmp/build/framework/premium/extensions/shortcuts/customizer.php:497,
1600
- #: build_tmp/build/framework/premium/extensions/shortcuts/customizer.php:634,
1601
- #: build_tmp/build/framework/premium/extensions/shortcuts/customizer.php:756,
1602
- #: build_tmp/build/framework/premium/extensions/woocommerce-extra/extension.php:168,
1603
- #: build_tmp/build/framework/premium/extensions/woocommerce-extra/extension.php:189,
1604
- #: build_tmp/build/framework/premium/extensions/woocommerce-extra/floating-cart.php:47,
1605
- #: build_tmp/build/framework/premium/extensions/woocommerce-extra/floating-cart.php:71,
1606
- #: build_tmp/build/framework/premium/extensions/woocommerce-extra/offcanvas-filter.php:219,
1607
  #: framework/premium/extensions/post-types-extra/includes/filtering/customizer.php:157,
1608
  #: framework/premium/extensions/post-types-extra/includes/read-progress/customizer.php:56,
1609
- #: framework/premium/extensions/woocommerce-extra/header-items/wish-list/options.php:105,
1610
- #: build_tmp/build/framework/features/header/items/account/options.php:280,
1611
- #: build_tmp/build/framework/features/header/items/account/options.php:522,
1612
- #: build_tmp/build/framework/premium/features/content-blocks/options/404.php:157,
1613
- #: build_tmp/build/framework/premium/features/content-blocks/options/header.php:177,
1614
- #: build_tmp/build/framework/premium/features/content-blocks/options/hook.php:354,
1615
- #: build_tmp/build/framework/premium/features/content-blocks/options/popup.php:350,
1616
- #: build_tmp/build/framework/premium/extensions/post-types-extra/includes/filtering/customizer.php:157,
1617
- #: build_tmp/build/framework/premium/extensions/post-types-extra/includes/read-progress/customizer.php:56,
1618
- #: build_tmp/build/framework/premium/extensions/woocommerce-extra/header-items/wish-list/options.php:105
1619
  msgid "Desktop"
1620
  msgstr ""
1621
 
@@ -1636,43 +1111,16 @@ msgstr ""
1636
  #: framework/premium/extensions/woocommerce-extra/floating-cart.php:48,
1637
  #: framework/premium/extensions/woocommerce-extra/floating-cart.php:72,
1638
  #: framework/premium/extensions/woocommerce-extra/offcanvas-filter.php:220,
1639
- #: build_tmp/build/framework/extensions/newsletter-subscribe/customizer.php:138,
1640
- #: build_tmp/build/framework/extensions/trending/customizer.php:280,
1641
- #: framework/features/header/items/account/options.php:281,
1642
- #: framework/features/header/items/account/options.php:523,
1643
- #: framework/features/header/items/account/options.php:1250,
1644
  #: framework/premium/features/content-blocks/options/404.php:158,
1645
  #: framework/premium/features/content-blocks/options/header.php:178,
1646
  #: framework/premium/features/content-blocks/options/hook.php:355,
1647
  #: framework/premium/features/content-blocks/options/popup.php:351,
1648
- #: build_tmp/build/framework/premium/extensions/shortcuts/customizer.php:60,
1649
- #: build_tmp/build/framework/premium/extensions/shortcuts/customizer.php:122,
1650
- #: build_tmp/build/framework/premium/extensions/shortcuts/customizer.php:184,
1651
- #: build_tmp/build/framework/premium/extensions/shortcuts/customizer.php:240,
1652
- #: build_tmp/build/framework/premium/extensions/shortcuts/customizer.php:328,
1653
- #: build_tmp/build/framework/premium/extensions/shortcuts/customizer.php:386,
1654
- #: build_tmp/build/framework/premium/extensions/shortcuts/customizer.php:442,
1655
- #: build_tmp/build/framework/premium/extensions/shortcuts/customizer.php:498,
1656
- #: build_tmp/build/framework/premium/extensions/shortcuts/customizer.php:635,
1657
- #: build_tmp/build/framework/premium/extensions/shortcuts/customizer.php:757,
1658
- #: build_tmp/build/framework/premium/extensions/woocommerce-extra/extension.php:169,
1659
- #: build_tmp/build/framework/premium/extensions/woocommerce-extra/extension.php:190,
1660
- #: build_tmp/build/framework/premium/extensions/woocommerce-extra/floating-cart.php:48,
1661
- #: build_tmp/build/framework/premium/extensions/woocommerce-extra/floating-cart.php:72,
1662
- #: build_tmp/build/framework/premium/extensions/woocommerce-extra/offcanvas-filter.php:220,
1663
  #: framework/premium/extensions/post-types-extra/includes/filtering/customizer.php:158,
1664
  #: framework/premium/extensions/post-types-extra/includes/read-progress/customizer.php:57,
1665
- #: framework/premium/extensions/woocommerce-extra/header-items/wish-list/options.php:106,
1666
- #: build_tmp/build/framework/features/header/items/account/options.php:281,
1667
- #: build_tmp/build/framework/features/header/items/account/options.php:523,
1668
- #: build_tmp/build/framework/features/header/items/account/options.php:1250,
1669
- #: build_tmp/build/framework/premium/features/content-blocks/options/404.php:158,
1670
- #: build_tmp/build/framework/premium/features/content-blocks/options/header.php:178,
1671
- #: build_tmp/build/framework/premium/features/content-blocks/options/hook.php:355,
1672
- #: build_tmp/build/framework/premium/features/content-blocks/options/popup.php:351,
1673
- #: build_tmp/build/framework/premium/extensions/post-types-extra/includes/filtering/customizer.php:158,
1674
- #: build_tmp/build/framework/premium/extensions/post-types-extra/includes/read-progress/customizer.php:57,
1675
- #: build_tmp/build/framework/premium/extensions/woocommerce-extra/header-items/wish-list/options.php:106
1676
  msgid "Tablet"
1677
  msgstr ""
1678
 
@@ -1695,86 +1143,44 @@ msgstr ""
1695
  #: framework/premium/extensions/woocommerce-extra/floating-cart.php:49,
1696
  #: framework/premium/extensions/woocommerce-extra/floating-cart.php:73,
1697
  #: framework/premium/extensions/woocommerce-extra/offcanvas-filter.php:221,
1698
- #: build_tmp/build/framework/extensions/newsletter-subscribe/customizer.php:139,
1699
- #: build_tmp/build/framework/extensions/trending/customizer.php:281,
1700
- #: build_tmp/build/framework/features/header/header-options.php:105,
1701
- #: build_tmp/build/framework/features/header/header-options.php:187,
1702
  #: framework/extensions/widgets/widgets/ct-contact-info/options.php:188,
1703
- #: framework/features/header/items/account/options.php:282,
1704
- #: framework/features/header/items/account/options.php:524,
1705
- #: framework/features/header/items/account/options.php:1251,
1706
  #: framework/premium/features/content-blocks/options/404.php:159,
1707
  #: framework/premium/features/content-blocks/options/header.php:179,
1708
  #: framework/premium/features/content-blocks/options/hook.php:356,
1709
  #: framework/premium/features/content-blocks/options/popup.php:352,
1710
- #: build_tmp/build/framework/premium/extensions/shortcuts/customizer.php:61,
1711
- #: build_tmp/build/framework/premium/extensions/shortcuts/customizer.php:123,
1712
- #: build_tmp/build/framework/premium/extensions/shortcuts/customizer.php:185,
1713
- #: build_tmp/build/framework/premium/extensions/shortcuts/customizer.php:241,
1714
- #: build_tmp/build/framework/premium/extensions/shortcuts/customizer.php:329,
1715
- #: build_tmp/build/framework/premium/extensions/shortcuts/customizer.php:387,
1716
- #: build_tmp/build/framework/premium/extensions/shortcuts/customizer.php:443,
1717
- #: build_tmp/build/framework/premium/extensions/shortcuts/customizer.php:499,
1718
- #: build_tmp/build/framework/premium/extensions/shortcuts/customizer.php:636,
1719
- #: build_tmp/build/framework/premium/extensions/shortcuts/customizer.php:758,
1720
- #: build_tmp/build/framework/premium/extensions/woocommerce-extra/extension.php:170,
1721
- #: build_tmp/build/framework/premium/extensions/woocommerce-extra/extension.php:191,
1722
- #: build_tmp/build/framework/premium/extensions/woocommerce-extra/floating-cart.php:49,
1723
- #: build_tmp/build/framework/premium/extensions/woocommerce-extra/floating-cart.php:73,
1724
- #: build_tmp/build/framework/premium/extensions/woocommerce-extra/offcanvas-filter.php:221,
1725
  #: framework/premium/extensions/post-types-extra/includes/filtering/customizer.php:159,
1726
  #: framework/premium/extensions/post-types-extra/includes/read-progress/customizer.php:58,
1727
  #: framework/premium/extensions/woocommerce-extra/header-items/wish-list/options.php:107,
1728
- #: framework/premium/features/premium-header/items/contacts/options.php:113,
1729
- #: build_tmp/build/framework/extensions/widgets/widgets/ct-contact-info/options.php:188,
1730
- #: build_tmp/build/framework/features/header/items/account/options.php:282,
1731
- #: build_tmp/build/framework/features/header/items/account/options.php:524,
1732
- #: build_tmp/build/framework/features/header/items/account/options.php:1251,
1733
- #: build_tmp/build/framework/premium/features/content-blocks/options/404.php:159,
1734
- #: build_tmp/build/framework/premium/features/content-blocks/options/header.php:179,
1735
- #: build_tmp/build/framework/premium/features/content-blocks/options/hook.php:356,
1736
- #: build_tmp/build/framework/premium/features/content-blocks/options/popup.php:352,
1737
- #: build_tmp/build/framework/premium/extensions/post-types-extra/includes/filtering/customizer.php:159,
1738
- #: build_tmp/build/framework/premium/extensions/post-types-extra/includes/read-progress/customizer.php:58,
1739
- #: build_tmp/build/framework/premium/extensions/woocommerce-extra/header-items/wish-list/options.php:107,
1740
- #: build_tmp/build/framework/premium/features/premium-header/items/contacts/options.php:113
1741
  msgid "Mobile"
1742
  msgstr ""
1743
 
1744
- #: framework/extensions/newsletter-subscribe/customizer.php:152,
1745
- #: build_tmp/build/framework/extensions/newsletter-subscribe/customizer.php:152
1746
  msgid "Title Color"
1747
  msgstr ""
1748
 
1749
- #: framework/extensions/newsletter-subscribe/customizer.php:173,
1750
- #: build_tmp/build/framework/extensions/newsletter-subscribe/customizer.php:173
1751
  msgid "Description Color"
1752
  msgstr ""
1753
 
1754
  #: framework/extensions/newsletter-subscribe/customizer.php:204,
1755
- #: build_tmp/build/framework/extensions/newsletter-subscribe/customizer.php:204,
1756
- #: framework/features/header/items/account/options.php:945,
1757
  #: framework/premium/features/premium-header/items/search-input/options.php:194,
1758
  #: framework/premium/features/premium-header/items/search-input/options.php:223,
1759
  #: framework/premium/features/premium-header/items/search-input/options.php:255,
1760
- #: framework/premium/features/premium-header/items/search-input/options.php:285,
1761
- #: build_tmp/build/framework/features/header/items/account/options.php:945,
1762
- #: build_tmp/build/framework/premium/features/premium-header/items/search-input/options.php:194,
1763
- #: build_tmp/build/framework/premium/features/premium-header/items/search-input/options.php:223,
1764
- #: build_tmp/build/framework/premium/features/premium-header/items/search-input/options.php:255,
1765
- #: build_tmp/build/framework/premium/features/premium-header/items/search-input/options.php:285
1766
  msgid "Input Font Color"
1767
  msgstr ""
1768
 
1769
  #: framework/extensions/newsletter-subscribe/customizer.php:228,
1770
  #: framework/extensions/newsletter-subscribe/customizer.php:259,
1771
  #: framework/extensions/newsletter-subscribe/customizer.php:295,
1772
- #: build_tmp/build/framework/extensions/newsletter-subscribe/customizer.php:228,
1773
- #: build_tmp/build/framework/extensions/newsletter-subscribe/customizer.php:259,
1774
- #: build_tmp/build/framework/extensions/newsletter-subscribe/customizer.php:295,
1775
- #: framework/features/header/items/account/options.php:967,
1776
- #: framework/features/header/items/account/options.php:997,
1777
- #: framework/features/header/items/account/options.php:1033,
1778
  #: framework/premium/features/premium-header/items/search-input/options.php:247,
1779
  #: framework/premium/features/premium-header/items/search-input/options.php:278,
1780
  #: framework/premium/features/premium-header/items/search-input/options.php:308,
@@ -1786,151 +1192,102 @@ msgstr ""
1786
  #: framework/premium/features/premium-header/items/search-input/options.php:568,
1787
  #: framework/premium/features/premium-header/items/search-input/options.php:641,
1788
  #: framework/premium/features/premium-header/items/search-input/options.php:671,
1789
- #: framework/premium/features/premium-header/items/search-input/options.php:701,
1790
- #: build_tmp/build/framework/features/header/items/account/options.php:967,
1791
- #: build_tmp/build/framework/features/header/items/account/options.php:997,
1792
- #: build_tmp/build/framework/features/header/items/account/options.php:1033,
1793
- #: build_tmp/build/framework/premium/features/premium-header/items/search-input/options.php:247,
1794
- #: build_tmp/build/framework/premium/features/premium-header/items/search-input/options.php:278,
1795
- #: build_tmp/build/framework/premium/features/premium-header/items/search-input/options.php:308,
1796
- #: build_tmp/build/framework/premium/features/premium-header/items/search-input/options.php:377,
1797
- #: build_tmp/build/framework/premium/features/premium-header/items/search-input/options.php:408,
1798
- #: build_tmp/build/framework/premium/features/premium-header/items/search-input/options.php:438,
1799
- #: build_tmp/build/framework/premium/features/premium-header/items/search-input/options.php:507,
1800
- #: build_tmp/build/framework/premium/features/premium-header/items/search-input/options.php:538,
1801
- #: build_tmp/build/framework/premium/features/premium-header/items/search-input/options.php:568,
1802
- #: build_tmp/build/framework/premium/features/premium-header/items/search-input/options.php:641,
1803
- #: build_tmp/build/framework/premium/features/premium-header/items/search-input/options.php:671,
1804
- #: build_tmp/build/framework/premium/features/premium-header/items/search-input/options.php:701
1805
  msgid "Focus"
1806
  msgstr ""
1807
 
1808
  #: framework/extensions/newsletter-subscribe/customizer.php:236,
1809
- #: build_tmp/build/framework/extensions/newsletter-subscribe/customizer.php:236,
1810
- #: framework/features/header/items/account/options.php:975,
1811
  #: framework/premium/features/premium-header/items/search-input/options.php:454,
1812
  #: framework/premium/features/premium-header/items/search-input/options.php:483,
1813
  #: framework/premium/features/premium-header/items/search-input/options.php:515,
1814
- #: framework/premium/features/premium-header/items/search-input/options.php:545,
1815
- #: build_tmp/build/framework/features/header/items/account/options.php:975,
1816
- #: build_tmp/build/framework/premium/features/premium-header/items/search-input/options.php:454,
1817
- #: build_tmp/build/framework/premium/features/premium-header/items/search-input/options.php:483,
1818
- #: build_tmp/build/framework/premium/features/premium-header/items/search-input/options.php:515,
1819
- #: build_tmp/build/framework/premium/features/premium-header/items/search-input/options.php:545
1820
  msgid "Input Border Color"
1821
  msgstr ""
1822
 
1823
  #: framework/extensions/newsletter-subscribe/customizer.php:273,
1824
- #: build_tmp/build/framework/extensions/newsletter-subscribe/customizer.php:273,
1825
- #: framework/features/header/items/account/options.php:1011,
1826
  #: framework/premium/features/premium-header/items/search-input/options.php:590,
1827
  #: framework/premium/features/premium-header/items/search-input/options.php:618,
1828
  #: framework/premium/features/premium-header/items/search-input/options.php:648,
1829
- #: framework/premium/features/premium-header/items/search-input/options.php:678,
1830
- #: build_tmp/build/framework/features/header/items/account/options.php:1011,
1831
- #: build_tmp/build/framework/premium/features/premium-header/items/search-input/options.php:590,
1832
- #: build_tmp/build/framework/premium/features/premium-header/items/search-input/options.php:618,
1833
- #: build_tmp/build/framework/premium/features/premium-header/items/search-input/options.php:648,
1834
- #: build_tmp/build/framework/premium/features/premium-header/items/search-input/options.php:678
1835
  msgid "Input Background Color"
1836
  msgstr ""
1837
 
1838
  #: framework/extensions/newsletter-subscribe/customizer.php:305,
1839
- #: build_tmp/build/framework/extensions/newsletter-subscribe/customizer.php:305,
1840
- #: framework/premium/extensions/post-types-extra/includes/filtering/customizer.php:220,
1841
- #: build_tmp/build/framework/premium/extensions/post-types-extra/includes/filtering/customizer.php:220
1842
  msgid "Button Color"
1843
  msgstr ""
1844
 
1845
  #: framework/extensions/newsletter-subscribe/customizer.php:334,
1846
  #: framework/extensions/trending/customizer.php:380,
1847
- #: framework/premium/extensions/shortcuts/customizer.php:953,
1848
- #: build_tmp/build/framework/extensions/newsletter-subscribe/customizer.php:334,
1849
- #: build_tmp/build/framework/extensions/trending/customizer.php:380,
1850
- #: build_tmp/build/framework/premium/extensions/shortcuts/customizer.php:953
1851
  msgid "Container Background"
1852
  msgstr ""
1853
 
1854
- #: framework/extensions/newsletter-subscribe/customizer.php:350,
1855
- #: build_tmp/build/framework/extensions/newsletter-subscribe/customizer.php:350
1856
  msgid "Container Border"
1857
  msgstr ""
1858
 
1859
  #: framework/extensions/newsletter-subscribe/customizer.php:385,
1860
- #: framework/extensions/trending/customizer.php:396,
1861
- #: build_tmp/build/framework/extensions/newsletter-subscribe/customizer.php:385,
1862
- #: build_tmp/build/framework/extensions/trending/customizer.php:396
1863
  msgid "Container Inner Spacing"
1864
  msgstr ""
1865
 
1866
  #: framework/extensions/newsletter-subscribe/customizer.php:400,
1867
- #: framework/premium/extensions/shortcuts/customizer.php:974,
1868
- #: build_tmp/build/framework/extensions/newsletter-subscribe/customizer.php:400,
1869
- #: build_tmp/build/framework/premium/extensions/shortcuts/customizer.php:974
1870
  msgid "Container Border Radius"
1871
  msgstr ""
1872
 
1873
- #: framework/extensions/newsletter-subscribe/extension.php:128,
1874
- #: build_tmp/build/framework/extensions/newsletter-subscribe/extension.php:128
1875
  msgid "Disable Subscribe Form"
1876
  msgstr ""
1877
 
1878
- #: framework/extensions/newsletter-subscribe/helpers.php:163,
1879
- #: build_tmp/build/framework/extensions/newsletter-subscribe/helpers.php:163
1880
  msgid "First name"
1881
  msgstr ""
1882
 
1883
- #: framework/extensions/newsletter-subscribe/helpers.php:166,
1884
- #: build_tmp/build/framework/extensions/newsletter-subscribe/helpers.php:166
1885
  msgid "Email address"
1886
  msgstr ""
1887
 
1888
- #: framework/extensions/newsletter-subscribe/readme.php:4,
1889
- #: build_tmp/build/framework/extensions/newsletter-subscribe/readme.php:4
1890
  msgid ""
1891
  "After installing and activating the Newsletter Subscribe\n"
1892
  " extension you will have two possibilities to show your subscribe form:"
1893
  msgstr ""
1894
 
1895
- #: framework/extensions/newsletter-subscribe/readme.php:10,
1896
- #: build_tmp/build/framework/extensions/newsletter-subscribe/readme.php:10
1897
  msgid "Widget"
1898
  msgstr ""
1899
 
1900
- #: framework/extensions/newsletter-subscribe/readme.php:14,
1901
- #: build_tmp/build/framework/extensions/newsletter-subscribe/readme.php:14
1902
  msgid "Navigate to %s and place the widget in any widget area you want."
1903
  msgstr ""
1904
 
1905
- #: framework/extensions/newsletter-subscribe/readme.php:17,
1906
- #: build_tmp/build/framework/extensions/newsletter-subscribe/readme.php:17
1907
  msgid "Appearance ➝ Widgets"
1908
  msgstr ""
1909
 
1910
- #: framework/extensions/newsletter-subscribe/readme.php:25,
1911
- #: build_tmp/build/framework/extensions/newsletter-subscribe/readme.php:25
1912
  msgid "Single Page Block"
1913
  msgstr ""
1914
 
1915
- #: framework/extensions/newsletter-subscribe/readme.php:29,
1916
- #: build_tmp/build/framework/extensions/newsletter-subscribe/readme.php:29
1917
  msgid "Navigate to %s and customize the form and more."
1918
  msgstr ""
1919
 
1920
- #: framework/extensions/newsletter-subscribe/readme.php:32,
1921
- #: build_tmp/build/framework/extensions/newsletter-subscribe/readme.php:32
1922
  msgid "Customizer ➝ Single Posts"
1923
  msgstr ""
1924
 
1925
  #. translators: This is a brand name. Preferably to not be translated
1926
- #: framework/extensions/product-reviews/config.php:5,
1927
- #: build_tmp/build/framework/extensions/product-reviews/config.php:5
1928
  msgctxt "Extension Brand Name"
1929
  msgid "Product Reviews"
1930
  msgstr ""
1931
 
1932
- #: framework/extensions/product-reviews/config.php:6,
1933
- #: build_tmp/build/framework/extensions/product-reviews/config.php:6
1934
  msgid ""
1935
  "This extension lets you easily create an affiliate marketing type of website "
1936
  "by giving you options to create a personalized product review and use your "
@@ -1938,9 +1295,7 @@ msgid ""
1938
  msgstr ""
1939
 
1940
  #: framework/extensions/product-reviews/extension.php:217,
1941
- #: framework/extensions/product-reviews/extension.php:388,
1942
- #: build_tmp/build/framework/extensions/product-reviews/extension.php:217,
1943
- #: build_tmp/build/framework/extensions/product-reviews/extension.php:388
1944
  msgid "Star Rating Color"
1945
  msgstr ""
1946
 
@@ -1948,845 +1303,650 @@ msgstr ""
1948
  #: framework/extensions/product-reviews/extension.php:405,
1949
  #: framework/extensions/product-reviews/extension.php:433,
1950
  #: framework/extensions/product-reviews/extension.php:454,
1951
- #: framework/premium/extensions/mega-menu/options.php:772,
1952
- #: build_tmp/build/framework/extensions/product-reviews/extension.php:235,
1953
- #: build_tmp/build/framework/extensions/product-reviews/extension.php:405,
1954
- #: build_tmp/build/framework/extensions/product-reviews/extension.php:433,
1955
- #: build_tmp/build/framework/extensions/product-reviews/extension.php:454,
1956
- #: build_tmp/build/framework/premium/extensions/mega-menu/options.php:772
1957
  msgid "Active"
1958
  msgstr ""
1959
 
1960
  #: framework/extensions/product-reviews/extension.php:241,
1961
- #: framework/extensions/product-reviews/extension.php:411,
1962
- #: build_tmp/build/framework/extensions/product-reviews/extension.php:241,
1963
- #: build_tmp/build/framework/extensions/product-reviews/extension.php:411
1964
  msgid "Inactive"
1965
  msgstr ""
1966
 
1967
  #: framework/extensions/product-reviews/extension.php:279,
1968
- #: framework/extensions/product-reviews/views/single-top.php:139,
1969
- #: build_tmp/build/framework/extensions/product-reviews/extension.php:279,
1970
- #: build_tmp/build/framework/extensions/product-reviews/views/single-top.php:139
1971
  msgid "Overall Score"
1972
  msgstr ""
1973
 
1974
- #: framework/extensions/product-reviews/extension.php:337,
1975
- #: build_tmp/build/framework/extensions/product-reviews/extension.php:337
1976
  msgid "Review Summary"
1977
  msgstr ""
1978
 
1979
- #: framework/extensions/product-reviews/extension.php:348,
1980
- #: build_tmp/build/framework/extensions/product-reviews/extension.php:348
1981
  msgid "Scores Box Width"
1982
  msgstr ""
1983
 
1984
- #: framework/extensions/product-reviews/extension.php:358,
1985
- #: build_tmp/build/framework/extensions/product-reviews/extension.php:358
1986
  msgid "Read More Button"
1987
  msgstr ""
1988
 
1989
- #: framework/extensions/product-reviews/extension.php:369,
1990
- #: build_tmp/build/framework/extensions/product-reviews/extension.php:369
1991
  msgid "Buy Now Button"
1992
  msgstr ""
1993
 
1994
- #: framework/extensions/product-reviews/extension.php:419,
1995
- #: build_tmp/build/framework/extensions/product-reviews/extension.php:419
1996
  msgid "Overll Score Text"
1997
  msgstr ""
1998
 
1999
- #: framework/extensions/product-reviews/extension.php:441,
2000
- #: build_tmp/build/framework/extensions/product-reviews/extension.php:441
2001
  msgid "Overll Score Background"
2002
  msgstr ""
2003
 
2004
  #: framework/extensions/product-reviews/extension.php:501,
2005
  #: framework/extensions/product-reviews/extension.php:502,
2006
  #: framework/extensions/product-reviews/extension.php:505,
2007
- #: framework/extensions/product-reviews/extension.php:507,
2008
- #: build_tmp/build/framework/extensions/product-reviews/extension.php:501,
2009
- #: build_tmp/build/framework/extensions/product-reviews/extension.php:502,
2010
- #: build_tmp/build/framework/extensions/product-reviews/extension.php:505,
2011
- #: build_tmp/build/framework/extensions/product-reviews/extension.php:507
2012
  msgid "Product Reviews"
2013
  msgstr ""
2014
 
2015
- #: framework/extensions/product-reviews/extension.php:506,
2016
- #: build_tmp/build/framework/extensions/product-reviews/extension.php:506
2017
  msgid "Product Review"
2018
  msgstr ""
2019
 
2020
- #: framework/extensions/product-reviews/extension.php:508,
2021
- #: build_tmp/build/framework/extensions/product-reviews/extension.php:508
2022
  msgid "Parent Product Review"
2023
  msgstr ""
2024
 
2025
- #: framework/extensions/product-reviews/extension.php:509,
2026
- #: build_tmp/build/framework/extensions/product-reviews/extension.php:509
2027
  msgid "All Reviews"
2028
  msgstr ""
2029
 
2030
- #: framework/extensions/product-reviews/extension.php:510,
2031
- #: build_tmp/build/framework/extensions/product-reviews/extension.php:510
2032
  msgid "View Product Review"
2033
  msgstr ""
2034
 
2035
- #: framework/extensions/product-reviews/extension.php:511,
2036
- #: build_tmp/build/framework/extensions/product-reviews/extension.php:511
2037
  msgid "Add New Product Review"
2038
  msgstr ""
2039
 
2040
- #: framework/extensions/product-reviews/extension.php:512,
2041
- #: build_tmp/build/framework/extensions/product-reviews/extension.php:512
2042
  msgid "Add New Review"
2043
  msgstr ""
2044
 
2045
- #: framework/extensions/product-reviews/extension.php:513,
2046
- #: build_tmp/build/framework/extensions/product-reviews/extension.php:513
2047
  msgid "Edit Product Review"
2048
  msgstr ""
2049
 
2050
- #: framework/extensions/product-reviews/extension.php:514,
2051
- #: build_tmp/build/framework/extensions/product-reviews/extension.php:514
2052
  msgid "Update Product Review"
2053
  msgstr ""
2054
 
2055
- #: framework/extensions/product-reviews/extension.php:515,
2056
- #: build_tmp/build/framework/extensions/product-reviews/extension.php:515
2057
  msgid "Search Product Review"
2058
  msgstr ""
2059
 
2060
- #: framework/extensions/product-reviews/extension.php:516,
2061
- #: build_tmp/build/framework/extensions/product-reviews/extension.php:516
2062
  msgid "Not Found"
2063
  msgstr ""
2064
 
2065
- #: framework/extensions/product-reviews/extension.php:517,
2066
- #: build_tmp/build/framework/extensions/product-reviews/extension.php:517
2067
  msgid "Not found in Trash"
2068
  msgstr ""
2069
 
2070
  #: framework/extensions/product-reviews/extension.php:551,
2071
- #: framework/extensions/product-reviews/extension.php:561,
2072
- #: build_tmp/build/framework/extensions/product-reviews/extension.php:551,
2073
- #: build_tmp/build/framework/extensions/product-reviews/extension.php:561
2074
  msgid "Categories"
2075
  msgstr ""
2076
 
2077
  #: framework/extensions/product-reviews/extension.php:552,
2078
  #: framework/extensions/trending/customizer.php:35,
2079
- #: build_tmp/build/framework/extensions/product-reviews/extension.php:552,
2080
- #: build_tmp/build/framework/extensions/trending/customizer.php:35,
2081
- #: framework/extensions/widgets/widgets/ct-posts/options.php:37,
2082
- #: build_tmp/build/framework/extensions/widgets/widgets/ct-posts/options.php:37
2083
  msgid "Category"
2084
  msgstr ""
2085
 
2086
- #: framework/extensions/product-reviews/extension.php:553,
2087
- #: build_tmp/build/framework/extensions/product-reviews/extension.php:553
2088
  msgid "Search Category"
2089
  msgstr ""
2090
 
2091
- #: framework/extensions/product-reviews/extension.php:554,
2092
- #: build_tmp/build/framework/extensions/product-reviews/extension.php:554
2093
  msgid "All Categories"
2094
  msgstr ""
2095
 
2096
- #: framework/extensions/product-reviews/extension.php:555,
2097
- #: build_tmp/build/framework/extensions/product-reviews/extension.php:555
2098
  msgid "Parent Category"
2099
  msgstr ""
2100
 
2101
- #: framework/extensions/product-reviews/extension.php:556,
2102
- #: build_tmp/build/framework/extensions/product-reviews/extension.php:556
2103
  msgid "Parent Category:"
2104
  msgstr ""
2105
 
2106
- #: framework/extensions/product-reviews/extension.php:557,
2107
- #: build_tmp/build/framework/extensions/product-reviews/extension.php:557
2108
  msgid "Edit Category"
2109
  msgstr ""
2110
 
2111
- #: framework/extensions/product-reviews/extension.php:558,
2112
- #: build_tmp/build/framework/extensions/product-reviews/extension.php:558
2113
  msgid "Update Category"
2114
  msgstr ""
2115
 
2116
- #: framework/extensions/product-reviews/extension.php:559,
2117
- #: build_tmp/build/framework/extensions/product-reviews/extension.php:559
2118
  msgid "Add New Category"
2119
  msgstr ""
2120
 
2121
- #: framework/extensions/product-reviews/extension.php:560,
2122
- #: build_tmp/build/framework/extensions/product-reviews/extension.php:560
2123
  msgid "New Category Name"
2124
  msgstr ""
2125
 
2126
  #. translators: %s is the theme name.
2127
- #: framework/extensions/product-reviews/extension.php:579,
2128
- #: build_tmp/build/framework/extensions/product-reviews/extension.php:579
2129
  msgid "%s Settings"
2130
  msgstr ""
2131
 
2132
- #: framework/extensions/product-reviews/extension.php:580,
2133
- #: build_tmp/build/framework/extensions/product-reviews/extension.php:580
2134
  msgid "Blocksy"
2135
  msgstr ""
2136
 
2137
  #: framework/extensions/product-reviews/helpers.php:30,
2138
- #: framework/extensions/product-reviews/metabox.php:179,
2139
- #: build_tmp/build/framework/extensions/product-reviews/helpers.php:30,
2140
- #: build_tmp/build/framework/extensions/product-reviews/metabox.php:179
2141
  msgid "Rating"
2142
  msgstr ""
2143
 
2144
- #: framework/extensions/product-reviews/metabox.php:10,
2145
- #: build_tmp/build/framework/extensions/product-reviews/metabox.php:10
2146
  msgid "Review Entity"
2147
  msgstr ""
2148
 
2149
  #: framework/extensions/product-reviews/metabox.php:18,
2150
- #: build_tmp/build/framework/extensions/product-reviews/metabox.php:18,
2151
- #: framework/premium/extensions/woocommerce-extra/includes/wish-list-table.php:34,
2152
- #: build_tmp/build/framework/premium/extensions/woocommerce-extra/includes/wish-list-table.php:34
2153
  msgid "Product"
2154
  msgstr ""
2155
 
2156
- #: framework/extensions/product-reviews/metabox.php:19,
2157
- #: build_tmp/build/framework/extensions/product-reviews/metabox.php:19
2158
  msgid "Book"
2159
  msgstr ""
2160
 
2161
- #: framework/extensions/product-reviews/metabox.php:21,
2162
- #: build_tmp/build/framework/extensions/product-reviews/metabox.php:21
2163
  msgid "Creative Work Season"
2164
  msgstr ""
2165
 
2166
- #: framework/extensions/product-reviews/metabox.php:22,
2167
- #: build_tmp/build/framework/extensions/product-reviews/metabox.php:22
2168
  msgid "Creative Work Series"
2169
  msgstr ""
2170
 
2171
- #: framework/extensions/product-reviews/metabox.php:23,
2172
- #: build_tmp/build/framework/extensions/product-reviews/metabox.php:23
2173
  msgid "Episode"
2174
  msgstr ""
2175
 
2176
- #: framework/extensions/product-reviews/metabox.php:25,
2177
- #: build_tmp/build/framework/extensions/product-reviews/metabox.php:25
2178
  msgid "Game"
2179
  msgstr ""
2180
 
2181
- #: framework/extensions/product-reviews/metabox.php:27,
2182
- #: build_tmp/build/framework/extensions/product-reviews/metabox.php:27
2183
  msgid "Local Business"
2184
  msgstr ""
2185
 
2186
- #: framework/extensions/product-reviews/metabox.php:28,
2187
- #: build_tmp/build/framework/extensions/product-reviews/metabox.php:28
2188
  msgid "Media Object"
2189
  msgstr ""
2190
 
2191
- #: framework/extensions/product-reviews/metabox.php:29,
2192
- #: build_tmp/build/framework/extensions/product-reviews/metabox.php:29
2193
  msgid "Movie"
2194
  msgstr ""
2195
 
2196
- #: framework/extensions/product-reviews/metabox.php:30,
2197
- #: build_tmp/build/framework/extensions/product-reviews/metabox.php:30
2198
  msgid "Music Playlist"
2199
  msgstr ""
2200
 
2201
- #: framework/extensions/product-reviews/metabox.php:31,
2202
- #: build_tmp/build/framework/extensions/product-reviews/metabox.php:31
2203
  msgid "Music Recording"
2204
  msgstr ""
2205
 
2206
- #: framework/extensions/product-reviews/metabox.php:32,
2207
- #: build_tmp/build/framework/extensions/product-reviews/metabox.php:32
2208
  msgid "Organization"
2209
  msgstr ""
2210
 
2211
- #: framework/extensions/product-reviews/metabox.php:38,
2212
- #: build_tmp/build/framework/extensions/product-reviews/metabox.php:38
2213
  msgid ""
2214
  "More info about review entity and how to choose the right one can be found "
2215
  "%shere%s."
2216
  msgstr ""
2217
 
2218
- #: framework/extensions/product-reviews/metabox.php:60,
2219
- #: build_tmp/build/framework/extensions/product-reviews/metabox.php:60
2220
  msgid ""
2221
  "Please note that some of this information (price, sku, brand) won't be "
2222
  "displayed on the front-end. It is solely used for Google's Schema.org markup."
2223
  msgstr ""
2224
 
2225
- #: framework/extensions/product-reviews/metabox.php:69,
2226
- #: build_tmp/build/framework/extensions/product-reviews/metabox.php:69
2227
  msgid "Product Price"
2228
  msgstr ""
2229
 
2230
- #: framework/extensions/product-reviews/metabox.php:76,
2231
- #: build_tmp/build/framework/extensions/product-reviews/metabox.php:76
2232
  msgid "Product SKU"
2233
  msgstr ""
2234
 
2235
- #: framework/extensions/product-reviews/metabox.php:83,
2236
- #: build_tmp/build/framework/extensions/product-reviews/metabox.php:83
2237
  msgid "Product Brand"
2238
  msgstr ""
2239
 
2240
- #: framework/extensions/product-reviews/metabox.php:96,
2241
- #: build_tmp/build/framework/extensions/product-reviews/metabox.php:96
2242
  msgid "Gallery"
2243
  msgstr ""
2244
 
2245
- #: framework/extensions/product-reviews/metabox.php:107,
2246
- #: build_tmp/build/framework/extensions/product-reviews/metabox.php:107
2247
  msgid "Affiliate Button Label"
2248
  msgstr ""
2249
 
2250
  #: framework/extensions/product-reviews/metabox.php:109,
2251
- #: framework/extensions/product-reviews/views/single-top.php:156,
2252
- #: build_tmp/build/framework/extensions/product-reviews/metabox.php:109,
2253
- #: build_tmp/build/framework/extensions/product-reviews/views/single-top.php:156
2254
  msgid "Buy Now"
2255
  msgstr ""
2256
 
2257
- #: framework/extensions/product-reviews/metabox.php:114,
2258
- #: build_tmp/build/framework/extensions/product-reviews/metabox.php:114
2259
  msgid "Affiliate Link"
2260
  msgstr ""
2261
 
2262
- #: framework/extensions/product-reviews/metabox.php:120,
2263
- #: build_tmp/build/framework/extensions/product-reviews/metabox.php:120
2264
  msgid "Open Link In New Tab"
2265
  msgstr ""
2266
 
2267
- #: framework/extensions/product-reviews/metabox.php:126,
2268
- #: build_tmp/build/framework/extensions/product-reviews/metabox.php:126
2269
  msgid "Sponsored Attribute"
2270
  msgstr ""
2271
 
2272
- #: framework/extensions/product-reviews/metabox.php:148,
2273
- #: build_tmp/build/framework/extensions/product-reviews/metabox.php:148
2274
  msgid "Read More Button Label"
2275
  msgstr ""
2276
 
2277
  #: framework/extensions/product-reviews/metabox.php:150,
2278
- #: framework/extensions/product-reviews/views/single-top.php:162,
2279
- #: build_tmp/build/framework/extensions/product-reviews/metabox.php:150,
2280
- #: build_tmp/build/framework/extensions/product-reviews/views/single-top.php:162
2281
  msgid "Read More"
2282
  msgstr ""
2283
 
2284
- #: framework/extensions/product-reviews/metabox.php:170,
2285
- #: build_tmp/build/framework/extensions/product-reviews/metabox.php:170
2286
  msgid "Short Description"
2287
  msgstr ""
2288
 
2289
- #: framework/extensions/product-reviews/metabox.php:185,
2290
- #: build_tmp/build/framework/extensions/product-reviews/metabox.php:185
2291
  msgid "Scores"
2292
  msgstr ""
2293
 
2294
- #: framework/extensions/product-reviews/metabox.php:225,
2295
- #: build_tmp/build/framework/extensions/product-reviews/metabox.php:225
2296
  msgid "Product specs"
2297
  msgstr ""
2298
 
2299
  #: framework/extensions/product-reviews/metabox.php:250,
2300
- #: framework/extensions/product-reviews/views/single-top.php:262,
2301
- #: build_tmp/build/framework/extensions/product-reviews/metabox.php:250,
2302
- #: build_tmp/build/framework/extensions/product-reviews/views/single-top.php:262
2303
  msgid "Pros"
2304
  msgstr ""
2305
 
2306
  #: framework/extensions/product-reviews/metabox.php:270,
2307
- #: framework/extensions/product-reviews/views/single-top.php:285,
2308
- #: build_tmp/build/framework/extensions/product-reviews/metabox.php:270,
2309
- #: build_tmp/build/framework/extensions/product-reviews/views/single-top.php:285
2310
  msgid "Cons"
2311
  msgstr ""
2312
 
2313
  #. translators: This is a brand name. Preferably to not be translated
2314
  #: framework/extensions/trending/config.php:5,
2315
- #: framework/extensions/trending/customizer.php:97,
2316
- #: build_tmp/build/framework/extensions/trending/config.php:5,
2317
- #: build_tmp/build/framework/extensions/trending/customizer.php:97
2318
  msgctxt "Extension Brand Name"
2319
  msgid "Trending Posts"
2320
  msgstr ""
2321
 
2322
- #: framework/extensions/trending/config.php:6,
2323
- #: build_tmp/build/framework/extensions/trending/config.php:6
2324
  msgid ""
2325
  "Highlight your most popular posts or products based on the number of "
2326
  "comments or reviews they have gotten in the specified period of time."
2327
  msgstr ""
2328
 
2329
  #: framework/extensions/trending/customizer.php:8,
2330
- #: build_tmp/build/framework/extensions/trending/customizer.php:8,
2331
  #: framework/premium/extensions/shortcuts/views/bar.php:48,
2332
- #: framework/premium/features/premium-header/items/search-input/options.php:6,
2333
- #: build_tmp/build/framework/premium/extensions/shortcuts/views/bar.php:48,
2334
- #: build_tmp/build/framework/premium/features/premium-header/items/search-input/options.php:6
2335
  msgid "Products"
2336
  msgstr ""
2337
 
2338
  #: framework/extensions/trending/customizer.php:36,
2339
- #: build_tmp/build/framework/extensions/trending/customizer.php:36,
2340
- #: framework/extensions/widgets/widgets/ct-posts/options.php:38,
2341
- #: build_tmp/build/framework/extensions/widgets/widgets/ct-posts/options.php:38
2342
  msgid "All categories"
2343
  msgstr ""
2344
 
2345
  #: framework/extensions/trending/customizer.php:41,
2346
- #: build_tmp/build/framework/extensions/trending/customizer.php:41,
2347
- #: framework/extensions/widgets/widgets/ct-posts/options.php:43,
2348
- #: build_tmp/build/framework/extensions/widgets/widgets/ct-posts/options.php:43
2349
  msgid "Taxonomy"
2350
  msgstr ""
2351
 
2352
  #: framework/extensions/trending/customizer.php:42,
2353
- #: build_tmp/build/framework/extensions/trending/customizer.php:42,
2354
- #: framework/extensions/widgets/widgets/ct-posts/options.php:44,
2355
- #: build_tmp/build/framework/extensions/widgets/widgets/ct-posts/options.php:44
2356
  msgid "All taxonomies"
2357
  msgstr ""
2358
 
2359
- #: framework/extensions/trending/customizer.php:106,
2360
- #: build_tmp/build/framework/extensions/trending/customizer.php:106
2361
  msgid "Trending Posts"
2362
  msgstr ""
2363
 
2364
- #: framework/extensions/trending/customizer.php:115,
2365
- #: build_tmp/build/framework/extensions/trending/customizer.php:115
2366
  msgid "Module Title"
2367
  msgstr ""
2368
 
2369
  #: framework/extensions/trending/customizer.php:118,
2370
- #: framework/extensions/trending/helpers.php:221,
2371
- #: build_tmp/build/framework/extensions/trending/customizer.php:118,
2372
- #: build_tmp/build/framework/extensions/trending/helpers.php:221
2373
  msgid "Trending now"
2374
  msgstr ""
2375
 
2376
- #: framework/extensions/trending/customizer.php:123,
2377
- #: build_tmp/build/framework/extensions/trending/customizer.php:123
2378
  msgid "Module Title Tag"
2379
  msgstr ""
2380
 
2381
  #: framework/extensions/trending/customizer.php:149,
2382
  #: framework/extensions/trending/customizer.php:162,
2383
- #: build_tmp/build/framework/extensions/trending/customizer.php:149,
2384
- #: build_tmp/build/framework/extensions/trending/customizer.php:162,
2385
- #: framework/extensions/widgets/widgets/ct-posts/options.php:137,
2386
- #: build_tmp/build/framework/extensions/widgets/widgets/ct-posts/options.php:137
2387
  msgid "Post Type"
2388
  msgstr ""
2389
 
2390
  #: framework/extensions/trending/customizer.php:171,
2391
- #: build_tmp/build/framework/extensions/trending/customizer.php:171,
2392
  #: framework/extensions/widgets/widgets/ct-advertisement/options.php:23,
2393
  #: framework/extensions/widgets/widgets/ct-posts/options.php:149,
2394
- #: framework/extensions/widgets/widgets/ct-posts/options.php:168,
2395
- #: build_tmp/build/framework/extensions/widgets/widgets/ct-advertisement/options.php:23,
2396
- #: build_tmp/build/framework/extensions/widgets/widgets/ct-posts/options.php:149,
2397
- #: build_tmp/build/framework/extensions/widgets/widgets/ct-posts/options.php:168
2398
  msgid "Source"
2399
  msgstr ""
2400
 
2401
  #: framework/extensions/trending/customizer.php:176,
2402
- #: build_tmp/build/framework/extensions/trending/customizer.php:176,
2403
- #: framework/extensions/widgets/widgets/ct-posts/options.php:154,
2404
- #: build_tmp/build/framework/extensions/widgets/widgets/ct-posts/options.php:154
2405
  msgid "Taxonomies"
2406
  msgstr ""
2407
 
2408
  #: framework/extensions/trending/customizer.php:177,
2409
- #: build_tmp/build/framework/extensions/trending/customizer.php:177,
2410
  #: framework/extensions/widgets/widgets/ct-posts/options.php:155,
2411
- #: framework/extensions/widgets/widgets/ct-posts/options.php:174,
2412
- #: build_tmp/build/framework/extensions/widgets/widgets/ct-posts/options.php:155,
2413
- #: build_tmp/build/framework/extensions/widgets/widgets/ct-posts/options.php:174
2414
  msgid "Custom Query"
2415
  msgstr ""
2416
 
2417
  #: framework/extensions/trending/customizer.php:200,
2418
- #: build_tmp/build/framework/extensions/trending/customizer.php:200,
2419
- #: framework/extensions/widgets/widgets/ct-posts/options.php:243,
2420
- #: build_tmp/build/framework/extensions/widgets/widgets/ct-posts/options.php:243
2421
  msgid "Posts ID"
2422
  msgstr ""
2423
 
2424
  #: framework/extensions/trending/customizer.php:204,
2425
- #: build_tmp/build/framework/extensions/trending/customizer.php:204,
2426
- #: framework/extensions/widgets/widgets/ct-posts/options.php:247,
2427
- #: build_tmp/build/framework/extensions/widgets/widgets/ct-posts/options.php:247
2428
  msgid "Separate posts ID by comma. How to find the %spost ID%s."
2429
  msgstr ""
2430
 
2431
- #: framework/extensions/trending/customizer.php:220,
2432
- #: build_tmp/build/framework/extensions/trending/customizer.php:220
2433
  msgid "Trending From"
2434
  msgstr ""
2435
 
2436
  #: framework/extensions/trending/customizer.php:229,
2437
- #: build_tmp/build/framework/extensions/trending/customizer.php:229,
2438
- #: framework/extensions/widgets/widgets/ct-posts/options.php:213,
2439
- #: build_tmp/build/framework/extensions/widgets/widgets/ct-posts/options.php:213
2440
  msgid "All Time"
2441
  msgstr ""
2442
 
2443
- #: framework/extensions/trending/customizer.php:230,
2444
- #: build_tmp/build/framework/extensions/trending/customizer.php:230
2445
  msgid "Last 24 Hours"
2446
  msgstr ""
2447
 
2448
- #: framework/extensions/trending/customizer.php:231,
2449
- #: build_tmp/build/framework/extensions/trending/customizer.php:231
2450
  msgid "Last 7 Days"
2451
  msgstr ""
2452
 
2453
- #: framework/extensions/trending/customizer.php:232,
2454
- #: build_tmp/build/framework/extensions/trending/customizer.php:232
2455
  msgid "Last Month"
2456
  msgstr ""
2457
 
2458
- #: framework/extensions/trending/customizer.php:245,
2459
- #: build_tmp/build/framework/extensions/trending/customizer.php:245
2460
  msgid "Image Size"
2461
  msgstr ""
2462
 
2463
- #: framework/extensions/trending/customizer.php:267,
2464
- #: build_tmp/build/framework/extensions/trending/customizer.php:267
2465
  msgid "Container Visibility"
2466
  msgstr ""
2467
 
2468
- #: framework/extensions/trending/customizer.php:288,
2469
- #: build_tmp/build/framework/extensions/trending/customizer.php:288
2470
  msgid "Display Location"
2471
  msgstr ""
2472
 
2473
- #: framework/extensions/trending/customizer.php:296,
2474
- #: build_tmp/build/framework/extensions/trending/customizer.php:296
2475
  msgid "Before Footer"
2476
  msgstr ""
2477
 
2478
- #: framework/extensions/trending/customizer.php:301,
2479
- #: build_tmp/build/framework/extensions/trending/customizer.php:301
2480
  msgid "After Footer"
2481
  msgstr ""
2482
 
2483
- #: framework/extensions/trending/customizer.php:306,
2484
- #: build_tmp/build/framework/extensions/trending/customizer.php:306
2485
  msgid "After Header"
2486
  msgstr ""
2487
 
2488
  #: framework/extensions/trending/customizer.php:312,
2489
  #: framework/features/header/header-options.php:158,
2490
  #: framework/premium/extensions/shortcuts/customizer.php:763,
2491
- #: build_tmp/build/framework/extensions/trending/customizer.php:312,
2492
- #: build_tmp/build/framework/features/header/header-options.php:158,
2493
  #: framework/premium/features/content-blocks/options/archive.php:186,
2494
  #: framework/premium/features/content-blocks/options/header.php:142,
2495
  #: framework/premium/features/content-blocks/options/hook.php:236,
2496
  #: framework/premium/features/content-blocks/options/popup.php:297,
2497
- #: framework/premium/features/content-blocks/options/single.php:119,
2498
- #: build_tmp/build/framework/premium/extensions/shortcuts/customizer.php:763,
2499
- #: build_tmp/build/framework/premium/features/content-blocks/options/archive.php:186,
2500
- #: build_tmp/build/framework/premium/features/content-blocks/options/header.php:142,
2501
- #: build_tmp/build/framework/premium/features/content-blocks/options/hook.php:236,
2502
- #: build_tmp/build/framework/premium/features/content-blocks/options/popup.php:297,
2503
- #: build_tmp/build/framework/premium/features/content-blocks/options/single.php:119
2504
  #: framework/premium/extensions/sidebars/static/js/SettingsManager.js:49
2505
  #: framework/premium/static/js/footer/EditConditions.js:97
2506
  #: static/js/header/EditConditions.js:103
2507
  msgid "Display Conditions"
2508
  msgstr ""
2509
 
2510
- #: framework/extensions/trending/customizer.php:323,
2511
- #: build_tmp/build/framework/extensions/trending/customizer.php:323
2512
  msgid "Trending Block Display Conditions"
2513
  msgstr ""
2514
 
2515
- #: framework/extensions/trending/customizer.php:324,
2516
- #: build_tmp/build/framework/extensions/trending/customizer.php:324
2517
  msgid "Add one or more conditions to display the trending block."
2518
  msgstr ""
2519
 
2520
- #: framework/extensions/trending/customizer.php:339,
2521
- #: build_tmp/build/framework/extensions/trending/customizer.php:339
2522
  msgid "Posts Font"
2523
  msgstr ""
2524
 
2525
  #. translators: This is a brand name. Preferably to not be translated
2526
- #: framework/extensions/widgets/config.php:5,
2527
- #: build_tmp/build/framework/extensions/widgets/config.php:5
2528
  msgctxt "Extension Brand Name"
2529
  msgid "Widgets"
2530
  msgstr ""
2531
 
2532
- #: framework/extensions/widgets/config.php:6,
2533
- #: build_tmp/build/framework/extensions/widgets/config.php:6
2534
  msgid ""
2535
  "Add new handcrafted widgets to your sidebars! Social Network Icons, "
2536
  "Newsletter Subscribe, Contact Info, Custom Ads and even a Popular/Recent "
2537
  "Posts are the choices available."
2538
  msgstr ""
2539
 
2540
- #: framework/features/header/account-modal.php:37,
2541
- #: build_tmp/build/framework/features/header/account-modal.php:37
2542
  msgid "Close account modal"
2543
  msgstr ""
2544
 
2545
  #: framework/features/header/account-modal.php:49,
2546
- #: build_tmp/build/framework/features/header/account-modal.php:49,
2547
- #: framework/features/header/items/account/options.php:569,
2548
- #: framework/features/header/items/account/views/logout.php:7,
2549
- #: build_tmp/build/framework/features/header/items/account/options.php:569,
2550
- #: build_tmp/build/framework/features/header/items/account/views/logout.php:7
2551
  msgid "Login"
2552
  msgstr ""
2553
 
2554
- #: framework/features/header/account-modal.php:53,
2555
- #: build_tmp/build/framework/features/header/account-modal.php:53
2556
  msgid "Sign Up"
2557
  msgstr ""
2558
 
2559
- #: framework/features/header/account-modal.php:72,
2560
- #: build_tmp/build/framework/features/header/account-modal.php:72
2561
  msgid "Back to login"
2562
  msgstr ""
2563
 
2564
- #: framework/features/header/header-options.php:6,
2565
- #: build_tmp/build/framework/features/header/header-options.php:6
2566
  msgid "Sticky Functionality"
2567
  msgstr ""
2568
 
2569
- #: framework/features/header/header-options.php:32,
2570
- #: build_tmp/build/framework/features/header/header-options.php:32
2571
  msgid "Only Main Row"
2572
  msgstr ""
2573
 
2574
- #: framework/features/header/header-options.php:37,
2575
- #: build_tmp/build/framework/features/header/header-options.php:37
2576
  msgid "Top & Main Row"
2577
  msgstr ""
2578
 
2579
- #: framework/features/header/header-options.php:42,
2580
- #: build_tmp/build/framework/features/header/header-options.php:42
2581
  msgid "All Rows"
2582
  msgstr ""
2583
 
2584
- #: framework/features/header/header-options.php:47,
2585
- #: build_tmp/build/framework/features/header/header-options.php:47
2586
  msgid "Main & Bottom Row"
2587
  msgstr ""
2588
 
2589
- #: framework/features/header/header-options.php:52,
2590
- #: build_tmp/build/framework/features/header/header-options.php:52
2591
  msgid "Only Top Row"
2592
  msgstr ""
2593
 
2594
- #: framework/features/header/header-options.php:57,
2595
- #: build_tmp/build/framework/features/header/header-options.php:57
2596
  msgid "Only Bottom Row"
2597
  msgstr ""
2598
 
2599
- #: framework/features/header/header-options.php:63,
2600
- #: build_tmp/build/framework/features/header/header-options.php:63
2601
  msgid "Effect"
2602
  msgstr ""
2603
 
2604
- #: framework/features/header/header-options.php:72,
2605
- #: build_tmp/build/framework/features/header/header-options.php:72
2606
  msgid "Slide Down"
2607
  msgstr ""
2608
 
2609
- #: framework/features/header/header-options.php:73,
2610
- #: build_tmp/build/framework/features/header/header-options.php:73
2611
  msgid "Fade"
2612
  msgstr ""
2613
 
2614
- #: framework/features/header/header-options.php:74,
2615
- #: build_tmp/build/framework/features/header/header-options.php:74
2616
  msgid "Auto Hide/Show"
2617
  msgstr ""
2618
 
2619
- #: framework/features/header/header-options.php:79,
2620
- #: build_tmp/build/framework/features/header/header-options.php:79
2621
  msgid "Offset"
2622
  msgstr ""
2623
 
2624
  #: framework/features/header/header-options.php:92,
2625
- #: framework/features/header/header-options.php:174,
2626
- #: build_tmp/build/framework/features/header/header-options.php:92,
2627
- #: build_tmp/build/framework/features/header/header-options.php:174
2628
  msgid "Enable on"
2629
  msgstr ""
2630
 
2631
- #: framework/features/header/header-options.php:120,
2632
- #: build_tmp/build/framework/features/header/header-options.php:120
2633
  msgid "Transparent Functionality"
2634
  msgstr ""
2635
 
2636
- #: framework/premium/features/content-blocks.php:113,
2637
- #: build_tmp/build/framework/premium/features/content-blocks.php:113
2638
  msgid "Hide Hooks"
2639
  msgstr ""
2640
 
2641
- #: framework/premium/features/content-blocks.php:114,
2642
- #: build_tmp/build/framework/premium/features/content-blocks.php:114
2643
  msgid "Show Hooks"
2644
  msgstr ""
2645
 
2646
- #: framework/premium/features/content-blocks.php:125,
2647
- #: build_tmp/build/framework/premium/features/content-blocks.php:125
2648
  msgid "Hooks Locations"
2649
  msgstr ""
2650
 
2651
- #: framework/premium/features/content-blocks.php:170,
2652
- #: build_tmp/build/framework/premium/features/content-blocks.php:170
2653
  msgid "Hide Theme Hooks"
2654
  msgstr ""
2655
 
2656
- #: framework/premium/features/content-blocks.php:171,
2657
- #: build_tmp/build/framework/premium/features/content-blocks.php:171
2658
  msgid "Show Theme Hooks"
2659
  msgstr ""
2660
 
2661
- #: framework/premium/features/content-blocks.php:179,
2662
- #: build_tmp/build/framework/premium/features/content-blocks.php:179
2663
  msgid "Hide WooCommerce Hooks"
2664
  msgstr ""
2665
 
2666
- #: framework/premium/features/content-blocks.php:180,
2667
- #: build_tmp/build/framework/premium/features/content-blocks.php:180
2668
  msgid "Show WooCommerce Hooks"
2669
  msgstr ""
2670
 
2671
- #: framework/premium/features/content-blocks.php:564,
2672
- #: framework/premium/features/content-blocks.php:570,
2673
- #: build_tmp/build/framework/premium/features/content-blocks.php:564,
2674
- #: build_tmp/build/framework/premium/features/content-blocks.php:570
2675
  msgid "Content Blocks"
2676
  msgstr ""
2677
 
2678
- #: framework/premium/features/content-blocks.php:565,
2679
- #: framework/premium/extensions/mega-menu/options.php:333,
2680
- #: build_tmp/build/framework/premium/features/content-blocks.php:565,
2681
- #: build_tmp/build/framework/premium/extensions/mega-menu/options.php:333
2682
  msgid "Content Block"
2683
  msgstr ""
2684
 
2685
- #: framework/premium/features/content-blocks.php:566,
2686
- #: build_tmp/build/framework/premium/features/content-blocks.php:566
2687
  msgid "Add New"
2688
  msgstr ""
2689
 
2690
- #: framework/premium/features/content-blocks.php:567,
2691
- #: build_tmp/build/framework/premium/features/content-blocks.php:567
2692
  msgid "Add New Content Block"
2693
  msgstr ""
2694
 
2695
- #: framework/premium/features/content-blocks.php:568,
2696
- #: build_tmp/build/framework/premium/features/content-blocks.php:568
2697
  msgid "Edit Content Block"
2698
  msgstr ""
2699
 
2700
- #: framework/premium/features/content-blocks.php:569,
2701
- #: build_tmp/build/framework/premium/features/content-blocks.php:569
2702
  #: framework/premium/static/js/hooks/CreateHook.js:33
2703
  msgid "New Content Block"
2704
  msgstr ""
2705
 
2706
- #: framework/premium/features/content-blocks.php:571,
2707
- #: build_tmp/build/framework/premium/features/content-blocks.php:571
2708
  msgid "View Content Block"
2709
  msgstr ""
2710
 
2711
- #: framework/premium/features/content-blocks.php:572,
2712
- #: build_tmp/build/framework/premium/features/content-blocks.php:572
2713
  msgid "Search Content Blocks"
2714
  msgstr ""
2715
 
2716
- #: framework/premium/features/content-blocks.php:573,
2717
- #: build_tmp/build/framework/premium/features/content-blocks.php:573
2718
  msgid "Nothing found"
2719
  msgstr ""
2720
 
2721
- #: framework/premium/features/content-blocks.php:574,
2722
- #: build_tmp/build/framework/premium/features/content-blocks.php:574
2723
  msgid "Nothing found in Trash"
2724
  msgstr ""
2725
 
2726
- #: framework/premium/features/content-blocks.php:863,
2727
- #: build_tmp/build/framework/premium/features/content-blocks.php:863
2728
  msgid "Close popup"
2729
  msgstr ""
2730
 
2731
- #: framework/premium/features/media-meta-fields.php:29,
2732
- #: build_tmp/build/framework/premium/features/media-meta-fields.php:29
2733
  msgid "Attachment Video"
2734
  msgstr ""
2735
 
2736
- #: framework/premium/features/media-meta-fields.php:33,
2737
- #: build_tmp/build/framework/premium/features/media-meta-fields.php:33
2738
  msgid "Video URL"
2739
  msgstr ""
2740
 
2741
  #. translators: %s: Link to wordpress.org article
2742
- #: framework/premium/features/media-meta-fields.php:39,
2743
- #: build_tmp/build/framework/premium/features/media-meta-fields.php:39
2744
  msgid ""
2745
  "Enter a <a href=\"%s\" target=\"_blank\">valid media URL</a> or upload an "
2746
  "MP4 file into the media library."
2747
  msgstr ""
2748
 
2749
- #: framework/premium/features/media-meta-fields.php:42,
2750
- #: build_tmp/build/framework/premium/features/media-meta-fields.php:42
2751
  msgid "Upload"
2752
  msgstr ""
2753
 
2754
- #: framework/premium/features/media-meta-fields.php:44,
2755
- #: build_tmp/build/framework/premium/features/media-meta-fields.php:44
2756
  msgid "Upload Video (MP4 File)"
2757
  msgstr ""
2758
 
2759
  #: framework/premium/features/premium-footer.php:14,
2760
- #: framework/premium/features/premium-footer.php:28,
2761
- #: build_tmp/build/framework/premium/features/premium-footer.php:14,
2762
- #: build_tmp/build/framework/premium/features/premium-footer.php:28
2763
  msgid "Footer Menu 1"
2764
  msgstr ""
2765
 
2766
  #: framework/premium/features/premium-footer.php:29,
2767
- #: build_tmp/build/framework/premium/features/premium-footer.php:29,
2768
- #: framework/premium/features/premium-footer/items/menu-secondary/config.php:4,
2769
- #: build_tmp/build/framework/premium/features/premium-footer/items/menu-secondary/config.php:4
2770
  msgid "Footer Menu 2"
2771
  msgstr ""
2772
 
2773
- #: framework/premium/features/premium-header.php:49,
2774
- #: build_tmp/build/framework/premium/features/premium-header.php:49
2775
  msgid "Header Menu 3"
2776
  msgstr ""
2777
 
2778
- #: framework/premium/features/premium-header.php:50,
2779
- #: build_tmp/build/framework/premium/features/premium-header.php:50
2780
  msgid "Mobile Menu 1"
2781
  msgstr ""
2782
 
2783
- #: framework/premium/features/premium-header.php:51,
2784
- #: build_tmp/build/framework/premium/features/premium-header.php:51
2785
  msgid "Mobile Menu 2"
2786
  msgstr ""
2787
 
2788
- #: framework/premium/features/premium-header.php:142,
2789
- #: build_tmp/build/framework/premium/features/premium-header.php:142
2790
  msgid "Header Widget Area "
2791
  msgstr ""
2792
 
@@ -2796,11 +1956,6 @@ msgstr ""
2796
  #: framework/premium/features/premium-header.php:333,
2797
  #: framework/premium/features/premium-header.php:355,
2798
  #: framework/premium/extensions/mega-menu/options.php:422,
2799
- #: build_tmp/build/framework/premium/features/premium-header.php:198,
2800
- #: build_tmp/build/framework/premium/features/premium-header.php:274,
2801
- #: build_tmp/build/framework/premium/features/premium-header.php:294,
2802
- #: build_tmp/build/framework/premium/features/premium-header.php:333,
2803
- #: build_tmp/build/framework/premium/features/premium-header.php:355,
2804
  #: framework/extensions/widgets/widgets/ct-contact-info/options.php:112,
2805
  #: framework/extensions/widgets/widgets/ct-contact-info/options.php:174,
2806
  #: framework/extensions/widgets/widgets/ct-contact-info/options.php:234,
@@ -2808,13 +1963,12 @@ msgstr ""
2808
  #: framework/extensions/widgets/widgets/ct-contact-info/options.php:354,
2809
  #: framework/extensions/widgets/widgets/ct-contact-info/options.php:414,
2810
  #: framework/extensions/widgets/widgets/ct-contact-info/options.php:474,
2811
- #: framework/features/header/items/account/options.php:140,
2812
- #: framework/features/header/items/account/options.php:189,
2813
- #: framework/features/header/items/account/options.php:400,
2814
- #: framework/features/header/items/account/options.php:431,
2815
  #: framework/premium/extensions/post-types-extra/includes/dynamic-data.php:447,
2816
  #: framework/premium/extensions/post-types-extra/includes/estimated-read-time.php:18,
2817
- #: build_tmp/build/framework/premium/extensions/mega-menu/options.php:422,
2818
  #: framework/premium/extensions/woocommerce-extra/header-items/wish-list/options.php:28,
2819
  #: framework/premium/features/premium-header/items/contacts/options.php:65,
2820
  #: framework/premium/features/premium-header/items/contacts/options.php:102,
@@ -2823,88 +1977,44 @@ msgstr ""
2823
  #: framework/premium/features/premium-header/items/contacts/options.php:210,
2824
  #: framework/premium/features/premium-header/items/contacts/options.php:246,
2825
  #: framework/premium/features/premium-header/items/contacts/options.php:282,
2826
- #: framework/premium/features/premium-header/items/search-input/options.php:76,
2827
- #: build_tmp/build/framework/extensions/widgets/widgets/ct-contact-info/options.php:112,
2828
- #: build_tmp/build/framework/extensions/widgets/widgets/ct-contact-info/options.php:174,
2829
- #: build_tmp/build/framework/extensions/widgets/widgets/ct-contact-info/options.php:234,
2830
- #: build_tmp/build/framework/extensions/widgets/widgets/ct-contact-info/options.php:294,
2831
- #: build_tmp/build/framework/extensions/widgets/widgets/ct-contact-info/options.php:354,
2832
- #: build_tmp/build/framework/extensions/widgets/widgets/ct-contact-info/options.php:414,
2833
- #: build_tmp/build/framework/extensions/widgets/widgets/ct-contact-info/options.php:474,
2834
- #: build_tmp/build/framework/features/header/items/account/options.php:140,
2835
- #: build_tmp/build/framework/features/header/items/account/options.php:189,
2836
- #: build_tmp/build/framework/features/header/items/account/options.php:400,
2837
- #: build_tmp/build/framework/features/header/items/account/options.php:431,
2838
- #: build_tmp/build/framework/premium/extensions/post-types-extra/includes/dynamic-data.php:447,
2839
- #: build_tmp/build/framework/premium/extensions/post-types-extra/includes/estimated-read-time.php:18,
2840
- #: build_tmp/build/framework/premium/extensions/woocommerce-extra/header-items/wish-list/options.php:28,
2841
- #: build_tmp/build/framework/premium/features/premium-header/items/contacts/options.php:65,
2842
- #: build_tmp/build/framework/premium/features/premium-header/items/contacts/options.php:102,
2843
- #: build_tmp/build/framework/premium/features/premium-header/items/contacts/options.php:138,
2844
- #: build_tmp/build/framework/premium/features/premium-header/items/contacts/options.php:174,
2845
- #: build_tmp/build/framework/premium/features/premium-header/items/contacts/options.php:210,
2846
- #: build_tmp/build/framework/premium/features/premium-header/items/contacts/options.php:246,
2847
- #: build_tmp/build/framework/premium/features/premium-header/items/contacts/options.php:282,
2848
- #: build_tmp/build/framework/premium/features/premium-header/items/search-input/options.php:76
2849
  msgid "Icon"
2850
  msgstr ""
2851
 
2852
  #: framework/premium/features/premium-header.php:212,
2853
  #: framework/premium/extensions/mega-menu/options.php:436,
2854
  #: framework/premium/extensions/woocommerce-extra/extension.php:381,
2855
- #: build_tmp/build/framework/premium/features/premium-header.php:212,
2856
  #: framework/extensions/widgets/widgets/ct-contact-info/options.php:489,
2857
  #: framework/extensions/widgets/widgets/ct-socials/options.php:92,
2858
- #: build_tmp/build/framework/premium/extensions/mega-menu/options.php:436,
2859
- #: build_tmp/build/framework/premium/extensions/woocommerce-extra/extension.php:373,
2860
- #: framework/premium/features/premium-header/items/contacts/options.php:310,
2861
- #: build_tmp/build/framework/extensions/widgets/widgets/ct-contact-info/options.php:489,
2862
- #: build_tmp/build/framework/extensions/widgets/widgets/ct-socials/options.php:92,
2863
- #: build_tmp/build/framework/premium/features/premium-header/items/contacts/options.php:310
2864
  msgid "Icons Size"
2865
  msgstr ""
2866
 
2867
  #: framework/premium/features/premium-header.php:224,
2868
- #: framework/premium/extensions/mega-menu/options.php:458,
2869
- #: build_tmp/build/framework/premium/features/premium-header.php:224,
2870
- #: build_tmp/build/framework/premium/extensions/mega-menu/options.php:458
2871
  msgid "Icon Position"
2872
  msgstr ""
2873
 
2874
  #: framework/premium/features/premium-header.php:231,
2875
  #: framework/premium/extensions/mega-menu/options.php:465,
2876
  #: framework/premium/extensions/shortcuts/customizer.php:659,
2877
- #: build_tmp/build/framework/premium/features/premium-header.php:231,
2878
- #: framework/features/header/items/account/options.php:311,
2879
- #: framework/features/header/items/account/options.php:553,
2880
- #: build_tmp/build/framework/premium/extensions/mega-menu/options.php:465,
2881
- #: build_tmp/build/framework/premium/extensions/shortcuts/customizer.php:659,
2882
- #: framework/premium/extensions/woocommerce-extra/header-items/wish-list/options.php:130,
2883
- #: build_tmp/build/framework/features/header/items/account/options.php:311,
2884
- #: build_tmp/build/framework/features/header/items/account/options.php:553,
2885
- #: build_tmp/build/framework/premium/extensions/woocommerce-extra/header-items/wish-list/options.php:130
2886
  msgid "Left"
2887
  msgstr ""
2888
 
2889
  #: framework/premium/features/premium-header.php:232,
2890
  #: framework/premium/extensions/mega-menu/options.php:466,
2891
  #: framework/premium/extensions/shortcuts/customizer.php:660,
2892
- #: build_tmp/build/framework/premium/features/premium-header.php:232,
2893
- #: framework/features/header/items/account/options.php:312,
2894
- #: framework/features/header/items/account/options.php:554,
2895
- #: build_tmp/build/framework/premium/extensions/mega-menu/options.php:466,
2896
- #: build_tmp/build/framework/premium/extensions/shortcuts/customizer.php:660,
2897
- #: framework/premium/extensions/woocommerce-extra/header-items/wish-list/options.php:131,
2898
- #: build_tmp/build/framework/features/header/items/account/options.php:312,
2899
- #: build_tmp/build/framework/features/header/items/account/options.php:554,
2900
- #: build_tmp/build/framework/premium/extensions/woocommerce-extra/header-items/wish-list/options.php:131
2901
  msgid "Right"
2902
  msgstr ""
2903
 
2904
  #: framework/extensions/newsletter-subscribe/ct-newsletter-subscribe/options.php:17,
2905
- #: framework/extensions/newsletter-subscribe/ct-newsletter-subscribe/view.php:12,
2906
- #: build_tmp/build/framework/extensions/newsletter-subscribe/ct-newsletter-subscribe/options.php:17,
2907
- #: build_tmp/build/framework/extensions/newsletter-subscribe/ct-newsletter-subscribe/view.php:12
2908
  msgid "Newsletter"
2909
  msgstr ""
2910
 
@@ -2913,96 +2023,71 @@ msgstr ""
2913
  #: framework/premium/extensions/shortcuts/customizer.php:889,
2914
  #: framework/extensions/widgets/widgets/ct-contact-info/options.php:24,
2915
  #: framework/extensions/widgets/widgets/ct-quote/options.php:31,
2916
- #: framework/features/header/items/account/options.php:329,
2917
- #: build_tmp/build/framework/extensions/newsletter-subscribe/ct-newsletter-subscribe/options.php:30,
2918
- #: build_tmp/build/framework/premium/extensions/mega-menu/options.php:493,
2919
- #: build_tmp/build/framework/premium/extensions/shortcuts/customizer.php:889,
2920
- #: build_tmp/build/framework/extensions/widgets/widgets/ct-contact-info/options.php:24,
2921
- #: build_tmp/build/framework/extensions/widgets/widgets/ct-quote/options.php:31,
2922
- #: build_tmp/build/framework/features/header/items/account/options.php:329
2923
  msgid "Text"
2924
  msgstr ""
2925
 
2926
  #: framework/extensions/newsletter-subscribe/ct-newsletter-subscribe/options.php:34,
2927
  #: framework/extensions/widgets/widgets/ct-contact-info/options.php:27,
2928
- #: framework/extensions/widgets/widgets/ct-quote/options.php:34,
2929
- #: build_tmp/build/framework/extensions/newsletter-subscribe/ct-newsletter-subscribe/options.php:34,
2930
- #: build_tmp/build/framework/extensions/widgets/widgets/ct-contact-info/options.php:27,
2931
- #: build_tmp/build/framework/extensions/widgets/widgets/ct-quote/options.php:34
2932
  msgid "You can add here some arbitrary HTML code."
2933
  msgstr ""
2934
 
2935
- #: framework/extensions/newsletter-subscribe/ct-newsletter-subscribe/options.php:114,
2936
- #: build_tmp/build/framework/extensions/newsletter-subscribe/ct-newsletter-subscribe/options.php:114
2937
  msgid "Container Type"
2938
  msgstr ""
2939
 
2940
- #: framework/extensions/newsletter-subscribe/ct-newsletter-subscribe/options.php:121,
2941
- #: build_tmp/build/framework/extensions/newsletter-subscribe/ct-newsletter-subscribe/options.php:121
2942
  msgid "Boxed"
2943
  msgstr ""
2944
 
2945
- #: framework/extensions/newsletter-subscribe/ct-newsletter-subscribe/options.php:127,
2946
- #: build_tmp/build/framework/extensions/newsletter-subscribe/ct-newsletter-subscribe/options.php:127
2947
  msgid "Content Alignment"
2948
  msgstr ""
2949
 
2950
- #: framework/extensions/newsletter-subscribe/ct-newsletter-subscribe/widget.php:13,
2951
- #: build_tmp/build/framework/extensions/newsletter-subscribe/ct-newsletter-subscribe/widget.php:13
2952
  msgid "Newsletter Subscribe"
2953
  msgstr ""
2954
 
2955
- #: framework/extensions/newsletter-subscribe/ct-newsletter-subscribe/widget.php:14,
2956
- #: build_tmp/build/framework/extensions/newsletter-subscribe/ct-newsletter-subscribe/widget.php:14
2957
  msgid "Newsletter subscribe form"
2958
  msgstr ""
2959
 
2960
- #: framework/extensions/newsletter-subscribe/includes/BlocksyMailerliteManager.php:99,
2961
- #: build_tmp/build/framework/extensions/newsletter-subscribe/includes/BlocksyMailerliteManager.php:99
2962
  msgid "Thank you for subscribing to our newsletter!"
2963
  msgstr ""
2964
 
2965
- #: framework/extensions/product-reviews/views/single-top.php:238,
2966
- #: build_tmp/build/framework/extensions/product-reviews/views/single-top.php:238
2967
  msgid "Specs"
2968
  msgstr ""
2969
 
2970
  #: framework/features/header/modal/login.php:28,
2971
- #: framework/features/header/modal/lostpassword.php:5,
2972
- #: build_tmp/build/framework/features/header/modal/login.php:28,
2973
- #: build_tmp/build/framework/features/header/modal/lostpassword.php:5
2974
  msgid "Username or Email Address"
2975
  msgstr ""
2976
 
2977
  #: framework/features/header/modal/login.php:33,
2978
- #: framework/features/header/modal/register.php:42,
2979
- #: build_tmp/build/framework/features/header/modal/login.php:33,
2980
- #: build_tmp/build/framework/features/header/modal/register.php:42
2981
  msgid "Password"
2982
  msgstr ""
2983
 
2984
- #: framework/features/header/modal/login.php:40,
2985
- #: build_tmp/build/framework/features/header/modal/login.php:40
2986
  msgid "Remember Me"
2987
  msgstr ""
2988
 
2989
- #: framework/features/header/modal/login.php:44,
2990
- #: build_tmp/build/framework/features/header/modal/login.php:44
2991
  msgid "Forgot Password?"
2992
  msgstr ""
2993
 
2994
- #: framework/features/header/modal/login.php:60,
2995
- #: build_tmp/build/framework/features/header/modal/login.php:60
2996
  msgid "Log In"
2997
  msgstr ""
2998
 
2999
- #: framework/features/header/modal/lostpassword.php:13,
3000
- #: build_tmp/build/framework/features/header/modal/lostpassword.php:13
3001
  msgid "Get New Password"
3002
  msgstr ""
3003
 
3004
- #: framework/features/header/modal/register.php:30,
3005
- #: build_tmp/build/framework/features/header/modal/register.php:30
3006
  msgid "Username"
3007
  msgstr ""
3008
 
@@ -3011,35 +2096,25 @@ msgstr ""
3011
  #: framework/premium/extensions/shortcuts/customizer.php:153,
3012
  #: framework/extensions/widgets/widgets/ct-contact-info/options.php:368,
3013
  #: framework/premium/extensions/shortcuts/views/bar.php:45,
3014
- #: build_tmp/build/framework/features/header/modal/register.php:36,
3015
- #: build_tmp/build/framework/premium/extensions/shortcuts/customizer.php:130,
3016
- #: build_tmp/build/framework/premium/extensions/shortcuts/customizer.php:153,
3017
- #: framework/premium/features/premium-header/items/contacts/options.php:221,
3018
- #: build_tmp/build/framework/extensions/widgets/widgets/ct-contact-info/options.php:368,
3019
- #: build_tmp/build/framework/premium/extensions/shortcuts/views/bar.php:45,
3020
- #: build_tmp/build/framework/premium/features/premium-header/items/contacts/options.php:221
3021
  msgid "Email"
3022
  msgstr ""
3023
 
3024
- #: framework/features/header/modal/register.php:58,
3025
- #: build_tmp/build/framework/features/header/modal/register.php:58
3026
  msgid "Registration confirmation will be emailed to you"
3027
  msgstr ""
3028
 
3029
- #: framework/features/header/modal/register.php:63,
3030
- #: build_tmp/build/framework/features/header/modal/register.php:63
3031
  msgid "Register"
3032
  msgstr ""
3033
 
3034
  #. translators: This is a brand name. Preferably to not be translated
3035
- #: framework/premium/extensions/adobe-typekit/config.php:5,
3036
- #: build_tmp/build/framework/premium/extensions/adobe-typekit/config.php:5
3037
  msgctxt "Extension Brand Name"
3038
  msgid "Adobe Fonts"
3039
  msgstr ""
3040
 
3041
- #: framework/premium/extensions/adobe-typekit/config.php:6,
3042
- #: build_tmp/build/framework/premium/extensions/adobe-typekit/config.php:6
3043
  msgid ""
3044
  "Connect your Adobe Fonts project and use the selected fonts throughout "
3045
  "Blocksy and your favorite page builder."
@@ -3049,114 +2124,89 @@ msgstr ""
3049
  #: framework/premium/extensions/code-snippets/config.php:5,
3050
  #: framework/premium/extensions/code-snippets/extension.php:24,
3051
  #: framework/premium/extensions/code-snippets/extension.php:71,
3052
- #: framework/premium/extensions/code-snippets/extension.php:114,
3053
- #: build_tmp/build/framework/premium/extensions/code-snippets/config.php:5,
3054
- #: build_tmp/build/framework/premium/extensions/code-snippets/extension.php:24,
3055
- #: build_tmp/build/framework/premium/extensions/code-snippets/extension.php:71,
3056
- #: build_tmp/build/framework/premium/extensions/code-snippets/extension.php:114
3057
  msgctxt "Extension Brand Name"
3058
  msgid "Custom Code Snippets"
3059
  msgstr ""
3060
 
3061
- #: framework/premium/extensions/code-snippets/config.php:6,
3062
- #: build_tmp/build/framework/premium/extensions/code-snippets/config.php:6
3063
  msgid ""
3064
  "Inject custom code snippets throughout your website. The extension works "
3065
  "globally or on a per post/page basis."
3066
  msgstr ""
3067
 
3068
  #: framework/premium/extensions/code-snippets/extension.php:31,
3069
- #: framework/premium/extensions/code-snippets/extension.php:78,
3070
- #: build_tmp/build/framework/premium/extensions/code-snippets/extension.php:31,
3071
- #: build_tmp/build/framework/premium/extensions/code-snippets/extension.php:78
3072
  msgid "Header scripts"
3073
  msgstr ""
3074
 
3075
  #: framework/premium/extensions/code-snippets/extension.php:42,
3076
  #: framework/premium/extensions/code-snippets/extension.php:89,
3077
- #: framework/premium/extensions/code-snippets/extension.php:134,
3078
- #: build_tmp/build/framework/premium/extensions/code-snippets/extension.php:42,
3079
- #: build_tmp/build/framework/premium/extensions/code-snippets/extension.php:89,
3080
- #: build_tmp/build/framework/premium/extensions/code-snippets/extension.php:134
3081
  msgid "After body open scripts"
3082
  msgstr ""
3083
 
3084
  #: framework/premium/extensions/code-snippets/extension.php:53,
3085
  #: framework/premium/extensions/code-snippets/extension.php:100,
3086
- #: framework/premium/extensions/code-snippets/extension.php:145,
3087
- #: build_tmp/build/framework/premium/extensions/code-snippets/extension.php:53,
3088
- #: build_tmp/build/framework/premium/extensions/code-snippets/extension.php:100,
3089
- #: build_tmp/build/framework/premium/extensions/code-snippets/extension.php:145
3090
  msgid "Footer scripts"
3091
  msgstr ""
3092
 
3093
- #: framework/premium/extensions/code-snippets/extension.php:123,
3094
- #: build_tmp/build/framework/premium/extensions/code-snippets/extension.php:123
3095
  msgid "Header scripts2"
3096
  msgstr ""
3097
 
3098
- #: framework/premium/extensions/code-snippets/readme.php:4,
3099
- #: build_tmp/build/framework/premium/extensions/code-snippets/readme.php:4
3100
  msgid ""
3101
  "After activating the Custom Code Snippets extension you will have two ways "
3102
  "to manage your snippets:"
3103
  msgstr ""
3104
 
3105
- #: framework/premium/extensions/code-snippets/readme.php:9,
3106
- #: build_tmp/build/framework/premium/extensions/code-snippets/readme.php:9
3107
  msgid "Globally"
3108
  msgstr ""
3109
 
3110
- #: framework/premium/extensions/code-snippets/readme.php:13,
3111
- #: build_tmp/build/framework/premium/extensions/code-snippets/readme.php:13
3112
  msgid "Navigate to %s and place there your header, body or footer scripts."
3113
  msgstr ""
3114
 
3115
- #: framework/premium/extensions/code-snippets/readme.php:16,
3116
- #: build_tmp/build/framework/premium/extensions/code-snippets/readme.php:16
3117
  msgid "Customizer ➝ Custom Code Snippets"
3118
  msgstr ""
3119
 
3120
- #: framework/premium/extensions/code-snippets/readme.php:24,
3121
- #: build_tmp/build/framework/premium/extensions/code-snippets/readme.php:24
3122
  msgid "Per page/post"
3123
  msgstr ""
3124
 
3125
- #: framework/premium/extensions/code-snippets/readme.php:28,
3126
- #: build_tmp/build/framework/premium/extensions/code-snippets/readme.php:28
3127
  msgid ""
3128
  "Edit your page or post, click on %s, scroll down and you will see the %2s "
3129
  "panel."
3130
  msgstr ""
3131
 
3132
- #: framework/premium/extensions/code-snippets/readme.php:32,
3133
- #: build_tmp/build/framework/premium/extensions/code-snippets/readme.php:32
3134
  msgid "%s Page Settings"
3135
  msgstr ""
3136
 
3137
  #. translators: This is a brand name. Preferably to not be translated
3138
- #: framework/premium/extensions/custom-fonts/config.php:5,
3139
- #: build_tmp/build/framework/premium/extensions/custom-fonts/config.php:5
3140
  msgctxt "Extension Brand Name"
3141
  msgid "Custom Fonts"
3142
  msgstr ""
3143
 
3144
- #: framework/premium/extensions/custom-fonts/config.php:6,
3145
- #: build_tmp/build/framework/premium/extensions/custom-fonts/config.php:6
3146
  msgid ""
3147
  "Upload an unlimited number of custom fonts or variable fonts and use them "
3148
  "throughout Blocksy and your favorite page builder."
3149
  msgstr ""
3150
 
3151
  #. translators: This is a brand name. Preferably to not be translated
3152
- #: framework/premium/extensions/local-google-fonts/config.php:5,
3153
- #: build_tmp/build/framework/premium/extensions/local-google-fonts/config.php:5
3154
  msgctxt "Extension Brand Name"
3155
  msgid "Local Google Fonts"
3156
  msgstr ""
3157
 
3158
- #: framework/premium/extensions/local-google-fonts/config.php:6,
3159
- #: build_tmp/build/framework/premium/extensions/local-google-fonts/config.php:6
3160
  msgid ""
3161
  "Serve your chosen Google Fonts from your own web server. This will increase "
3162
  "the loading speed and makes sure your website complies with the privacy "
@@ -3164,14 +2214,12 @@ msgid ""
3164
  msgstr ""
3165
 
3166
  #. translators: This is a brand name. Preferably to not be translated
3167
- #: framework/premium/extensions/mega-menu/config.php:5,
3168
- #: build_tmp/build/framework/premium/extensions/mega-menu/config.php:5
3169
  msgctxt "Extension Brand Name"
3170
  msgid "Advanced Menu"
3171
  msgstr ""
3172
 
3173
- #: framework/premium/extensions/mega-menu/config.php:6,
3174
- #: build_tmp/build/framework/premium/extensions/mega-menu/config.php:6
3175
  msgid ""
3176
  "Create beautiful personalised menus that set your website apart from the "
3177
  "others. Add icons and badges to your entries and even add Content Blocks "
@@ -3179,114 +2227,88 @@ msgid ""
3179
  msgstr ""
3180
 
3181
  #: framework/premium/extensions/mega-menu/config.php:10,
3182
- #: framework/premium/extensions/shortcuts/config.php:13,
3183
- #: build_tmp/build/framework/premium/extensions/mega-menu/config.php:10,
3184
- #: build_tmp/build/framework/premium/extensions/shortcuts/config.php:13
3185
  #: framework/extensions/newsletter-subscribe/dashboard-static/js/hooks/useActivationWithRequirements.js:60
3186
  #: framework/extensions/product-reviews/static/js/EditSettings.js:30
3187
  #: framework/premium/extensions/white-label/dashboard-static/js/EditSettings.js:96
3188
  msgid "Configure"
3189
  msgstr ""
3190
 
3191
- #: framework/premium/extensions/mega-menu/extension.php:99,
3192
- #: build_tmp/build/framework/premium/extensions/mega-menu/extension.php:99
3193
  msgid "Menu Item Settings"
3194
  msgstr ""
3195
 
3196
- #: framework/premium/extensions/mega-menu/extension.php:257,
3197
- #: build_tmp/build/framework/premium/extensions/mega-menu/extension.php:257
3198
  msgid "New"
3199
  msgstr ""
3200
 
3201
  #: framework/premium/extensions/mega-menu/options.php:16,
3202
- #: framework/premium/extensions/mega-menu/options.php:530,
3203
- #: build_tmp/build/framework/premium/extensions/mega-menu/options.php:16,
3204
- #: build_tmp/build/framework/premium/extensions/mega-menu/options.php:530
3205
  msgid "Mega Menu Settings"
3206
  msgstr ""
3207
 
3208
- #: framework/premium/extensions/mega-menu/options.php:27,
3209
- #: build_tmp/build/framework/premium/extensions/mega-menu/options.php:27
3210
  msgid "Dropdown Width"
3211
  msgstr ""
3212
 
3213
  #: framework/premium/extensions/mega-menu/options.php:35,
3214
- #: framework/premium/extensions/mega-menu/options.php:48,
3215
- #: build_tmp/build/framework/premium/extensions/mega-menu/options.php:35,
3216
- #: build_tmp/build/framework/premium/extensions/mega-menu/options.php:48
3217
  msgid "Content Width"
3218
  msgstr ""
3219
 
3220
  #: framework/premium/extensions/mega-menu/options.php:36,
3221
- #: framework/premium/extensions/mega-menu/options.php:57,
3222
- #: build_tmp/build/framework/premium/extensions/mega-menu/options.php:36,
3223
- #: build_tmp/build/framework/premium/extensions/mega-menu/options.php:57
3224
  msgid "Full Width"
3225
  msgstr ""
3226
 
3227
  #: framework/premium/extensions/mega-menu/options.php:37,
3228
- #: framework/premium/features/content-blocks/options/archive.php:59,
3229
- #: build_tmp/build/framework/premium/extensions/mega-menu/options.php:37,
3230
- #: build_tmp/build/framework/premium/features/content-blocks/options/archive.php:59
3231
  msgid "Custom Width"
3232
  msgstr ""
3233
 
3234
- #: framework/premium/extensions/mega-menu/options.php:56,
3235
- #: build_tmp/build/framework/premium/extensions/mega-menu/options.php:56
3236
  msgid "Default Width"
3237
  msgstr ""
3238
 
3239
- #: framework/premium/extensions/mega-menu/options.php:85,
3240
- #: build_tmp/build/framework/premium/extensions/mega-menu/options.php:85
3241
  msgid "Columns"
3242
  msgstr ""
3243
 
3244
- #: framework/premium/extensions/mega-menu/options.php:320,
3245
- #: build_tmp/build/framework/premium/extensions/mega-menu/options.php:320
3246
  msgid "Custom Content"
3247
  msgstr ""
3248
 
3249
- #: framework/premium/extensions/mega-menu/options.php:324,
3250
- #: build_tmp/build/framework/premium/extensions/mega-menu/options.php:324
3251
  msgid "Content Type"
3252
  msgstr ""
3253
 
3254
- #: framework/premium/extensions/mega-menu/options.php:331,
3255
- #: build_tmp/build/framework/premium/extensions/mega-menu/options.php:331
3256
  msgid "Default (Menu Item)"
3257
  msgstr ""
3258
 
3259
- #: framework/premium/extensions/mega-menu/options.php:332,
3260
- #: build_tmp/build/framework/premium/extensions/mega-menu/options.php:332
3261
  msgid "Custom Text"
3262
  msgstr ""
3263
 
3264
  #: framework/premium/extensions/mega-menu/options.php:364,
3265
- #: framework/premium/extensions/mega-menu/options.php:371,
3266
- #: build_tmp/build/framework/premium/extensions/mega-menu/options.php:364,
3267
- #: build_tmp/build/framework/premium/extensions/mega-menu/options.php:371
3268
  msgid "Select Content Block"
3269
  msgstr ""
3270
 
3271
- #: framework/premium/extensions/mega-menu/options.php:367,
3272
- #: build_tmp/build/framework/premium/extensions/mega-menu/options.php:367
3273
  msgid "Create a new content Block/Hook"
3274
  msgstr ""
3275
 
3276
  #: framework/premium/extensions/mega-menu/options.php:394,
3277
- #: framework/premium/extensions/mega-menu/options.php:710,
3278
- #: build_tmp/build/framework/premium/extensions/mega-menu/options.php:394,
3279
- #: build_tmp/build/framework/premium/extensions/mega-menu/options.php:710
3280
  msgid "Item Label Settings"
3281
  msgstr ""
3282
 
3283
- #: framework/premium/extensions/mega-menu/options.php:399,
3284
- #: build_tmp/build/framework/premium/extensions/mega-menu/options.php:399
3285
  msgid "Item Label"
3286
  msgstr ""
3287
 
3288
- #: framework/premium/extensions/mega-menu/options.php:407,
3289
- #: build_tmp/build/framework/premium/extensions/mega-menu/options.php:407
3290
  msgid "Enabled"
3291
  msgstr ""
3292
 
@@ -3295,140 +2317,104 @@ msgstr ""
3295
  #: framework/premium/features/content-blocks/options/archive.php:160,
3296
  #: framework/premium/features/content-blocks/options/header.php:108,
3297
  #: framework/premium/features/content-blocks/options/hook.php:113,
3298
- #: framework/premium/features/content-blocks/options/single.php:81,
3299
- #: build_tmp/build/framework/premium/extensions/mega-menu/options.php:408,
3300
- #: build_tmp/build/framework/premium/features/content-blocks/options/404.php:110,
3301
- #: build_tmp/build/framework/premium/features/content-blocks/options/archive.php:160,
3302
- #: build_tmp/build/framework/premium/features/content-blocks/options/header.php:108,
3303
- #: build_tmp/build/framework/premium/features/content-blocks/options/hook.php:113,
3304
- #: build_tmp/build/framework/premium/features/content-blocks/options/single.php:81
3305
  msgid "Disabled"
3306
  msgstr ""
3307
 
3308
- #: framework/premium/extensions/mega-menu/options.php:409,
3309
- #: build_tmp/build/framework/premium/extensions/mega-menu/options.php:409
3310
  msgid "Heading"
3311
  msgstr ""
3312
 
3313
- #: framework/premium/extensions/mega-menu/options.php:415,
3314
- #: build_tmp/build/framework/premium/extensions/mega-menu/options.php:415
3315
  msgid "Label Link"
3316
  msgstr ""
3317
 
3318
  #: framework/premium/extensions/mega-menu/options.php:481,
3319
- #: framework/premium/extensions/mega-menu/options.php:792,
3320
- #: build_tmp/build/framework/premium/extensions/mega-menu/options.php:481,
3321
- #: build_tmp/build/framework/premium/extensions/mega-menu/options.php:792
3322
  msgid "Menu Badge Settings"
3323
  msgstr ""
3324
 
3325
  #: framework/premium/extensions/mega-menu/options.php:499,
3326
- #: framework/premium/extensions/woocommerce-extra/offcanvas-filter.php:260,
3327
- #: build_tmp/build/framework/premium/extensions/mega-menu/options.php:499,
3328
- #: build_tmp/build/framework/premium/extensions/woocommerce-extra/offcanvas-filter.php:260
3329
  msgid "Vertical Alignment"
3330
  msgstr ""
3331
 
3332
  #: framework/premium/extensions/mega-menu/options.php:534,
3333
  #: framework/premium/extensions/shortcuts/customizer.php:883,
3334
  #: framework/premium/extensions/woocommerce-extra/offcanvas-filter.php:346,
3335
- #: framework/features/header/items/account/options.php:1104,
3336
- #: build_tmp/build/framework/premium/extensions/mega-menu/options.php:534,
3337
- #: build_tmp/build/framework/premium/extensions/shortcuts/customizer.php:883,
3338
- #: build_tmp/build/framework/premium/extensions/woocommerce-extra/offcanvas-filter.php:346,
3339
- #: build_tmp/build/framework/features/header/items/account/options.php:1104
3340
  msgid "Background"
3341
  msgstr ""
3342
 
3343
- #: framework/premium/extensions/mega-menu/options.php:548,
3344
- #: build_tmp/build/framework/premium/extensions/mega-menu/options.php:548
3345
  msgid "Link Color"
3346
  msgstr ""
3347
 
3348
  #: framework/premium/extensions/mega-menu/options.php:568,
3349
  #: framework/premium/extensions/woocommerce-extra/offcanvas-filter.php:144,
3350
- #: build_tmp/build/framework/premium/extensions/mega-menu/options.php:568,
3351
- #: build_tmp/build/framework/premium/extensions/woocommerce-extra/offcanvas-filter.php:144,
3352
  #: framework/premium/features/premium-header/items/contacts/options.php:478,
3353
  #: framework/premium/features/premium-header/items/contacts/options.php:520,
3354
- #: framework/premium/features/premium-header/items/contacts/options.php:560,
3355
- #: build_tmp/build/framework/premium/features/premium-header/items/contacts/options.php:478,
3356
- #: build_tmp/build/framework/premium/features/premium-header/items/contacts/options.php:520,
3357
- #: build_tmp/build/framework/premium/features/premium-header/items/contacts/options.php:560
3358
  msgid "Link Initial"
3359
  msgstr ""
3360
 
3361
- #: framework/premium/extensions/mega-menu/options.php:573,
3362
- #: build_tmp/build/framework/premium/extensions/mega-menu/options.php:573
3363
  msgid "Link Hover/Active"
3364
  msgstr ""
3365
 
3366
- #: framework/premium/extensions/mega-menu/options.php:578,
3367
- #: build_tmp/build/framework/premium/extensions/mega-menu/options.php:578
3368
  msgid "Background Hover"
3369
  msgstr ""
3370
 
3371
- #: framework/premium/extensions/mega-menu/options.php:585,
3372
- #: framework/premium/extensions/mega-menu/options.php:719,
3373
- #: build_tmp/build/framework/premium/extensions/mega-menu/options.php:585,
3374
- #: build_tmp/build/framework/premium/extensions/mega-menu/options.php:719
 
 
3375
  msgid "Heading Color"
3376
  msgstr ""
3377
 
3378
- #: framework/premium/extensions/mega-menu/options.php:597,
3379
- #: framework/premium/extensions/mega-menu/options.php:617,
3380
- #: framework/premium/extensions/mega-menu/options.php:731,
3381
- #: build_tmp/build/framework/premium/extensions/mega-menu/options.php:597,
3382
- #: build_tmp/build/framework/premium/extensions/mega-menu/options.php:617,
3383
- #: build_tmp/build/framework/premium/extensions/mega-menu/options.php:731
3384
  msgid "Initial Color"
3385
  msgstr ""
3386
 
3387
- #: framework/premium/extensions/mega-menu/options.php:624,
3388
  #: framework/premium/extensions/shortcuts/customizer.php:900,
3389
- #: build_tmp/build/framework/premium/extensions/mega-menu/options.php:624,
3390
- #: build_tmp/build/framework/premium/extensions/shortcuts/customizer.php:900,
3391
  #: framework/premium/features/premium-header/items/language-switcher/options.php:432,
3392
- #: framework/premium/features/premium-header/items/search-input/options.php:836,
3393
- #: build_tmp/build/framework/premium/features/premium-header/items/language-switcher/options.php:432,
3394
- #: build_tmp/build/framework/premium/features/premium-header/items/search-input/options.php:836
3395
  msgid "Items Divider"
3396
  msgstr ""
3397
 
3398
- #: framework/premium/extensions/mega-menu/options.php:639,
3399
- #: build_tmp/build/framework/premium/extensions/mega-menu/options.php:639
3400
  msgid "Columns Divider"
3401
  msgstr ""
3402
 
3403
- #: framework/premium/extensions/mega-menu/options.php:654,
3404
- #: build_tmp/build/framework/premium/extensions/mega-menu/options.php:654,
3405
- #: framework/premium/features/premium-header/items/search-input/options.php:818,
3406
- #: build_tmp/build/framework/premium/features/premium-header/items/search-input/options.php:818
3407
  msgid "Dropdown Shadow"
3408
  msgstr ""
3409
 
3410
- #: framework/premium/extensions/mega-menu/options.php:686,
3411
- #: build_tmp/build/framework/premium/extensions/mega-menu/options.php:686
3412
  msgid "Column Settings"
3413
  msgstr ""
3414
 
3415
- #: framework/premium/extensions/mega-menu/options.php:690,
3416
- #: build_tmp/build/framework/premium/extensions/mega-menu/options.php:690
3417
  msgid "Column Spacing"
3418
  msgstr ""
3419
 
3420
- #: framework/premium/extensions/mega-menu/options.php:742,
3421
  #: framework/premium/extensions/woocommerce-extra/offcanvas-filter.php:352,
3422
- #: framework/features/header/items/account/options.php:765,
3423
- #: framework/features/header/items/account/options.php:793,
3424
- #: framework/features/header/items/account/options.php:824,
3425
- #: framework/features/header/items/account/options.php:853,
3426
- #: framework/features/header/items/account/options.php:1110,
3427
  #: framework/premium/extensions/woocommerce-extra/includes/wish-list-options.php:141,
3428
  #: framework/premium/extensions/woocommerce-extra/includes/wish-list-options.php:218,
3429
  #: framework/premium/extensions/woocommerce-extra/includes/wish-list-options.php:294,
3430
- #: build_tmp/build/framework/premium/extensions/mega-menu/options.php:742,
3431
- #: build_tmp/build/framework/premium/extensions/woocommerce-extra/offcanvas-filter.php:352,
3432
  #: framework/premium/extensions/woocommerce-extra/header-items/wish-list/options.php:305,
3433
  #: framework/premium/extensions/woocommerce-extra/header-items/wish-list/options.php:333,
3434
  #: framework/premium/extensions/woocommerce-extra/header-items/wish-list/options.php:364,
@@ -3436,43 +2422,24 @@ msgstr ""
3436
  #: framework/premium/features/premium-header/items/dark-mode-switcher/options.php:30,
3437
  #: framework/premium/features/premium-header/items/dark-mode-switcher/options.php:58,
3438
  #: framework/premium/features/premium-header/items/dark-mode-switcher/options.php:89,
3439
- #: framework/premium/features/premium-header/items/dark-mode-switcher/options.php:118,
3440
- #: build_tmp/build/framework/features/header/items/account/options.php:765,
3441
- #: build_tmp/build/framework/features/header/items/account/options.php:793,
3442
- #: build_tmp/build/framework/features/header/items/account/options.php:824,
3443
- #: build_tmp/build/framework/features/header/items/account/options.php:853,
3444
- #: build_tmp/build/framework/features/header/items/account/options.php:1110,
3445
- #: build_tmp/build/framework/premium/extensions/woocommerce-extra/includes/wish-list-options.php:141,
3446
- #: build_tmp/build/framework/premium/extensions/woocommerce-extra/includes/wish-list-options.php:218,
3447
- #: build_tmp/build/framework/premium/extensions/woocommerce-extra/includes/wish-list-options.php:294,
3448
- #: build_tmp/build/framework/premium/extensions/woocommerce-extra/header-items/wish-list/options.php:305,
3449
- #: build_tmp/build/framework/premium/extensions/woocommerce-extra/header-items/wish-list/options.php:333,
3450
- #: build_tmp/build/framework/premium/extensions/woocommerce-extra/header-items/wish-list/options.php:364,
3451
- #: build_tmp/build/framework/premium/extensions/woocommerce-extra/header-items/wish-list/options.php:393,
3452
- #: build_tmp/build/framework/premium/features/premium-header/items/dark-mode-switcher/options.php:30,
3453
- #: build_tmp/build/framework/premium/features/premium-header/items/dark-mode-switcher/options.php:58,
3454
- #: build_tmp/build/framework/premium/features/premium-header/items/dark-mode-switcher/options.php:89,
3455
- #: build_tmp/build/framework/premium/features/premium-header/items/dark-mode-switcher/options.php:118
3456
  msgid "Icon Color"
3457
  msgstr ""
3458
 
3459
  #. translators: This is a brand name. Preferably to not be translated
3460
- #: framework/premium/extensions/post-types-extra/config.php:5,
3461
- #: build_tmp/build/framework/premium/extensions/post-types-extra/config.php:5
3462
  msgctxt "Extension Brand Name"
3463
  msgid "Post Types Extra"
3464
  msgstr ""
3465
 
3466
- #: framework/premium/extensions/post-types-extra/config.php:6,
3467
- #: build_tmp/build/framework/premium/extensions/post-types-extra/config.php:6
3468
  msgid ""
3469
  "Enables support for Custom Fields inside archive cards and single page post "
3470
  "title, adds a reading progress bar for your posts and lets you set featured "
3471
  "images and colors for your categories archives."
3472
  msgstr ""
3473
 
3474
- #: framework/premium/extensions/post-types-extra/readme.php:4,
3475
- #: build_tmp/build/framework/premium/extensions/post-types-extra/readme.php:4
3476
  msgid ""
3477
  "After activating this extension you will be able to enable the read progress "
3478
  "bar for your single posts, add a featured image and set different colors to "
@@ -3481,86 +2448,70 @@ msgid ""
3481
  "taxonomies archive filters."
3482
  msgstr ""
3483
 
3484
- #: framework/premium/extensions/post-types-extra/readme.php:10,
3485
- #: build_tmp/build/framework/premium/extensions/post-types-extra/readme.php:10
3486
  msgid "Custom Fields"
3487
  msgstr ""
3488
 
3489
- #: framework/premium/extensions/post-types-extra/readme.php:14,
3490
- #: build_tmp/build/framework/premium/extensions/post-types-extra/readme.php:14
3491
  msgid ""
3492
  "After setting up your custom fields you will be able to output them from %s "
3493
  "or from %2s."
3494
  msgstr ""
3495
 
3496
- #: framework/premium/extensions/post-types-extra/readme.php:17,
3497
- #: build_tmp/build/framework/premium/extensions/post-types-extra/readme.php:17
3498
  msgid "Customizer ➝ Blog Posts ➝ Card Options"
3499
  msgstr ""
3500
 
3501
- #: framework/premium/extensions/post-types-extra/readme.php:21,
3502
- #: build_tmp/build/framework/premium/extensions/post-types-extra/readme.php:21
3503
  msgid "Customizer ➝ Single Posts ➝ Post Title"
3504
  msgstr ""
3505
 
3506
- #: framework/premium/extensions/post-types-extra/readme.php:29,
3507
- #: build_tmp/build/framework/premium/extensions/post-types-extra/readme.php:29
3508
  msgid "Taxonomies Filters"
3509
  msgstr ""
3510
 
3511
- #: framework/premium/extensions/post-types-extra/readme.php:33,
3512
- #: build_tmp/build/framework/premium/extensions/post-types-extra/readme.php:33
3513
  msgid "You can enable the taxonomies filters from %s."
3514
  msgstr ""
3515
 
3516
- #: framework/premium/extensions/post-types-extra/readme.php:36,
3517
- #: build_tmp/build/framework/premium/extensions/post-types-extra/readme.php:36
3518
  msgid "Customizer ➝ Blog Posts ➝ Filters"
3519
  msgstr ""
3520
 
3521
- #: framework/premium/extensions/post-types-extra/readme.php:44,
3522
- #: build_tmp/build/framework/premium/extensions/post-types-extra/readme.php:44
3523
  msgid "Read Progress Bar"
3524
  msgstr ""
3525
 
3526
- #: framework/premium/extensions/post-types-extra/readme.php:48,
3527
- #: build_tmp/build/framework/premium/extensions/post-types-extra/readme.php:48
3528
  msgid "This options could be enabled from %s."
3529
  msgstr ""
3530
 
3531
- #: framework/premium/extensions/post-types-extra/readme.php:51,
3532
- #: build_tmp/build/framework/premium/extensions/post-types-extra/readme.php:51
3533
  msgid "Customizer ➝ Single Posts ➝ Read Progress Bar"
3534
  msgstr ""
3535
 
3536
- #: framework/premium/extensions/post-types-extra/readme.php:59,
3537
- #: build_tmp/build/framework/premium/extensions/post-types-extra/readme.php:59
3538
  msgid "Taxonomy Featured Image & Custom Colors"
3539
  msgstr ""
3540
 
3541
- #: framework/premium/extensions/post-types-extra/readme.php:63,
3542
- #: build_tmp/build/framework/premium/extensions/post-types-extra/readme.php:63
3543
  msgid ""
3544
  "To customize these options simply navigate to %s and edit one of your "
3545
  "categories."
3546
  msgstr ""
3547
 
3548
- #: framework/premium/extensions/post-types-extra/readme.php:66,
3549
- #: build_tmp/build/framework/premium/extensions/post-types-extra/readme.php:66
3550
  msgid "Dashboard ➝ Posts ➝ Categories"
3551
  msgstr ""
3552
 
3553
  #. translators: This is a brand name. Preferably to not be translated
3554
  #: framework/premium/extensions/shortcuts/config.php:5,
3555
- #: framework/premium/extensions/shortcuts/customizer.php:524,
3556
- #: build_tmp/build/framework/premium/extensions/shortcuts/config.php:5,
3557
- #: build_tmp/build/framework/premium/extensions/shortcuts/customizer.php:524
3558
  msgctxt "Extension Brand Name"
3559
  msgid "Shortcuts Bar"
3560
  msgstr ""
3561
 
3562
- #: framework/premium/extensions/shortcuts/config.php:6,
3563
- #: build_tmp/build/framework/premium/extensions/shortcuts/config.php:6
3564
  msgid ""
3565
  "Easily turn your websites into mobile first experiences. You can easily add "
3566
  "the most important actions at the bottom of the screen for easy access."
@@ -3570,12 +2521,7 @@ msgstr ""
3570
  #: framework/premium/extensions/shortcuts/customizer.php:35,
3571
  #: framework/premium/extensions/shortcuts/customizer.php:563,
3572
  #: framework/premium/extensions/shortcuts/views/bar.php:13,
3573
- #: framework/premium/extensions/shortcuts/views/bar.php:43,
3574
- #: build_tmp/build/framework/premium/extensions/shortcuts/customizer.php:12,
3575
- #: build_tmp/build/framework/premium/extensions/shortcuts/customizer.php:35,
3576
- #: build_tmp/build/framework/premium/extensions/shortcuts/customizer.php:563,
3577
- #: build_tmp/build/framework/premium/extensions/shortcuts/views/bar.php:13,
3578
- #: build_tmp/build/framework/premium/extensions/shortcuts/views/bar.php:43
3579
  msgid "Home"
3580
  msgstr ""
3581
 
@@ -3585,152 +2531,101 @@ msgstr ""
3585
  #: framework/extensions/widgets/widgets/ct-contact-info/options.php:128,
3586
  #: framework/premium/extensions/shortcuts/views/bar.php:22,
3587
  #: framework/premium/extensions/shortcuts/views/bar.php:44,
3588
- #: build_tmp/build/framework/premium/extensions/shortcuts/customizer.php:68,
3589
- #: build_tmp/build/framework/premium/extensions/shortcuts/customizer.php:91,
3590
- #: build_tmp/build/framework/premium/extensions/shortcuts/customizer.php:572,
3591
- #: framework/premium/features/premium-header/items/contacts/options.php:76,
3592
- #: build_tmp/build/framework/extensions/widgets/widgets/ct-contact-info/options.php:128,
3593
- #: build_tmp/build/framework/premium/extensions/shortcuts/views/bar.php:22,
3594
- #: build_tmp/build/framework/premium/extensions/shortcuts/views/bar.php:44,
3595
- #: build_tmp/build/framework/premium/features/premium-header/items/contacts/options.php:76
3596
  msgid "Phone"
3597
  msgstr ""
3598
 
3599
  #: framework/premium/extensions/shortcuts/customizer.php:192,
3600
  #: framework/premium/extensions/shortcuts/customizer.php:215,
3601
- #: framework/premium/extensions/shortcuts/views/bar.php:46,
3602
- #: build_tmp/build/framework/premium/extensions/shortcuts/customizer.php:192,
3603
- #: build_tmp/build/framework/premium/extensions/shortcuts/customizer.php:215,
3604
- #: build_tmp/build/framework/premium/extensions/shortcuts/views/bar.php:46
3605
  msgid "Scroll Top"
3606
  msgstr ""
3607
 
3608
  #: framework/premium/extensions/shortcuts/customizer.php:293,
3609
  #: framework/extensions/widgets/widgets/ct-advertisement/options.php:83,
3610
- #: framework/extensions/widgets/widgets/ct-contact-info/options.php:539,
3611
- #: build_tmp/build/framework/premium/extensions/shortcuts/customizer.php:293,
3612
- #: build_tmp/build/framework/extensions/widgets/widgets/ct-advertisement/options.php:83,
3613
- #: build_tmp/build/framework/extensions/widgets/widgets/ct-contact-info/options.php:539
3614
  msgid "Open link in new tab"
3615
  msgstr ""
3616
 
3617
- #: framework/premium/extensions/shortcuts/customizer.php:300,
3618
- #: build_tmp/build/framework/premium/extensions/shortcuts/customizer.php:300
3619
  msgid "Set link to nofollow"
3620
  msgstr ""
3621
 
3622
- #: framework/premium/extensions/shortcuts/customizer.php:306,
3623
- #: build_tmp/build/framework/premium/extensions/shortcuts/customizer.php:306
3624
  msgid "Custom class"
3625
  msgstr ""
3626
 
3627
  #: framework/premium/extensions/shortcuts/customizer.php:338,
3628
  #: framework/premium/extensions/shortcuts/customizer.php:361,
3629
- #: framework/premium/extensions/shortcuts/views/bar.php:47,
3630
- #: build_tmp/build/framework/premium/extensions/shortcuts/customizer.php:338,
3631
- #: build_tmp/build/framework/premium/extensions/shortcuts/customizer.php:361,
3632
- #: build_tmp/build/framework/premium/extensions/shortcuts/views/bar.php:47
3633
  msgid "Cart"
3634
  msgstr ""
3635
 
3636
  #: framework/premium/extensions/shortcuts/customizer.php:394,
3637
- #: framework/premium/extensions/shortcuts/customizer.php:417,
3638
- #: build_tmp/build/framework/premium/extensions/shortcuts/customizer.php:394,
3639
- #: build_tmp/build/framework/premium/extensions/shortcuts/customizer.php:417
3640
  msgid "Shop"
3641
  msgstr ""
3642
 
3643
  #: framework/premium/extensions/shortcuts/customizer.php:450,
3644
  #: framework/premium/extensions/shortcuts/customizer.php:473,
3645
  #: framework/premium/extensions/woocommerce-extra/readme.php:70,
3646
- #: build_tmp/build/framework/premium/extensions/shortcuts/customizer.php:450,
3647
- #: build_tmp/build/framework/premium/extensions/shortcuts/customizer.php:473,
3648
- #: build_tmp/build/framework/premium/extensions/woocommerce-extra/readme.php:70,
3649
  #: framework/premium/extensions/woocommerce-extra/header-items/wish-list/config.php:4,
3650
  #: framework/premium/extensions/woocommerce-extra/header-items/wish-list/options.php:141,
3651
  #: framework/premium/extensions/woocommerce-extra/header-items/wish-list/view.php:105,
3652
- #: framework/premium/extensions/woocommerce-extra/header-items/wish-list/view.php:111,
3653
- #: build_tmp/build/framework/premium/extensions/woocommerce-extra/header-items/wish-list/config.php:4,
3654
- #: build_tmp/build/framework/premium/extensions/woocommerce-extra/header-items/wish-list/options.php:141,
3655
- #: build_tmp/build/framework/premium/extensions/woocommerce-extra/header-items/wish-list/view.php:105,
3656
- #: build_tmp/build/framework/premium/extensions/woocommerce-extra/header-items/wish-list/view.php:111
3657
  msgid "Wishlist"
3658
  msgstr ""
3659
 
3660
  #: framework/premium/extensions/shortcuts/customizer.php:538,
3661
- #: framework/premium/features/content-blocks/admin-ui.php:196,
3662
- #: build_tmp/build/framework/premium/extensions/shortcuts/customizer.php:538,
3663
- #: build_tmp/build/framework/premium/features/content-blocks/admin-ui.php:196
3664
  msgid "Type"
3665
  msgstr ""
3666
 
3667
- #: framework/premium/extensions/shortcuts/customizer.php:557,
3668
- #: build_tmp/build/framework/premium/extensions/shortcuts/customizer.php:557
3669
  msgid "Shortcuts"
3670
  msgstr ""
3671
 
3672
  #: framework/premium/extensions/shortcuts/customizer.php:612,
3673
- #: framework/features/header/items/account/options.php:268,
3674
- #: framework/features/header/items/account/options.php:510,
3675
- #: build_tmp/build/framework/premium/extensions/shortcuts/customizer.php:612,
3676
- #: framework/premium/extensions/woocommerce-extra/header-items/wish-list/options.php:92,
3677
- #: build_tmp/build/framework/features/header/items/account/options.php:268,
3678
- #: build_tmp/build/framework/features/header/items/account/options.php:510,
3679
- #: build_tmp/build/framework/premium/extensions/woocommerce-extra/header-items/wish-list/options.php:92
3680
  msgid "Label Visibility"
3681
  msgstr ""
3682
 
3683
  #: framework/premium/extensions/shortcuts/customizer.php:652,
3684
- #: framework/features/header/items/account/options.php:304,
3685
- #: framework/features/header/items/account/options.php:546,
3686
- #: build_tmp/build/framework/premium/extensions/shortcuts/customizer.php:652,
3687
- #: framework/premium/extensions/woocommerce-extra/header-items/wish-list/options.php:123,
3688
- #: build_tmp/build/framework/features/header/items/account/options.php:304,
3689
- #: build_tmp/build/framework/features/header/items/account/options.php:546,
3690
- #: build_tmp/build/framework/premium/extensions/woocommerce-extra/header-items/wish-list/options.php:123
3691
  msgid "Label Position"
3692
  msgstr ""
3693
 
3694
  #: framework/premium/extensions/shortcuts/customizer.php:661,
3695
  #: framework/premium/extensions/woocommerce-extra/floating-cart.php:25,
3696
  #: framework/premium/features/content-blocks/hooks-manager.php:445,
3697
- #: framework/features/header/items/account/options.php:313,
3698
- #: framework/features/header/items/account/options.php:555,
3699
  #: framework/premium/features/content-blocks/options/hook.php:307,
3700
- #: build_tmp/build/framework/premium/extensions/shortcuts/customizer.php:661,
3701
- #: build_tmp/build/framework/premium/extensions/woocommerce-extra/floating-cart.php:25,
3702
- #: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:445,
3703
- #: framework/premium/extensions/woocommerce-extra/header-items/wish-list/options.php:132,
3704
- #: build_tmp/build/framework/features/header/items/account/options.php:313,
3705
- #: build_tmp/build/framework/features/header/items/account/options.php:555,
3706
- #: build_tmp/build/framework/premium/features/content-blocks/options/hook.php:307,
3707
- #: build_tmp/build/framework/premium/extensions/woocommerce-extra/header-items/wish-list/options.php:132
3708
  msgid "Bottom"
3709
  msgstr ""
3710
 
3711
  #: framework/premium/extensions/shortcuts/customizer.php:672,
3712
- #: framework/features/header/items/account/options.php:250,
3713
- #: framework/features/header/items/account/options.php:492,
3714
- #: build_tmp/build/framework/premium/extensions/shortcuts/customizer.php:672,
3715
- #: framework/premium/extensions/woocommerce-extra/header-items/wish-list/options.php:74,
3716
- #: build_tmp/build/framework/features/header/items/account/options.php:250,
3717
- #: build_tmp/build/framework/features/header/items/account/options.php:492,
3718
- #: build_tmp/build/framework/premium/extensions/woocommerce-extra/header-items/wish-list/options.php:74
3719
  msgid "Icon Size"
3720
  msgstr ""
3721
 
3722
- #: framework/premium/extensions/shortcuts/customizer.php:682,
3723
- #: build_tmp/build/framework/premium/extensions/shortcuts/customizer.php:682
3724
  msgid "Container Height"
3725
  msgstr ""
3726
 
3727
- #: framework/premium/extensions/shortcuts/customizer.php:697,
3728
- #: build_tmp/build/framework/premium/extensions/shortcuts/customizer.php:697
3729
  msgid "Container Max Width"
3730
  msgstr ""
3731
 
3732
- #: framework/premium/extensions/shortcuts/customizer.php:721,
3733
- #: build_tmp/build/framework/premium/extensions/shortcuts/customizer.php:721
3734
  msgid "Scroll Interaction"
3735
  msgstr ""
3736
 
@@ -3738,141 +2633,102 @@ msgstr ""
3738
  #: framework/premium/features/content-blocks/admin-ui.php:225,
3739
  #: framework/extensions/widgets/widgets/ct-contact-info/options.php:510,
3740
  #: framework/extensions/widgets/widgets/ct-socials/options.php:113,
3741
- #: framework/features/header/items/account/options.php:141,
3742
- #: framework/features/header/items/account/options.php:401,
3743
  #: framework/premium/features/content-blocks/options/hook.php:9,
3744
  #: framework/premium/features/content-blocks/options/hook.php:158,
3745
  #: framework/premium/features/content-blocks/options/popup.php:162,
3746
  #: framework/premium/features/content-blocks/options/popup.php:437,
3747
- #: build_tmp/build/framework/premium/extensions/shortcuts/customizer.php:726,
3748
- #: build_tmp/build/framework/premium/features/content-blocks/admin-ui.php:225,
3749
- #: framework/premium/features/premium-header/items/contacts/options.php:338,
3750
- #: build_tmp/build/framework/extensions/widgets/widgets/ct-contact-info/options.php:510,
3751
- #: build_tmp/build/framework/extensions/widgets/widgets/ct-socials/options.php:113,
3752
- #: build_tmp/build/framework/features/header/items/account/options.php:141,
3753
- #: build_tmp/build/framework/features/header/items/account/options.php:401,
3754
- #: build_tmp/build/framework/premium/features/content-blocks/options/hook.php:9,
3755
- #: build_tmp/build/framework/premium/features/content-blocks/options/hook.php:158,
3756
- #: build_tmp/build/framework/premium/features/content-blocks/options/popup.php:162,
3757
- #: build_tmp/build/framework/premium/features/content-blocks/options/popup.php:437,
3758
- #: build_tmp/build/framework/premium/features/premium-header/items/contacts/options.php:338
3759
  msgid "None"
3760
  msgstr ""
3761
 
3762
- #: framework/premium/extensions/shortcuts/customizer.php:727,
3763
- #: build_tmp/build/framework/premium/extensions/shortcuts/customizer.php:727
3764
  msgid "Hide"
3765
  msgstr ""
3766
 
3767
- #: framework/premium/extensions/shortcuts/customizer.php:769,
3768
- #: build_tmp/build/framework/premium/extensions/shortcuts/customizer.php:769
3769
  msgid "Shortcuts Bar Display Conditions"
3770
  msgstr ""
3771
 
3772
- #: framework/premium/extensions/shortcuts/customizer.php:770,
3773
- #: build_tmp/build/framework/premium/extensions/shortcuts/customizer.php:770
3774
  msgid "Add one or more conditions to display the shortcuts bar."
3775
  msgstr ""
3776
 
3777
  #: framework/premium/extensions/shortcuts/customizer.php:784,
3778
- #: build_tmp/build/framework/premium/extensions/shortcuts/customizer.php:784,
3779
  #: framework/premium/extensions/post-types-extra/includes/filtering/customizer.php:173,
3780
  #: framework/premium/features/premium-header/items/contacts/options.php:410,
3781
  #: framework/premium/features/premium-header/items/language-switcher/options.php:192,
3782
- #: framework/premium/features/premium-header/items/language-switcher/options.php:376,
3783
- #: build_tmp/build/framework/premium/extensions/post-types-extra/includes/filtering/customizer.php:173,
3784
- #: build_tmp/build/framework/premium/features/premium-header/items/contacts/options.php:410,
3785
- #: build_tmp/build/framework/premium/features/premium-header/items/language-switcher/options.php:192,
3786
- #: build_tmp/build/framework/premium/features/premium-header/items/language-switcher/options.php:376
3787
  msgid "Font"
3788
  msgstr ""
3789
 
3790
  #: framework/premium/extensions/shortcuts/customizer.php:826,
3791
- #: build_tmp/build/framework/premium/extensions/shortcuts/customizer.php:826,
3792
  #: framework/premium/features/premium-header/items/contacts/options.php:590,
3793
  #: framework/premium/features/premium-header/items/contacts/options.php:619,
3794
  #: framework/premium/features/premium-header/items/contacts/options.php:650,
3795
- #: framework/premium/features/premium-header/items/contacts/options.php:680,
3796
- #: build_tmp/build/framework/premium/features/premium-header/items/contacts/options.php:590,
3797
- #: build_tmp/build/framework/premium/features/premium-header/items/contacts/options.php:619,
3798
- #: build_tmp/build/framework/premium/features/premium-header/items/contacts/options.php:650,
3799
- #: build_tmp/build/framework/premium/features/premium-header/items/contacts/options.php:680
3800
  msgid "Icons Color"
3801
  msgstr ""
3802
 
3803
- #: framework/premium/extensions/shortcuts/customizer.php:865,
3804
- #: build_tmp/build/framework/premium/extensions/shortcuts/customizer.php:865
3805
  msgid "Cart Badge Color"
3806
  msgstr ""
3807
 
3808
- #: framework/premium/extensions/shortcuts/customizer.php:920,
3809
- #: build_tmp/build/framework/premium/extensions/shortcuts/customizer.php:920
3810
  msgid "Items Divider Height"
3811
  msgstr ""
3812
 
3813
  #: framework/premium/extensions/shortcuts/customizer.php:934,
3814
  #: framework/premium/extensions/woocommerce-extra/floating-cart.php:123,
3815
  #: framework/premium/features/content-blocks/options/popup.php:387,
3816
- #: build_tmp/build/framework/premium/extensions/shortcuts/customizer.php:934,
3817
- #: build_tmp/build/framework/premium/extensions/woocommerce-extra/floating-cart.php:123,
3818
- #: framework/premium/features/premium-header/items/language-switcher/options.php:446,
3819
- #: build_tmp/build/framework/premium/features/content-blocks/options/popup.php:387,
3820
- #: build_tmp/build/framework/premium/features/premium-header/items/language-switcher/options.php:446
3821
  msgid "Shadow"
3822
  msgstr ""
3823
 
3824
  #. translators: This is a brand name. Preferably to not be translated
3825
- #: framework/premium/extensions/sidebars/config.php:5,
3826
- #: build_tmp/build/framework/premium/extensions/sidebars/config.php:5
3827
  msgctxt "Extension Brand Name"
3828
  msgid "Multiple Sidebars"
3829
  msgstr ""
3830
 
3831
- #: framework/premium/extensions/sidebars/config.php:6,
3832
- #: build_tmp/build/framework/premium/extensions/sidebars/config.php:6
3833
  msgid ""
3834
  "Create unlimited personalized sets of widget areas and display them on any "
3835
  "page or post using our conditional logic functionality."
3836
  msgstr ""
3837
 
3838
- #: framework/premium/extensions/sidebars/config.php:10,
3839
- #: build_tmp/build/framework/premium/extensions/sidebars/config.php:10
3840
  msgid "Create New Sidebar"
3841
  msgstr ""
3842
 
3843
- #: framework/premium/extensions/sidebars/form.php:3,
3844
- #: build_tmp/build/framework/premium/extensions/sidebars/form.php:3
3845
  #: framework/premium/extensions/sidebars/static/js/main.js:42
3846
  msgid "Create Sidebar/Widget Area"
3847
  msgstr ""
3848
 
3849
- #: framework/premium/extensions/sidebars/form.php:6,
3850
- #: build_tmp/build/framework/premium/extensions/sidebars/form.php:6
3851
  msgid ""
3852
  "In order to create a new sidebar/widget area simply enter a name in the "
3853
  "input below and click the Create Sidebar button."
3854
  msgstr ""
3855
 
3856
- #: framework/premium/extensions/sidebars/form.php:16,
3857
- #: build_tmp/build/framework/premium/extensions/sidebars/form.php:16
3858
  #: framework/premium/extensions/sidebars/static/js/main.js:58
3859
  msgid "Create Sidebar"
3860
  msgstr ""
3861
 
3862
- #: framework/premium/extensions/sidebars/form.php:20,
3863
- #: build_tmp/build/framework/premium/extensions/sidebars/form.php:20
3864
  msgid "Available Sidebars/Widget Areas"
3865
  msgstr ""
3866
 
3867
  #. translators: This is a brand name. Preferably to not be translated
3868
- #: framework/premium/extensions/white-label/config.php:5,
3869
- #: build_tmp/build/framework/premium/extensions/white-label/config.php:5
3870
  msgctxt "Extension Brand Name"
3871
  msgid "White Label"
3872
  msgstr ""
3873
 
3874
- #: framework/premium/extensions/white-label/config.php:6,
3875
- #: build_tmp/build/framework/premium/extensions/white-label/config.php:6
3876
  msgid ""
3877
  "Replace Blocksy's branding with your own. Easily hide licensing info and "
3878
  "other sections of the theme and companion plugin from your clients and make "
@@ -3880,341 +2736,264 @@ msgid ""
3880
  msgstr ""
3881
 
3882
  #. translators: This is a brand name. Preferably to not be translated
3883
- #: framework/premium/extensions/woocommerce-extra/config.php:5,
3884
- #: build_tmp/build/framework/premium/extensions/woocommerce-extra/config.php:5
3885
  msgctxt "Extension Brand Name"
3886
  msgid "WooCommerce Extra"
3887
  msgstr ""
3888
 
3889
- #: framework/premium/extensions/woocommerce-extra/config.php:6,
3890
- #: build_tmp/build/framework/premium/extensions/woocommerce-extra/config.php:6
3891
  msgid ""
3892
  "Make the shopping experience better for your visitors! Add features such as "
3893
  "Product Quick View, Wishlist functionality and a Floating Add to Cart "
3894
  "button. Customize the single product gallery/slider and the layout."
3895
  msgstr ""
3896
 
3897
- #: framework/premium/extensions/woocommerce-extra/customizer.php:5,
3898
- #: build_tmp/build/framework/premium/extensions/woocommerce-extra/customizer.php:5
3899
  msgid "Quick View Button"
3900
  msgstr ""
3901
 
3902
- #: framework/premium/extensions/woocommerce-extra/customizer.php:21,
3903
- #: build_tmp/build/framework/premium/extensions/woocommerce-extra/customizer.php:21
3904
  msgid "Trigger On"
3905
  msgstr ""
3906
 
3907
- #: framework/premium/extensions/woocommerce-extra/customizer.php:29,
3908
- #: build_tmp/build/framework/premium/extensions/woocommerce-extra/customizer.php:29
3909
  msgid "Button click"
3910
  msgstr ""
3911
 
3912
- #: framework/premium/extensions/woocommerce-extra/customizer.php:30,
3913
- #: build_tmp/build/framework/premium/extensions/woocommerce-extra/customizer.php:30
3914
  msgid "Image click"
3915
  msgstr ""
3916
 
3917
- #: framework/premium/extensions/woocommerce-extra/customizer.php:31,
3918
- #: build_tmp/build/framework/premium/extensions/woocommerce-extra/customizer.php:31
3919
  msgid "Card click"
3920
  msgstr ""
3921
 
3922
  #: framework/premium/extensions/woocommerce-extra/extension.php:91,
3923
  #: framework/premium/extensions/woocommerce-extra/offcanvas-filter.php:196,
3924
- #: framework/features/header/items/account/options.php:227,
3925
- #: framework/features/header/items/account/options.php:469,
3926
- #: build_tmp/build/framework/premium/extensions/woocommerce-extra/extension.php:83,
3927
- #: build_tmp/build/framework/premium/extensions/woocommerce-extra/offcanvas-filter.php:196,
3928
- #: framework/premium/extensions/woocommerce-extra/header-items/wish-list/options.php:66,
3929
- #: build_tmp/build/framework/features/header/items/account/options.php:227,
3930
- #: build_tmp/build/framework/features/header/items/account/options.php:469,
3931
- #: build_tmp/build/framework/premium/extensions/woocommerce-extra/header-items/wish-list/options.php:66
3932
  msgid "Type 3"
3933
  msgstr ""
3934
 
3935
  #: framework/premium/extensions/woocommerce-extra/extension.php:96,
3936
  #: framework/premium/extensions/woocommerce-extra/offcanvas-filter.php:201,
3937
- #: framework/features/header/items/account/options.php:232,
3938
- #: framework/features/header/items/account/options.php:474,
3939
- #: build_tmp/build/framework/premium/extensions/woocommerce-extra/extension.php:88,
3940
- #: build_tmp/build/framework/premium/extensions/woocommerce-extra/offcanvas-filter.php:201,
3941
- #: build_tmp/build/framework/features/header/items/account/options.php:232,
3942
- #: build_tmp/build/framework/features/header/items/account/options.php:474
3943
  msgid "Type 4"
3944
  msgstr ""
3945
 
3946
  #: framework/premium/extensions/woocommerce-extra/extension.php:119,
3947
- #: framework/premium/extensions/woocommerce-extra/extension.php:138,
3948
- #: build_tmp/build/framework/premium/extensions/woocommerce-extra/extension.php:111,
3949
- #: build_tmp/build/framework/premium/extensions/woocommerce-extra/extension.php:130
3950
  msgid "Number of Columns"
3951
  msgstr ""
3952
 
3953
- #: framework/premium/extensions/woocommerce-extra/extension.php:162,
3954
- #: build_tmp/build/framework/premium/extensions/woocommerce-extra/extension.php:154
3955
  msgid "Gallery Arrows Visibility"
3956
  msgstr ""
3957
 
3958
- #: framework/premium/extensions/woocommerce-extra/extension.php:183,
3959
- #: build_tmp/build/framework/premium/extensions/woocommerce-extra/extension.php:175
3960
  msgid "Thumbnails Arrows Visibility"
3961
  msgstr ""
3962
 
3963
- #: framework/premium/extensions/woocommerce-extra/extension.php:392,
3964
- #: build_tmp/build/framework/premium/extensions/woocommerce-extra/extension.php:384
3965
  msgid "Icons Spacing"
3966
  msgstr ""
3967
 
3968
- #: framework/premium/extensions/woocommerce-extra/extension.php:436,
3969
- #: build_tmp/build/framework/premium/extensions/woocommerce-extra/extension.php:428
3970
  msgid "WooCommerce Offcanvas Filters"
3971
  msgstr ""
3972
 
3973
- #: framework/premium/extensions/woocommerce-extra/extension.php:438,
3974
- #: build_tmp/build/framework/premium/extensions/woocommerce-extra/extension.php:430
3975
  msgid "Add widgets here."
3976
  msgstr ""
3977
 
3978
- #: framework/premium/extensions/woocommerce-extra/extension.php:711,
3979
- #: build_tmp/build/framework/premium/extensions/woocommerce-extra/extension.php:703
3980
  msgid "Available Filters"
3981
  msgstr ""
3982
 
3983
- #: framework/premium/extensions/woocommerce-extra/extension.php:712,
3984
- #: build_tmp/build/framework/premium/extensions/woocommerce-extra/extension.php:704
3985
  msgid "Close filters modal"
3986
  msgstr ""
3987
 
3988
- #: framework/premium/extensions/woocommerce-extra/extension.php:805,
3989
- #: build_tmp/build/framework/premium/extensions/woocommerce-extra/extension.php:797
3990
  msgid "Quick view title before"
3991
  msgstr ""
3992
 
3993
- #: framework/premium/extensions/woocommerce-extra/extension.php:810,
3994
- #: build_tmp/build/framework/premium/extensions/woocommerce-extra/extension.php:802
3995
  msgid "Quick view title after"
3996
  msgstr ""
3997
 
3998
- #: framework/premium/extensions/woocommerce-extra/extension.php:815,
3999
- #: build_tmp/build/framework/premium/extensions/woocommerce-extra/extension.php:807
4000
  msgid "Quick view price before"
4001
  msgstr ""
4002
 
4003
- #: framework/premium/extensions/woocommerce-extra/extension.php:820,
4004
- #: build_tmp/build/framework/premium/extensions/woocommerce-extra/extension.php:812
4005
  msgid "Quick view price after"
4006
  msgstr ""
4007
 
4008
- #: framework/premium/extensions/woocommerce-extra/extension.php:825,
4009
- #: build_tmp/build/framework/premium/extensions/woocommerce-extra/extension.php:817
4010
  msgid "Quick view summary before"
4011
  msgstr ""
4012
 
4013
- #: framework/premium/extensions/woocommerce-extra/extension.php:830,
4014
- #: build_tmp/build/framework/premium/extensions/woocommerce-extra/extension.php:822
4015
  msgid "Quick view summary after"
4016
  msgstr ""
4017
 
4018
  #: framework/premium/extensions/woocommerce-extra/floating-cart.php:4,
4019
- #: framework/premium/extensions/woocommerce-extra/readme.php:25,
4020
- #: build_tmp/build/framework/premium/extensions/woocommerce-extra/floating-cart.php:4,
4021
- #: build_tmp/build/framework/premium/extensions/woocommerce-extra/readme.php:25
4022
  msgid "Floating Cart"
4023
  msgstr ""
4024
 
4025
- #: framework/premium/extensions/woocommerce-extra/floating-cart.php:17,
4026
- #: build_tmp/build/framework/premium/extensions/woocommerce-extra/floating-cart.php:17
4027
  msgid "Position"
4028
  msgstr ""
4029
 
4030
  #: framework/premium/extensions/woocommerce-extra/floating-cart.php:24,
4031
  #: framework/premium/features/content-blocks/hooks-manager.php:407,
4032
- #: framework/premium/features/content-blocks/options/hook.php:306,
4033
- #: build_tmp/build/framework/premium/extensions/woocommerce-extra/floating-cart.php:24,
4034
- #: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:407,
4035
- #: build_tmp/build/framework/premium/features/content-blocks/options/hook.php:306
4036
  msgid "Top"
4037
  msgstr ""
4038
 
4039
- #: framework/premium/extensions/woocommerce-extra/floating-cart.php:34,
4040
- #: build_tmp/build/framework/premium/extensions/woocommerce-extra/floating-cart.php:34
4041
  msgid "Product Title Visibility"
4042
  msgstr ""
4043
 
4044
- #: framework/premium/extensions/woocommerce-extra/floating-cart.php:58,
4045
- #: build_tmp/build/framework/premium/extensions/woocommerce-extra/floating-cart.php:58
4046
  msgid "Floating Cart Visibility"
4047
  msgstr ""
4048
 
4049
- #: framework/premium/extensions/woocommerce-extra/helpers.php:79,
4050
- #: build_tmp/build/framework/premium/extensions/woocommerce-extra/helpers.php:79
4051
  msgid "Close quick view"
4052
  msgstr ""
4053
 
4054
- #: framework/premium/extensions/woocommerce-extra/helpers.php:106,
4055
- #: build_tmp/build/framework/premium/extensions/woocommerce-extra/helpers.php:106
4056
  msgid "Go to product page"
4057
  msgstr ""
4058
 
4059
- #: framework/premium/extensions/woocommerce-extra/helpers.php:152,
4060
- #: build_tmp/build/framework/premium/extensions/woocommerce-extra/helpers.php:152
4061
  msgid "Quick view toggle"
4062
  msgstr ""
4063
 
4064
- #: framework/premium/extensions/woocommerce-extra/helpers.php:152,
4065
- #: build_tmp/build/framework/premium/extensions/woocommerce-extra/helpers.php:152
4066
  msgid "Quick view icon"
4067
  msgstr ""
4068
 
4069
- #: framework/premium/extensions/woocommerce-extra/helpers.php:186,
4070
- #: build_tmp/build/framework/premium/extensions/woocommerce-extra/helpers.php:186
4071
  msgid "Filter"
4072
  msgstr ""
4073
 
4074
- #: framework/premium/extensions/woocommerce-extra/offcanvas-filter.php:3,
4075
- #: build_tmp/build/framework/premium/extensions/woocommerce-extra/offcanvas-filter.php:3
4076
  msgid "Off Canvas Filter"
4077
  msgstr ""
4078
 
4079
- #: framework/premium/extensions/woocommerce-extra/offcanvas-filter.php:14,
4080
- #: build_tmp/build/framework/premium/extensions/woocommerce-extra/offcanvas-filter.php:14
4081
  msgid "Filter Widgets"
4082
  msgstr ""
4083
 
4084
- #: framework/premium/extensions/woocommerce-extra/offcanvas-filter.php:18,
4085
- #: build_tmp/build/framework/premium/extensions/woocommerce-extra/offcanvas-filter.php:18
4086
  msgid "Widgets"
4087
  msgstr ""
4088
 
4089
- #: framework/premium/extensions/woocommerce-extra/offcanvas-filter.php:36,
4090
- #: build_tmp/build/framework/premium/extensions/woocommerce-extra/offcanvas-filter.php:36
4091
  msgid "Widgets Vertical Spacing"
4092
  msgstr ""
4093
 
4094
- #: framework/premium/extensions/woocommerce-extra/offcanvas-filter.php:51,
4095
- #: build_tmp/build/framework/premium/extensions/woocommerce-extra/offcanvas-filter.php:51
4096
  msgid "Widgets Title Font"
4097
  msgstr ""
4098
 
4099
- #: framework/premium/extensions/woocommerce-extra/offcanvas-filter.php:59,
4100
- #: build_tmp/build/framework/premium/extensions/woocommerce-extra/offcanvas-filter.php:59
4101
  msgid "Widgets Title Font Color"
4102
  msgstr ""
4103
 
4104
- #: framework/premium/extensions/woocommerce-extra/offcanvas-filter.php:107,
4105
- #: build_tmp/build/framework/premium/extensions/woocommerce-extra/offcanvas-filter.php:107
4106
  msgid "Widgets Font"
4107
  msgstr ""
4108
 
4109
- #: framework/premium/extensions/woocommerce-extra/offcanvas-filter.php:116,
4110
- #: build_tmp/build/framework/premium/extensions/woocommerce-extra/offcanvas-filter.php:116
4111
  msgid "Widgets Font Color"
4112
  msgstr ""
4113
 
4114
  #: framework/premium/extensions/woocommerce-extra/offcanvas-filter.php:138,
4115
- #: build_tmp/build/framework/premium/extensions/woocommerce-extra/offcanvas-filter.php:138,
4116
  #: framework/premium/features/premium-header/items/contacts/options.php:472,
4117
  #: framework/premium/features/premium-header/items/contacts/options.php:515,
4118
- #: framework/premium/features/premium-header/items/contacts/options.php:555,
4119
- #: build_tmp/build/framework/premium/features/premium-header/items/contacts/options.php:472,
4120
- #: build_tmp/build/framework/premium/features/premium-header/items/contacts/options.php:515,
4121
- #: build_tmp/build/framework/premium/features/premium-header/items/contacts/options.php:555
4122
  msgid "Text Initial"
4123
  msgstr ""
4124
 
4125
  #: framework/premium/extensions/woocommerce-extra/offcanvas-filter.php:149,
4126
- #: build_tmp/build/framework/premium/extensions/woocommerce-extra/offcanvas-filter.php:149,
4127
  #: framework/premium/features/premium-header/items/contacts/options.php:484,
4128
  #: framework/premium/features/premium-header/items/contacts/options.php:525,
4129
- #: framework/premium/features/premium-header/items/contacts/options.php:565,
4130
- #: build_tmp/build/framework/premium/features/premium-header/items/contacts/options.php:484,
4131
- #: build_tmp/build/framework/premium/features/premium-header/items/contacts/options.php:525,
4132
- #: build_tmp/build/framework/premium/features/premium-header/items/contacts/options.php:565
4133
  msgid "Link Hover"
4134
  msgstr ""
4135
 
4136
- #: framework/premium/extensions/woocommerce-extra/offcanvas-filter.php:160,
4137
- #: build_tmp/build/framework/premium/extensions/woocommerce-extra/offcanvas-filter.php:160
4138
  msgid "Filter Button & Panel"
4139
  msgstr ""
4140
 
4141
- #: framework/premium/extensions/woocommerce-extra/offcanvas-filter.php:169,
4142
- #: build_tmp/build/framework/premium/extensions/woocommerce-extra/offcanvas-filter.php:169
4143
  msgid "Filter Icon Type"
4144
  msgstr ""
4145
 
4146
- #: framework/premium/extensions/woocommerce-extra/offcanvas-filter.php:207,
4147
- #: build_tmp/build/framework/premium/extensions/woocommerce-extra/offcanvas-filter.php:207
4148
  msgid "Filter Button Visibility"
4149
  msgstr ""
4150
 
4151
- #: framework/premium/extensions/woocommerce-extra/offcanvas-filter.php:230,
4152
- #: build_tmp/build/framework/premium/extensions/woocommerce-extra/offcanvas-filter.php:230
4153
  msgid "Panel Reveal"
4154
  msgstr ""
4155
 
4156
- #: framework/premium/extensions/woocommerce-extra/offcanvas-filter.php:237,
4157
- #: build_tmp/build/framework/premium/extensions/woocommerce-extra/offcanvas-filter.php:237
4158
  msgid "Left Side"
4159
  msgstr ""
4160
 
4161
- #: framework/premium/extensions/woocommerce-extra/offcanvas-filter.php:238,
4162
- #: build_tmp/build/framework/premium/extensions/woocommerce-extra/offcanvas-filter.php:238
4163
  msgid "Right Side"
4164
  msgstr ""
4165
 
4166
- #: framework/premium/extensions/woocommerce-extra/offcanvas-filter.php:243,
4167
- #: build_tmp/build/framework/premium/extensions/woocommerce-extra/offcanvas-filter.php:243
4168
  msgid "Panel Width"
4169
  msgstr ""
4170
 
4171
- #: framework/premium/extensions/woocommerce-extra/offcanvas-filter.php:284,
4172
- #: build_tmp/build/framework/premium/extensions/woocommerce-extra/offcanvas-filter.php:284
4173
  msgid "Panel Background"
4174
  msgstr ""
4175
 
4176
- #: framework/premium/extensions/woocommerce-extra/offcanvas-filter.php:316,
4177
- #: build_tmp/build/framework/premium/extensions/woocommerce-extra/offcanvas-filter.php:316
4178
  msgid "Panel Shadow"
4179
  msgstr ""
4180
 
4181
  #: framework/premium/extensions/woocommerce-extra/offcanvas-filter.php:335,
4182
- #: framework/features/header/items/account/options.php:1093,
4183
- #: build_tmp/build/framework/premium/extensions/woocommerce-extra/offcanvas-filter.php:335,
4184
- #: build_tmp/build/framework/features/header/items/account/options.php:1093
4185
  msgid "Close Button Type"
4186
  msgstr ""
4187
 
4188
  #: framework/premium/extensions/woocommerce-extra/offcanvas-filter.php:344,
4189
- #: framework/features/header/items/account/options.php:1102,
4190
- #: build_tmp/build/framework/premium/extensions/woocommerce-extra/offcanvas-filter.php:344,
4191
- #: build_tmp/build/framework/features/header/items/account/options.php:1102
4192
  msgid "Simple"
4193
  msgstr ""
4194
 
4195
  #: framework/premium/extensions/woocommerce-extra/offcanvas-filter.php:345,
4196
- #: framework/features/header/items/account/options.php:1103,
4197
- #: build_tmp/build/framework/premium/extensions/woocommerce-extra/offcanvas-filter.php:345,
4198
- #: build_tmp/build/framework/features/header/items/account/options.php:1103
4199
  msgid "Border"
4200
  msgstr ""
4201
 
4202
  #: framework/premium/extensions/woocommerce-extra/offcanvas-filter.php:386,
4203
- #: framework/features/header/items/account/options.php:1146,
4204
- #: build_tmp/build/framework/premium/extensions/woocommerce-extra/offcanvas-filter.php:386,
4205
- #: build_tmp/build/framework/features/header/items/account/options.php:1146
4206
  msgid "Border Color"
4207
  msgstr ""
4208
 
4209
- #: framework/premium/extensions/woocommerce-extra/readme.php:4,
4210
- #: build_tmp/build/framework/premium/extensions/woocommerce-extra/readme.php:4
4211
  msgid ""
4212
  "After installing and activating the WooCommerce Extra extension you will "
4213
  "have these features:"
4214
  msgstr ""
4215
 
4216
- #: framework/premium/extensions/woocommerce-extra/readme.php:10,
4217
- #: build_tmp/build/framework/premium/extensions/woocommerce-extra/readme.php:10
4218
  msgid "Product Quick View"
4219
  msgstr ""
4220
 
@@ -4222,334 +3001,252 @@ msgstr ""
4222
  #: framework/premium/extensions/woocommerce-extra/readme.php:29,
4223
  #: framework/premium/extensions/woocommerce-extra/readme.php:44,
4224
  #: framework/premium/extensions/woocommerce-extra/readme.php:59,
4225
- #: framework/premium/extensions/woocommerce-extra/readme.php:74,
4226
- #: build_tmp/build/framework/premium/extensions/woocommerce-extra/readme.php:14,
4227
- #: build_tmp/build/framework/premium/extensions/woocommerce-extra/readme.php:29,
4228
- #: build_tmp/build/framework/premium/extensions/woocommerce-extra/readme.php:44,
4229
- #: build_tmp/build/framework/premium/extensions/woocommerce-extra/readme.php:59,
4230
- #: build_tmp/build/framework/premium/extensions/woocommerce-extra/readme.php:74
4231
  msgid "Navigate to %s."
4232
  msgstr ""
4233
 
4234
- #: framework/premium/extensions/woocommerce-extra/readme.php:17,
4235
- #: build_tmp/build/framework/premium/extensions/woocommerce-extra/readme.php:17
4236
  msgid "Customizer ➝ WooCommerce ➝ Product Archives ➝ Card Options ➝ Quick View"
4237
  msgstr ""
4238
 
4239
- #: framework/premium/extensions/woocommerce-extra/readme.php:32,
4240
- #: build_tmp/build/framework/premium/extensions/woocommerce-extra/readme.php:32
4241
  msgid "Customizer ➝ WooCommerce ➝ Single Product ➝ Floating Cart"
4242
  msgstr ""
4243
 
4244
- #: framework/premium/extensions/woocommerce-extra/readme.php:40,
4245
- #: build_tmp/build/framework/premium/extensions/woocommerce-extra/readme.php:40
4246
  msgid "Advanced Gallery & Slider"
4247
  msgstr ""
4248
 
4249
- #: framework/premium/extensions/woocommerce-extra/readme.php:47,
4250
- #: build_tmp/build/framework/premium/extensions/woocommerce-extra/readme.php:47
4251
  msgid "Customizer ➝ WooCommerce ➝ Single Product ➝ Gallery Options"
4252
  msgstr ""
4253
 
4254
- #: framework/premium/extensions/woocommerce-extra/readme.php:55,
4255
- #: build_tmp/build/framework/premium/extensions/woocommerce-extra/readme.php:55
4256
  msgid "Share Box"
4257
  msgstr ""
4258
 
4259
- #: framework/premium/extensions/woocommerce-extra/readme.php:62,
4260
- #: build_tmp/build/framework/premium/extensions/woocommerce-extra/readme.php:62
4261
  msgid "Customizer ➝ WooCommerce ➝ Single Product ➝ Share Box"
4262
  msgstr ""
4263
 
4264
- #: framework/premium/extensions/woocommerce-extra/readme.php:77,
4265
- #: build_tmp/build/framework/premium/extensions/woocommerce-extra/readme.php:77
4266
  msgid "Customizer ➝ WooCommerce ➝ General ➝ Products Wishlist"
4267
  msgstr ""
4268
 
4269
- #: framework/premium/features/content-blocks/admin-ui.php:17,
4270
- #: build_tmp/build/framework/premium/features/content-blocks/admin-ui.php:17
4271
  msgid "Enable"
4272
  msgstr ""
4273
 
4274
- #: framework/premium/features/content-blocks/admin-ui.php:18,
4275
- #: build_tmp/build/framework/premium/features/content-blocks/admin-ui.php:18
4276
  msgid "Disable"
4277
  msgstr ""
4278
 
4279
- #: framework/premium/features/content-blocks/admin-ui.php:69,
4280
- #: build_tmp/build/framework/premium/features/content-blocks/admin-ui.php:69
4281
  msgid "Enabled %s content block."
4282
  msgid_plural "Enabled %s content blocks."
4283
  msgstr[0] ""
4284
  msgstr[1] ""
4285
 
4286
- #: framework/premium/features/content-blocks/admin-ui.php:94,
4287
- #: build_tmp/build/framework/premium/features/content-blocks/admin-ui.php:94
4288
  msgid "Disabled %s content block."
4289
  msgid_plural "Disabled %s content blocks."
4290
  msgstr[0] ""
4291
  msgstr[1] ""
4292
 
4293
- #: framework/premium/features/content-blocks/admin-ui.php:120,
4294
- #: build_tmp/build/framework/premium/features/content-blocks/admin-ui.php:120
4295
  #: framework/premium/static/js/hooks/CreateHook.js:68
4296
  msgid "Custom Content/Hooks"
4297
  msgstr ""
4298
 
4299
- #: framework/premium/features/content-blocks/admin-ui.php:121,
4300
- #: build_tmp/build/framework/premium/features/content-blocks/admin-ui.php:121
4301
  #: framework/premium/static/js/hooks/CreateHook.js:77
4302
  msgid "Popup"
4303
  msgstr ""
4304
 
4305
- #: framework/premium/features/content-blocks/admin-ui.php:122,
4306
- #: build_tmp/build/framework/premium/features/content-blocks/admin-ui.php:122
4307
  msgid "404 Page"
4308
  msgstr ""
4309
 
4310
  #: framework/premium/features/content-blocks/admin-ui.php:123,
4311
  #: framework/premium/features/content-blocks/hooks-manager.php:50,
4312
- #: framework/premium/features/content-blocks/hooks-manager.php:59,
4313
- #: build_tmp/build/framework/premium/features/content-blocks/admin-ui.php:123,
4314
- #: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:50,
4315
- #: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:59
4316
  msgid "Header"
4317
  msgstr ""
4318
 
4319
  #: framework/premium/features/content-blocks/admin-ui.php:124,
4320
  #: framework/premium/features/content-blocks/hooks-manager.php:890,
4321
  #: framework/premium/features/content-blocks/hooks-manager.php:898,
4322
- #: framework/premium/features/content-blocks/hooks-manager.php:906,
4323
- #: build_tmp/build/framework/premium/features/content-blocks/admin-ui.php:124,
4324
- #: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:890,
4325
- #: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:898,
4326
- #: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:906
4327
  msgid "Footer"
4328
  msgstr ""
4329
 
4330
- #: framework/premium/features/content-blocks/admin-ui.php:125,
4331
- #: build_tmp/build/framework/premium/features/content-blocks/admin-ui.php:125
4332
  msgid "Archive"
4333
  msgstr ""
4334
 
4335
- #: framework/premium/features/content-blocks/admin-ui.php:126,
4336
- #: build_tmp/build/framework/premium/features/content-blocks/admin-ui.php:126
4337
  msgid "Single"
4338
  msgstr ""
4339
 
4340
- #: framework/premium/features/content-blocks/admin-ui.php:131,
4341
- #: build_tmp/build/framework/premium/features/content-blocks/admin-ui.php:131
4342
  msgid "All types"
4343
  msgstr ""
4344
 
4345
- #: framework/premium/features/content-blocks/admin-ui.php:197,
4346
- #: build_tmp/build/framework/premium/features/content-blocks/admin-ui.php:197
4347
  msgid "Location/Trigger"
4348
  msgstr ""
4349
 
4350
- #: framework/premium/features/content-blocks/admin-ui.php:198,
4351
- #: build_tmp/build/framework/premium/features/content-blocks/admin-ui.php:198
4352
  msgid "Conditions"
4353
  msgstr ""
4354
 
4355
- #: framework/premium/features/content-blocks/admin-ui.php:199,
4356
- #: build_tmp/build/framework/premium/features/content-blocks/admin-ui.php:199
4357
  msgid "Output"
4358
  msgstr ""
4359
 
4360
- #: framework/premium/features/content-blocks/admin-ui.php:200,
4361
- #: build_tmp/build/framework/premium/features/content-blocks/admin-ui.php:200
4362
  msgid "Enable/Disable"
4363
  msgstr ""
4364
 
4365
  #: framework/premium/features/content-blocks/admin-ui.php:226,
4366
- #: framework/premium/features/content-blocks/options/popup.php:163,
4367
- #: build_tmp/build/framework/premium/features/content-blocks/admin-ui.php:226,
4368
- #: build_tmp/build/framework/premium/features/content-blocks/options/popup.php:163
4369
  msgid "On scroll"
4370
  msgstr ""
4371
 
4372
  #: framework/premium/features/content-blocks/admin-ui.php:227,
4373
- #: framework/premium/features/content-blocks/options/popup.php:164,
4374
- #: build_tmp/build/framework/premium/features/content-blocks/admin-ui.php:227,
4375
- #: build_tmp/build/framework/premium/features/content-blocks/options/popup.php:164
4376
  msgid "On scroll to element"
4377
  msgstr ""
4378
 
4379
  #: framework/premium/features/content-blocks/admin-ui.php:228,
4380
- #: framework/premium/features/content-blocks/options/popup.php:165,
4381
- #: build_tmp/build/framework/premium/features/content-blocks/admin-ui.php:228,
4382
- #: build_tmp/build/framework/premium/features/content-blocks/options/popup.php:165
4383
  msgid "On page load"
4384
  msgstr ""
4385
 
4386
  #: framework/premium/features/content-blocks/admin-ui.php:229,
4387
- #: framework/premium/features/content-blocks/options/popup.php:166,
4388
- #: build_tmp/build/framework/premium/features/content-blocks/admin-ui.php:229,
4389
- #: build_tmp/build/framework/premium/features/content-blocks/options/popup.php:166
4390
  msgid "After inactivity"
4391
  msgstr ""
4392
 
4393
  #: framework/premium/features/content-blocks/admin-ui.php:230,
4394
- #: framework/premium/features/content-blocks/options/popup.php:167,
4395
- #: build_tmp/build/framework/premium/features/content-blocks/admin-ui.php:230,
4396
- #: build_tmp/build/framework/premium/features/content-blocks/options/popup.php:167
4397
  msgid "After x time"
4398
  msgstr ""
4399
 
4400
  #: framework/premium/features/content-blocks/admin-ui.php:231,
4401
- #: framework/premium/features/content-blocks/options/popup.php:168,
4402
- #: build_tmp/build/framework/premium/features/content-blocks/admin-ui.php:231,
4403
- #: build_tmp/build/framework/premium/features/content-blocks/options/popup.php:168
4404
  msgid "After x pages"
4405
  msgstr ""
4406
 
4407
  #: framework/premium/features/content-blocks/admin-ui.php:232,
4408
- #: framework/premium/features/content-blocks/options/popup.php:169,
4409
- #: build_tmp/build/framework/premium/features/content-blocks/admin-ui.php:232,
4410
- #: build_tmp/build/framework/premium/features/content-blocks/options/popup.php:169
4411
  msgid "On page exit intent"
4412
  msgstr ""
4413
 
4414
- #: framework/premium/features/content-blocks/admin-ui.php:236,
4415
- #: build_tmp/build/framework/premium/features/content-blocks/admin-ui.php:236
4416
  msgid "Down"
4417
  msgstr ""
4418
 
4419
- #: framework/premium/features/content-blocks/admin-ui.php:237,
4420
- #: build_tmp/build/framework/premium/features/content-blocks/admin-ui.php:237
4421
  msgid "Up"
4422
  msgstr ""
4423
 
4424
- #: framework/premium/features/content-blocks/hooks-manager.php:11,
4425
- #: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:11
4426
  msgid "WP head"
4427
  msgstr ""
4428
 
4429
  #: framework/premium/features/content-blocks/hooks-manager.php:13,
4430
  #: framework/premium/features/content-blocks/hooks-manager.php:22,
4431
  #: framework/premium/features/content-blocks/hooks-manager.php:32,
4432
- #: framework/premium/features/content-blocks/hooks-manager.php:41,
4433
- #: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:13,
4434
- #: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:22,
4435
- #: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:32,
4436
- #: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:41
4437
  msgid "Head"
4438
  msgstr ""
4439
 
4440
- #: framework/premium/features/content-blocks/hooks-manager.php:20,
4441
- #: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:20
4442
  msgid "WP head start"
4443
  msgstr ""
4444
 
4445
- #: framework/premium/features/content-blocks/hooks-manager.php:30,
4446
- #: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:30
4447
  msgid "WP head end"
4448
  msgstr ""
4449
 
4450
- #: framework/premium/features/content-blocks/hooks-manager.php:39,
4451
- #: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:39
4452
  msgid "WP body open"
4453
  msgstr ""
4454
 
4455
- #: framework/premium/features/content-blocks/hooks-manager.php:48,
4456
- #: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:48
4457
  msgid "Header before"
4458
  msgstr ""
4459
 
4460
- #: framework/premium/features/content-blocks/hooks-manager.php:57,
4461
- #: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:57
4462
  msgid "Header after"
4463
  msgstr ""
4464
 
4465
- #: framework/premium/features/content-blocks/hooks-manager.php:66,
4466
- #: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:66
4467
  msgid "Desktop top"
4468
  msgstr ""
4469
 
4470
  #: framework/premium/features/content-blocks/hooks-manager.php:68,
4471
  #: framework/premium/features/content-blocks/hooks-manager.php:77,
4472
  #: framework/premium/features/content-blocks/hooks-manager.php:86,
4473
- #: framework/premium/features/content-blocks/hooks-manager.php:95,
4474
- #: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:68,
4475
- #: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:77,
4476
- #: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:86,
4477
- #: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:95
4478
  msgid "Header offcanvas"
4479
  msgstr ""
4480
 
4481
- #: framework/premium/features/content-blocks/hooks-manager.php:75,
4482
- #: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:75
4483
  msgid "Desktop bottom"
4484
  msgstr ""
4485
 
4486
- #: framework/premium/features/content-blocks/hooks-manager.php:84,
4487
- #: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:84
4488
  msgid "Mobile top"
4489
  msgstr ""
4490
 
4491
- #: framework/premium/features/content-blocks/hooks-manager.php:93,
4492
- #: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:93
4493
  msgid "Mobile bottom"
4494
  msgstr ""
4495
 
4496
- #: framework/premium/features/content-blocks/hooks-manager.php:102,
4497
- #: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:102
4498
  msgid "Sidebar before"
4499
  msgstr ""
4500
 
4501
  #: framework/premium/features/content-blocks/hooks-manager.php:103,
4502
  #: framework/premium/features/content-blocks/hooks-manager.php:110,
4503
  #: framework/premium/features/content-blocks/hooks-manager.php:117,
4504
- #: framework/premium/features/content-blocks/hooks-manager.php:124,
4505
- #: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:103,
4506
- #: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:110,
4507
- #: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:117,
4508
- #: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:124
4509
  msgid "Left/Right sidebar"
4510
  msgstr ""
4511
 
4512
- #: framework/premium/features/content-blocks/hooks-manager.php:109,
4513
- #: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:109
4514
  msgid "Sidebar start"
4515
  msgstr ""
4516
 
4517
- #: framework/premium/features/content-blocks/hooks-manager.php:116,
4518
- #: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:116
4519
  msgid "Sidebar end"
4520
  msgstr ""
4521
 
4522
- #: framework/premium/features/content-blocks/hooks-manager.php:123,
4523
- #: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:123
4524
  msgid "Sidebar after"
4525
  msgstr ""
4526
 
4527
- #: framework/premium/features/content-blocks/hooks-manager.php:130,
4528
- #: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:130
4529
  msgid "Dynamic sidebar before"
4530
  msgstr ""
4531
 
4532
  #: framework/premium/features/content-blocks/hooks-manager.php:131,
4533
  #: framework/premium/features/content-blocks/hooks-manager.php:138,
4534
- #: framework/premium/features/content-blocks/hooks-manager.php:146,
4535
- #: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:131,
4536
- #: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:138,
4537
- #: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:146
4538
  msgid "All widget areas"
4539
  msgstr ""
4540
 
4541
- #: framework/premium/features/content-blocks/hooks-manager.php:137,
4542
- #: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:137
4543
  msgid "Dynamic sidebar"
4544
  msgstr ""
4545
 
4546
- #: framework/premium/features/content-blocks/hooks-manager.php:145,
4547
- #: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:145
4548
  msgid "Dynamic sidebar after"
4549
  msgstr ""
4550
 
4551
- #: framework/premium/features/content-blocks/hooks-manager.php:154,
4552
- #: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:154
4553
  msgid "Before section"
4554
  msgstr ""
4555
 
@@ -4562,99 +3259,69 @@ msgstr ""
4562
  #: framework/premium/features/content-blocks/hooks-manager.php:203,
4563
  #: framework/premium/features/content-blocks/hooks-manager.php:211,
4564
  #: framework/premium/features/content-blocks/hooks-manager.php:219,
4565
- #: framework/premium/features/content-blocks/hooks-manager.php:227,
4566
- #: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:155,
4567
- #: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:163,
4568
- #: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:171,
4569
- #: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:179,
4570
- #: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:187,
4571
- #: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:195,
4572
- #: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:203,
4573
- #: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:211,
4574
- #: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:219,
4575
- #: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:227
4576
  msgid "Page/post title"
4577
  msgstr ""
4578
 
4579
  #: framework/premium/features/content-blocks/hooks-manager.php:162,
4580
  #: framework/premium/features/content-blocks/hooks-manager.php:280,
4581
- #: framework/premium/features/content-blocks/hooks-manager.php:322,
4582
- #: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:162,
4583
- #: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:280,
4584
- #: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:322
4585
  msgid "Before title"
4586
  msgstr ""
4587
 
4588
- #: framework/premium/features/content-blocks/hooks-manager.php:170,
4589
- #: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:170
4590
  msgid "Before description"
4591
  msgstr ""
4592
 
4593
- #: framework/premium/features/content-blocks/hooks-manager.php:178,
4594
- #: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:178
4595
  msgid "Before breadcrumbs"
4596
  msgstr ""
4597
 
4598
- #: framework/premium/features/content-blocks/hooks-manager.php:186,
4599
- #: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:186
4600
  msgid "Before post meta"
4601
  msgstr ""
4602
 
4603
  #: framework/premium/features/content-blocks/hooks-manager.php:194,
4604
  #: framework/premium/features/content-blocks/hooks-manager.php:287,
4605
- #: framework/premium/features/content-blocks/hooks-manager.php:329,
4606
- #: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:194,
4607
- #: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:287,
4608
- #: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:329
4609
  msgid "After title"
4610
  msgstr ""
4611
 
4612
- #: framework/premium/features/content-blocks/hooks-manager.php:202,
4613
- #: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:202
4614
  msgid "After description"
4615
  msgstr ""
4616
 
4617
- #: framework/premium/features/content-blocks/hooks-manager.php:210,
4618
- #: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:210
4619
  msgid "After breadcrumbs"
4620
  msgstr ""
4621
 
4622
- #: framework/premium/features/content-blocks/hooks-manager.php:218,
4623
- #: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:218
4624
  msgid "After post meta"
4625
  msgstr ""
4626
 
4627
- #: framework/premium/features/content-blocks/hooks-manager.php:226,
4628
- #: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:226
4629
  msgid "After section"
4630
  msgstr ""
4631
 
4632
- #: framework/premium/features/content-blocks/hooks-manager.php:234,
4633
- #: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:234
4634
  msgid "Before content"
4635
  msgstr ""
4636
 
4637
  #: framework/premium/features/content-blocks/hooks-manager.php:242,
4638
- #: framework/premium/features/content-blocks/hooks-manager.php:415,
4639
- #: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:242,
4640
- #: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:415
4641
  msgid "Top content"
4642
  msgstr ""
4643
 
4644
  #: framework/premium/features/content-blocks/hooks-manager.php:250,
4645
- #: framework/premium/features/content-blocks/hooks-manager.php:437,
4646
- #: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:250,
4647
- #: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:437
4648
  msgid "Bottom content"
4649
  msgstr ""
4650
 
4651
- #: framework/premium/features/content-blocks/hooks-manager.php:258,
4652
- #: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:258
4653
  msgid "After content"
4654
  msgstr ""
4655
 
4656
- #: framework/premium/features/content-blocks/hooks-manager.php:266,
4657
- #: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:266
4658
  msgid "Before comments"
4659
  msgstr ""
4660
 
@@ -4663,33 +3330,23 @@ msgstr ""
4663
  #: framework/premium/features/content-blocks/hooks-manager.php:281,
4664
  #: framework/premium/features/content-blocks/hooks-manager.php:288,
4665
  #: framework/premium/features/content-blocks/hooks-manager.php:295,
4666
- #: framework/premium/features/content-blocks/hooks-manager.php:302,
4667
- #: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:267,
4668
- #: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:274,
4669
- #: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:281,
4670
- #: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:288,
4671
- #: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:295,
4672
- #: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:302
4673
  msgid "Comments"
4674
  msgstr ""
4675
 
4676
- #: framework/premium/features/content-blocks/hooks-manager.php:273,
4677
- #: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:273
4678
  msgid "Top comments"
4679
  msgstr ""
4680
 
4681
- #: framework/premium/features/content-blocks/hooks-manager.php:294,
4682
- #: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:294
4683
  msgid "Bottom comments"
4684
  msgstr ""
4685
 
4686
- #: framework/premium/features/content-blocks/hooks-manager.php:301,
4687
- #: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:301
4688
  msgid "After comments"
4689
  msgstr ""
4690
 
4691
- #: framework/premium/features/content-blocks/hooks-manager.php:308,
4692
- #: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:308
4693
  msgid "Before related posts"
4694
  msgstr ""
4695
 
@@ -4702,105 +3359,75 @@ msgstr ""
4702
  #: framework/premium/features/content-blocks/hooks-manager.php:351,
4703
  #: framework/premium/features/content-blocks/hooks-manager.php:358,
4704
  #: framework/premium/features/content-blocks/hooks-manager.php:366,
4705
- #: framework/premium/features/content-blocks/hooks-manager.php:373,
4706
- #: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:309,
4707
- #: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:316,
4708
- #: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:323,
4709
- #: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:330,
4710
- #: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:337,
4711
- #: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:344,
4712
- #: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:351,
4713
- #: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:358,
4714
- #: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:366,
4715
- #: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:373
4716
  msgid "Related posts"
4717
  msgstr ""
4718
 
4719
- #: framework/premium/features/content-blocks/hooks-manager.php:315,
4720
- #: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:315
4721
  msgid "Related posts top"
4722
  msgstr ""
4723
 
4724
- #: framework/premium/features/content-blocks/hooks-manager.php:336,
4725
- #: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:336
4726
  msgid "Card top"
4727
  msgstr ""
4728
 
4729
- #: framework/premium/features/content-blocks/hooks-manager.php:343,
4730
- #: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:343
4731
  msgid "Before featured image"
4732
  msgstr ""
4733
 
4734
- #: framework/premium/features/content-blocks/hooks-manager.php:350,
4735
- #: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:350
4736
  msgid "After featured image"
4737
  msgstr ""
4738
 
4739
- #: framework/premium/features/content-blocks/hooks-manager.php:357,
4740
- #: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:357
4741
  msgid "Card bottom"
4742
  msgstr ""
4743
 
4744
- #: framework/premium/features/content-blocks/hooks-manager.php:365,
4745
- #: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:365
4746
  msgid "Related posts bottom"
4747
  msgstr ""
4748
 
4749
- #: framework/premium/features/content-blocks/hooks-manager.php:372,
4750
- #: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:372
4751
  msgid "After related posts"
4752
  msgstr ""
4753
 
4754
  #: framework/premium/features/content-blocks/hooks-manager.php:379,
4755
- #: framework/premium/extensions/post-types-extra/includes/dynamic-data.php:459,
4756
- #: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:379,
4757
- #: build_tmp/build/framework/premium/extensions/post-types-extra/includes/dynamic-data.php:459
4758
  msgid "Before"
4759
  msgstr ""
4760
 
4761
  #: framework/premium/features/content-blocks/hooks-manager.php:380,
4762
- #: framework/premium/features/content-blocks/hooks-manager.php:387,
4763
- #: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:380,
4764
- #: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:387
4765
  msgid "Loop"
4766
  msgstr ""
4767
 
4768
  #: framework/premium/features/content-blocks/hooks-manager.php:386,
4769
- #: framework/premium/extensions/post-types-extra/includes/dynamic-data.php:470,
4770
- #: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:386,
4771
- #: build_tmp/build/framework/premium/extensions/post-types-extra/includes/dynamic-data.php:470
4772
  msgid "After"
4773
  msgstr ""
4774
 
4775
- #: framework/premium/features/content-blocks/hooks-manager.php:393,
4776
- #: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:393
4777
  msgid "Start"
4778
  msgstr ""
4779
 
4780
  #: framework/premium/features/content-blocks/hooks-manager.php:394,
4781
- #: framework/premium/features/content-blocks/hooks-manager.php:401,
4782
- #: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:394,
4783
- #: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:401
4784
  msgid "Loop card"
4785
  msgstr ""
4786
 
4787
- #: framework/premium/features/content-blocks/hooks-manager.php:400,
4788
- #: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:400
4789
  msgid "End"
4790
  msgstr ""
4791
 
4792
- #: framework/premium/features/content-blocks/hooks-manager.php:423,
4793
- #: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:423
4794
  msgid "After certain number of blocks"
4795
  msgstr ""
4796
 
4797
- #: framework/premium/features/content-blocks/hooks-manager.php:430,
4798
- #: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:430
4799
  msgid "Before certain number of headings"
4800
  msgstr ""
4801
 
4802
- #: framework/premium/features/content-blocks/hooks-manager.php:453,
4803
- #: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:453
4804
  msgid "Login form start"
4805
  msgstr ""
4806
 
@@ -4813,568 +3440,441 @@ msgstr ""
4813
  #: framework/premium/features/content-blocks/hooks-manager.php:496,
4814
  #: framework/premium/features/content-blocks/hooks-manager.php:503,
4815
  #: framework/premium/features/content-blocks/hooks-manager.php:510,
4816
- #: framework/premium/features/content-blocks/hooks-manager.php:517,
4817
- #: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:454,
4818
- #: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:461,
4819
- #: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:468,
4820
- #: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:475,
4821
- #: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:482,
4822
- #: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:489,
4823
- #: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:496,
4824
- #: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:503,
4825
- #: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:510,
4826
- #: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:517
4827
  msgid "Auth forms"
4828
  msgstr ""
4829
 
4830
- #: framework/premium/features/content-blocks/hooks-manager.php:460,
4831
- #: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:460
4832
  msgid "Login form end"
4833
  msgstr ""
4834
 
4835
- #: framework/premium/features/content-blocks/hooks-manager.php:467,
4836
- #: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:467
4837
  msgid "Login form modal start"
4838
  msgstr ""
4839
 
4840
- #: framework/premium/features/content-blocks/hooks-manager.php:474,
4841
- #: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:474
4842
  msgid "Login form modal end"
4843
  msgstr ""
4844
 
4845
- #: framework/premium/features/content-blocks/hooks-manager.php:481,
4846
- #: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:481
4847
  msgid "Register form start"
4848
  msgstr ""
4849
 
4850
- #: framework/premium/features/content-blocks/hooks-manager.php:488,
4851
- #: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:488
4852
  msgid "Register form end"
4853
  msgstr ""
4854
 
4855
- #: framework/premium/features/content-blocks/hooks-manager.php:495,
4856
- #: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:495
4857
  msgid "Register form modal start"
4858
  msgstr ""
4859
 
4860
- #: framework/premium/features/content-blocks/hooks-manager.php:502,
4861
- #: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:502
4862
  msgid "Register form modal end"
4863
  msgstr ""
4864
 
4865
- #: framework/premium/features/content-blocks/hooks-manager.php:509,
4866
- #: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:509
4867
  msgid "Lost password form modal start"
4868
  msgstr ""
4869
 
4870
- #: framework/premium/features/content-blocks/hooks-manager.php:516,
4871
- #: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:516
4872
  msgid "Lost password form modal end"
4873
  msgstr ""
4874
 
4875
- #: framework/premium/features/content-blocks/hooks-manager.php:524,
4876
- #: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:524
4877
  msgid "Before main content"
4878
  msgstr ""
4879
 
4880
- #: framework/premium/features/content-blocks/hooks-manager.php:530,
4881
- #: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:530
4882
  msgid "After main content"
4883
  msgstr ""
4884
 
4885
- #: framework/premium/features/content-blocks/hooks-manager.php:536,
4886
- #: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:536
4887
  msgid "Offcanvas Filters Top"
4888
  msgstr ""
4889
 
4890
- #: framework/premium/features/content-blocks/hooks-manager.php:542,
4891
- #: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:542
4892
  msgid "Offcanvas Filters Bottom"
4893
  msgstr ""
4894
 
4895
- #: framework/premium/features/content-blocks/hooks-manager.php:545,
4896
- #: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:545
4897
  msgid "WooCommerce Global"
4898
  msgstr ""
4899
 
4900
- #: framework/premium/features/content-blocks/hooks-manager.php:550,
4901
- #: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:550
4902
  msgid "Archive description"
4903
  msgstr ""
4904
 
4905
- #: framework/premium/features/content-blocks/hooks-manager.php:555,
4906
- #: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:555
4907
  msgid "Before shop loop"
4908
  msgstr ""
4909
 
4910
- #: framework/premium/features/content-blocks/hooks-manager.php:572,
4911
- #: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:572
4912
  msgid "Before shop loop item title"
4913
  msgstr ""
4914
 
4915
- #: framework/premium/features/content-blocks/hooks-manager.php:577,
4916
- #: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:577
4917
  msgid "After shop loop item title"
4918
  msgstr ""
4919
 
4920
- #: framework/premium/features/content-blocks/hooks-manager.php:582,
4921
- #: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:582
4922
  msgid "Before shop loop item price"
4923
  msgstr ""
4924
 
4925
- #: framework/premium/features/content-blocks/hooks-manager.php:587,
4926
- #: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:587
4927
  msgid "After shop loop item price"
4928
  msgstr ""
4929
 
4930
- #: framework/premium/features/content-blocks/hooks-manager.php:592,
4931
- #: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:592
4932
  msgid "Before shop loop item actions"
4933
  msgstr ""
4934
 
4935
- #: framework/premium/features/content-blocks/hooks-manager.php:597,
4936
- #: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:597
4937
  msgid "After shop loop item actions"
4938
  msgstr ""
4939
 
4940
- #: framework/premium/features/content-blocks/hooks-manager.php:602,
4941
- #: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:602
4942
  msgid "After shop loop"
4943
  msgstr ""
4944
 
4945
- #: framework/premium/features/content-blocks/hooks-manager.php:604,
4946
- #: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:604
4947
  msgid "WooCommerce Archive"
4948
  msgstr ""
4949
 
4950
- #: framework/premium/features/content-blocks/hooks-manager.php:609,
4951
- #: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:609
4952
  msgid "Before single product"
4953
  msgstr ""
4954
 
4955
- #: framework/premium/features/content-blocks/hooks-manager.php:627,
4956
- #: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:627
4957
  msgid "Product meta start"
4958
  msgstr ""
4959
 
4960
- #: framework/premium/features/content-blocks/hooks-manager.php:631,
4961
- #: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:631
4962
  msgid "Product meta end"
4963
  msgstr ""
4964
 
4965
- #: framework/premium/features/content-blocks/hooks-manager.php:635,
4966
- #: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:635
4967
  msgid "Share"
4968
  msgstr ""
4969
 
4970
- #: framework/premium/features/content-blocks/hooks-manager.php:639,
4971
- #: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:639
4972
  msgid "After single product"
4973
  msgstr ""
4974
 
4975
- #: framework/premium/features/content-blocks/hooks-manager.php:645,
4976
- #: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:645
4977
  msgid "Before single product excerpt"
4978
  msgstr ""
4979
 
4980
- #: framework/premium/features/content-blocks/hooks-manager.php:650,
4981
- #: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:650
4982
  msgid "After single product excerpt"
4983
  msgstr ""
4984
 
4985
- #: framework/premium/features/content-blocks/hooks-manager.php:655,
4986
- #: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:655
4987
  msgid "Before single product tabs"
4988
  msgstr ""
4989
 
4990
- #: framework/premium/features/content-blocks/hooks-manager.php:661,
4991
- #: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:661
4992
  msgid "After single product tabs"
4993
  msgstr ""
4994
 
4995
- #: framework/premium/features/content-blocks/hooks-manager.php:665,
4996
- #: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:665
4997
  msgid "WooCommerce Product"
4998
  msgstr ""
4999
 
5000
- #: framework/premium/features/content-blocks/hooks-manager.php:670,
5001
- #: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:670
5002
  msgid "Cart is empty"
5003
  msgstr ""
5004
 
5005
- #: framework/premium/features/content-blocks/hooks-manager.php:674,
5006
- #: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:674
5007
  msgid "Before cart"
5008
  msgstr ""
5009
 
5010
- #: framework/premium/features/content-blocks/hooks-manager.php:678,
5011
- #: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:678
5012
  msgid "Before cart table"
5013
  msgstr ""
5014
 
5015
- #: framework/premium/features/content-blocks/hooks-manager.php:682,
5016
- #: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:682
5017
  msgid "Before cart contents"
5018
  msgstr ""
5019
 
5020
- #: framework/premium/features/content-blocks/hooks-manager.php:686,
5021
- #: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:686
5022
  msgid "Cart contents"
5023
  msgstr ""
5024
 
5025
- #: framework/premium/features/content-blocks/hooks-manager.php:690,
5026
- #: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:690
5027
  msgid "After cart contents"
5028
  msgstr ""
5029
 
5030
- #: framework/premium/features/content-blocks/hooks-manager.php:694,
5031
- #: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:694
5032
  msgid "Cart coupon"
5033
  msgstr ""
5034
 
5035
- #: framework/premium/features/content-blocks/hooks-manager.php:698,
5036
- #: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:698
5037
  msgid "Cart actions"
5038
  msgstr ""
5039
 
5040
- #: framework/premium/features/content-blocks/hooks-manager.php:702,
5041
- #: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:702
5042
  msgid "After cart table"
5043
  msgstr ""
5044
 
5045
- #: framework/premium/features/content-blocks/hooks-manager.php:706,
5046
- #: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:706
5047
  msgid "Cart collaterals"
5048
  msgstr ""
5049
 
5050
- #: framework/premium/features/content-blocks/hooks-manager.php:710,
5051
- #: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:710
5052
  msgid "Before cart totals"
5053
  msgstr ""
5054
 
5055
- #: framework/premium/features/content-blocks/hooks-manager.php:714,
5056
- #: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:714
5057
  msgid "Cart totals before order total"
5058
  msgstr ""
5059
 
5060
- #: framework/premium/features/content-blocks/hooks-manager.php:718,
5061
- #: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:718
5062
  msgid "Cart totals after order total"
5063
  msgstr ""
5064
 
5065
- #: framework/premium/features/content-blocks/hooks-manager.php:722,
5066
- #: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:722
5067
  msgid "Proceed to checkout"
5068
  msgstr ""
5069
 
5070
- #: framework/premium/features/content-blocks/hooks-manager.php:726,
5071
- #: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:726
5072
  msgid "After cart totals"
5073
  msgstr ""
5074
 
5075
- #: framework/premium/features/content-blocks/hooks-manager.php:730,
5076
- #: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:730
5077
  msgid "After cart"
5078
  msgstr ""
5079
 
5080
- #: framework/premium/features/content-blocks/hooks-manager.php:735,
5081
- #: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:735
5082
  msgid "Before Mini Cart"
5083
  msgstr ""
5084
 
5085
- #: framework/premium/features/content-blocks/hooks-manager.php:740,
5086
- #: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:740
5087
  msgid "Before Mini Cart Contents"
5088
  msgstr ""
5089
 
5090
- #: framework/premium/features/content-blocks/hooks-manager.php:745,
5091
- #: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:745
5092
  msgid "Mini Cart Contents"
5093
  msgstr ""
5094
 
5095
- #: framework/premium/features/content-blocks/hooks-manager.php:750,
5096
- #: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:750
5097
  msgid "Widget Shopping Cart Before Buttons"
5098
  msgstr ""
5099
 
5100
- #: framework/premium/features/content-blocks/hooks-manager.php:755,
5101
- #: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:755
5102
  msgid "Widget Shopping Cart After Buttons"
5103
  msgstr ""
5104
 
5105
- #: framework/premium/features/content-blocks/hooks-manager.php:760,
5106
- #: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:760
5107
  msgid "After Mini Cart"
5108
  msgstr ""
5109
 
5110
- #: framework/premium/features/content-blocks/hooks-manager.php:762,
5111
- #: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:762
5112
  msgid "WooCommerce Cart"
5113
  msgstr ""
5114
 
5115
- #: framework/premium/features/content-blocks/hooks-manager.php:768,
5116
- #: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:768
5117
  msgid "Before checkout form"
5118
  msgstr ""
5119
 
5120
- #: framework/premium/features/content-blocks/hooks-manager.php:772,
5121
- #: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:772
5122
  msgid "Before customer details"
5123
  msgstr ""
5124
 
5125
- #: framework/premium/features/content-blocks/hooks-manager.php:776,
5126
- #: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:776
5127
  msgid "After customer details"
5128
  msgstr ""
5129
 
5130
- #: framework/premium/features/content-blocks/hooks-manager.php:780,
5131
- #: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:780
5132
  msgid "Checkout billing"
5133
  msgstr ""
5134
 
5135
- #: framework/premium/features/content-blocks/hooks-manager.php:784,
5136
- #: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:784
5137
  msgid "Before checkout billing form"
5138
  msgstr ""
5139
 
5140
- #: framework/premium/features/content-blocks/hooks-manager.php:788,
5141
- #: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:788
5142
  msgid "After checkout billing form"
5143
  msgstr ""
5144
 
5145
- #: framework/premium/features/content-blocks/hooks-manager.php:792,
5146
- #: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:792
5147
  msgid "Before order notes"
5148
  msgstr ""
5149
 
5150
- #: framework/premium/features/content-blocks/hooks-manager.php:796,
5151
- #: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:796
5152
  msgid "After order notes"
5153
  msgstr ""
5154
 
5155
- #: framework/premium/features/content-blocks/hooks-manager.php:800,
5156
- #: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:800
5157
  msgid "Checkout shipping"
5158
  msgstr ""
5159
 
5160
- #: framework/premium/features/content-blocks/hooks-manager.php:804,
5161
- #: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:804
5162
  msgid "Checkout before order review"
5163
  msgstr ""
5164
 
5165
- #: framework/premium/features/content-blocks/hooks-manager.php:808,
5166
- #: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:808
5167
  msgid "Checkout order review"
5168
  msgstr ""
5169
 
5170
- #: framework/premium/features/content-blocks/hooks-manager.php:812,
5171
- #: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:812
5172
  msgid "Review order before cart contents"
5173
  msgstr ""
5174
 
5175
- #: framework/premium/features/content-blocks/hooks-manager.php:816,
5176
- #: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:816
5177
  msgid "Review order after cart contents"
5178
  msgstr ""
5179
 
5180
- #: framework/premium/features/content-blocks/hooks-manager.php:820,
5181
- #: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:820
5182
  msgid "Review order before order total"
5183
  msgstr ""
5184
 
5185
- #: framework/premium/features/content-blocks/hooks-manager.php:824,
5186
- #: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:824
5187
  msgid "Review order after order total"
5188
  msgstr ""
5189
 
5190
- #: framework/premium/features/content-blocks/hooks-manager.php:828,
5191
- #: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:828
5192
  msgid "Review order before payment"
5193
  msgstr ""
5194
 
5195
- #: framework/premium/features/content-blocks/hooks-manager.php:832,
5196
- #: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:832
5197
  msgid "Review order before submit"
5198
  msgstr ""
5199
 
5200
- #: framework/premium/features/content-blocks/hooks-manager.php:836,
5201
- #: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:836
5202
  msgid "Review order after submit"
5203
  msgstr ""
5204
 
5205
- #: framework/premium/features/content-blocks/hooks-manager.php:840,
5206
- #: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:840
5207
  msgid "Review order after payment"
5208
  msgstr ""
5209
 
5210
- #: framework/premium/features/content-blocks/hooks-manager.php:844,
5211
- #: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:844
5212
  msgid "Checkout after order review"
5213
  msgstr ""
5214
 
5215
- #: framework/premium/features/content-blocks/hooks-manager.php:848,
5216
- #: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:848
5217
  msgid "After checkout form"
5218
  msgstr ""
5219
 
5220
- #: framework/premium/features/content-blocks/hooks-manager.php:851,
5221
- #: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:851
5222
  msgid "WooCommerce Checkout"
5223
  msgstr ""
5224
 
5225
- #: framework/premium/features/content-blocks/hooks-manager.php:857,
5226
- #: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:857
5227
  msgid "Before my account"
5228
  msgstr ""
5229
 
5230
- #: framework/premium/features/content-blocks/hooks-manager.php:861,
5231
- #: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:861
5232
  msgid "Before account navigation"
5233
  msgstr ""
5234
 
5235
- #: framework/premium/features/content-blocks/hooks-manager.php:865,
5236
- #: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:865
5237
  msgid "Account navigation"
5238
  msgstr ""
5239
 
5240
- #: framework/premium/features/content-blocks/hooks-manager.php:869,
5241
- #: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:869
5242
  msgid "After account navigation"
5243
  msgstr ""
5244
 
5245
- #: framework/premium/features/content-blocks/hooks-manager.php:873,
5246
- #: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:873
5247
  msgid "Account content"
5248
  msgstr ""
5249
 
5250
- #: framework/premium/features/content-blocks/hooks-manager.php:877,
5251
- #: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:877
5252
  msgid "Account dashboard"
5253
  msgstr ""
5254
 
5255
- #: framework/premium/features/content-blocks/hooks-manager.php:881,
5256
- #: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:881
5257
  msgid "After my account"
5258
  msgstr ""
5259
 
5260
  #: framework/premium/features/content-blocks/hooks-manager.php:883,
5261
  #: framework/features/header/items/account/options.php:17,
5262
- #: framework/features/header/items/account/options.php:18,
5263
- #: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:883,
5264
- #: build_tmp/build/framework/features/header/items/account/options.php:17,
5265
- #: build_tmp/build/framework/features/header/items/account/options.php:18
5266
  msgid "WooCommerce Account"
5267
  msgstr ""
5268
 
5269
- #: framework/premium/features/content-blocks/hooks-manager.php:889,
5270
- #: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:889
5271
  msgid "WP footer"
5272
  msgstr ""
5273
 
5274
- #: framework/premium/features/content-blocks/hooks-manager.php:897,
5275
- #: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:897
5276
  msgid "Footer before"
5277
  msgstr ""
5278
 
5279
- #: framework/premium/features/content-blocks/hooks-manager.php:905,
5280
- #: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:905
5281
  msgid "Footer after"
5282
  msgstr ""
5283
 
5284
- #: framework/premium/features/content-blocks/hooks-manager.php:920,
5285
- #: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:920
5286
  msgid "Custom Hook (%s)"
5287
  msgstr ""
5288
 
5289
  #: framework/premium/features/content-blocks/hooks-manager.php:926,
5290
- #: framework/premium/features/content-blocks/options/hook.php:197,
5291
- #: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:926,
5292
- #: build_tmp/build/framework/premium/features/content-blocks/options/hook.php:197
5293
  #: framework/premium/static/js/options/MultipleLocationsSelect.js:90
5294
  msgid "After Block Number"
5295
  msgstr ""
5296
 
5297
  #: framework/premium/features/content-blocks/hooks-manager.php:932,
5298
- #: framework/premium/features/content-blocks/options/hook.php:214,
5299
- #: build_tmp/build/framework/premium/features/content-blocks/hooks-manager.php:932,
5300
- #: build_tmp/build/framework/premium/features/content-blocks/options/hook.php:214
5301
  #: framework/premium/static/js/options/MultipleLocationsSelect.js:112
5302
  msgid "Before Heading Number"
5303
  msgstr ""
5304
 
5305
- #: framework/extensions/widgets/widgets/ct-about-me/widget.php:13,
5306
- #: build_tmp/build/framework/extensions/widgets/widgets/ct-about-me/widget.php:13
5307
  msgid "About Me"
5308
  msgstr ""
5309
 
5310
- #: framework/extensions/widgets/widgets/ct-about-me/widget.php:14,
5311
- #: build_tmp/build/framework/extensions/widgets/widgets/ct-about-me/widget.php:14
5312
  msgid "About me"
5313
  msgstr ""
5314
 
5315
  #: framework/extensions/widgets/widgets/ct-advertisement/options.php:18,
5316
  #: framework/extensions/widgets/widgets/ct-advertisement/view.php:12,
5317
  #: framework/extensions/widgets/widgets/ct-advertisement/widget.php:13,
5318
- #: framework/extensions/widgets/widgets/ct-advertisement/widget.php:14,
5319
- #: build_tmp/build/framework/extensions/widgets/widgets/ct-advertisement/options.php:18,
5320
- #: build_tmp/build/framework/extensions/widgets/widgets/ct-advertisement/view.php:12,
5321
- #: build_tmp/build/framework/extensions/widgets/widgets/ct-advertisement/widget.php:13,
5322
- #: build_tmp/build/framework/extensions/widgets/widgets/ct-advertisement/widget.php:14
5323
  msgid "Advertisement"
5324
  msgstr ""
5325
 
5326
- #: framework/extensions/widgets/widgets/ct-advertisement/options.php:31,
5327
- #: build_tmp/build/framework/extensions/widgets/widgets/ct-advertisement/options.php:31
5328
  msgid "Code"
5329
  msgstr ""
5330
 
5331
- #: framework/extensions/widgets/widgets/ct-advertisement/options.php:32,
5332
- #: build_tmp/build/framework/extensions/widgets/widgets/ct-advertisement/options.php:32
5333
  msgid "Image"
5334
  msgstr ""
5335
 
5336
- #: framework/extensions/widgets/widgets/ct-advertisement/options.php:42,
5337
- #: build_tmp/build/framework/extensions/widgets/widgets/ct-advertisement/options.php:42
5338
  msgid "Ad Code"
5339
  msgstr ""
5340
 
5341
- #: framework/extensions/widgets/widgets/ct-advertisement/options.php:58,
5342
- #: build_tmp/build/framework/extensions/widgets/widgets/ct-advertisement/options.php:58
5343
  msgid "Upload Image"
5344
  msgstr ""
5345
 
5346
  #: framework/extensions/widgets/widgets/ct-advertisement/options.php:62,
5347
- #: framework/extensions/widgets/widgets/ct-quote/options.php:66,
5348
- #: build_tmp/build/framework/extensions/widgets/widgets/ct-advertisement/options.php:62,
5349
- #: build_tmp/build/framework/extensions/widgets/widgets/ct-quote/options.php:66
5350
  msgid "Select Image"
5351
  msgstr ""
5352
 
5353
  #: framework/extensions/widgets/widgets/ct-advertisement/options.php:63,
5354
- #: framework/extensions/widgets/widgets/ct-quote/options.php:67,
5355
- #: build_tmp/build/framework/extensions/widgets/widgets/ct-advertisement/options.php:63,
5356
- #: build_tmp/build/framework/extensions/widgets/widgets/ct-quote/options.php:67
5357
  msgid "Change Image"
5358
  msgstr ""
5359
 
5360
  #: framework/extensions/widgets/widgets/ct-advertisement/options.php:67,
5361
- #: framework/extensions/widgets/widgets/ct-posts/options.php:126,
5362
- #: build_tmp/build/framework/extensions/widgets/widgets/ct-advertisement/options.php:67,
5363
- #: build_tmp/build/framework/extensions/widgets/widgets/ct-posts/options.php:126
5364
  msgid "Image Ratio"
5365
  msgstr ""
5366
 
5367
- #: framework/extensions/widgets/widgets/ct-advertisement/options.php:75,
5368
- #: build_tmp/build/framework/extensions/widgets/widgets/ct-advertisement/options.php:75
5369
  msgid "Ad URL"
5370
  msgstr ""
5371
 
5372
  #: framework/extensions/widgets/widgets/ct-contact-info/options.php:19,
5373
  #: framework/extensions/widgets/widgets/ct-contact-info/view.php:12,
5374
- #: framework/extensions/widgets/widgets/ct-contact-info/widget.php:13,
5375
- #: build_tmp/build/framework/extensions/widgets/widgets/ct-contact-info/options.php:19,
5376
- #: build_tmp/build/framework/extensions/widgets/widgets/ct-contact-info/view.php:12,
5377
- #: build_tmp/build/framework/extensions/widgets/widgets/ct-contact-info/widget.php:13
5378
  msgid "Contact Info"
5379
  msgstr ""
5380
 
@@ -5383,13 +3883,7 @@ msgstr ""
5383
  #: framework/extensions/widgets/widgets/ct-contact-info/view.php:24,
5384
  #: framework/premium/features/premium-header/items/contacts/options.php:17,
5385
  #: framework/premium/features/premium-header/items/contacts/options.php:46,
5386
- #: framework/premium/features/premium-header/items/contacts/view.php:22,
5387
- #: build_tmp/build/framework/extensions/widgets/widgets/ct-contact-info/options.php:44,
5388
- #: build_tmp/build/framework/extensions/widgets/widgets/ct-contact-info/options.php:74,
5389
- #: build_tmp/build/framework/extensions/widgets/widgets/ct-contact-info/view.php:24,
5390
- #: build_tmp/build/framework/premium/features/premium-header/items/contacts/options.php:17,
5391
- #: build_tmp/build/framework/premium/features/premium-header/items/contacts/options.php:46,
5392
- #: build_tmp/build/framework/premium/features/premium-header/items/contacts/view.php:22
5393
  msgid "Address:"
5394
  msgstr ""
5395
 
@@ -5398,13 +3892,7 @@ msgstr ""
5398
  #: framework/extensions/widgets/widgets/ct-contact-info/view.php:31,
5399
  #: framework/premium/features/premium-header/items/contacts/options.php:24,
5400
  #: framework/premium/features/premium-header/items/contacts/options.php:82,
5401
- #: framework/premium/features/premium-header/items/contacts/view.php:29,
5402
- #: build_tmp/build/framework/extensions/widgets/widgets/ct-contact-info/options.php:51,
5403
- #: build_tmp/build/framework/extensions/widgets/widgets/ct-contact-info/options.php:135,
5404
- #: build_tmp/build/framework/extensions/widgets/widgets/ct-contact-info/view.php:31,
5405
- #: build_tmp/build/framework/premium/features/premium-header/items/contacts/options.php:24,
5406
- #: build_tmp/build/framework/premium/features/premium-header/items/contacts/options.php:82,
5407
- #: build_tmp/build/framework/premium/features/premium-header/items/contacts/view.php:29
5408
  msgid "Phone:"
5409
  msgstr ""
5410
 
@@ -5413,20 +3901,12 @@ msgstr ""
5413
  #: framework/extensions/widgets/widgets/ct-contact-info/view.php:39,
5414
  #: framework/premium/features/premium-header/items/contacts/options.php:32,
5415
  #: framework/premium/features/premium-header/items/contacts/options.php:118,
5416
- #: framework/premium/features/premium-header/items/contacts/view.php:37,
5417
- #: build_tmp/build/framework/extensions/widgets/widgets/ct-contact-info/options.php:59,
5418
- #: build_tmp/build/framework/extensions/widgets/widgets/ct-contact-info/options.php:195,
5419
- #: build_tmp/build/framework/extensions/widgets/widgets/ct-contact-info/view.php:39,
5420
- #: build_tmp/build/framework/premium/features/premium-header/items/contacts/options.php:32,
5421
- #: build_tmp/build/framework/premium/features/premium-header/items/contacts/options.php:118,
5422
- #: build_tmp/build/framework/premium/features/premium-header/items/contacts/view.php:37
5423
  msgid "Mobile:"
5424
  msgstr ""
5425
 
5426
  #: framework/extensions/widgets/widgets/ct-contact-info/options.php:68,
5427
- #: framework/premium/features/premium-header/items/contacts/options.php:41,
5428
- #: build_tmp/build/framework/extensions/widgets/widgets/ct-contact-info/options.php:68,
5429
- #: build_tmp/build/framework/premium/features/premium-header/items/contacts/options.php:41
5430
  msgid "Address"
5431
  msgstr ""
5432
 
@@ -5443,547 +3923,408 @@ msgstr ""
5443
  #: framework/premium/features/premium-header/items/contacts/options.php:167,
5444
  #: framework/premium/features/premium-header/items/contacts/options.php:203,
5445
  #: framework/premium/features/premium-header/items/contacts/options.php:239,
5446
- #: framework/premium/features/premium-header/items/contacts/options.php:275,
5447
- #: build_tmp/build/framework/extensions/widgets/widgets/ct-contact-info/options.php:87,
5448
- #: build_tmp/build/framework/extensions/widgets/widgets/ct-contact-info/options.php:148,
5449
- #: build_tmp/build/framework/extensions/widgets/widgets/ct-contact-info/options.php:208,
5450
- #: build_tmp/build/framework/extensions/widgets/widgets/ct-contact-info/options.php:268,
5451
- #: build_tmp/build/framework/extensions/widgets/widgets/ct-contact-info/options.php:328,
5452
- #: build_tmp/build/framework/extensions/widgets/widgets/ct-contact-info/options.php:388,
5453
- #: build_tmp/build/framework/extensions/widgets/widgets/ct-contact-info/options.php:448,
5454
- #: build_tmp/build/framework/premium/features/premium-header/items/contacts/options.php:59,
5455
- #: build_tmp/build/framework/premium/features/premium-header/items/contacts/options.php:95,
5456
- #: build_tmp/build/framework/premium/features/premium-header/items/contacts/options.php:131,
5457
- #: build_tmp/build/framework/premium/features/premium-header/items/contacts/options.php:167,
5458
- #: build_tmp/build/framework/premium/features/premium-header/items/contacts/options.php:203,
5459
- #: build_tmp/build/framework/premium/features/premium-header/items/contacts/options.php:239,
5460
- #: build_tmp/build/framework/premium/features/premium-header/items/contacts/options.php:275
5461
  msgid "Link (optional)"
5462
  msgstr ""
5463
 
5464
  #: framework/extensions/widgets/widgets/ct-contact-info/options.php:248,
5465
- #: framework/premium/features/premium-header/items/contacts/options.php:149,
5466
- #: build_tmp/build/framework/extensions/widgets/widgets/ct-contact-info/options.php:248,
5467
- #: build_tmp/build/framework/premium/features/premium-header/items/contacts/options.php:149
5468
  msgid "Work Hours"
5469
  msgstr ""
5470
 
5471
  #: framework/extensions/widgets/widgets/ct-contact-info/options.php:255,
5472
- #: framework/premium/features/premium-header/items/contacts/options.php:154,
5473
- #: build_tmp/build/framework/extensions/widgets/widgets/ct-contact-info/options.php:255,
5474
- #: build_tmp/build/framework/premium/features/premium-header/items/contacts/options.php:154
5475
  msgid "Opening hours"
5476
  msgstr ""
5477
 
5478
  #: framework/extensions/widgets/widgets/ct-contact-info/options.php:308,
5479
- #: framework/premium/features/premium-header/items/contacts/options.php:185,
5480
- #: build_tmp/build/framework/extensions/widgets/widgets/ct-contact-info/options.php:308,
5481
- #: build_tmp/build/framework/premium/features/premium-header/items/contacts/options.php:185
5482
  msgid "Fax"
5483
  msgstr ""
5484
 
5485
  #: framework/extensions/widgets/widgets/ct-contact-info/options.php:315,
5486
- #: framework/premium/features/premium-header/items/contacts/options.php:190,
5487
- #: build_tmp/build/framework/extensions/widgets/widgets/ct-contact-info/options.php:315,
5488
- #: build_tmp/build/framework/premium/features/premium-header/items/contacts/options.php:190
5489
  msgid "Fax:"
5490
  msgstr ""
5491
 
5492
  #: framework/extensions/widgets/widgets/ct-contact-info/options.php:375,
5493
- #: framework/premium/features/premium-header/items/contacts/options.php:226,
5494
- #: build_tmp/build/framework/extensions/widgets/widgets/ct-contact-info/options.php:375,
5495
- #: build_tmp/build/framework/premium/features/premium-header/items/contacts/options.php:226
5496
  msgid "Email:"
5497
  msgstr ""
5498
 
5499
  #: framework/extensions/widgets/widgets/ct-contact-info/options.php:428,
5500
- #: framework/premium/features/premium-header/items/contacts/options.php:257,
5501
- #: build_tmp/build/framework/extensions/widgets/widgets/ct-contact-info/options.php:428,
5502
- #: build_tmp/build/framework/premium/features/premium-header/items/contacts/options.php:257
5503
  msgid "Website"
5504
  msgstr ""
5505
 
5506
  #: framework/extensions/widgets/widgets/ct-contact-info/options.php:435,
5507
- #: framework/premium/features/premium-header/items/contacts/options.php:262,
5508
- #: build_tmp/build/framework/extensions/widgets/widgets/ct-contact-info/options.php:435,
5509
- #: build_tmp/build/framework/premium/features/premium-header/items/contacts/options.php:262
5510
  msgid "Website:"
5511
  msgstr ""
5512
 
5513
  #: framework/extensions/widgets/widgets/ct-contact-info/options.php:496,
5514
  #: framework/extensions/widgets/widgets/ct-socials/options.php:99,
5515
- #: framework/premium/features/content-blocks/options/archive.php:46,
5516
- #: build_tmp/build/framework/extensions/widgets/widgets/ct-contact-info/options.php:496,
5517
- #: build_tmp/build/framework/extensions/widgets/widgets/ct-socials/options.php:99,
5518
- #: build_tmp/build/framework/premium/features/content-blocks/options/archive.php:46
5519
  msgid "Small"
5520
  msgstr ""
5521
 
5522
  #: framework/extensions/widgets/widgets/ct-contact-info/options.php:498,
5523
- #: framework/extensions/widgets/widgets/ct-socials/options.php:101,
5524
- #: build_tmp/build/framework/extensions/widgets/widgets/ct-contact-info/options.php:498,
5525
- #: build_tmp/build/framework/extensions/widgets/widgets/ct-socials/options.php:101
5526
  msgid "Large"
5527
  msgstr ""
5528
 
5529
  #: framework/extensions/widgets/widgets/ct-contact-info/options.php:503,
5530
  #: framework/extensions/widgets/widgets/ct-socials/options.php:106,
5531
- #: framework/premium/features/premium-header/items/contacts/options.php:331,
5532
- #: build_tmp/build/framework/extensions/widgets/widgets/ct-contact-info/options.php:503,
5533
- #: build_tmp/build/framework/extensions/widgets/widgets/ct-socials/options.php:106,
5534
- #: build_tmp/build/framework/premium/features/premium-header/items/contacts/options.php:331
5535
  msgid "Icons Shape Type"
5536
  msgstr ""
5537
 
5538
  #: framework/extensions/widgets/widgets/ct-contact-info/options.php:511,
5539
  #: framework/extensions/widgets/widgets/ct-socials/options.php:114,
5540
- #: framework/premium/features/premium-header/items/contacts/options.php:339,
5541
- #: build_tmp/build/framework/extensions/widgets/widgets/ct-contact-info/options.php:511,
5542
- #: build_tmp/build/framework/extensions/widgets/widgets/ct-socials/options.php:114,
5543
- #: build_tmp/build/framework/premium/features/premium-header/items/contacts/options.php:339
5544
  msgid "Rounded"
5545
  msgstr ""
5546
 
5547
  #: framework/extensions/widgets/widgets/ct-contact-info/options.php:512,
5548
  #: framework/extensions/widgets/widgets/ct-socials/options.php:115,
5549
- #: framework/premium/features/premium-header/items/contacts/options.php:340,
5550
- #: build_tmp/build/framework/extensions/widgets/widgets/ct-contact-info/options.php:512,
5551
- #: build_tmp/build/framework/extensions/widgets/widgets/ct-socials/options.php:115,
5552
- #: build_tmp/build/framework/premium/features/premium-header/items/contacts/options.php:340
5553
  msgid "Square"
5554
  msgstr ""
5555
 
5556
  #: framework/extensions/widgets/widgets/ct-contact-info/options.php:522,
5557
  #: framework/extensions/widgets/widgets/ct-socials/options.php:125,
5558
- #: framework/premium/features/premium-header/items/contacts/options.php:351,
5559
- #: build_tmp/build/framework/extensions/widgets/widgets/ct-contact-info/options.php:522,
5560
- #: build_tmp/build/framework/extensions/widgets/widgets/ct-socials/options.php:125,
5561
- #: build_tmp/build/framework/premium/features/premium-header/items/contacts/options.php:351
5562
  msgid "Shape Fill Type"
5563
  msgstr ""
5564
 
5565
  #: framework/extensions/widgets/widgets/ct-contact-info/options.php:529,
5566
  #: framework/extensions/widgets/widgets/ct-socials/options.php:132,
5567
- #: framework/premium/features/premium-header/items/contacts/options.php:358,
5568
- #: build_tmp/build/framework/extensions/widgets/widgets/ct-contact-info/options.php:529,
5569
- #: build_tmp/build/framework/extensions/widgets/widgets/ct-socials/options.php:132,
5570
- #: build_tmp/build/framework/premium/features/premium-header/items/contacts/options.php:358
5571
  msgid "Solid"
5572
  msgstr ""
5573
 
5574
  #: framework/extensions/widgets/widgets/ct-contact-info/options.php:530,
5575
  #: framework/extensions/widgets/widgets/ct-socials/options.php:133,
5576
- #: framework/premium/features/premium-header/items/contacts/options.php:359,
5577
- #: build_tmp/build/framework/extensions/widgets/widgets/ct-contact-info/options.php:530,
5578
- #: build_tmp/build/framework/extensions/widgets/widgets/ct-socials/options.php:133,
5579
- #: build_tmp/build/framework/premium/features/premium-header/items/contacts/options.php:359
5580
  msgid "Outline"
5581
  msgstr ""
5582
 
5583
- #: framework/extensions/widgets/widgets/ct-contact-info/widget.php:14,
5584
- #: build_tmp/build/framework/extensions/widgets/widgets/ct-contact-info/widget.php:14
5585
  msgid "Contact info"
5586
  msgstr ""
5587
 
5588
- #: framework/extensions/widgets/widgets/ct-facebook/options.php:22,
5589
- #: build_tmp/build/framework/extensions/widgets/widgets/ct-facebook/options.php:22
5590
  msgid "Page URL"
5591
  msgstr ""
5592
 
5593
- #: framework/extensions/widgets/widgets/ct-facebook/options.php:30,
5594
- #: build_tmp/build/framework/extensions/widgets/widgets/ct-facebook/options.php:30
5595
  msgid "Profile Photos"
5596
  msgstr ""
5597
 
5598
- #: framework/extensions/widgets/widgets/ct-facebook/options.php:37,
5599
- #: build_tmp/build/framework/extensions/widgets/widgets/ct-facebook/options.php:37
5600
  msgid "Timeline"
5601
  msgstr ""
5602
 
5603
- #: framework/extensions/widgets/widgets/ct-facebook/options.php:44,
5604
- #: build_tmp/build/framework/extensions/widgets/widgets/ct-facebook/options.php:44
5605
  msgid "Cover Photo"
5606
  msgstr ""
5607
 
5608
- #: framework/extensions/widgets/widgets/ct-facebook/options.php:51,
5609
- #: build_tmp/build/framework/extensions/widgets/widgets/ct-facebook/options.php:51
5610
  msgid "Small Header"
5611
  msgstr ""
5612
 
5613
- #: framework/extensions/widgets/widgets/ct-facebook/widget.php:14,
5614
- #: build_tmp/build/framework/extensions/widgets/widgets/ct-facebook/widget.php:14
5615
  msgid "Facebook like box"
5616
  msgstr ""
5617
 
5618
- #: framework/extensions/widgets/widgets/ct-posts/options.php:103,
5619
- #: build_tmp/build/framework/extensions/widgets/widgets/ct-posts/options.php:103
5620
  msgid "Widget Design"
5621
  msgstr ""
5622
 
5623
- #: framework/extensions/widgets/widgets/ct-posts/options.php:108,
5624
- #: build_tmp/build/framework/extensions/widgets/widgets/ct-posts/options.php:108
5625
  msgid "Without Thumbnails"
5626
  msgstr ""
5627
 
5628
- #: framework/extensions/widgets/widgets/ct-posts/options.php:109,
5629
- #: build_tmp/build/framework/extensions/widgets/widgets/ct-posts/options.php:109
5630
  msgid "Small Thumbnails"
5631
  msgstr ""
5632
 
5633
- #: framework/extensions/widgets/widgets/ct-posts/options.php:110,
5634
- #: build_tmp/build/framework/extensions/widgets/widgets/ct-posts/options.php:110
5635
  msgid "Large Thumbnails"
5636
  msgstr ""
5637
 
5638
- #: framework/extensions/widgets/widgets/ct-posts/options.php:111,
5639
- #: build_tmp/build/framework/extensions/widgets/widgets/ct-posts/options.php:111
5640
  msgid "First Thumbnail Large"
5641
  msgstr ""
5642
 
5643
- #: framework/extensions/widgets/widgets/ct-posts/options.php:112,
5644
- #: build_tmp/build/framework/extensions/widgets/widgets/ct-posts/options.php:112
5645
  msgid "Rounded Thumbnails"
5646
  msgstr ""
5647
 
5648
- #: framework/extensions/widgets/widgets/ct-posts/options.php:113,
5649
- #: build_tmp/build/framework/extensions/widgets/widgets/ct-posts/options.php:113
5650
  msgid "Numbered"
5651
  msgstr ""
5652
 
5653
- #: framework/extensions/widgets/widgets/ct-posts/options.php:193,
5654
- #: build_tmp/build/framework/extensions/widgets/widgets/ct-posts/options.php:193
5655
  msgid "Sort by"
5656
  msgstr ""
5657
 
5658
- #: framework/extensions/widgets/widgets/ct-posts/options.php:199,
5659
- #: build_tmp/build/framework/extensions/widgets/widgets/ct-posts/options.php:199
5660
  msgid "Recent"
5661
  msgstr ""
5662
 
5663
- #: framework/extensions/widgets/widgets/ct-posts/options.php:200,
5664
- #: build_tmp/build/framework/extensions/widgets/widgets/ct-posts/options.php:200
5665
  msgid "Most Commented"
5666
  msgstr ""
5667
 
5668
- #: framework/extensions/widgets/widgets/ct-posts/options.php:201,
5669
- #: build_tmp/build/framework/extensions/widgets/widgets/ct-posts/options.php:201
5670
  msgid "Random"
5671
  msgstr ""
5672
 
5673
- #: framework/extensions/widgets/widgets/ct-posts/options.php:208,
5674
- #: build_tmp/build/framework/extensions/widgets/widgets/ct-posts/options.php:208
5675
  msgid "Order by"
5676
  msgstr ""
5677
 
5678
- #: framework/extensions/widgets/widgets/ct-posts/options.php:214,
5679
- #: build_tmp/build/framework/extensions/widgets/widgets/ct-posts/options.php:214
5680
  msgid "1 Week"
5681
  msgstr ""
5682
 
5683
- #: framework/extensions/widgets/widgets/ct-posts/options.php:215,
5684
- #: build_tmp/build/framework/extensions/widgets/widgets/ct-posts/options.php:215
5685
  msgid "1 Month"
5686
  msgstr ""
5687
 
5688
- #: framework/extensions/widgets/widgets/ct-posts/options.php:216,
5689
- #: build_tmp/build/framework/extensions/widgets/widgets/ct-posts/options.php:216
5690
  msgid "3 Months"
5691
  msgstr ""
5692
 
5693
- #: framework/extensions/widgets/widgets/ct-posts/options.php:217,
5694
- #: build_tmp/build/framework/extensions/widgets/widgets/ct-posts/options.php:217
5695
  msgid "6 Months"
5696
  msgstr ""
5697
 
5698
- #: framework/extensions/widgets/widgets/ct-posts/options.php:218,
5699
- #: build_tmp/build/framework/extensions/widgets/widgets/ct-posts/options.php:218
5700
  msgid "1 Year"
5701
  msgstr ""
5702
 
5703
- #: framework/extensions/widgets/widgets/ct-posts/options.php:225,
5704
- #: build_tmp/build/framework/extensions/widgets/widgets/ct-posts/options.php:225
5705
  msgid "Posts Count"
5706
  msgstr ""
5707
 
5708
- #: framework/extensions/widgets/widgets/ct-posts/options.php:265,
5709
- #: build_tmp/build/framework/extensions/widgets/widgets/ct-posts/options.php:265
5710
  msgid "Pages ID"
5711
  msgstr ""
5712
 
5713
- #: framework/extensions/widgets/widgets/ct-posts/options.php:269,
5714
- #: build_tmp/build/framework/extensions/widgets/widgets/ct-posts/options.php:269
5715
  msgid "Separate pages ID by comma. More info %shere%s."
5716
  msgstr ""
5717
 
5718
- #: framework/extensions/widgets/widgets/ct-posts/options.php:287,
5719
- #: build_tmp/build/framework/extensions/widgets/widgets/ct-posts/options.php:287
5720
  msgid "Pages Count"
5721
  msgstr ""
5722
 
5723
- #: framework/extensions/widgets/widgets/ct-posts/options.php:298,
5724
- #: build_tmp/build/framework/extensions/widgets/widgets/ct-posts/options.php:298
5725
  msgid "Show Date"
5726
  msgstr ""
5727
 
5728
- #: framework/extensions/widgets/widgets/ct-posts/options.php:305,
5729
- #: build_tmp/build/framework/extensions/widgets/widgets/ct-posts/options.php:305
5730
  msgid "Show Comments"
5731
  msgstr ""
5732
 
5733
- #: framework/extensions/widgets/widgets/ct-posts/options.php:312,
5734
- #: build_tmp/build/framework/extensions/widgets/widgets/ct-posts/options.php:312
5735
  msgid "Show Excerpt"
5736
  msgstr ""
5737
 
5738
- #: framework/extensions/widgets/widgets/ct-posts/options.php:324,
5739
- #: build_tmp/build/framework/extensions/widgets/widgets/ct-posts/options.php:324
5740
  msgid "Excerpt Lenght"
5741
  msgstr ""
5742
 
5743
- #: framework/extensions/widgets/widgets/ct-posts/view.php:220,
5744
- #: build_tmp/build/framework/extensions/widgets/widgets/ct-posts/view.php:220
5745
  msgid "1 Comment"
5746
  msgstr ""
5747
 
5748
- #: framework/extensions/widgets/widgets/ct-posts/view.php:220,
5749
- #: build_tmp/build/framework/extensions/widgets/widgets/ct-posts/view.php:220
5750
  msgid "% Comments"
5751
  msgstr ""
5752
 
5753
  #: framework/extensions/widgets/widgets/ct-quote/options.php:18,
5754
  #: framework/extensions/widgets/widgets/ct-quote/view.php:12,
5755
  #: framework/extensions/widgets/widgets/ct-quote/widget.php:13,
5756
- #: framework/extensions/widgets/widgets/ct-quote/widget.php:14,
5757
- #: build_tmp/build/framework/extensions/widgets/widgets/ct-quote/options.php:18,
5758
- #: build_tmp/build/framework/extensions/widgets/widgets/ct-quote/view.php:12,
5759
- #: build_tmp/build/framework/extensions/widgets/widgets/ct-quote/widget.php:13,
5760
- #: build_tmp/build/framework/extensions/widgets/widgets/ct-quote/widget.php:14
5761
  msgid "Quote"
5762
  msgstr ""
5763
 
5764
- #: framework/extensions/widgets/widgets/ct-quote/options.php:46,
5765
- #: build_tmp/build/framework/extensions/widgets/widgets/ct-quote/options.php:46
5766
  msgid "Author Name"
5767
  msgstr ""
5768
 
5769
  #: framework/extensions/widgets/widgets/ct-quote/options.php:49,
5770
- #: framework/extensions/widgets/widgets/ct-quote/view.php:18,
5771
- #: build_tmp/build/framework/extensions/widgets/widgets/ct-quote/options.php:49,
5772
- #: build_tmp/build/framework/extensions/widgets/widgets/ct-quote/view.php:18
5773
  msgid "John Doe"
5774
  msgstr ""
5775
 
5776
- #: framework/extensions/widgets/widgets/ct-quote/options.php:55,
5777
- #: build_tmp/build/framework/extensions/widgets/widgets/ct-quote/options.php:55
5778
  msgid "Author Label"
5779
  msgstr ""
5780
 
5781
- #: framework/extensions/widgets/widgets/ct-quote/options.php:62,
5782
- #: build_tmp/build/framework/extensions/widgets/widgets/ct-quote/options.php:62
5783
  msgid "Author Avatar"
5784
  msgstr ""
5785
 
5786
  #. translators: %s here is the author name
5787
- #: framework/extensions/widgets/widgets/ct-quote/view.php:58,
5788
- #: build_tmp/build/framework/extensions/widgets/widgets/ct-quote/view.php:58
5789
  msgid "By %s"
5790
  msgstr ""
5791
 
5792
  #: framework/extensions/widgets/widgets/ct-socials/options.php:18,
5793
- #: framework/extensions/widgets/widgets/ct-socials/view.php:11,
5794
- #: build_tmp/build/framework/extensions/widgets/widgets/ct-socials/options.php:18,
5795
- #: build_tmp/build/framework/extensions/widgets/widgets/ct-socials/view.php:11
5796
  msgid "Social Icons"
5797
  msgstr ""
5798
 
5799
  #. translators: placeholder here means the actual URL.
5800
- #: framework/extensions/widgets/widgets/ct-socials/options.php:28,
5801
- #: build_tmp/build/framework/extensions/widgets/widgets/ct-socials/options.php:28
5802
  msgid ""
5803
  "Configure the social links in Customizer ➝ General ➝ %sSocial Network "
5804
  "Accounts%s."
5805
  msgstr ""
5806
 
5807
- #: framework/extensions/widgets/widgets/ct-socials/options.php:65,
5808
- #: build_tmp/build/framework/extensions/widgets/widgets/ct-socials/options.php:65
5809
  msgid "Open links in new tab"
5810
  msgstr ""
5811
 
5812
- #: framework/extensions/widgets/widgets/ct-socials/options.php:73,
5813
- #: build_tmp/build/framework/extensions/widgets/widgets/ct-socials/options.php:73
5814
  msgid "Set links to nofollow"
5815
  msgstr ""
5816
 
5817
- #: framework/features/header/items/account/options.php:4,
5818
- #: build_tmp/build/framework/features/header/items/account/options.php:4
5819
  msgid "Profile Page"
5820
  msgstr ""
5821
 
5822
- #: framework/features/header/items/account/options.php:5,
5823
- #: build_tmp/build/framework/features/header/items/account/options.php:5
5824
  msgid "Dashboard Page"
5825
  msgstr ""
5826
 
5827
  #: framework/features/header/items/account/options.php:7,
5828
- #: framework/features/header/items/account/options.php:13,
5829
- #: build_tmp/build/framework/features/header/items/account/options.php:7,
5830
- #: build_tmp/build/framework/features/header/items/account/options.php:13
5831
  msgid "Custom Link"
5832
  msgstr ""
5833
 
5834
- #: framework/features/header/items/account/options.php:8,
5835
- #: build_tmp/build/framework/features/header/items/account/options.php:8
5836
  msgid "Logout"
5837
  msgstr ""
5838
 
5839
- #: framework/features/header/items/account/options.php:12,
5840
- #: build_tmp/build/framework/features/header/items/account/options.php:12
5841
  msgid "Modal"
5842
  msgstr ""
5843
 
5844
- #: framework/features/header/items/account/options.php:28,
5845
- #: build_tmp/build/framework/features/header/items/account/options.php:28
5846
  msgid "Customizing: Logged in State"
5847
  msgstr ""
5848
 
5849
- #: framework/features/header/items/account/options.php:39,
5850
- #: build_tmp/build/framework/features/header/items/account/options.php:39
5851
  msgid "Customizing: Logged out State"
5852
  msgstr ""
5853
 
5854
- #: framework/features/header/items/account/options.php:53,
5855
- #: build_tmp/build/framework/features/header/items/account/options.php:53
5856
  msgid "Logged In Options"
5857
  msgstr ""
5858
 
5859
- #: framework/features/header/items/account/options.php:58,
5860
- #: build_tmp/build/framework/features/header/items/account/options.php:58
5861
  msgid "Logged Out Options"
5862
  msgstr ""
5863
 
5864
- #: framework/features/header/items/account/options.php:78,
5865
- #: framework/features/header/items/account/options.php:363,
5866
- #: build_tmp/build/framework/features/header/items/account/options.php:78,
5867
- #: build_tmp/build/framework/features/header/items/account/options.php:363
5868
  msgid "Account Action"
5869
  msgstr ""
5870
 
5871
- #: framework/features/header/items/account/options.php:91,
5872
- #: build_tmp/build/framework/features/header/items/account/options.php:91
5873
  msgid "Select Menu"
5874
  msgstr ""
5875
 
5876
- #: framework/features/header/items/account/options.php:97,
5877
- #: build_tmp/build/framework/features/header/items/account/options.php:97
5878
  msgid "Select menu..."
5879
  msgstr ""
5880
 
5881
  #. translators: placeholder here means the actual URL.
5882
- #: framework/features/header/items/account/options.php:101,
5883
- #: build_tmp/build/framework/features/header/items/account/options.php:101
5884
  msgid "Manage your menu items in the %sMenus screen%s."
5885
  msgstr ""
5886
 
5887
- #: framework/features/header/items/account/options.php:118,
5888
- #: framework/features/header/items/account/options.php:378,
5889
- #: build_tmp/build/framework/features/header/items/account/options.php:118,
5890
- #: build_tmp/build/framework/features/header/items/account/options.php:378
5891
  msgid "Custom Page Link"
5892
  msgstr ""
5893
 
5894
- #: framework/features/header/items/account/options.php:133,
5895
- #: framework/features/header/items/account/options.php:394,
5896
- #: build_tmp/build/framework/features/header/items/account/options.php:133,
5897
- #: build_tmp/build/framework/features/header/items/account/options.php:394
5898
  msgid "Account Image"
5899
  msgstr ""
5900
 
5901
- #: framework/features/header/items/account/options.php:139,
5902
- #: build_tmp/build/framework/features/header/items/account/options.php:139
5903
  msgid "Avatar"
5904
  msgstr ""
5905
 
5906
- #: framework/features/header/items/account/options.php:152,
5907
- #: build_tmp/build/framework/features/header/items/account/options.php:152
5908
  msgid "Avatar Size"
5909
  msgstr ""
5910
 
5911
- #: framework/features/header/items/account/options.php:237,
5912
- #: framework/features/header/items/account/options.php:479,
5913
- #: build_tmp/build/framework/features/header/items/account/options.php:237,
5914
- #: build_tmp/build/framework/features/header/items/account/options.php:479
5915
  msgid "Type 5"
5916
  msgstr ""
5917
 
5918
- #: framework/features/header/items/account/options.php:242,
5919
- #: framework/features/header/items/account/options.php:484,
5920
- #: build_tmp/build/framework/features/header/items/account/options.php:242,
5921
- #: build_tmp/build/framework/features/header/items/account/options.php:484
5922
  msgid "Type 6"
5923
  msgstr ""
5924
 
5925
- #: framework/features/header/items/account/options.php:321,
5926
- #: build_tmp/build/framework/features/header/items/account/options.php:321
5927
  msgid "Label Type"
5928
  msgstr ""
5929
 
5930
- #: framework/features/header/items/account/options.php:330,
5931
- #: build_tmp/build/framework/features/header/items/account/options.php:330
5932
- #: static/js/screens/SiteExport.js:85
5933
  msgid "Name"
5934
  msgstr ""
5935
 
5936
- #: framework/features/header/items/account/options.php:340,
5937
- #: framework/features/header/items/account/options.php:563,
5938
- #: framework/premium/extensions/woocommerce-extra/header-items/wish-list/options.php:137,
5939
- #: build_tmp/build/framework/features/header/items/account/options.php:340,
5940
- #: build_tmp/build/framework/features/header/items/account/options.php:563,
5941
- #: build_tmp/build/framework/premium/extensions/woocommerce-extra/header-items/wish-list/options.php:137
5942
  msgid "Label Text"
5943
  msgstr ""
5944
 
5945
- #: framework/features/header/items/account/options.php:345,
5946
- #: framework/features/header/items/account/views/login.php:85,
5947
- #: build_tmp/build/framework/features/header/items/account/options.php:345,
5948
- #: build_tmp/build/framework/features/header/items/account/views/login.php:85
5949
  msgid "My Account"
5950
  msgstr ""
5951
 
5952
- #: framework/features/header/items/account/options.php:579,
5953
- #: build_tmp/build/framework/features/header/items/account/options.php:579
5954
  msgid "User Visibility"
5955
  msgstr ""
5956
 
5957
- #: framework/features/header/items/account/options.php:590,
5958
- #: build_tmp/build/framework/features/header/items/account/options.php:590
5959
  msgid "Logged In"
5960
  msgstr ""
5961
 
5962
- #: framework/features/header/items/account/options.php:591,
5963
- #: build_tmp/build/framework/features/header/items/account/options.php:591
5964
  msgid "Logged Out"
5965
  msgstr ""
5966
 
5967
- #: framework/features/header/items/account/options.php:608,
5968
- #: framework/premium/extensions/woocommerce-extra/header-items/wish-list/options.php:167,
5969
- #: build_tmp/build/framework/features/header/items/account/options.php:608,
5970
- #: build_tmp/build/framework/premium/extensions/woocommerce-extra/header-items/wish-list/options.php:167
5971
  msgid "Label Font"
5972
  msgstr ""
5973
 
5974
- #: framework/features/header/items/account/options.php:619,
5975
- #: framework/features/header/items/account/options.php:648,
5976
- #: framework/features/header/items/account/options.php:680,
5977
  #: framework/features/header/items/account/options.php:710,
5978
- #: build_tmp/build/framework/features/header/items/account/options.php:619,
5979
- #: build_tmp/build/framework/features/header/items/account/options.php:648,
5980
- #: build_tmp/build/framework/features/header/items/account/options.php:680,
5981
- #: build_tmp/build/framework/features/header/items/account/options.php:710
5982
  msgid "Label Color"
5983
  msgstr ""
5984
 
5985
- #: framework/features/header/items/account/options.php:624,
5986
- #: framework/features/header/items/account/options.php:770,
5987
  #: framework/premium/extensions/woocommerce-extra/header-items/wish-list/options.php:183,
5988
  #: framework/premium/extensions/woocommerce-extra/header-items/wish-list/options.php:310,
5989
  #: framework/premium/features/premium-header/items/contacts/options.php:425,
@@ -5994,25 +4335,12 @@ msgstr ""
5994
  #: framework/premium/features/premium-header/items/search-input/options.php:199,
5995
  #: framework/premium/features/premium-header/items/search-input/options.php:329,
5996
  #: framework/premium/features/premium-header/items/search-input/options.php:459,
5997
- #: framework/premium/features/premium-header/items/search-input/options.php:595,
5998
- #: build_tmp/build/framework/features/header/items/account/options.php:624,
5999
- #: build_tmp/build/framework/features/header/items/account/options.php:770,
6000
- #: build_tmp/build/framework/premium/extensions/woocommerce-extra/header-items/wish-list/options.php:183,
6001
- #: build_tmp/build/framework/premium/extensions/woocommerce-extra/header-items/wish-list/options.php:310,
6002
- #: build_tmp/build/framework/premium/features/premium-header/items/contacts/options.php:425,
6003
- #: build_tmp/build/framework/premium/features/premium-header/items/contacts/options.php:595,
6004
- #: build_tmp/build/framework/premium/features/premium-header/items/contacts/options.php:742,
6005
- #: build_tmp/build/framework/premium/features/premium-header/items/dark-mode-switcher/options.php:35,
6006
- #: build_tmp/build/framework/premium/features/premium-header/items/language-switcher/options.php:208,
6007
- #: build_tmp/build/framework/premium/features/premium-header/items/search-input/options.php:199,
6008
- #: build_tmp/build/framework/premium/features/premium-header/items/search-input/options.php:329,
6009
- #: build_tmp/build/framework/premium/features/premium-header/items/search-input/options.php:459,
6010
- #: build_tmp/build/framework/premium/features/premium-header/items/search-input/options.php:595
6011
  msgid "Default State"
6012
  msgstr ""
6013
 
6014
- #: framework/features/header/items/account/options.php:629,
6015
- #: framework/features/header/items/account/options.php:775,
6016
  #: framework/premium/extensions/woocommerce-extra/header-items/wish-list/options.php:188,
6017
  #: framework/premium/extensions/woocommerce-extra/header-items/wish-list/options.php:315,
6018
  #: framework/premium/features/premium-header/items/contacts/options.php:430,
@@ -6023,25 +4351,12 @@ msgstr ""
6023
  #: framework/premium/features/premium-header/items/search-input/options.php:204,
6024
  #: framework/premium/features/premium-header/items/search-input/options.php:334,
6025
  #: framework/premium/features/premium-header/items/search-input/options.php:464,
6026
- #: framework/premium/features/premium-header/items/search-input/options.php:600,
6027
- #: build_tmp/build/framework/features/header/items/account/options.php:629,
6028
- #: build_tmp/build/framework/features/header/items/account/options.php:775,
6029
- #: build_tmp/build/framework/premium/extensions/woocommerce-extra/header-items/wish-list/options.php:188,
6030
- #: build_tmp/build/framework/premium/extensions/woocommerce-extra/header-items/wish-list/options.php:315,
6031
- #: build_tmp/build/framework/premium/features/premium-header/items/contacts/options.php:430,
6032
- #: build_tmp/build/framework/premium/features/premium-header/items/contacts/options.php:600,
6033
- #: build_tmp/build/framework/premium/features/premium-header/items/contacts/options.php:750,
6034
- #: build_tmp/build/framework/premium/features/premium-header/items/dark-mode-switcher/options.php:40,
6035
- #: build_tmp/build/framework/premium/features/premium-header/items/language-switcher/options.php:213,
6036
- #: build_tmp/build/framework/premium/features/premium-header/items/search-input/options.php:204,
6037
- #: build_tmp/build/framework/premium/features/premium-header/items/search-input/options.php:334,
6038
- #: build_tmp/build/framework/premium/features/premium-header/items/search-input/options.php:464,
6039
- #: build_tmp/build/framework/premium/features/premium-header/items/search-input/options.php:600
6040
  msgid "Transparent State"
6041
  msgstr ""
6042
 
6043
- #: framework/features/header/items/account/options.php:638,
6044
- #: framework/features/header/items/account/options.php:784,
6045
  #: framework/premium/extensions/woocommerce-extra/header-items/wish-list/options.php:197,
6046
  #: framework/premium/extensions/woocommerce-extra/header-items/wish-list/options.php:324,
6047
  #: framework/premium/features/premium-header/items/contacts/options.php:439,
@@ -6052,218 +4367,162 @@ msgstr ""
6052
  #: framework/premium/features/premium-header/items/search-input/options.php:213,
6053
  #: framework/premium/features/premium-header/items/search-input/options.php:343,
6054
  #: framework/premium/features/premium-header/items/search-input/options.php:473,
6055
- #: framework/premium/features/premium-header/items/search-input/options.php:609,
6056
- #: build_tmp/build/framework/features/header/items/account/options.php:638,
6057
- #: build_tmp/build/framework/features/header/items/account/options.php:784,
6058
- #: build_tmp/build/framework/premium/extensions/woocommerce-extra/header-items/wish-list/options.php:197,
6059
- #: build_tmp/build/framework/premium/extensions/woocommerce-extra/header-items/wish-list/options.php:324,
6060
- #: build_tmp/build/framework/premium/features/premium-header/items/contacts/options.php:439,
6061
- #: build_tmp/build/framework/premium/features/premium-header/items/contacts/options.php:609,
6062
- #: build_tmp/build/framework/premium/features/premium-header/items/contacts/options.php:760,
6063
- #: build_tmp/build/framework/premium/features/premium-header/items/dark-mode-switcher/options.php:49,
6064
- #: build_tmp/build/framework/premium/features/premium-header/items/language-switcher/options.php:222,
6065
- #: build_tmp/build/framework/premium/features/premium-header/items/search-input/options.php:213,
6066
- #: build_tmp/build/framework/premium/features/premium-header/items/search-input/options.php:343,
6067
- #: build_tmp/build/framework/premium/features/premium-header/items/search-input/options.php:473,
6068
- #: build_tmp/build/framework/premium/features/premium-header/items/search-input/options.php:609
6069
  msgid "Sticky State"
6070
  msgstr ""
6071
 
6072
- #: framework/features/header/items/account/options.php:890,
6073
- #: build_tmp/build/framework/features/header/items/account/options.php:890
6074
  msgid "Item Margin"
6075
  msgstr ""
6076
 
6077
- #: framework/features/header/items/account/options.php:909,
6078
- #: build_tmp/build/framework/features/header/items/account/options.php:909
6079
  msgid "Modal Options"
6080
  msgstr ""
6081
 
6082
- #: framework/features/header/items/account/options.php:1044,
6083
- #: build_tmp/build/framework/features/header/items/account/options.php:1044
6084
  msgid "Modal Background"
6085
  msgstr ""
6086
 
6087
- #: framework/features/header/items/account/options.php:1059,
6088
- #: build_tmp/build/framework/features/header/items/account/options.php:1059
6089
  msgid "Modal Backdrop"
6090
  msgstr ""
6091
 
6092
- #: framework/features/header/items/account/options.php:1074,
6093
- #: build_tmp/build/framework/features/header/items/account/options.php:1074
6094
  msgid "Modal Shadow"
6095
  msgstr ""
6096
 
6097
- #: framework/features/header/items/account/options.php:1239,
6098
- #: framework/premium/features/premium-header/items/search-input/options.php:167,
6099
- #: build_tmp/build/framework/features/header/items/account/options.php:1239,
6100
- #: build_tmp/build/framework/premium/features/premium-header/items/search-input/options.php:167
6101
  msgid "Element Visibility"
6102
  msgstr ""
6103
 
6104
- #: framework/premium/extensions/post-types-extra/includes/dynamic-data.php:409,
6105
- #: build_tmp/build/framework/premium/extensions/post-types-extra/includes/dynamic-data.php:409
6106
  msgid "You have no %s fields declared for this custom post type."
6107
  msgstr ""
6108
 
6109
  #: framework/premium/extensions/post-types-extra/includes/dynamic-data.php:421,
6110
  #: framework/premium/extensions/post-types-extra/includes/dynamic-data.php:896,
6111
- #: framework/premium/extensions/post-types-extra/includes/dynamic-data.php:907,
6112
- #: build_tmp/build/framework/premium/extensions/post-types-extra/includes/dynamic-data.php:421,
6113
- #: build_tmp/build/framework/premium/extensions/post-types-extra/includes/dynamic-data.php:896,
6114
- #: build_tmp/build/framework/premium/extensions/post-types-extra/includes/dynamic-data.php:907
6115
  msgid "Field"
6116
  msgstr ""
6117
 
6118
  #: framework/premium/extensions/post-types-extra/includes/dynamic-data.php:433,
6119
- #: framework/premium/features/premium-header/items/language-switcher/options.php:60,
6120
- #: build_tmp/build/framework/premium/extensions/post-types-extra/includes/dynamic-data.php:433,
6121
- #: build_tmp/build/framework/premium/features/premium-header/items/language-switcher/options.php:60
6122
  msgid "Label"
6123
  msgstr ""
6124
 
6125
- #: framework/premium/extensions/post-types-extra/includes/dynamic-data.php:482,
6126
- #: build_tmp/build/framework/premium/extensions/post-types-extra/includes/dynamic-data.php:482
6127
  msgid "Fallback"
6128
  msgstr ""
6129
 
6130
- #: framework/premium/extensions/post-types-extra/includes/dynamic-data.php:494,
6131
- #: build_tmp/build/framework/premium/extensions/post-types-extra/includes/dynamic-data.php:494
6132
  msgid "%s Field"
6133
  msgstr ""
6134
 
6135
- #: framework/premium/extensions/post-types-extra/includes/dynamic-data.php:880,
6136
- #: build_tmp/build/framework/premium/extensions/post-types-extra/includes/dynamic-data.php:880
6137
  msgid "Custom Field"
6138
  msgstr ""
6139
 
6140
- #: framework/premium/extensions/post-types-extra/includes/dynamic-data.php:894,
6141
- #: build_tmp/build/framework/premium/extensions/post-types-extra/includes/dynamic-data.php:894
6142
  msgid "%s %s Font"
6143
  msgstr ""
6144
 
6145
- #: framework/premium/extensions/post-types-extra/includes/dynamic-data.php:905,
6146
- #: build_tmp/build/framework/premium/extensions/post-types-extra/includes/dynamic-data.php:905
6147
  msgid "%s %s Color"
6148
  msgstr ""
6149
 
6150
  #: framework/premium/extensions/post-types-extra/includes/estimated-read-time.php:9,
6151
- #: framework/premium/extensions/post-types-extra/includes/estimated-read-time.php:66,
6152
- #: build_tmp/build/framework/premium/extensions/post-types-extra/includes/estimated-read-time.php:9,
6153
- #: build_tmp/build/framework/premium/extensions/post-types-extra/includes/estimated-read-time.php:66
6154
  msgid "Read Time"
6155
  msgstr ""
6156
 
6157
- #: framework/premium/extensions/post-types-extra/includes/estimated-read-time.php:123,
6158
- #: build_tmp/build/framework/premium/extensions/post-types-extra/includes/estimated-read-time.php:123
6159
  msgid "%s min"
6160
  msgid_plural "%s mins"
6161
  msgstr[0] ""
6162
  msgstr[1] ""
6163
 
6164
- #: framework/premium/extensions/post-types-extra/includes/filtering.php:286,
6165
- #: build_tmp/build/framework/premium/extensions/post-types-extra/includes/filtering.php:286
6166
  msgid "All"
6167
  msgstr ""
6168
 
6169
- #: framework/premium/extensions/post-types-extra/includes/taxonomies-options.php:161,
6170
- #: build_tmp/build/framework/premium/extensions/post-types-extra/includes/taxonomies-options.php:161
6171
  msgid "Featured Image"
6172
  msgstr ""
6173
 
6174
- #: framework/premium/extensions/post-types-extra/includes/taxonomies-options.php:166,
6175
- #: build_tmp/build/framework/premium/extensions/post-types-extra/includes/taxonomies-options.php:166
6176
  msgid "Accent Color"
6177
  msgstr ""
6178
 
6179
  #: framework/premium/extensions/shortcuts/views/bar.php:49,
6180
- #: framework/premium/extensions/woocommerce-extra/includes/wish-list.php:143,
6181
- #: build_tmp/build/framework/premium/extensions/shortcuts/views/bar.php:49,
6182
- #: build_tmp/build/framework/premium/extensions/woocommerce-extra/includes/wish-list.php:143
6183
  msgid "Wish List"
6184
  msgstr ""
6185
 
6186
- #: framework/premium/extensions/woocommerce-extra/includes/wish-list-helpers.php:38,
6187
- #: build_tmp/build/framework/premium/extensions/woocommerce-extra/includes/wish-list-helpers.php:38
6188
  msgid "Wishlist icon"
6189
  msgstr ""
6190
 
6191
  #: framework/premium/extensions/woocommerce-extra/includes/wish-list-helpers.php:46,
6192
- #: framework/premium/extensions/woocommerce-extra/includes/wish-list-helpers.php:54,
6193
- #: build_tmp/build/framework/premium/extensions/woocommerce-extra/includes/wish-list-helpers.php:46,
6194
- #: build_tmp/build/framework/premium/extensions/woocommerce-extra/includes/wish-list-helpers.php:54
6195
  msgid "Add to wishlist"
6196
  msgstr ""
6197
 
6198
- #: framework/premium/extensions/woocommerce-extra/includes/wish-list-options.php:9,
6199
- #: build_tmp/build/framework/premium/extensions/woocommerce-extra/includes/wish-list-options.php:9
6200
  msgid "Select a page"
6201
  msgstr ""
6202
 
6203
- #: framework/premium/extensions/woocommerce-extra/includes/wish-list-options.php:18,
6204
- #: build_tmp/build/framework/premium/extensions/woocommerce-extra/includes/wish-list-options.php:18
6205
  msgid "Products Wishlist"
6206
  msgstr ""
6207
 
6208
- #: framework/premium/extensions/woocommerce-extra/includes/wish-list-options.php:28,
6209
- #: build_tmp/build/framework/premium/extensions/woocommerce-extra/includes/wish-list-options.php:28
6210
  msgid "Show Wishlist Page To"
6211
  msgstr ""
6212
 
6213
- #: framework/premium/extensions/woocommerce-extra/includes/wish-list-options.php:34,
6214
- #: build_tmp/build/framework/premium/extensions/woocommerce-extra/includes/wish-list-options.php:34
6215
  msgid "Logged Users"
6216
  msgstr ""
6217
 
6218
- #: framework/premium/extensions/woocommerce-extra/includes/wish-list-options.php:35,
6219
- #: build_tmp/build/framework/premium/extensions/woocommerce-extra/includes/wish-list-options.php:35
6220
  msgid "All Users"
6221
  msgstr ""
6222
 
6223
- #: framework/premium/extensions/woocommerce-extra/includes/wish-list-options.php:45,
6224
- #: build_tmp/build/framework/premium/extensions/woocommerce-extra/includes/wish-list-options.php:45
6225
  msgid "Wish List Page"
6226
  msgstr ""
6227
 
6228
- #: framework/premium/extensions/woocommerce-extra/includes/wish-list-options.php:51,
6229
- #: build_tmp/build/framework/premium/extensions/woocommerce-extra/includes/wish-list-options.php:51
6230
  msgid ""
6231
  "The page you select here will display the wish list for your logged out "
6232
  "users."
6233
  msgstr ""
6234
 
6235
- #: framework/premium/extensions/woocommerce-extra/includes/wish-list-options.php:60,
6236
- #: build_tmp/build/framework/premium/extensions/woocommerce-extra/includes/wish-list-options.php:60
6237
  msgid "Display Wishlist Button On"
6238
  msgstr ""
6239
 
6240
- #: framework/premium/extensions/woocommerce-extra/includes/wish-list-options.php:64,
6241
- #: build_tmp/build/framework/premium/extensions/woocommerce-extra/includes/wish-list-options.php:64
6242
  msgid "Archive Pages"
6243
  msgstr ""
6244
 
6245
- #: framework/premium/extensions/woocommerce-extra/includes/wish-list-options.php:73,
6246
- #: build_tmp/build/framework/premium/extensions/woocommerce-extra/includes/wish-list-options.php:73
6247
  msgid "Single Product Pages"
6248
  msgstr ""
6249
 
6250
- #: framework/premium/extensions/woocommerce-extra/includes/wish-list-options.php:82,
6251
- #: build_tmp/build/framework/premium/extensions/woocommerce-extra/includes/wish-list-options.php:82
6252
  msgid "Quick View Modal"
6253
  msgstr ""
6254
 
6255
- #: framework/premium/extensions/woocommerce-extra/includes/wish-list-options.php:95,
6256
- #: build_tmp/build/framework/premium/extensions/woocommerce-extra/includes/wish-list-options.php:95
6257
  msgid "AJAX Add To Cart"
6258
  msgstr ""
6259
 
6260
- #: framework/premium/extensions/woocommerce-extra/includes/wish-list-options.php:101,
6261
- #: build_tmp/build/framework/premium/extensions/woocommerce-extra/includes/wish-list-options.php:101
6262
  msgid "Enable AJAX loading"
6263
  msgstr ""
6264
 
6265
- #: framework/premium/extensions/woocommerce-extra/includes/wish-list-options.php:137,
6266
- #: build_tmp/build/framework/premium/extensions/woocommerce-extra/includes/wish-list-options.php:137
6267
  msgid "Archive Button"
6268
  msgstr ""
6269
 
@@ -6275,77 +4534,51 @@ msgstr ""
6275
  #: framework/premium/extensions/post-types-extra/includes/filtering/customizer.php:243,
6276
  #: framework/premium/features/premium-header/items/language-switcher/options.php:254,
6277
  #: framework/premium/features/premium-header/items/language-switcher/options.php:284,
6278
- #: framework/premium/features/premium-header/items/language-switcher/options.php:313,
6279
- #: build_tmp/build/framework/premium/extensions/woocommerce-extra/includes/wish-list-options.php:165,
6280
- #: build_tmp/build/framework/premium/extensions/woocommerce-extra/includes/wish-list-options.php:197,
6281
- #: build_tmp/build/framework/premium/extensions/woocommerce-extra/includes/wish-list-options.php:241,
6282
- #: build_tmp/build/framework/premium/extensions/woocommerce-extra/includes/wish-list-options.php:317,
6283
- #: build_tmp/build/framework/premium/extensions/post-types-extra/includes/filtering/customizer.php:207,
6284
- #: build_tmp/build/framework/premium/extensions/post-types-extra/includes/filtering/customizer.php:243,
6285
- #: build_tmp/build/framework/premium/features/premium-header/items/language-switcher/options.php:254,
6286
- #: build_tmp/build/framework/premium/features/premium-header/items/language-switcher/options.php:284,
6287
- #: build_tmp/build/framework/premium/features/premium-header/items/language-switcher/options.php:313
6288
  msgid "Hover/Active"
6289
  msgstr ""
6290
 
6291
- #: framework/premium/extensions/woocommerce-extra/includes/wish-list-options.php:214,
6292
- #: build_tmp/build/framework/premium/extensions/woocommerce-extra/includes/wish-list-options.php:214
6293
  msgid "Single Product Button"
6294
  msgstr ""
6295
 
6296
- #: framework/premium/extensions/woocommerce-extra/includes/wish-list-options.php:290,
6297
- #: build_tmp/build/framework/premium/extensions/woocommerce-extra/includes/wish-list-options.php:290
6298
  msgid "Quick View Modal Button"
6299
  msgstr ""
6300
 
6301
- #: framework/premium/extensions/woocommerce-extra/includes/wish-list-table.php:192,
6302
- #: build_tmp/build/framework/premium/extensions/woocommerce-extra/includes/wish-list-table.php:192
6303
  msgid "You don't have any products in your wish list yet."
6304
  msgstr ""
6305
 
6306
- #: framework/premium/extensions/woocommerce-extra/includes/wish-list-table.php:35,
6307
- #: build_tmp/build/framework/premium/extensions/woocommerce-extra/includes/wish-list-table.php:35
6308
  msgid "Add to cart"
6309
  msgstr ""
6310
 
6311
  #: framework/premium/extensions/woocommerce-extra/includes/wish-list-table.php:128,
6312
- #: framework/premium/extensions/woocommerce-extra/includes/wish-list-table.php:152,
6313
- #: build_tmp/build/framework/premium/extensions/woocommerce-extra/includes/wish-list-table.php:128,
6314
- #: build_tmp/build/framework/premium/extensions/woocommerce-extra/includes/wish-list-table.php:152
6315
  msgid "Remove Product"
6316
  msgstr ""
6317
 
6318
- #: framework/premium/extensions/woocommerce-extra/includes/woo-import-export.php:34,
6319
- #: build_tmp/build/framework/premium/extensions/woocommerce-extra/includes/woo-import-export.php:34
6320
  msgid "Blocksy Variation Images"
6321
  msgstr ""
6322
 
6323
  #: framework/premium/features/content-blocks/options/404.php:33,
6324
  #: framework/premium/features/content-blocks/options/header.php:35,
6325
  #: framework/premium/features/content-blocks/options/hook.php:40,
6326
- #: framework/premium/features/content-blocks/options/popup.php:42,
6327
- #: build_tmp/build/framework/premium/features/content-blocks/options/404.php:33,
6328
- #: build_tmp/build/framework/premium/features/content-blocks/options/header.php:35,
6329
- #: build_tmp/build/framework/premium/features/content-blocks/options/hook.php:40,
6330
- #: build_tmp/build/framework/premium/features/content-blocks/options/popup.php:42
6331
  msgid "Container Structure"
6332
  msgstr ""
6333
 
6334
  #: framework/premium/features/content-blocks/options/404.php:65,
6335
  #: framework/premium/features/content-blocks/options/header.php:63,
6336
- #: framework/premium/features/content-blocks/options/hook.php:68,
6337
- #: build_tmp/build/framework/premium/features/content-blocks/options/404.php:65,
6338
- #: build_tmp/build/framework/premium/features/content-blocks/options/header.php:63,
6339
- #: build_tmp/build/framework/premium/features/content-blocks/options/hook.php:68
6340
  msgid "Narrow Width"
6341
  msgstr ""
6342
 
6343
  #: framework/premium/features/content-blocks/options/404.php:70,
6344
  #: framework/premium/features/content-blocks/options/header.php:68,
6345
- #: framework/premium/features/content-blocks/options/hook.php:73,
6346
- #: build_tmp/build/framework/premium/features/content-blocks/options/404.php:70,
6347
- #: build_tmp/build/framework/premium/features/content-blocks/options/header.php:68,
6348
- #: build_tmp/build/framework/premium/features/content-blocks/options/hook.php:73
6349
  msgid "Normal Width"
6350
  msgstr ""
6351
 
@@ -6353,23 +4586,14 @@ msgstr ""
6353
  #: framework/premium/features/content-blocks/options/archive.php:126,
6354
  #: framework/premium/features/content-blocks/options/header.php:74,
6355
  #: framework/premium/features/content-blocks/options/hook.php:79,
6356
- #: framework/premium/features/content-blocks/options/single.php:47,
6357
- #: build_tmp/build/framework/premium/features/content-blocks/options/404.php:76,
6358
- #: build_tmp/build/framework/premium/features/content-blocks/options/archive.php:126,
6359
- #: build_tmp/build/framework/premium/features/content-blocks/options/header.php:74,
6360
- #: build_tmp/build/framework/premium/features/content-blocks/options/hook.php:79,
6361
- #: build_tmp/build/framework/premium/features/content-blocks/options/single.php:47
6362
  msgid "Content Area Style"
6363
  msgstr ""
6364
 
6365
  #: framework/premium/features/content-blocks/options/404.php:90,
6366
  #: framework/premium/features/content-blocks/options/archive.php:140,
6367
  #: framework/premium/features/content-blocks/options/header.php:88,
6368
- #: framework/premium/features/content-blocks/options/hook.php:93,
6369
- #: build_tmp/build/framework/premium/features/content-blocks/options/404.php:90,
6370
- #: build_tmp/build/framework/premium/features/content-blocks/options/archive.php:140,
6371
- #: build_tmp/build/framework/premium/features/content-blocks/options/header.php:88,
6372
- #: build_tmp/build/framework/premium/features/content-blocks/options/hook.php:93
6373
  msgid "Content Area Vertical Spacing"
6374
  msgstr ""
6375
 
@@ -6377,12 +4601,7 @@ msgstr ""
6377
  #: framework/premium/features/content-blocks/options/archive.php:151,
6378
  #: framework/premium/features/content-blocks/options/header.php:99,
6379
  #: framework/premium/features/content-blocks/options/hook.php:104,
6380
- #: framework/premium/features/content-blocks/options/single.php:72,
6381
- #: build_tmp/build/framework/premium/features/content-blocks/options/404.php:101,
6382
- #: build_tmp/build/framework/premium/features/content-blocks/options/archive.php:151,
6383
- #: build_tmp/build/framework/premium/features/content-blocks/options/header.php:99,
6384
- #: build_tmp/build/framework/premium/features/content-blocks/options/hook.php:104,
6385
- #: build_tmp/build/framework/premium/features/content-blocks/options/single.php:72
6386
  msgid "Top & Bottom"
6387
  msgstr ""
6388
 
@@ -6390,12 +4609,7 @@ msgstr ""
6390
  #: framework/premium/features/content-blocks/options/archive.php:154,
6391
  #: framework/premium/features/content-blocks/options/header.php:102,
6392
  #: framework/premium/features/content-blocks/options/hook.php:107,
6393
- #: framework/premium/features/content-blocks/options/single.php:75,
6394
- #: build_tmp/build/framework/premium/features/content-blocks/options/404.php:104,
6395
- #: build_tmp/build/framework/premium/features/content-blocks/options/archive.php:154,
6396
- #: build_tmp/build/framework/premium/features/content-blocks/options/header.php:102,
6397
- #: build_tmp/build/framework/premium/features/content-blocks/options/hook.php:107,
6398
- #: build_tmp/build/framework/premium/features/content-blocks/options/single.php:75
6399
  msgid "Only Top"
6400
  msgstr ""
6401
 
@@ -6403,511 +4617,406 @@ msgstr ""
6403
  #: framework/premium/features/content-blocks/options/archive.php:157,
6404
  #: framework/premium/features/content-blocks/options/header.php:105,
6405
  #: framework/premium/features/content-blocks/options/hook.php:110,
6406
- #: framework/premium/features/content-blocks/options/single.php:78,
6407
- #: build_tmp/build/framework/premium/features/content-blocks/options/404.php:107,
6408
- #: build_tmp/build/framework/premium/features/content-blocks/options/archive.php:157,
6409
- #: build_tmp/build/framework/premium/features/content-blocks/options/header.php:105,
6410
- #: build_tmp/build/framework/premium/features/content-blocks/options/hook.php:110,
6411
- #: build_tmp/build/framework/premium/features/content-blocks/options/single.php:78
6412
  msgid "Only Bottom"
6413
  msgstr ""
6414
 
6415
  #: framework/premium/features/content-blocks/options/archive.php:11,
6416
- #: build_tmp/build/framework/premium/features/content-blocks/options/archive.php:11
6417
  msgid "Replacement Behavior"
6418
  msgstr ""
6419
 
6420
- #: framework/premium/features/content-blocks/options/archive.php:17,
6421
- #: build_tmp/build/framework/premium/features/content-blocks/options/archive.php:17
6422
  msgid "Only Card"
6423
  msgstr ""
6424
 
6425
  #: framework/premium/features/content-blocks/options/archive.php:18,
6426
- #: build_tmp/build/framework/premium/features/content-blocks/options/archive.php:18
6427
  msgid "Full Page"
6428
  msgstr ""
6429
 
6430
  #: framework/premium/features/content-blocks/options/archive.php:28,
6431
- #: framework/premium/features/content-blocks/options/single.php:105,
6432
- #: build_tmp/build/framework/premium/features/content-blocks/options/archive.php:28,
6433
- #: build_tmp/build/framework/premium/features/content-blocks/options/single.php:105
6434
  msgid "Dynamic Content Preview"
6435
  msgstr ""
6436
 
6437
- #: framework/premium/features/content-blocks/options/archive.php:35,
6438
- #: build_tmp/build/framework/premium/features/content-blocks/options/archive.php:35
6439
  msgid ""
6440
  "Select a post/page to preview it's content inside the editor while building "
6441
  "the archive."
6442
  msgstr ""
6443
 
6444
- #: framework/premium/features/content-blocks/options/archive.php:39,
6445
- #: build_tmp/build/framework/premium/features/content-blocks/options/archive.php:39
6446
  msgid "Editor/Card Width"
6447
  msgstr ""
6448
 
6449
- #: framework/premium/features/content-blocks/options/archive.php:50,
6450
- #: build_tmp/build/framework/premium/features/content-blocks/options/archive.php:50
6451
  msgid ""
6452
  "Set the editor width for better understanging the layout you are building "
6453
  "(just for preview purpose, this option won't apply in frontend)."
6454
  msgstr ""
6455
 
6456
- #: framework/premium/features/content-blocks/options/archive.php:71,
6457
- #: build_tmp/build/framework/premium/features/content-blocks/options/archive.php:71
6458
  msgid "Default Card Layout"
6459
  msgstr ""
6460
 
6461
- #: framework/premium/features/content-blocks/options/archive.php:76,
6462
- #: build_tmp/build/framework/premium/features/content-blocks/options/archive.php:76
6463
  msgid ""
6464
  "Inherit card wrapper settings from Customizer (background color, spacing, "
6465
  "shadow)."
6466
  msgstr ""
6467
 
6468
- #: framework/premium/features/content-blocks/options/archive.php:91,
6469
- #: build_tmp/build/framework/premium/features/content-blocks/options/archive.php:91
6470
  msgid "Page Structure"
6471
  msgstr ""
6472
 
6473
  #: framework/premium/features/content-blocks/options/archive.php:207,
6474
  #: framework/premium/features/content-blocks/options/hook.php:256,
6475
  #: framework/premium/features/content-blocks/options/popup.php:314,
6476
- #: framework/premium/features/content-blocks/options/single.php:140,
6477
- #: build_tmp/build/framework/premium/features/content-blocks/options/archive.php:207,
6478
- #: build_tmp/build/framework/premium/features/content-blocks/options/hook.php:256,
6479
- #: build_tmp/build/framework/premium/features/content-blocks/options/popup.php:314,
6480
- #: build_tmp/build/framework/premium/features/content-blocks/options/single.php:140
6481
  msgid "Expiration Date/Time"
6482
  msgstr ""
6483
 
6484
  #: framework/premium/features/content-blocks/options/hook.php:23,
6485
- #: framework/premium/features/content-blocks/options/hook.php:181,
6486
- #: build_tmp/build/framework/premium/features/content-blocks/options/hook.php:23,
6487
- #: build_tmp/build/framework/premium/features/content-blocks/options/hook.php:181
6488
  #: framework/premium/static/js/options/MultipleLocationsSelect.js:72
6489
  msgid "Custom Hook"
6490
  msgstr ""
6491
 
6492
- #: framework/premium/features/content-blocks/options/hook.php:148,
6493
- #: build_tmp/build/framework/premium/features/content-blocks/options/hook.php:148
6494
  msgid "Location & Priority"
6495
  msgstr ""
6496
 
6497
- #: framework/premium/features/content-blocks/options/hook.php:283,
6498
- #: build_tmp/build/framework/premium/features/content-blocks/options/hook.php:283
6499
  msgid "Block Position"
6500
  msgstr ""
6501
 
6502
- #: framework/premium/features/content-blocks/options/hook.php:290,
6503
- #: build_tmp/build/framework/premium/features/content-blocks/options/hook.php:290
6504
  msgid "Fixed"
6505
  msgstr ""
6506
 
6507
- #: framework/premium/features/content-blocks/options/hook.php:300,
6508
- #: build_tmp/build/framework/premium/features/content-blocks/options/hook.php:300
6509
  msgid "Location"
6510
  msgstr ""
6511
 
6512
- #: framework/premium/features/content-blocks/options/hook.php:313,
6513
- #: build_tmp/build/framework/premium/features/content-blocks/options/hook.php:313
6514
  msgid "Top Offset"
6515
  msgstr ""
6516
 
6517
- #: framework/premium/features/content-blocks/options/hook.php:317,
6518
- #: build_tmp/build/framework/premium/features/content-blocks/options/hook.php:317
6519
  msgid "Bottom Offset"
6520
  msgstr ""
6521
 
6522
- #: framework/premium/features/content-blocks/options/popup.php:50,
6523
- #: build_tmp/build/framework/premium/features/content-blocks/options/popup.php:50
6524
  msgid "Popup Position"
6525
  msgstr ""
6526
 
6527
- #: framework/premium/features/content-blocks/options/popup.php:57,
6528
- #: build_tmp/build/framework/premium/features/content-blocks/options/popup.php:57
6529
  msgid "Popup Size"
6530
  msgstr ""
6531
 
6532
- #: framework/premium/features/content-blocks/options/popup.php:63,
6533
- #: build_tmp/build/framework/premium/features/content-blocks/options/popup.php:63
6534
  msgid "Small Size"
6535
  msgstr ""
6536
 
6537
- #: framework/premium/features/content-blocks/options/popup.php:64,
6538
- #: build_tmp/build/framework/premium/features/content-blocks/options/popup.php:64
6539
  msgid "Medium Size"
6540
  msgstr ""
6541
 
6542
- #: framework/premium/features/content-blocks/options/popup.php:65,
6543
- #: build_tmp/build/framework/premium/features/content-blocks/options/popup.php:65
6544
  msgid "Large Size"
6545
  msgstr ""
6546
 
6547
- #: framework/premium/features/content-blocks/options/popup.php:66,
6548
- #: build_tmp/build/framework/premium/features/content-blocks/options/popup.php:66
6549
  msgid "Custom Size"
6550
  msgstr ""
6551
 
6552
- #: framework/premium/features/content-blocks/options/popup.php:76,
6553
- #: build_tmp/build/framework/premium/features/content-blocks/options/popup.php:76
6554
  msgid "Max Width"
6555
  msgstr ""
6556
 
6557
- #: framework/premium/features/content-blocks/options/popup.php:92,
6558
- #: build_tmp/build/framework/premium/features/content-blocks/options/popup.php:92
6559
  msgid "Max Height"
6560
  msgstr ""
6561
 
6562
- #: framework/premium/features/content-blocks/options/popup.php:111,
6563
- #: build_tmp/build/framework/premium/features/content-blocks/options/popup.php:111
6564
  msgid "Popup Animation"
6565
  msgstr ""
6566
 
6567
- #: framework/premium/features/content-blocks/options/popup.php:117,
6568
- #: build_tmp/build/framework/premium/features/content-blocks/options/popup.php:117
6569
  msgid "Fade in fade out"
6570
  msgstr ""
6571
 
6572
- #: framework/premium/features/content-blocks/options/popup.php:118,
6573
- #: build_tmp/build/framework/premium/features/content-blocks/options/popup.php:118
6574
  msgid "Zoom in zoom out"
6575
  msgstr ""
6576
 
6577
- #: framework/premium/features/content-blocks/options/popup.php:119,
6578
- #: build_tmp/build/framework/premium/features/content-blocks/options/popup.php:119
6579
  msgid "Slide in from left"
6580
  msgstr ""
6581
 
6582
- #: framework/premium/features/content-blocks/options/popup.php:120,
6583
- #: build_tmp/build/framework/premium/features/content-blocks/options/popup.php:120
6584
  msgid "Slide in from right"
6585
  msgstr ""
6586
 
6587
- #: framework/premium/features/content-blocks/options/popup.php:121,
6588
- #: build_tmp/build/framework/premium/features/content-blocks/options/popup.php:121
6589
  msgid "Slide in from top"
6590
  msgstr ""
6591
 
6592
- #: framework/premium/features/content-blocks/options/popup.php:122,
6593
- #: build_tmp/build/framework/premium/features/content-blocks/options/popup.php:122
6594
  msgid "Slide in from bottom"
6595
  msgstr ""
6596
 
6597
- #: framework/premium/features/content-blocks/options/popup.php:127,
6598
- #: build_tmp/build/framework/premium/features/content-blocks/options/popup.php:127
6599
  msgid "Animation Speed"
6600
  msgstr ""
6601
 
6602
- #: framework/premium/features/content-blocks/options/popup.php:144,
6603
- #: build_tmp/build/framework/premium/features/content-blocks/options/popup.php:144
6604
  msgid "Entrance Value"
6605
  msgstr ""
6606
 
6607
- #: framework/premium/features/content-blocks/options/popup.php:156,
6608
- #: build_tmp/build/framework/premium/features/content-blocks/options/popup.php:156
6609
  msgid "Trigger Condition"
6610
  msgstr ""
6611
 
6612
- #: framework/premium/features/content-blocks/options/popup.php:181,
6613
- #: build_tmp/build/framework/premium/features/content-blocks/options/popup.php:181
6614
  msgid "Element Class"
6615
  msgstr ""
6616
 
6617
- #: framework/premium/features/content-blocks/options/popup.php:188,
6618
- #: build_tmp/build/framework/premium/features/content-blocks/options/popup.php:188
6619
  msgid "Separate each class by comma if you have multiple elements."
6620
  msgstr ""
6621
 
6622
- #: framework/premium/features/content-blocks/options/popup.php:200,
6623
- #: build_tmp/build/framework/premium/features/content-blocks/options/popup.php:200
6624
  msgid "Scroll Direction"
6625
  msgstr ""
6626
 
6627
- #: framework/premium/features/content-blocks/options/popup.php:205,
6628
- #: build_tmp/build/framework/premium/features/content-blocks/options/popup.php:205
6629
  msgid "Scroll Down"
6630
  msgstr ""
6631
 
6632
- #: framework/premium/features/content-blocks/options/popup.php:206,
6633
- #: build_tmp/build/framework/premium/features/content-blocks/options/popup.php:206
6634
  msgid "Scroll Up"
6635
  msgstr ""
6636
 
6637
- #: framework/premium/features/content-blocks/options/popup.php:211,
6638
- #: build_tmp/build/framework/premium/features/content-blocks/options/popup.php:211
6639
  msgid "Scroll Distance"
6640
  msgstr ""
6641
 
6642
- #: framework/premium/features/content-blocks/options/popup.php:221,
6643
- #: build_tmp/build/framework/premium/features/content-blocks/options/popup.php:221
6644
  msgid "Set the scroll distance till the popup block will appear."
6645
  msgstr ""
6646
 
6647
- #: framework/premium/features/content-blocks/options/popup.php:233,
6648
- #: build_tmp/build/framework/premium/features/content-blocks/options/popup.php:233
6649
  msgid "Inactivity Time"
6650
  msgstr ""
6651
 
6652
- #: framework/premium/features/content-blocks/options/popup.php:239,
6653
- #: build_tmp/build/framework/premium/features/content-blocks/options/popup.php:239
6654
  msgid "Set the inactivity time (in seconds) till the popup block will appear."
6655
  msgstr ""
6656
 
6657
- #: framework/premium/features/content-blocks/options/popup.php:251,
6658
- #: build_tmp/build/framework/premium/features/content-blocks/options/popup.php:251
6659
  msgid "After X Time"
6660
  msgstr ""
6661
 
6662
- #: framework/premium/features/content-blocks/options/popup.php:257,
6663
- #: build_tmp/build/framework/premium/features/content-blocks/options/popup.php:257
6664
  msgid "Set after how much time (in seconds) the popup block will appear."
6665
  msgstr ""
6666
 
6667
- #: framework/premium/features/content-blocks/options/popup.php:269,
6668
- #: build_tmp/build/framework/premium/features/content-blocks/options/popup.php:269
6669
  msgid "After X Pages"
6670
  msgstr ""
6671
 
6672
- #: framework/premium/features/content-blocks/options/popup.php:275,
6673
- #: build_tmp/build/framework/premium/features/content-blocks/options/popup.php:275
6674
  msgid "Set after how many visited pages the popup block will appear."
6675
  msgstr ""
6676
 
6677
- #: framework/premium/features/content-blocks/options/popup.php:287,
6678
- #: build_tmp/build/framework/premium/features/content-blocks/options/popup.php:287
6679
  msgid "Trigger Popup Only Once"
6680
  msgstr ""
6681
 
6682
- #: framework/premium/features/content-blocks/options/popup.php:290,
6683
- #: build_tmp/build/framework/premium/features/content-blocks/options/popup.php:290
6684
  msgid ""
6685
  "If the close button is clicked the popup won't be triggered anymore for the "
6686
  "current visitor."
6687
  msgstr ""
6688
 
6689
- #: framework/premium/features/content-blocks/options/popup.php:366,
6690
- #: build_tmp/build/framework/premium/features/content-blocks/options/popup.php:366
6691
  msgid "Padding"
6692
  msgstr ""
6693
 
6694
  #: framework/premium/features/content-blocks/options/popup.php:376,
6695
  #: framework/premium/extensions/post-types-extra/includes/filtering/customizer.php:266,
6696
- #: framework/premium/features/premium-header/items/language-switcher/options.php:465,
6697
- #: build_tmp/build/framework/premium/features/content-blocks/options/popup.php:376,
6698
- #: build_tmp/build/framework/premium/extensions/post-types-extra/includes/filtering/customizer.php:266,
6699
- #: build_tmp/build/framework/premium/features/premium-header/items/language-switcher/options.php:465
6700
  msgid "Border Radius"
6701
  msgstr ""
6702
 
6703
- #: framework/premium/features/content-blocks/options/popup.php:405,
6704
- #: build_tmp/build/framework/premium/features/content-blocks/options/popup.php:405
6705
  msgid "Popup Offset"
6706
  msgstr ""
6707
 
6708
- #: framework/premium/features/content-blocks/options/popup.php:415,
6709
- #: build_tmp/build/framework/premium/features/content-blocks/options/popup.php:415
6710
  msgid "Container Overflow"
6711
  msgstr ""
6712
 
6713
- #: framework/premium/features/content-blocks/options/popup.php:422,
6714
- #: build_tmp/build/framework/premium/features/content-blocks/options/popup.php:422
6715
  msgid "Hidden"
6716
  msgstr ""
6717
 
6718
- #: framework/premium/features/content-blocks/options/popup.php:423,
6719
- #: build_tmp/build/framework/premium/features/content-blocks/options/popup.php:423
6720
  msgid "Visible"
6721
  msgstr ""
6722
 
6723
- #: framework/premium/features/content-blocks/options/popup.php:424,
6724
- #: build_tmp/build/framework/premium/features/content-blocks/options/popup.php:424
6725
  msgid "Scroll"
6726
  msgstr ""
6727
 
6728
- #: framework/premium/features/content-blocks/options/popup.php:426,
6729
- #: build_tmp/build/framework/premium/features/content-blocks/options/popup.php:426
6730
  msgid ""
6731
  "Control what happens to the content that is too big to fit into the popup."
6732
  msgstr ""
6733
 
6734
- #: framework/premium/features/content-blocks/options/popup.php:430,
6735
- #: build_tmp/build/framework/premium/features/content-blocks/options/popup.php:430
6736
  msgid "Close Button"
6737
  msgstr ""
6738
 
6739
- #: framework/premium/features/content-blocks/options/popup.php:438,
6740
- #: build_tmp/build/framework/premium/features/content-blocks/options/popup.php:438
6741
  msgid "Inside"
6742
  msgstr ""
6743
 
6744
- #: framework/premium/features/content-blocks/options/popup.php:439,
6745
- #: build_tmp/build/framework/premium/features/content-blocks/options/popup.php:439
6746
  msgid "Outside"
6747
  msgstr ""
6748
 
6749
- #: framework/premium/features/content-blocks/options/popup.php:513,
6750
- #: build_tmp/build/framework/premium/features/content-blocks/options/popup.php:513
6751
  msgid "Popup Background"
6752
  msgstr ""
6753
 
6754
- #: framework/premium/features/content-blocks/options/popup.php:527,
6755
- #: build_tmp/build/framework/premium/features/content-blocks/options/popup.php:527
6756
  msgid "Popup Backdrop Background"
6757
  msgstr ""
6758
 
6759
- #: framework/premium/features/content-blocks/options/single.php:61,
6760
- #: build_tmp/build/framework/premium/features/content-blocks/options/single.php:61
 
 
 
6761
  msgid "Content Area Vel Spacing"
6762
  msgstr ""
6763
 
6764
- #: framework/premium/features/content-blocks/options/single.php:111,
6765
- #: build_tmp/build/framework/premium/features/content-blocks/options/single.php:111
6766
  msgid ""
6767
  "Select a post/page to preview it's content inside the editor while building "
6768
  "the post/page."
6769
  msgstr ""
6770
 
6771
- #: framework/premium/extensions/post-types-extra/includes/filtering/customizer.php:25,
6772
- #: build_tmp/build/framework/premium/extensions/post-types-extra/includes/filtering/customizer.php:25
6773
  msgid "Posts Filter"
6774
  msgstr ""
6775
 
6776
- #: framework/premium/extensions/post-types-extra/includes/filtering/customizer.php:60,
6777
- #: build_tmp/build/framework/premium/extensions/post-types-extra/includes/filtering/customizer.php:60
6778
  msgid "Filtering Behavior"
6779
  msgstr ""
6780
 
6781
- #: framework/premium/extensions/post-types-extra/includes/filtering/customizer.php:68,
6782
- #: build_tmp/build/framework/premium/extensions/post-types-extra/includes/filtering/customizer.php:68
6783
  msgid "Instant Reload"
6784
  msgstr ""
6785
 
6786
- #: framework/premium/extensions/post-types-extra/includes/filtering/customizer.php:69,
6787
- #: build_tmp/build/framework/premium/extensions/post-types-extra/includes/filtering/customizer.php:69
6788
  msgid "Page Reload"
6789
  msgstr ""
6790
 
6791
- #: framework/premium/extensions/post-types-extra/includes/filtering/customizer.php:82,
6792
- #: build_tmp/build/framework/premium/extensions/post-types-extra/includes/filtering/customizer.php:82
6793
  msgid "Filter Source"
6794
  msgstr ""
6795
 
6796
- #: framework/premium/extensions/post-types-extra/includes/filtering/customizer.php:92,
6797
- #: build_tmp/build/framework/premium/extensions/post-types-extra/includes/filtering/customizer.php:92
6798
  msgid "Items Horizontal Spacing"
6799
  msgstr ""
6800
 
6801
  #: framework/premium/extensions/post-types-extra/includes/filtering/customizer.php:104,
6802
- #: framework/premium/features/premium-header/items/language-switcher/options.php:360,
6803
- #: build_tmp/build/framework/premium/extensions/post-types-extra/includes/filtering/customizer.php:104,
6804
- #: build_tmp/build/framework/premium/features/premium-header/items/language-switcher/options.php:360
6805
  msgid "Items Vertical Spacing"
6806
  msgstr ""
6807
 
6808
- #: framework/premium/extensions/post-types-extra/includes/filtering/customizer.php:116,
6809
- #: build_tmp/build/framework/premium/extensions/post-types-extra/includes/filtering/customizer.php:116
6810
  msgid "Container Bottom Spacing"
6811
  msgstr ""
6812
 
6813
- #: framework/premium/extensions/post-types-extra/includes/filtering/customizer.php:128,
6814
- #: build_tmp/build/framework/premium/extensions/post-types-extra/includes/filtering/customizer.php:128
6815
  msgid "Horizontal Alignment"
6816
  msgstr ""
6817
 
6818
- #: framework/premium/extensions/post-types-extra/includes/filtering/customizer.php:251,
6819
- #: build_tmp/build/framework/premium/extensions/post-types-extra/includes/filtering/customizer.php:251
6820
  msgid "Button Padding"
6821
  msgstr ""
6822
 
6823
- #: framework/premium/extensions/post-types-extra/includes/read-progress/customizer.php:4,
6824
- #: build_tmp/build/framework/premium/extensions/post-types-extra/includes/read-progress/customizer.php:4
6825
  msgid "Read Progress"
6826
  msgstr ""
6827
 
6828
- #: framework/premium/extensions/post-types-extra/includes/read-progress/customizer.php:24,
6829
- #: build_tmp/build/framework/premium/extensions/post-types-extra/includes/read-progress/customizer.php:24
6830
  msgid "Indicator Height"
6831
  msgstr ""
6832
 
6833
- #: framework/premium/extensions/post-types-extra/includes/read-progress/customizer.php:34,
6834
- #: build_tmp/build/framework/premium/extensions/post-types-extra/includes/read-progress/customizer.php:34
6835
  msgid "Auto Hide"
6836
  msgstr ""
6837
 
6838
- #: framework/premium/extensions/post-types-extra/includes/read-progress/customizer.php:38,
6839
- #: build_tmp/build/framework/premium/extensions/post-types-extra/includes/read-progress/customizer.php:38
6840
  msgid ""
6841
  "Automatically hide the read progress bar once you arrive at the bottom of "
6842
  "the article."
6843
  msgstr ""
6844
 
6845
- #: framework/premium/extensions/post-types-extra/includes/read-progress/customizer.php:71,
6846
- #: build_tmp/build/framework/premium/extensions/post-types-extra/includes/read-progress/customizer.php:71
6847
  msgid "Main Color"
6848
  msgstr ""
6849
 
6850
- #: framework/premium/extensions/woocommerce-extra/header-items/wish-list/options.php:84,
6851
- #: build_tmp/build/framework/premium/extensions/woocommerce-extra/header-items/wish-list/options.php:84
6852
  msgid "Icon Badge"
6853
  msgstr ""
6854
 
6855
- #: framework/premium/extensions/woocommerce-extra/header-items/wish-list/options.php:178,
6856
- #: build_tmp/build/framework/premium/extensions/woocommerce-extra/header-items/wish-list/options.php:178
6857
  msgid "Label Font Color"
6858
  msgstr ""
6859
 
6860
- #: framework/premium/features/premium-header/items/contacts/config.php:4,
6861
- #: build_tmp/build/framework/premium/features/premium-header/items/contacts/config.php:4
6862
  msgid "Contacts"
6863
  msgstr ""
6864
 
6865
- #: framework/premium/features/premium-header/items/contacts/options.php:300,
6866
- #: build_tmp/build/framework/premium/features/premium-header/items/contacts/options.php:300
6867
  msgid "Open Links In New Tab"
6868
  msgstr ""
6869
 
6870
  #: framework/premium/features/premium-header/items/contacts/options.php:320,
6871
- #: framework/premium/features/premium-header/items/language-switcher/options.php:95,
6872
- #: build_tmp/build/framework/premium/features/premium-header/items/contacts/options.php:320,
6873
- #: build_tmp/build/framework/premium/features/premium-header/items/language-switcher/options.php:95
6874
  msgid "Items Spacing"
6875
  msgstr ""
6876
 
6877
- #: framework/premium/features/premium-header/items/contacts/options.php:369,
6878
- #: build_tmp/build/framework/premium/features/premium-header/items/contacts/options.php:369
6879
  msgid "Items Direction"
6880
  msgstr ""
6881
 
6882
- #: framework/premium/features/premium-header/items/contacts/options.php:375,
6883
- #: build_tmp/build/framework/premium/features/premium-header/items/contacts/options.php:375
6884
  msgid "Horizontal"
6885
  msgstr ""
6886
 
6887
- #: framework/premium/features/premium-header/items/contacts/options.php:376,
6888
- #: build_tmp/build/framework/premium/features/premium-header/items/contacts/options.php:376
6889
  msgid "Vertical"
6890
  msgstr ""
6891
 
6892
  #: framework/premium/features/premium-header/items/contacts/options.php:730,
6893
  #: framework/premium/features/premium-header/items/contacts/options.php:772,
6894
  #: framework/premium/features/premium-header/items/contacts/options.php:811,
6895
- #: framework/premium/features/premium-header/items/contacts/options.php:850,
6896
- #: build_tmp/build/framework/premium/features/premium-header/items/contacts/options.php:730,
6897
- #: build_tmp/build/framework/premium/features/premium-header/items/contacts/options.php:772,
6898
- #: build_tmp/build/framework/premium/features/premium-header/items/contacts/options.php:811,
6899
- #: build_tmp/build/framework/premium/features/premium-header/items/contacts/options.php:850
6900
  msgid "Icons Background Color"
6901
  msgstr ""
6902
 
6903
  #: framework/premium/features/premium-header/items/contacts/options.php:734,
6904
  #: framework/premium/features/premium-header/items/contacts/options.php:776,
6905
  #: framework/premium/features/premium-header/items/contacts/options.php:815,
6906
- #: framework/premium/features/premium-header/items/contacts/options.php:854,
6907
- #: build_tmp/build/framework/premium/features/premium-header/items/contacts/options.php:734,
6908
- #: build_tmp/build/framework/premium/features/premium-header/items/contacts/options.php:776,
6909
- #: build_tmp/build/framework/premium/features/premium-header/items/contacts/options.php:815,
6910
- #: build_tmp/build/framework/premium/features/premium-header/items/contacts/options.php:854
6911
  msgid "Icons Border Color"
6912
  msgstr ""
6913
 
@@ -6915,150 +5024,117 @@ msgstr ""
6915
  #: framework/premium/features/premium-header/items/divider/options.php:107,
6916
  #: framework/premium/features/premium-header/items/divider/options.php:126,
6917
  #: framework/premium/features/premium-header/items/language-switcher/options.php:323,
6918
- #: framework/premium/features/premium-header/items/search-input/options.php:734,
6919
- #: build_tmp/build/framework/premium/features/premium-header/items/contacts/options.php:895,
6920
- #: build_tmp/build/framework/premium/features/premium-header/items/divider/options.php:107,
6921
- #: build_tmp/build/framework/premium/features/premium-header/items/divider/options.php:126,
6922
- #: build_tmp/build/framework/premium/features/premium-header/items/language-switcher/options.php:323,
6923
- #: build_tmp/build/framework/premium/features/premium-header/items/search-input/options.php:734
6924
  msgid "Margin"
6925
  msgstr ""
6926
 
6927
- #: framework/premium/features/premium-header/items/dark-mode-switcher/config.php:5,
6928
- #: build_tmp/build/framework/premium/features/premium-header/items/dark-mode-switcher/config.php:5
6929
  msgid "Dark Mode"
6930
  msgstr ""
6931
 
6932
- #: framework/premium/features/premium-header/items/divider/config.php:4,
6933
- #: build_tmp/build/framework/premium/features/premium-header/items/divider/config.php:4
6934
  msgid "Divider"
6935
  msgstr ""
6936
 
6937
- #: framework/premium/features/premium-header/items/divider/options.php:6,
6938
- #: build_tmp/build/framework/premium/features/premium-header/items/divider/options.php:6
6939
  msgid "Size"
6940
  msgstr ""
6941
 
6942
- #: framework/premium/features/premium-header/items/language-switcher/options.php:17,
6943
- #: build_tmp/build/framework/premium/features/premium-header/items/language-switcher/options.php:17
6944
  msgid "Top Level Options"
6945
  msgstr ""
6946
 
6947
- #: framework/premium/features/premium-header/items/language-switcher/options.php:37,
6948
- #: build_tmp/build/framework/premium/features/premium-header/items/language-switcher/options.php:37
6949
  msgid "Dropdown"
6950
  msgstr ""
6951
 
6952
- #: framework/premium/features/premium-header/items/language-switcher/options.php:47,
6953
- #: build_tmp/build/framework/premium/features/premium-header/items/language-switcher/options.php:47
6954
  msgid "Display"
6955
  msgstr ""
6956
 
6957
- #: framework/premium/features/premium-header/items/language-switcher/options.php:59,
6958
- #: build_tmp/build/framework/premium/features/premium-header/items/language-switcher/options.php:59
6959
  msgid "Flag"
6960
  msgstr ""
6961
 
6962
- #: framework/premium/features/premium-header/items/language-switcher/options.php:73,
6963
- #: build_tmp/build/framework/premium/features/premium-header/items/language-switcher/options.php:73
6964
  msgid "Label Style"
6965
  msgstr ""
6966
 
6967
- #: framework/premium/features/premium-header/items/language-switcher/options.php:79,
6968
- #: build_tmp/build/framework/premium/features/premium-header/items/language-switcher/options.php:79
6969
  msgid "Long"
6970
  msgstr ""
6971
 
6972
- #: framework/premium/features/premium-header/items/language-switcher/options.php:80,
6973
- #: build_tmp/build/framework/premium/features/premium-header/items/language-switcher/options.php:80
6974
  msgid "Short"
6975
  msgstr ""
6976
 
6977
- #: framework/premium/features/premium-header/items/language-switcher/options.php:112,
6978
- #: build_tmp/build/framework/premium/features/premium-header/items/language-switcher/options.php:112
6979
  msgid "Hide Current Language"
6980
  msgstr ""
6981
 
6982
- #: framework/premium/features/premium-header/items/language-switcher/options.php:343,
6983
- #: build_tmp/build/framework/premium/features/premium-header/items/language-switcher/options.php:343
6984
  msgid "Dropdown Options"
6985
  msgstr ""
6986
 
6987
- #: framework/premium/features/premium-header/items/language-switcher/options.php:352,
6988
- #: build_tmp/build/framework/premium/features/premium-header/items/language-switcher/options.php:352
6989
  msgid "Dropdown Top Offset"
6990
  msgstr ""
6991
 
6992
- #: framework/premium/features/premium-header/items/search-input/config.php:4,
6993
- #: build_tmp/build/framework/premium/features/premium-header/items/search-input/config.php:4
6994
  msgid "Search Box"
6995
  msgstr ""
6996
 
6997
- #: framework/premium/features/premium-header/items/search-input/options.php:42,
6998
- #: build_tmp/build/framework/premium/features/premium-header/items/search-input/options.php:42
6999
  msgid "Placeholder Text"
7000
  msgstr ""
7001
 
7002
- #: framework/premium/features/premium-header/items/search-input/options.php:52,
7003
- #: build_tmp/build/framework/premium/features/premium-header/items/search-input/options.php:52
7004
  msgid "Input Maximum Width"
7005
  msgstr ""
7006
 
7007
- #: framework/premium/features/premium-header/items/search-input/options.php:64,
7008
- #: build_tmp/build/framework/premium/features/premium-header/items/search-input/options.php:64
7009
  msgid "Input Height"
7010
  msgstr ""
7011
 
7012
- #: framework/premium/features/premium-header/items/search-input/options.php:89,
7013
- #: build_tmp/build/framework/premium/features/premium-header/items/search-input/options.php:89
7014
  msgid "Live Results"
7015
  msgstr ""
7016
 
7017
- #: framework/premium/features/premium-header/items/search-input/options.php:100,
7018
- #: build_tmp/build/framework/premium/features/premium-header/items/search-input/options.php:100
7019
  msgid "Live Results Images"
7020
  msgstr ""
7021
 
7022
- #: framework/premium/features/premium-header/items/search-input/options.php:111,
7023
- #: build_tmp/build/framework/premium/features/premium-header/items/search-input/options.php:111
7024
  msgid "Search Through Criteria"
7025
  msgstr ""
7026
 
7027
- #: framework/premium/features/premium-header/items/search-input/options.php:112,
7028
- #: build_tmp/build/framework/premium/features/premium-header/items/search-input/options.php:112
7029
  msgid "Chose in which post types do you want to perform searches."
7030
  msgstr ""
7031
 
7032
  #: framework/premium/features/premium-header/items/search-input/options.php:324,
7033
  #: framework/premium/features/premium-header/items/search-input/options.php:353,
7034
  #: framework/premium/features/premium-header/items/search-input/options.php:385,
7035
- #: framework/premium/features/premium-header/items/search-input/options.php:415,
7036
- #: build_tmp/build/framework/premium/features/premium-header/items/search-input/options.php:324,
7037
- #: build_tmp/build/framework/premium/features/premium-header/items/search-input/options.php:353,
7038
- #: build_tmp/build/framework/premium/features/premium-header/items/search-input/options.php:385,
7039
- #: build_tmp/build/framework/premium/features/premium-header/items/search-input/options.php:415
7040
  msgid "Input Icon Color"
7041
  msgstr ""
7042
 
7043
- #: framework/premium/features/premium-header/items/search-input/options.php:765,
7044
- #: build_tmp/build/framework/premium/features/premium-header/items/search-input/options.php:765
7045
  msgid "Dropdown Text Color"
7046
  msgstr ""
7047
 
7048
- #: framework/premium/features/premium-header/items/search-input/options.php:796,
7049
- #: build_tmp/build/framework/premium/features/premium-header/items/search-input/options.php:796
7050
  msgid "Dropdown Background"
7051
  msgstr ""
7052
 
7053
- #: framework/premium/features/premium-header/items/widget-area-1/config.php:4,
7054
- #: build_tmp/build/framework/premium/features/premium-header/items/widget-area-1/config.php:4
7055
  msgid "Widget Area"
7056
  msgstr ""
7057
 
7058
  #: framework/extensions/newsletter-subscribe/admin-static/js/ListPicker.js:14
7059
  #: framework/extensions/newsletter-subscribe/admin-static/js/ListPicker/Implementation.js:63
7060
  #: framework/extensions/newsletter-subscribe/dashboard-static/js/EditCredentials.js:213
7061
- #: static/js/screens/SiteExport.js:143
7062
  msgid "Loading..."
7063
  msgstr ""
7064
 
@@ -7780,12 +5856,12 @@ msgstr ""
7780
  msgid "Select location"
7781
  msgstr ""
7782
 
7783
- #: framework/premium/static/js/options/PreviewedPostsSelect.js:107
7784
  #: static/js/options/ConditionsManager/PostIdPicker.js:67
7785
  msgid "Type to search by ID or title..."
7786
  msgstr ""
7787
 
7788
- #: framework/premium/static/js/options/PreviewedPostsSelect.js:111
7789
  #: static/js/options/ConditionsManager/PostIdPicker.js:73
7790
  msgid "Select post"
7791
  msgstr ""
@@ -8275,11 +6351,11 @@ msgid ""
8275
  "Please select your prefered one in order to continue."
8276
  msgstr ""
8277
 
8278
- #: static/js/screens/DemoInstall/Wizzard/Plugins.js:65
8279
  msgid "Install & Activate Plugins"
8280
  msgstr ""
8281
 
8282
- #: static/js/screens/DemoInstall/Wizzard/Plugins.js:67
8283
  msgid ""
8284
  "The following plugins are required for this starter site in order to work "
8285
  "properly."
@@ -8311,22 +6387,18 @@ msgstr ""
8311
  msgid "Allow & Continue"
8312
  msgstr ""
8313
 
8314
- #: static/js/screens/SiteExport.js:120
8315
  msgid "Builder"
8316
  msgstr ""
8317
 
8318
- #: static/js/screens/SiteExport.js:131
8319
- msgid "Plugins"
8320
- msgstr ""
8321
-
8322
- #: static/js/screens/SiteExport.js:144
8323
  msgid "Export site"
8324
  msgstr ""
8325
 
8326
- #: static/js/screens/SiteExport.js:71
8327
  msgid "Site export"
8328
  msgstr ""
8329
 
8330
- #: static/js/screens/SiteExport.js:97
8331
  msgid "Preview URL"
8332
  msgstr ""
7
  "MIME-Version: 1.0\n"
8
  "Content-Type: text/plain; charset=UTF-8\n"
9
  "Content-Transfer-Encoding: 8bit\n"
10
+ "POT-Creation-Date: 2022-07-14 15:58+0000\n"
11
  "Project-Id-Version: undefined\n"
12
  "X-Poedit-Basepath: ..\n"
13
  "X-Poedit-KeywordsList: __;_e;_ex:1,2c;_n:1,2;_n_noop:1,2;_nx:1,2,4c;"
21
  "x-generator: babel-plugin-wp-i18n\n"
22
 
23
  #. translators: %s: PHP version
24
+ #: blocksy-companion.php:128
25
  msgid "Blocksy requires PHP version %s+, plugin is currently NOT RUNNING."
26
  msgstr ""
27
 
28
  #. translators: %s: WordPress version
29
+ #: blocksy-companion.php:139
30
  msgid ""
31
  "Blocksy requires WordPress version %s+. Because you are using an earlier "
32
  "version, the plugin is currently NOT RUNNING."
33
  msgstr ""
34
 
35
  #: framework/extensions-manager.php:245,
36
+ #: framework/premium/extensions/adobe-typekit/extension.php:46
 
 
37
  msgid "Adobe Typekit"
38
  msgstr ""
39
 
40
+ #: framework/extensions-manager.php:246
 
41
  msgid ""
42
  "Connect your Typekit account and use your fonts in any typography option."
43
  msgstr ""
44
 
45
  #: framework/extensions-manager.php:257,
46
+ #: framework/premium/extensions/code-snippets/readme.php:38
 
 
47
  msgid "Custom Code Snippets"
48
  msgstr ""
49
 
50
+ #: framework/extensions-manager.php:258
 
51
  msgid ""
52
  "Add custom code snippets in your header and footer, globally and per post or "
53
  "page individually."
54
  msgstr ""
55
 
56
  #: framework/extensions-manager.php:269,
57
+ #: framework/premium/extensions/custom-fonts/extension.php:153
 
 
58
  msgid "Custom Fonts"
59
  msgstr ""
60
 
61
+ #: framework/extensions-manager.php:270
 
62
  msgid ""
63
  "Upload unlimited number of custom fonts or variable fonts and use them in "
64
  "any typography option."
65
  msgstr ""
66
 
67
  #: framework/extensions-manager.php:281,
68
+ #: framework/premium/extensions/local-google-fonts/extension.php:188
 
 
69
  msgid "Local Google Fonts"
70
  msgstr ""
71
 
72
+ #: framework/extensions-manager.php:282
 
73
  msgid "Serve Google Fonts from your own server for full GDPR compliancy."
74
  msgstr ""
75
 
76
+ #: framework/extensions-manager.php:293
 
77
  msgid "Advanced Menu"
78
  msgstr ""
79
 
80
+ #: framework/extensions-manager.php:294
 
81
  msgid ""
82
  "Create beautiful mega menus, assign icons add badges to menu items, and "
83
  "content blocks inside menu items."
84
  msgstr ""
85
 
86
+ #: framework/extensions-manager.php:305
 
87
  msgid "Shortcuts Bar"
88
  msgstr ""
89
 
90
+ #: framework/extensions-manager.php:306
 
91
  msgid ""
92
  "Transform your website into a app like by displaying a neat shortcuts bar at "
93
  "the bottom of the vieport."
94
  msgstr ""
95
 
96
+ #: framework/extensions-manager.php:317
 
97
  msgid "Multiple Sidebars"
98
  msgstr ""
99
 
100
+ #: framework/extensions-manager.php:318
 
101
  msgid ""
102
  "Create unlimited number of sidebars and display them conditionaly on any "
103
  "page or post."
104
  msgstr ""
105
 
106
+ #: framework/extensions-manager.php:329
 
107
  msgid "White Label (Agency Package)"
108
  msgstr ""
109
 
110
+ #: framework/extensions-manager.php:330
 
111
  msgid "Change the theme and companion plugin branding to your own custom one."
112
  msgstr ""
113
 
114
+ #: framework/extensions-manager.php:341
 
115
  msgid "WooCommerce Extra"
116
  msgstr ""
117
 
118
+ #: framework/extensions-manager.php:342
 
119
  msgid ""
120
  "Increase the conversion rate by adding a product quick view modal, a "
121
  "floating cart. Control the single product gallery/slider and the layout, add "
123
  msgstr ""
124
 
125
  #: framework/theme-integration.php:310,
 
126
  #: framework/extensions/widgets/widgets/ct-facebook/options.php:16,
127
  #: framework/extensions/widgets/widgets/ct-facebook/view.php:12,
128
+ #: framework/extensions/widgets/widgets/ct-facebook/widget.php:13
 
 
 
129
  msgid "Facebook"
130
  msgstr ""
131
 
132
+ #: framework/theme-integration.php:311
 
133
  msgid "Twitter"
134
  msgstr ""
135
 
136
+ #: framework/theme-integration.php:312
 
137
  msgid "LinkedIn"
138
  msgstr ""
139
 
140
+ #: framework/theme-integration.php:313
 
141
  msgid "Dribbble"
142
  msgstr ""
143
 
144
+ #: framework/theme-integration.php:314
 
145
  msgid "Instagram"
146
  msgstr ""
147
 
148
+ #: framework/theme-integration.php:315
 
149
  msgid "Pinterest"
150
  msgstr ""
151
 
152
+ #: framework/theme-integration.php:316
 
153
  msgid "WordPress"
154
  msgstr ""
155
 
156
+ #: framework/theme-integration.php:317
 
157
  msgid "GitHub"
158
  msgstr ""
159
 
160
  #: framework/theme-integration.php:318,
 
161
  #: framework/extensions/widgets/widgets/ct-contact-info/options.php:497,
162
  #: framework/extensions/widgets/widgets/ct-socials/options.php:100,
163
+ #: framework/premium/features/content-blocks/options/archive.php:47
 
 
 
164
  msgid "Medium"
165
  msgstr ""
166
 
167
+ #: framework/theme-integration.php:319
 
168
  msgid "YouTube"
169
  msgstr ""
170
 
171
+ #: framework/theme-integration.php:320
 
172
  msgid "Vimeo"
173
  msgstr ""
174
 
175
+ #: framework/theme-integration.php:321
 
176
  msgid "VKontakte"
177
  msgstr ""
178
 
179
+ #: framework/theme-integration.php:322
 
180
  msgid "Odnoklassniki"
181
  msgstr ""
182
 
183
+ #: framework/theme-integration.php:323
 
184
  msgid "TikTok"
185
  msgstr ""
186
 
187
+ #: framework/theme-integration.php:395
 
188
  msgid "Companion"
189
  msgstr ""
190
 
191
+ #: framework/theme-integration.php:411 static/js/screens/SiteExport.js:111
 
 
192
  msgid "PRO"
193
  msgstr ""
194
 
195
+ #: framework/widgets-manager.php:75
 
196
  msgid "Default widget name"
197
  msgstr ""
198
 
199
+ #: framework/widgets-manager.php:81
 
200
  msgid "Display online support infomation"
201
  msgstr ""
202
 
203
+ #: framework/widgets-manager.php:144
 
204
  msgid "Widget Title"
205
  msgstr ""
206
 
207
  #. translators: %s: Link to the login page.
208
+ #: framework/features/account-auth.php:92
 
209
  msgid ""
210
  "Check your email for the confirmation link, then visit the <a href=\"%s"
211
  "\">login page</a>."
212
  msgstr ""
213
 
214
  #: framework/features/account-auth.php:104,
215
+ #: framework/features/account-auth.php:232
 
 
216
  msgid "Check your email"
217
  msgstr ""
218
 
219
+ #: framework/features/account-auth.php:199
 
220
  msgid ""
221
  "Your account was created successfully. Your login details have been sent to "
222
  "your email address. Please visit the <a href=\"%s\">login page</a>."
223
  msgstr ""
224
 
225
+ #: framework/features/account-auth.php:208
 
226
  msgid ""
227
  "Your account was created successfully and a password has been sent to your "
228
  "email address. Please visit the <a href=\"%s\">login page</a>."
229
  msgstr ""
230
 
231
+ #: framework/features/account-auth.php:238
 
232
  msgid "Registration Form"
233
  msgstr ""
234
 
235
+ #: framework/features/account-auth.php:239
 
236
  msgid "Register For This Site"
237
  msgstr ""
238
 
239
+ #: framework/features/conditions-manager.php:486
 
240
  msgid "Entire Website"
241
  msgstr ""
242
 
243
+ #: framework/features/conditions-manager.php:494,
244
+ #: framework/features/conditions-manager.php:536,
245
+ #: framework/features/conditions-manager.php:568
 
 
 
246
  msgid "Basic"
247
  msgstr ""
248
 
249
+ #: framework/features/conditions-manager.php:498,
250
+ #: framework/features/conditions-manager.php:572
 
 
251
  msgid "Singulars"
252
  msgstr ""
253
 
254
+ #: framework/features/conditions-manager.php:503,
255
+ #: framework/features/conditions-manager.php:540
 
 
256
  msgid "Archives"
257
  msgstr ""
258
 
259
+ #: framework/features/conditions-manager.php:509,
260
+ #: framework/features/conditions-manager.php:546,
261
+ #: framework/features/conditions-manager.php:578,
262
  #: framework/extensions/trending/customizer.php:4,
 
 
 
 
263
  #: framework/extensions/widgets/widgets/ct-posts/options.php:11,
264
  #: framework/extensions/widgets/widgets/ct-posts/options.php:98,
265
  #: framework/extensions/widgets/widgets/ct-posts/view.php:139,
266
  #: framework/extensions/widgets/widgets/ct-posts/widget.php:13,
267
+ #: framework/premium/features/premium-header/items/search-input/options.php:4
 
 
 
 
 
268
  msgid "Posts"
269
  msgstr ""
270
 
271
+ #: framework/features/conditions-manager.php:513,
272
+ #: framework/features/conditions-manager.php:582,
 
 
273
  #: framework/premium/features/content-blocks/hooks-manager.php:408,
274
  #: framework/premium/features/content-blocks/hooks-manager.php:416,
275
  #: framework/premium/features/content-blocks/hooks-manager.php:424,
276
  #: framework/premium/features/content-blocks/hooks-manager.php:431,
277
  #: framework/premium/features/content-blocks/hooks-manager.php:438,
278
+ #: framework/premium/features/content-blocks/hooks-manager.php:446
 
 
 
 
 
 
279
  msgid "Single Post"
280
  msgstr ""
281
 
282
+ #: framework/features/conditions-manager.php:518,
283
+ #: framework/features/conditions-manager.php:550
 
 
284
  msgid "All Post Archives"
285
  msgstr ""
286
 
287
+ #: framework/features/conditions-manager.php:523,
288
+ #: framework/features/conditions-manager.php:555
 
 
289
  msgid "Post Categories"
290
  msgstr ""
291
 
292
+ #: framework/features/conditions-manager.php:528,
293
+ #: framework/features/conditions-manager.php:560
 
 
294
  msgid "Post Tags"
295
  msgstr ""
296
 
297
+ #: framework/features/conditions-manager.php:590,
 
298
  #: framework/extensions/widgets/widgets/ct-posts/options.php:12,
299
+ #: framework/premium/features/premium-header/items/search-input/options.php:5
 
 
300
  msgid "Pages"
301
  msgstr ""
302
 
303
+ #: framework/features/conditions-manager.php:594
 
304
  msgid "Single Page"
305
  msgstr ""
306
 
307
+ #: framework/features/conditions-manager.php:621
 
308
  msgid "%s Single"
309
  msgstr ""
310
 
311
+ #: framework/features/conditions-manager.php:631
 
312
  msgid "%s Archive"
313
  msgstr ""
314
 
315
+ #: framework/features/conditions-manager.php:644
 
316
  msgid "%s %s Taxonomy"
317
  msgstr ""
318
 
319
+ #: framework/features/conditions-manager.php:659
 
320
  msgid "Post ID"
321
  msgstr ""
322
 
323
+ #: framework/features/conditions-manager.php:664
 
324
  msgid "Page ID"
325
  msgstr ""
326
 
327
+ #: framework/features/conditions-manager.php:669
 
328
  #: static/js/options/ConditionsManager/PostIdPicker.js:76
329
  msgid "Custom Post Type ID"
330
  msgstr ""
331
 
332
+ #: framework/features/conditions-manager.php:674
 
333
  msgid "Post with Taxonomy ID"
334
  msgstr ""
335
 
336
+ #: framework/features/conditions-manager.php:679
 
337
  msgid "Taxonomy ID"
338
  msgstr ""
339
 
340
+ #: framework/features/conditions-manager.php:683
 
341
  msgid "Specific"
342
  msgstr ""
343
 
344
+ #: framework/features/conditions-manager.php:689
 
345
  msgid "Other Pages"
346
  msgstr ""
347
 
348
+ #: framework/features/conditions-manager.php:693
 
349
  msgid "404"
350
  msgstr ""
351
 
352
+ #: framework/features/conditions-manager.php:698,
 
353
  #: framework/premium/features/premium-header/items/search-input/options.php:45,
354
+ #: framework/premium/features/premium-header/items/search-input/view.php:95
 
 
355
  msgid "Search"
356
  msgstr ""
357
 
358
+ #: framework/features/conditions-manager.php:703
 
359
  msgid "Blog"
360
  msgstr ""
361
 
362
+ #: framework/features/conditions-manager.php:708
 
363
  msgid "Front Page"
364
  msgstr ""
365
 
366
+ #: framework/features/conditions-manager.php:713
 
367
  msgid "Privacy Policy Page"
368
  msgstr ""
369
 
370
+ #: framework/features/conditions-manager.php:725
 
371
  msgid "Author"
372
  msgstr ""
373
 
374
+ #: framework/features/conditions-manager.php:735
 
375
  msgid "WooCommerce"
376
  msgstr ""
377
 
378
+ #: framework/features/conditions-manager.php:739
 
379
  msgid "Shop Home"
380
  msgstr ""
381
 
382
+ #: framework/features/conditions-manager.php:744
 
383
  msgid "Single Product"
384
  msgstr ""
385
 
386
+ #: framework/features/conditions-manager.php:749
 
387
  msgid "Product Archives"
388
  msgstr ""
389
 
390
+ #: framework/features/conditions-manager.php:754
 
391
  msgid "Product Categories"
392
  msgstr ""
393
 
394
+ #: framework/features/conditions-manager.php:759
 
395
  msgid "Product Tags"
396
  msgstr ""
397
 
398
+ #: framework/features/conditions-manager.php:767
 
399
  msgid "Custom Post Types"
400
  msgstr ""
401
 
402
+ #: framework/features/conditions-manager.php:776
 
403
  msgid "User Auth"
404
  msgstr ""
405
 
406
+ #: framework/features/conditions-manager.php:780
 
407
  msgid "User Logged In"
408
  msgstr ""
409
 
410
+ #: framework/features/conditions-manager.php:785
 
411
  msgid "User Logged Out"
412
  msgstr ""
413
 
414
+ #: framework/features/conditions-manager.php:791
 
415
  msgid "User Roles"
416
  msgstr ""
417
 
418
+ #: framework/features/conditions-manager.php:796,
 
419
  #: framework/premium/features/content-blocks/options/404.php:19,
420
  #: framework/premium/features/content-blocks/options/header.php:19,
421
  #: framework/premium/features/content-blocks/options/hook.php:24,
422
+ #: framework/premium/features/content-blocks/options/popup.php:25
 
 
 
 
423
  msgid "Other"
424
  msgstr ""
425
 
426
+ #: framework/features/conditions-manager.php:800
 
427
  msgid "Post Author"
428
  msgstr ""
429
 
430
+ #: framework/features/conditions-manager.php:812,
431
+ #: framework/premium/features/premium-header/items/language-switcher/config.php:14
 
 
432
  msgid "Languages"
433
  msgstr ""
434
 
435
+ #: framework/features/conditions-manager.php:816
 
436
  msgid "Current Language"
437
  msgstr ""
438
 
439
+ #: framework/features/conditions-manager.php:824
 
440
  msgid "bbPress"
441
  msgstr ""
442
 
443
+ #: framework/features/conditions-manager.php:828
 
444
  msgid "Profile"
445
  msgstr ""
446
 
447
+ #: framework/features/conditions-manager.php:840
 
448
  #: static/js/options/ConditionsManager.js:104
449
  msgid "Include"
450
  msgstr ""
451
 
452
+ #: framework/features/conditions-manager.php:840
 
453
  #: static/js/options/ConditionsManager.js:105
454
  msgid "Exclude"
455
  msgstr ""
456
 
457
+ #: framework/features/conditions-manager.php:893
 
458
  msgid "Language"
459
  msgstr ""
460
 
461
+ #: framework/features/demo-install.php:233
 
462
  msgid ""
463
  "Your PHP installation doesn't have support for XML. Please install the "
464
  "<i>xml</i> or <i>simplexml</i> PHP extension in order to be able to install "
466
  "in doing so."
467
  msgstr ""
468
 
469
+ #: framework/features/dynamic-css.php:46
 
470
  msgid "Dynamic CSS Output"
471
  msgstr ""
472
 
473
+ #: framework/features/dynamic-css.php:50
 
474
  msgid ""
475
  "The strategy of outputting the dynamic CSS. File - all the CSS code will be "
476
  "placed in a static file, otherwise it will be placed inline in head."
477
  msgstr ""
478
 
479
+ #: framework/features/dynamic-css.php:52
 
480
  msgid "File"
481
  msgstr ""
482
 
483
  #: framework/features/dynamic-css.php:53,
484
+ #: framework/premium/features/premium-header/items/language-switcher/options.php:32
 
 
485
  msgid "Inline"
486
  msgstr ""
487
 
488
+ #: framework/features/google-analytics.php:69
489
+ msgid "Google Analytics v4"
 
490
  msgstr ""
491
 
492
+ #: framework/features/google-analytics.php:75
493
+ msgid ""
494
+ "Link your Google Analytics 4 tracking ID. More info and instructions can be "
495
+ "found %shere%s."
496
  msgstr ""
497
 
498
+ #: framework/features/google-analytics.php:87
499
+ msgid "Google Analytics v3 (Legacy)"
 
500
  msgstr ""
501
 
502
+ #: framework/features/google-analytics.php:93
 
503
  msgid ""
504
+ "Please note: this option will be deprecated soon and we strongly reccommend "
505
+ "switching to GA4, more info can be fount %shere%s."
506
  msgstr ""
507
 
508
+ #: framework/features/google-analytics.php:105
 
509
  msgid "IP Anonymization"
510
  msgstr ""
511
 
512
+ #: framework/features/google-analytics.php:109
 
513
  msgid ""
514
  "Enable Google Analytics IP Anonymization for enhanced privacy. More info and "
515
  "instructions can be found %shere%s."
516
  msgstr ""
517
 
518
+ #: framework/features/opengraph-meta-data.php:17
 
519
  msgid "OpenGraph Meta Data"
520
  msgstr ""
521
 
522
+ #: framework/features/opengraph-meta-data.php:20
 
523
  msgid "Enable the OpenGraph rich meta data features for your website."
524
  msgstr ""
525
 
526
+ #: framework/features/opengraph-meta-data.php:29
 
527
  msgid "Facebook Page URL"
528
  msgstr ""
529
 
530
+ #: framework/features/opengraph-meta-data.php:36
 
531
  msgid "Facebook App ID"
532
  msgstr ""
533
 
534
+ #: framework/features/opengraph-meta-data.php:43
 
535
  msgid "Twitter Username"
536
  msgstr ""
537
 
538
  #. translators: This is a brand name. Preferably to not be translated
539
  #: framework/extensions/cookies-consent/config.php:5,
540
+ #: framework/extensions/cookies-consent/customizer.php:5
 
 
541
  msgctxt "Extension Brand Name"
542
  msgid "Cookies Consent"
543
  msgstr ""
544
 
545
+ #: framework/extensions/cookies-consent/config.php:6
 
546
  msgid ""
547
  "Display a cookie acceptance box in order to comply with the privacy "
548
  "regulations in your country."
557
  #: framework/premium/extensions/shortcuts/customizer.php:534,
558
  #: framework/premium/extensions/woocommerce-extra/floating-cart.php:11,
559
  #: framework/premium/extensions/woocommerce-extra/offcanvas-filter.php:164,
560
+ #: framework/features/header/items/account/options.php:70,
 
 
 
 
 
561
  #: framework/premium/extensions/woocommerce-extra/includes/wish-list-options.php:23,
562
  #: framework/premium/features/content-blocks/options/popup.php:30,
 
 
 
 
563
  #: framework/premium/extensions/post-types-extra/includes/filtering/customizer.php:35,
564
  #: framework/premium/extensions/post-types-extra/includes/read-progress/customizer.php:19,
565
  #: framework/premium/extensions/woocommerce-extra/header-items/wish-list/options.php:5,
566
  #: framework/premium/features/premium-header/items/contacts/options.php:5,
567
  #: framework/premium/features/premium-header/items/language-switcher/options.php:21,
568
  #: framework/premium/features/premium-header/items/language-switcher/options.php:347,
569
+ #: framework/premium/features/premium-header/items/search-input/options.php:37
 
 
 
 
 
 
 
 
 
 
570
  #: framework/premium/extensions/white-label/dashboard-static/js/EditSettings.js:128
571
  msgid "General"
572
  msgstr ""
575
  #: framework/premium/extensions/shortcuts/customizer.php:546,
576
  #: framework/premium/extensions/woocommerce-extra/extension.php:81,
577
  #: framework/premium/extensions/woocommerce-extra/offcanvas-filter.php:186,
578
+ #: framework/features/header/items/account/options.php:225,
579
+ #: framework/features/header/items/account/options.php:466,
580
+ #: framework/features/header/items/account/options.php:524,
 
 
 
581
  #: framework/premium/extensions/post-types-extra/includes/filtering/customizer.php:48,
582
+ #: framework/premium/extensions/woocommerce-extra/header-items/wish-list/options.php:56
 
 
 
 
583
  msgid "Type 1"
584
  msgstr ""
585
 
587
  #: framework/premium/extensions/shortcuts/customizer.php:551,
588
  #: framework/premium/extensions/woocommerce-extra/extension.php:86,
589
  #: framework/premium/extensions/woocommerce-extra/offcanvas-filter.php:191,
590
+ #: framework/features/header/items/account/options.php:230,
591
+ #: framework/features/header/items/account/options.php:471,
592
+ #: framework/features/header/items/account/options.php:529,
 
 
 
593
  #: framework/premium/extensions/post-types-extra/includes/filtering/customizer.php:53,
594
+ #: framework/premium/extensions/woocommerce-extra/header-items/wish-list/options.php:61
 
 
 
 
595
  msgid "Type 2"
596
  msgstr ""
597
 
598
+ #: framework/extensions/cookies-consent/customizer.php:40
 
599
  msgid "Cookie period"
600
  msgstr ""
601
 
602
+ #: framework/extensions/cookies-consent/customizer.php:48
 
603
  msgid "One hour"
604
  msgstr ""
605
 
606
+ #: framework/extensions/cookies-consent/customizer.php:49
 
607
  msgid "One day"
608
  msgstr ""
609
 
610
+ #: framework/extensions/cookies-consent/customizer.php:50
 
611
  msgid "One week"
612
  msgstr ""
613
 
614
+ #: framework/extensions/cookies-consent/customizer.php:51
 
615
  msgid "One month"
616
  msgstr ""
617
 
618
+ #: framework/extensions/cookies-consent/customizer.php:52
 
619
  msgid "Three months"
620
  msgstr ""
621
 
622
+ #: framework/extensions/cookies-consent/customizer.php:53
 
623
  msgid "Six months"
624
  msgstr ""
625
 
626
+ #: framework/extensions/cookies-consent/customizer.php:54
 
627
  msgid "One year"
628
  msgstr ""
629
 
630
+ #: framework/extensions/cookies-consent/customizer.php:55
 
631
  msgid "Forever"
632
  msgstr ""
633
 
636
  #: framework/premium/features/content-blocks/hooks-manager.php:243,
637
  #: framework/premium/features/content-blocks/hooks-manager.php:251,
638
  #: framework/premium/features/content-blocks/hooks-manager.php:259,
 
639
  #: framework/extensions/widgets/widgets/ct-contact-info/options.php:80,
640
  #: framework/extensions/widgets/widgets/ct-contact-info/options.php:141,
641
  #: framework/extensions/widgets/widgets/ct-contact-info/options.php:201,
643
  #: framework/extensions/widgets/widgets/ct-contact-info/options.php:321,
644
  #: framework/extensions/widgets/widgets/ct-contact-info/options.php:381,
645
  #: framework/extensions/widgets/widgets/ct-contact-info/options.php:441,
 
 
 
 
646
  #: framework/premium/features/premium-header/items/contacts/options.php:52,
647
  #: framework/premium/features/premium-header/items/contacts/options.php:88,
648
  #: framework/premium/features/premium-header/items/contacts/options.php:124,
649
  #: framework/premium/features/premium-header/items/contacts/options.php:160,
650
  #: framework/premium/features/premium-header/items/contacts/options.php:196,
651
  #: framework/premium/features/premium-header/items/contacts/options.php:232,
652
+ #: framework/premium/features/premium-header/items/contacts/options.php:268
 
 
 
 
 
 
 
 
 
 
 
 
 
 
653
  msgid "Content"
654
  msgstr ""
655
 
656
  #: framework/extensions/cookies-consent/customizer.php:64,
657
+ #: framework/extensions/cookies-consent/helpers.php:30
 
 
658
  msgid ""
659
  "We use cookies to ensure that we give you the best experience on our website."
660
  msgstr ""
661
 
662
+ #: framework/extensions/cookies-consent/customizer.php:76
 
663
  msgid "Accept Button text"
664
  msgstr ""
665
 
666
  #: framework/extensions/cookies-consent/customizer.php:80,
667
+ #: framework/extensions/cookies-consent/helpers.php:33
 
 
668
  msgid "Accept"
669
  msgstr ""
670
 
671
+ #: framework/extensions/cookies-consent/customizer.php:85
 
672
  msgid "Decline Button text"
673
  msgstr ""
674
 
675
  #: framework/extensions/cookies-consent/customizer.php:88,
676
+ #: framework/extensions/cookies-consent/helpers.php:34
 
 
677
  msgid "Decline"
678
  msgstr ""
679
 
680
+ #: framework/extensions/cookies-consent/customizer.php:98
 
681
  msgid "Maximum Width"
682
  msgstr ""
683
 
684
+ #: framework/extensions/cookies-consent/customizer.php:119
 
685
  msgid "I accept the %sPrivacy Policy%s*"
686
  msgstr ""
687
 
688
+ #: framework/extensions/cookies-consent/customizer.php:123
 
689
  msgid "This text will appear under each comment form and subscribe form."
690
  msgstr ""
691
 
698
  #: framework/premium/extensions/woocommerce-extra/floating-cart.php:81,
699
  #: framework/premium/extensions/woocommerce-extra/offcanvas-filter.php:31,
700
  #: framework/premium/extensions/woocommerce-extra/offcanvas-filter.php:279,
701
+ #: framework/features/header/items/account/options.php:664,
 
 
 
 
702
  #: framework/premium/extensions/woocommerce-extra/includes/wish-list-options.php:126,
703
  #: framework/premium/features/content-blocks/options/popup.php:361,
 
 
 
 
 
704
  #: framework/premium/extensions/post-types-extra/includes/filtering/customizer.php:167,
705
  #: framework/premium/extensions/post-types-extra/includes/read-progress/customizer.php:66,
706
  #: framework/premium/extensions/woocommerce-extra/header-items/wish-list/options.php:151,
707
  #: framework/premium/features/premium-header/items/contacts/options.php:404,
708
  #: framework/premium/features/premium-header/items/language-switcher/options.php:186,
709
  #: framework/premium/features/premium-header/items/language-switcher/options.php:371,
710
+ #: framework/premium/features/premium-header/items/search-input/options.php:188
 
 
 
 
 
 
 
 
 
 
711
  msgid "Design"
712
  msgstr ""
713
 
714
  #: framework/extensions/cookies-consent/customizer.php:147,
715
+ #: framework/premium/extensions/mega-menu/options.php:615
 
 
716
  msgid "Text Color"
717
  msgstr ""
718
 
729
  #: framework/extensions/newsletter-subscribe/customizer.php:290,
730
  #: framework/extensions/newsletter-subscribe/customizer.php:322,
731
  #: framework/extensions/trending/customizer.php:366,
732
+ #: framework/premium/extensions/mega-menu/options.php:772,
733
+ #: framework/premium/extensions/mega-menu/options.php:819,
734
+ #: framework/premium/extensions/mega-menu/options.php:838,
735
  #: framework/premium/extensions/shortcuts/customizer.php:812,
736
  #: framework/premium/extensions/shortcuts/customizer.php:844,
737
  #: framework/premium/extensions/woocommerce-extra/floating-cart.php:99,
739
  #: framework/premium/extensions/woocommerce-extra/offcanvas-filter.php:369,
740
  #: framework/premium/extensions/woocommerce-extra/offcanvas-filter.php:403,
741
  #: framework/premium/extensions/woocommerce-extra/offcanvas-filter.php:442,
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
742
  #: framework/features/header/items/account/options.php:728,
743
+ #: framework/features/header/items/account/options.php:760,
744
+ #: framework/features/header/items/account/options.php:790,
745
+ #: framework/features/header/items/account/options.php:872,
746
+ #: framework/features/header/items/account/options.php:903,
747
+ #: framework/features/header/items/account/options.php:932,
748
+ #: framework/features/header/items/account/options.php:993,
749
+ #: framework/features/header/items/account/options.php:1023,
750
+ #: framework/features/header/items/account/options.php:1053,
751
+ #: framework/features/header/items/account/options.php:1089,
752
+ #: framework/features/header/items/account/options.php:1189,
753
+ #: framework/features/header/items/account/options.php:1225,
754
+ #: framework/features/header/items/account/options.php:1264,
755
  #: framework/premium/extensions/woocommerce-extra/includes/wish-list-options.php:159,
756
  #: framework/premium/extensions/woocommerce-extra/includes/wish-list-options.php:191,
757
  #: framework/premium/extensions/woocommerce-extra/includes/wish-list-options.php:235,
758
  #: framework/premium/extensions/woocommerce-extra/includes/wish-list-options.php:311,
 
 
 
 
 
 
 
 
 
 
759
  #: framework/premium/extensions/post-types-extra/includes/filtering/customizer.php:201,
760
  #: framework/premium/extensions/post-types-extra/includes/filtering/customizer.php:237,
761
  #: framework/premium/extensions/post-types-extra/includes/read-progress/customizer.php:84,
793
  #: framework/premium/features/premium-header/items/search-input/options.php:666,
794
  #: framework/premium/features/premium-header/items/search-input/options.php:696,
795
  #: framework/premium/features/premium-header/items/search-input/options.php:783,
796
+ #: framework/premium/features/premium-header/items/search-input/options.php:811
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
797
  msgid "Initial"
798
  msgstr ""
799
 
805
  #: framework/extensions/newsletter-subscribe/customizer.php:196,
806
  #: framework/extensions/newsletter-subscribe/customizer.php:327,
807
  #: framework/extensions/trending/customizer.php:372,
808
+ #: framework/premium/extensions/mega-menu/options.php:777,
809
  #: framework/premium/extensions/shortcuts/customizer.php:818,
810
  #: framework/premium/extensions/shortcuts/customizer.php:850,
811
  #: framework/premium/extensions/woocommerce-extra/offcanvas-filter.php:374,
812
  #: framework/premium/extensions/woocommerce-extra/offcanvas-filter.php:409,
813
  #: framework/premium/extensions/woocommerce-extra/offcanvas-filter.php:448,
814
+ #: framework/features/header/items/account/options.php:734,
815
+ #: framework/features/header/items/account/options.php:765,
816
+ #: framework/features/header/items/account/options.php:795,
817
+ #: framework/features/header/items/account/options.php:878,
818
+ #: framework/features/header/items/account/options.php:908,
 
 
 
 
 
 
 
 
 
819
  #: framework/features/header/items/account/options.php:937,
820
+ #: framework/features/header/items/account/options.php:999,
821
+ #: framework/features/header/items/account/options.php:1195,
822
+ #: framework/features/header/items/account/options.php:1231,
823
+ #: framework/features/header/items/account/options.php:1270,
 
 
 
 
 
824
  #: framework/premium/extensions/woocommerce-extra/header-items/wish-list/options.php:229,
825
  #: framework/premium/extensions/woocommerce-extra/header-items/wish-list/options.php:259,
826
  #: framework/premium/extensions/woocommerce-extra/header-items/wish-list/options.php:288,
837
  #: framework/premium/features/premium-header/items/dark-mode-switcher/options.php:111,
838
  #: framework/premium/features/premium-header/items/dark-mode-switcher/options.php:140,
839
  #: framework/premium/features/premium-header/items/language-switcher/options.php:404,
840
+ #: framework/premium/features/premium-header/items/search-input/options.php:788
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
841
  msgid "Hover"
842
  msgstr ""
843
 
844
  #: framework/extensions/cookies-consent/customizer.php:178,
845
  #: framework/extensions/cookies-consent/customizer.php:234,
846
  #: framework/extensions/cookies-consent/customizer.php:299,
847
+ #: framework/premium/extensions/mega-menu/options.php:826,
848
  #: framework/premium/extensions/woocommerce-extra/offcanvas-filter.php:425,
849
+ #: framework/features/header/items/account/options.php:1247,
 
 
 
850
  #: framework/premium/extensions/woocommerce-extra/includes/wish-list-options.php:173,
 
 
851
  #: framework/premium/extensions/post-types-extra/includes/read-progress/customizer.php:92,
852
+ #: framework/premium/features/premium-header/items/language-switcher/options.php:412
 
 
 
 
853
  msgid "Background Color"
854
  msgstr ""
855
 
856
  #: framework/extensions/cookies-consent/customizer.php:203,
857
  #: framework/extensions/cookies-consent/customizer.php:270,
858
  #: framework/extensions/trending/customizer.php:348,
859
+ #: framework/premium/extensions/mega-menu/options.php:806,
860
  #: framework/premium/extensions/shortcuts/customizer.php:794,
861
  #: framework/premium/extensions/woocommerce-extra/floating-cart.php:86,
862
+ #: framework/features/header/items/account/options.php:975,
 
 
 
 
 
 
863
  #: framework/premium/extensions/post-types-extra/includes/filtering/customizer.php:184,
864
  #: framework/premium/extensions/woocommerce-extra/header-items/wish-list/options.php:206,
865
  #: framework/premium/extensions/woocommerce-extra/header-items/wish-list/options.php:237,
872
  #: framework/premium/features/premium-header/items/language-switcher/options.php:232,
873
  #: framework/premium/features/premium-header/items/language-switcher/options.php:262,
874
  #: framework/premium/features/premium-header/items/language-switcher/options.php:291,
875
+ #: framework/premium/features/premium-header/items/language-switcher/options.php:382
 
 
 
 
 
 
 
 
 
 
 
 
 
 
876
  msgid "Font Color"
877
  msgstr ""
878
 
879
+ #: framework/extensions/cookies-consent/helpers.php:79
 
880
  msgid "I accept the %sPrivacy Policy%s"
881
  msgstr ""
882
 
884
  #: framework/extensions/newsletter-subscribe/readme.php:1,
885
  #: framework/premium/extensions/code-snippets/readme.php:1,
886
  #: framework/premium/extensions/post-types-extra/readme.php:1,
887
+ #: framework/premium/extensions/woocommerce-extra/readme.php:1
 
 
 
 
 
888
  msgid "Instructions"
889
  msgstr ""
890
 
891
+ #: framework/extensions/cookies-consent/readme.php:4
 
892
  msgid ""
893
  "After installing and activating the Cookies Consent extension you will be "
894
  "able to configure it from this location:"
895
  msgstr ""
896
 
897
+ #: framework/extensions/cookies-consent/readme.php:9
 
898
  msgid "Customizer"
899
  msgstr ""
900
 
901
+ #: framework/extensions/cookies-consent/readme.php:13
 
902
  msgid "Navigate to %s and customize the notification to meet your needs."
903
  msgstr ""
904
 
905
+ #: framework/extensions/cookies-consent/readme.php:16
 
906
  msgid "Customizer ➝ Cookie Consent"
907
  msgstr ""
908
 
909
  #. translators: This is a brand name. Preferably to not be translated
910
+ #: framework/extensions/newsletter-subscribe/config.php:5
 
911
  msgctxt "Extension Brand Name"
912
  msgid "Newsletter Subscribe"
913
  msgstr ""
914
 
915
+ #: framework/extensions/newsletter-subscribe/config.php:6
 
916
  msgid ""
917
  "Easily capture new leads for your newsletter with the help of a widget, "
918
  "shortcode or even a block inserted on your pages or posts."
919
  msgstr ""
920
 
921
+ #: framework/extensions/newsletter-subscribe/customizer.php:4
 
922
  msgid "Subscribe Form"
923
  msgstr ""
924
 
925
  #: framework/extensions/newsletter-subscribe/customizer.php:18,
926
  #: framework/extensions/newsletter-subscribe/ct-newsletter-subscribe/options.php:14,
 
927
  #: framework/extensions/widgets/widgets/ct-advertisement/options.php:15,
928
  #: framework/extensions/widgets/widgets/ct-contact-info/options.php:16,
929
  #: framework/extensions/widgets/widgets/ct-contact-info/options.php:73,
937
  #: framework/extensions/widgets/widgets/ct-posts/options.php:95,
938
  #: framework/extensions/widgets/widgets/ct-quote/options.php:15,
939
  #: framework/extensions/widgets/widgets/ct-socials/options.php:15,
 
940
  #: framework/premium/features/premium-header/items/contacts/options.php:45,
941
  #: framework/premium/features/premium-header/items/contacts/options.php:81,
942
  #: framework/premium/features/premium-header/items/contacts/options.php:117,
943
  #: framework/premium/features/premium-header/items/contacts/options.php:153,
944
  #: framework/premium/features/premium-header/items/contacts/options.php:189,
945
  #: framework/premium/features/premium-header/items/contacts/options.php:225,
946
+ #: framework/premium/features/premium-header/items/contacts/options.php:261
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
947
  msgid "Title"
948
  msgstr ""
949
 
950
  #: framework/extensions/newsletter-subscribe/customizer.php:21,
951
  #: framework/extensions/newsletter-subscribe/helpers.php:42,
952
+ #: framework/extensions/newsletter-subscribe/helpers.php:96
 
 
 
953
  msgid "Newsletter Updates"
954
  msgstr ""
955
 
956
  #: framework/extensions/newsletter-subscribe/customizer.php:27,
957
+ #: framework/extensions/widgets/widgets/ct-posts/widget.php:14
 
 
958
  msgid "Description"
959
  msgstr ""
960
 
962
  #: framework/extensions/newsletter-subscribe/helpers.php:45,
963
  #: framework/extensions/newsletter-subscribe/helpers.php:97,
964
  #: framework/extensions/newsletter-subscribe/ct-newsletter-subscribe/options.php:33,
965
+ #: framework/extensions/newsletter-subscribe/ct-newsletter-subscribe/view.php:16
 
 
 
 
 
966
  msgid "Enter your email address below to subscribe to our newsletter"
967
  msgstr ""
968
 
969
  #: framework/extensions/newsletter-subscribe/customizer.php:42,
970
+ #: framework/extensions/newsletter-subscribe/ct-newsletter-subscribe/options.php:46
 
 
971
  msgid "List Source"
972
  msgstr ""
973
 
976
  #: framework/features/header/header-options.php:71,
977
  #: framework/extensions/newsletter-subscribe/ct-newsletter-subscribe/options.php:53,
978
  #: framework/extensions/newsletter-subscribe/ct-newsletter-subscribe/options.php:120,
 
 
 
979
  #: framework/extensions/widgets/widgets/ct-posts/options.php:173,
980
  #: framework/extensions/widgets/widgets/ct-posts/options.php:198,
981
+ #: framework/premium/features/content-blocks/options/hook.php:289
 
 
 
 
 
982
  msgid "Default"
983
  msgstr ""
984
 
986
  #: framework/extensions/newsletter-subscribe/ct-newsletter-subscribe/options.php:54,
987
  #: framework/premium/extensions/shortcuts/customizer.php:250,
988
  #: framework/premium/extensions/shortcuts/customizer.php:276,
 
989
  #: framework/premium/extensions/post-types-extra/includes/dynamic-data.php:371,
990
+ #: framework/premium/features/content-blocks/options/archive.php:48
 
 
 
 
 
991
  msgid "Custom"
992
  msgstr ""
993
 
994
  #: framework/extensions/newsletter-subscribe/customizer.php:62,
995
+ #: framework/extensions/newsletter-subscribe/ct-newsletter-subscribe/options.php:64
 
 
996
  #: framework/extensions/newsletter-subscribe/dashboard-static/js/EditCredentials.js:194
997
  msgid "List ID"
998
  msgstr ""
999
 
1000
  #: framework/extensions/newsletter-subscribe/customizer.php:80,
1001
+ #: framework/extensions/newsletter-subscribe/ct-newsletter-subscribe/options.php:76
 
 
1002
  msgid "Name Field"
1003
  msgstr ""
1004
 
1005
  #: framework/extensions/newsletter-subscribe/customizer.php:93,
1006
+ #: framework/extensions/newsletter-subscribe/ct-newsletter-subscribe/options.php:88
 
 
1007
  msgid "Name Label"
1008
  msgstr ""
1009
 
1012
  #: framework/extensions/newsletter-subscribe/helpers.php:57,
1013
  #: framework/extensions/newsletter-subscribe/helpers.php:108,
1014
  #: framework/extensions/newsletter-subscribe/ct-newsletter-subscribe/options.php:90,
1015
+ #: framework/extensions/newsletter-subscribe/ct-newsletter-subscribe/view.php:69
 
 
 
 
 
 
1016
  msgid "Your name"
1017
  msgstr ""
1018
 
1019
  #: framework/extensions/newsletter-subscribe/customizer.php:105,
1020
+ #: framework/extensions/newsletter-subscribe/ct-newsletter-subscribe/options.php:99
 
 
1021
  msgid "Mail Label"
1022
  msgstr ""
1023
 
1026
  #: framework/extensions/newsletter-subscribe/helpers.php:61,
1027
  #: framework/extensions/newsletter-subscribe/helpers.php:109,
1028
  #: framework/extensions/newsletter-subscribe/ct-newsletter-subscribe/options.php:101,
1029
+ #: framework/extensions/newsletter-subscribe/ct-newsletter-subscribe/view.php:70
 
 
 
 
 
 
1030
  msgid "Your email"
1031
  msgstr ""
1032
 
1033
  #: framework/extensions/newsletter-subscribe/customizer.php:114,
1034
+ #: framework/extensions/newsletter-subscribe/ct-newsletter-subscribe/options.php:107
 
 
1035
  msgid "Button Label"
1036
  msgstr ""
1037
 
1040
  #: framework/extensions/newsletter-subscribe/helpers.php:52,
1041
  #: framework/extensions/newsletter-subscribe/helpers.php:101,
1042
  #: framework/extensions/newsletter-subscribe/ct-newsletter-subscribe/options.php:109,
1043
+ #: framework/extensions/newsletter-subscribe/ct-newsletter-subscribe/view.php:19
 
 
 
 
 
 
1044
  msgid "Subscribe"
1045
  msgstr ""
1046
 
1054
  #: framework/premium/extensions/shortcuts/customizer.php:427,
1055
  #: framework/premium/extensions/shortcuts/customizer.php:483,
1056
  #: framework/premium/extensions/shortcuts/customizer.php:742,
 
1057
  #: framework/premium/features/content-blocks/options/404.php:146,
1058
  #: framework/premium/features/content-blocks/options/header.php:166,
1059
  #: framework/premium/features/content-blocks/options/hook.php:343,
1060
  #: framework/premium/features/content-blocks/options/popup.php:339,
 
 
 
 
 
 
 
 
 
1061
  #: framework/premium/extensions/post-types-extra/includes/filtering/customizer.php:144,
1062
+ #: framework/premium/extensions/post-types-extra/includes/read-progress/customizer.php:43
 
 
 
 
 
 
1063
  msgid "Visibility"
1064
  msgstr ""
1065
 
1082
  #: framework/premium/extensions/woocommerce-extra/floating-cart.php:47,
1083
  #: framework/premium/extensions/woocommerce-extra/floating-cart.php:71,
1084
  #: framework/premium/extensions/woocommerce-extra/offcanvas-filter.php:219,
1085
+ #: framework/features/header/items/account/options.php:287,
1086
+ #: framework/features/header/items/account/options.php:584,
 
 
 
 
1087
  #: framework/premium/features/content-blocks/options/404.php:157,
1088
  #: framework/premium/features/content-blocks/options/header.php:177,
1089
  #: framework/premium/features/content-blocks/options/hook.php:354,
1090
  #: framework/premium/features/content-blocks/options/popup.php:350,
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1091
  #: framework/premium/extensions/post-types-extra/includes/filtering/customizer.php:157,
1092
  #: framework/premium/extensions/post-types-extra/includes/read-progress/customizer.php:56,
1093
+ #: framework/premium/extensions/woocommerce-extra/header-items/wish-list/options.php:105
 
 
 
 
 
 
 
 
 
1094
  msgid "Desktop"
1095
  msgstr ""
1096
 
1111
  #: framework/premium/extensions/woocommerce-extra/floating-cart.php:48,
1112
  #: framework/premium/extensions/woocommerce-extra/floating-cart.php:72,
1113
  #: framework/premium/extensions/woocommerce-extra/offcanvas-filter.php:220,
1114
+ #: framework/features/header/items/account/options.php:288,
1115
+ #: framework/features/header/items/account/options.php:585,
1116
+ #: framework/features/header/items/account/options.php:1312,
 
 
1117
  #: framework/premium/features/content-blocks/options/404.php:158,
1118
  #: framework/premium/features/content-blocks/options/header.php:178,
1119
  #: framework/premium/features/content-blocks/options/hook.php:355,
1120
  #: framework/premium/features/content-blocks/options/popup.php:351,
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1121
  #: framework/premium/extensions/post-types-extra/includes/filtering/customizer.php:158,
1122
  #: framework/premium/extensions/post-types-extra/includes/read-progress/customizer.php:57,
1123
+ #: framework/premium/extensions/woocommerce-extra/header-items/wish-list/options.php:106
 
 
 
 
 
 
 
 
 
 
1124
  msgid "Tablet"
1125
  msgstr ""
1126
 
1143
  #: framework/premium/extensions/woocommerce-extra/floating-cart.php:49,
1144
  #: framework/premium/extensions/woocommerce-extra/floating-cart.php:73,
1145
  #: framework/premium/extensions/woocommerce-extra/offcanvas-filter.php:221,
 
 
 
 
1146
  #: framework/extensions/widgets/widgets/ct-contact-info/options.php:188,
1147
+ #: framework/features/header/items/account/options.php:289,
1148
+ #: framework/features/header/items/account/options.php:586,
1149
+ #: framework/features/header/items/account/options.php:1313,
1150
  #: framework/premium/features/content-blocks/options/404.php:159,
1151
  #: framework/premium/features/content-blocks/options/header.php:179,
1152
  #: framework/premium/features/content-blocks/options/hook.php:356,
1153
  #: framework/premium/features/content-blocks/options/popup.php:352,
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1154
  #: framework/premium/extensions/post-types-extra/includes/filtering/customizer.php:159,
1155
  #: framework/premium/extensions/post-types-extra/includes/read-progress/customizer.php:58,
1156
  #: framework/premium/extensions/woocommerce-extra/header-items/wish-list/options.php:107,
1157
+ #: framework/premium/features/premium-header/items/contacts/options.php:113
 
 
 
 
 
 
 
 
 
 
 
 
1158
  msgid "Mobile"
1159
  msgstr ""
1160
 
1161
+ #: framework/extensions/newsletter-subscribe/customizer.php:152
 
1162
  msgid "Title Color"
1163
  msgstr ""
1164
 
1165
+ #: framework/extensions/newsletter-subscribe/customizer.php:173
 
1166
  msgid "Description Color"
1167
  msgstr ""
1168
 
1169
  #: framework/extensions/newsletter-subscribe/customizer.php:204,
1170
+ #: framework/features/header/items/account/options.php:1007,
 
1171
  #: framework/premium/features/premium-header/items/search-input/options.php:194,
1172
  #: framework/premium/features/premium-header/items/search-input/options.php:223,
1173
  #: framework/premium/features/premium-header/items/search-input/options.php:255,
1174
+ #: framework/premium/features/premium-header/items/search-input/options.php:285
 
 
 
 
 
1175
  msgid "Input Font Color"
1176
  msgstr ""
1177
 
1178
  #: framework/extensions/newsletter-subscribe/customizer.php:228,
1179
  #: framework/extensions/newsletter-subscribe/customizer.php:259,
1180
  #: framework/extensions/newsletter-subscribe/customizer.php:295,
1181
+ #: framework/features/header/items/account/options.php:1029,
1182
+ #: framework/features/header/items/account/options.php:1059,
1183
+ #: framework/features/header/items/account/options.php:1095,
 
 
 
1184
  #: framework/premium/features/premium-header/items/search-input/options.php:247,
1185
  #: framework/premium/features/premium-header/items/search-input/options.php:278,
1186
  #: framework/premium/features/premium-header/items/search-input/options.php:308,
1192
  #: framework/premium/features/premium-header/items/search-input/options.php:568,
1193
  #: framework/premium/features/premium-header/items/search-input/options.php:641,
1194
  #: framework/premium/features/premium-header/items/search-input/options.php:671,
1195
+ #: framework/premium/features/premium-header/items/search-input/options.php:701
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1196
  msgid "Focus"
1197
  msgstr ""
1198
 
1199
  #: framework/extensions/newsletter-subscribe/customizer.php:236,
1200
+ #: framework/features/header/items/account/options.php:1037,
 
1201
  #: framework/premium/features/premium-header/items/search-input/options.php:454,
1202
  #: framework/premium/features/premium-header/items/search-input/options.php:483,
1203
  #: framework/premium/features/premium-header/items/search-input/options.php:515,
1204
+ #: framework/premium/features/premium-header/items/search-input/options.php:545
 
 
 
 
 
1205
  msgid "Input Border Color"
1206
  msgstr ""
1207
 
1208
  #: framework/extensions/newsletter-subscribe/customizer.php:273,
1209
+ #: framework/features/header/items/account/options.php:1073,
 
1210
  #: framework/premium/features/premium-header/items/search-input/options.php:590,
1211
  #: framework/premium/features/premium-header/items/search-input/options.php:618,
1212
  #: framework/premium/features/premium-header/items/search-input/options.php:648,
1213
+ #: framework/premium/features/premium-header/items/search-input/options.php:678
 
 
 
 
 
1214
  msgid "Input Background Color"
1215
  msgstr ""
1216
 
1217
  #: framework/extensions/newsletter-subscribe/customizer.php:305,
1218
+ #: framework/premium/extensions/post-types-extra/includes/filtering/customizer.php:220
 
 
1219
  msgid "Button Color"
1220
  msgstr ""
1221
 
1222
  #: framework/extensions/newsletter-subscribe/customizer.php:334,
1223
  #: framework/extensions/trending/customizer.php:380,
1224
+ #: framework/premium/extensions/shortcuts/customizer.php:953
 
 
 
1225
  msgid "Container Background"
1226
  msgstr ""
1227
 
1228
+ #: framework/extensions/newsletter-subscribe/customizer.php:350
 
1229
  msgid "Container Border"
1230
  msgstr ""
1231
 
1232
  #: framework/extensions/newsletter-subscribe/customizer.php:385,
1233
+ #: framework/extensions/trending/customizer.php:396
 
 
1234
  msgid "Container Inner Spacing"
1235
  msgstr ""
1236
 
1237
  #: framework/extensions/newsletter-subscribe/customizer.php:400,
1238
+ #: framework/premium/extensions/shortcuts/customizer.php:974
 
 
1239
  msgid "Container Border Radius"
1240
  msgstr ""
1241
 
1242
+ #: framework/extensions/newsletter-subscribe/extension.php:128
 
1243
  msgid "Disable Subscribe Form"
1244
  msgstr ""
1245
 
1246
+ #: framework/extensions/newsletter-subscribe/helpers.php:163
 
1247
  msgid "First name"
1248
  msgstr ""
1249
 
1250
+ #: framework/extensions/newsletter-subscribe/helpers.php:166
 
1251
  msgid "Email address"
1252
  msgstr ""
1253
 
1254
+ #: framework/extensions/newsletter-subscribe/readme.php:4
 
1255
  msgid ""
1256
  "After installing and activating the Newsletter Subscribe\n"
1257
  " extension you will have two possibilities to show your subscribe form:"
1258
  msgstr ""
1259
 
1260
+ #: framework/extensions/newsletter-subscribe/readme.php:10
 
1261
  msgid "Widget"
1262
  msgstr ""
1263
 
1264
+ #: framework/extensions/newsletter-subscribe/readme.php:14
 
1265
  msgid "Navigate to %s and place the widget in any widget area you want."
1266
  msgstr ""
1267
 
1268
+ #: framework/extensions/newsletter-subscribe/readme.php:17
 
1269
  msgid "Appearance ➝ Widgets"
1270
  msgstr ""
1271
 
1272
+ #: framework/extensions/newsletter-subscribe/readme.php:25
 
1273
  msgid "Single Page Block"
1274
  msgstr ""
1275
 
1276
+ #: framework/extensions/newsletter-subscribe/readme.php:29
 
1277
  msgid "Navigate to %s and customize the form and more."
1278
  msgstr ""
1279
 
1280
+ #: framework/extensions/newsletter-subscribe/readme.php:32
 
1281
  msgid "Customizer ➝ Single Posts"
1282
  msgstr ""
1283
 
1284
  #. translators: This is a brand name. Preferably to not be translated
1285
+ #: framework/extensions/product-reviews/config.php:5
 
1286
  msgctxt "Extension Brand Name"
1287
  msgid "Product Reviews"
1288
  msgstr ""
1289
 
1290
+ #: framework/extensions/product-reviews/config.php:6
 
1291
  msgid ""
1292
  "This extension lets you easily create an affiliate marketing type of website "
1293
  "by giving you options to create a personalized product review and use your "
1295
  msgstr ""
1296
 
1297
  #: framework/extensions/product-reviews/extension.php:217,
1298
+ #: framework/extensions/product-reviews/extension.php:388
 
 
1299
  msgid "Star Rating Color"
1300
  msgstr ""
1301
 
1303
  #: framework/extensions/product-reviews/extension.php:405,
1304
  #: framework/extensions/product-reviews/extension.php:433,
1305
  #: framework/extensions/product-reviews/extension.php:454,
1306
+ #: framework/premium/extensions/mega-menu/options.php:782
 
 
 
 
 
1307
  msgid "Active"
1308
  msgstr ""
1309
 
1310
  #: framework/extensions/product-reviews/extension.php:241,
1311
+ #: framework/extensions/product-reviews/extension.php:411
 
 
1312
  msgid "Inactive"
1313
  msgstr ""
1314
 
1315
  #: framework/extensions/product-reviews/extension.php:279,
1316
+ #: framework/extensions/product-reviews/views/single-top.php:139
 
 
1317
  msgid "Overall Score"
1318
  msgstr ""
1319
 
1320
+ #: framework/extensions/product-reviews/extension.php:337
 
1321
  msgid "Review Summary"
1322
  msgstr ""
1323
 
1324
+ #: framework/extensions/product-reviews/extension.php:348
 
1325
  msgid "Scores Box Width"
1326
  msgstr ""
1327
 
1328
+ #: framework/extensions/product-reviews/extension.php:358
 
1329
  msgid "Read More Button"
1330
  msgstr ""
1331
 
1332
+ #: framework/extensions/product-reviews/extension.php:369
 
1333
  msgid "Buy Now Button"
1334
  msgstr ""
1335
 
1336
+ #: framework/extensions/product-reviews/extension.php:419
 
1337
  msgid "Overll Score Text"
1338
  msgstr ""
1339
 
1340
+ #: framework/extensions/product-reviews/extension.php:441
 
1341
  msgid "Overll Score Background"
1342
  msgstr ""
1343
 
1344
  #: framework/extensions/product-reviews/extension.php:501,
1345
  #: framework/extensions/product-reviews/extension.php:502,
1346
  #: framework/extensions/product-reviews/extension.php:505,
1347
+ #: framework/extensions/product-reviews/extension.php:507
 
 
 
 
1348
  msgid "Product Reviews"
1349
  msgstr ""
1350
 
1351
+ #: framework/extensions/product-reviews/extension.php:506
 
1352
  msgid "Product Review"
1353
  msgstr ""
1354
 
1355
+ #: framework/extensions/product-reviews/extension.php:508
 
1356
  msgid "Parent Product Review"
1357
  msgstr ""
1358
 
1359
+ #: framework/extensions/product-reviews/extension.php:509
 
1360
  msgid "All Reviews"
1361
  msgstr ""
1362
 
1363
+ #: framework/extensions/product-reviews/extension.php:510
 
1364
  msgid "View Product Review"
1365
  msgstr ""
1366
 
1367
+ #: framework/extensions/product-reviews/extension.php:511
 
1368
  msgid "Add New Product Review"
1369
  msgstr ""
1370
 
1371
+ #: framework/extensions/product-reviews/extension.php:512
 
1372
  msgid "Add New Review"
1373
  msgstr ""
1374
 
1375
+ #: framework/extensions/product-reviews/extension.php:513
 
1376
  msgid "Edit Product Review"
1377
  msgstr ""
1378
 
1379
+ #: framework/extensions/product-reviews/extension.php:514
 
1380
  msgid "Update Product Review"
1381
  msgstr ""
1382
 
1383
+ #: framework/extensions/product-reviews/extension.php:515
 
1384
  msgid "Search Product Review"
1385
  msgstr ""
1386
 
1387
+ #: framework/extensions/product-reviews/extension.php:516
 
1388
  msgid "Not Found"
1389
  msgstr ""
1390
 
1391
+ #: framework/extensions/product-reviews/extension.php:517
 
1392
  msgid "Not found in Trash"
1393
  msgstr ""
1394
 
1395
  #: framework/extensions/product-reviews/extension.php:551,
1396
+ #: framework/extensions/product-reviews/extension.php:561
 
 
1397
  msgid "Categories"
1398
  msgstr ""
1399
 
1400
  #: framework/extensions/product-reviews/extension.php:552,
1401
  #: framework/extensions/trending/customizer.php:35,
1402
+ #: framework/extensions/widgets/widgets/ct-posts/options.php:37
 
 
 
1403
  msgid "Category"
1404
  msgstr ""
1405
 
1406
+ #: framework/extensions/product-reviews/extension.php:553
 
1407
  msgid "Search Category"
1408
  msgstr ""
1409
 
1410
+ #: framework/extensions/product-reviews/extension.php:554
 
1411
  msgid "All Categories"
1412
  msgstr ""
1413
 
1414
+ #: framework/extensions/product-reviews/extension.php:555
 
1415
  msgid "Parent Category"
1416
  msgstr ""
1417
 
1418
+ #: framework/extensions/product-reviews/extension.php:556
 
1419
  msgid "Parent Category:"
1420
  msgstr ""
1421
 
1422
+ #: framework/extensions/product-reviews/extension.php:557
 
1423
  msgid "Edit Category"
1424
  msgstr ""
1425
 
1426
+ #: framework/extensions/product-reviews/extension.php:558
 
1427
  msgid "Update Category"
1428
  msgstr ""
1429
 
1430
+ #: framework/extensions/product-reviews/extension.php:559
 
1431
  msgid "Add New Category"
1432
  msgstr ""
1433
 
1434
+ #: framework/extensions/product-reviews/extension.php:560
 
1435
  msgid "New Category Name"
1436
  msgstr ""
1437
 
1438
  #. translators: %s is the theme name.
1439
+ #: framework/extensions/product-reviews/extension.php:579
 
1440
  msgid "%s Settings"
1441
  msgstr ""
1442
 
1443
+ #: framework/extensions/product-reviews/extension.php:580
 
1444
  msgid "Blocksy"
1445
  msgstr ""
1446
 
1447
  #: framework/extensions/product-reviews/helpers.php:30,
1448
+ #: framework/extensions/product-reviews/metabox.php:179
 
 
1449
  msgid "Rating"
1450
  msgstr ""
1451
 
1452
+ #: framework/extensions/product-reviews/metabox.php:10
 
1453
  msgid "Review Entity"
1454
  msgstr ""
1455
 
1456
  #: framework/extensions/product-reviews/metabox.php:18,
1457
+ #: framework/premium/extensions/woocommerce-extra/includes/wish-list-table.php:34
 
 
1458
  msgid "Product"
1459
  msgstr ""
1460
 
1461
+ #: framework/extensions/product-reviews/metabox.php:19
 
1462
  msgid "Book"
1463
  msgstr ""
1464
 
1465
+ #: framework/extensions/product-reviews/metabox.php:21
 
1466
  msgid "Creative Work Season"
1467
  msgstr ""
1468
 
1469
+ #: framework/extensions/product-reviews/metabox.php:22
 
1470
  msgid "Creative Work Series"
1471
  msgstr ""
1472
 
1473
+ #: framework/extensions/product-reviews/metabox.php:23
 
1474
  msgid "Episode"
1475
  msgstr ""
1476
 
1477
+ #: framework/extensions/product-reviews/metabox.php:25
 
1478
  msgid "Game"
1479
  msgstr ""
1480
 
1481
+ #: framework/extensions/product-reviews/metabox.php:27
 
1482
  msgid "Local Business"
1483
  msgstr ""
1484
 
1485
+ #: framework/extensions/product-reviews/metabox.php:28
 
1486
  msgid "Media Object"
1487
  msgstr ""
1488
 
1489
+ #: framework/extensions/product-reviews/metabox.php:29
 
1490
  msgid "Movie"
1491
  msgstr ""
1492
 
1493
+ #: framework/extensions/product-reviews/metabox.php:30
 
1494
  msgid "Music Playlist"
1495
  msgstr ""
1496
 
1497
+ #: framework/extensions/product-reviews/metabox.php:31
 
1498
  msgid "Music Recording"
1499
  msgstr ""
1500
 
1501
+ #: framework/extensions/product-reviews/metabox.php:32
 
1502
  msgid "Organization"
1503
  msgstr ""
1504
 
1505
+ #: framework/extensions/product-reviews/metabox.php:38
 
1506
  msgid ""
1507
  "More info about review entity and how to choose the right one can be found "
1508
  "%shere%s."
1509
  msgstr ""
1510
 
1511
+ #: framework/extensions/product-reviews/metabox.php:60
 
1512
  msgid ""
1513
  "Please note that some of this information (price, sku, brand) won't be "
1514
  "displayed on the front-end. It is solely used for Google's Schema.org markup."
1515
  msgstr ""
1516
 
1517
+ #: framework/extensions/product-reviews/metabox.php:69
 
1518
  msgid "Product Price"
1519
  msgstr ""
1520
 
1521
+ #: framework/extensions/product-reviews/metabox.php:76
 
1522
  msgid "Product SKU"
1523
  msgstr ""
1524
 
1525
+ #: framework/extensions/product-reviews/metabox.php:83
 
1526
  msgid "Product Brand"
1527
  msgstr ""
1528
 
1529
+ #: framework/extensions/product-reviews/metabox.php:96
 
1530
  msgid "Gallery"
1531
  msgstr ""
1532
 
1533
+ #: framework/extensions/product-reviews/metabox.php:107
 
1534
  msgid "Affiliate Button Label"
1535
  msgstr ""
1536
 
1537
  #: framework/extensions/product-reviews/metabox.php:109,
1538
+ #: framework/extensions/product-reviews/views/single-top.php:156
 
 
1539
  msgid "Buy Now"
1540
  msgstr ""
1541
 
1542
+ #: framework/extensions/product-reviews/metabox.php:114
 
1543
  msgid "Affiliate Link"
1544
  msgstr ""
1545
 
1546
+ #: framework/extensions/product-reviews/metabox.php:120
 
1547
  msgid "Open Link In New Tab"
1548
  msgstr ""
1549
 
1550
+ #: framework/extensions/product-reviews/metabox.php:126
 
1551
  msgid "Sponsored Attribute"
1552
  msgstr ""
1553
 
1554
+ #: framework/extensions/product-reviews/metabox.php:148
 
1555
  msgid "Read More Button Label"
1556
  msgstr ""
1557
 
1558
  #: framework/extensions/product-reviews/metabox.php:150,
1559
+ #: framework/extensions/product-reviews/views/single-top.php:162
 
 
1560
  msgid "Read More"
1561
  msgstr ""
1562
 
1563
+ #: framework/extensions/product-reviews/metabox.php:170
 
1564
  msgid "Short Description"
1565
  msgstr ""
1566
 
1567
+ #: framework/extensions/product-reviews/metabox.php:185
 
1568
  msgid "Scores"
1569
  msgstr ""
1570
 
1571
+ #: framework/extensions/product-reviews/metabox.php:225
 
1572
  msgid "Product specs"
1573
  msgstr ""
1574
 
1575
  #: framework/extensions/product-reviews/metabox.php:250,
1576
+ #: framework/extensions/product-reviews/views/single-top.php:262
 
 
1577
  msgid "Pros"
1578
  msgstr ""
1579
 
1580
  #: framework/extensions/product-reviews/metabox.php:270,
1581
+ #: framework/extensions/product-reviews/views/single-top.php:285
 
 
1582
  msgid "Cons"
1583
  msgstr ""
1584
 
1585
  #. translators: This is a brand name. Preferably to not be translated
1586
  #: framework/extensions/trending/config.php:5,
1587
+ #: framework/extensions/trending/customizer.php:97
 
 
1588
  msgctxt "Extension Brand Name"
1589
  msgid "Trending Posts"
1590
  msgstr ""
1591
 
1592
+ #: framework/extensions/trending/config.php:6
 
1593
  msgid ""
1594
  "Highlight your most popular posts or products based on the number of "
1595
  "comments or reviews they have gotten in the specified period of time."
1596
  msgstr ""
1597
 
1598
  #: framework/extensions/trending/customizer.php:8,
 
1599
  #: framework/premium/extensions/shortcuts/views/bar.php:48,
1600
+ #: framework/premium/features/premium-header/items/search-input/options.php:6
 
 
1601
  msgid "Products"
1602
  msgstr ""
1603
 
1604
  #: framework/extensions/trending/customizer.php:36,
1605
+ #: framework/extensions/widgets/widgets/ct-posts/options.php:38
 
 
1606
  msgid "All categories"
1607
  msgstr ""
1608
 
1609
  #: framework/extensions/trending/customizer.php:41,
1610
+ #: framework/extensions/widgets/widgets/ct-posts/options.php:43
 
 
1611
  msgid "Taxonomy"
1612
  msgstr ""
1613
 
1614
  #: framework/extensions/trending/customizer.php:42,
1615
+ #: framework/extensions/widgets/widgets/ct-posts/options.php:44
 
 
1616
  msgid "All taxonomies"
1617
  msgstr ""
1618
 
1619
+ #: framework/extensions/trending/customizer.php:106
 
1620
  msgid "Trending Posts"
1621
  msgstr ""
1622
 
1623
+ #: framework/extensions/trending/customizer.php:115
 
1624
  msgid "Module Title"
1625
  msgstr ""
1626
 
1627
  #: framework/extensions/trending/customizer.php:118,
1628
+ #: framework/extensions/trending/helpers.php:221
 
 
1629
  msgid "Trending now"
1630
  msgstr ""
1631
 
1632
+ #: framework/extensions/trending/customizer.php:123
 
1633
  msgid "Module Title Tag"
1634
  msgstr ""
1635
 
1636
  #: framework/extensions/trending/customizer.php:149,
1637
  #: framework/extensions/trending/customizer.php:162,
1638
+ #: framework/extensions/widgets/widgets/ct-posts/options.php:137
 
 
 
1639
  msgid "Post Type"
1640
  msgstr ""
1641
 
1642
  #: framework/extensions/trending/customizer.php:171,
 
1643
  #: framework/extensions/widgets/widgets/ct-advertisement/options.php:23,
1644
  #: framework/extensions/widgets/widgets/ct-posts/options.php:149,
1645
+ #: framework/extensions/widgets/widgets/ct-posts/options.php:168
 
 
 
1646
  msgid "Source"
1647
  msgstr ""
1648
 
1649
  #: framework/extensions/trending/customizer.php:176,
1650
+ #: framework/extensions/widgets/widgets/ct-posts/options.php:154
 
 
1651
  msgid "Taxonomies"
1652
  msgstr ""
1653
 
1654
  #: framework/extensions/trending/customizer.php:177,
 
1655
  #: framework/extensions/widgets/widgets/ct-posts/options.php:155,
1656
+ #: framework/extensions/widgets/widgets/ct-posts/options.php:174
 
 
1657
  msgid "Custom Query"
1658
  msgstr ""
1659
 
1660
  #: framework/extensions/trending/customizer.php:200,
1661
+ #: framework/extensions/widgets/widgets/ct-posts/options.php:243
 
 
1662
  msgid "Posts ID"
1663
  msgstr ""
1664
 
1665
  #: framework/extensions/trending/customizer.php:204,
1666
+ #: framework/extensions/widgets/widgets/ct-posts/options.php:247
 
 
1667
  msgid "Separate posts ID by comma. How to find the %spost ID%s."
1668
  msgstr ""
1669
 
1670
+ #: framework/extensions/trending/customizer.php:220
 
1671
  msgid "Trending From"
1672
  msgstr ""
1673
 
1674
  #: framework/extensions/trending/customizer.php:229,
1675
+ #: framework/extensions/widgets/widgets/ct-posts/options.php:213
 
 
1676
  msgid "All Time"
1677
  msgstr ""
1678
 
1679
+ #: framework/extensions/trending/customizer.php:230
 
1680
  msgid "Last 24 Hours"
1681
  msgstr ""
1682
 
1683
+ #: framework/extensions/trending/customizer.php:231
 
1684
  msgid "Last 7 Days"
1685
  msgstr ""
1686
 
1687
+ #: framework/extensions/trending/customizer.php:232
 
1688
  msgid "Last Month"
1689
  msgstr ""
1690
 
1691
+ #: framework/extensions/trending/customizer.php:245
 
1692
  msgid "Image Size"
1693
  msgstr ""
1694
 
1695
+ #: framework/extensions/trending/customizer.php:267
 
1696
  msgid "Container Visibility"
1697
  msgstr ""
1698
 
1699
+ #: framework/extensions/trending/customizer.php:288
 
1700
  msgid "Display Location"
1701
  msgstr ""
1702
 
1703
+ #: framework/extensions/trending/customizer.php:296
 
1704
  msgid "Before Footer"
1705
  msgstr ""
1706
 
1707
+ #: framework/extensions/trending/customizer.php:301
 
1708
  msgid "After Footer"
1709
  msgstr ""
1710
 
1711
+ #: framework/extensions/trending/customizer.php:306
 
1712
  msgid "After Header"
1713
  msgstr ""
1714
 
1715
  #: framework/extensions/trending/customizer.php:312,
1716
  #: framework/features/header/header-options.php:158,
1717
  #: framework/premium/extensions/shortcuts/customizer.php:763,
 
 
1718
  #: framework/premium/features/content-blocks/options/archive.php:186,
1719
  #: framework/premium/features/content-blocks/options/header.php:142,
1720
  #: framework/premium/features/content-blocks/options/hook.php:236,
1721
  #: framework/premium/features/content-blocks/options/popup.php:297,
1722
+ #: framework/premium/features/content-blocks/options/single.php:140
 
 
 
 
 
 
1723
  #: framework/premium/extensions/sidebars/static/js/SettingsManager.js:49
1724
  #: framework/premium/static/js/footer/EditConditions.js:97
1725
  #: static/js/header/EditConditions.js:103
1726
  msgid "Display Conditions"
1727
  msgstr ""
1728
 
1729
+ #: framework/extensions/trending/customizer.php:323
 
1730
  msgid "Trending Block Display Conditions"
1731
  msgstr ""
1732
 
1733
+ #: framework/extensions/trending/customizer.php:324
 
1734
  msgid "Add one or more conditions to display the trending block."
1735
  msgstr ""
1736
 
1737
+ #: framework/extensions/trending/customizer.php:339
 
1738
  msgid "Posts Font"
1739
  msgstr ""
1740
 
1741
  #. translators: This is a brand name. Preferably to not be translated
1742
+ #: framework/extensions/widgets/config.php:5
 
1743
  msgctxt "Extension Brand Name"
1744
  msgid "Widgets"
1745
  msgstr ""
1746
 
1747
+ #: framework/extensions/widgets/config.php:6
 
1748
  msgid ""
1749
  "Add new handcrafted widgets to your sidebars! Social Network Icons, "
1750
  "Newsletter Subscribe, Contact Info, Custom Ads and even a Popular/Recent "
1751
  "Posts are the choices available."
1752
  msgstr ""
1753
 
1754
+ #: framework/features/header/account-modal.php:37
 
1755
  msgid "Close account modal"
1756
  msgstr ""
1757
 
1758
  #: framework/features/header/account-modal.php:49,
1759
+ #: framework/features/header/items/account/options.php:631,
1760
+ #: framework/features/header/items/account/views/logout.php:7
 
 
 
1761
  msgid "Login"
1762
  msgstr ""
1763
 
1764
+ #: framework/features/header/account-modal.php:53
 
1765
  msgid "Sign Up"
1766
  msgstr ""
1767
 
1768
+ #: framework/features/header/account-modal.php:72
 
1769
  msgid "Back to login"
1770
  msgstr ""
1771
 
1772
+ #: framework/features/header/header-options.php:6
 
1773
  msgid "Sticky Functionality"
1774
  msgstr ""
1775
 
1776
+ #: framework/features/header/header-options.php:32
 
1777
  msgid "Only Main Row"
1778
  msgstr ""
1779
 
1780
+ #: framework/features/header/header-options.php:37
 
1781
  msgid "Top & Main Row"
1782
  msgstr ""
1783
 
1784
+ #: framework/features/header/header-options.php:42
 
1785
  msgid "All Rows"
1786
  msgstr ""
1787
 
1788
+ #: framework/features/header/header-options.php:47
 
1789
  msgid "Main & Bottom Row"
1790
  msgstr ""
1791
 
1792
+ #: framework/features/header/header-options.php:52
 
1793
  msgid "Only Top Row"
1794
  msgstr ""
1795
 
1796
+ #: framework/features/header/header-options.php:57
 
1797
  msgid "Only Bottom Row"
1798
  msgstr ""
1799
 
1800
+ #: framework/features/header/header-options.php:63
 
1801
  msgid "Effect"
1802
  msgstr ""
1803
 
1804
+ #: framework/features/header/header-options.php:72
 
1805
  msgid "Slide Down"
1806
  msgstr ""
1807
 
1808
+ #: framework/features/header/header-options.php:73
 
1809
  msgid "Fade"
1810
  msgstr ""
1811
 
1812
+ #: framework/features/header/header-options.php:74
 
1813
  msgid "Auto Hide/Show"
1814
  msgstr ""
1815
 
1816
+ #: framework/features/header/header-options.php:79
 
1817
  msgid "Offset"
1818
  msgstr ""
1819
 
1820
  #: framework/features/header/header-options.php:92,
1821
+ #: framework/features/header/header-options.php:174
 
 
1822
  msgid "Enable on"
1823
  msgstr ""
1824
 
1825
+ #: framework/features/header/header-options.php:120
 
1826
  msgid "Transparent Functionality"
1827
  msgstr ""
1828
 
1829
+ #: framework/premium/features/content-blocks.php:113
 
1830
  msgid "Hide Hooks"
1831
  msgstr ""
1832
 
1833
+ #: framework/premium/features/content-blocks.php:114
 
1834
  msgid "Show Hooks"
1835
  msgstr ""
1836
 
1837
+ #: framework/premium/features/content-blocks.php:125
 
1838
  msgid "Hooks Locations"
1839
  msgstr ""
1840
 
1841
+ #: framework/premium/features/content-blocks.php:170
 
1842
  msgid "Hide Theme Hooks"
1843
  msgstr ""
1844
 
1845
+ #: framework/premium/features/content-blocks.php:171
 
1846
  msgid "Show Theme Hooks"
1847
  msgstr ""
1848
 
1849
+ #: framework/premium/features/content-blocks.php:179
 
1850
  msgid "Hide WooCommerce Hooks"
1851
  msgstr ""
1852
 
1853
+ #: framework/premium/features/content-blocks.php:180
 
1854
  msgid "Show WooCommerce Hooks"
1855
  msgstr ""
1856
 
1857
+ #: framework/premium/features/content-blocks.php:579,
1858
+ #: framework/premium/features/content-blocks.php:585
 
 
1859
  msgid "Content Blocks"
1860
  msgstr ""
1861
 
1862
+ #: framework/premium/features/content-blocks.php:580,
1863
+ #: framework/premium/extensions/mega-menu/options.php:333
 
 
1864
  msgid "Content Block"
1865
  msgstr ""
1866
 
1867
+ #: framework/premium/features/content-blocks.php:581
 
1868
  msgid "Add New"
1869
  msgstr ""
1870
 
1871
+ #: framework/premium/features/content-blocks.php:582
 
1872
  msgid "Add New Content Block"
1873
  msgstr ""
1874
 
1875
+ #: framework/premium/features/content-blocks.php:583
 
1876
  msgid "Edit Content Block"
1877
  msgstr ""
1878
 
1879
+ #: framework/premium/features/content-blocks.php:584
 
1880
  #: framework/premium/static/js/hooks/CreateHook.js:33
1881
  msgid "New Content Block"
1882
  msgstr ""
1883
 
1884
+ #: framework/premium/features/content-blocks.php:586
 
1885
  msgid "View Content Block"
1886
  msgstr ""
1887
 
1888
+ #: framework/premium/features/content-blocks.php:587
 
1889
  msgid "Search Content Blocks"
1890
  msgstr ""
1891
 
1892
+ #: framework/premium/features/content-blocks.php:588
 
1893
  msgid "Nothing found"
1894
  msgstr ""
1895
 
1896
+ #: framework/premium/features/content-blocks.php:589
 
1897
  msgid "Nothing found in Trash"
1898
  msgstr ""
1899
 
1900
+ #: framework/premium/features/content-blocks.php:878
 
1901
  msgid "Close popup"
1902
  msgstr ""
1903
 
1904
+ #: framework/premium/features/media-meta-fields.php:29
 
1905
  msgid "Attachment Video"
1906
  msgstr ""
1907
 
1908
+ #: framework/premium/features/media-meta-fields.php:33
 
1909
  msgid "Video URL"
1910
  msgstr ""
1911
 
1912
  #. translators: %s: Link to wordpress.org article
1913
+ #: framework/premium/features/media-meta-fields.php:39
 
1914
  msgid ""
1915
  "Enter a <a href=\"%s\" target=\"_blank\">valid media URL</a> or upload an "
1916
  "MP4 file into the media library."
1917
  msgstr ""
1918
 
1919
+ #: framework/premium/features/media-meta-fields.php:42
 
1920
  msgid "Upload"
1921
  msgstr ""
1922
 
1923
+ #: framework/premium/features/media-meta-fields.php:44
 
1924
  msgid "Upload Video (MP4 File)"
1925
  msgstr ""
1926
 
1927
  #: framework/premium/features/premium-footer.php:14,
1928
+ #: framework/premium/features/premium-footer.php:28
 
 
1929
  msgid "Footer Menu 1"
1930
  msgstr ""
1931
 
1932
  #: framework/premium/features/premium-footer.php:29,
1933
+ #: framework/premium/features/premium-footer/items/menu-secondary/config.php:4
 
 
1934
  msgid "Footer Menu 2"
1935
  msgstr ""
1936
 
1937
+ #: framework/premium/features/premium-header.php:49
 
1938
  msgid "Header Menu 3"
1939
  msgstr ""
1940
 
1941
+ #: framework/premium/features/premium-header.php:50
 
1942
  msgid "Mobile Menu 1"
1943
  msgstr ""
1944
 
1945
+ #: framework/premium/features/premium-header.php:51
 
1946
  msgid "Mobile Menu 2"
1947
  msgstr ""
1948
 
1949
+ #: framework/premium/features/premium-header.php:142
 
1950
  msgid "Header Widget Area "
1951
  msgstr ""
1952
 
1956
  #: framework/premium/features/premium-header.php:333,
1957
  #: framework/premium/features/premium-header.php:355,
1958
  #: framework/premium/extensions/mega-menu/options.php:422,
 
 
 
 
 
1959
  #: framework/extensions/widgets/widgets/ct-contact-info/options.php:112,
1960
  #: framework/extensions/widgets/widgets/ct-contact-info/options.php:174,
1961
  #: framework/extensions/widgets/widgets/ct-contact-info/options.php:234,
1963
  #: framework/extensions/widgets/widgets/ct-contact-info/options.php:354,
1964
  #: framework/extensions/widgets/widgets/ct-contact-info/options.php:414,
1965
  #: framework/extensions/widgets/widgets/ct-contact-info/options.php:474,
1966
+ #: framework/features/header/items/account/options.php:142,
1967
+ #: framework/features/header/items/account/options.php:192,
1968
+ #: framework/features/header/items/account/options.php:407,
1969
+ #: framework/features/header/items/account/options.php:438,
1970
  #: framework/premium/extensions/post-types-extra/includes/dynamic-data.php:447,
1971
  #: framework/premium/extensions/post-types-extra/includes/estimated-read-time.php:18,
 
1972
  #: framework/premium/extensions/woocommerce-extra/header-items/wish-list/options.php:28,
1973
  #: framework/premium/features/premium-header/items/contacts/options.php:65,
1974
  #: framework/premium/features/premium-header/items/contacts/options.php:102,
1977
  #: framework/premium/features/premium-header/items/contacts/options.php:210,
1978
  #: framework/premium/features/premium-header/items/contacts/options.php:246,
1979
  #: framework/premium/features/premium-header/items/contacts/options.php:282,
1980
+ #: framework/premium/features/premium-header/items/search-input/options.php:76
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1981
  msgid "Icon"
1982
  msgstr ""
1983
 
1984
  #: framework/premium/features/premium-header.php:212,
1985
  #: framework/premium/extensions/mega-menu/options.php:436,
1986
  #: framework/premium/extensions/woocommerce-extra/extension.php:381,
 
1987
  #: framework/extensions/widgets/widgets/ct-contact-info/options.php:489,
1988
  #: framework/extensions/widgets/widgets/ct-socials/options.php:92,
1989
+ #: framework/premium/features/premium-header/items/contacts/options.php:310
 
 
 
 
 
1990
  msgid "Icons Size"
1991
  msgstr ""
1992
 
1993
  #: framework/premium/features/premium-header.php:224,
1994
+ #: framework/premium/extensions/mega-menu/options.php:458
 
 
1995
  msgid "Icon Position"
1996
  msgstr ""
1997
 
1998
  #: framework/premium/features/premium-header.php:231,
1999
  #: framework/premium/extensions/mega-menu/options.php:465,
2000
  #: framework/premium/extensions/shortcuts/customizer.php:659,
2001
+ #: framework/features/header/items/account/options.php:318,
2002
+ #: framework/features/header/items/account/options.php:615,
2003
+ #: framework/premium/extensions/woocommerce-extra/header-items/wish-list/options.php:130
 
 
 
 
 
 
2004
  msgid "Left"
2005
  msgstr ""
2006
 
2007
  #: framework/premium/features/premium-header.php:232,
2008
  #: framework/premium/extensions/mega-menu/options.php:466,
2009
  #: framework/premium/extensions/shortcuts/customizer.php:660,
2010
+ #: framework/features/header/items/account/options.php:319,
2011
+ #: framework/features/header/items/account/options.php:616,
2012
+ #: framework/premium/extensions/woocommerce-extra/header-items/wish-list/options.php:131
 
 
 
 
 
 
2013
  msgid "Right"
2014
  msgstr ""
2015
 
2016
  #: framework/extensions/newsletter-subscribe/ct-newsletter-subscribe/options.php:17,
2017
+ #: framework/extensions/newsletter-subscribe/ct-newsletter-subscribe/view.php:12
 
 
2018
  msgid "Newsletter"
2019
  msgstr ""
2020
 
2023
  #: framework/premium/extensions/shortcuts/customizer.php:889,
2024
  #: framework/extensions/widgets/widgets/ct-contact-info/options.php:24,
2025
  #: framework/extensions/widgets/widgets/ct-quote/options.php:31,
2026
+ #: framework/features/header/items/account/options.php:336
 
 
 
 
 
 
2027
  msgid "Text"
2028
  msgstr ""
2029
 
2030
  #: framework/extensions/newsletter-subscribe/ct-newsletter-subscribe/options.php:34,
2031
  #: framework/extensions/widgets/widgets/ct-contact-info/options.php:27,
2032
+ #: framework/extensions/widgets/widgets/ct-quote/options.php:34
 
 
 
2033
  msgid "You can add here some arbitrary HTML code."
2034
  msgstr ""
2035
 
2036
+ #: framework/extensions/newsletter-subscribe/ct-newsletter-subscribe/options.php:114
 
2037
  msgid "Container Type"
2038
  msgstr ""
2039
 
2040
+ #: framework/extensions/newsletter-subscribe/ct-newsletter-subscribe/options.php:121
 
2041
  msgid "Boxed"
2042
  msgstr ""
2043
 
2044
+ #: framework/extensions/newsletter-subscribe/ct-newsletter-subscribe/options.php:127
 
2045
  msgid "Content Alignment"
2046
  msgstr ""
2047
 
2048
+ #: framework/extensions/newsletter-subscribe/ct-newsletter-subscribe/widget.php:13
 
2049
  msgid "Newsletter Subscribe"
2050
  msgstr ""
2051
 
2052
+ #: framework/extensions/newsletter-subscribe/ct-newsletter-subscribe/widget.php:14
 
2053
  msgid "Newsletter subscribe form"
2054
  msgstr ""
2055
 
2056
+ #: framework/extensions/newsletter-subscribe/includes/BlocksyMailerliteManager.php:99
 
2057
  msgid "Thank you for subscribing to our newsletter!"
2058
  msgstr ""
2059
 
2060
+ #: framework/extensions/product-reviews/views/single-top.php:238
 
2061
  msgid "Specs"
2062
  msgstr ""
2063
 
2064
  #: framework/features/header/modal/login.php:28,
2065
+ #: framework/features/header/modal/lostpassword.php:5
 
 
2066
  msgid "Username or Email Address"
2067
  msgstr ""
2068
 
2069
  #: framework/features/header/modal/login.php:33,
2070
+ #: framework/features/header/modal/register.php:42
 
 
2071
  msgid "Password"
2072
  msgstr ""
2073
 
2074
+ #: framework/features/header/modal/login.php:40
 
2075
  msgid "Remember Me"
2076
  msgstr ""
2077
 
2078
+ #: framework/features/header/modal/login.php:44
 
2079
  msgid "Forgot Password?"
2080
  msgstr ""
2081
 
2082
+ #: framework/features/header/modal/login.php:62
 
2083
  msgid "Log In"
2084
  msgstr ""
2085
 
2086
+ #: framework/features/header/modal/lostpassword.php:13
 
2087
  msgid "Get New Password"
2088
  msgstr ""
2089
 
2090
+ #: framework/features/header/modal/register.php:30
 
2091
  msgid "Username"
2092
  msgstr ""
2093
 
2096
  #: framework/premium/extensions/shortcuts/customizer.php:153,
2097
  #: framework/extensions/widgets/widgets/ct-contact-info/options.php:368,
2098
  #: framework/premium/extensions/shortcuts/views/bar.php:45,
2099
+ #: framework/premium/features/premium-header/items/contacts/options.php:221
 
 
 
 
 
 
2100
  msgid "Email"
2101
  msgstr ""
2102
 
2103
+ #: framework/features/header/modal/register.php:58
 
2104
  msgid "Registration confirmation will be emailed to you"
2105
  msgstr ""
2106
 
2107
+ #: framework/features/header/modal/register.php:63
 
2108
  msgid "Register"
2109
  msgstr ""
2110
 
2111
  #. translators: This is a brand name. Preferably to not be translated
2112
+ #: framework/premium/extensions/adobe-typekit/config.php:5
 
2113
  msgctxt "Extension Brand Name"
2114
  msgid "Adobe Fonts"
2115
  msgstr ""
2116
 
2117
+ #: framework/premium/extensions/adobe-typekit/config.php:6
 
2118
  msgid ""
2119
  "Connect your Adobe Fonts project and use the selected fonts throughout "
2120
  "Blocksy and your favorite page builder."
2124
  #: framework/premium/extensions/code-snippets/config.php:5,
2125
  #: framework/premium/extensions/code-snippets/extension.php:24,
2126
  #: framework/premium/extensions/code-snippets/extension.php:71,
2127
+ #: framework/premium/extensions/code-snippets/extension.php:114
 
 
 
 
2128
  msgctxt "Extension Brand Name"
2129
  msgid "Custom Code Snippets"
2130
  msgstr ""
2131
 
2132
+ #: framework/premium/extensions/code-snippets/config.php:6
 
2133
  msgid ""
2134
  "Inject custom code snippets throughout your website. The extension works "
2135
  "globally or on a per post/page basis."
2136
  msgstr ""
2137
 
2138
  #: framework/premium/extensions/code-snippets/extension.php:31,
2139
+ #: framework/premium/extensions/code-snippets/extension.php:78
 
 
2140
  msgid "Header scripts"
2141
  msgstr ""
2142
 
2143
  #: framework/premium/extensions/code-snippets/extension.php:42,
2144
  #: framework/premium/extensions/code-snippets/extension.php:89,
2145
+ #: framework/premium/extensions/code-snippets/extension.php:134
 
 
 
2146
  msgid "After body open scripts"
2147
  msgstr ""
2148
 
2149
  #: framework/premium/extensions/code-snippets/extension.php:53,
2150
  #: framework/premium/extensions/code-snippets/extension.php:100,
2151
+ #: framework/premium/extensions/code-snippets/extension.php:145
 
 
 
2152
  msgid "Footer scripts"
2153
  msgstr ""
2154
 
2155
+ #: framework/premium/extensions/code-snippets/extension.php:123
 
2156
  msgid "Header scripts2"
2157
  msgstr ""
2158
 
2159
+ #: framework/premium/extensions/code-snippets/readme.php:4
 
2160
  msgid ""
2161
  "After activating the Custom Code Snippets extension you will have two ways "
2162
  "to manage your snippets:"
2163
  msgstr ""
2164
 
2165
+ #: framework/premium/extensions/code-snippets/readme.php:9
 
2166
  msgid "Globally"
2167
  msgstr ""
2168
 
2169
+ #: framework/premium/extensions/code-snippets/readme.php:13
 
2170
  msgid "Navigate to %s and place there your header, body or footer scripts."
2171
  msgstr ""
2172
 
2173
+ #: framework/premium/extensions/code-snippets/readme.php:16
 
2174
  msgid "Customizer ➝ Custom Code Snippets"
2175
  msgstr ""
2176
 
2177
+ #: framework/premium/extensions/code-snippets/readme.php:24
 
2178
  msgid "Per page/post"
2179
  msgstr ""
2180
 
2181
+ #: framework/premium/extensions/code-snippets/readme.php:28
 
2182
  msgid ""
2183
  "Edit your page or post, click on %s, scroll down and you will see the %2s "
2184
  "panel."
2185
  msgstr ""
2186
 
2187
+ #: framework/premium/extensions/code-snippets/readme.php:32
 
2188
  msgid "%s Page Settings"
2189
  msgstr ""
2190
 
2191
  #. translators: This is a brand name. Preferably to not be translated
2192
+ #: framework/premium/extensions/custom-fonts/config.php:5
 
2193
  msgctxt "Extension Brand Name"
2194
  msgid "Custom Fonts"
2195
  msgstr ""
2196
 
2197
+ #: framework/premium/extensions/custom-fonts/config.php:6
 
2198
  msgid ""
2199
  "Upload an unlimited number of custom fonts or variable fonts and use them "
2200
  "throughout Blocksy and your favorite page builder."
2201
  msgstr ""
2202
 
2203
  #. translators: This is a brand name. Preferably to not be translated
2204
+ #: framework/premium/extensions/local-google-fonts/config.php:5
 
2205
  msgctxt "Extension Brand Name"
2206
  msgid "Local Google Fonts"
2207
  msgstr ""
2208
 
2209
+ #: framework/premium/extensions/local-google-fonts/config.php:6
 
2210
  msgid ""
2211
  "Serve your chosen Google Fonts from your own web server. This will increase "
2212
  "the loading speed and makes sure your website complies with the privacy "
2214
  msgstr ""
2215
 
2216
  #. translators: This is a brand name. Preferably to not be translated
2217
+ #: framework/premium/extensions/mega-menu/config.php:5
 
2218
  msgctxt "Extension Brand Name"
2219
  msgid "Advanced Menu"
2220
  msgstr ""
2221
 
2222
+ #: framework/premium/extensions/mega-menu/config.php:6
 
2223
  msgid ""
2224
  "Create beautiful personalised menus that set your website apart from the "
2225
  "others. Add icons and badges to your entries and even add Content Blocks "
2227
  msgstr ""
2228
 
2229
  #: framework/premium/extensions/mega-menu/config.php:10,
2230
+ #: framework/premium/extensions/shortcuts/config.php:13
 
 
2231
  #: framework/extensions/newsletter-subscribe/dashboard-static/js/hooks/useActivationWithRequirements.js:60
2232
  #: framework/extensions/product-reviews/static/js/EditSettings.js:30
2233
  #: framework/premium/extensions/white-label/dashboard-static/js/EditSettings.js:96
2234
  msgid "Configure"
2235
  msgstr ""
2236
 
2237
+ #: framework/premium/extensions/mega-menu/extension.php:99
 
2238
  msgid "Menu Item Settings"
2239
  msgstr ""
2240
 
2241
+ #: framework/premium/extensions/mega-menu/extension.php:257
 
2242
  msgid "New"
2243
  msgstr ""
2244
 
2245
  #: framework/premium/extensions/mega-menu/options.php:16,
2246
+ #: framework/premium/extensions/mega-menu/options.php:530
 
 
2247
  msgid "Mega Menu Settings"
2248
  msgstr ""
2249
 
2250
+ #: framework/premium/extensions/mega-menu/options.php:27
 
2251
  msgid "Dropdown Width"
2252
  msgstr ""
2253
 
2254
  #: framework/premium/extensions/mega-menu/options.php:35,
2255
+ #: framework/premium/extensions/mega-menu/options.php:48
 
 
2256
  msgid "Content Width"
2257
  msgstr ""
2258
 
2259
  #: framework/premium/extensions/mega-menu/options.php:36,
2260
+ #: framework/premium/extensions/mega-menu/options.php:57
 
 
2261
  msgid "Full Width"
2262
  msgstr ""
2263
 
2264
  #: framework/premium/extensions/mega-menu/options.php:37,
2265
+ #: framework/premium/features/content-blocks/options/archive.php:59
 
 
2266
  msgid "Custom Width"
2267
  msgstr ""
2268
 
2269
+ #: framework/premium/extensions/mega-menu/options.php:56
 
2270
  msgid "Default Width"
2271
  msgstr ""
2272
 
2273
+ #: framework/premium/extensions/mega-menu/options.php:85
 
2274
  msgid "Columns"
2275
  msgstr ""
2276
 
2277
+ #: framework/premium/extensions/mega-menu/options.php:320
 
2278
  msgid "Custom Content"
2279
  msgstr ""
2280
 
2281
+ #: framework/premium/extensions/mega-menu/options.php:324
 
2282
  msgid "Content Type"
2283
  msgstr ""
2284
 
2285
+ #: framework/premium/extensions/mega-menu/options.php:331
 
2286
  msgid "Default (Menu Item)"
2287
  msgstr ""
2288
 
2289
+ #: framework/premium/extensions/mega-menu/options.php:332
 
2290
  msgid "Custom Text"
2291
  msgstr ""
2292
 
2293
  #: framework/premium/extensions/mega-menu/options.php:364,
2294
+ #: framework/premium/extensions/mega-menu/options.php:371
 
 
2295
  msgid "Select Content Block"
2296
  msgstr ""
2297
 
2298
+ #: framework/premium/extensions/mega-menu/options.php:367
 
2299
  msgid "Create a new content Block/Hook"
2300
  msgstr ""
2301
 
2302
  #: framework/premium/extensions/mega-menu/options.php:394,
2303
+ #: framework/premium/extensions/mega-menu/options.php:720
 
 
2304
  msgid "Item Label Settings"
2305
  msgstr ""
2306
 
2307
+ #: framework/premium/extensions/mega-menu/options.php:399
 
2308
  msgid "Item Label"
2309
  msgstr ""
2310
 
2311
+ #: framework/premium/extensions/mega-menu/options.php:407
 
2312
  msgid "Enabled"
2313
  msgstr ""
2314
 
2317
  #: framework/premium/features/content-blocks/options/archive.php:160,
2318
  #: framework/premium/features/content-blocks/options/header.php:108,
2319
  #: framework/premium/features/content-blocks/options/hook.php:113,
2320
+ #: framework/premium/features/content-blocks/options/single.php:99
 
 
 
 
 
 
2321
  msgid "Disabled"
2322
  msgstr ""
2323
 
2324
+ #: framework/premium/extensions/mega-menu/options.php:409
 
2325
  msgid "Heading"
2326
  msgstr ""
2327
 
2328
+ #: framework/premium/extensions/mega-menu/options.php:415
 
2329
  msgid "Label Link"
2330
  msgstr ""
2331
 
2332
  #: framework/premium/extensions/mega-menu/options.php:481,
2333
+ #: framework/premium/extensions/mega-menu/options.php:802
 
 
2334
  msgid "Menu Badge Settings"
2335
  msgstr ""
2336
 
2337
  #: framework/premium/extensions/mega-menu/options.php:499,
2338
+ #: framework/premium/extensions/woocommerce-extra/offcanvas-filter.php:260
 
 
2339
  msgid "Vertical Alignment"
2340
  msgstr ""
2341
 
2342
  #: framework/premium/extensions/mega-menu/options.php:534,
2343
  #: framework/premium/extensions/shortcuts/customizer.php:883,
2344
  #: framework/premium/extensions/woocommerce-extra/offcanvas-filter.php:346,
2345
+ #: framework/features/header/items/account/options.php:1166
 
 
 
 
2346
  msgid "Background"
2347
  msgstr ""
2348
 
2349
+ #: framework/premium/extensions/mega-menu/options.php:548
 
2350
  msgid "Link Color"
2351
  msgstr ""
2352
 
2353
  #: framework/premium/extensions/mega-menu/options.php:568,
2354
  #: framework/premium/extensions/woocommerce-extra/offcanvas-filter.php:144,
 
 
2355
  #: framework/premium/features/premium-header/items/contacts/options.php:478,
2356
  #: framework/premium/features/premium-header/items/contacts/options.php:520,
2357
+ #: framework/premium/features/premium-header/items/contacts/options.php:560
 
 
 
2358
  msgid "Link Initial"
2359
  msgstr ""
2360
 
2361
+ #: framework/premium/extensions/mega-menu/options.php:573
 
2362
  msgid "Link Hover/Active"
2363
  msgstr ""
2364
 
2365
+ #: framework/premium/extensions/mega-menu/options.php:578
 
2366
  msgid "Background Hover"
2367
  msgstr ""
2368
 
2369
+ #: framework/premium/extensions/mega-menu/options.php:586
2370
+ msgid "Heading Font"
2371
+ msgstr ""
2372
+
2373
+ #: framework/premium/extensions/mega-menu/options.php:595,
2374
+ #: framework/premium/extensions/mega-menu/options.php:729
2375
  msgid "Heading Color"
2376
  msgstr ""
2377
 
2378
+ #: framework/premium/extensions/mega-menu/options.php:607,
2379
+ #: framework/premium/extensions/mega-menu/options.php:627,
2380
+ #: framework/premium/extensions/mega-menu/options.php:741
 
 
 
2381
  msgid "Initial Color"
2382
  msgstr ""
2383
 
2384
+ #: framework/premium/extensions/mega-menu/options.php:634,
2385
  #: framework/premium/extensions/shortcuts/customizer.php:900,
 
 
2386
  #: framework/premium/features/premium-header/items/language-switcher/options.php:432,
2387
+ #: framework/premium/features/premium-header/items/search-input/options.php:836
 
 
2388
  msgid "Items Divider"
2389
  msgstr ""
2390
 
2391
+ #: framework/premium/extensions/mega-menu/options.php:649
 
2392
  msgid "Columns Divider"
2393
  msgstr ""
2394
 
2395
+ #: framework/premium/extensions/mega-menu/options.php:664,
2396
+ #: framework/premium/features/premium-header/items/search-input/options.php:818
 
 
2397
  msgid "Dropdown Shadow"
2398
  msgstr ""
2399
 
2400
+ #: framework/premium/extensions/mega-menu/options.php:696
 
2401
  msgid "Column Settings"
2402
  msgstr ""
2403
 
2404
+ #: framework/premium/extensions/mega-menu/options.php:700
 
2405
  msgid "Column Spacing"
2406
  msgstr ""
2407
 
2408
+ #: framework/premium/extensions/mega-menu/options.php:752,
2409
  #: framework/premium/extensions/woocommerce-extra/offcanvas-filter.php:352,
2410
+ #: framework/features/header/items/account/options.php:827,
2411
+ #: framework/features/header/items/account/options.php:855,
2412
+ #: framework/features/header/items/account/options.php:886,
2413
+ #: framework/features/header/items/account/options.php:915,
2414
+ #: framework/features/header/items/account/options.php:1172,
2415
  #: framework/premium/extensions/woocommerce-extra/includes/wish-list-options.php:141,
2416
  #: framework/premium/extensions/woocommerce-extra/includes/wish-list-options.php:218,
2417
  #: framework/premium/extensions/woocommerce-extra/includes/wish-list-options.php:294,
 
 
2418
  #: framework/premium/extensions/woocommerce-extra/header-items/wish-list/options.php:305,
2419
  #: framework/premium/extensions/woocommerce-extra/header-items/wish-list/options.php:333,
2420
  #: framework/premium/extensions/woocommerce-extra/header-items/wish-list/options.php:364,
2422
  #: framework/premium/features/premium-header/items/dark-mode-switcher/options.php:30,
2423
  #: framework/premium/features/premium-header/items/dark-mode-switcher/options.php:58,
2424
  #: framework/premium/features/premium-header/items/dark-mode-switcher/options.php:89,
2425
+ #: framework/premium/features/premium-header/items/dark-mode-switcher/options.php:118
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2426
  msgid "Icon Color"
2427
  msgstr ""
2428
 
2429
  #. translators: This is a brand name. Preferably to not be translated
2430
+ #: framework/premium/extensions/post-types-extra/config.php:5
 
2431
  msgctxt "Extension Brand Name"
2432
  msgid "Post Types Extra"
2433
  msgstr ""
2434
 
2435
+ #: framework/premium/extensions/post-types-extra/config.php:6
 
2436
  msgid ""
2437
  "Enables support for Custom Fields inside archive cards and single page post "
2438
  "title, adds a reading progress bar for your posts and lets you set featured "
2439
  "images and colors for your categories archives."
2440
  msgstr ""
2441
 
2442
+ #: framework/premium/extensions/post-types-extra/readme.php:4
 
2443
  msgid ""
2444
  "After activating this extension you will be able to enable the read progress "
2445
  "bar for your single posts, add a featured image and set different colors to "
2448
  "taxonomies archive filters."
2449
  msgstr ""
2450
 
2451
+ #: framework/premium/extensions/post-types-extra/readme.php:10
 
2452
  msgid "Custom Fields"
2453
  msgstr ""
2454
 
2455
+ #: framework/premium/extensions/post-types-extra/readme.php:14
 
2456
  msgid ""
2457
  "After setting up your custom fields you will be able to output them from %s "
2458
  "or from %2s."
2459
  msgstr ""
2460
 
2461
+ #: framework/premium/extensions/post-types-extra/readme.php:17
 
2462
  msgid "Customizer ➝ Blog Posts ➝ Card Options"
2463
  msgstr ""
2464
 
2465
+ #: framework/premium/extensions/post-types-extra/readme.php:21
 
2466
  msgid "Customizer ➝ Single Posts ➝ Post Title"
2467
  msgstr ""
2468
 
2469
+ #: framework/premium/extensions/post-types-extra/readme.php:29
 
2470
  msgid "Taxonomies Filters"
2471
  msgstr ""
2472
 
2473
+ #: framework/premium/extensions/post-types-extra/readme.php:33
 
2474
  msgid "You can enable the taxonomies filters from %s."
2475
  msgstr ""
2476
 
2477
+ #: framework/premium/extensions/post-types-extra/readme.php:36
 
2478
  msgid "Customizer ➝ Blog Posts ➝ Filters"
2479
  msgstr ""
2480
 
2481
+ #: framework/premium/extensions/post-types-extra/readme.php:44
 
2482
  msgid "Read Progress Bar"
2483
  msgstr ""
2484
 
2485
+ #: framework/premium/extensions/post-types-extra/readme.php:48
 
2486
  msgid "This options could be enabled from %s."
2487
  msgstr ""
2488
 
2489
+ #: framework/premium/extensions/post-types-extra/readme.php:51
 
2490
  msgid "Customizer ➝ Single Posts ➝ Read Progress Bar"
2491
  msgstr ""
2492
 
2493
+ #: framework/premium/extensions/post-types-extra/readme.php:59
 
2494
  msgid "Taxonomy Featured Image & Custom Colors"
2495
  msgstr ""
2496
 
2497
+ #: framework/premium/extensions/post-types-extra/readme.php:63
 
2498
  msgid ""
2499
  "To customize these options simply navigate to %s and edit one of your "
2500
  "categories."
2501
  msgstr ""
2502
 
2503
+ #: framework/premium/extensions/post-types-extra/readme.php:66
 
2504
  msgid "Dashboard ➝ Posts ➝ Categories"
2505
  msgstr ""
2506
 
2507
  #. translators: This is a brand name. Preferably to not be translated
2508
  #: framework/premium/extensions/shortcuts/config.php:5,
2509
+ #: framework/premium/extensions/shortcuts/customizer.php:524
 
 
2510
  msgctxt "Extension Brand Name"
2511
  msgid "Shortcuts Bar"
2512
  msgstr ""
2513
 
2514
+ #: framework/premium/extensions/shortcuts/config.php:6
 
2515
  msgid ""
2516
  "Easily turn your websites into mobile first experiences. You can easily add "
2517
  "the most important actions at the bottom of the screen for easy access."
2521
  #: framework/premium/extensions/shortcuts/customizer.php:35,
2522
  #: framework/premium/extensions/shortcuts/customizer.php:563,
2523
  #: framework/premium/extensions/shortcuts/views/bar.php:13,
2524
+ #: framework/premium/extensions/shortcuts/views/bar.php:43
 
 
 
 
 
2525
  msgid "Home"
2526
  msgstr ""
2527
 
2531
  #: framework/extensions/widgets/widgets/ct-contact-info/options.php:128,
2532
  #: framework/premium/extensions/shortcuts/views/bar.php:22,
2533
  #: framework/premium/extensions/shortcuts/views/bar.php:44,
2534
+ #: framework/premium/features/premium-header/items/contacts/options.php:76
 
 
 
 
 
 
 
2535
  msgid "Phone"
2536
  msgstr ""
2537
 
2538
  #: framework/premium/extensions/shortcuts/customizer.php:192,
2539
  #: framework/premium/extensions/shortcuts/customizer.php:215,
2540
+ #: framework/premium/extensions/shortcuts/views/bar.php:46
 
 
 
2541
  msgid "Scroll Top"
2542
  msgstr ""
2543
 
2544
  #: framework/premium/extensions/shortcuts/customizer.php:293,
2545
  #: framework/extensions/widgets/widgets/ct-advertisement/options.php:83,
2546
+ #: framework/extensions/widgets/widgets/ct-contact-info/options.php:539
 
 
 
2547
  msgid "Open link in new tab"
2548
  msgstr ""
2549
 
2550
+ #: framework/premium/extensions/shortcuts/customizer.php:300
 
2551
  msgid "Set link to nofollow"
2552
  msgstr ""
2553
 
2554
+ #: framework/premium/extensions/shortcuts/customizer.php:306
 
2555
  msgid "Custom class"
2556
  msgstr ""
2557
 
2558
  #: framework/premium/extensions/shortcuts/customizer.php:338,
2559
  #: framework/premium/extensions/shortcuts/customizer.php:361,
2560
+ #: framework/premium/extensions/shortcuts/views/bar.php:47
 
 
 
2561
  msgid "Cart"
2562
  msgstr ""
2563
 
2564
  #: framework/premium/extensions/shortcuts/customizer.php:394,
2565
+ #: framework/premium/extensions/shortcuts/customizer.php:417
 
 
2566
  msgid "Shop"
2567
  msgstr ""
2568
 
2569
  #: framework/premium/extensions/shortcuts/customizer.php:450,
2570
  #: framework/premium/extensions/shortcuts/customizer.php:473,
2571
  #: framework/premium/extensions/woocommerce-extra/readme.php:70,
 
 
 
2572
  #: framework/premium/extensions/woocommerce-extra/header-items/wish-list/config.php:4,
2573
  #: framework/premium/extensions/woocommerce-extra/header-items/wish-list/options.php:141,
2574
  #: framework/premium/extensions/woocommerce-extra/header-items/wish-list/view.php:105,
2575
+ #: framework/premium/extensions/woocommerce-extra/header-items/wish-list/view.php:111
 
 
 
 
2576
  msgid "Wishlist"
2577
  msgstr ""
2578
 
2579
  #: framework/premium/extensions/shortcuts/customizer.php:538,
2580
+ #: framework/premium/features/content-blocks/admin-ui.php:196
 
 
2581
  msgid "Type"
2582
  msgstr ""
2583
 
2584
+ #: framework/premium/extensions/shortcuts/customizer.php:557
 
2585
  msgid "Shortcuts"
2586
  msgstr ""
2587
 
2588
  #: framework/premium/extensions/shortcuts/customizer.php:612,
2589
+ #: framework/features/header/items/account/options.php:275,
2590
+ #: framework/features/header/items/account/options.php:572,
2591
+ #: framework/premium/extensions/woocommerce-extra/header-items/wish-list/options.php:92
 
 
 
 
2592
  msgid "Label Visibility"
2593
  msgstr ""
2594
 
2595
  #: framework/premium/extensions/shortcuts/customizer.php:652,
2596
+ #: framework/features/header/items/account/options.php:311,
2597
+ #: framework/features/header/items/account/options.php:608,
2598
+ #: framework/premium/extensions/woocommerce-extra/header-items/wish-list/options.php:123
 
 
 
 
2599
  msgid "Label Position"
2600
  msgstr ""
2601
 
2602
  #: framework/premium/extensions/shortcuts/customizer.php:661,
2603
  #: framework/premium/extensions/woocommerce-extra/floating-cart.php:25,
2604
  #: framework/premium/features/content-blocks/hooks-manager.php:445,
2605
+ #: framework/features/header/items/account/options.php:320,
2606
+ #: framework/features/header/items/account/options.php:617,
2607
  #: framework/premium/features/content-blocks/options/hook.php:307,
2608
+ #: framework/premium/extensions/woocommerce-extra/header-items/wish-list/options.php:132
 
 
 
 
 
 
 
2609
  msgid "Bottom"
2610
  msgstr ""
2611
 
2612
  #: framework/premium/extensions/shortcuts/customizer.php:672,
2613
+ #: framework/features/header/items/account/options.php:258,
2614
+ #: framework/features/header/items/account/options.php:499,
2615
+ #: framework/features/header/items/account/options.php:555,
2616
+ #: framework/premium/extensions/woocommerce-extra/header-items/wish-list/options.php:74
 
 
 
2617
  msgid "Icon Size"
2618
  msgstr ""
2619
 
2620
+ #: framework/premium/extensions/shortcuts/customizer.php:682
 
2621
  msgid "Container Height"
2622
  msgstr ""
2623
 
2624
+ #: framework/premium/extensions/shortcuts/customizer.php:697
 
2625
  msgid "Container Max Width"
2626
  msgstr ""
2627
 
2628
+ #: framework/premium/extensions/shortcuts/customizer.php:721
 
2629
  msgid "Scroll Interaction"
2630
  msgstr ""
2631
 
2633
  #: framework/premium/features/content-blocks/admin-ui.php:225,
2634
  #: framework/extensions/widgets/widgets/ct-contact-info/options.php:510,
2635
  #: framework/extensions/widgets/widgets/ct-socials/options.php:113,
2636
+ #: framework/features/header/items/account/options.php:143,
2637
+ #: framework/features/header/items/account/options.php:408,
2638
  #: framework/premium/features/content-blocks/options/hook.php:9,
2639
  #: framework/premium/features/content-blocks/options/hook.php:158,
2640
  #: framework/premium/features/content-blocks/options/popup.php:162,
2641
  #: framework/premium/features/content-blocks/options/popup.php:437,
2642
+ #: framework/premium/features/premium-header/items/contacts/options.php:338
 
 
 
 
 
 
 
 
 
 
 
2643
  msgid "None"
2644
  msgstr ""
2645
 
2646
+ #: framework/premium/extensions/shortcuts/customizer.php:727
 
2647
  msgid "Hide"
2648
  msgstr ""
2649
 
2650
+ #: framework/premium/extensions/shortcuts/customizer.php:769
 
2651
  msgid "Shortcuts Bar Display Conditions"
2652
  msgstr ""
2653
 
2654
+ #: framework/premium/extensions/shortcuts/customizer.php:770
 
2655
  msgid "Add one or more conditions to display the shortcuts bar."
2656
  msgstr ""
2657
 
2658
  #: framework/premium/extensions/shortcuts/customizer.php:784,
 
2659
  #: framework/premium/extensions/post-types-extra/includes/filtering/customizer.php:173,
2660
  #: framework/premium/features/premium-header/items/contacts/options.php:410,
2661
  #: framework/premium/features/premium-header/items/language-switcher/options.php:192,
2662
+ #: framework/premium/features/premium-header/items/language-switcher/options.php:376
 
 
 
 
2663
  msgid "Font"
2664
  msgstr ""
2665
 
2666
  #: framework/premium/extensions/shortcuts/customizer.php:826,
 
2667
  #: framework/premium/features/premium-header/items/contacts/options.php:590,
2668
  #: framework/premium/features/premium-header/items/contacts/options.php:619,
2669
  #: framework/premium/features/premium-header/items/contacts/options.php:650,
2670
+ #: framework/premium/features/premium-header/items/contacts/options.php:680
 
 
 
 
2671
  msgid "Icons Color"
2672
  msgstr ""
2673
 
2674
+ #: framework/premium/extensions/shortcuts/customizer.php:865
 
2675
  msgid "Cart Badge Color"
2676
  msgstr ""
2677
 
2678
+ #: framework/premium/extensions/shortcuts/customizer.php:920
 
2679
  msgid "Items Divider Height"
2680
  msgstr ""
2681
 
2682
  #: framework/premium/extensions/shortcuts/customizer.php:934,
2683
  #: framework/premium/extensions/woocommerce-extra/floating-cart.php:123,
2684
  #: framework/premium/features/content-blocks/options/popup.php:387,
2685
+ #: framework/premium/features/premium-header/items/language-switcher/options.php:446
 
 
 
 
2686
  msgid "Shadow"
2687
  msgstr ""
2688
 
2689
  #. translators: This is a brand name. Preferably to not be translated
2690
+ #: framework/premium/extensions/sidebars/config.php:5
 
2691
  msgctxt "Extension Brand Name"
2692
  msgid "Multiple Sidebars"
2693
  msgstr ""
2694
 
2695
+ #: framework/premium/extensions/sidebars/config.php:6
 
2696
  msgid ""
2697
  "Create unlimited personalized sets of widget areas and display them on any "
2698
  "page or post using our conditional logic functionality."
2699
  msgstr ""
2700
 
2701
+ #: framework/premium/extensions/sidebars/config.php:10
 
2702
  msgid "Create New Sidebar"
2703
  msgstr ""
2704
 
2705
+ #: framework/premium/extensions/sidebars/form.php:3
 
2706
  #: framework/premium/extensions/sidebars/static/js/main.js:42
2707
  msgid "Create Sidebar/Widget Area"
2708
  msgstr ""
2709
 
2710
+ #: framework/premium/extensions/sidebars/form.php:6
 
2711
  msgid ""
2712
  "In order to create a new sidebar/widget area simply enter a name in the "
2713
  "input below and click the Create Sidebar button."
2714
  msgstr ""
2715
 
2716
+ #: framework/premium/extensions/sidebars/form.php:16
 
2717
  #: framework/premium/extensions/sidebars/static/js/main.js:58
2718
  msgid "Create Sidebar"
2719
  msgstr ""
2720
 
2721
+ #: framework/premium/extensions/sidebars/form.php:20
 
2722
  msgid "Available Sidebars/Widget Areas"
2723
  msgstr ""
2724
 
2725
  #. translators: This is a brand name. Preferably to not be translated
2726
+ #: framework/premium/extensions/white-label/config.php:5
 
2727
  msgctxt "Extension Brand Name"
2728
  msgid "White Label"
2729
  msgstr ""
2730
 
2731
+ #: framework/premium/extensions/white-label/config.php:6
 
2732
  msgid ""
2733
  "Replace Blocksy's branding with your own. Easily hide licensing info and "
2734
  "other sections of the theme and companion plugin from your clients and make "
2736
  msgstr ""
2737
 
2738
  #. translators: This is a brand name. Preferably to not be translated
2739
+ #: framework/premium/extensions/woocommerce-extra/config.php:5
 
2740
  msgctxt "Extension Brand Name"
2741
  msgid "WooCommerce Extra"
2742
  msgstr ""
2743
 
2744
+ #: framework/premium/extensions/woocommerce-extra/config.php:6
 
2745
  msgid ""
2746
  "Make the shopping experience better for your visitors! Add features such as "
2747
  "Product Quick View, Wishlist functionality and a Floating Add to Cart "
2748
  "button. Customize the single product gallery/slider and the layout."
2749
  msgstr ""
2750
 
2751
+ #: framework/premium/extensions/woocommerce-extra/customizer.php:5
 
2752
  msgid "Quick View Button"
2753
  msgstr ""
2754
 
2755
+ #: framework/premium/extensions/woocommerce-extra/customizer.php:21
 
2756
  msgid "Trigger On"
2757
  msgstr ""
2758
 
2759
+ #: framework/premium/extensions/woocommerce-extra/customizer.php:29
 
2760
  msgid "Button click"
2761
  msgstr ""
2762
 
2763
+ #: framework/premium/extensions/woocommerce-extra/customizer.php:30
 
2764
  msgid "Image click"
2765
  msgstr ""
2766
 
2767
+ #: framework/premium/extensions/woocommerce-extra/customizer.php:31
 
2768
  msgid "Card click"
2769
  msgstr ""
2770
 
2771
  #: framework/premium/extensions/woocommerce-extra/extension.php:91,
2772
  #: framework/premium/extensions/woocommerce-extra/offcanvas-filter.php:196,
2773
+ #: framework/features/header/items/account/options.php:235,
2774
+ #: framework/features/header/items/account/options.php:476,
2775
+ #: framework/features/header/items/account/options.php:534,
2776
+ #: framework/premium/extensions/woocommerce-extra/header-items/wish-list/options.php:66
 
 
 
 
2777
  msgid "Type 3"
2778
  msgstr ""
2779
 
2780
  #: framework/premium/extensions/woocommerce-extra/extension.php:96,
2781
  #: framework/premium/extensions/woocommerce-extra/offcanvas-filter.php:201,
2782
+ #: framework/features/header/items/account/options.php:240,
2783
+ #: framework/features/header/items/account/options.php:481,
2784
+ #: framework/features/header/items/account/options.php:539
 
 
 
2785
  msgid "Type 4"
2786
  msgstr ""
2787
 
2788
  #: framework/premium/extensions/woocommerce-extra/extension.php:119,
2789
+ #: framework/premium/extensions/woocommerce-extra/extension.php:138
 
 
2790
  msgid "Number of Columns"
2791
  msgstr ""
2792
 
2793
+ #: framework/premium/extensions/woocommerce-extra/extension.php:162
 
2794
  msgid "Gallery Arrows Visibility"
2795
  msgstr ""
2796
 
2797
+ #: framework/premium/extensions/woocommerce-extra/extension.php:183
 
2798
  msgid "Thumbnails Arrows Visibility"
2799
  msgstr ""
2800
 
2801
+ #: framework/premium/extensions/woocommerce-extra/extension.php:392
 
2802
  msgid "Icons Spacing"
2803
  msgstr ""
2804
 
2805
+ #: framework/premium/extensions/woocommerce-extra/extension.php:436
 
2806
  msgid "WooCommerce Offcanvas Filters"
2807
  msgstr ""
2808
 
2809
+ #: framework/premium/extensions/woocommerce-extra/extension.php:438
 
2810
  msgid "Add widgets here."
2811
  msgstr ""
2812
 
2813
+ #: framework/premium/extensions/woocommerce-extra/extension.php:711
 
2814
  msgid "Available Filters"
2815
  msgstr ""
2816
 
2817
+ #: framework/premium/extensions/woocommerce-extra/extension.php:712
 
2818
  msgid "Close filters modal"
2819
  msgstr ""
2820
 
2821
+ #: framework/premium/extensions/woocommerce-extra/extension.php:805
 
2822
  msgid "Quick view title before"
2823
  msgstr ""
2824
 
2825
+ #: framework/premium/extensions/woocommerce-extra/extension.php:810
 
2826
  msgid "Quick view title after"
2827
  msgstr ""
2828
 
2829
+ #: framework/premium/extensions/woocommerce-extra/extension.php:815
 
2830
  msgid "Quick view price before"
2831
  msgstr ""
2832
 
2833
+ #: framework/premium/extensions/woocommerce-extra/extension.php:820
 
2834
  msgid "Quick view price after"
2835
  msgstr ""
2836
 
2837
+ #: framework/premium/extensions/woocommerce-extra/extension.php:825
 
2838
  msgid "Quick view summary before"
2839
  msgstr ""
2840
 
2841
+ #: framework/premium/extensions/woocommerce-extra/extension.php:830
 
2842
  msgid "Quick view summary after"
2843
  msgstr ""
2844
 
2845
  #: framework/premium/extensions/woocommerce-extra/floating-cart.php:4,
2846
+ #: framework/premium/extensions/woocommerce-extra/readme.php:25
 
 
2847
  msgid "Floating Cart"
2848
  msgstr ""
2849
 
2850
+ #: framework/premium/extensions/woocommerce-extra/floating-cart.php:17
 
2851
  msgid "Position"
2852
  msgstr ""
2853
 
2854
  #: framework/premium/extensions/woocommerce-extra/floating-cart.php:24,
2855
  #: framework/premium/features/content-blocks/hooks-manager.php:407,
2856
+ #: framework/premium/features/content-blocks/options/hook.php:306
 
 
 
2857
  msgid "Top"
2858
  msgstr ""
2859
 
2860
+ #: framework/premium/extensions/woocommerce-extra/floating-cart.php:34
 
2861
  msgid "Product Title Visibility"
2862
  msgstr ""
2863
 
2864
+ #: framework/premium/extensions/woocommerce-extra/floating-cart.php:58
 
2865
  msgid "Floating Cart Visibility"
2866
  msgstr ""
2867
 
2868
+ #: framework/premium/extensions/woocommerce-extra/helpers.php:79
 
2869
  msgid "Close quick view"
2870
  msgstr ""
2871
 
2872
+ #: framework/premium/extensions/woocommerce-extra/helpers.php:106
 
2873
  msgid "Go to product page"
2874
  msgstr ""
2875
 
2876
+ #: framework/premium/extensions/woocommerce-extra/helpers.php:152
 
2877
  msgid "Quick view toggle"
2878
  msgstr ""
2879
 
2880
+ #: framework/premium/extensions/woocommerce-extra/helpers.php:152
 
2881
  msgid "Quick view icon"
2882
  msgstr ""
2883
 
2884
+ #: framework/premium/extensions/woocommerce-extra/helpers.php:186
 
2885
  msgid "Filter"
2886
  msgstr ""
2887
 
2888
+ #: framework/premium/extensions/woocommerce-extra/offcanvas-filter.php:3
 
2889
  msgid "Off Canvas Filter"
2890
  msgstr ""
2891
 
2892
+ #: framework/premium/extensions/woocommerce-extra/offcanvas-filter.php:14
 
2893
  msgid "Filter Widgets"
2894
  msgstr ""
2895
 
2896
+ #: framework/premium/extensions/woocommerce-extra/offcanvas-filter.php:18
 
2897
  msgid "Widgets"
2898
  msgstr ""
2899
 
2900
+ #: framework/premium/extensions/woocommerce-extra/offcanvas-filter.php:36
 
2901
  msgid "Widgets Vertical Spacing"
2902
  msgstr ""
2903
 
2904
+ #: framework/premium/extensions/woocommerce-extra/offcanvas-filter.php:51
 
2905
  msgid "Widgets Title Font"
2906
  msgstr ""
2907
 
2908
+ #: framework/premium/extensions/woocommerce-extra/offcanvas-filter.php:59
 
2909
  msgid "Widgets Title Font Color"
2910
  msgstr ""
2911
 
2912
+ #: framework/premium/extensions/woocommerce-extra/offcanvas-filter.php:107
 
2913
  msgid "Widgets Font"
2914
  msgstr ""
2915
 
2916
+ #: framework/premium/extensions/woocommerce-extra/offcanvas-filter.php:116
 
2917
  msgid "Widgets Font Color"
2918
  msgstr ""
2919
 
2920
  #: framework/premium/extensions/woocommerce-extra/offcanvas-filter.php:138,
 
2921
  #: framework/premium/features/premium-header/items/contacts/options.php:472,
2922
  #: framework/premium/features/premium-header/items/contacts/options.php:515,
2923
+ #: framework/premium/features/premium-header/items/contacts/options.php:555
 
 
 
2924
  msgid "Text Initial"
2925
  msgstr ""
2926
 
2927
  #: framework/premium/extensions/woocommerce-extra/offcanvas-filter.php:149,
 
2928
  #: framework/premium/features/premium-header/items/contacts/options.php:484,
2929
  #: framework/premium/features/premium-header/items/contacts/options.php:525,
2930
+ #: framework/premium/features/premium-header/items/contacts/options.php:565
 
 
 
2931
  msgid "Link Hover"
2932
  msgstr ""
2933
 
2934
+ #: framework/premium/extensions/woocommerce-extra/offcanvas-filter.php:160
 
2935
  msgid "Filter Button & Panel"
2936
  msgstr ""
2937
 
2938
+ #: framework/premium/extensions/woocommerce-extra/offcanvas-filter.php:169
 
2939
  msgid "Filter Icon Type"
2940
  msgstr ""
2941
 
2942
+ #: framework/premium/extensions/woocommerce-extra/offcanvas-filter.php:207
 
2943
  msgid "Filter Button Visibility"
2944
  msgstr ""
2945
 
2946
+ #: framework/premium/extensions/woocommerce-extra/offcanvas-filter.php:230
 
2947
  msgid "Panel Reveal"
2948
  msgstr ""
2949
 
2950
+ #: framework/premium/extensions/woocommerce-extra/offcanvas-filter.php:237
 
2951
  msgid "Left Side"
2952
  msgstr ""
2953
 
2954
+ #: framework/premium/extensions/woocommerce-extra/offcanvas-filter.php:238
 
2955
  msgid "Right Side"
2956
  msgstr ""
2957
 
2958
+ #: framework/premium/extensions/woocommerce-extra/offcanvas-filter.php:243
 
2959
  msgid "Panel Width"
2960
  msgstr ""
2961
 
2962
+ #: framework/premium/extensions/woocommerce-extra/offcanvas-filter.php:284
 
2963
  msgid "Panel Background"
2964
  msgstr ""
2965
 
2966
+ #: framework/premium/extensions/woocommerce-extra/offcanvas-filter.php:316
 
2967
  msgid "Panel Shadow"
2968
  msgstr ""
2969
 
2970
  #: framework/premium/extensions/woocommerce-extra/offcanvas-filter.php:335,
2971
+ #: framework/features/header/items/account/options.php:1155
 
 
2972
  msgid "Close Button Type"
2973
  msgstr ""
2974
 
2975
  #: framework/premium/extensions/woocommerce-extra/offcanvas-filter.php:344,
2976
+ #: framework/features/header/items/account/options.php:1164
 
 
2977
  msgid "Simple"
2978
  msgstr ""
2979
 
2980
  #: framework/premium/extensions/woocommerce-extra/offcanvas-filter.php:345,
2981
+ #: framework/features/header/items/account/options.php:1165
 
 
2982
  msgid "Border"
2983
  msgstr ""
2984
 
2985
  #: framework/premium/extensions/woocommerce-extra/offcanvas-filter.php:386,
2986
+ #: framework/features/header/items/account/options.php:1208
 
 
2987
  msgid "Border Color"
2988
  msgstr ""
2989
 
2990
+ #: framework/premium/extensions/woocommerce-extra/readme.php:4
 
2991
  msgid ""
2992
  "After installing and activating the WooCommerce Extra extension you will "
2993
  "have these features:"
2994
  msgstr ""
2995
 
2996
+ #: framework/premium/extensions/woocommerce-extra/readme.php:10
 
2997
  msgid "Product Quick View"
2998
  msgstr ""
2999
 
3001
  #: framework/premium/extensions/woocommerce-extra/readme.php:29,
3002
  #: framework/premium/extensions/woocommerce-extra/readme.php:44,
3003
  #: framework/premium/extensions/woocommerce-extra/readme.php:59,
3004
+ #: framework/premium/extensions/woocommerce-extra/readme.php:74
 
 
 
 
 
3005
  msgid "Navigate to %s."
3006
  msgstr ""
3007
 
3008
+ #: framework/premium/extensions/woocommerce-extra/readme.php:17
 
3009
  msgid "Customizer ➝ WooCommerce ➝ Product Archives ➝ Card Options ➝ Quick View"
3010
  msgstr ""
3011
 
3012
+ #: framework/premium/extensions/woocommerce-extra/readme.php:32
 
3013
  msgid "Customizer ➝ WooCommerce ➝ Single Product ➝ Floating Cart"
3014
  msgstr ""
3015
 
3016
+ #: framework/premium/extensions/woocommerce-extra/readme.php:40
 
3017
  msgid "Advanced Gallery & Slider"
3018
  msgstr ""
3019
 
3020
+ #: framework/premium/extensions/woocommerce-extra/readme.php:47
 
3021
  msgid "Customizer ➝ WooCommerce ➝ Single Product ➝ Gallery Options"
3022
  msgstr ""
3023
 
3024
+ #: framework/premium/extensions/woocommerce-extra/readme.php:55
 
3025
  msgid "Share Box"
3026
  msgstr ""
3027
 
3028
+ #: framework/premium/extensions/woocommerce-extra/readme.php:62
 
3029
  msgid "Customizer ➝ WooCommerce ➝ Single Product ➝ Share Box"
3030
  msgstr ""
3031
 
3032
+ #: framework/premium/extensions/woocommerce-extra/readme.php:77
 
3033
  msgid "Customizer ➝ WooCommerce ➝ General ➝ Products Wishlist"
3034
  msgstr ""
3035
 
3036
+ #: framework/premium/features/content-blocks/admin-ui.php:17
 
3037
  msgid "Enable"
3038
  msgstr ""
3039
 
3040
+ #: framework/premium/features/content-blocks/admin-ui.php:18
 
3041
  msgid "Disable"
3042
  msgstr ""
3043
 
3044
+ #: framework/premium/features/content-blocks/admin-ui.php:69
 
3045
  msgid "Enabled %s content block."
3046
  msgid_plural "Enabled %s content blocks."
3047
  msgstr[0] ""
3048
  msgstr[1] ""
3049
 
3050
+ #: framework/premium/features/content-blocks/admin-ui.php:94
 
3051
  msgid "Disabled %s content block."
3052
  msgid_plural "Disabled %s content blocks."
3053
  msgstr[0] ""
3054
  msgstr[1] ""
3055
 
3056
+ #: framework/premium/features/content-blocks/admin-ui.php:120
 
3057
  #: framework/premium/static/js/hooks/CreateHook.js:68
3058
  msgid "Custom Content/Hooks"
3059
  msgstr ""
3060
 
3061
+ #: framework/premium/features/content-blocks/admin-ui.php:121
 
3062
  #: framework/premium/static/js/hooks/CreateHook.js:77
3063
  msgid "Popup"
3064
  msgstr ""
3065
 
3066
+ #: framework/premium/features/content-blocks/admin-ui.php:122
 
3067
  msgid "404 Page"
3068
  msgstr ""
3069
 
3070
  #: framework/premium/features/content-blocks/admin-ui.php:123,
3071
  #: framework/premium/features/content-blocks/hooks-manager.php:50,
3072
+ #: framework/premium/features/content-blocks/hooks-manager.php:59
 
 
 
3073
  msgid "Header"
3074
  msgstr ""
3075
 
3076
  #: framework/premium/features/content-blocks/admin-ui.php:124,
3077
  #: framework/premium/features/content-blocks/hooks-manager.php:890,
3078
  #: framework/premium/features/content-blocks/hooks-manager.php:898,
3079
+ #: framework/premium/features/content-blocks/hooks-manager.php:906
 
 
 
 
3080
  msgid "Footer"
3081
  msgstr ""
3082
 
3083
+ #: framework/premium/features/content-blocks/admin-ui.php:125
 
3084
  msgid "Archive"
3085
  msgstr ""
3086
 
3087
+ #: framework/premium/features/content-blocks/admin-ui.php:126
 
3088
  msgid "Single"
3089
  msgstr ""
3090
 
3091
+ #: framework/premium/features/content-blocks/admin-ui.php:131
 
3092
  msgid "All types"
3093
  msgstr ""
3094
 
3095
+ #: framework/premium/features/content-blocks/admin-ui.php:197
 
3096
  msgid "Location/Trigger"
3097
  msgstr ""
3098
 
3099
+ #: framework/premium/features/content-blocks/admin-ui.php:198
 
3100
  msgid "Conditions"
3101
  msgstr ""
3102
 
3103
+ #: framework/premium/features/content-blocks/admin-ui.php:199
 
3104
  msgid "Output"
3105
  msgstr ""
3106
 
3107
+ #: framework/premium/features/content-blocks/admin-ui.php:200
 
3108
  msgid "Enable/Disable"
3109
  msgstr ""
3110
 
3111
  #: framework/premium/features/content-blocks/admin-ui.php:226,
3112
+ #: framework/premium/features/content-blocks/options/popup.php:163
 
 
3113
  msgid "On scroll"
3114
  msgstr ""
3115
 
3116
  #: framework/premium/features/content-blocks/admin-ui.php:227,
3117
+ #: framework/premium/features/content-blocks/options/popup.php:164
 
 
3118
  msgid "On scroll to element"
3119
  msgstr ""
3120
 
3121
  #: framework/premium/features/content-blocks/admin-ui.php:228,
3122
+ #: framework/premium/features/content-blocks/options/popup.php:165
 
 
3123
  msgid "On page load"
3124
  msgstr ""
3125
 
3126
  #: framework/premium/features/content-blocks/admin-ui.php:229,
3127
+ #: framework/premium/features/content-blocks/options/popup.php:166
 
 
3128
  msgid "After inactivity"
3129
  msgstr ""
3130
 
3131
  #: framework/premium/features/content-blocks/admin-ui.php:230,
3132
+ #: framework/premium/features/content-blocks/options/popup.php:167
 
 
3133
  msgid "After x time"
3134
  msgstr ""
3135
 
3136
  #: framework/premium/features/content-blocks/admin-ui.php:231,
3137
+ #: framework/premium/features/content-blocks/options/popup.php:168
 
 
3138
  msgid "After x pages"
3139
  msgstr ""
3140
 
3141
  #: framework/premium/features/content-blocks/admin-ui.php:232,
3142
+ #: framework/premium/features/content-blocks/options/popup.php:169
 
 
3143
  msgid "On page exit intent"
3144
  msgstr ""
3145
 
3146
+ #: framework/premium/features/content-blocks/admin-ui.php:236
 
3147
  msgid "Down"
3148
  msgstr ""
3149
 
3150
+ #: framework/premium/features/content-blocks/admin-ui.php:237
 
3151
  msgid "Up"
3152
  msgstr ""
3153
 
3154
+ #: framework/premium/features/content-blocks/hooks-manager.php:11
 
3155
  msgid "WP head"
3156
  msgstr ""
3157
 
3158
  #: framework/premium/features/content-blocks/hooks-manager.php:13,
3159
  #: framework/premium/features/content-blocks/hooks-manager.php:22,
3160
  #: framework/premium/features/content-blocks/hooks-manager.php:32,
3161
+ #: framework/premium/features/content-blocks/hooks-manager.php:41
 
 
 
 
3162
  msgid "Head"
3163
  msgstr ""
3164
 
3165
+ #: framework/premium/features/content-blocks/hooks-manager.php:20
 
3166
  msgid "WP head start"
3167
  msgstr ""
3168
 
3169
+ #: framework/premium/features/content-blocks/hooks-manager.php:30
 
3170
  msgid "WP head end"
3171
  msgstr ""
3172
 
3173
+ #: framework/premium/features/content-blocks/hooks-manager.php:39
 
3174
  msgid "WP body open"
3175
  msgstr ""
3176
 
3177
+ #: framework/premium/features/content-blocks/hooks-manager.php:48
 
3178
  msgid "Header before"
3179
  msgstr ""
3180
 
3181
+ #: framework/premium/features/content-blocks/hooks-manager.php:57
 
3182
  msgid "Header after"
3183
  msgstr ""
3184
 
3185
+ #: framework/premium/features/content-blocks/hooks-manager.php:66
 
3186
  msgid "Desktop top"
3187
  msgstr ""
3188
 
3189
  #: framework/premium/features/content-blocks/hooks-manager.php:68,
3190
  #: framework/premium/features/content-blocks/hooks-manager.php:77,
3191
  #: framework/premium/features/content-blocks/hooks-manager.php:86,
3192
+ #: framework/premium/features/content-blocks/hooks-manager.php:95
 
 
 
 
3193
  msgid "Header offcanvas"
3194
  msgstr ""
3195
 
3196
+ #: framework/premium/features/content-blocks/hooks-manager.php:75
 
3197
  msgid "Desktop bottom"
3198
  msgstr ""
3199
 
3200
+ #: framework/premium/features/content-blocks/hooks-manager.php:84
 
3201
  msgid "Mobile top"
3202
  msgstr ""
3203
 
3204
+ #: framework/premium/features/content-blocks/hooks-manager.php:93
 
3205
  msgid "Mobile bottom"
3206
  msgstr ""
3207
 
3208
+ #: framework/premium/features/content-blocks/hooks-manager.php:102
 
3209
  msgid "Sidebar before"
3210
  msgstr ""
3211
 
3212
  #: framework/premium/features/content-blocks/hooks-manager.php:103,
3213
  #: framework/premium/features/content-blocks/hooks-manager.php:110,
3214
  #: framework/premium/features/content-blocks/hooks-manager.php:117,
3215
+ #: framework/premium/features/content-blocks/hooks-manager.php:124
 
 
 
 
3216
  msgid "Left/Right sidebar"
3217
  msgstr ""
3218
 
3219
+ #: framework/premium/features/content-blocks/hooks-manager.php:109
 
3220
  msgid "Sidebar start"
3221
  msgstr ""
3222
 
3223
+ #: framework/premium/features/content-blocks/hooks-manager.php:116
 
3224
  msgid "Sidebar end"
3225
  msgstr ""
3226
 
3227
+ #: framework/premium/features/content-blocks/hooks-manager.php:123
 
3228
  msgid "Sidebar after"
3229
  msgstr ""
3230
 
3231
+ #: framework/premium/features/content-blocks/hooks-manager.php:130
 
3232
  msgid "Dynamic sidebar before"
3233
  msgstr ""
3234
 
3235
  #: framework/premium/features/content-blocks/hooks-manager.php:131,
3236
  #: framework/premium/features/content-blocks/hooks-manager.php:138,
3237
+ #: framework/premium/features/content-blocks/hooks-manager.php:146
 
 
 
3238
  msgid "All widget areas"
3239
  msgstr ""
3240
 
3241
+ #: framework/premium/features/content-blocks/hooks-manager.php:137
 
3242
  msgid "Dynamic sidebar"
3243
  msgstr ""
3244
 
3245
+ #: framework/premium/features/content-blocks/hooks-manager.php:145
 
3246
  msgid "Dynamic sidebar after"
3247
  msgstr ""
3248
 
3249
+ #: framework/premium/features/content-blocks/hooks-manager.php:154
 
3250
  msgid "Before section"
3251
  msgstr ""
3252
 
3259
  #: framework/premium/features/content-blocks/hooks-manager.php:203,
3260
  #: framework/premium/features/content-blocks/hooks-manager.php:211,
3261
  #: framework/premium/features/content-blocks/hooks-manager.php:219,
3262
+ #: framework/premium/features/content-blocks/hooks-manager.php:227
 
 
 
 
 
 
 
 
 
 
3263
  msgid "Page/post title"
3264
  msgstr ""
3265
 
3266
  #: framework/premium/features/content-blocks/hooks-manager.php:162,
3267
  #: framework/premium/features/content-blocks/hooks-manager.php:280,
3268
+ #: framework/premium/features/content-blocks/hooks-manager.php:322
 
 
 
3269
  msgid "Before title"
3270
  msgstr ""
3271
 
3272
+ #: framework/premium/features/content-blocks/hooks-manager.php:170
 
3273
  msgid "Before description"
3274
  msgstr ""
3275
 
3276
+ #: framework/premium/features/content-blocks/hooks-manager.php:178
 
3277
  msgid "Before breadcrumbs"
3278
  msgstr ""
3279
 
3280
+ #: framework/premium/features/content-blocks/hooks-manager.php:186
 
3281
  msgid "Before post meta"
3282
  msgstr ""
3283
 
3284
  #: framework/premium/features/content-blocks/hooks-manager.php:194,
3285
  #: framework/premium/features/content-blocks/hooks-manager.php:287,
3286
+ #: framework/premium/features/content-blocks/hooks-manager.php:329
 
 
 
3287
  msgid "After title"
3288
  msgstr ""
3289
 
3290
+ #: framework/premium/features/content-blocks/hooks-manager.php:202
 
3291
  msgid "After description"
3292
  msgstr ""
3293
 
3294
+ #: framework/premium/features/content-blocks/hooks-manager.php:210
 
3295
  msgid "After breadcrumbs"
3296
  msgstr ""
3297
 
3298
+ #: framework/premium/features/content-blocks/hooks-manager.php:218
 
3299
  msgid "After post meta"
3300
  msgstr ""
3301
 
3302
+ #: framework/premium/features/content-blocks/hooks-manager.php:226
 
3303
  msgid "After section"
3304
  msgstr ""
3305
 
3306
+ #: framework/premium/features/content-blocks/hooks-manager.php:234
 
3307
  msgid "Before content"
3308
  msgstr ""
3309
 
3310
  #: framework/premium/features/content-blocks/hooks-manager.php:242,
3311
+ #: framework/premium/features/content-blocks/hooks-manager.php:415
 
 
3312
  msgid "Top content"
3313
  msgstr ""
3314
 
3315
  #: framework/premium/features/content-blocks/hooks-manager.php:250,
3316
+ #: framework/premium/features/content-blocks/hooks-manager.php:437
 
 
3317
  msgid "Bottom content"
3318
  msgstr ""
3319
 
3320
+ #: framework/premium/features/content-blocks/hooks-manager.php:258
 
3321
  msgid "After content"
3322
  msgstr ""
3323
 
3324
+ #: framework/premium/features/content-blocks/hooks-manager.php:266
 
3325
  msgid "Before comments"
3326
  msgstr ""
3327
 
3330
  #: framework/premium/features/content-blocks/hooks-manager.php:281,
3331
  #: framework/premium/features/content-blocks/hooks-manager.php:288,
3332
  #: framework/premium/features/content-blocks/hooks-manager.php:295,
3333
+ #: framework/premium/features/content-blocks/hooks-manager.php:302
 
 
 
 
 
 
3334
  msgid "Comments"
3335
  msgstr ""
3336
 
3337
+ #: framework/premium/features/content-blocks/hooks-manager.php:273
 
3338
  msgid "Top comments"
3339
  msgstr ""
3340
 
3341
+ #: framework/premium/features/content-blocks/hooks-manager.php:294
 
3342
  msgid "Bottom comments"
3343
  msgstr ""
3344
 
3345
+ #: framework/premium/features/content-blocks/hooks-manager.php:301
 
3346
  msgid "After comments"
3347
  msgstr ""
3348
 
3349
+ #: framework/premium/features/content-blocks/hooks-manager.php:308
 
3350
  msgid "Before related posts"
3351
  msgstr ""
3352
 
3359
  #: framework/premium/features/content-blocks/hooks-manager.php:351,
3360
  #: framework/premium/features/content-blocks/hooks-manager.php:358,
3361
  #: framework/premium/features/content-blocks/hooks-manager.php:366,
3362
+ #: framework/premium/features/content-blocks/hooks-manager.php:373
 
 
 
 
 
 
 
 
 
 
3363
  msgid "Related posts"
3364
  msgstr ""
3365
 
3366
+ #: framework/premium/features/content-blocks/hooks-manager.php:315
 
3367
  msgid "Related posts top"
3368
  msgstr ""
3369
 
3370
+ #: framework/premium/features/content-blocks/hooks-manager.php:336
 
3371
  msgid "Card top"
3372
  msgstr ""
3373
 
3374
+ #: framework/premium/features/content-blocks/hooks-manager.php:343
 
3375
  msgid "Before featured image"
3376
  msgstr ""
3377
 
3378
+ #: framework/premium/features/content-blocks/hooks-manager.php:350
 
3379
  msgid "After featured image"
3380
  msgstr ""
3381
 
3382
+ #: framework/premium/features/content-blocks/hooks-manager.php:357
 
3383
  msgid "Card bottom"
3384
  msgstr ""
3385
 
3386
+ #: framework/premium/features/content-blocks/hooks-manager.php:365
 
3387
  msgid "Related posts bottom"
3388
  msgstr ""
3389
 
3390
+ #: framework/premium/features/content-blocks/hooks-manager.php:372
 
3391
  msgid "After related posts"
3392
  msgstr ""
3393
 
3394
  #: framework/premium/features/content-blocks/hooks-manager.php:379,
3395
+ #: framework/premium/extensions/post-types-extra/includes/dynamic-data.php:459
 
 
3396
  msgid "Before"
3397
  msgstr ""
3398
 
3399
  #: framework/premium/features/content-blocks/hooks-manager.php:380,
3400
+ #: framework/premium/features/content-blocks/hooks-manager.php:387
 
 
3401
  msgid "Loop"
3402
  msgstr ""
3403
 
3404
  #: framework/premium/features/content-blocks/hooks-manager.php:386,
3405
+ #: framework/premium/extensions/post-types-extra/includes/dynamic-data.php:470
 
 
3406
  msgid "After"
3407
  msgstr ""
3408
 
3409
+ #: framework/premium/features/content-blocks/hooks-manager.php:393
 
3410
  msgid "Start"
3411
  msgstr ""
3412
 
3413
  #: framework/premium/features/content-blocks/hooks-manager.php:394,
3414
+ #: framework/premium/features/content-blocks/hooks-manager.php:401
 
 
3415
  msgid "Loop card"
3416
  msgstr ""
3417
 
3418
+ #: framework/premium/features/content-blocks/hooks-manager.php:400
 
3419
  msgid "End"
3420
  msgstr ""
3421
 
3422
+ #: framework/premium/features/content-blocks/hooks-manager.php:423
 
3423
  msgid "After certain number of blocks"
3424
  msgstr ""
3425
 
3426
+ #: framework/premium/features/content-blocks/hooks-manager.php:430
 
3427
  msgid "Before certain number of headings"
3428
  msgstr ""
3429
 
3430
+ #: framework/premium/features/content-blocks/hooks-manager.php:453
 
3431
  msgid "Login form start"
3432
  msgstr ""
3433
 
3440
  #: framework/premium/features/content-blocks/hooks-manager.php:496,
3441
  #: framework/premium/features/content-blocks/hooks-manager.php:503,
3442
  #: framework/premium/features/content-blocks/hooks-manager.php:510,
3443
+ #: framework/premium/features/content-blocks/hooks-manager.php:517
 
 
 
 
 
 
 
 
 
 
3444
  msgid "Auth forms"
3445
  msgstr ""
3446
 
3447
+ #: framework/premium/features/content-blocks/hooks-manager.php:460
 
3448
  msgid "Login form end"
3449
  msgstr ""
3450
 
3451
+ #: framework/premium/features/content-blocks/hooks-manager.php:467
 
3452
  msgid "Login form modal start"
3453
  msgstr ""
3454
 
3455
+ #: framework/premium/features/content-blocks/hooks-manager.php:474
 
3456
  msgid "Login form modal end"
3457
  msgstr ""
3458
 
3459
+ #: framework/premium/features/content-blocks/hooks-manager.php:481
 
3460
  msgid "Register form start"
3461
  msgstr ""
3462
 
3463
+ #: framework/premium/features/content-blocks/hooks-manager.php:488
 
3464
  msgid "Register form end"
3465
  msgstr ""
3466
 
3467
+ #: framework/premium/features/content-blocks/hooks-manager.php:495
 
3468
  msgid "Register form modal start"
3469
  msgstr ""
3470
 
3471
+ #: framework/premium/features/content-blocks/hooks-manager.php:502
 
3472
  msgid "Register form modal end"
3473
  msgstr ""
3474
 
3475
+ #: framework/premium/features/content-blocks/hooks-manager.php:509
 
3476
  msgid "Lost password form modal start"
3477
  msgstr ""
3478
 
3479
+ #: framework/premium/features/content-blocks/hooks-manager.php:516
 
3480
  msgid "Lost password form modal end"
3481
  msgstr ""
3482
 
3483
+ #: framework/premium/features/content-blocks/hooks-manager.php:524
 
3484
  msgid "Before main content"
3485
  msgstr ""
3486
 
3487
+ #: framework/premium/features/content-blocks/hooks-manager.php:530
 
3488
  msgid "After main content"
3489
  msgstr ""
3490
 
3491
+ #: framework/premium/features/content-blocks/hooks-manager.php:536
 
3492
  msgid "Offcanvas Filters Top"
3493
  msgstr ""
3494
 
3495
+ #: framework/premium/features/content-blocks/hooks-manager.php:542
 
3496
  msgid "Offcanvas Filters Bottom"
3497
  msgstr ""
3498
 
3499
+ #: framework/premium/features/content-blocks/hooks-manager.php:545
 
3500
  msgid "WooCommerce Global"
3501
  msgstr ""
3502
 
3503
+ #: framework/premium/features/content-blocks/hooks-manager.php:550
 
3504
  msgid "Archive description"
3505
  msgstr ""
3506
 
3507
+ #: framework/premium/features/content-blocks/hooks-manager.php:555
 
3508
  msgid "Before shop loop"
3509
  msgstr ""
3510
 
3511
+ #: framework/premium/features/content-blocks/hooks-manager.php:572
 
3512
  msgid "Before shop loop item title"
3513
  msgstr ""
3514
 
3515
+ #: framework/premium/features/content-blocks/hooks-manager.php:577
 
3516
  msgid "After shop loop item title"
3517
  msgstr ""
3518
 
3519
+ #: framework/premium/features/content-blocks/hooks-manager.php:582
 
3520
  msgid "Before shop loop item price"
3521
  msgstr ""
3522
 
3523
+ #: framework/premium/features/content-blocks/hooks-manager.php:587
 
3524
  msgid "After shop loop item price"
3525
  msgstr ""
3526
 
3527
+ #: framework/premium/features/content-blocks/hooks-manager.php:592
 
3528
  msgid "Before shop loop item actions"
3529
  msgstr ""
3530
 
3531
+ #: framework/premium/features/content-blocks/hooks-manager.php:597
 
3532
  msgid "After shop loop item actions"
3533
  msgstr ""
3534
 
3535
+ #: framework/premium/features/content-blocks/hooks-manager.php:602
 
3536
  msgid "After shop loop"
3537
  msgstr ""
3538
 
3539
+ #: framework/premium/features/content-blocks/hooks-manager.php:604
 
3540
  msgid "WooCommerce Archive"
3541
  msgstr ""
3542
 
3543
+ #: framework/premium/features/content-blocks/hooks-manager.php:609
 
3544
  msgid "Before single product"
3545
  msgstr ""
3546
 
3547
+ #: framework/premium/features/content-blocks/hooks-manager.php:627
 
3548
  msgid "Product meta start"
3549
  msgstr ""
3550
 
3551
+ #: framework/premium/features/content-blocks/hooks-manager.php:631
 
3552
  msgid "Product meta end"
3553
  msgstr ""
3554
 
3555
+ #: framework/premium/features/content-blocks/hooks-manager.php:635
 
3556
  msgid "Share"
3557
  msgstr ""
3558
 
3559
+ #: framework/premium/features/content-blocks/hooks-manager.php:639
 
3560
  msgid "After single product"
3561
  msgstr ""
3562
 
3563
+ #: framework/premium/features/content-blocks/hooks-manager.php:645
 
3564
  msgid "Before single product excerpt"
3565
  msgstr ""
3566
 
3567
+ #: framework/premium/features/content-blocks/hooks-manager.php:650
 
3568
  msgid "After single product excerpt"
3569
  msgstr ""
3570
 
3571
+ #: framework/premium/features/content-blocks/hooks-manager.php:655
 
3572
  msgid "Before single product tabs"
3573
  msgstr ""
3574
 
3575
+ #: framework/premium/features/content-blocks/hooks-manager.php:661
 
3576
  msgid "After single product tabs"
3577
  msgstr ""
3578
 
3579
+ #: framework/premium/features/content-blocks/hooks-manager.php:665
 
3580
  msgid "WooCommerce Product"
3581
  msgstr ""
3582
 
3583
+ #: framework/premium/features/content-blocks/hooks-manager.php:670
 
3584
  msgid "Cart is empty"
3585
  msgstr ""
3586
 
3587
+ #: framework/premium/features/content-blocks/hooks-manager.php:674
 
3588
  msgid "Before cart"
3589
  msgstr ""
3590
 
3591
+ #: framework/premium/features/content-blocks/hooks-manager.php:678
 
3592
  msgid "Before cart table"
3593
  msgstr ""
3594
 
3595
+ #: framework/premium/features/content-blocks/hooks-manager.php:682
 
3596
  msgid "Before cart contents"
3597
  msgstr ""
3598
 
3599
+ #: framework/premium/features/content-blocks/hooks-manager.php:686
 
3600
  msgid "Cart contents"
3601
  msgstr ""
3602
 
3603
+ #: framework/premium/features/content-blocks/hooks-manager.php:690
 
3604
  msgid "After cart contents"
3605
  msgstr ""
3606
 
3607
+ #: framework/premium/features/content-blocks/hooks-manager.php:694
 
3608
  msgid "Cart coupon"
3609
  msgstr ""
3610
 
3611
+ #: framework/premium/features/content-blocks/hooks-manager.php:698
 
3612
  msgid "Cart actions"
3613
  msgstr ""
3614
 
3615
+ #: framework/premium/features/content-blocks/hooks-manager.php:702
 
3616
  msgid "After cart table"
3617
  msgstr ""
3618
 
3619
+ #: framework/premium/features/content-blocks/hooks-manager.php:706
 
3620
  msgid "Cart collaterals"
3621
  msgstr ""
3622
 
3623
+ #: framework/premium/features/content-blocks/hooks-manager.php:710
 
3624
  msgid "Before cart totals"
3625
  msgstr ""
3626
 
3627
+ #: framework/premium/features/content-blocks/hooks-manager.php:714
 
3628
  msgid "Cart totals before order total"
3629
  msgstr ""
3630
 
3631
+ #: framework/premium/features/content-blocks/hooks-manager.php:718
 
3632
  msgid "Cart totals after order total"
3633
  msgstr ""
3634
 
3635
+ #: framework/premium/features/content-blocks/hooks-manager.php:722
 
3636
  msgid "Proceed to checkout"
3637
  msgstr ""
3638
 
3639
+ #: framework/premium/features/content-blocks/hooks-manager.php:726
 
3640
  msgid "After cart totals"
3641
  msgstr ""
3642
 
3643
+ #: framework/premium/features/content-blocks/hooks-manager.php:730
 
3644
  msgid "After cart"
3645
  msgstr ""
3646
 
3647
+ #: framework/premium/features/content-blocks/hooks-manager.php:735
 
3648
  msgid "Before Mini Cart"
3649
  msgstr ""
3650
 
3651
+ #: framework/premium/features/content-blocks/hooks-manager.php:740
 
3652
  msgid "Before Mini Cart Contents"
3653
  msgstr ""
3654
 
3655
+ #: framework/premium/features/content-blocks/hooks-manager.php:745
 
3656
  msgid "Mini Cart Contents"
3657
  msgstr ""
3658
 
3659
+ #: framework/premium/features/content-blocks/hooks-manager.php:750
 
3660
  msgid "Widget Shopping Cart Before Buttons"
3661
  msgstr ""
3662
 
3663
+ #: framework/premium/features/content-blocks/hooks-manager.php:755
 
3664
  msgid "Widget Shopping Cart After Buttons"
3665
  msgstr ""
3666
 
3667
+ #: framework/premium/features/content-blocks/hooks-manager.php:760
 
3668
  msgid "After Mini Cart"
3669
  msgstr ""
3670
 
3671
+ #: framework/premium/features/content-blocks/hooks-manager.php:762
 
3672
  msgid "WooCommerce Cart"
3673
  msgstr ""
3674
 
3675
+ #: framework/premium/features/content-blocks/hooks-manager.php:768
 
3676
  msgid "Before checkout form"
3677
  msgstr ""
3678
 
3679
+ #: framework/premium/features/content-blocks/hooks-manager.php:772
 
3680
  msgid "Before customer details"
3681
  msgstr ""
3682
 
3683
+ #: framework/premium/features/content-blocks/hooks-manager.php:776
 
3684
  msgid "After customer details"
3685
  msgstr ""
3686
 
3687
+ #: framework/premium/features/content-blocks/hooks-manager.php:780
 
3688
  msgid "Checkout billing"
3689
  msgstr ""
3690
 
3691
+ #: framework/premium/features/content-blocks/hooks-manager.php:784
 
3692
  msgid "Before checkout billing form"
3693
  msgstr ""
3694
 
3695
+ #: framework/premium/features/content-blocks/hooks-manager.php:788
 
3696
  msgid "After checkout billing form"
3697
  msgstr ""
3698
 
3699
+ #: framework/premium/features/content-blocks/hooks-manager.php:792
 
3700
  msgid "Before order notes"
3701
  msgstr ""
3702
 
3703
+ #: framework/premium/features/content-blocks/hooks-manager.php:796
 
3704
  msgid "After order notes"
3705
  msgstr ""
3706
 
3707
+ #: framework/premium/features/content-blocks/hooks-manager.php:800
 
3708
  msgid "Checkout shipping"
3709
  msgstr ""
3710
 
3711
+ #: framework/premium/features/content-blocks/hooks-manager.php:804
 
3712
  msgid "Checkout before order review"
3713
  msgstr ""
3714
 
3715
+ #: framework/premium/features/content-blocks/hooks-manager.php:808
 
3716
  msgid "Checkout order review"
3717
  msgstr ""
3718
 
3719
+ #: framework/premium/features/content-blocks/hooks-manager.php:812
 
3720
  msgid "Review order before cart contents"
3721
  msgstr ""
3722
 
3723
+ #: framework/premium/features/content-blocks/hooks-manager.php:816
 
3724
  msgid "Review order after cart contents"
3725
  msgstr ""
3726
 
3727
+ #: framework/premium/features/content-blocks/hooks-manager.php:820
 
3728
  msgid "Review order before order total"
3729
  msgstr ""
3730
 
3731
+ #: framework/premium/features/content-blocks/hooks-manager.php:824
 
3732
  msgid "Review order after order total"
3733
  msgstr ""
3734
 
3735
+ #: framework/premium/features/content-blocks/hooks-manager.php:828
 
3736
  msgid "Review order before payment"
3737
  msgstr ""
3738
 
3739
+ #: framework/premium/features/content-blocks/hooks-manager.php:832
 
3740
  msgid "Review order before submit"
3741
  msgstr ""
3742
 
3743
+ #: framework/premium/features/content-blocks/hooks-manager.php:836
 
3744
  msgid "Review order after submit"
3745
  msgstr ""
3746
 
3747
+ #: framework/premium/features/content-blocks/hooks-manager.php:840
 
3748
  msgid "Review order after payment"
3749
  msgstr ""
3750
 
3751
+ #: framework/premium/features/content-blocks/hooks-manager.php:844
 
3752
  msgid "Checkout after order review"
3753
  msgstr ""
3754
 
3755
+ #: framework/premium/features/content-blocks/hooks-manager.php:848
 
3756
  msgid "After checkout form"
3757
  msgstr ""
3758
 
3759
+ #: framework/premium/features/content-blocks/hooks-manager.php:851
 
3760
  msgid "WooCommerce Checkout"
3761
  msgstr ""
3762
 
3763
+ #: framework/premium/features/content-blocks/hooks-manager.php:857
 
3764
  msgid "Before my account"
3765
  msgstr ""
3766
 
3767
+ #: framework/premium/features/content-blocks/hooks-manager.php:861
 
3768
  msgid "Before account navigation"
3769
  msgstr ""
3770
 
3771
+ #: framework/premium/features/content-blocks/hooks-manager.php:865
 
3772
  msgid "Account navigation"
3773
  msgstr ""
3774
 
3775
+ #: framework/premium/features/content-blocks/hooks-manager.php:869
 
3776
  msgid "After account navigation"
3777
  msgstr ""
3778
 
3779
+ #: framework/premium/features/content-blocks/hooks-manager.php:873
 
3780
  msgid "Account content"
3781
  msgstr ""
3782
 
3783
+ #: framework/premium/features/content-blocks/hooks-manager.php:877
 
3784
  msgid "Account dashboard"
3785
  msgstr ""
3786
 
3787
+ #: framework/premium/features/content-blocks/hooks-manager.php:881
 
3788
  msgid "After my account"
3789
  msgstr ""
3790
 
3791
  #: framework/premium/features/content-blocks/hooks-manager.php:883,
3792
  #: framework/features/header/items/account/options.php:17,
3793
+ #: framework/features/header/items/account/options.php:18
 
 
 
3794
  msgid "WooCommerce Account"
3795
  msgstr ""
3796
 
3797
+ #: framework/premium/features/content-blocks/hooks-manager.php:889
 
3798
  msgid "WP footer"
3799
  msgstr ""
3800
 
3801
+ #: framework/premium/features/content-blocks/hooks-manager.php:897
 
3802
  msgid "Footer before"
3803
  msgstr ""
3804
 
3805
+ #: framework/premium/features/content-blocks/hooks-manager.php:905
 
3806
  msgid "Footer after"
3807
  msgstr ""
3808
 
3809
+ #: framework/premium/features/content-blocks/hooks-manager.php:920
 
3810
  msgid "Custom Hook (%s)"
3811
  msgstr ""
3812
 
3813
  #: framework/premium/features/content-blocks/hooks-manager.php:926,
3814
+ #: framework/premium/features/content-blocks/options/hook.php:197
 
 
3815
  #: framework/premium/static/js/options/MultipleLocationsSelect.js:90
3816
  msgid "After Block Number"
3817
  msgstr ""
3818
 
3819
  #: framework/premium/features/content-blocks/hooks-manager.php:932,
3820
+ #: framework/premium/features/content-blocks/options/hook.php:214
 
 
3821
  #: framework/premium/static/js/options/MultipleLocationsSelect.js:112
3822
  msgid "Before Heading Number"
3823
  msgstr ""
3824
 
3825
+ #: framework/extensions/widgets/widgets/ct-about-me/widget.php:13
 
3826
  msgid "About Me"
3827
  msgstr ""
3828
 
3829
+ #: framework/extensions/widgets/widgets/ct-about-me/widget.php:14
 
3830
  msgid "About me"
3831
  msgstr ""
3832
 
3833
  #: framework/extensions/widgets/widgets/ct-advertisement/options.php:18,
3834
  #: framework/extensions/widgets/widgets/ct-advertisement/view.php:12,
3835
  #: framework/extensions/widgets/widgets/ct-advertisement/widget.php:13,
3836
+ #: framework/extensions/widgets/widgets/ct-advertisement/widget.php:14
 
 
 
 
3837
  msgid "Advertisement"
3838
  msgstr ""
3839
 
3840
+ #: framework/extensions/widgets/widgets/ct-advertisement/options.php:31
 
3841
  msgid "Code"
3842
  msgstr ""
3843
 
3844
+ #: framework/extensions/widgets/widgets/ct-advertisement/options.php:32
 
3845
  msgid "Image"
3846
  msgstr ""
3847
 
3848
+ #: framework/extensions/widgets/widgets/ct-advertisement/options.php:42
 
3849
  msgid "Ad Code"
3850
  msgstr ""
3851
 
3852
+ #: framework/extensions/widgets/widgets/ct-advertisement/options.php:58
 
3853
  msgid "Upload Image"
3854
  msgstr ""
3855
 
3856
  #: framework/extensions/widgets/widgets/ct-advertisement/options.php:62,
3857
+ #: framework/extensions/widgets/widgets/ct-quote/options.php:66
 
 
3858
  msgid "Select Image"
3859
  msgstr ""
3860
 
3861
  #: framework/extensions/widgets/widgets/ct-advertisement/options.php:63,
3862
+ #: framework/extensions/widgets/widgets/ct-quote/options.php:67
 
 
3863
  msgid "Change Image"
3864
  msgstr ""
3865
 
3866
  #: framework/extensions/widgets/widgets/ct-advertisement/options.php:67,
3867
+ #: framework/extensions/widgets/widgets/ct-posts/options.php:126
 
 
3868
  msgid "Image Ratio"
3869
  msgstr ""
3870
 
3871
+ #: framework/extensions/widgets/widgets/ct-advertisement/options.php:75
 
3872
  msgid "Ad URL"
3873
  msgstr ""
3874
 
3875
  #: framework/extensions/widgets/widgets/ct-contact-info/options.php:19,
3876
  #: framework/extensions/widgets/widgets/ct-contact-info/view.php:12,
3877
+ #: framework/extensions/widgets/widgets/ct-contact-info/widget.php:13
 
 
 
3878
  msgid "Contact Info"
3879
  msgstr ""
3880
 
3883
  #: framework/extensions/widgets/widgets/ct-contact-info/view.php:24,
3884
  #: framework/premium/features/premium-header/items/contacts/options.php:17,
3885
  #: framework/premium/features/premium-header/items/contacts/options.php:46,
3886
+ #: framework/premium/features/premium-header/items/contacts/view.php:22
 
 
 
 
 
 
3887
  msgid "Address:"
3888
  msgstr ""
3889
 
3892
  #: framework/extensions/widgets/widgets/ct-contact-info/view.php:31,
3893
  #: framework/premium/features/premium-header/items/contacts/options.php:24,
3894
  #: framework/premium/features/premium-header/items/contacts/options.php:82,
3895
+ #: framework/premium/features/premium-header/items/contacts/view.php:29
 
 
 
 
 
 
3896
  msgid "Phone:"
3897
  msgstr ""
3898
 
3901
  #: framework/extensions/widgets/widgets/ct-contact-info/view.php:39,
3902
  #: framework/premium/features/premium-header/items/contacts/options.php:32,
3903
  #: framework/premium/features/premium-header/items/contacts/options.php:118,
3904
+ #: framework/premium/features/premium-header/items/contacts/view.php:37
 
 
 
 
 
 
3905
  msgid "Mobile:"
3906
  msgstr ""
3907
 
3908
  #: framework/extensions/widgets/widgets/ct-contact-info/options.php:68,
3909
+ #: framework/premium/features/premium-header/items/contacts/options.php:41
 
 
3910
  msgid "Address"
3911
  msgstr ""
3912
 
3923
  #: framework/premium/features/premium-header/items/contacts/options.php:167,
3924
  #: framework/premium/features/premium-header/items/contacts/options.php:203,
3925
  #: framework/premium/features/premium-header/items/contacts/options.php:239,
3926
+ #: framework/premium/features/premium-header/items/contacts/options.php:275
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3927
  msgid "Link (optional)"
3928
  msgstr ""
3929
 
3930
  #: framework/extensions/widgets/widgets/ct-contact-info/options.php:248,
3931
+ #: framework/premium/features/premium-header/items/contacts/options.php:149
 
 
3932
  msgid "Work Hours"
3933
  msgstr ""
3934
 
3935
  #: framework/extensions/widgets/widgets/ct-contact-info/options.php:255,
3936
+ #: framework/premium/features/premium-header/items/contacts/options.php:154
 
 
3937
  msgid "Opening hours"
3938
  msgstr ""
3939
 
3940
  #: framework/extensions/widgets/widgets/ct-contact-info/options.php:308,
3941
+ #: framework/premium/features/premium-header/items/contacts/options.php:185
 
 
3942
  msgid "Fax"
3943
  msgstr ""
3944
 
3945
  #: framework/extensions/widgets/widgets/ct-contact-info/options.php:315,
3946
+ #: framework/premium/features/premium-header/items/contacts/options.php:190
 
 
3947
  msgid "Fax:"
3948
  msgstr ""
3949
 
3950
  #: framework/extensions/widgets/widgets/ct-contact-info/options.php:375,
3951
+ #: framework/premium/features/premium-header/items/contacts/options.php:226
 
 
3952
  msgid "Email:"
3953
  msgstr ""
3954
 
3955
  #: framework/extensions/widgets/widgets/ct-contact-info/options.php:428,
3956
+ #: framework/premium/features/premium-header/items/contacts/options.php:257
 
 
3957
  msgid "Website"
3958
  msgstr ""
3959
 
3960
  #: framework/extensions/widgets/widgets/ct-contact-info/options.php:435,
3961
+ #: framework/premium/features/premium-header/items/contacts/options.php:262
 
 
3962
  msgid "Website:"
3963
  msgstr ""
3964
 
3965
  #: framework/extensions/widgets/widgets/ct-contact-info/options.php:496,
3966
  #: framework/extensions/widgets/widgets/ct-socials/options.php:99,
3967
+ #: framework/premium/features/content-blocks/options/archive.php:46
 
 
 
3968
  msgid "Small"
3969
  msgstr ""
3970
 
3971
  #: framework/extensions/widgets/widgets/ct-contact-info/options.php:498,
3972
+ #: framework/extensions/widgets/widgets/ct-socials/options.php:101
 
 
3973
  msgid "Large"
3974
  msgstr ""
3975
 
3976
  #: framework/extensions/widgets/widgets/ct-contact-info/options.php:503,
3977
  #: framework/extensions/widgets/widgets/ct-socials/options.php:106,
3978
+ #: framework/premium/features/premium-header/items/contacts/options.php:331
 
 
 
3979
  msgid "Icons Shape Type"
3980
  msgstr ""
3981
 
3982
  #: framework/extensions/widgets/widgets/ct-contact-info/options.php:511,
3983
  #: framework/extensions/widgets/widgets/ct-socials/options.php:114,
3984
+ #: framework/premium/features/premium-header/items/contacts/options.php:339
 
 
 
3985
  msgid "Rounded"
3986
  msgstr ""
3987
 
3988
  #: framework/extensions/widgets/widgets/ct-contact-info/options.php:512,
3989
  #: framework/extensions/widgets/widgets/ct-socials/options.php:115,
3990
+ #: framework/premium/features/premium-header/items/contacts/options.php:340
 
 
 
3991
  msgid "Square"
3992
  msgstr ""
3993
 
3994
  #: framework/extensions/widgets/widgets/ct-contact-info/options.php:522,
3995
  #: framework/extensions/widgets/widgets/ct-socials/options.php:125,
3996
+ #: framework/premium/features/premium-header/items/contacts/options.php:351
 
 
 
3997
  msgid "Shape Fill Type"
3998
  msgstr ""
3999
 
4000
  #: framework/extensions/widgets/widgets/ct-contact-info/options.php:529,
4001
  #: framework/extensions/widgets/widgets/ct-socials/options.php:132,
4002
+ #: framework/premium/features/premium-header/items/contacts/options.php:358
 
 
 
4003
  msgid "Solid"
4004
  msgstr ""
4005
 
4006
  #: framework/extensions/widgets/widgets/ct-contact-info/options.php:530,
4007
  #: framework/extensions/widgets/widgets/ct-socials/options.php:133,
4008
+ #: framework/premium/features/premium-header/items/contacts/options.php:359
 
 
 
4009
  msgid "Outline"
4010
  msgstr ""
4011
 
4012
+ #: framework/extensions/widgets/widgets/ct-contact-info/widget.php:14
 
4013
  msgid "Contact info"
4014
  msgstr ""
4015
 
4016
+ #: framework/extensions/widgets/widgets/ct-facebook/options.php:22
 
4017
  msgid "Page URL"
4018
  msgstr ""
4019
 
4020
+ #: framework/extensions/widgets/widgets/ct-facebook/options.php:30
 
4021
  msgid "Profile Photos"
4022
  msgstr ""
4023
 
4024
+ #: framework/extensions/widgets/widgets/ct-facebook/options.php:37
 
4025
  msgid "Timeline"
4026
  msgstr ""
4027
 
4028
+ #: framework/extensions/widgets/widgets/ct-facebook/options.php:44
 
4029
  msgid "Cover Photo"
4030
  msgstr ""
4031
 
4032
+ #: framework/extensions/widgets/widgets/ct-facebook/options.php:51
 
4033
  msgid "Small Header"
4034
  msgstr ""
4035
 
4036
+ #: framework/extensions/widgets/widgets/ct-facebook/widget.php:14
 
4037
  msgid "Facebook like box"
4038
  msgstr ""
4039
 
4040
+ #: framework/extensions/widgets/widgets/ct-posts/options.php:103
 
4041
  msgid "Widget Design"
4042
  msgstr ""
4043
 
4044
+ #: framework/extensions/widgets/widgets/ct-posts/options.php:108
 
4045
  msgid "Without Thumbnails"
4046
  msgstr ""
4047
 
4048
+ #: framework/extensions/widgets/widgets/ct-posts/options.php:109
 
4049
  msgid "Small Thumbnails"
4050
  msgstr ""
4051
 
4052
+ #: framework/extensions/widgets/widgets/ct-posts/options.php:110
 
4053
  msgid "Large Thumbnails"
4054
  msgstr ""
4055
 
4056
+ #: framework/extensions/widgets/widgets/ct-posts/options.php:111
 
4057
  msgid "First Thumbnail Large"
4058
  msgstr ""
4059
 
4060
+ #: framework/extensions/widgets/widgets/ct-posts/options.php:112
 
4061
  msgid "Rounded Thumbnails"
4062
  msgstr ""
4063
 
4064
+ #: framework/extensions/widgets/widgets/ct-posts/options.php:113
 
4065
  msgid "Numbered"
4066
  msgstr ""
4067
 
4068
+ #: framework/extensions/widgets/widgets/ct-posts/options.php:193
 
4069
  msgid "Sort by"
4070
  msgstr ""
4071
 
4072
+ #: framework/extensions/widgets/widgets/ct-posts/options.php:199
 
4073
  msgid "Recent"
4074
  msgstr ""
4075
 
4076
+ #: framework/extensions/widgets/widgets/ct-posts/options.php:200
 
4077
  msgid "Most Commented"
4078
  msgstr ""
4079
 
4080
+ #: framework/extensions/widgets/widgets/ct-posts/options.php:201
 
4081
  msgid "Random"
4082
  msgstr ""
4083
 
4084
+ #: framework/extensions/widgets/widgets/ct-posts/options.php:208
 
4085
  msgid "Order by"
4086
  msgstr ""
4087
 
4088
+ #: framework/extensions/widgets/widgets/ct-posts/options.php:214
 
4089
  msgid "1 Week"
4090
  msgstr ""
4091
 
4092
+ #: framework/extensions/widgets/widgets/ct-posts/options.php:215
 
4093
  msgid "1 Month"
4094
  msgstr ""
4095
 
4096
+ #: framework/extensions/widgets/widgets/ct-posts/options.php:216
 
4097
  msgid "3 Months"
4098
  msgstr ""
4099
 
4100
+ #: framework/extensions/widgets/widgets/ct-posts/options.php:217
 
4101
  msgid "6 Months"
4102
  msgstr ""
4103
 
4104
+ #: framework/extensions/widgets/widgets/ct-posts/options.php:218
 
4105
  msgid "1 Year"
4106
  msgstr ""
4107
 
4108
+ #: framework/extensions/widgets/widgets/ct-posts/options.php:225
 
4109
  msgid "Posts Count"
4110
  msgstr ""
4111
 
4112
+ #: framework/extensions/widgets/widgets/ct-posts/options.php:265
 
4113
  msgid "Pages ID"
4114
  msgstr ""
4115
 
4116
+ #: framework/extensions/widgets/widgets/ct-posts/options.php:269
 
4117
  msgid "Separate pages ID by comma. More info %shere%s."
4118
  msgstr ""
4119
 
4120
+ #: framework/extensions/widgets/widgets/ct-posts/options.php:287
 
4121
  msgid "Pages Count"
4122
  msgstr ""
4123
 
4124
+ #: framework/extensions/widgets/widgets/ct-posts/options.php:298
 
4125
  msgid "Show Date"
4126
  msgstr ""
4127
 
4128
+ #: framework/extensions/widgets/widgets/ct-posts/options.php:305
 
4129
  msgid "Show Comments"
4130
  msgstr ""
4131
 
4132
+ #: framework/extensions/widgets/widgets/ct-posts/options.php:312
 
4133
  msgid "Show Excerpt"
4134
  msgstr ""
4135
 
4136
+ #: framework/extensions/widgets/widgets/ct-posts/options.php:324
 
4137
  msgid "Excerpt Lenght"
4138
  msgstr ""
4139
 
4140
+ #: framework/extensions/widgets/widgets/ct-posts/view.php:220
 
4141
  msgid "1 Comment"
4142
  msgstr ""
4143
 
4144
+ #: framework/extensions/widgets/widgets/ct-posts/view.php:220
 
4145
  msgid "% Comments"
4146
  msgstr ""
4147
 
4148
  #: framework/extensions/widgets/widgets/ct-quote/options.php:18,
4149
  #: framework/extensions/widgets/widgets/ct-quote/view.php:12,
4150
  #: framework/extensions/widgets/widgets/ct-quote/widget.php:13,
4151
+ #: framework/extensions/widgets/widgets/ct-quote/widget.php:14
 
 
 
 
4152
  msgid "Quote"
4153
  msgstr ""
4154
 
4155
+ #: framework/extensions/widgets/widgets/ct-quote/options.php:46
 
4156
  msgid "Author Name"
4157
  msgstr ""
4158
 
4159
  #: framework/extensions/widgets/widgets/ct-quote/options.php:49,
4160
+ #: framework/extensions/widgets/widgets/ct-quote/view.php:18
 
 
4161
  msgid "John Doe"
4162
  msgstr ""
4163
 
4164
+ #: framework/extensions/widgets/widgets/ct-quote/options.php:55
 
4165
  msgid "Author Label"
4166
  msgstr ""
4167
 
4168
+ #: framework/extensions/widgets/widgets/ct-quote/options.php:62
 
4169
  msgid "Author Avatar"
4170
  msgstr ""
4171
 
4172
  #. translators: %s here is the author name
4173
+ #: framework/extensions/widgets/widgets/ct-quote/view.php:58
 
4174
  msgid "By %s"
4175
  msgstr ""
4176
 
4177
  #: framework/extensions/widgets/widgets/ct-socials/options.php:18,
4178
+ #: framework/extensions/widgets/widgets/ct-socials/view.php:11
 
 
4179
  msgid "Social Icons"
4180
  msgstr ""
4181
 
4182
  #. translators: placeholder here means the actual URL.
4183
+ #: framework/extensions/widgets/widgets/ct-socials/options.php:28
 
4184
  msgid ""
4185
  "Configure the social links in Customizer ➝ General ➝ %sSocial Network "
4186
  "Accounts%s."
4187
  msgstr ""
4188
 
4189
+ #: framework/extensions/widgets/widgets/ct-socials/options.php:65
 
4190
  msgid "Open links in new tab"
4191
  msgstr ""
4192
 
4193
+ #: framework/extensions/widgets/widgets/ct-socials/options.php:73
 
4194
  msgid "Set links to nofollow"
4195
  msgstr ""
4196
 
4197
+ #: framework/features/header/items/account/options.php:4
 
4198
  msgid "Profile Page"
4199
  msgstr ""
4200
 
4201
+ #: framework/features/header/items/account/options.php:5
 
4202
  msgid "Dashboard Page"
4203
  msgstr ""
4204
 
4205
  #: framework/features/header/items/account/options.php:7,
4206
+ #: framework/features/header/items/account/options.php:13
 
 
4207
  msgid "Custom Link"
4208
  msgstr ""
4209
 
4210
+ #: framework/features/header/items/account/options.php:8
 
4211
  msgid "Logout"
4212
  msgstr ""
4213
 
4214
+ #: framework/features/header/items/account/options.php:12
 
4215
  msgid "Modal"
4216
  msgstr ""
4217
 
4218
+ #: framework/features/header/items/account/options.php:30
 
4219
  msgid "Customizing: Logged in State"
4220
  msgstr ""
4221
 
4222
+ #: framework/features/header/items/account/options.php:41
 
4223
  msgid "Customizing: Logged out State"
4224
  msgstr ""
4225
 
4226
+ #: framework/features/header/items/account/options.php:55
 
4227
  msgid "Logged In Options"
4228
  msgstr ""
4229
 
4230
+ #: framework/features/header/items/account/options.php:60
 
4231
  msgid "Logged Out Options"
4232
  msgstr ""
4233
 
4234
+ #: framework/features/header/items/account/options.php:80,
4235
+ #: framework/features/header/items/account/options.php:370
 
 
4236
  msgid "Account Action"
4237
  msgstr ""
4238
 
4239
+ #: framework/features/header/items/account/options.php:93
 
4240
  msgid "Select Menu"
4241
  msgstr ""
4242
 
4243
+ #: framework/features/header/items/account/options.php:99
 
4244
  msgid "Select menu..."
4245
  msgstr ""
4246
 
4247
  #. translators: placeholder here means the actual URL.
4248
+ #: framework/features/header/items/account/options.php:103
 
4249
  msgid "Manage your menu items in the %sMenus screen%s."
4250
  msgstr ""
4251
 
4252
+ #: framework/features/header/items/account/options.php:120,
4253
+ #: framework/features/header/items/account/options.php:385
 
 
4254
  msgid "Custom Page Link"
4255
  msgstr ""
4256
 
4257
+ #: framework/features/header/items/account/options.php:135,
4258
+ #: framework/features/header/items/account/options.php:401
 
 
4259
  msgid "Account Image"
4260
  msgstr ""
4261
 
4262
+ #: framework/features/header/items/account/options.php:141
 
4263
  msgid "Avatar"
4264
  msgstr ""
4265
 
4266
+ #: framework/features/header/items/account/options.php:154
 
4267
  msgid "Avatar Size"
4268
  msgstr ""
4269
 
4270
+ #: framework/features/header/items/account/options.php:245,
4271
+ #: framework/features/header/items/account/options.php:486,
4272
+ #: framework/features/header/items/account/options.php:544
 
4273
  msgid "Type 5"
4274
  msgstr ""
4275
 
4276
+ #: framework/features/header/items/account/options.php:250,
4277
+ #: framework/features/header/items/account/options.php:491,
4278
+ #: framework/features/header/items/account/options.php:549
 
4279
  msgid "Type 6"
4280
  msgstr ""
4281
 
4282
+ #: framework/features/header/items/account/options.php:328
 
4283
  msgid "Label Type"
4284
  msgstr ""
4285
 
4286
+ #: framework/features/header/items/account/options.php:337
4287
+ #: static/js/screens/SiteExport.js:87
 
4288
  msgid "Name"
4289
  msgstr ""
4290
 
4291
+ #: framework/features/header/items/account/options.php:347,
4292
+ #: framework/features/header/items/account/options.php:625,
4293
+ #: framework/premium/extensions/woocommerce-extra/header-items/wish-list/options.php:137
 
 
 
4294
  msgid "Label Text"
4295
  msgstr ""
4296
 
4297
+ #: framework/features/header/items/account/options.php:352,
4298
+ #: framework/features/header/items/account/views/login.php:85
 
 
4299
  msgid "My Account"
4300
  msgstr ""
4301
 
4302
+ #: framework/features/header/items/account/options.php:641
 
4303
  msgid "User Visibility"
4304
  msgstr ""
4305
 
4306
+ #: framework/features/header/items/account/options.php:652
 
4307
  msgid "Logged In"
4308
  msgstr ""
4309
 
4310
+ #: framework/features/header/items/account/options.php:653
 
4311
  msgid "Logged Out"
4312
  msgstr ""
4313
 
4314
+ #: framework/features/header/items/account/options.php:670,
4315
+ #: framework/premium/extensions/woocommerce-extra/header-items/wish-list/options.php:167
 
 
4316
  msgid "Label Font"
4317
  msgstr ""
4318
 
4319
+ #: framework/features/header/items/account/options.php:681,
 
 
4320
  #: framework/features/header/items/account/options.php:710,
4321
+ #: framework/features/header/items/account/options.php:742,
4322
+ #: framework/features/header/items/account/options.php:772
 
 
4323
  msgid "Label Color"
4324
  msgstr ""
4325
 
4326
+ #: framework/features/header/items/account/options.php:686,
4327
+ #: framework/features/header/items/account/options.php:832,
4328
  #: framework/premium/extensions/woocommerce-extra/header-items/wish-list/options.php:183,
4329
  #: framework/premium/extensions/woocommerce-extra/header-items/wish-list/options.php:310,
4330
  #: framework/premium/features/premium-header/items/contacts/options.php:425,
4335
  #: framework/premium/features/premium-header/items/search-input/options.php:199,
4336
  #: framework/premium/features/premium-header/items/search-input/options.php:329,
4337
  #: framework/premium/features/premium-header/items/search-input/options.php:459,
4338
+ #: framework/premium/features/premium-header/items/search-input/options.php:595
 
 
 
 
 
 
 
 
 
 
 
 
 
4339
  msgid "Default State"
4340
  msgstr ""
4341
 
4342
+ #: framework/features/header/items/account/options.php:691,
4343
+ #: framework/features/header/items/account/options.php:837,
4344
  #: framework/premium/extensions/woocommerce-extra/header-items/wish-list/options.php:188,
4345
  #: framework/premium/extensions/woocommerce-extra/header-items/wish-list/options.php:315,
4346
  #: framework/premium/features/premium-header/items/contacts/options.php:430,
4351
  #: framework/premium/features/premium-header/items/search-input/options.php:204,
4352
  #: framework/premium/features/premium-header/items/search-input/options.php:334,
4353
  #: framework/premium/features/premium-header/items/search-input/options.php:464,
4354
+ #: framework/premium/features/premium-header/items/search-input/options.php:600
 
 
 
 
 
 
 
 
 
 
 
 
 
4355
  msgid "Transparent State"
4356
  msgstr ""
4357
 
4358
+ #: framework/features/header/items/account/options.php:700,
4359
+ #: framework/features/header/items/account/options.php:846,
4360
  #: framework/premium/extensions/woocommerce-extra/header-items/wish-list/options.php:197,
4361
  #: framework/premium/extensions/woocommerce-extra/header-items/wish-list/options.php:324,
4362
  #: framework/premium/features/premium-header/items/contacts/options.php:439,
4367
  #: framework/premium/features/premium-header/items/search-input/options.php:213,
4368
  #: framework/premium/features/premium-header/items/search-input/options.php:343,
4369
  #: framework/premium/features/premium-header/items/search-input/options.php:473,
4370
+ #: framework/premium/features/premium-header/items/search-input/options.php:609
 
 
 
 
 
 
 
 
 
 
 
 
 
4371
  msgid "Sticky State"
4372
  msgstr ""
4373
 
4374
+ #: framework/features/header/items/account/options.php:952
 
4375
  msgid "Item Margin"
4376
  msgstr ""
4377
 
4378
+ #: framework/features/header/items/account/options.php:971
 
4379
  msgid "Modal Options"
4380
  msgstr ""
4381
 
4382
+ #: framework/features/header/items/account/options.php:1106
 
4383
  msgid "Modal Background"
4384
  msgstr ""
4385
 
4386
+ #: framework/features/header/items/account/options.php:1121
 
4387
  msgid "Modal Backdrop"
4388
  msgstr ""
4389
 
4390
+ #: framework/features/header/items/account/options.php:1136
 
4391
  msgid "Modal Shadow"
4392
  msgstr ""
4393
 
4394
+ #: framework/features/header/items/account/options.php:1301,
4395
+ #: framework/premium/features/premium-header/items/search-input/options.php:167
 
 
4396
  msgid "Element Visibility"
4397
  msgstr ""
4398
 
4399
+ #: framework/premium/extensions/post-types-extra/includes/dynamic-data.php:409
 
4400
  msgid "You have no %s fields declared for this custom post type."
4401
  msgstr ""
4402
 
4403
  #: framework/premium/extensions/post-types-extra/includes/dynamic-data.php:421,
4404
  #: framework/premium/extensions/post-types-extra/includes/dynamic-data.php:896,
4405
+ #: framework/premium/extensions/post-types-extra/includes/dynamic-data.php:907
 
 
 
4406
  msgid "Field"
4407
  msgstr ""
4408
 
4409
  #: framework/premium/extensions/post-types-extra/includes/dynamic-data.php:433,
4410
+ #: framework/premium/features/premium-header/items/language-switcher/options.php:60
 
 
4411
  msgid "Label"
4412
  msgstr ""
4413
 
4414
+ #: framework/premium/extensions/post-types-extra/includes/dynamic-data.php:482
 
4415
  msgid "Fallback"
4416
  msgstr ""
4417
 
4418
+ #: framework/premium/extensions/post-types-extra/includes/dynamic-data.php:494
 
4419
  msgid "%s Field"
4420
  msgstr ""
4421
 
4422
+ #: framework/premium/extensions/post-types-extra/includes/dynamic-data.php:880
 
4423
  msgid "Custom Field"
4424
  msgstr ""
4425
 
4426
+ #: framework/premium/extensions/post-types-extra/includes/dynamic-data.php:894
 
4427
  msgid "%s %s Font"
4428
  msgstr ""
4429
 
4430
+ #: framework/premium/extensions/post-types-extra/includes/dynamic-data.php:905
 
4431
  msgid "%s %s Color"
4432
  msgstr ""
4433
 
4434
  #: framework/premium/extensions/post-types-extra/includes/estimated-read-time.php:9,
4435
+ #: framework/premium/extensions/post-types-extra/includes/estimated-read-time.php:66
 
 
4436
  msgid "Read Time"
4437
  msgstr ""
4438
 
4439
+ #: framework/premium/extensions/post-types-extra/includes/estimated-read-time.php:123
 
4440
  msgid "%s min"
4441
  msgid_plural "%s mins"
4442
  msgstr[0] ""
4443
  msgstr[1] ""
4444
 
4445
+ #: framework/premium/extensions/post-types-extra/includes/filtering.php:286
 
4446
  msgid "All"
4447
  msgstr ""
4448
 
4449
+ #: framework/premium/extensions/post-types-extra/includes/taxonomies-options.php:161
 
4450
  msgid "Featured Image"
4451
  msgstr ""
4452
 
4453
+ #: framework/premium/extensions/post-types-extra/includes/taxonomies-options.php:166
 
4454
  msgid "Accent Color"
4455
  msgstr ""
4456
 
4457
  #: framework/premium/extensions/shortcuts/views/bar.php:49,
4458
+ #: framework/premium/extensions/woocommerce-extra/includes/wish-list.php:143
 
 
4459
  msgid "Wish List"
4460
  msgstr ""
4461
 
4462
+ #: framework/premium/extensions/woocommerce-extra/includes/wish-list-helpers.php:38
 
4463
  msgid "Wishlist icon"
4464
  msgstr ""
4465
 
4466
  #: framework/premium/extensions/woocommerce-extra/includes/wish-list-helpers.php:46,
4467
+ #: framework/premium/extensions/woocommerce-extra/includes/wish-list-helpers.php:54
 
 
4468
  msgid "Add to wishlist"
4469
  msgstr ""
4470
 
4471
+ #: framework/premium/extensions/woocommerce-extra/includes/wish-list-options.php:9
 
4472
  msgid "Select a page"
4473
  msgstr ""
4474
 
4475
+ #: framework/premium/extensions/woocommerce-extra/includes/wish-list-options.php:18
 
4476
  msgid "Products Wishlist"
4477
  msgstr ""
4478
 
4479
+ #: framework/premium/extensions/woocommerce-extra/includes/wish-list-options.php:28
 
4480
  msgid "Show Wishlist Page To"
4481
  msgstr ""
4482
 
4483
+ #: framework/premium/extensions/woocommerce-extra/includes/wish-list-options.php:34
 
4484
  msgid "Logged Users"
4485
  msgstr ""
4486
 
4487
+ #: framework/premium/extensions/woocommerce-extra/includes/wish-list-options.php:35
 
4488
  msgid "All Users"
4489
  msgstr ""
4490
 
4491
+ #: framework/premium/extensions/woocommerce-extra/includes/wish-list-options.php:45
 
4492
  msgid "Wish List Page"
4493
  msgstr ""
4494
 
4495
+ #: framework/premium/extensions/woocommerce-extra/includes/wish-list-options.php:51
 
4496
  msgid ""
4497
  "The page you select here will display the wish list for your logged out "
4498
  "users."
4499
  msgstr ""
4500
 
4501
+ #: framework/premium/extensions/woocommerce-extra/includes/wish-list-options.php:60
 
4502
  msgid "Display Wishlist Button On"
4503
  msgstr ""
4504
 
4505
+ #: framework/premium/extensions/woocommerce-extra/includes/wish-list-options.php:64
 
4506
  msgid "Archive Pages"
4507
  msgstr ""
4508
 
4509
+ #: framework/premium/extensions/woocommerce-extra/includes/wish-list-options.php:73
 
4510
  msgid "Single Product Pages"
4511
  msgstr ""
4512
 
4513
+ #: framework/premium/extensions/woocommerce-extra/includes/wish-list-options.php:82
 
4514
  msgid "Quick View Modal"
4515
  msgstr ""
4516
 
4517
+ #: framework/premium/extensions/woocommerce-extra/includes/wish-list-options.php:95
 
4518
  msgid "AJAX Add To Cart"
4519
  msgstr ""
4520
 
4521
+ #: framework/premium/extensions/woocommerce-extra/includes/wish-list-options.php:101
 
4522
  msgid "Enable AJAX loading"
4523
  msgstr ""
4524
 
4525
+ #: framework/premium/extensions/woocommerce-extra/includes/wish-list-options.php:137
 
4526
  msgid "Archive Button"
4527
  msgstr ""
4528
 
4534
  #: framework/premium/extensions/post-types-extra/includes/filtering/customizer.php:243,
4535
  #: framework/premium/features/premium-header/items/language-switcher/options.php:254,
4536
  #: framework/premium/features/premium-header/items/language-switcher/options.php:284,
4537
+ #: framework/premium/features/premium-header/items/language-switcher/options.php:313
 
 
 
 
 
 
 
 
 
4538
  msgid "Hover/Active"
4539
  msgstr ""
4540
 
4541
+ #: framework/premium/extensions/woocommerce-extra/includes/wish-list-options.php:214
 
4542
  msgid "Single Product Button"
4543
  msgstr ""
4544
 
4545
+ #: framework/premium/extensions/woocommerce-extra/includes/wish-list-options.php:290
 
4546
  msgid "Quick View Modal Button"
4547
  msgstr ""
4548
 
4549
+ #: framework/premium/extensions/woocommerce-extra/includes/wish-list-table.php:192
 
4550
  msgid "You don't have any products in your wish list yet."
4551
  msgstr ""
4552
 
4553
+ #: framework/premium/extensions/woocommerce-extra/includes/wish-list-table.php:35
 
4554
  msgid "Add to cart"
4555
  msgstr ""
4556
 
4557
  #: framework/premium/extensions/woocommerce-extra/includes/wish-list-table.php:128,
4558
+ #: framework/premium/extensions/woocommerce-extra/includes/wish-list-table.php:152
 
 
4559
  msgid "Remove Product"
4560
  msgstr ""
4561
 
4562
+ #: framework/premium/extensions/woocommerce-extra/includes/woo-import-export.php:34
 
4563
  msgid "Blocksy Variation Images"
4564
  msgstr ""
4565
 
4566
  #: framework/premium/features/content-blocks/options/404.php:33,
4567
  #: framework/premium/features/content-blocks/options/header.php:35,
4568
  #: framework/premium/features/content-blocks/options/hook.php:40,
4569
+ #: framework/premium/features/content-blocks/options/popup.php:42
 
 
 
 
4570
  msgid "Container Structure"
4571
  msgstr ""
4572
 
4573
  #: framework/premium/features/content-blocks/options/404.php:65,
4574
  #: framework/premium/features/content-blocks/options/header.php:63,
4575
+ #: framework/premium/features/content-blocks/options/hook.php:68
 
 
 
4576
  msgid "Narrow Width"
4577
  msgstr ""
4578
 
4579
  #: framework/premium/features/content-blocks/options/404.php:70,
4580
  #: framework/premium/features/content-blocks/options/header.php:68,
4581
+ #: framework/premium/features/content-blocks/options/hook.php:73
 
 
 
4582
  msgid "Normal Width"
4583
  msgstr ""
4584
 
4586
  #: framework/premium/features/content-blocks/options/archive.php:126,
4587
  #: framework/premium/features/content-blocks/options/header.php:74,
4588
  #: framework/premium/features/content-blocks/options/hook.php:79,
4589
+ #: framework/premium/features/content-blocks/options/single.php:65
 
 
 
 
 
4590
  msgid "Content Area Style"
4591
  msgstr ""
4592
 
4593
  #: framework/premium/features/content-blocks/options/404.php:90,
4594
  #: framework/premium/features/content-blocks/options/archive.php:140,
4595
  #: framework/premium/features/content-blocks/options/header.php:88,
4596
+ #: framework/premium/features/content-blocks/options/hook.php:93
 
 
 
 
4597
  msgid "Content Area Vertical Spacing"
4598
  msgstr ""
4599
 
4601
  #: framework/premium/features/content-blocks/options/archive.php:151,
4602
  #: framework/premium/features/content-blocks/options/header.php:99,
4603
  #: framework/premium/features/content-blocks/options/hook.php:104,
4604
+ #: framework/premium/features/content-blocks/options/single.php:90
 
 
 
 
 
4605
  msgid "Top & Bottom"
4606
  msgstr ""
4607
 
4609
  #: framework/premium/features/content-blocks/options/archive.php:154,
4610
  #: framework/premium/features/content-blocks/options/header.php:102,
4611
  #: framework/premium/features/content-blocks/options/hook.php:107,
4612
+ #: framework/premium/features/content-blocks/options/single.php:93
 
 
 
 
 
4613
  msgid "Only Top"
4614
  msgstr ""
4615
 
4617
  #: framework/premium/features/content-blocks/options/archive.php:157,
4618
  #: framework/premium/features/content-blocks/options/header.php:105,
4619
  #: framework/premium/features/content-blocks/options/hook.php:110,
4620
+ #: framework/premium/features/content-blocks/options/single.php:96
 
 
 
 
 
4621
  msgid "Only Bottom"
4622
  msgstr ""
4623
 
4624
  #: framework/premium/features/content-blocks/options/archive.php:11,
4625
+ #: framework/premium/features/content-blocks/options/single.php:11
4626
  msgid "Replacement Behavior"
4627
  msgstr ""
4628
 
4629
+ #: framework/premium/features/content-blocks/options/archive.php:17
 
4630
  msgid "Only Card"
4631
  msgstr ""
4632
 
4633
  #: framework/premium/features/content-blocks/options/archive.php:18,
4634
+ #: framework/premium/features/content-blocks/options/single.php:18
4635
  msgid "Full Page"
4636
  msgstr ""
4637
 
4638
  #: framework/premium/features/content-blocks/options/archive.php:28,
4639
+ #: framework/premium/features/content-blocks/options/single.php:126
 
 
4640
  msgid "Dynamic Content Preview"
4641
  msgstr ""
4642
 
4643
+ #: framework/premium/features/content-blocks/options/archive.php:35
 
4644
  msgid ""
4645
  "Select a post/page to preview it's content inside the editor while building "
4646
  "the archive."
4647
  msgstr ""
4648
 
4649
+ #: framework/premium/features/content-blocks/options/archive.php:39
 
4650
  msgid "Editor/Card Width"
4651
  msgstr ""
4652
 
4653
+ #: framework/premium/features/content-blocks/options/archive.php:50
 
4654
  msgid ""
4655
  "Set the editor width for better understanging the layout you are building "
4656
  "(just for preview purpose, this option won't apply in frontend)."
4657
  msgstr ""
4658
 
4659
+ #: framework/premium/features/content-blocks/options/archive.php:71
 
4660
  msgid "Default Card Layout"
4661
  msgstr ""
4662
 
4663
+ #: framework/premium/features/content-blocks/options/archive.php:76
 
4664
  msgid ""
4665
  "Inherit card wrapper settings from Customizer (background color, spacing, "
4666
  "shadow)."
4667
  msgstr ""
4668
 
4669
+ #: framework/premium/features/content-blocks/options/archive.php:91
 
4670
  msgid "Page Structure"
4671
  msgstr ""
4672
 
4673
  #: framework/premium/features/content-blocks/options/archive.php:207,
4674
  #: framework/premium/features/content-blocks/options/hook.php:256,
4675
  #: framework/premium/features/content-blocks/options/popup.php:314,
4676
+ #: framework/premium/features/content-blocks/options/single.php:161
 
 
 
 
4677
  msgid "Expiration Date/Time"
4678
  msgstr ""
4679
 
4680
  #: framework/premium/features/content-blocks/options/hook.php:23,
4681
+ #: framework/premium/features/content-blocks/options/hook.php:181
 
 
4682
  #: framework/premium/static/js/options/MultipleLocationsSelect.js:72
4683
  msgid "Custom Hook"
4684
  msgstr ""
4685
 
4686
+ #: framework/premium/features/content-blocks/options/hook.php:148
 
4687
  msgid "Location & Priority"
4688
  msgstr ""
4689
 
4690
+ #: framework/premium/features/content-blocks/options/hook.php:283
 
4691
  msgid "Block Position"
4692
  msgstr ""
4693
 
4694
+ #: framework/premium/features/content-blocks/options/hook.php:290
 
4695
  msgid "Fixed"
4696
  msgstr ""
4697
 
4698
+ #: framework/premium/features/content-blocks/options/hook.php:300
 
4699
  msgid "Location"
4700
  msgstr ""
4701
 
4702
+ #: framework/premium/features/content-blocks/options/hook.php:313
 
4703
  msgid "Top Offset"
4704
  msgstr ""
4705
 
4706
+ #: framework/premium/features/content-blocks/options/hook.php:317
 
4707
  msgid "Bottom Offset"
4708
  msgstr ""
4709
 
4710
+ #: framework/premium/features/content-blocks/options/popup.php:50
 
4711
  msgid "Popup Position"
4712
  msgstr ""
4713
 
4714
+ #: framework/premium/features/content-blocks/options/popup.php:57
 
4715
  msgid "Popup Size"
4716
  msgstr ""
4717
 
4718
+ #: framework/premium/features/content-blocks/options/popup.php:63
 
4719
  msgid "Small Size"
4720
  msgstr ""
4721
 
4722
+ #: framework/premium/features/content-blocks/options/popup.php:64
 
4723
  msgid "Medium Size"
4724
  msgstr ""
4725
 
4726
+ #: framework/premium/features/content-blocks/options/popup.php:65
 
4727
  msgid "Large Size"
4728
  msgstr ""
4729
 
4730
+ #: framework/premium/features/content-blocks/options/popup.php:66
 
4731
  msgid "Custom Size"
4732
  msgstr ""
4733
 
4734
+ #: framework/premium/features/content-blocks/options/popup.php:76
 
4735
  msgid "Max Width"
4736
  msgstr ""
4737
 
4738
+ #: framework/premium/features/content-blocks/options/popup.php:92
 
4739
  msgid "Max Height"
4740
  msgstr ""
4741
 
4742
+ #: framework/premium/features/content-blocks/options/popup.php:111
 
4743
  msgid "Popup Animation"
4744
  msgstr ""
4745
 
4746
+ #: framework/premium/features/content-blocks/options/popup.php:117
 
4747
  msgid "Fade in fade out"
4748
  msgstr ""
4749
 
4750
+ #: framework/premium/features/content-blocks/options/popup.php:118
 
4751
  msgid "Zoom in zoom out"
4752
  msgstr ""
4753
 
4754
+ #: framework/premium/features/content-blocks/options/popup.php:119
 
4755
  msgid "Slide in from left"
4756
  msgstr ""
4757
 
4758
+ #: framework/premium/features/content-blocks/options/popup.php:120
 
4759
  msgid "Slide in from right"
4760
  msgstr ""
4761
 
4762
+ #: framework/premium/features/content-blocks/options/popup.php:121
 
4763
  msgid "Slide in from top"
4764
  msgstr ""
4765
 
4766
+ #: framework/premium/features/content-blocks/options/popup.php:122
 
4767
  msgid "Slide in from bottom"
4768
  msgstr ""
4769
 
4770
+ #: framework/premium/features/content-blocks/options/popup.php:127
 
4771
  msgid "Animation Speed"
4772
  msgstr ""
4773
 
4774
+ #: framework/premium/features/content-blocks/options/popup.php:144
 
4775
  msgid "Entrance Value"
4776
  msgstr ""
4777
 
4778
+ #: framework/premium/features/content-blocks/options/popup.php:156
 
4779
  msgid "Trigger Condition"
4780
  msgstr ""
4781
 
4782
+ #: framework/premium/features/content-blocks/options/popup.php:181
 
4783
  msgid "Element Class"
4784
  msgstr ""
4785
 
4786
+ #: framework/premium/features/content-blocks/options/popup.php:188
 
4787
  msgid "Separate each class by comma if you have multiple elements."
4788
  msgstr ""
4789
 
4790
+ #: framework/premium/features/content-blocks/options/popup.php:200
 
4791
  msgid "Scroll Direction"
4792
  msgstr ""
4793
 
4794
+ #: framework/premium/features/content-blocks/options/popup.php:205
 
4795
  msgid "Scroll Down"
4796
  msgstr ""
4797
 
4798
+ #: framework/premium/features/content-blocks/options/popup.php:206
 
4799
  msgid "Scroll Up"
4800
  msgstr ""
4801
 
4802
+ #: framework/premium/features/content-blocks/options/popup.php:211
 
4803
  msgid "Scroll Distance"
4804
  msgstr ""
4805
 
4806
+ #: framework/premium/features/content-blocks/options/popup.php:221
 
4807
  msgid "Set the scroll distance till the popup block will appear."
4808
  msgstr ""
4809
 
4810
+ #: framework/premium/features/content-blocks/options/popup.php:233
 
4811
  msgid "Inactivity Time"
4812
  msgstr ""
4813
 
4814
+ #: framework/premium/features/content-blocks/options/popup.php:239
 
4815
  msgid "Set the inactivity time (in seconds) till the popup block will appear."
4816
  msgstr ""
4817
 
4818
+ #: framework/premium/features/content-blocks/options/popup.php:251
 
4819
  msgid "After X Time"
4820
  msgstr ""
4821
 
4822
+ #: framework/premium/features/content-blocks/options/popup.php:257
 
4823
  msgid "Set after how much time (in seconds) the popup block will appear."
4824
  msgstr ""
4825
 
4826
+ #: framework/premium/features/content-blocks/options/popup.php:269
 
4827
  msgid "After X Pages"
4828
  msgstr ""
4829
 
4830
+ #: framework/premium/features/content-blocks/options/popup.php:275
 
4831
  msgid "Set after how many visited pages the popup block will appear."
4832
  msgstr ""
4833
 
4834
+ #: framework/premium/features/content-blocks/options/popup.php:287
 
4835
  msgid "Trigger Popup Only Once"
4836
  msgstr ""
4837
 
4838
+ #: framework/premium/features/content-blocks/options/popup.php:290
 
4839
  msgid ""
4840
  "If the close button is clicked the popup won't be triggered anymore for the "
4841
  "current visitor."
4842
  msgstr ""
4843
 
4844
+ #: framework/premium/features/content-blocks/options/popup.php:366
 
4845
  msgid "Padding"
4846
  msgstr ""
4847
 
4848
  #: framework/premium/features/content-blocks/options/popup.php:376,
4849
  #: framework/premium/extensions/post-types-extra/includes/filtering/customizer.php:266,
4850
+ #: framework/premium/features/premium-header/items/language-switcher/options.php:465
 
 
 
4851
  msgid "Border Radius"
4852
  msgstr ""
4853
 
4854
+ #: framework/premium/features/content-blocks/options/popup.php:405
 
4855
  msgid "Popup Offset"
4856
  msgstr ""
4857
 
4858
+ #: framework/premium/features/content-blocks/options/popup.php:415
 
4859
  msgid "Container Overflow"
4860
  msgstr ""
4861
 
4862
+ #: framework/premium/features/content-blocks/options/popup.php:422
 
4863
  msgid "Hidden"
4864
  msgstr ""
4865
 
4866
+ #: framework/premium/features/content-blocks/options/popup.php:423
 
4867
  msgid "Visible"
4868
  msgstr ""
4869
 
4870
+ #: framework/premium/features/content-blocks/options/popup.php:424
 
4871
  msgid "Scroll"
4872
  msgstr ""
4873
 
4874
+ #: framework/premium/features/content-blocks/options/popup.php:426
 
4875
  msgid ""
4876
  "Control what happens to the content that is too big to fit into the popup."
4877
  msgstr ""
4878
 
4879
+ #: framework/premium/features/content-blocks/options/popup.php:430
 
4880
  msgid "Close Button"
4881
  msgstr ""
4882
 
4883
+ #: framework/premium/features/content-blocks/options/popup.php:438
 
4884
  msgid "Inside"
4885
  msgstr ""
4886
 
4887
+ #: framework/premium/features/content-blocks/options/popup.php:439
 
4888
  msgid "Outside"
4889
  msgstr ""
4890
 
4891
+ #: framework/premium/features/content-blocks/options/popup.php:513
 
4892
  msgid "Popup Background"
4893
  msgstr ""
4894
 
4895
+ #: framework/premium/features/content-blocks/options/popup.php:527
 
4896
  msgid "Popup Backdrop Background"
4897
  msgstr ""
4898
 
4899
+ #: framework/premium/features/content-blocks/options/single.php:17
4900
+ msgid "Content Area"
4901
+ msgstr ""
4902
+
4903
+ #: framework/premium/features/content-blocks/options/single.php:79
4904
  msgid "Content Area Vel Spacing"
4905
  msgstr ""
4906
 
4907
+ #: framework/premium/features/content-blocks/options/single.php:132
 
4908
  msgid ""
4909
  "Select a post/page to preview it's content inside the editor while building "
4910
  "the post/page."
4911
  msgstr ""
4912
 
4913
+ #: framework/premium/extensions/post-types-extra/includes/filtering/customizer.php:25
 
4914
  msgid "Posts Filter"
4915
  msgstr ""
4916
 
4917
+ #: framework/premium/extensions/post-types-extra/includes/filtering/customizer.php:60
 
4918
  msgid "Filtering Behavior"
4919
  msgstr ""
4920
 
4921
+ #: framework/premium/extensions/post-types-extra/includes/filtering/customizer.php:68
 
4922
  msgid "Instant Reload"
4923
  msgstr ""
4924
 
4925
+ #: framework/premium/extensions/post-types-extra/includes/filtering/customizer.php:69
 
4926
  msgid "Page Reload"
4927
  msgstr ""
4928
 
4929
+ #: framework/premium/extensions/post-types-extra/includes/filtering/customizer.php:82
 
4930
  msgid "Filter Source"
4931
  msgstr ""
4932
 
4933
+ #: framework/premium/extensions/post-types-extra/includes/filtering/customizer.php:92
 
4934
  msgid "Items Horizontal Spacing"
4935
  msgstr ""
4936
 
4937
  #: framework/premium/extensions/post-types-extra/includes/filtering/customizer.php:104,
4938
+ #: framework/premium/features/premium-header/items/language-switcher/options.php:360
 
 
4939
  msgid "Items Vertical Spacing"
4940
  msgstr ""
4941
 
4942
+ #: framework/premium/extensions/post-types-extra/includes/filtering/customizer.php:116
 
4943
  msgid "Container Bottom Spacing"
4944
  msgstr ""
4945
 
4946
+ #: framework/premium/extensions/post-types-extra/includes/filtering/customizer.php:128
 
4947
  msgid "Horizontal Alignment"
4948
  msgstr ""
4949
 
4950
+ #: framework/premium/extensions/post-types-extra/includes/filtering/customizer.php:251
 
4951
  msgid "Button Padding"
4952
  msgstr ""
4953
 
4954
+ #: framework/premium/extensions/post-types-extra/includes/read-progress/customizer.php:4
 
4955
  msgid "Read Progress"
4956
  msgstr ""
4957
 
4958
+ #: framework/premium/extensions/post-types-extra/includes/read-progress/customizer.php:24
 
4959
  msgid "Indicator Height"
4960
  msgstr ""
4961
 
4962
+ #: framework/premium/extensions/post-types-extra/includes/read-progress/customizer.php:34
 
4963
  msgid "Auto Hide"
4964
  msgstr ""
4965
 
4966
+ #: framework/premium/extensions/post-types-extra/includes/read-progress/customizer.php:38
 
4967
  msgid ""
4968
  "Automatically hide the read progress bar once you arrive at the bottom of "
4969
  "the article."
4970
  msgstr ""
4971
 
4972
+ #: framework/premium/extensions/post-types-extra/includes/read-progress/customizer.php:71
 
4973
  msgid "Main Color"
4974
  msgstr ""
4975
 
4976
+ #: framework/premium/extensions/woocommerce-extra/header-items/wish-list/options.php:84
 
4977
  msgid "Icon Badge"
4978
  msgstr ""
4979
 
4980
+ #: framework/premium/extensions/woocommerce-extra/header-items/wish-list/options.php:178
 
4981
  msgid "Label Font Color"
4982
  msgstr ""
4983
 
4984
+ #: framework/premium/features/premium-header/items/contacts/config.php:4
 
4985
  msgid "Contacts"
4986
  msgstr ""
4987
 
4988
+ #: framework/premium/features/premium-header/items/contacts/options.php:300
 
4989
  msgid "Open Links In New Tab"
4990
  msgstr ""
4991
 
4992
  #: framework/premium/features/premium-header/items/contacts/options.php:320,
4993
+ #: framework/premium/features/premium-header/items/language-switcher/options.php:95
 
 
4994
  msgid "Items Spacing"
4995
  msgstr ""
4996
 
4997
+ #: framework/premium/features/premium-header/items/contacts/options.php:369
 
4998
  msgid "Items Direction"
4999
  msgstr ""
5000
 
5001
+ #: framework/premium/features/premium-header/items/contacts/options.php:375
 
5002
  msgid "Horizontal"
5003
  msgstr ""
5004
 
5005
+ #: framework/premium/features/premium-header/items/contacts/options.php:376
 
5006
  msgid "Vertical"
5007
  msgstr ""
5008
 
5009
  #: framework/premium/features/premium-header/items/contacts/options.php:730,
5010
  #: framework/premium/features/premium-header/items/contacts/options.php:772,
5011
  #: framework/premium/features/premium-header/items/contacts/options.php:811,
5012
+ #: framework/premium/features/premium-header/items/contacts/options.php:850
 
 
 
 
5013
  msgid "Icons Background Color"
5014
  msgstr ""
5015
 
5016
  #: framework/premium/features/premium-header/items/contacts/options.php:734,
5017
  #: framework/premium/features/premium-header/items/contacts/options.php:776,
5018
  #: framework/premium/features/premium-header/items/contacts/options.php:815,
5019
+ #: framework/premium/features/premium-header/items/contacts/options.php:854
 
 
 
 
5020
  msgid "Icons Border Color"
5021
  msgstr ""
5022
 
5024
  #: framework/premium/features/premium-header/items/divider/options.php:107,
5025
  #: framework/premium/features/premium-header/items/divider/options.php:126,
5026
  #: framework/premium/features/premium-header/items/language-switcher/options.php:323,
5027
+ #: framework/premium/features/premium-header/items/search-input/options.php:734
 
 
 
 
 
5028
  msgid "Margin"
5029
  msgstr ""
5030
 
5031
+ #: framework/premium/features/premium-header/items/dark-mode-switcher/config.php:5
 
5032
  msgid "Dark Mode"
5033
  msgstr ""
5034
 
5035
+ #: framework/premium/features/premium-header/items/divider/config.php:4
 
5036
  msgid "Divider"
5037
  msgstr ""
5038
 
5039
+ #: framework/premium/features/premium-header/items/divider/options.php:6
 
5040
  msgid "Size"
5041
  msgstr ""
5042
 
5043
+ #: framework/premium/features/premium-header/items/language-switcher/options.php:17
 
5044
  msgid "Top Level Options"
5045
  msgstr ""
5046
 
5047
+ #: framework/premium/features/premium-header/items/language-switcher/options.php:37
 
5048
  msgid "Dropdown"
5049
  msgstr ""
5050
 
5051
+ #: framework/premium/features/premium-header/items/language-switcher/options.php:47
 
5052
  msgid "Display"
5053
  msgstr ""
5054
 
5055
+ #: framework/premium/features/premium-header/items/language-switcher/options.php:59
 
5056
  msgid "Flag"
5057
  msgstr ""
5058
 
5059
+ #: framework/premium/features/premium-header/items/language-switcher/options.php:73
 
5060
  msgid "Label Style"
5061
  msgstr ""
5062
 
5063
+ #: framework/premium/features/premium-header/items/language-switcher/options.php:79
 
5064
  msgid "Long"
5065
  msgstr ""
5066
 
5067
+ #: framework/premium/features/premium-header/items/language-switcher/options.php:80
 
5068
  msgid "Short"
5069
  msgstr ""
5070
 
5071
+ #: framework/premium/features/premium-header/items/language-switcher/options.php:112
 
5072
  msgid "Hide Current Language"
5073
  msgstr ""
5074
 
5075
+ #: framework/premium/features/premium-header/items/language-switcher/options.php:343
 
5076
  msgid "Dropdown Options"
5077
  msgstr ""
5078
 
5079
+ #: framework/premium/features/premium-header/items/language-switcher/options.php:352
 
5080
  msgid "Dropdown Top Offset"
5081
  msgstr ""
5082
 
5083
+ #: framework/premium/features/premium-header/items/search-input/config.php:4
 
5084
  msgid "Search Box"
5085
  msgstr ""
5086
 
5087
+ #: framework/premium/features/premium-header/items/search-input/options.php:42
 
5088
  msgid "Placeholder Text"
5089
  msgstr ""
5090
 
5091
+ #: framework/premium/features/premium-header/items/search-input/options.php:52
 
5092
  msgid "Input Maximum Width"
5093
  msgstr ""
5094
 
5095
+ #: framework/premium/features/premium-header/items/search-input/options.php:64
 
5096
  msgid "Input Height"
5097
  msgstr ""
5098
 
5099
+ #: framework/premium/features/premium-header/items/search-input/options.php:89
 
5100
  msgid "Live Results"
5101
  msgstr ""
5102
 
5103
+ #: framework/premium/features/premium-header/items/search-input/options.php:100
 
5104
  msgid "Live Results Images"
5105
  msgstr ""
5106
 
5107
+ #: framework/premium/features/premium-header/items/search-input/options.php:111
 
5108
  msgid "Search Through Criteria"
5109
  msgstr ""
5110
 
5111
+ #: framework/premium/features/premium-header/items/search-input/options.php:112
 
5112
  msgid "Chose in which post types do you want to perform searches."
5113
  msgstr ""
5114
 
5115
  #: framework/premium/features/premium-header/items/search-input/options.php:324,
5116
  #: framework/premium/features/premium-header/items/search-input/options.php:353,
5117
  #: framework/premium/features/premium-header/items/search-input/options.php:385,
5118
+ #: framework/premium/features/premium-header/items/search-input/options.php:415
 
 
 
 
5119
  msgid "Input Icon Color"
5120
  msgstr ""
5121
 
5122
+ #: framework/premium/features/premium-header/items/search-input/options.php:765
 
5123
  msgid "Dropdown Text Color"
5124
  msgstr ""
5125
 
5126
+ #: framework/premium/features/premium-header/items/search-input/options.php:796
 
5127
  msgid "Dropdown Background"
5128
  msgstr ""
5129
 
5130
+ #: framework/premium/features/premium-header/items/widget-area-1/config.php:4
 
5131
  msgid "Widget Area"
5132
  msgstr ""
5133
 
5134
  #: framework/extensions/newsletter-subscribe/admin-static/js/ListPicker.js:14
5135
  #: framework/extensions/newsletter-subscribe/admin-static/js/ListPicker/Implementation.js:63
5136
  #: framework/extensions/newsletter-subscribe/dashboard-static/js/EditCredentials.js:213
5137
+ #: static/js/screens/SiteExport.js:172
5138
  msgid "Loading..."
5139
  msgstr ""
5140
 
5856
  msgid "Select location"
5857
  msgstr ""
5858
 
5859
+ #: framework/premium/static/js/options/PreviewedPostsSelect.js:108
5860
  #: static/js/options/ConditionsManager/PostIdPicker.js:67
5861
  msgid "Type to search by ID or title..."
5862
  msgstr ""
5863
 
5864
+ #: framework/premium/static/js/options/PreviewedPostsSelect.js:112
5865
  #: static/js/options/ConditionsManager/PostIdPicker.js:73
5866
  msgid "Select post"
5867
  msgstr ""
6351
  "Please select your prefered one in order to continue."
6352
  msgstr ""
6353
 
6354
+ #: static/js/screens/DemoInstall/Wizzard/Plugins.js:59
6355
  msgid "Install & Activate Plugins"
6356
  msgstr ""
6357
 
6358
+ #: static/js/screens/DemoInstall/Wizzard/Plugins.js:61
6359
  msgid ""
6360
  "The following plugins are required for this starter site in order to work "
6361
  "properly."
6387
  msgid "Allow & Continue"
6388
  msgstr ""
6389
 
6390
+ #: static/js/screens/SiteExport.js:125
6391
  msgid "Builder"
6392
  msgstr ""
6393
 
6394
+ #: static/js/screens/SiteExport.js:173
 
 
 
 
6395
  msgid "Export site"
6396
  msgstr ""
6397
 
6398
+ #: static/js/screens/SiteExport.js:73
6399
  msgid "Site export"
6400
  msgstr ""
6401
 
6402
+ #: static/js/screens/SiteExport.js:99
6403
  msgid "Preview URL"
6404
  msgstr ""
readme.txt CHANGED
@@ -5,7 +5,7 @@ Requires PHP: 7.0
5
  Tested up to: 6.0
6
  License: GPLv2 or later
7
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
8
- Stable tag: 1.8.41
9
 
10
  == Description ==
11
 
@@ -23,6 +23,9 @@ 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.41: 2022-07-08
27
  - Improvement: General fixes and improvements
28
 
5
  Tested up to: 6.0
6
  License: GPLv2 or later
7
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
8
+ Stable tag: 1.8.42
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.42: 2022-07-14
27
+ - Fix: Account modal breaks if dismissed previously
28
+
29
  1.8.41: 2022-07-08
30
  - Improvement: General fixes and improvements
31
 
static/bundle/account-lazy.min.css CHANGED
@@ -1,5 +1,5 @@
1
  /**
2
- * - v1.8.41
3
  *
4
  * Copyright (c) 2022
5
  * Licensed GPLv2+
1
  /**
2
+ * - v1.8.42
3
  *
4
  * Copyright (c) 2022
5
  * Licensed GPLv2+
static/bundle/dashboard.js CHANGED
@@ -1,2 +1,2 @@
1
  /*! For license information please see dashboard.js.LICENSE.txt */
2
- !function(){var e={184:function(e,t){var n;!function(){"use strict";var r={}.hasOwnProperty;function o(){for(var e=[],t=0;t<arguments.length;t++){var n=arguments[t];if(n){var a=typeof n;if("string"===a||"number"===a)e.push(n);else if(Array.isArray(n)&&n.length){var i=o.apply(null,n);i&&e.push(i)}else if("object"===a)for(var c in n)r.call(n,c)&&n[c]&&e.push(c)}}return e.join(" ")}e.exports?(o.default=o,e.exports=o):void 0===(n=function(){return o}.apply(t,[]))||(e.exports=n)}()},162:function(e,t,n){var r;void 0===(r=function(){"use strict";function t(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 r(e){var t=new XMLHttpRequest;t.open("HEAD",e,!1);try{t.send()}catch(e){}return 200<=t.status&&299>=t.status}function o(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 a="object"==typeof window&&window.window===window?window:"object"==typeof self&&self.self===self?self:"object"==typeof n.g&&n.g.global===n.g?n.g:void 0,i=a.saveAs||("object"!=typeof window||window!==a?function(){}:"download"in HTMLAnchorElement.prototype?function(e,n,i){var c=a.URL||a.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?o(l):r(l.href)?t(e,n,i):o(l,l.target="_blank")):(l.href=c.createObjectURL(e),setTimeout((function(){c.revokeObjectURL(l.href)}),4e4),setTimeout((function(){o(l)}),0))}:"msSaveOrOpenBlob"in navigator?function(e,n,a){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,a),n);else if(r(e))t(e,n,a);else{var i=document.createElement("a");i.href=e,i.target="_blank",setTimeout((function(){o(i)}))}}:function(e,n,r,o){if((o=o||open("","_blank"))&&(o.document.title=o.document.body.innerText="downloading..."),"string"==typeof e)return t(e,n,r);var i="application/octet-stream"===e.type,c=/constructor/i.test(a.HTMLElement)||a.safari,l=/CriOS\/[\d]+/.test(navigator.userAgent);if((l||i&&c)&&"object"==typeof FileReader){var s=new FileReader;s.onloadend=function(){var e=s.result;e=l?e:e.replace(/^data:[^;]*;/,"data:attachment/file;"),o?o.location.href=e:location=e,o=null},s.readAsDataURL(e)}else{var u=a.URL||a.webkitURL,m=u.createObjectURL(e);o?o.location=m:location.href=m,o=null,setTimeout((function(){u.revokeObjectURL(m)}),4e4)}});a.saveAs=i.saveAs=i,e.exports=i}.apply(t,[]))||(e.exports=r)},172:function(e,t,n){var r,o,a=n(760),i=n(529),c=(o=[],{activateTrap:function(e){if(o.length>0){var t=o[o.length-1];t!==e&&t.pause()}var n=o.indexOf(e);-1===n||o.splice(n,1),o.push(e)},deactivateTrap:function(e){var t=o.indexOf(e);-1!==t&&o.splice(t,1),o.length>0&&o[o.length-1].unpause()}});function l(e){return setTimeout(e,0)}e.exports=function(e,t){var n=document,o="string"==typeof e?n.querySelector(e):e,s=i({returnFocusOnDeactivate:!0,escapeDeactivates:!0},t),u={firstTabbableNode:null,lastTabbableNode:null,nodeFocusedBeforeActivation:null,mostRecentlyFocusedNode:null,active:!1,paused:!1},m={activate:function(e){if(!u.active){E(),u.active=!0,u.paused=!1,u.nodeFocusedBeforeActivation=n.activeElement;var t=e&&e.onActivate?e.onActivate:s.onActivate;return t&&t(),p(),m}},deactivate:d,pause:function(){!u.paused&&u.active&&(u.paused=!0,f())},unpause:function(){u.paused&&u.active&&(u.paused=!1,E(),p())}};return m;function d(e){if(u.active){clearTimeout(r),f(),u.active=!1,u.paused=!1,c.deactivateTrap(m);var t=e&&void 0!==e.onDeactivate?e.onDeactivate:s.onDeactivate;return t&&t(),(e&&void 0!==e.returnFocus?e.returnFocus:s.returnFocusOnDeactivate)&&l((function(){var e;w((e=u.nodeFocusedBeforeActivation,h("setReturnFocus")||e))})),m}}function p(){if(u.active)return c.activateTrap(m),r=l((function(){w(y())})),n.addEventListener("focusin",v,!0),n.addEventListener("mousedown",b,{capture:!0,passive:!1}),n.addEventListener("touchstart",b,{capture:!0,passive:!1}),n.addEventListener("click",_,{capture:!0,passive:!1}),n.addEventListener("keydown",g,{capture:!0,passive:!1}),m}function f(){if(u.active)return n.removeEventListener("focusin",v,!0),n.removeEventListener("mousedown",b,!0),n.removeEventListener("touchstart",b,!0),n.removeEventListener("click",_,!0),n.removeEventListener("keydown",g,!0),m}function h(e){var t=s[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 y(){var e;if(!(e=null!==h("initialFocus")?h("initialFocus"):o.contains(n.activeElement)?n.activeElement:u.firstTabbableNode||h("fallbackFocus")))throw new Error("Your focus-trap needs to have at least one focusable element");return e}function b(e){o.contains(e.target)||(s.clickOutsideDeactivates?d({returnFocus:!a.isFocusable(e.target)}):s.allowOutsideClick&&s.allowOutsideClick(e)||e.preventDefault())}function v(e){o.contains(e.target)||e.target instanceof Document||(e.stopImmediatePropagation(),w(u.mostRecentlyFocusedNode||y()))}function g(e){if(!1!==s.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(E(),e.shiftKey&&e.target===u.firstTabbableNode)return e.preventDefault(),void w(u.lastTabbableNode);e.shiftKey||e.target!==u.lastTabbableNode||(e.preventDefault(),w(u.firstTabbableNode))}(e)}function _(e){s.clickOutsideDeactivates||o.contains(e.target)||s.allowOutsideClick&&s.allowOutsideClick(e)||(e.preventDefault(),e.stopImmediatePropagation())}function E(){var e=a(o);u.firstTabbableNode=e[0]||y(),u.lastTabbableNode=e[e.length-1]||y()}function w(e){e!==n.activeElement&&(e&&e.focus?(e.focus(),u.mostRecentlyFocusedNode=e,function(e){return e.tagName&&"input"===e.tagName.toLowerCase()&&"function"==typeof e.select}(e)&&e.select()):w(y()))}}},703:function(e,t,n){"use strict";var r=n(414);function o(){}function a(){}a.resetWarningCache=o,e.exports=function(){function e(e,t,n,o,a,i){if(i!==r){var c=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 c.name="Invariant Violation",c}}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:a,resetWarningCache:o};return n.PropTypes=n,n}},697:function(e,t,n){e.exports=n(703)()},414:function(e){"use strict";e.exports="SECRET_DO_NOT_PASS_THIS_OR_YOU_WILL_BE_FIRED"},760:function(e){var t=["input","select","textarea","a[href]","button","[tabindex]","audio[controls]","video[controls]",'[contenteditable]:not([contenteditable="false"])'],n=t.join(","),r="undefined"==typeof Element?function(){}:Element.prototype.matches||Element.prototype.msMatchesSelector||Element.prototype.webkitMatchesSelector;function o(e,t){t=t||{};var o,i,c,u=[],m=[],d=e.querySelectorAll(n);for(t.includeContainer&&r.call(e,n)&&(d=Array.prototype.slice.apply(d)).unshift(e),o=0;o<d.length;o++)a(i=d[o])&&(0===(c=l(i))?u.push(i):m.push({documentOrder:o,tabIndex:c,node:i}));return m.sort(s).map((function(e){return e.node})).concat(u)}function a(e){return!(!i(e)||function(e){return function(e){return u(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)||l(e)<0)}function i(e){return!(e.disabled||function(e){return u(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!==r.call(e,n)&&a(e)},o.isFocusable=function(e){if(!e)throw new Error("No node provided");return!1!==r.call(e,c)&&i(e)};var c=t.concat("iframe").join(",");function l(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 u(e){return"INPUT"===e.tagName}e.exports=o},529:function(e){e.exports=function(){for(var e={},n=0;n<arguments.length;n++){var r=arguments[n];for(var o in r)t.call(r,o)&&(e[o]=r[o])}return e};var t=Object.prototype.hasOwnProperty}},t={};function n(r){var o=t[r];if(void 0!==o)return o.exports;var a=t[r]={exports:{}};return e[r].call(a.exports,a,a.exports,n),a.exports}n.n=function(e){var t=e&&e.__esModule?function(){return e.default}:function(){return e};return n.d(t,{a:t}),t},n.d=function(e,t){for(var r in t)n.o(t,r)&&!n.o(e,r)&&Object.defineProperty(e,r,{enumerable:!0,get:t[r]})},n.g=function(){if("object"==typeof globalThis)return globalThis;try{return this||new Function("return this")()}catch(e){if("object"==typeof window)return window}}(),n.o=function(e,t){return Object.prototype.hasOwnProperty.call(e,t)},function(){"use strict";var e=window.wp.element,t=window.ctEvents,r=n.n(t),o=window.wp.i18n,a=n(184),i=n.n(a),c=window.React,l=n.n(c);function s(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function u(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}n(697);var m=function(e){return e.initialState,e.getInitialState,e.refs,e.getRefs,e.didMount,e.didUpdate,e.willUnmount,e.getSnapshotBeforeUpdate,e.shouldUpdate,e.render,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"])},d=function(e){function t(){var n,r;s(this,t);for(var o=arguments.length,a=Array(o),i=0;i<o;i++)a[i]=arguments[i];return n=r=u(this,e.call.apply(e,[this].concat(a))),p.call(r),u(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,o=this._refs;return{state:e,props:m(t),refs:o,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}(l().Component);d.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)}},f=d,h=function(t){var n=t.children,r=t.container,o=void 0===r?document.body:r,a=t.type,i=void 0===a?"reach-portal":a;return(0,e.createElement)(f,{getRefs:function(){return{node:null}},didMount:function(e){var t=e.refs,n=e.forceUpdate,r=o.hasOwnProperty("current")?o.current:o;t.node=document.createElement(i),r.appendChild(t.node),n()},willUnmount:function(e){var t=e.refs.node,n=o.hasOwnProperty("current")?o.current:o;n&&n.removeChild(t)},render:function(t){var r=t.refs.node;return r?(0,e.createPortal)(n,r):null}})},y=function(e,t){return function(n){if(e&&e(n),!n.defaultPrevented)return t(n)}},b=n(172),v=n.n(b);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},g.apply(this,arguments)}function _(e,t){if(null==e)return{};var n,r,o=function(e,t){if(null==e)return{};var n,r,o={},a=Object.keys(e);for(r=0;r<a.length;r++)n=a[r],t.indexOf(n)>=0||(o[n]=e[n]);return o}(e,t);if(Object.getOwnPropertySymbols){var a=Object.getOwnPropertySymbols(e);for(r=0;r<a.length;r++)n=a[r],t.indexOf(n)>=0||Object.prototype.propertyIsEnumerable.call(e,n)&&(o[n]=e[n])}return o}var E=function(){},w=function(){},k=function(e){var t=e.refs;t.trap.deactivate(),t.disposeAriaHider()},O=React.createContext(),x=React.forwardRef((function(t,n){var r=t.container,o=t.isOpen,a=void 0===o||o,i=t.onDismiss,c=void 0===i?E:i,l=t.initialFocusRef,s=t.onClick,u=t.onKeyDown,m=_(t,["container","isOpen","onDismiss","initialFocusRef","onClick","onKeyDown"]);return(0,e.createElement)(f,{didMount:w},a?(0,e.createElement)(h,{container:r,"data-reach-dialog-wrapper":!0},(0,e.createElement)(f,{refs:{overlayNode:null,contentNode:null},didMount:function(e){!function(e,t){var n,r,o;e.disposeAriaHider=(n=e.overlayNode,r=[],o=[],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),o.push(e),e.setAttribute("aria-hidden","true"))}})),function(){o.forEach((function(e,t){var n=r[t];null===n?e.removeAttribute("aria-hidden"):e.setAttribute("aria-hidden",n)}))}),e.trap=v()(e.overlayNode,{initialFocus:t?function(){return t.current}:void 0,fallbackFocus:e.contentNode,escapeDeactivates:!1,clickOutsideDeactivates:!1})}(e.refs,l)},willUnmount:k},(function(t){var r=t.refs;return(0,e.createElement)(O.Provider,{value:function(e){return r.contentNode=e}},(0,e.createElement)("div",g({"data-reach-dialog-overlay":!0,onClick:y(s,(function(e){e.stopPropagation(),c()})),onKeyDown:y(u,(function(e){"Escape"===e.key&&(e.stopPropagation(),c())})),ref:function(e){r.overlayNode=e,n&&n(e)}},m)))}))):null)}));x.propTypes={initialFocusRef:function(){}};var S=function(e){return e.stopPropagation()},C=React.forwardRef((function(t,n){var r=t.onClick,o=(t.onKeyDown,_(t,["onClick","onKeyDown"]));return(0,e.createElement)(O.Consumer,null,(function(t){return(0,e.createElement)("div",g({"aria-modal":"true","data-reach-dialog-content":!0,tabIndex:"-1",onClick:y(r,S),ref:function(e){t(e),n&&n(e)}},o))}))})),j=window.blocksyOptions,D=function(e){return!!e},A=function(t){var n=t.items,r=t.isVisible,o=void 0===r?D:r,a=t.render,c=t.className,l=t.onDismiss;return(0,e.createElement)(j.Transition,{items:n,onStart:function(){return document.body.classList[o(n)?"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(t){return o(t)&&function(n){return(0,e.createElement)(x,{style:{opacity:n.opacity},container:document.querySelector("#wpbody"),onDismiss:function(){return l()}},(0,e.createElement)(C,{className:i()("ct-admin-modal",c),style:{transform:"translate3d(0px, ".concat(n.y,"px, 0px)")}},(0,e.createElement)("button",{className:"close-button",onClick:function(){return l()}},"×"),a(t,n)))}}))};function P(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 N=function(t){var n,r,o=(n=(0,e.useState)(!1),r=2,function(e){if(Array.isArray(e))return e}(n)||function(e,t){if("undefined"!=typeof Symbol&&Symbol.iterator in Object(e)){var n=[],r=!0,o=!1,a=void 0;try{for(var i,c=e[Symbol.iterator]();!(r=(i=c.next()).done)&&(n.push(i.value),!t||n.length!==t);r=!0);}catch(e){o=!0,a=e}finally{try{r||null==c.return||c.return()}finally{if(o)throw a}}return n}}(n,r)||function(e,t){if(e){if("string"==typeof e)return P(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)?P(e,t):void 0}}(n,r)||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.")}()),a=o[0],i=o[1];return[function(){return i(!0)},(0,e.createElement)(A,{items:a,onDismiss:function(){return i(!1)},render:function(){return(0,e.createElement)("div",{className:"ct-modal-content",dangerouslySetInnerHTML:{__html:t.readme}})}})]},M=window.ctDashboardLocalizations.DashboardContext,L=(M.Provider,M.Consumer,M);function z(e,t,n,r,o,a,i){try{var c=e[a](i),l=c.value}catch(e){return void n(e)}c.done?t(l):Promise.resolve(l).then(r,o)}function T(e){return function(){var t=this,n=arguments;return new Promise((function(r,o){var a=e.apply(t,n);function i(e){z(a,r,o,i,c,"next",e)}function c(e){z(a,r,o,i,c,"throw",e)}i(void 0)}))}}function I(e,t){return function(e){if(Array.isArray(e))return e}(e)||function(e,t){if("undefined"!=typeof Symbol&&Symbol.iterator in Object(e)){var n=[],r=!0,o=!1,a=void 0;try{for(var i,c=e[Symbol.iterator]();!(r=(i=c.next()).done)&&(n.push(i.value),!t||n.length!==t);r=!0);}catch(e){o=!0,a=e}finally{try{r||null==c.return||c.return()}finally{if(o)throw a}}return n}}(e,t)||function(e,t){if(e){if("string"==typeof e)return R(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)?R(e,t):void 0}}(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 R(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 F=function(){return ctDashboardLocalizations.plugin_data.hide_support_section?null:(0,e.createElement)("div",{className:"ct-support-container"},(0,e.createElement)("h2",null,(0,o.__)("Need help or advice?","blocksy-companion")),(0,e.createElement)("p",null,(0,o.__)("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.","blocksy-companion")),(0,e.createElement)("a",{href:ctDashboardLocalizations.support_url,className:"ct-button","data-hover":"blue",target:"_blank"},(0,o.__)("Submit a Support Ticket","blocksy-companion")),(0,e.createElement)("a",{href:"https://www.facebook.com/groups/blocksy.community",className:"ct-button","data-hover":"blue",target:"_blank"},(0,o.__)("Join Facebook Community","blocksy-companion")))};function B(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 U(e){for(var t=1;t<arguments.length;t++){var n=null!=arguments[t]?arguments[t]:{};t%2?B(Object(n),!0).forEach((function(t){V(e,t,n[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(n)):B(Object(n)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(n,t))}))}return e}function V(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}function H(e,t,n,r,o,a,i){try{var c=e[a](i),l=c.value}catch(e){return void n(e)}c.done?t(l):Promise.resolve(l).then(r,o)}function q(e,t){return function(e){if(Array.isArray(e))return e}(e)||function(e,t){if("undefined"!=typeof Symbol&&Symbol.iterator in Object(e)){var n=[],r=!0,o=!1,a=void 0;try{for(var i,c=e[Symbol.iterator]();!(r=(i=c.next()).done)&&(n.push(i.value),!t||n.length!==t);r=!0);}catch(e){o=!0,a=e}finally{try{r||null==c.return||c.return()}finally{if(o)throw a}}return n}}(e,t)||function(e,t){if(e){if("string"==typeof e)return W(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)?W(e,t):void 0}}(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 W(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 Z=null,$=function(t){var n=t.extension,r=t.onExtsSync,a=q(N(n),2),c=a[0],l=a[1],s=q(function(t){var n=arguments.length>1&&void 0!==arguments[1]?arguments[1]:function(){},r=I((0,e.useState)(!1),2),a=r[0],i=r[1],c=I((0,e.useState)(!1),2),l=c[0],s=c[1],u=(0,e.useContext)(L),m=(u.Link,u.history),d=ctDashboardLocalizations.plugin_data.is_pro,p=function(){var e=T(regeneratorRuntime.mark((function e(){var r;return regeneratorRuntime.wrap((function(e){for(;;)switch(e.prev=e.next){case 0:if(d||!t.config.pro){e.next=3;break}return s(!0),e.abrupt("return");case 3:return(r=new FormData).append("ext",t.name),r.append("action",t.__object?"blocksy_extension_deactivate":"blocksy_extension_activate"),i(!0),e.prev=7,e.next=10,fetch(ctDashboardLocalizations.ajax_url,{method:"POST",body:r});case 10:t.config.require_refresh&&location.reload(),n(),e.next=16;break;case 14:e.prev=14,e.t0=e.catch(7);case 16:i(!1);case 17:case"end":return e.stop()}}),e,null,[[7,14]])})));return function(){return e.apply(this,arguments)}}();return[a,p,!d&&t.config.pro?(0,e.createElement)(A,{items:l,className:"ct-onboarding-modal",onDismiss:function(){return s(!1)},render:function(){return(0,e.createElement)("div",{className:"ct-modal-content"},(0,e.createElement)("svg",{width:"55",height:"55",viewBox:"0 0 40.5 48.3"},(0,e.createElement)("path",{fill:"#2d82c8",d:"M33.4 29.4l7.1 12.3-7.4.6-4 6-7.3-12.9"}),(0,e.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"}),(0,e.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"}),(0,e.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"})),(0,e.createElement)("h2",{className:"ct-modal-title"},"This is a Pro extension"),(0,e.createElement)("p",null,(0,o.__)("Upgrade to the Pro version and get instant access to all premium extensions, features and future updates.","blocksy-companion")),(0,e.createElement)("div",{className:"ct-modal-actions has-divider","data-buttons":"2"},(0,e.createElement)("a",{onClick:function(e){e.preventDefault(),s(!1),setTimeout((function(){m.navigate("/pro")}),300)},className:"button"},(0,o.__)("Free vs Pro","blocksy")),(0,e.createElement)("a",{href:"https://creativethemes.com/blocksy/pricing/",target:"_blank",className:"button button-primary"},(0,o.__)("Upgrade Now","blocksy-companion"))))}}):null]}(n,(function(){r()})),3),u=s[0],m=s[1],d=s[2];return(0,e.createElement)("li",{className:i()({active:!!n.__object})},(0,e.createElement)("h4",{className:"ct-extension-title"},n.config.name,u&&(0,e.createElement)("svg",{width:"15",height:"15",viewBox:"0 0 100 100"},(0,e.createElement)("g",{transform:"translate(50,50)"},(0,e.createElement)("g",{transform:"scale(1)"},(0,e.createElement)("circle",{cx:"0",cy:"0",r:"50",fill:"#687c93"}),(0,e.createElement)("circle",{cx:"0",cy:"-26",r:"12",fill:"#ffffff",transform:"rotate(161.634)"},(0,e.createElement)("animateTransform",{attributeName:"transform",type:"rotate",calcMode:"linear",values:"0 0 0;360 0 0",keyTimes:"0;1",dur:"1s",begin:"0s",repeatCount:"indefinite"})))))),n.config.description&&(0,e.createElement)("div",{className:"ct-extension-description"},n.config.description),(0,e.createElement)("div",{className:"ct-extension-actions"},(0,e.createElement)("button",{className:i()(n.__object?"ct-button":"ct-button-primary"),"data-hover":"white",disabled:u,onClick:function(){m()}},n.__object?(0,o.__)("Deactivate","blocksy-companion"):(0,o.__)("Activate","blocksy-companion")),n.readme&&(0,e.createElement)("button",{onClick:function(){return c()},className:"ct-minimal-button ct-instruction"},(0,e.createElement)("svg",{width:"16",height:"16",viewBox:"0 0 24 24"},(0,e.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"}))),n.__object&&n.config&&n.config.buttons&&n.config.buttons.map((function(t,n){var r=t.text,o=t.url;return(0,e.createElement)("a",{href:o,className:"ct-button ct-config-btn",dataButton:"white"},r)}))),l,d)},G=function(){var t=q((0,e.useState)(!Z),2),n=t[0],a=t[1],c=q((0,e.useState)(Z||[]),2),l=c[0],s=c[1],u=q((0,e.useState)(!1),2),m=u[0],d=u[1],p=q((0,e.useState)("free"),2),f=p[0],h=p[1],y=function(){var e,t=(e=regeneratorRuntime.mark((function e(){var t,n,r,o,i,c,l,u,m,p=arguments;return regeneratorRuntime.wrap((function(e){for(;;)switch(e.prev=e.next){case 0:return t=p.length>0&&void 0!==p[0]?p[0]:{},n=U({verbose:!1,extension:null,extAction:null},t),r=n.verbose,o=n.extension,i=n.extAction,r&&a(!0),d(!0),e.next=6,fetch("".concat(wp.ajax.settings.url,"?action=blocksy_extensions_status"),U({method:"POST"},o&&i?{body:JSON.stringify({extension:o,extAction:i})}:{}));case 6:if(200===(c=e.sent).status){e.next=9;break}return e.abrupt("return");case 9:return e.next=11,c.json();case 11:if(l=e.sent,u=l.success,m=l.data,u){e.next=16;break}return e.abrupt("return");case 16:if(d(!1),a(!1),s(m),Z=m,!o){e.next=22;break}return e.abrupt("return",m[o]);case 22:return e.abrupt("return",m);case 23:case"end":return e.stop()}}),e)})),function(){var t=this,n=arguments;return new Promise((function(r,o){var a=e.apply(t,n);function i(e){H(a,r,o,i,c,"next",e)}function c(e){H(a,r,o,i,c,"throw",e)}i(void 0)}))});return function(){return t.apply(this,arguments)}}();(0,e.useEffect)((function(){y({verbose:!Z});var e=function(){y()};return r().on("blocksy_exts_sync_exts",e),function(){r().off("blocksy_exts_sync_exts",e)}}),[]);var b=(0,e.useMemo)((function(){return Object.values(l).map((function(e,t){return U(U({},e),{},{name:Object.keys(l)[t]})})).find((function(e){return e.config.pro}))}),[l]),v=(0,e.useMemo)((function(){return Object.values(l).map((function(e,t){return U(U({},e),{},{name:Object.keys(l)[t]})})).filter((function(e){return!e.config.hidden})).filter((function(e){var t=e.config;return"free"===f?!t.pro:t.pro}))}),[f,l]);return(0,e.createElement)(e.Fragment,null,(0,e.createElement)("div",{className:"ct-extensions-container"},(0,e.createElement)(j.Transition,{items:n,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(t){return t?function(t){return(0,e.createElement)(j.animated.p,{style:t,className:"ct-loading-text"},(0,e.createElement)("span",null),(0,o.__)("Loading Extensions Status...","blocksy-companion"))}:function(t){return(0,e.createElement)(j.animated.div,{style:t},(0,e.createElement)(e.Fragment,null,b&&(0,e.createElement)("ul",{className:"ct-extensions-sourse"},["free","pro"].map((function(t){return(0,e.createElement)("li",{key:t,onClick:function(){return h(t)},className:i()({active:t===f})},{free:(0,o.__)("Free Extensions","blocksy-companion"),pro:(0,o.__)("Pro Extensions","blocksy-companion")}[t])}))),(0,e.createElement)("ul",{className:i()("ct-extensions-list",{"is-pro":"pro"===f})},v.map((function(t){var n={extension:$};return r().trigger("ct:extensions:card",{CustomComponent:n,extension:t}),(0,e.createElement)(n.extension,{key:t.name,extension:t,extsSyncLoading:m,onExtsSync:function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{};return e.extAction||(l[t.name].__object=!l[t.name].__object,s(l)),y(U(U({},e),{},{extension:t.name}))}})}))),(0,e.createElement)(F,null)))}}))))},K=function(t){var n=t.children,r=t.activated,o=t.checked,a=t.onChange;return(0,e.createElement)("div",{onClick:function(){return a()},className:i()("ct-checkbox-container",{activated:r})},n,(0,e.createElement)("span",{className:i()("ct-checkbox",{active:o})},(0,e.createElement)("svg",{width:"10",height:"8",viewBox:"0 0 11.2 9.1"},(0,e.createElement)("polyline",{class:"check",points:"1.2,4.8 4.4,7.9 9.9,1.2 "}))))};function J(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 Y(e){for(var t=1;t<arguments.length;t++){var n=null!=arguments[t]?arguments[t]:{};t%2?J(Object(n),!0).forEach((function(t){X(e,t,n[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(n)):J(Object(n)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(n,t))}))}return e}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 Q(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 ee=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","map-block-gutenberg":"Map Block for Google Maps","mb-custom-post-type":"MB Custom Post Types & Custom Taxonomies",leadin:"HubSpot","block-slider":"Block Slider"}[e]||e).replace(/\b\w/,(function(e){return e.toUpperCase()}))},te=function(t){var n,r,a=t.demoConfiguration,i=t.setDemoConfiguration,c=t.style,l=(0,e.useContext)(He),s=l.currentDemo,u=l.demos_list,m=l.pluginsStatus,d=(l.setCurrentDemo,n=(s||"").split(":"),r=2,function(e){if(Array.isArray(e))return e}(n)||function(e,t){if("undefined"!=typeof Symbol&&Symbol.iterator in Object(e)){var n=[],r=!0,o=!1,a=void 0;try{for(var i,c=e[Symbol.iterator]();!(r=(i=c.next()).done)&&(n.push(i.value),!t||n.length!==t);r=!0);}catch(e){o=!0,a=e}finally{try{r||null==c.return||c.return()}finally{if(o)throw a}}return n}}(n,r)||function(e,t){if(e){if("string"==typeof e)return Q(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)?Q(e,t):void 0}}(n,r)||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.")}()),p=d[0];return d[1],u.filter((function(e){return e.name===p||""})),(0,e.createElement)("div",{style:c},(0,e.createElement)("div",{className:"ct-demo-plugins"},(0,e.createElement)("i",{className:"ct-demo-icon"},(0,e.createElement)("svg",{width:"40",height:"40",viewBox:"0 0 40 40"},(0,e.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"}),(0,e.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"}))),(0,e.createElement)("h2",null,(0,o.__)("Install & Activate Plugins","blocksy-companion")),(0,e.createElement)("p",null,(0,o.__)("The following plugins are required for this starter site in order to work properly.","blocksy-companion")),a.plugins.map((function(t){var n=t.plugin,r=t.enabled;return(0,e.createElement)(e.Fragment,{key:n},!m[n]&&(0,e.createElement)(K,{key:n,checked:r,onChange:function(){return i(Y(Y({},a),{},{plugins:a.plugins.map((function(e){return e.plugin===n?Y(Y({},e),{},{enabled:!r}):e}))}))}},ee(n)),m[n]&&(0,e.createElement)(K,{activated:!0,checked:!0,onChange:function(){}},ee(n)))}))))},ne=function(){var t=(0,e.useContext)(He),n=t.currentlyInstalledDemo,r=t.demos_list,a=t.setCurrentDemo,c=t.demo_error,l=t.setInstallerBlockingReleased;return(0,e.useContext)(L).Link,(0,e.createElement)("ul",null,r.filter((function(e,t){return r.map((function(e){return e.name})).indexOf(e.name)===t})).map((function(t){return(0,e.createElement)("li",{key:t.name,className:i()("ct-single-demo",{"ct-is-pro":t.is_pro})},(0,e.createElement)("figure",null,(0,e.createElement)("img",{src:t.screenshot}),(0,e.createElement)("section",null,(0,e.createElement)("h3",null,(0,o.__)("Available for","blocksy-companion")),(0,e.createElement)("div",null,r.filter((function(e){return e.name===t.name||""})).sort((function(e,t){return e.builder<t.builder?-1:e.builder>t.builder?1:0})).map((function(t){var n=t.builder;return(0,e.createElement)("span",{key:n},ee(n)||"Gutenberg")})))),t.is_pro&&(0,e.createElement)("a",{onClick:function(e){return e.preventDefault()},href:"#"},"PRO")),(0,e.createElement)("div",{className:"ct-demo-actions"},(0,e.createElement)("h4",null,t.name),(0,e.createElement)("div",null,(0,e.createElement)("a",{className:"ct-button",target:"_blank",href:t.url},(0,o.__)("Preview","blocksy-companion")),(0,e.createElement)("button",{className:"ct-button-primary",onClick:function(){l(!1),a(t.name)},disabled:!!c},n&&n.demo.indexOf(t.name)>-1?(0,o.__)("Modify","blocksy-companion"):(0,o.__)("Import","blocksy-companion")))))})))};function re(e,t){return function(e){if(Array.isArray(e))return e}(e)||function(e,t){if("undefined"!=typeof Symbol&&Symbol.iterator in Object(e)){var n=[],r=!0,o=!1,a=void 0;try{for(var i,c=e[Symbol.iterator]();!(r=(i=c.next()).done)&&(n.push(i.value),!t||n.length!==t);r=!0);}catch(e){o=!0,a=e}finally{try{r||null==c.return||c.return()}finally{if(o)throw a}}return n}}(e,t)||function(e,t){if(e){if("string"==typeof e)return oe(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)?oe(e,t):void 0}}(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(t){var n=t.style,r=t.nextStep,a=((0,e.useContext)(L).is_child_theme,(0,e.useContext)(He)),i=a.setCurrentlyInstalledDemo,c=a.setCurrentDemo,l=a.currentDemo,s=a.demos_list,u=re((0,e.useState)(0),2),m=u[0],d=u[1],p=re((0,e.useState)("idle"),2),f=p[0],h=p[1],y=re((l||"").split(":"),2),b=y[0],v=(y[1],s.filter((function(e){return e.name===b}))),g={erase_content:{title:(0,o.__)("Erase content","blocksy-companion"),query_string:"action=blocksy_demo_erase_content&wp_customize=on"},deactivate_demo_plugins:{title:(0,o.__)("Deactivate demo plugins","blocksy-companion"),query_string:"action=blocksy_demo_deactivate_plugins&plugins=".concat(v[0].plugins.join(":"))},deregister_current_demo:{title:(0,o.__)("Erase content","blocksy-companion"),query_string:"action=blocksy_demo_deregister_current_demo"}},_=["erase_content","deactivate_demo_plugins","deregister_current_demo"],E=_[m],w=function(){var e=g[E],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(),m===_.length-1)return void h("done");d(Math.min(_.length-1,m+1))}}};return(0,e.useEffect)((function(){0!==m&&"done"!==f&&w()}),[E]),(0,e.createElement)("div",{className:"ct-modify-demo",style:n},(0,e.createElement)("i",{className:"ct-demo-icon"},(0,e.createElement)("svg",{width:"36",height:"36",viewBox:"0 0 40 40"},(0,e.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"}),(0,e.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"===f&&(0,e.createElement)("h2",null,(0,o.__)("This starter site is already installed","blocksy-companion")),"loading"===f&&(0,e.createElement)("h2",null,"Removing starter site..."),"done"===f&&(0,e.createElement)(e.Fragment,null,(0,e.createElement)("h2",null,(0,o.__)("Starter Site Removed","blocksy-companion")),(0,e.createElement)("div",{className:"ct-modify-actions"},(0,e.createElement)("button",{className:"ct-demo-btn ct-dismiss",onClick:function(e){e.preventDefault(),c("".concat(b,":hide"))}},(0,o.__)("Dismiss","blocksy-companion")))),"idle"===f&&(0,e.createElement)(e.Fragment,null,(0,e.createElement)("p",null,(0,o.__)("What steps do you want to perform next?","blocksy-companion")),(0,e.createElement)("div",{className:"ct-modify-actions"},(0,e.createElement)("button",{className:"ct-demo-btn demo-remove",onClick:function(e){h("loading"),e.preventDefault(),w(),i()}},(0,o.__)("Remove","blocksy-companion")),(0,e.createElement)("button",{className:"ct-demo-btn",onClick:function(e){e.preventDefault(),r()}},(0,o.__)("Reinstall","blocksy-companion")))))};function ie(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 ce(e){for(var t=1;t<arguments.length;t++){var n=null!=arguments[t]?arguments[t]:{};t%2?ie(Object(n),!0).forEach((function(t){le(e,t,n[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(n)):ie(Object(n)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(n,t))}))}return e}function le(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}var se=function(t){var n=t.demoConfiguration,r=t.setDemoConfiguration,a=t.style,i=(0,e.useContext)(L),c=i.is_child_theme,l=i.child_theme_exists;return(0,e.createElement)("div",{className:"ct-demo-child",style:a},(0,e.createElement)("i",{className:"ct-demo-icon"},(0,e.createElement)("svg",{width:"40",height:"40",viewBox:"0 0 43 41.1"},(0,e.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"}),(0,e.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"}),(0,e.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"}),(0,e.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"}),(0,e.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"}),(0,e.createElement)("rect",{x:"11.2",y:"11",fill:"#44ACDF",width:"16.8",height:"17.9"}),(0,e.createElement)("rect",{x:"31.5",y:"11",fill:"#44ACDF",width:"7.9",height:"17.9"}))),l?(0,e.createElement)("h2",null,(0,o.__)("Activate Child Theme","blocksy-companion")):(0,e.createElement)("h2",null,(0,o.__)("Install Child Theme","blocksy-companion")),!c&&(0,e.createElement)(e.Fragment,null,l?(0,e.createElement)("p",null,(0,o.__)("We strongly recommend to activate the child theme, this way you will have freedom to make changes without breaking the parent theme.","blocksy-companion")):(0,e.createElement)("p",null,(0,o.__)("We strongly recommend to install the child theme, this way you will have freedom to make changes without breaking the parent theme.","blocksy-companion")),(0,e.createElement)(K,{checked:n.child_theme,onChange:function(){return r(ce(ce({},n),{},{child_theme:!n.child_theme}))}},l?(0,o.__)("Activate Child Theme","blocksy-companion"):(0,o.__)("Install Child Theme","blocksy-companion"))),c&&(0,o.__)("You already have a child theme properly installed and activated. Move on.","blocksy-companion"),(0,e.createElement)("a",{href:"https://developer.wordpress.org/themes/advanced-topics/child-themes/",target:"_blank"},(0,o.__)("Learn more about child themes","blocksy-companion")))};function ue(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?ue(Object(n),!0).forEach((function(t){de(e,t,n[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(n)):ue(Object(n)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(n,t))}))}return e}function de(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}function pe(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(t){var n,r,a=t.demoConfiguration,c=t.setDemoConfiguration,l=t.style,s=(0,e.useContext)(He),u=s.currentDemo,m=s.demos_list,d=(s.pluginsStatus,s.setCurrentDemo,n=(u||"").split(":"),r=2,function(e){if(Array.isArray(e))return e}(n)||function(e,t){if("undefined"!=typeof Symbol&&Symbol.iterator in Object(e)){var n=[],r=!0,o=!1,a=void 0;try{for(var i,c=e[Symbol.iterator]();!(r=(i=c.next()).done)&&(n.push(i.value),!t||n.length!==t);r=!0);}catch(e){o=!0,a=e}finally{try{r||null==c.return||c.return()}finally{if(o)throw a}}return n}}(n,r)||function(e,t){if(e){if("string"==typeof e)return pe(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)?pe(e,t):void 0}}(n,r)||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.")}()),p=d[0],f=(d[1],m.filter((function(e){return e.name===p||""})));return(0,e.createElement)("div",{style:l},f.length>1&&(0,e.createElement)("div",{className:"ct-demo-builder"},(0,e.createElement)("i",{className:"ct-demo-icon"},(0,e.createElement)("svg",{width:"52",height:"40",viewBox:"0 0 52 40"},(0,e.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"}),(0,e.createElement)("path",{fill:"#CFDBE4",d:"M13.8,14.6v18.8h22.6V14.6H13.8zM34.8,31.9H15.4V16.1h19.4V31.9z"}),(0,e.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"}),(0,e.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"}),(0,e.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"}),(0,e.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"}),(0,e.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"}))),(0,e.createElement)("h2",null,(0,o.__)("Choose Page Builder","blocksy-companion")),(0,e.createElement)("p",null,(0,o.__)("This starter site can be imported and used with one of these page builders. Please select your prefered one in order to continue.","blocksy-companion")),(0,e.createElement)("ul",{"data-count":f.length},f.sort((function(e,t){return e.builder<t.builder?-1:e.builder>t.builder?1:0})).map((function(t){var n=t.builder,r=t.plugins;return(0,e.createElement)("li",{className:i()({active:n===(null===a.builder?f[0].builder:a.builder)}),onClick:function(){return c(me(me({},a),{},{builder:n,plugins:r.map((function(e){return{plugin:e,enabled:!0}}))}))}},(0,e.createElement)("figure",null,(0,e.createElement)("span",{className:i()("ct-checkbox",{active:n===(null===a.builder?f[0].builder:a.builder)})},(0,e.createElement)("svg",{width:"10",height:"8",viewBox:"0 0 11.2 9.1"},(0,e.createElement)("polyline",{className:"check",points:"1.2,4.8 4.4,7.9 9.9,1.2 "}))),""===n&&(0,e.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 150 100"},(0,e.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"===n&&(0,e.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 150 100"},(0,e.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"}),(0,e.createElement)("path",{fill:"#a7b2dd",d:"M14.6 63.2l10.8-6.5L75 86.8l49.9-30 10.5 6.4L75 100z"})),"elementor"===n&&(0,e.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 150 100"},(0,e.createElement)("path",{d:"M32.5 7.6h17v84.9h-17V7.6zm34 84.9h51v-17h-51v17zm0-34h51v-17h-51v17zm0-51v17h51v-17h-51z"}))),(0,e.createElement)("div",{className:"builder-name"},ee(n)||"Gutenberg"))})))))};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 ye(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){be(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 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 ve=function(t){var n=t.demoConfiguration,r=t.setDemoConfiguration,a=(t.currentDemo,t.style);return(0,e.createElement)("div",{style:a},(0,e.createElement)("i",{className:"ct-demo-icon"},(0,e.createElement)("svg",{width:"40",height:"40",viewBox:"0 0 40 40"},(0,e.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"}),(0,e.createElement)("rect",{x:"2.5",y:"14",width:"35",height:"3",rx:"1.5",fill:"#0c7ab3"}),(0,e.createElement)("rect",{x:"5",y:"7",width:"30",height:"3",rx:"1.5",fill:"#3497d3"}),(0,e.createElement)("rect",{x:"7.5",width:"25",height:"3",rx:"1.5",fill:"#44acdf"}))),(0,e.createElement)("h2",null,(0,o.__)("Import Content","blocksy-companion")),(0,e.createElement)("p",null,(0,o.__)("This will import posts, pages, comments, navigation menus, custom fields, terms and custom posts","blocksy-companion")),["options","widgets","content"].map((function(t){return(0,e.createElement)(K,{checked:n.content[t],onChange:function(){return r(ye(ye({},n),{},{content:ye(ye({},n.content),{},be({},t,!n.content[t]))}))},key:t},t.split("_").map((function(e){return e.replace(/^\w/,(function(e){return e.toUpperCase()}))})).join(" "))})),(0,e.createElement)("div",{className:"ct-demo-erase"},(0,e.createElement)(K,{checked:n.content.erase_content,onChange:function(){return r(ye(ye({},n),{},{content:ye(ye({},n.content),{},{erase_content:!n.content.erase_content})}))}},(0,e.createElement)("div",null,(0,o.__)("Clean Install","blocksy-companion"),(0,e.createElement)("i",null,(0,o.__)("This option will remove the previous imported content and will perform a fresh and clean install.","blocksy-companion"))))))},ge=function(){var t=(0,e.useContext)(L),n=t.home_url,r=t.customizer_url;return(0,e.createElement)("div",{className:"ct-install-success"},(0,e.createElement)("h2",null,(0,o.__)("Starter Site Imported Successfully","blocksy-companion")),(0,e.createElement)("p",null,(0,o.__)("Now you can view your website or start customizing it","blocksy-companion")),(0,e.createElement)("div",null,(0,e.createElement)("a",{href:r,className:"ct-button"},(0,o.__)("Customize","blocksy-companion")),(0,e.createElement)("a",{href:n,target:"_blank",className:"ct-button-primary"},(0,o.__)("View site","blocksy-companion"))))},_e=function(e,t){var n=e.action;if("complete"===n)return"";if("import_install_child"===n)return(0,o.__)("copying child theme sources","blocksy-companion");if("import_activate_child"===n)return(0,o.__)("activating child theme","blocksy-companion");if("install_plugin"===n)return(0,o.sprintf)((0,o.__)("installing plugin %s","blocksy-companion"),ee(e.name)||e.name);if("activate_plugin"===n)return(0,o.sprintf)((0,o.__)("activating plugin %s","blocksy-companion"),ee(e.name)||e.name);if("download_demo_widgets"===n)return(0,o.__)("downloading demo widgets","blocksy-companion");if("apply_demo_widgets"===n)return(0,o.__)("installing demo widgets","blocksy-companion");if("download_demo_options"===n)return(0,o.__)("downloading demo options","blocksy-companion");if("import_mods_images"===n)return(0,o.__)("importing images from customizer","blocksy-companion");if("import_customizer_options"===n)return(0,o.__)("import customizer options","blocksy-companion");if("activate_required_extensions"===n)return(0,o.__)("activating required extensions","blocksy-companion");if("erase_previous_posts"===n)return(0,o.__)("removing previously installed posts","blocksy-companion");if("erase_previous_terms"===n)return(0,o.__)("removing previously installed taxonomies","blocksy-companion");if("erase_default_pages"===n)return(0,o.__)("removing default WordPress pages","blocksy-companion");if("erase_customizer_settings"===n)return(0,o.__)("resetting customizer options","blocksy-companion");if("erase_widgets_data"===n)return(0,o.__)("resetting widgets","blocksy-companion");if("content_installer_progress"===n){if(!e.kind)return"";var r=t.content.preliminary_data["".concat(e.kind,"_count")],a=t.content["".concat(e.kind,"_count")];return"".concat(Math.min(a,r)," of ").concat(r," ").concat({users:(0,o.__)("users","blocksy-companion"),term:(0,o.__)("terms","blocksy-companion"),media:(0,o.__)("images","blocksy-companion"),post:(0,o.__)("posts","blocksy-companion"),comment:(0,o.__)("comments","blocksy-companion")}[e.kind])}return""};function Ee(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 we(e){for(var t=1;t<arguments.length;t++){var n=null!=arguments[t]?arguments[t]:{};t%2?Ee(Object(n),!0).forEach((function(t){ke(e,t,n[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(n)):Ee(Object(n)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(n,t))}))}return e}function ke(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}function Oe(e,t){return function(e){if(Array.isArray(e))return e}(e)||function(e,t){if("undefined"!=typeof Symbol&&Symbol.iterator in Object(e)){var n=[],r=!0,o=!1,a=void 0;try{for(var i,c=e[Symbol.iterator]();!(r=(i=c.next()).done)&&(n.push(i.value),!t||n.length!==t);r=!0);}catch(e){o=!0,a=e}finally{try{r||null==c.return||c.return()}finally{if(o)throw a}}return n}}(e,t)||function(e,t){if(e){if("string"==typeof e)return xe(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)?xe(e,t):void 0}}(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 xe(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(e){e.preventDefault(),e.returnValue=""},Ce=function(e){var t=e.demoConfiguration,n=e.pluginsStatus,r=e.is_child_theme,o=e.includeMetaSteps,a=[];return void 0!==o&&o&&a.push("register_current_demo"),t.child_theme&&(r||a.push("child_theme")),t.plugins.filter((function(e){var t=e.enabled,r=e.plugin;return!!t&&!n[r]})).length>0&&a.push("plugins"),t.content.erase_content&&a.push("erase_content"),t.content.options&&a.push("options"),t.content.widgets&&a.push("widgets"),t.content.content&&a.push("content"),a.push("install_finish"),a},je=function(t){var n=t.demoConfiguration,r=t.style,a=function(t){var n=(0,e.useContext)(He),r=n.demos_list,a=n.currentDemo,i=(n.setCurrentDemo,n.setInstallerBlockingReleased),c=n.setCurrentlyInstalledDemo,l=n.pluginsStatus,s=(0,e.useContext)(L),u=(s.home_url,s.customizer_url,s.is_child_theme),m=(s.Link,Oe((0,e.useState)(!1),2)),d=m[0],p=m[1],f=Oe((0,e.useState)(0),2),h=f[0],y=f[1],b=Oe((a||"").split(":"),2),v=b[0],g=(b[1],r.filter((function(e){return e.name===v})).sort((function(e,t){return e.builder<t.builder?-1:e.builder>t.builder?1:0}))),_=t.plugins.filter((function(e){var t=e.enabled,n=e.plugin;return t&&!l[n]})).map((function(e){return e.plugin})),E=Oe((0,e.useState)({register_current_demo:{title:(0,o.__)("Register demo","blocksy-companion"),query_string:"action=blocksy_demo_register_current_demo&wp_customize=on&demo_name=".concat(a,":").concat(null===t.builder?g[0].builder:t.builder),expected_signals:1},child_theme:{title:(0,o.__)("Child theme","blocksy-companion"),query_string:"action=blocksy_demo_install_child_theme",expected_signals:3},plugins:{title:(0,o.__)("Required plugins","blocksy-companion"),query_string:"action=blocksy_demo_activate_plugins&plugins=".concat(_.join(":")),expected_signals:2*_.length+1},fake_step:{title:(0,o.__)("Fake Required plugins","blocksy-companion"),query_string:"action=blocksy_demo_fake_step",expected_signals:6},erase_content:{title:(0,o.__)("Erase content","blocksy-companion"),query_string:"action=blocksy_demo_erase_content&wp_customize=on",expected_signals:6},install_finish:{title:(0,o.__)("Final touches","blocksy-companion"),query_string:"action=blocksy_demo_install_finish&wp_customize=on",expected_signals:1},options:{title:(0,o.__)("Import options","blocksy-companion"),query_string:"action=blocksy_demo_install_options&wp_customize=on&demo_name=".concat(a,":").concat(null===t.builder?g[0].builder:t.builder),expected_signals:5},widgets:{title:(0,o.__)("Import widgets","blocksy-companion"),query_string:"action=blocksy_demo_install_widgets&wp_customize=on&demo_name=".concat(a,":").concat(null===t.builder?g[0].builder:t.builder),expected_signals:3},content:{title:(0,o.__)("Import content","blocksy-companion"),query_string:"action=blocksy_demo_install_content&wp_customize=on&demo_name=".concat(a,":").concat(null===t.builder?g[0].builder:t.builder),expected_signals:50}}),2),w=E[0],k=E[1],O=Ce({demoConfiguration:t,pluginsStatus:l,is_child_theme:u,includeMetaSteps:!0}),x=O[h],S=Oe((0,e.useState)(0),2),C=S[0],j=S[1],D=Oe((0,e.useState)(null),2),A=D[0],P=D[1],N=(0,e.useRef)(C),M=(0,e.useRef)(w);(0,e.useEffect)((function(){N.current=C,M.current=w}));var z=function(e){return"content"===e?1===O.length?100:50:O.indexOf("content")>-1?50/(O.length-1):100/O.length},T=O.reduce((function(e,t,n){return n>=h?e:e+z(t)}),0)+100*C/w[x].expected_signals*(z(x)/100),I=function(){var e=w[x],t=new EventSource("".concat(ctDashboardLocalizations.ajax_url,"?").concat(e.query_string));t.onmessage=function(e){var n=JSON.parse(e.data);if(j(N.current+1),"content_installer_progress"===n.action){var r=n.kind;r&&(P(n),k(we(we({},M.current),{},{content:we(we({},M.current.content),{},ke({},"".concat(r,"_count"),M.current.content["".concat(r,"_count")]+1))})))}else P(n);if("get_content_preliminary_data"===n.action){var o=n.data,a=(o.comment_count,o.media_count,o.post_count,o.term_count,o.users,we(we({},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}));k(we(we({},M.current),{},{content:we(we({},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(),h===O.length-1)return p(!0),i(!0),void window.removeEventListener("beforeunload",Se);P(null),j(0),y(Math.min(O.length-1,h+1))}}};return(0,e.useEffect)((function(){d||(P(null),j(0),"fake_step"===x?(console.log("here we go delay before fake_step"),setTimeout((function(){I()}),2e3)):I())}),[x]),(0,e.useEffect)((function(){return window.addEventListener("beforeunload",Se),c({demo:"".concat(a,":").concat(t.builder)}),function(){window.removeEventListener("beforeunload",Se)}}),[]),{isCompleted:d,stepName:x,stepsDescriptors:w,lastMessage:A,progress:T}}(n),i=a.isCompleted,c=a.stepName,l=a.stepsDescriptors,s=a.lastMessage,u=a.progress;return(0,e.createElement)("div",{className:"ct-demo-install",style:r},(0,e.createElement)(j.Transition,{initial:!0,items:i,from:{opacity:0},enter:[{opacity:1}],leave:[{opacity:0}],config:function(e,t){return"leave"===t?{duration:300}:{delay:300,duration:300}}},(function(t){return function(n){return(0,e.createElement)("div",{style:n},t?(0,e.createElement)(ge,null):(0,e.createElement)(e.Fragment,null,(0,e.createElement)("i",{className:"ct-demo-icon"},(0,e.createElement)("svg",{width:"40",height:"40",viewBox:"0 0 50 50"},(0,e.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"}),(0,e.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"}),(0,e.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"}))),(0,e.createElement)("h2",null,(0,o.__)("Installing","blocksy-companion"),"..."),(0,e.createElement)("p",null,(0,o.__)("Please be patient and don't refresh this page, the import process may take a while, this also depends on your server.","blocksy-companion")),(0,e.createElement)("div",{className:"ct-progress-info"},l[c].title,s&&_e(s,l)?": ".concat(_e(s,l)):"",(0,e.createElement)("span",null,Math.round(u),"%")),(0,e.createElement)("div",{style:{"--progress":"".concat(u,"%")},className:"ct-installer-progress"},(0,e.createElement)("div",null))))}})))};function De(e){return function(e){if(Array.isArray(e))return Ne(e)}(e)||function(e){if("undefined"!=typeof Symbol&&Symbol.iterator in Object(e))return Array.from(e)}(e)||Pe(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 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)){var n=[],r=!0,o=!1,a=void 0;try{for(var i,c=e[Symbol.iterator]();!(r=(i=c.next()).done)&&(n.push(i.value),!t||n.length!==t);r=!0);}catch(e){o=!0,a=e}finally{try{r||null==c.return||c.return()}finally{if(o)throw a}}return n}}(e,t)||Pe(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 Pe(e,t){if(e){if("string"==typeof e)return Ne(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)?Ne(e,t):void 0}}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(t){t.location,t.navigate;var n=Ae((0,e.useState)(!0),2),r=(n[0],n[1],(0,e.useContext)(He)),a=r.installerBlockingReleased,c=r.demos_list,l=r.currentDemo,s=r.pluginsStatus,u=r.currentlyInstalledDemo,m=r.setCurrentDemo,d=(0,e.useContext)(L).is_child_theme,p=Ae((0,e.useState)(u),2),f=p[0],h=p[1],y=Ae((0,e.useState)({builder:"",child_theme:!1,plugins:[],content:{options:!0,widgets:!0,content:!0,erase_content:!0}}),2),b=y[0],v=y[1],g=Ae((0,e.useState)(0),2),_=g[0],E=g[1],w=Ae((l||"").split(":"),2),k=w[0],O=(w[1],["modify_demo","child_theme","builder","plugins","content","installer"].filter((function(e){if(!l)return!1;if("modify_demo"===e){if(!f)return!1;if(-1===f.demo.indexOf(k))return!1}if("child_theme"===e&&d)return!1;var t=c.filter((function(e){return e.name===k})).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(De(e),De(t.plugins||[]))}),[]).filter((function(e){return!s[e]})).length)&&("builder"!==e||t.length>1)}))),x=O[_];return(0,e.useEffect)((function(){if(k&&!(l.indexOf(":hide")>-1)){var e=c.filter((function(e){return e.name===k})).sort((function(e,t){return e.builder<t.builder?-1:e.builder>t.builder?1:0}));E(0),h(u),v({builder:1===e.length?e[0].builder:null,child_theme:!1,plugins:e[0].plugins.map((function(e){return{plugin:e,enabled:!0}})),content:{options:!0,widgets:!0,content:!0,erase_content:!0}})}}),[l]),(0,e.createElement)(A,{items:l,isVisible:function(e){return e&&-1===e.indexOf(":hide")},className:i()("ct-demo-modal",{"ct-demo-installer":"installer"===x||"modify_demo"===x}),onDismiss:function(){("installer"!==x||a)&&m("".concat(k,":hide"))},render:function(){return(0,e.createElement)("div",{className:"ct-modal-content ct-demo-step-container"},(0,e.createElement)("div",{className:"ct-current-step"},(0,e.createElement)(j.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(t){return function(n){return(0,e.createElement)(e.Fragment,null,"modify_demo"===t&&(0,e.createElement)(ae,{demoConfiguration:b,nextStep:function(){E(Math.min(_+1,O.length-1))},style:n}),"child_theme"===t&&(0,e.createElement)(se,{style:n,demoConfiguration:b,setDemoConfiguration:v}),"plugins"===t&&(0,e.createElement)(te,{demoConfiguration:b,style:n,setDemoConfiguration:v}),"builder"===t&&(0,e.createElement)(fe,{style:n,demoConfiguration:b,setDemoConfiguration:v}),"content"===t&&(0,e.createElement)(ve,{style:n,demoConfiguration:b,setDemoConfiguration:v}),"installer"===t&&(0,e.createElement)(je,{style:n,demoConfiguration:b}))}}))),"installer"!==x&&"modify_demo"!==x&&(0,e.createElement)("div",{className:"ct-demo-step-controls"},_>0&&(0,e.createElement)("button",{className:"ct-demo-btn demo-back-btn",onClick:function(){E(Math.max(_-1,0))}},(0,o.__)("Back","blocksy-companion")),O.length>2&&(0,e.createElement)("ul",{className:"ct-steps-pills"},O.map((function(t,n){return n===O.length-1?null:(0,e.createElement)("li",{className:i()({active:t===x}),key:t},n+1)}))),(0,e.createElement)("button",{className:"ct-demo-btn demo-main-btn",disabled:"content"===x&&0===Ce({demoConfiguration:b,pluginsStatus:s,is_child_theme:d}).length,onClick:function(){E(Math.min(_+1,O.length-1))}},"content"===x?(0,o.__)("Install","blocksy-companion"):(0,o.__)("Next","blocksy-companion"))))}})},Le=n(162),ze=n.n(Le);function Te(e,t,n,r,o,a,i){try{var c=e[a](i),l=c.value}catch(e){return void n(e)}c.done?t(l):Promise.resolve(l).then(r,o)}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)){var n=[],r=!0,o=!1,a=void 0;try{for(var i,c=e[Symbol.iterator]();!(r=(i=c.next()).done)&&(n.push(i.value),!t||n.length!==t);r=!0);}catch(e){o=!0,a=e}finally{try{r||null==c.return||c.return()}finally{if(o)throw a}}return n}}(e,t)||function(e,t){if(e){if("string"==typeof e)return Re(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)?Re(e,t):void 0}}(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){(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(){var t=Ie((0,e.useState)(!1),2),n=t[0],r=t[1],a=Ie((0,e.useState)(!1),2),i=a[0],c=a[1],l=Ie((0,e.useState)(""),2),s=l[0],u=l[1],m=Ie((0,e.useState)(""),2),d=m[0],p=m[1],f=Ie((0,e.useState)("coblocks,elementor,contact-form-7"),2),h=f[0],y=f[1],b=Ie((0,e.useState)(""),2),v=b[0],g=b[1],_=Ie((0,e.useState)(!1),2),E=_[0],w=_[1],k=function(){var e,t=(e=regeneratorRuntime.mark((function e(){var t,n,o,a,i,c;return regeneratorRuntime.wrap((function(e){for(;;)switch(e.prev=e.next){case 0:return r(!0),(t=new FormData).append("action","blocksy_demo_export"),t.append("name",s),t.append("is_pro",E),t.append("url",v),t.append("builder",d),t.append("plugins",h),t.append("wp_customize","on"),e.prev=9,e.next=12,fetch(ctDashboardLocalizations.ajax_url,{method:"POST",body:t});case 12:if(200!==(n=e.sent).status){e.next=20;break}return e.next=16,n.json();case 16:o=e.sent,a=o.success,i=o.data,a&&(c=new Blob([JSON.stringify(i.demo)],{type:"text/plain;charset=utf-8"}),ze().saveAs(c,"".concat(s,".json")));case 20:e.next=24;break;case 22:e.prev=22,e.t0=e.catch(9);case 24:r(!1);case 25:case"end":return e.stop()}}),e,null,[[9,22]])})),function(){var t=this,n=arguments;return new Promise((function(r,o){var a=e.apply(t,n);function i(e){Te(a,r,o,i,c,"next",e)}function c(e){Te(a,r,o,i,c,"throw",e)}i(void 0)}))});return function(){return t.apply(this,arguments)}}();return ct_localizations.is_dev_mode?(0,e.createElement)("div",{className:"ct-export"},(0,e.createElement)("button",{className:"ct-button",onClick:function(e){c(!0)}},(0,o.__)("Site export")),(0,e.createElement)(A,{items:i,className:"ct-site-export-modal",onDismiss:function(){return c(!1)},render:function(){return(0,e.createElement)("div",{className:"ct-site-export"},(0,e.createElement)("label",null,(0,o.__)("Name","blocksy-companion"),(0,e.createElement)("input",{type:"text",placeholder:(0,o.__)("Name","blocksy-companion"),value:s,onChange:function(e){var t=e.target.value;return u(t)}})),(0,e.createElement)("label",null,(0,o.__)("Preview URL","blocksy-companion"),(0,e.createElement)("input",{type:"text",placeholder:(0,o.__)("Preview URL","blocksy-companion"),value:v,onChange:function(e){var t=e.target.value;return g(t)}})),(0,e.createElement)("label",null,(0,o.__)("PRO","blocksy-companion"),(0,e.createElement)("input",{type:"checkbox",value:E,onChange:function(e){return e.target.value,w(!E)}})),(0,e.createElement)("label",null,(0,o.__)("Builder","blocksy-companion"),(0,e.createElement)("input",{type:"text",placeholder:(0,o.__)("Builder","blocksy-companion"),value:d,onChange:function(e){var t=e.target.value;return p(t)}})),(0,e.createElement)("label",null,(0,o.__)("Plugins","blocksy-companion"),(0,e.createElement)("textarea",{placeholder:(0,o.__)("Plugins","blocksy-companion"),value:h,onChange:function(e){var t=e.target.value;return y(t)}})),(0,e.createElement)("button",{className:"ct-button",disabled:n,onClick:function(){return k()}},n?(0,o.__)("Loading...","blocksy-companion"):(0,o.__)("Export site","blocksy-companion")))}})):null};function Be(e,t,n,r,o,a,i){try{var c=e[a](i),l=c.value}catch(e){return void n(e)}c.done?t(l):Promise.resolve(l).then(r,o)}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)){var n=[],r=!0,o=!1,a=void 0;try{for(var i,c=e[Symbol.iterator]();!(r=(i=c.next()).done)&&(n.push(i.value),!t||n.length!==t);r=!0);}catch(e){o=!0,a=e}finally{try{r||null==c.return||c.return()}finally{if(o)throw a}}return n}}(e,t)||function(e,t){if(e){if("string"==typeof e)return Ve(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)?Ve(e,t):void 0}}(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 Ve(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 He=(0,e.createContext)({demos:[]}),qe=null,We=null,Ze=function(t){t.children,t.path,t.location;var n=Ue((0,e.useState)(!qe),2),r=n[0],a=n[1],i=Ue((0,e.useState)(qe||[]),2),c=i[0],l=i[1],s=Ue((0,e.useState)(We||{}),2),u=s[0],m=s[1],d=Ue((0,e.useState)(null),2),p=d[0],f=d[1],h=Ue((0,e.useState)(null),2),y=h[0],b=h[1],v=Ue((0,e.useState)(!1),2),g=v[0],_=v[1],E=Ue((0,e.useState)({builder:""}),2),w=(E[0],E[1],Ue((0,e.useState)(!1),2)),k=w[0],O=w[1],x=function(){var e,t=(e=regeneratorRuntime.mark((function e(){var t,n,r,o,i,c=arguments;return regeneratorRuntime.wrap((function(e){for(;;)switch(e.prev=e.next){case 0:return c.length>0&&void 0!==c[0]&&c[0]&&a(!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,i=r.data,o&&(l(i.demos),m(i.active_plugins),b(i.current_installed_demo),_(i.demo_error),We=i.active_plugins,qe=i.demos,i.demo_error);case 15:e.next=19;break;case 17:e.prev=17,e.t0=e.catch(4);case 19:a(!1);case 20:case"end":return e.stop()}}),e,null,[[4,17]])})),function(){var t=this,n=arguments;return new Promise((function(r,o){var a=e.apply(t,n);function i(e){Be(a,r,o,i,c,"next",e)}function c(e){Be(a,r,o,i,c,"throw",e)}i(void 0)}))});return function(){return t.apply(this,arguments)}}();return(0,e.useEffect)((function(){x(!qe)}),[]),(0,e.createElement)("div",{className:"ct-demos-list-container"},g&&(0,e.createElement)("div",{className:"ct-demo-notification",dangerouslySetInnerHTML:{__html:g}}),(0,e.createElement)(j.Transition,{items:r,from:{opacity:0},enter:[{opacity:1}],leave:[{opacity:0}],config:function(e,t){return"leave"===t?{duration:300}:{delay:300,duration:300}}},(function(t){return t?function(t){return(0,e.createElement)(j.animated.p,{style:t,className:"ct-loading-text"},(0,e.createElement)("span",null),(0,o.__)("Loading Starter Sites...","blocksy-companion"))}:0===c.length?function(t){return(0,e.createElement)(j.animated.div,{style:t},(0,e.createElement)("div",{className:"ct-demo-notification",dangerouslySetInnerHTML:{__html:(0,o.__)("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.","blocksy-companion")}}),(0,e.createElement)(F,null))}:function(t){return(0,e.createElement)(j.animated.div,{style:t},(0,e.createElement)(e.Fragment,null,(0,e.createElement)(He.Provider,{value:{demo_error:g,demos_list:c.filter((function(e){return!e.dev||ct_localizations.is_dev_mode})),currentDemo:p,pluginsStatus:u,installerBlockingReleased:k,setInstallerBlockingReleased:O,setCurrentDemo:f,currentlyInstalledDemo:y,setCurrentlyInstalledDemo:b}},(0,e.createElement)(ne,null),(0,e.createElement)(Me,null),(0,e.createElement)(Fe,null)),(0,e.createElement)(F,null)))}})))};function $e(e,t,n,r,o,a,i){try{var c=e[a](i),l=c.value}catch(e){return void n(e)}c.done?t(l):Promise.resolve(l).then(r,o)}var Ge=function(){var t=function(){var e,t=(e=regeneratorRuntime.mark((function e(){var t,n,r,o,a,i;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,o=r.success,r.data,o&&((a=document.createElement("div")).innerHTML=ctDashboardLocalizations.plugin_data.connect_template,i=a.querySelector("form"),document.body.appendChild(i),i.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,o){var a=e.apply(t,n);function i(e){$e(a,r,o,i,c,"next",e)}function c(e){$e(a,r,o,i,c,"throw",e)}i(void 0)}))});return function(){return t.apply(this,arguments)}}();return(0,e.createElement)("div",{className:"ct-freemius-optin-message"},(0,e.createElement)("i",null,(0,e.createElement)("svg",{width:"20",height:"20",viewBox:"0 0 24 24",fill:"currentColor",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"},(0,e.createElement)("path",{d:"M18 8A6 6 0 0 0 6 8c0 7-3 9-3 9h18s-3-2-3-9"}),(0,e.createElement)("path",{d:"M13.73 21a2 2 0 0 1-3.46 0"}))),(0,e.createElement)("h2",null,(0,o.__)("Stay Updated","blocksy-companion")),(0,e.createElement)("p",null,(0,o.__)("Never miss an important update - opt in to our security & feature updates notifications, and non-sensitive diagnostic tracking.","blocksy-companion")),(0,e.createElement)("button",{className:"ct-button-primary",onClick:function(e){e.preventDefault(),t()}},(0,o.__)("Allow & Continue","blocksy-companion")))};r().on("ct:dashboard:routes",(function(t){t.push({Component:function(){return(0,e.createElement)(G,null)},path:"/extensions"}),"yes"===ctDashboardLocalizations.plugin_data.has_demo_install&&t.push({Component:function(t){return(0,e.createElement)(Ze,t)},path:"/demos"})})),r().on("ct:dashboard:navigation-links",(function(e){"yes"===ctDashboardLocalizations.plugin_data.has_demo_install&&e.push({text:(0,o.__)("Starter Sites","blocksy-companion"),path:"demos",getProps:function(e){var t=e.isPartiallyCurrent;return e.isCurrent,t?{"aria-current":"page"}:{}}}),e.push({text:(0,o.__)("Extensions","blocksy-companion"),path:"/extensions"})})),r().on("ct:dashboard:home:before",(function(t){ctDashboardLocalizations.plugin_data.is_anonymous&&(t.content=(0,e.createElement)(Ge,null))})),r().on("ct:dashboard:heading:after",(function(t){ctDashboardLocalizations.plugin_data.is_pro&&(t.content=(0,e.createElement)("span",null,"PRO"))}))}()}();
1
  /*! For license information please see dashboard.js.LICENSE.txt */
2
+ !function(){var e={184:function(e,t){var n;!function(){"use strict";var r={}.hasOwnProperty;function o(){for(var e=[],t=0;t<arguments.length;t++){var n=arguments[t];if(n){var a=typeof n;if("string"===a||"number"===a)e.push(n);else if(Array.isArray(n)&&n.length){var i=o.apply(null,n);i&&e.push(i)}else if("object"===a)for(var c in n)r.call(n,c)&&n[c]&&e.push(c)}}return e.join(" ")}e.exports?(o.default=o,e.exports=o):void 0===(n=function(){return o}.apply(t,[]))||(e.exports=n)}()},162:function(e,t,n){var r;void 0===(r=function(){"use strict";function t(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 r(e){var t=new XMLHttpRequest;t.open("HEAD",e,!1);try{t.send()}catch(e){}return 200<=t.status&&299>=t.status}function o(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 a="object"==typeof window&&window.window===window?window:"object"==typeof self&&self.self===self?self:"object"==typeof n.g&&n.g.global===n.g?n.g:void 0,i=a.saveAs||("object"!=typeof window||window!==a?function(){}:"download"in HTMLAnchorElement.prototype?function(e,n,i){var c=a.URL||a.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?o(l):r(l.href)?t(e,n,i):o(l,l.target="_blank")):(l.href=c.createObjectURL(e),setTimeout((function(){c.revokeObjectURL(l.href)}),4e4),setTimeout((function(){o(l)}),0))}:"msSaveOrOpenBlob"in navigator?function(e,n,a){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,a),n);else if(r(e))t(e,n,a);else{var i=document.createElement("a");i.href=e,i.target="_blank",setTimeout((function(){o(i)}))}}:function(e,n,r,o){if((o=o||open("","_blank"))&&(o.document.title=o.document.body.innerText="downloading..."),"string"==typeof e)return t(e,n,r);var i="application/octet-stream"===e.type,c=/constructor/i.test(a.HTMLElement)||a.safari,l=/CriOS\/[\d]+/.test(navigator.userAgent);if((l||i&&c)&&"object"==typeof FileReader){var s=new FileReader;s.onloadend=function(){var e=s.result;e=l?e:e.replace(/^data:[^;]*;/,"data:attachment/file;"),o?o.location.href=e:location=e,o=null},s.readAsDataURL(e)}else{var u=a.URL||a.webkitURL,m=u.createObjectURL(e);o?o.location=m:location.href=m,o=null,setTimeout((function(){u.revokeObjectURL(m)}),4e4)}});a.saveAs=i.saveAs=i,e.exports=i}.apply(t,[]))||(e.exports=r)},172:function(e,t,n){var r,o,a=n(760),i=n(529),c=(o=[],{activateTrap:function(e){if(o.length>0){var t=o[o.length-1];t!==e&&t.pause()}var n=o.indexOf(e);-1===n||o.splice(n,1),o.push(e)},deactivateTrap:function(e){var t=o.indexOf(e);-1!==t&&o.splice(t,1),o.length>0&&o[o.length-1].unpause()}});function l(e){return setTimeout(e,0)}e.exports=function(e,t){var n=document,o="string"==typeof e?n.querySelector(e):e,s=i({returnFocusOnDeactivate:!0,escapeDeactivates:!0},t),u={firstTabbableNode:null,lastTabbableNode:null,nodeFocusedBeforeActivation:null,mostRecentlyFocusedNode:null,active:!1,paused:!1},m={activate:function(e){if(!u.active){E(),u.active=!0,u.paused=!1,u.nodeFocusedBeforeActivation=n.activeElement;var t=e&&e.onActivate?e.onActivate:s.onActivate;return t&&t(),d(),m}},deactivate:p,pause:function(){!u.paused&&u.active&&(u.paused=!0,f())},unpause:function(){u.paused&&u.active&&(u.paused=!1,E(),d())}};return m;function p(e){if(u.active){clearTimeout(r),f(),u.active=!1,u.paused=!1,c.deactivateTrap(m);var t=e&&void 0!==e.onDeactivate?e.onDeactivate:s.onDeactivate;return t&&t(),(e&&void 0!==e.returnFocus?e.returnFocus:s.returnFocusOnDeactivate)&&l((function(){var e;w((e=u.nodeFocusedBeforeActivation,h("setReturnFocus")||e))})),m}}function d(){if(u.active)return c.activateTrap(m),r=l((function(){w(y())})),n.addEventListener("focusin",v,!0),n.addEventListener("mousedown",b,{capture:!0,passive:!1}),n.addEventListener("touchstart",b,{capture:!0,passive:!1}),n.addEventListener("click",_,{capture:!0,passive:!1}),n.addEventListener("keydown",g,{capture:!0,passive:!1}),m}function f(){if(u.active)return n.removeEventListener("focusin",v,!0),n.removeEventListener("mousedown",b,!0),n.removeEventListener("touchstart",b,!0),n.removeEventListener("click",_,!0),n.removeEventListener("keydown",g,!0),m}function h(e){var t=s[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 y(){var e;if(!(e=null!==h("initialFocus")?h("initialFocus"):o.contains(n.activeElement)?n.activeElement:u.firstTabbableNode||h("fallbackFocus")))throw new Error("Your focus-trap needs to have at least one focusable element");return e}function b(e){o.contains(e.target)||(s.clickOutsideDeactivates?p({returnFocus:!a.isFocusable(e.target)}):s.allowOutsideClick&&s.allowOutsideClick(e)||e.preventDefault())}function v(e){o.contains(e.target)||e.target instanceof Document||(e.stopImmediatePropagation(),w(u.mostRecentlyFocusedNode||y()))}function g(e){if(!1!==s.escapeDeactivates&&function(e){return"Escape"===e.key||"Esc"===e.key||27===e.keyCode}(e))return e.preventDefault(),void p();(function(e){return"Tab"===e.key||9===e.keyCode})(e)&&function(e){if(E(),e.shiftKey&&e.target===u.firstTabbableNode)return e.preventDefault(),void w(u.lastTabbableNode);e.shiftKey||e.target!==u.lastTabbableNode||(e.preventDefault(),w(u.firstTabbableNode))}(e)}function _(e){s.clickOutsideDeactivates||o.contains(e.target)||s.allowOutsideClick&&s.allowOutsideClick(e)||(e.preventDefault(),e.stopImmediatePropagation())}function E(){var e=a(o);u.firstTabbableNode=e[0]||y(),u.lastTabbableNode=e[e.length-1]||y()}function w(e){e!==n.activeElement&&(e&&e.focus?(e.focus(),u.mostRecentlyFocusedNode=e,function(e){return e.tagName&&"input"===e.tagName.toLowerCase()&&"function"==typeof e.select}(e)&&e.select()):w(y()))}}},703:function(e,t,n){"use strict";var r=n(414);function o(){}function a(){}a.resetWarningCache=o,e.exports=function(){function e(e,t,n,o,a,i){if(i!==r){var c=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 c.name="Invariant Violation",c}}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:a,resetWarningCache:o};return n.PropTypes=n,n}},697:function(e,t,n){e.exports=n(703)()},414:function(e){"use strict";e.exports="SECRET_DO_NOT_PASS_THIS_OR_YOU_WILL_BE_FIRED"},760:function(e){var t=["input","select","textarea","a[href]","button","[tabindex]","audio[controls]","video[controls]",'[contenteditable]:not([contenteditable="false"])'],n=t.join(","),r="undefined"==typeof Element?function(){}:Element.prototype.matches||Element.prototype.msMatchesSelector||Element.prototype.webkitMatchesSelector;function o(e,t){t=t||{};var o,i,c,u=[],m=[],p=e.querySelectorAll(n);for(t.includeContainer&&r.call(e,n)&&(p=Array.prototype.slice.apply(p)).unshift(e),o=0;o<p.length;o++)a(i=p[o])&&(0===(c=l(i))?u.push(i):m.push({documentOrder:o,tabIndex:c,node:i}));return m.sort(s).map((function(e){return e.node})).concat(u)}function a(e){return!(!i(e)||function(e){return function(e){return u(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)||l(e)<0)}function i(e){return!(e.disabled||function(e){return u(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!==r.call(e,n)&&a(e)},o.isFocusable=function(e){if(!e)throw new Error("No node provided");return!1!==r.call(e,c)&&i(e)};var c=t.concat("iframe").join(",");function l(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 u(e){return"INPUT"===e.tagName}e.exports=o},529:function(e){e.exports=function(){for(var e={},n=0;n<arguments.length;n++){var r=arguments[n];for(var o in r)t.call(r,o)&&(e[o]=r[o])}return e};var t=Object.prototype.hasOwnProperty}},t={};function n(r){var o=t[r];if(void 0!==o)return o.exports;var a=t[r]={exports:{}};return e[r].call(a.exports,a,a.exports,n),a.exports}n.n=function(e){var t=e&&e.__esModule?function(){return e.default}:function(){return e};return n.d(t,{a:t}),t},n.d=function(e,t){for(var r in t)n.o(t,r)&&!n.o(e,r)&&Object.defineProperty(e,r,{enumerable:!0,get:t[r]})},n.g=function(){if("object"==typeof globalThis)return globalThis;try{return this||new Function("return this")()}catch(e){if("object"==typeof window)return window}}(),n.o=function(e,t){return Object.prototype.hasOwnProperty.call(e,t)},function(){"use strict";var e=window.wp.element,t=window.ctEvents,r=n.n(t),o=window.wp.i18n,a=n(184),i=n.n(a),c=window.React,l=n.n(c);function s(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}function u(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}n(697);var m=function(e){return e.initialState,e.getInitialState,e.refs,e.getRefs,e.didMount,e.didUpdate,e.willUnmount,e.getSnapshotBeforeUpdate,e.shouldUpdate,e.render,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"])},p=function(e){function t(){var n,r;s(this,t);for(var o=arguments.length,a=Array(o),i=0;i<o;i++)a[i]=arguments[i];return n=r=u(this,e.call.apply(e,[this].concat(a))),d.call(r),u(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,o=this._refs;return{state:e,props:m(t),refs:o,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}(l().Component);p.defaultProps={getInitialState:function(){},getRefs:function(){return{}}};var d=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)}},f=p,h=function(t){var n=t.children,r=t.container,o=void 0===r?document.body:r,a=t.type,i=void 0===a?"reach-portal":a;return(0,e.createElement)(f,{getRefs:function(){return{node:null}},didMount:function(e){var t=e.refs,n=e.forceUpdate,r=o.hasOwnProperty("current")?o.current:o;t.node=document.createElement(i),r.appendChild(t.node),n()},willUnmount:function(e){var t=e.refs.node,n=o.hasOwnProperty("current")?o.current:o;n&&n.removeChild(t)},render:function(t){var r=t.refs.node;return r?(0,e.createPortal)(n,r):null}})},y=function(e,t){return function(n){if(e&&e(n),!n.defaultPrevented)return t(n)}},b=n(172),v=n.n(b);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},g.apply(this,arguments)}function _(e,t){if(null==e)return{};var n,r,o=function(e,t){if(null==e)return{};var n,r,o={},a=Object.keys(e);for(r=0;r<a.length;r++)n=a[r],t.indexOf(n)>=0||(o[n]=e[n]);return o}(e,t);if(Object.getOwnPropertySymbols){var a=Object.getOwnPropertySymbols(e);for(r=0;r<a.length;r++)n=a[r],t.indexOf(n)>=0||Object.prototype.propertyIsEnumerable.call(e,n)&&(o[n]=e[n])}return o}var E=function(){},w=function(){},k=function(e){var t=e.refs;t.trap.deactivate(),t.disposeAriaHider()},O=React.createContext(),x=React.forwardRef((function(t,n){var r=t.container,o=t.isOpen,a=void 0===o||o,i=t.onDismiss,c=void 0===i?E:i,l=t.initialFocusRef,s=t.onClick,u=t.onKeyDown,m=_(t,["container","isOpen","onDismiss","initialFocusRef","onClick","onKeyDown"]);return(0,e.createElement)(f,{didMount:w},a?(0,e.createElement)(h,{container:r,"data-reach-dialog-wrapper":!0},(0,e.createElement)(f,{refs:{overlayNode:null,contentNode:null},didMount:function(e){!function(e,t){var n,r,o;e.disposeAriaHider=(n=e.overlayNode,r=[],o=[],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),o.push(e),e.setAttribute("aria-hidden","true"))}})),function(){o.forEach((function(e,t){var n=r[t];null===n?e.removeAttribute("aria-hidden"):e.setAttribute("aria-hidden",n)}))}),e.trap=v()(e.overlayNode,{initialFocus:t?function(){return t.current}:void 0,fallbackFocus:e.contentNode,escapeDeactivates:!1,clickOutsideDeactivates:!1})}(e.refs,l)},willUnmount:k},(function(t){var r=t.refs;return(0,e.createElement)(O.Provider,{value:function(e){return r.contentNode=e}},(0,e.createElement)("div",g({"data-reach-dialog-overlay":!0,onClick:y(s,(function(e){e.stopPropagation(),c()})),onKeyDown:y(u,(function(e){"Escape"===e.key&&(e.stopPropagation(),c())})),ref:function(e){r.overlayNode=e,n&&n(e)}},m)))}))):null)}));x.propTypes={initialFocusRef:function(){}};var S=function(e){return e.stopPropagation()},C=React.forwardRef((function(t,n){var r=t.onClick,o=(t.onKeyDown,_(t,["onClick","onKeyDown"]));return(0,e.createElement)(O.Consumer,null,(function(t){return(0,e.createElement)("div",g({"aria-modal":"true","data-reach-dialog-content":!0,tabIndex:"-1",onClick:y(r,S),ref:function(e){t(e),n&&n(e)}},o))}))})),j=window.blocksyOptions,D=function(e){return!!e},P=function(t){var n=t.items,r=t.isVisible,o=void 0===r?D:r,a=t.render,c=t.className,l=t.onDismiss;return(0,e.createElement)(j.Transition,{items:n,onStart:function(){return document.body.classList[o(n)?"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(t){return o(t)&&function(n){return(0,e.createElement)(x,{style:{opacity:n.opacity},container:document.querySelector("#wpbody"),onDismiss:function(){return l()}},(0,e.createElement)(C,{className:i()("ct-admin-modal",c),style:{transform:"translate3d(0px, ".concat(n.y,"px, 0px)")}},(0,e.createElement)("button",{className:"close-button",onClick:function(){return l()}},"×"),a(t,n)))}}))};function A(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 N=function(t){var n,r,o=(n=(0,e.useState)(!1),r=2,function(e){if(Array.isArray(e))return e}(n)||function(e,t){if("undefined"!=typeof Symbol&&Symbol.iterator in Object(e)){var n=[],r=!0,o=!1,a=void 0;try{for(var i,c=e[Symbol.iterator]();!(r=(i=c.next()).done)&&(n.push(i.value),!t||n.length!==t);r=!0);}catch(e){o=!0,a=e}finally{try{r||null==c.return||c.return()}finally{if(o)throw a}}return n}}(n,r)||function(e,t){if(e){if("string"==typeof e)return A(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)?A(e,t):void 0}}(n,r)||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.")}()),a=o[0],i=o[1];return[function(){return i(!0)},(0,e.createElement)(P,{items:a,onDismiss:function(){return i(!1)},render:function(){return(0,e.createElement)("div",{className:"ct-modal-content",dangerouslySetInnerHTML:{__html:t.readme}})}})]},M=window.ctDashboardLocalizations.DashboardContext,z=(M.Provider,M.Consumer,M);function L(e,t,n,r,o,a,i){try{var c=e[a](i),l=c.value}catch(e){return void n(e)}c.done?t(l):Promise.resolve(l).then(r,o)}function T(e){return function(){var t=this,n=arguments;return new Promise((function(r,o){var a=e.apply(t,n);function i(e){L(a,r,o,i,c,"next",e)}function c(e){L(a,r,o,i,c,"throw",e)}i(void 0)}))}}function I(e,t){return function(e){if(Array.isArray(e))return e}(e)||function(e,t){if("undefined"!=typeof Symbol&&Symbol.iterator in Object(e)){var n=[],r=!0,o=!1,a=void 0;try{for(var i,c=e[Symbol.iterator]();!(r=(i=c.next()).done)&&(n.push(i.value),!t||n.length!==t);r=!0);}catch(e){o=!0,a=e}finally{try{r||null==c.return||c.return()}finally{if(o)throw a}}return n}}(e,t)||function(e,t){if(e){if("string"==typeof e)return B(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)?B(e,t):void 0}}(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){(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 R=function(){return ctDashboardLocalizations.plugin_data.hide_support_section?null:(0,e.createElement)("div",{className:"ct-support-container"},(0,e.createElement)("h2",null,(0,o.__)("Need help or advice?","blocksy-companion")),(0,e.createElement)("p",null,(0,o.__)("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.","blocksy-companion")),(0,e.createElement)("a",{href:ctDashboardLocalizations.support_url,className:"ct-button","data-hover":"blue",target:"_blank"},(0,o.__)("Submit a Support Ticket","blocksy-companion")),(0,e.createElement)("a",{href:"https://www.facebook.com/groups/blocksy.community",className:"ct-button","data-hover":"blue",target:"_blank"},(0,o.__)("Join Facebook Community","blocksy-companion")))};function F(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 U(e){for(var t=1;t<arguments.length;t++){var n=null!=arguments[t]?arguments[t]:{};t%2?F(Object(n),!0).forEach((function(t){V(e,t,n[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(n)):F(Object(n)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(n,t))}))}return e}function V(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}function H(e,t,n,r,o,a,i){try{var c=e[a](i),l=c.value}catch(e){return void n(e)}c.done?t(l):Promise.resolve(l).then(r,o)}function q(e,t){return function(e){if(Array.isArray(e))return e}(e)||function(e,t){if("undefined"!=typeof Symbol&&Symbol.iterator in Object(e)){var n=[],r=!0,o=!1,a=void 0;try{for(var i,c=e[Symbol.iterator]();!(r=(i=c.next()).done)&&(n.push(i.value),!t||n.length!==t);r=!0);}catch(e){o=!0,a=e}finally{try{r||null==c.return||c.return()}finally{if(o)throw a}}return n}}(e,t)||function(e,t){if(e){if("string"==typeof e)return W(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)?W(e,t):void 0}}(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 W(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 G=null,Z=function(t){var n=t.extension,r=t.onExtsSync,a=q(N(n),2),c=a[0],l=a[1],s=q(function(t){var n=arguments.length>1&&void 0!==arguments[1]?arguments[1]:function(){},r=I((0,e.useState)(!1),2),a=r[0],i=r[1],c=I((0,e.useState)(!1),2),l=c[0],s=c[1],u=(0,e.useContext)(z),m=(u.Link,u.history),p=ctDashboardLocalizations.plugin_data.is_pro,d=function(){var e=T(regeneratorRuntime.mark((function e(){var r;return regeneratorRuntime.wrap((function(e){for(;;)switch(e.prev=e.next){case 0:if(p||!t.config.pro){e.next=3;break}return s(!0),e.abrupt("return");case 3:return(r=new FormData).append("ext",t.name),r.append("action",t.__object?"blocksy_extension_deactivate":"blocksy_extension_activate"),i(!0),e.prev=7,e.next=10,fetch(ctDashboardLocalizations.ajax_url,{method:"POST",body:r});case 10:t.config.require_refresh&&location.reload(),n(),e.next=16;break;case 14:e.prev=14,e.t0=e.catch(7);case 16:i(!1);case 17:case"end":return e.stop()}}),e,null,[[7,14]])})));return function(){return e.apply(this,arguments)}}();return[a,d,!p&&t.config.pro?(0,e.createElement)(P,{items:l,className:"ct-onboarding-modal",onDismiss:function(){return s(!1)},render:function(){return(0,e.createElement)("div",{className:"ct-modal-content"},(0,e.createElement)("svg",{width:"55",height:"55",viewBox:"0 0 40.5 48.3"},(0,e.createElement)("path",{fill:"#2d82c8",d:"M33.4 29.4l7.1 12.3-7.4.6-4 6-7.3-12.9"}),(0,e.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"}),(0,e.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"}),(0,e.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"})),(0,e.createElement)("h2",{className:"ct-modal-title"},"This is a Pro extension"),(0,e.createElement)("p",null,(0,o.__)("Upgrade to the Pro version and get instant access to all premium extensions, features and future updates.","blocksy-companion")),(0,e.createElement)("div",{className:"ct-modal-actions has-divider","data-buttons":"2"},(0,e.createElement)("a",{onClick:function(e){e.preventDefault(),s(!1),setTimeout((function(){m.navigate("/pro")}),300)},className:"button"},(0,o.__)("Free vs Pro","blocksy")),(0,e.createElement)("a",{href:"https://creativethemes.com/blocksy/pricing/",target:"_blank",className:"button button-primary"},(0,o.__)("Upgrade Now","blocksy-companion"))))}}):null]}(n,(function(){r()})),3),u=s[0],m=s[1],p=s[2];return(0,e.createElement)("li",{className:i()({active:!!n.__object})},(0,e.createElement)("h4",{className:"ct-extension-title"},n.config.name,u&&(0,e.createElement)("svg",{width:"15",height:"15",viewBox:"0 0 100 100"},(0,e.createElement)("g",{transform:"translate(50,50)"},(0,e.createElement)("g",{transform:"scale(1)"},(0,e.createElement)("circle",{cx:"0",cy:"0",r:"50",fill:"#687c93"}),(0,e.createElement)("circle",{cx:"0",cy:"-26",r:"12",fill:"#ffffff",transform:"rotate(161.634)"},(0,e.createElement)("animateTransform",{attributeName:"transform",type:"rotate",calcMode:"linear",values:"0 0 0;360 0 0",keyTimes:"0;1",dur:"1s",begin:"0s",repeatCount:"indefinite"})))))),n.config.description&&(0,e.createElement)("div",{className:"ct-extension-description"},n.config.description),(0,e.createElement)("div",{className:"ct-extension-actions"},(0,e.createElement)("button",{className:i()(n.__object?"ct-button":"ct-button-primary"),"data-hover":"white",disabled:u,onClick:function(){m()}},n.__object?(0,o.__)("Deactivate","blocksy-companion"):(0,o.__)("Activate","blocksy-companion")),n.readme&&(0,e.createElement)("button",{onClick:function(){return c()},className:"ct-minimal-button ct-instruction"},(0,e.createElement)("svg",{width:"16",height:"16",viewBox:"0 0 24 24"},(0,e.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"}))),n.__object&&n.config&&n.config.buttons&&n.config.buttons.map((function(t,n){var r=t.text,o=t.url;return(0,e.createElement)("a",{href:o,className:"ct-button ct-config-btn",dataButton:"white"},r)}))),l,p)},$=function(){var t=q((0,e.useState)(!G),2),n=t[0],a=t[1],c=q((0,e.useState)(G||[]),2),l=c[0],s=c[1],u=q((0,e.useState)(!1),2),m=u[0],p=u[1],d=q((0,e.useState)("free"),2),f=d[0],h=d[1],y=function(){var e,t=(e=regeneratorRuntime.mark((function e(){var t,n,r,o,i,c,l,u,m,d=arguments;return regeneratorRuntime.wrap((function(e){for(;;)switch(e.prev=e.next){case 0:return t=d.length>0&&void 0!==d[0]?d[0]:{},n=U({verbose:!1,extension:null,extAction:null},t),r=n.verbose,o=n.extension,i=n.extAction,r&&a(!0),p(!0),e.next=6,fetch("".concat(wp.ajax.settings.url,"?action=blocksy_extensions_status"),U({method:"POST"},o&&i?{body:JSON.stringify({extension:o,extAction:i})}:{}));case 6:if(200===(c=e.sent).status){e.next=9;break}return e.abrupt("return");case 9:return e.next=11,c.json();case 11:if(l=e.sent,u=l.success,m=l.data,u){e.next=16;break}return e.abrupt("return");case 16:if(p(!1),a(!1),s(m),G=m,!o){e.next=22;break}return e.abrupt("return",m[o]);case 22:return e.abrupt("return",m);case 23:case"end":return e.stop()}}),e)})),function(){var t=this,n=arguments;return new Promise((function(r,o){var a=e.apply(t,n);function i(e){H(a,r,o,i,c,"next",e)}function c(e){H(a,r,o,i,c,"throw",e)}i(void 0)}))});return function(){return t.apply(this,arguments)}}();(0,e.useEffect)((function(){y({verbose:!G});var e=function(){y()};return r().on("blocksy_exts_sync_exts",e),function(){r().off("blocksy_exts_sync_exts",e)}}),[]);var b=(0,e.useMemo)((function(){return Object.values(l).map((function(e,t){return U(U({},e),{},{name:Object.keys(l)[t]})})).find((function(e){return e.config.pro}))}),[l]),v=(0,e.useMemo)((function(){return Object.values(l).map((function(e,t){return U(U({},e),{},{name:Object.keys(l)[t]})})).filter((function(e){return!e.config.hidden})).filter((function(e){var t=e.config;return"free"===f?!t.pro:t.pro}))}),[f,l]);return(0,e.createElement)(e.Fragment,null,(0,e.createElement)("div",{className:"ct-extensions-container"},(0,e.createElement)(j.Transition,{items:n,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(t){return t?function(t){return(0,e.createElement)(j.animated.p,{style:t,className:"ct-loading-text"},(0,e.createElement)("span",null),(0,o.__)("Loading Extensions Status...","blocksy-companion"))}:function(t){return(0,e.createElement)(j.animated.div,{style:t},(0,e.createElement)(e.Fragment,null,b&&(0,e.createElement)("ul",{className:"ct-extensions-sourse"},["free","pro"].map((function(t){return(0,e.createElement)("li",{key:t,onClick:function(){return h(t)},className:i()({active:t===f})},{free:(0,o.__)("Free Extensions","blocksy-companion"),pro:(0,o.__)("Pro Extensions","blocksy-companion")}[t])}))),(0,e.createElement)("ul",{className:i()("ct-extensions-list",{"is-pro":"pro"===f})},v.map((function(t){var n={extension:Z};return r().trigger("ct:extensions:card",{CustomComponent:n,extension:t}),(0,e.createElement)(n.extension,{key:t.name,extension:t,extsSyncLoading:m,onExtsSync:function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{};return e.extAction||(l[t.name].__object=!l[t.name].__object,s(l)),y(U(U({},e),{},{extension:t.name}))}})}))),(0,e.createElement)(R,null)))}}))))},K=function(t){var n=t.children,r=t.activated,o=t.checked,a=t.onChange;return(0,e.createElement)("div",{onClick:function(){return a()},className:i()("ct-checkbox-container",{activated:r})},n,(0,e.createElement)("span",{className:i()("ct-checkbox",{active:o})},(0,e.createElement)("svg",{width:"10",height:"8",viewBox:"0 0 11.2 9.1"},(0,e.createElement)("polyline",{class:"check",points:"1.2,4.8 4.4,7.9 9.9,1.2 "}))))};function J(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 Y(e){for(var t=1;t<arguments.length;t++){var n=null!=arguments[t]?arguments[t]:{};t%2?J(Object(n),!0).forEach((function(t){X(e,t,n[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(n)):J(Object(n)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(n,t))}))}return e}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 Q(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 ee=function(e){return{"stackable-ultimate-gutenberg-blocks":"Stackable – Gutenberg Blocks","wpforms-lite":"WPForms - Contact Form",woocommerce:"WooCommerce",elementor:"Elementor",brizy:"Brizy",getwid:"Getwid","simply-gallery-block":"SimpLy Gallery Block & Lightbox","recipe-card-blocks-by-wpzoom":"Recipe Card Blocks by WPZOOM","map-block-gutenberg":"Map Block for Google Maps","mb-custom-post-type":"MB Custom Post Types & Custom Taxonomies",leadin:"HubSpot","block-slider":"Block Slider"}},te=function(e){return(ee[e]||e).replace(/\b\w/,(function(e){return e.toUpperCase()}))},ne=function(t){var n,r,a=t.demoConfiguration,i=t.setDemoConfiguration,c=t.style,l=(0,e.useContext)(qe),s=l.currentDemo,u=l.demos_list,m=l.pluginsStatus,p=(l.setCurrentDemo,n=(s||"").split(":"),r=2,function(e){if(Array.isArray(e))return e}(n)||function(e,t){if("undefined"!=typeof Symbol&&Symbol.iterator in Object(e)){var n=[],r=!0,o=!1,a=void 0;try{for(var i,c=e[Symbol.iterator]();!(r=(i=c.next()).done)&&(n.push(i.value),!t||n.length!==t);r=!0);}catch(e){o=!0,a=e}finally{try{r||null==c.return||c.return()}finally{if(o)throw a}}return n}}(n,r)||function(e,t){if(e){if("string"==typeof e)return Q(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)?Q(e,t):void 0}}(n,r)||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.")}()),d=p[0];return p[1],u.filter((function(e){return e.name===d||""})),(0,e.createElement)("div",{style:c},(0,e.createElement)("div",{className:"ct-demo-plugins"},(0,e.createElement)("i",{className:"ct-demo-icon"},(0,e.createElement)("svg",{width:"40",height:"40",viewBox:"0 0 40 40"},(0,e.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"}),(0,e.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"}))),(0,e.createElement)("h2",null,(0,o.__)("Install & Activate Plugins","blocksy-companion")),(0,e.createElement)("p",null,(0,o.__)("The following plugins are required for this starter site in order to work properly.","blocksy-companion")),a.plugins.map((function(t){var n=t.plugin,r=t.enabled;return(0,e.createElement)(e.Fragment,{key:n},!m[n]&&(0,e.createElement)(K,{key:n,checked:r,onChange:function(){return i(Y(Y({},a),{},{plugins:a.plugins.map((function(e){return e.plugin===n?Y(Y({},e),{},{enabled:!r}):e}))}))}},te(n)),m[n]&&(0,e.createElement)(K,{activated:!0,checked:!0,onChange:function(){}},te(n)))}))))},re=function(){var t=(0,e.useContext)(qe),n=t.currentlyInstalledDemo,r=t.demos_list,a=t.setCurrentDemo,c=t.demo_error,l=t.setInstallerBlockingReleased;return(0,e.useContext)(z).Link,(0,e.createElement)("ul",null,r.filter((function(e,t){return r.map((function(e){return e.name})).indexOf(e.name)===t})).map((function(t){return(0,e.createElement)("li",{key:t.name,className:i()("ct-single-demo",{"ct-is-pro":t.is_pro})},(0,e.createElement)("figure",null,(0,e.createElement)("img",{src:t.screenshot}),(0,e.createElement)("section",null,(0,e.createElement)("h3",null,(0,o.__)("Available for","blocksy-companion")),(0,e.createElement)("div",null,r.filter((function(e){return e.name===t.name||""})).sort((function(e,t){return e.builder<t.builder?-1:e.builder>t.builder?1:0})).map((function(t){var n=t.builder;return(0,e.createElement)("span",{key:n},te(n)||"Gutenberg")})))),t.is_pro&&(0,e.createElement)("a",{onClick:function(e){return e.preventDefault()},href:"#"},"PRO")),(0,e.createElement)("div",{className:"ct-demo-actions"},(0,e.createElement)("h4",null,t.name),(0,e.createElement)("div",null,(0,e.createElement)("a",{className:"ct-button",target:"_blank",href:t.url},(0,o.__)("Preview","blocksy-companion")),(0,e.createElement)("button",{className:"ct-button-primary",onClick:function(){l(!1),a(t.name)},disabled:!!c},n&&n.demo.indexOf(t.name)>-1?(0,o.__)("Modify","blocksy-companion"):(0,o.__)("Import","blocksy-companion")))))})))};function oe(e,t){return function(e){if(Array.isArray(e))return e}(e)||function(e,t){if("undefined"!=typeof Symbol&&Symbol.iterator in Object(e)){var n=[],r=!0,o=!1,a=void 0;try{for(var i,c=e[Symbol.iterator]();!(r=(i=c.next()).done)&&(n.push(i.value),!t||n.length!==t);r=!0);}catch(e){o=!0,a=e}finally{try{r||null==c.return||c.return()}finally{if(o)throw a}}return n}}(e,t)||function(e,t){if(e){if("string"==typeof e)return ae(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)?ae(e,t):void 0}}(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 ae(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 ie=function(t){var n=t.style,r=t.nextStep,a=((0,e.useContext)(z).is_child_theme,(0,e.useContext)(qe)),i=a.setCurrentlyInstalledDemo,c=a.setCurrentDemo,l=a.currentDemo,s=a.demos_list,u=oe((0,e.useState)(0),2),m=u[0],p=u[1],d=oe((0,e.useState)("idle"),2),f=d[0],h=d[1],y=oe((l||"").split(":"),2),b=y[0],v=(y[1],s.filter((function(e){return e.name===b}))),g={erase_content:{title:(0,o.__)("Erase content","blocksy-companion"),query_string:"action=blocksy_demo_erase_content&wp_customize=on"},deactivate_demo_plugins:{title:(0,o.__)("Deactivate demo plugins","blocksy-companion"),query_string:"action=blocksy_demo_deactivate_plugins&plugins=".concat(v[0].plugins.join(":"))},deregister_current_demo:{title:(0,o.__)("Erase content","blocksy-companion"),query_string:"action=blocksy_demo_deregister_current_demo"}},_=["erase_content","deactivate_demo_plugins","deregister_current_demo"],E=_[m],w=function(){var e=g[E],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(),m===_.length-1)return void h("done");p(Math.min(_.length-1,m+1))}}};return(0,e.useEffect)((function(){0!==m&&"done"!==f&&w()}),[E]),(0,e.createElement)("div",{className:"ct-modify-demo",style:n},(0,e.createElement)("i",{className:"ct-demo-icon"},(0,e.createElement)("svg",{width:"36",height:"36",viewBox:"0 0 40 40"},(0,e.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"}),(0,e.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"===f&&(0,e.createElement)("h2",null,(0,o.__)("This starter site is already installed","blocksy-companion")),"loading"===f&&(0,e.createElement)("h2",null,"Removing starter site..."),"done"===f&&(0,e.createElement)(e.Fragment,null,(0,e.createElement)("h2",null,(0,o.__)("Starter Site Removed","blocksy-companion")),(0,e.createElement)("div",{className:"ct-modify-actions"},(0,e.createElement)("button",{className:"ct-demo-btn ct-dismiss",onClick:function(e){e.preventDefault(),c("".concat(b,":hide"))}},(0,o.__)("Dismiss","blocksy-companion")))),"idle"===f&&(0,e.createElement)(e.Fragment,null,(0,e.createElement)("p",null,(0,o.__)("What steps do you want to perform next?","blocksy-companion")),(0,e.createElement)("div",{className:"ct-modify-actions"},(0,e.createElement)("button",{className:"ct-demo-btn demo-remove",onClick:function(e){h("loading"),e.preventDefault(),w(),i()}},(0,o.__)("Remove","blocksy-companion")),(0,e.createElement)("button",{className:"ct-demo-btn",onClick:function(e){e.preventDefault(),r()}},(0,o.__)("Reinstall","blocksy-companion")))))};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 le(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){se(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 se(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}var ue=function(t){var n=t.demoConfiguration,r=t.setDemoConfiguration,a=t.style,i=(0,e.useContext)(z),c=i.is_child_theme,l=i.child_theme_exists;return(0,e.createElement)("div",{className:"ct-demo-child",style:a},(0,e.createElement)("i",{className:"ct-demo-icon"},(0,e.createElement)("svg",{width:"40",height:"40",viewBox:"0 0 43 41.1"},(0,e.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"}),(0,e.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"}),(0,e.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"}),(0,e.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"}),(0,e.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"}),(0,e.createElement)("rect",{x:"11.2",y:"11",fill:"#44ACDF",width:"16.8",height:"17.9"}),(0,e.createElement)("rect",{x:"31.5",y:"11",fill:"#44ACDF",width:"7.9",height:"17.9"}))),l?(0,e.createElement)("h2",null,(0,o.__)("Activate Child Theme","blocksy-companion")):(0,e.createElement)("h2",null,(0,o.__)("Install Child Theme","blocksy-companion")),!c&&(0,e.createElement)(e.Fragment,null,l?(0,e.createElement)("p",null,(0,o.__)("We strongly recommend to activate the child theme, this way you will have freedom to make changes without breaking the parent theme.","blocksy-companion")):(0,e.createElement)("p",null,(0,o.__)("We strongly recommend to install the child theme, this way you will have freedom to make changes without breaking the parent theme.","blocksy-companion")),(0,e.createElement)(K,{checked:n.child_theme,onChange:function(){return r(le(le({},n),{},{child_theme:!n.child_theme}))}},l?(0,o.__)("Activate Child Theme","blocksy-companion"):(0,o.__)("Install Child Theme","blocksy-companion"))),c&&(0,o.__)("You already have a child theme properly installed and activated. Move on.","blocksy-companion"),(0,e.createElement)("a",{href:"https://developer.wordpress.org/themes/advanced-topics/child-themes/",target:"_blank"},(0,o.__)("Learn more about child themes","blocksy-companion")))};function me(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 pe(e){for(var t=1;t<arguments.length;t++){var n=null!=arguments[t]?arguments[t]:{};t%2?me(Object(n),!0).forEach((function(t){de(e,t,n[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(n)):me(Object(n)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(n,t))}))}return e}function de(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}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 he=function(t){var n,r,a=t.demoConfiguration,c=t.setDemoConfiguration,l=t.style,s=(0,e.useContext)(qe),u=s.currentDemo,m=s.demos_list,p=(s.pluginsStatus,s.setCurrentDemo,n=(u||"").split(":"),r=2,function(e){if(Array.isArray(e))return e}(n)||function(e,t){if("undefined"!=typeof Symbol&&Symbol.iterator in Object(e)){var n=[],r=!0,o=!1,a=void 0;try{for(var i,c=e[Symbol.iterator]();!(r=(i=c.next()).done)&&(n.push(i.value),!t||n.length!==t);r=!0);}catch(e){o=!0,a=e}finally{try{r||null==c.return||c.return()}finally{if(o)throw a}}return n}}(n,r)||function(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}}(n,r)||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.")}()),d=p[0],f=(p[1],m.filter((function(e){return e.name===d||""})));return(0,e.createElement)("div",{style:l},f.length>1&&(0,e.createElement)("div",{className:"ct-demo-builder"},(0,e.createElement)("i",{className:"ct-demo-icon"},(0,e.createElement)("svg",{width:"52",height:"40",viewBox:"0 0 52 40"},(0,e.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"}),(0,e.createElement)("path",{fill:"#CFDBE4",d:"M13.8,14.6v18.8h22.6V14.6H13.8zM34.8,31.9H15.4V16.1h19.4V31.9z"}),(0,e.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"}),(0,e.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"}),(0,e.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"}),(0,e.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"}),(0,e.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"}))),(0,e.createElement)("h2",null,(0,o.__)("Choose Page Builder","blocksy-companion")),(0,e.createElement)("p",null,(0,o.__)("This starter site can be imported and used with one of these page builders. Please select your prefered one in order to continue.","blocksy-companion")),(0,e.createElement)("ul",{"data-count":f.length},f.sort((function(e,t){return e.builder<t.builder?-1:e.builder>t.builder?1:0})).map((function(t){var n=t.builder,r=t.plugins;return(0,e.createElement)("li",{className:i()({active:n===(null===a.builder?f[0].builder:a.builder)}),onClick:function(){return c(pe(pe({},a),{},{builder:n,plugins:r.map((function(e){return{plugin:e,enabled:!0}}))}))}},(0,e.createElement)("figure",null,(0,e.createElement)("span",{className:i()("ct-checkbox",{active:n===(null===a.builder?f[0].builder:a.builder)})},(0,e.createElement)("svg",{width:"10",height:"8",viewBox:"0 0 11.2 9.1"},(0,e.createElement)("polyline",{className:"check",points:"1.2,4.8 4.4,7.9 9.9,1.2 "}))),""===n&&(0,e.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 150 100"},(0,e.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"===n&&(0,e.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 150 100"},(0,e.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"}),(0,e.createElement)("path",{fill:"#a7b2dd",d:"M14.6 63.2l10.8-6.5L75 86.8l49.9-30 10.5 6.4L75 100z"})),"elementor"===n&&(0,e.createElement)("svg",{xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 150 100"},(0,e.createElement)("path",{d:"M32.5 7.6h17v84.9h-17V7.6zm34 84.9h51v-17h-51v17zm0-34h51v-17h-51v17zm0-51v17h51v-17h-51z"}))),(0,e.createElement)("div",{className:"builder-name"},te(n)||"Gutenberg"))})))))};function ye(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 be(e){for(var t=1;t<arguments.length;t++){var n=null!=arguments[t]?arguments[t]:{};t%2?ye(Object(n),!0).forEach((function(t){ve(e,t,n[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(n)):ye(Object(n)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(n,t))}))}return e}function ve(e,t,n){return t in e?Object.defineProperty(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}var ge=function(t){var n=t.demoConfiguration,r=t.setDemoConfiguration,a=(t.currentDemo,t.style);return(0,e.createElement)("div",{style:a},(0,e.createElement)("i",{className:"ct-demo-icon"},(0,e.createElement)("svg",{width:"40",height:"40",viewBox:"0 0 40 40"},(0,e.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"}),(0,e.createElement)("rect",{x:"2.5",y:"14",width:"35",height:"3",rx:"1.5",fill:"#0c7ab3"}),(0,e.createElement)("rect",{x:"5",y:"7",width:"30",height:"3",rx:"1.5",fill:"#3497d3"}),(0,e.createElement)("rect",{x:"7.5",width:"25",height:"3",rx:"1.5",fill:"#44acdf"}))),(0,e.createElement)("h2",null,(0,o.__)("Import Content","blocksy-companion")),(0,e.createElement)("p",null,(0,o.__)("This will import posts, pages, comments, navigation menus, custom fields, terms and custom posts","blocksy-companion")),["options","widgets","content"].map((function(t){return(0,e.createElement)(K,{checked:n.content[t],onChange:function(){return r(be(be({},n),{},{content:be(be({},n.content),{},ve({},t,!n.content[t]))}))},key:t},t.split("_").map((function(e){return e.replace(/^\w/,(function(e){return e.toUpperCase()}))})).join(" "))})),(0,e.createElement)("div",{className:"ct-demo-erase"},(0,e.createElement)(K,{checked:n.content.erase_content,onChange:function(){return r(be(be({},n),{},{content:be(be({},n.content),{},{erase_content:!n.content.erase_content})}))}},(0,e.createElement)("div",null,(0,o.__)("Clean Install","blocksy-companion"),(0,e.createElement)("i",null,(0,o.__)("This option will remove the previous imported content and will perform a fresh and clean install.","blocksy-companion"))))))},_e=function(){var t=(0,e.useContext)(z),n=t.home_url,r=t.customizer_url;return(0,e.createElement)("div",{className:"ct-install-success"},(0,e.createElement)("h2",null,(0,o.__)("Starter Site Imported Successfully","blocksy-companion")),(0,e.createElement)("p",null,(0,o.__)("Now you can view your website or start customizing it","blocksy-companion")),(0,e.createElement)("div",null,(0,e.createElement)("a",{href:r,className:"ct-button"},(0,o.__)("Customize","blocksy-companion")),(0,e.createElement)("a",{href:n,target:"_blank",className:"ct-button-primary"},(0,o.__)("View site","blocksy-companion"))))},Ee=function(e,t){var n=e.action;if("complete"===n)return"";if("import_install_child"===n)return(0,o.__)("copying child theme sources","blocksy-companion");if("import_activate_child"===n)return(0,o.__)("activating child theme","blocksy-companion");if("install_plugin"===n)return(0,o.sprintf)((0,o.__)("installing plugin %s","blocksy-companion"),te(e.name)||e.name);if("activate_plugin"===n)return(0,o.sprintf)((0,o.__)("activating plugin %s","blocksy-companion"),te(e.name)||e.name);if("download_demo_widgets"===n)return(0,o.__)("downloading demo widgets","blocksy-companion");if("apply_demo_widgets"===n)return(0,o.__)("installing demo widgets","blocksy-companion");if("download_demo_options"===n)return(0,o.__)("downloading demo options","blocksy-companion");if("import_mods_images"===n)return(0,o.__)("importing images from customizer","blocksy-companion");if("import_customizer_options"===n)return(0,o.__)("import customizer options","blocksy-companion");if("activate_required_extensions"===n)return(0,o.__)("activating required extensions","blocksy-companion");if("erase_previous_posts"===n)return(0,o.__)("removing previously installed posts","blocksy-companion");if("erase_previous_terms"===n)return(0,o.__)("removing previously installed taxonomies","blocksy-companion");if("erase_default_pages"===n)return(0,o.__)("removing default WordPress pages","blocksy-companion");if("erase_customizer_settings"===n)return(0,o.__)("resetting customizer options","blocksy-companion");if("erase_widgets_data"===n)return(0,o.__)("resetting widgets","blocksy-companion");if("content_installer_progress"===n){if(!e.kind)return"";var r=t.content.preliminary_data["".concat(e.kind,"_count")],a=t.content["".concat(e.kind,"_count")];return"".concat(Math.min(a,r)," of ").concat(r," ").concat({users:(0,o.__)("users","blocksy-companion"),term:(0,o.__)("terms","blocksy-companion"),media:(0,o.__)("images","blocksy-companion"),post:(0,o.__)("posts","blocksy-companion"),comment:(0,o.__)("comments","blocksy-companion")}[e.kind])}return""};function we(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 ke(e){for(var t=1;t<arguments.length;t++){var n=null!=arguments[t]?arguments[t]:{};t%2?we(Object(n),!0).forEach((function(t){Oe(e,t,n[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(n)):we(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 xe(e,t){return function(e){if(Array.isArray(e))return e}(e)||function(e,t){if("undefined"!=typeof Symbol&&Symbol.iterator in Object(e)){var n=[],r=!0,o=!1,a=void 0;try{for(var i,c=e[Symbol.iterator]();!(r=(i=c.next()).done)&&(n.push(i.value),!t||n.length!==t);r=!0);}catch(e){o=!0,a=e}finally{try{r||null==c.return||c.return()}finally{if(o)throw a}}return n}}(e,t)||function(e,t){if(e){if("string"==typeof e)return Se(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)?Se(e,t):void 0}}(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 Ce=function(e){e.preventDefault(),e.returnValue=""},je=function(e){var t=e.demoConfiguration,n=e.pluginsStatus,r=e.is_child_theme,o=e.includeMetaSteps,a=[];return void 0!==o&&o&&a.push("register_current_demo"),t.child_theme&&(r||a.push("child_theme")),t.plugins.filter((function(e){var t=e.enabled,r=e.plugin;return!!t&&!n[r]})).length>0&&a.push("plugins"),t.content.erase_content&&a.push("erase_content"),t.content.options&&a.push("options"),t.content.widgets&&a.push("widgets"),t.content.content&&a.push("content"),a.push("install_finish"),a},De=function(t){var n=t.demoConfiguration,r=t.style,a=function(t){var n=(0,e.useContext)(qe),r=n.demos_list,a=n.currentDemo,i=(n.setCurrentDemo,n.setInstallerBlockingReleased),c=n.setCurrentlyInstalledDemo,l=n.pluginsStatus,s=(0,e.useContext)(z),u=(s.home_url,s.customizer_url,s.is_child_theme),m=(s.Link,xe((0,e.useState)(!1),2)),p=m[0],d=m[1],f=xe((0,e.useState)(0),2),h=f[0],y=f[1],b=xe((a||"").split(":"),2),v=b[0],g=(b[1],r.filter((function(e){return e.name===v})).sort((function(e,t){return e.builder<t.builder?-1:e.builder>t.builder?1:0}))),_=t.plugins.filter((function(e){var t=e.enabled,n=e.plugin;return t&&!l[n]})).map((function(e){return e.plugin})),E=xe((0,e.useState)({register_current_demo:{title:(0,o.__)("Register demo","blocksy-companion"),query_string:"action=blocksy_demo_register_current_demo&wp_customize=on&demo_name=".concat(a,":").concat(null===t.builder?g[0].builder:t.builder),expected_signals:1},child_theme:{title:(0,o.__)("Child theme","blocksy-companion"),query_string:"action=blocksy_demo_install_child_theme",expected_signals:3},plugins:{title:(0,o.__)("Required plugins","blocksy-companion"),query_string:"action=blocksy_demo_activate_plugins&plugins=".concat(_.join(":")),expected_signals:2*_.length+1},fake_step:{title:(0,o.__)("Fake Required plugins","blocksy-companion"),query_string:"action=blocksy_demo_fake_step",expected_signals:6},erase_content:{title:(0,o.__)("Erase content","blocksy-companion"),query_string:"action=blocksy_demo_erase_content&wp_customize=on",expected_signals:6},install_finish:{title:(0,o.__)("Final touches","blocksy-companion"),query_string:"action=blocksy_demo_install_finish&wp_customize=on",expected_signals:1},options:{title:(0,o.__)("Import options","blocksy-companion"),query_string:"action=blocksy_demo_install_options&wp_customize=on&demo_name=".concat(a,":").concat(null===t.builder?g[0].builder:t.builder),expected_signals:5},widgets:{title:(0,o.__)("Import widgets","blocksy-companion"),query_string:"action=blocksy_demo_install_widgets&wp_customize=on&demo_name=".concat(a,":").concat(null===t.builder?g[0].builder:t.builder),expected_signals:3},content:{title:(0,o.__)("Import content","blocksy-companion"),query_string:"action=blocksy_demo_install_content&wp_customize=on&demo_name=".concat(a,":").concat(null===t.builder?g[0].builder:t.builder),expected_signals:50}}),2),w=E[0],k=E[1],O=je({demoConfiguration:t,pluginsStatus:l,is_child_theme:u,includeMetaSteps:!0}),x=O[h],S=xe((0,e.useState)(0),2),C=S[0],j=S[1],D=xe((0,e.useState)(null),2),P=D[0],A=D[1],N=(0,e.useRef)(C),M=(0,e.useRef)(w);(0,e.useEffect)((function(){N.current=C,M.current=w}));var L=function(e){return"content"===e?1===O.length?100:50:O.indexOf("content")>-1?50/(O.length-1):100/O.length},T=O.reduce((function(e,t,n){return n>=h?e:e+L(t)}),0)+100*C/w[x].expected_signals*(L(x)/100),I=function(){var e=w[x],t=new EventSource("".concat(ctDashboardLocalizations.ajax_url,"?").concat(e.query_string));t.onmessage=function(e){var n=JSON.parse(e.data);if(j(N.current+1),"content_installer_progress"===n.action){var r=n.kind;r&&(A(n),k(ke(ke({},M.current),{},{content:ke(ke({},M.current.content),{},Oe({},"".concat(r,"_count"),M.current.content["".concat(r,"_count")]+1))})))}else A(n);if("get_content_preliminary_data"===n.action){var o=n.data,a=(o.comment_count,o.media_count,o.post_count,o.term_count,o.users,ke(ke({},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}));k(ke(ke({},M.current),{},{content:ke(ke({},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(),h===O.length-1)return d(!0),i(!0),void window.removeEventListener("beforeunload",Ce);A(null),j(0),y(Math.min(O.length-1,h+1))}}};return(0,e.useEffect)((function(){p||(A(null),j(0),"fake_step"===x?(console.log("here we go delay before fake_step"),setTimeout((function(){I()}),2e3)):I())}),[x]),(0,e.useEffect)((function(){return window.addEventListener("beforeunload",Ce),c({demo:"".concat(a,":").concat(t.builder)}),function(){window.removeEventListener("beforeunload",Ce)}}),[]),{isCompleted:p,stepName:x,stepsDescriptors:w,lastMessage:P,progress:T}}(n),i=a.isCompleted,c=a.stepName,l=a.stepsDescriptors,s=a.lastMessage,u=a.progress;return(0,e.createElement)("div",{className:"ct-demo-install",style:r},(0,e.createElement)(j.Transition,{initial:!0,items:i,from:{opacity:0},enter:[{opacity:1}],leave:[{opacity:0}],config:function(e,t){return"leave"===t?{duration:300}:{delay:300,duration:300}}},(function(t){return function(n){return(0,e.createElement)("div",{style:n},t?(0,e.createElement)(_e,null):(0,e.createElement)(e.Fragment,null,(0,e.createElement)("i",{className:"ct-demo-icon"},(0,e.createElement)("svg",{width:"40",height:"40",viewBox:"0 0 50 50"},(0,e.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"}),(0,e.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"}),(0,e.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"}))),(0,e.createElement)("h2",null,(0,o.__)("Installing","blocksy-companion"),"..."),(0,e.createElement)("p",null,(0,o.__)("Please be patient and don't refresh this page, the import process may take a while, this also depends on your server.","blocksy-companion")),(0,e.createElement)("div",{className:"ct-progress-info"},l[c].title,s&&Ee(s,l)?": ".concat(Ee(s,l)):"",(0,e.createElement)("span",null,Math.round(u),"%")),(0,e.createElement)("div",{style:{"--progress":"".concat(u,"%")},className:"ct-installer-progress"},(0,e.createElement)("div",null))))}})))};function Pe(e){return function(e){if(Array.isArray(e))return Me(e)}(e)||function(e){if("undefined"!=typeof Symbol&&Symbol.iterator in Object(e))return Array.from(e)}(e)||Ne(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 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)){var n=[],r=!0,o=!1,a=void 0;try{for(var i,c=e[Symbol.iterator]();!(r=(i=c.next()).done)&&(n.push(i.value),!t||n.length!==t);r=!0);}catch(e){o=!0,a=e}finally{try{r||null==c.return||c.return()}finally{if(o)throw a}}return n}}(e,t)||Ne(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){if(e){if("string"==typeof e)return Me(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)?Me(e,t):void 0}}function Me(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(t){t.location,t.navigate;var n=Ae((0,e.useState)(!0),2),r=(n[0],n[1],(0,e.useContext)(qe)),a=r.installerBlockingReleased,c=r.demos_list,l=r.currentDemo,s=r.pluginsStatus,u=r.currentlyInstalledDemo,m=r.setCurrentDemo,p=(0,e.useContext)(z).is_child_theme,d=Ae((0,e.useState)(u),2),f=d[0],h=d[1],y=Ae((0,e.useState)({builder:"",child_theme:!1,plugins:[],content:{options:!0,widgets:!0,content:!0,erase_content:!0}}),2),b=y[0],v=y[1],g=Ae((0,e.useState)(0),2),_=g[0],E=g[1],w=Ae((l||"").split(":"),2),k=w[0],O=(w[1],["modify_demo","child_theme","builder","plugins","content","installer"].filter((function(e){if(!l)return!1;if("modify_demo"===e){if(!f)return!1;if(-1===f.demo.indexOf(k))return!1}if("child_theme"===e&&p)return!1;var t=c.filter((function(e){return e.name===k})).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(Pe(e),Pe(t.plugins||[]))}),[]).filter((function(e){return!s[e]})).length)&&("builder"!==e||t.length>1)}))),x=O[_];return(0,e.useEffect)((function(){if(k&&!(l.indexOf(":hide")>-1)){var e=c.filter((function(e){return e.name===k})).sort((function(e,t){return e.builder<t.builder?-1:e.builder>t.builder?1:0}));E(0),h(u),v({builder:1===e.length?e[0].builder:null,child_theme:!1,plugins:e[0].plugins.map((function(e){return{plugin:e,enabled:!0}})),content:{options:!0,widgets:!0,content:!0,erase_content:!0}})}}),[l]),(0,e.createElement)(P,{items:l,isVisible:function(e){return e&&-1===e.indexOf(":hide")},className:i()("ct-demo-modal",{"ct-demo-installer":"installer"===x||"modify_demo"===x}),onDismiss:function(){("installer"!==x||a)&&m("".concat(k,":hide"))},render:function(){return(0,e.createElement)("div",{className:"ct-modal-content ct-demo-step-container"},(0,e.createElement)("div",{className:"ct-current-step"},(0,e.createElement)(j.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(t){return function(n){return(0,e.createElement)(e.Fragment,null,"modify_demo"===t&&(0,e.createElement)(ie,{demoConfiguration:b,nextStep:function(){E(Math.min(_+1,O.length-1))},style:n}),"child_theme"===t&&(0,e.createElement)(ue,{style:n,demoConfiguration:b,setDemoConfiguration:v}),"plugins"===t&&(0,e.createElement)(ne,{demoConfiguration:b,style:n,setDemoConfiguration:v}),"builder"===t&&(0,e.createElement)(he,{style:n,demoConfiguration:b,setDemoConfiguration:v}),"content"===t&&(0,e.createElement)(ge,{style:n,demoConfiguration:b,setDemoConfiguration:v}),"installer"===t&&(0,e.createElement)(De,{style:n,demoConfiguration:b}))}}))),"installer"!==x&&"modify_demo"!==x&&(0,e.createElement)("div",{className:"ct-demo-step-controls"},_>0&&(0,e.createElement)("button",{className:"ct-demo-btn demo-back-btn",onClick:function(){E(Math.max(_-1,0))}},(0,o.__)("Back","blocksy-companion")),O.length>2&&(0,e.createElement)("ul",{className:"ct-steps-pills"},O.map((function(t,n){return n===O.length-1?null:(0,e.createElement)("li",{className:i()({active:t===x}),key:t},n+1)}))),(0,e.createElement)("button",{className:"ct-demo-btn demo-main-btn",disabled:"content"===x&&0===je({demoConfiguration:b,pluginsStatus:s,is_child_theme:p}).length,onClick:function(){E(Math.min(_+1,O.length-1))}},"content"===x?(0,o.__)("Install","blocksy-companion"):(0,o.__)("Next","blocksy-companion"))))}})},Le=n(162),Te=n.n(Le);function Ie(e,t,n,r,o,a,i){try{var c=e[a](i),l=c.value}catch(e){return void n(e)}c.done?t(l):Promise.resolve(l).then(r,o)}function Be(e,t){return function(e){if(Array.isArray(e))return e}(e)||function(e,t){if("undefined"!=typeof Symbol&&Symbol.iterator in Object(e)){var n=[],r=!0,o=!1,a=void 0;try{for(var i,c=e[Symbol.iterator]();!(r=(i=c.next()).done)&&(n.push(i.value),!t||n.length!==t);r=!0);}catch(e){o=!0,a=e}finally{try{r||null==c.return||c.return()}finally{if(o)throw a}}return n}}(e,t)||function(e,t){if(e){if("string"==typeof e)return Re(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)?Re(e,t):void 0}}(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){(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(){var t=Be((0,e.useState)(!1),2),n=t[0],r=t[1],a=Be((0,e.useState)(!1),2),i=a[0],c=a[1],l=Be((0,e.useState)(""),2),s=l[0],u=l[1],m=Be((0,e.useState)(""),2),p=m[0],d=m[1],f=Be((0,e.useState)(""),2),h=f[0],y=f[1],b=Be((0,e.useState)(""),2),v=b[0],g=b[1],_=Be((0,e.useState)(!1),2),E=_[0],w=_[1],k=function(){var e,t=(e=regeneratorRuntime.mark((function e(){var t,n,o,a,i,c;return regeneratorRuntime.wrap((function(e){for(;;)switch(e.prev=e.next){case 0:return r(!0),(t=new FormData).append("action","blocksy_demo_export"),t.append("name",s),t.append("is_pro",E),t.append("url",v),t.append("builder",p),t.append("plugins",h),t.append("wp_customize","on"),e.prev=9,e.next=12,fetch(ctDashboardLocalizations.ajax_url,{method:"POST",body:t});case 12:if(200!==(n=e.sent).status){e.next=20;break}return e.next=16,n.json();case 16:o=e.sent,a=o.success,i=o.data,a&&(c=new Blob([JSON.stringify(i.demo)],{type:"text/plain;charset=utf-8"}),Te().saveAs(c,"".concat(s,".json")));case 20:e.next=24;break;case 22:e.prev=22,e.t0=e.catch(9);case 24:r(!1);case 25:case"end":return e.stop()}}),e,null,[[9,22]])})),function(){var t=this,n=arguments;return new Promise((function(r,o){var a=e.apply(t,n);function i(e){Ie(a,r,o,i,c,"next",e)}function c(e){Ie(a,r,o,i,c,"throw",e)}i(void 0)}))});return function(){return t.apply(this,arguments)}}();return ct_localizations.is_dev_mode?(0,e.createElement)("div",{className:"ct-export"},(0,e.createElement)("button",{className:"ct-button",onClick:function(e){c(!0)}},(0,o.__)("Site export")),(0,e.createElement)(P,{items:i,className:"ct-site-export-modal",onDismiss:function(){return c(!1)},render:function(){return(0,e.createElement)("div",{className:"ct-site-export"},(0,e.createElement)("label",null,(0,o.__)("Name","blocksy-companion"),(0,e.createElement)("input",{type:"text",placeholder:(0,o.__)("Name","blocksy-companion"),value:s,onChange:function(e){var t=e.target.value;return u(t)}})),(0,e.createElement)("label",null,(0,o.__)("Preview URL","blocksy-companion"),(0,e.createElement)("input",{type:"text",placeholder:(0,o.__)("Preview URL","blocksy-companion"),value:v,onChange:function(e){var t=e.target.value;return g(t)}})),(0,e.createElement)("label",null,(0,o.__)("PRO","blocksy-companion"),(0,e.createElement)("input",{type:"checkbox",value:E,onChange:function(e){return e.target.value,w(!E)}})),(0,e.createElement)("label",null,(0,o.__)("Builder","blocksy-companion"),(0,e.createElement)("input",{type:"text",placeholder:(0,o.__)("Builder","blocksy-companion"),value:p,onChange:function(e){var t=e.target.value;return d(t)}})),(0,e.createElement)("h3",null,"Required plugins"),(0,e.createElement)("div",{className:"ct-bundled-plugins-list ct-modal-scroll"},Object.keys({"stackable-ultimate-gutenberg-blocks":"Stackable – Gutenberg Blocks","wpforms-lite":"WPForms - Contact Form",woocommerce:"WooCommerce",elementor:"Elementor",brizy:"Brizy",getwid:"Getwid","simply-gallery-block":"SimpLy Gallery Block & Lightbox","recipe-card-blocks-by-wpzoom":"Recipe Card Blocks by WPZOOM","map-block-gutenberg":"Map Block for Google Maps","mb-custom-post-type":"MB Custom Post Types & Custom Taxonomies",leadin:"HubSpot","block-slider":"Block Slider"}).map((function(t){return(0,e.createElement)("label",{tabindex:"0",onClick:function(e){e.preventDefault();var n=h.split(",");n.includes(t)?n.splice(n.indexOf(t),1):n.push(t),y(n.join(","))}},(0,e.createElement)("span",null,{"stackable-ultimate-gutenberg-blocks":"Stackable – Gutenberg Blocks","wpforms-lite":"WPForms - Contact Form",woocommerce:"WooCommerce",elementor:"Elementor",brizy:"Brizy",getwid:"Getwid","simply-gallery-block":"SimpLy Gallery Block & Lightbox","recipe-card-blocks-by-wpzoom":"Recipe Card Blocks by WPZOOM","map-block-gutenberg":"Map Block for Google Maps","mb-custom-post-type":"MB Custom Post Types & Custom Taxonomies",leadin:"HubSpot","block-slider":"Block Slider"}[t]),(0,e.createElement)("input",{type:"checkbox",checked:h.indexOf(t)>-1,onChange:function(e){e.target.checked}}))}))),(0,e.createElement)("button",{className:"ct-button",disabled:n,onClick:function(){return k()}},n?(0,o.__)("Loading...","blocksy-companion"):(0,o.__)("Export site","blocksy-companion")))}})):null};function Ue(e,t,n,r,o,a,i){try{var c=e[a](i),l=c.value}catch(e){return void n(e)}c.done?t(l):Promise.resolve(l).then(r,o)}function Ve(e,t){return function(e){if(Array.isArray(e))return e}(e)||function(e,t){if("undefined"!=typeof Symbol&&Symbol.iterator in Object(e)){var n=[],r=!0,o=!1,a=void 0;try{for(var i,c=e[Symbol.iterator]();!(r=(i=c.next()).done)&&(n.push(i.value),!t||n.length!==t);r=!0);}catch(e){o=!0,a=e}finally{try{r||null==c.return||c.return()}finally{if(o)throw a}}return n}}(e,t)||function(e,t){if(e){if("string"==typeof e)return He(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)?He(e,t):void 0}}(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 He(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 qe=(0,e.createContext)({demos:[]}),We=null,Ge=null,Ze=function(t){t.children,t.path,t.location;var n=Ve((0,e.useState)(!We),2),r=n[0],a=n[1],i=Ve((0,e.useState)(We||[]),2),c=i[0],l=i[1],s=Ve((0,e.useState)(Ge||{}),2),u=s[0],m=s[1],p=Ve((0,e.useState)(null),2),d=p[0],f=p[1],h=Ve((0,e.useState)(null),2),y=h[0],b=h[1],v=Ve((0,e.useState)(!1),2),g=v[0],_=v[1],E=Ve((0,e.useState)({builder:""}),2),w=(E[0],E[1],Ve((0,e.useState)(!1),2)),k=w[0],O=w[1],x=function(){var e,t=(e=regeneratorRuntime.mark((function e(){var t,n,r,o,i,c=arguments;return regeneratorRuntime.wrap((function(e){for(;;)switch(e.prev=e.next){case 0:return c.length>0&&void 0!==c[0]&&c[0]&&a(!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,i=r.data,o&&(l(i.demos),m(i.active_plugins),b(i.current_installed_demo),_(i.demo_error),Ge=i.active_plugins,We=i.demos,i.demo_error);case 15:e.next=19;break;case 17:e.prev=17,e.t0=e.catch(4);case 19:a(!1);case 20:case"end":return e.stop()}}),e,null,[[4,17]])})),function(){var t=this,n=arguments;return new Promise((function(r,o){var a=e.apply(t,n);function i(e){Ue(a,r,o,i,c,"next",e)}function c(e){Ue(a,r,o,i,c,"throw",e)}i(void 0)}))});return function(){return t.apply(this,arguments)}}();return(0,e.useEffect)((function(){x(!We)}),[]),(0,e.createElement)("div",{className:"ct-demos-list-container"},g&&(0,e.createElement)("div",{className:"ct-demo-notification",dangerouslySetInnerHTML:{__html:g}}),(0,e.createElement)(j.Transition,{items:r,from:{opacity:0},enter:[{opacity:1}],leave:[{opacity:0}],config:function(e,t){return"leave"===t?{duration:300}:{delay:300,duration:300}}},(function(t){return t?function(t){return(0,e.createElement)(j.animated.p,{style:t,className:"ct-loading-text"},(0,e.createElement)("span",null),(0,o.__)("Loading Starter Sites...","blocksy-companion"))}:0===c.length?function(t){return(0,e.createElement)(j.animated.div,{style:t},(0,e.createElement)("div",{className:"ct-demo-notification",dangerouslySetInnerHTML:{__html:(0,o.__)("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.","blocksy-companion")}}),(0,e.createElement)(R,null))}:function(t){return(0,e.createElement)(j.animated.div,{style:t},(0,e.createElement)(e.Fragment,null,(0,e.createElement)(qe.Provider,{value:{demo_error:g,demos_list:c.filter((function(e){return!e.dev||ct_localizations.is_dev_mode})),currentDemo:d,pluginsStatus:u,installerBlockingReleased:k,setInstallerBlockingReleased:O,setCurrentDemo:f,currentlyInstalledDemo:y,setCurrentlyInstalledDemo:b}},(0,e.createElement)(re,null),(0,e.createElement)(ze,null),(0,e.createElement)(Fe,null)),(0,e.createElement)(R,null)))}})))};function $e(e,t,n,r,o,a,i){try{var c=e[a](i),l=c.value}catch(e){return void n(e)}c.done?t(l):Promise.resolve(l).then(r,o)}var Ke=function(){var t=function(){var e,t=(e=regeneratorRuntime.mark((function e(){var t,n,r,o,a,i;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,o=r.success,r.data,o&&((a=document.createElement("div")).innerHTML=ctDashboardLocalizations.plugin_data.connect_template,i=a.querySelector("form"),document.body.appendChild(i),i.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,o){var a=e.apply(t,n);function i(e){$e(a,r,o,i,c,"next",e)}function c(e){$e(a,r,o,i,c,"throw",e)}i(void 0)}))});return function(){return t.apply(this,arguments)}}();return(0,e.createElement)("div",{className:"ct-freemius-optin-message"},(0,e.createElement)("i",null,(0,e.createElement)("svg",{width:"20",height:"20",viewBox:"0 0 24 24",fill:"currentColor",stroke:"currentColor",strokeWidth:"2",strokeLinecap:"round",strokeLinejoin:"round"},(0,e.createElement)("path",{d:"M18 8A6 6 0 0 0 6 8c0 7-3 9-3 9h18s-3-2-3-9"}),(0,e.createElement)("path",{d:"M13.73 21a2 2 0 0 1-3.46 0"}))),(0,e.createElement)("h2",null,(0,o.__)("Stay Updated","blocksy-companion")),(0,e.createElement)("p",null,(0,o.__)("Never miss an important update - opt in to our security & feature updates notifications, and non-sensitive diagnostic tracking.","blocksy-companion")),(0,e.createElement)("button",{className:"ct-button-primary",onClick:function(e){e.preventDefault(),t()}},(0,o.__)("Allow & Continue","blocksy-companion")))};r().on("ct:dashboard:routes",(function(t){t.push({Component:function(){return(0,e.createElement)($,null)},path:"/extensions"}),"yes"===ctDashboardLocalizations.plugin_data.has_demo_install&&t.push({Component:function(t){return(0,e.createElement)(Ze,t)},path:"/demos"})})),r().on("ct:dashboard:navigation-links",(function(e){"yes"===ctDashboardLocalizations.plugin_data.has_demo_install&&e.push({text:(0,o.__)("Starter Sites","blocksy-companion"),path:"demos",getProps:function(e){var t=e.isPartiallyCurrent;return e.isCurrent,t?{"aria-current":"page"}:{}}}),e.push({text:(0,o.__)("Extensions","blocksy-companion"),path:"/extensions"})})),r().on("ct:dashboard:home:before",(function(t){ctDashboardLocalizations.plugin_data.is_anonymous&&(t.content=(0,e.createElement)(Ke,null))})),r().on("ct:dashboard:heading:after",(function(t){ctDashboardLocalizations.plugin_data.is_pro&&(t.content=(0,e.createElement)("span",null,"PRO"))}))}()}();
static/bundle/dashboard.min.css CHANGED
@@ -1,8 +1,8 @@
1
  /**
2
- * - v1.8.41
3
  *
4
  * Copyright (c) 2022
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:.7}.mailchimp-credentials input{--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,.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-inline-end:0;border-radius:4px 0 0 4px}.ct-extensions-sourse li:last-child{border-inline-start:0;border-radius:0 4px 4px 0}.ct-config-btn{margin-inline-end:auto;margin-inline-start:10px}.ct-config-btn:before{font-family:dashicons;content:"";font-size:14px;margin-right:5px;opacity:.9}.ct-minimal-button{display:flex;align-items:center;justify-content:center;width:32px;height:32px;-webkit-appearance:none;appearance:none;border:none;padding:0;color:inherit;cursor:pointer;color:#c9cfd6;background:rgba(0,0,0,0);transition:color .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:"";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{display:flex;flex-direction:column;margin:0;box-sizing:border-box;box-shadow:0 2px 5px rgba(143,163,184,.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,.9);transition:opacity .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,.5);background:rgba(36,41,45,.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,.3)}.ct-demo-actions{flex:1;display:flex;align-items:center;padding:20px;border-radius:0 0 3px 3px;border:1px solid rgba(226,230,235,.7);background:rgba(235,237,241,.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>div{display:flex;gap:15px}.ct-demo-actions button[disabled]{opacity:.3;-webkit-user-select:none;user-select:none;pointer-events:none}.ct-demo-modal{--modal-width: 500px;height:100%;transition:max-height .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,.8);transition:box-shadow .2s ease,transform .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,.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,.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 .12s cubic-bezier(0.455, 0.03, 0.515, 0.955),box-shadow .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,.3)}.ct-active-plugin span:before,.ct-active-plugin span:after{position:absolute;content:"";width:2px;border-radius:2px;background:rgba(104,124,147,.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,.5);border-bottom:1px dashed rgba(179,189,201,.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:.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 .3s ease}.ct-progress-info{display:flex;justify-content:space-between;margin-top:30px;margin-bottom:15px;font-size:13px;opacity:.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,.3);background:rgba(0,114,170,.1);border-radius:5px}#ct-dashboard .ct-demo-notification:before{font-family:dashicons;content:"";font-size:20px;position:absolute;top:13px;left:20px;color:rgba(0,114,170,.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:.03em;color:#687c93;height:40px;border:none;cursor:pointer;padding:0 18px;border-radius:4px;background:#f3f6f8;transition:background .2s ease color .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-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,.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:rgba(0,0,0,0)}.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:rgba(0,0,0,0);border-color:rgba(0,0,0,0)}.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{display:none;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{display:flex;align-items:center;font-weight:600;text-transform:capitalize}.blocksy-fs-optin-wrapper #fs_connect .fs-permissions ul li div span i.dashicons{font-size:15px;width:15px;height:15px;margin-inline-start:8px}.blocksy-fs-optin-wrapper #fs_connect .fs-permissions ul li div span i.dashicons:before{opacity:.4}.blocksy-fs-optin-wrapper #fs_connect .fs-permissions ul li div p{margin-top:8px}.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:5px;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{float:left;width:25px;height:16px;top:1px;margin-inline-end:8px;padding:0;box-shadow:none;box-sizing:border-box;transition:all .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 .1s linear}.blocksy-fs-optin-wrapper #fs_connect .fs-permissions .fs-switch.fs-off{background:rgba(0,0,0,0)}.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:.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:rgba(0,0,0,0)}.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:rgba(0,0,0,0)}.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.42
3
  *
4
  * Copyright (c) 2022
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:.7}.mailchimp-credentials input{--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,.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-inline-end:0;border-radius:4px 0 0 4px}.ct-extensions-sourse li:last-child{border-inline-start:0;border-radius:0 4px 4px 0}.ct-config-btn{margin-inline-end:auto;margin-inline-start:10px}.ct-config-btn:before{font-family:dashicons;content:"";font-size:14px;margin-right:5px;opacity:.9}.ct-minimal-button{display:flex;align-items:center;justify-content:center;width:32px;height:32px;-webkit-appearance:none;appearance:none;border:none;padding:0;color:inherit;cursor:pointer;color:#c9cfd6;background:rgba(0,0,0,0);transition:color .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:"";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{display:flex;flex-direction:column;margin:0;box-sizing:border-box;box-shadow:0 2px 5px rgba(143,163,184,.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,.9);transition:opacity .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,.5);background:rgba(36,41,45,.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,.3)}.ct-demo-actions{flex:1;display:flex;align-items:center;padding:20px;border-radius:0 0 3px 3px;border:1px solid rgba(226,230,235,.7);background:rgba(235,237,241,.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>div{display:flex;gap:15px}.ct-demo-actions button[disabled]{opacity:.3;-webkit-user-select:none;user-select:none;pointer-events:none}.ct-demo-modal{--modal-width: 500px;height:100%;transition:max-height .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,.8);transition:box-shadow .2s ease,transform .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,.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,.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 .12s cubic-bezier(0.455, 0.03, 0.515, 0.955),box-shadow .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,.3)}.ct-active-plugin span:before,.ct-active-plugin span:after{position:absolute;content:"";width:2px;border-radius:2px;background:rgba(104,124,147,.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,.5);border-bottom:1px dashed rgba(179,189,201,.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:.8;font-weight:400;font-style:normal}.ct-export{text-align:center;margin-top:50px}.ct-site-export{display:flex;flex-direction:column;max-height:calc(var(--modal-max-height) - var(--modal-padding)*2)}.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-bundled-plugins-list{display:grid;grid-template-columns:repeat(2, 1fr);gap:15px}.ct-bundled-plugins-list label{gap:10px;padding:10px;border-radius:3px;background:rgba(0,0,0,.02)}.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 .3s ease}.ct-progress-info{display:flex;justify-content:space-between;margin-top:30px;margin-bottom:15px;font-size:13px;opacity:.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,.3);background:rgba(0,114,170,.1);border-radius:5px}#ct-dashboard .ct-demo-notification:before{font-family:dashicons;content:"";font-size:20px;position:absolute;top:13px;left:20px;color:rgba(0,114,170,.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:.03em;color:#687c93;height:40px;border:none;cursor:pointer;padding:0 18px;border-radius:4px;background:#f3f6f8;transition:background .2s ease color .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-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,.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:rgba(0,0,0,0)}.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:rgba(0,0,0,0);border-color:rgba(0,0,0,0)}.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{display:none;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{display:flex;align-items:center;font-weight:600;text-transform:capitalize}.blocksy-fs-optin-wrapper #fs_connect .fs-permissions ul li div span i.dashicons{font-size:15px;width:15px;height:15px;margin-inline-start:8px}.blocksy-fs-optin-wrapper #fs_connect .fs-permissions ul li div span i.dashicons:before{opacity:.4}.blocksy-fs-optin-wrapper #fs_connect .fs-permissions ul li div p{margin-top:8px}.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:5px;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{float:left;width:25px;height:16px;top:1px;margin-inline-end:8px;padding:0;box-shadow:none;box-sizing:border-box;transition:all .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 .1s linear}.blocksy-fs-optin-wrapper #fs_connect .fs-permissions .fs-switch.fs-off{background:rgba(0,0,0,0)}.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:.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:rgba(0,0,0,0)}.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:rgba(0,0,0,0)}.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/options.min.css CHANGED
@@ -1,5 +1,5 @@
1
  /**
2
- * - v1.8.41
3
  *
4
  * Copyright (c) 2022
5
  * Licensed GPLv2+
1
  /**
2
+ * - v1.8.42
3
  *
4
  * Copyright (c) 2022
5
  * Licensed GPLv2+
static/js/screens/DemoInstall/Wizzard/Plugins.js CHANGED
@@ -12,33 +12,27 @@ import classnames from 'classnames'
12
  import { DemosContext } from '../../DemoInstall'
13
  import Checkbox from '../../../helpers/Checkbox'
14
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
15
  export const getNameForPlugin = (plugin) =>
16
- ((
17
- {
18
- coblocks: 'CoBlocks',
19
- 'contact-form-7': 'Contact Form 7',
20
- woocommerce: 'WooCommerce',
21
- elementor: 'Elementor',
22
- brizy: 'Brizy',
23
- getwid: 'Getwid',
24
- 'wpforms-lite': 'WPForms - Contact Form',
25
- 'simply-gallery-block': 'SimpLy Gallery Block & Lightbox',
26
- 'recipe-card-blocks-by-wpzoom': 'Recipe Card Blocks by WPZOOM',
27
- 'stackable-ultimate-gutenberg-blocks': 'Stackable – Gutenberg Blocks',
28
- 'map-block-gutenberg': 'Map Block for Google Maps',
29
- 'mb-custom-post-type': 'MB Custom Post Types & Custom Taxonomies',
30
- 'leadin': 'HubSpot',
31
- 'block-slider': 'Block Slider',
32
- }[plugin] || plugin
33
- ).replace(/\b\w/, (v) => v.toUpperCase()))
34
 
35
  const Plugins = ({ demoConfiguration, setDemoConfiguration, style }) => {
36
- const {
37
- currentDemo,
38
- demos_list,
39
- pluginsStatus,
40
- setCurrentDemo,
41
- } = useContext(DemosContext)
42
 
43
  const [properDemoName, _] = (currentDemo || '').split(':')
44
 
12
  import { DemosContext } from '../../DemoInstall'
13
  import Checkbox from '../../../helpers/Checkbox'
14
 
15
+ export const getPluginsMap = (plugins) => ({
16
+ 'stackable-ultimate-gutenberg-blocks': 'Stackable – Gutenberg Blocks',
17
+ 'wpforms-lite': 'WPForms - Contact Form',
18
+ woocommerce: 'WooCommerce',
19
+ elementor: 'Elementor',
20
+ brizy: 'Brizy',
21
+ getwid: 'Getwid',
22
+ 'simply-gallery-block': 'SimpLy Gallery Block & Lightbox',
23
+ 'recipe-card-blocks-by-wpzoom': 'Recipe Card Blocks by WPZOOM',
24
+ 'map-block-gutenberg': 'Map Block for Google Maps',
25
+ 'mb-custom-post-type': 'MB Custom Post Types & Custom Taxonomies',
26
+ leadin: 'HubSpot',
27
+ 'block-slider': 'Block Slider',
28
+ })
29
+
30
  export const getNameForPlugin = (plugin) =>
31
+ (getPluginsMap[plugin] || plugin).replace(/\b\w/, (v) => v.toUpperCase())
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
32
 
33
  const Plugins = ({ demoConfiguration, setDemoConfiguration, style }) => {
34
+ const { currentDemo, demos_list, pluginsStatus, setCurrentDemo } =
35
+ useContext(DemosContext)
 
 
 
 
36
 
37
  const [properDemoName, _] = (currentDemo || '').split(':')
38
 
static/js/screens/SiteExport.js CHANGED
@@ -12,13 +12,15 @@ import useActivationAction from '../helpers/useActivationAction'
12
  import fileSaver from 'file-saver'
13
  import Overlay from '../helpers/Overlay'
14
 
 
 
15
  const SiteExport = () => {
16
  const [isLoading, setIsLoading] = useState(false)
17
  const [isShowing, setIsShowing] = useState(false)
18
 
19
  const [name, setName] = useState('')
20
  const [builder, setBuilder] = useState('')
21
- const [plugins, setPlugins] = useState('coblocks,elementor,contact-form-7')
22
  const [url, setUrl] = useState('')
23
  const [isPro, setIsPro] = useState(false)
24
 
@@ -94,7 +96,10 @@ const SiteExport = () => {
94
  {__('Preview URL', 'blocksy-companion')}
95
  <input
96
  type="text"
97
- placeholder={__('Preview URL', 'blocksy-companion')}
 
 
 
98
  value={url}
99
  onChange={({ target: { value } }) =>
100
  setUrl(value)
@@ -125,15 +130,39 @@ const SiteExport = () => {
125
  />
126
  </label>
127
 
128
- <label>
129
- {__('Plugins', 'blocksy-companion')}
130
- <textarea
131
- placeholder={__('Plugins', 'blocksy-companion')}
132
- value={plugins}
133
- onChange={({ target: { value } }) =>
134
- setPlugins(value)
135
- }></textarea>
136
- </label>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
137
 
138
  <button
139
  className="ct-button"
12
  import fileSaver from 'file-saver'
13
  import Overlay from '../helpers/Overlay'
14
 
15
+ import { getPluginsMap } from './DemoInstall/Wizzard/Plugins'
16
+
17
  const SiteExport = () => {
18
  const [isLoading, setIsLoading] = useState(false)
19
  const [isShowing, setIsShowing] = useState(false)
20
 
21
  const [name, setName] = useState('')
22
  const [builder, setBuilder] = useState('')
23
+ const [plugins, setPlugins] = useState('')
24
  const [url, setUrl] = useState('')
25
  const [isPro, setIsPro] = useState(false)
26
 
96
  {__('Preview URL', 'blocksy-companion')}
97
  <input
98
  type="text"
99
+ placeholder={__(
100
+ 'Preview URL',
101
+ 'blocksy-companion'
102
+ )}
103
  value={url}
104
  onChange={({ target: { value } }) =>
105
  setUrl(value)
130
  />
131
  </label>
132
 
133
+ <h3>Required plugins</h3>
134
+
135
+ <div className="ct-bundled-plugins-list ct-modal-scroll">
136
+ {Object.keys(getPluginsMap()).map((plugin) => (
137
+ <label
138
+ tabindex="0"
139
+ onClick={(e) => {
140
+ e.preventDefault()
141
+ const newPlugins = plugins.split(',')
142
+
143
+ if (newPlugins.includes(plugin)) {
144
+ newPlugins.splice(
145
+ newPlugins.indexOf(plugin),
146
+ 1
147
+ )
148
+ } else {
149
+ newPlugins.push(plugin)
150
+ }
151
+
152
+ setPlugins(newPlugins.join(','))
153
+ }}>
154
+ <span>{getPluginsMap()[plugin]}</span>
155
+
156
+ <input
157
+ type="checkbox"
158
+ checked={plugins.indexOf(plugin) > -1}
159
+ onChange={({
160
+ target: { checked },
161
+ }) => {}}
162
+ />
163
+ </label>
164
+ ))}
165
+ </div>
166
 
167
  <button
168
  className="ct-button"
static/sass/demo-install/export.scss CHANGED
@@ -1,3 +1,7 @@
 
 
 
 
1
  .ct-export {
2
  text-align: center;
3
  margin-top: 50px;
@@ -6,7 +10,8 @@
6
  .ct-site-export {
7
  display: flex;
8
  flex-direction: column;
9
- padding: 30px;
 
10
 
11
  label {
12
  display: flex;
@@ -30,4 +35,17 @@
30
  button {
31
  margin-top: 20px;
32
  }
 
 
 
 
 
 
 
 
 
 
 
 
 
33
  }
1
+ .ct-site-export-modal {
2
+ // --modal-width: 650px;
3
+ }
4
+
5
  .ct-export {
6
  text-align: center;
7
  margin-top: 50px;
10
  .ct-site-export {
11
  display: flex;
12
  flex-direction: column;
13
+ // padding: 30px;
14
+ max-height: calc(var(--modal-max-height) - var(--modal-padding) * 2);
15
 
16
  label {
17
  display: flex;
35
  button {
36
  margin-top: 20px;
37
  }
38
+ }
39
+
40
+ .ct-bundled-plugins-list {
41
+ display: grid;
42
+ grid-template-columns: repeat(2, 1fr);
43
+ gap: 15px;
44
+
45
+ label {
46
+ gap: 10px;
47
+ padding: 10px;
48
+ border-radius: 3px;
49
+ background: rgba(0, 0, 0, 0.02);
50
+ }
51
  }